From 126bb8cb6b93240bb4d3a2b816b74c286c3d422b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 6 Jul 2014 15:20:38 +0200 Subject: Imported Upstream version 1.7.0 --- lib/gcstar/GCLang/BG/GCExport/GCExportCSV.pm | 40 ++ lib/gcstar/GCLang/BG/GCExport/GCExportExternal.pm | 38 ++ lib/gcstar/GCLang/BG/GCExport/GCExportHTML.pm | 64 ++ lib/gcstar/GCLang/BG/GCExport/GCExportPDB.pm | 38 ++ lib/gcstar/GCLang/BG/GCExport/GCExportSQL.pm | 40 ++ lib/gcstar/GCLang/BG/GCExport/GCExportTarGz.pm | 37 ++ lib/gcstar/GCLang/BG/GCExport/GCExportXML.pm | 41 ++ .../GCLang/BG/GCImport/GCImportAlexandria.pm | 39 ++ lib/gcstar/GCLang/BG/GCImport/GCImportCSV.pm | 43 ++ lib/gcstar/GCLang/BG/GCImport/GCImportFolder.pm | 68 +++ lib/gcstar/GCLang/BG/GCImport/GCImportGCstar.pm | 37 ++ lib/gcstar/GCLang/BG/GCImport/GCImportList.pm | 42 ++ lib/gcstar/GCLang/BG/GCImport/GCImportScanner.pm | 50 ++ lib/gcstar/GCLang/BG/GCImport/GCImportTellico.pm | 37 ++ lib/gcstar/GCLang/BG/GCModels/GCTVepisodes.pm | 46 ++ lib/gcstar/GCLang/BG/GCModels/GCTVseries.pm | 50 ++ lib/gcstar/GCLang/BG/GCModels/GCboardgames.pm | 86 +++ lib/gcstar/GCLang/BG/GCModels/GCbooks.pm | 68 +++ lib/gcstar/GCLang/BG/GCModels/GCcoins.pm | 102 ++++ lib/gcstar/GCLang/BG/GCModels/GCcomics.pm | 73 +++ lib/gcstar/GCLang/BG/GCModels/GCfilms.pm | 91 +++ lib/gcstar/GCLang/BG/GCModels/GCgames.pm | 80 +++ lib/gcstar/GCLang/BG/GCModels/GCgeneric.pm | 42 ++ lib/gcstar/GCLang/BG/GCModels/GCminicars.pm | 182 ++++++ lib/gcstar/GCLang/BG/GCModels/GCmusics.pm | 66 ++ lib/gcstar/GCLang/BG/GCModels/GCperiodicals.pm | 52 ++ lib/gcstar/GCLang/BG/GCModels/GCsmartcards.pm | 108 ++++ lib/gcstar/GCLang/BG/GCModels/GCsoftware.pm | 84 +++ lib/gcstar/GCLang/BG/GCModels/GCstamps.pm | 189 ++++++ lib/gcstar/GCLang/BG/GCModels/GCwines.pm | 63 ++ lib/gcstar/GCLang/BG/GCstar.pm | 674 +++++++++++++++++++++ 31 files changed, 2670 insertions(+) create mode 100644 lib/gcstar/GCLang/BG/GCExport/GCExportCSV.pm create mode 100644 lib/gcstar/GCLang/BG/GCExport/GCExportExternal.pm create mode 100644 lib/gcstar/GCLang/BG/GCExport/GCExportHTML.pm create mode 100644 lib/gcstar/GCLang/BG/GCExport/GCExportPDB.pm create mode 100644 lib/gcstar/GCLang/BG/GCExport/GCExportSQL.pm create mode 100644 lib/gcstar/GCLang/BG/GCExport/GCExportTarGz.pm create mode 100644 lib/gcstar/GCLang/BG/GCExport/GCExportXML.pm create mode 100644 lib/gcstar/GCLang/BG/GCImport/GCImportAlexandria.pm create mode 100644 lib/gcstar/GCLang/BG/GCImport/GCImportCSV.pm create mode 100644 lib/gcstar/GCLang/BG/GCImport/GCImportFolder.pm create mode 100644 lib/gcstar/GCLang/BG/GCImport/GCImportGCstar.pm create mode 100644 lib/gcstar/GCLang/BG/GCImport/GCImportList.pm create mode 100644 lib/gcstar/GCLang/BG/GCImport/GCImportScanner.pm create mode 100644 lib/gcstar/GCLang/BG/GCImport/GCImportTellico.pm create mode 100644 lib/gcstar/GCLang/BG/GCModels/GCTVepisodes.pm create mode 100644 lib/gcstar/GCLang/BG/GCModels/GCTVseries.pm create mode 100644 lib/gcstar/GCLang/BG/GCModels/GCboardgames.pm create mode 100644 lib/gcstar/GCLang/BG/GCModels/GCbooks.pm create mode 100644 lib/gcstar/GCLang/BG/GCModels/GCcoins.pm create mode 100644 lib/gcstar/GCLang/BG/GCModels/GCcomics.pm create mode 100644 lib/gcstar/GCLang/BG/GCModels/GCfilms.pm create mode 100644 lib/gcstar/GCLang/BG/GCModels/GCgames.pm create mode 100644 lib/gcstar/GCLang/BG/GCModels/GCgeneric.pm create mode 100644 lib/gcstar/GCLang/BG/GCModels/GCminicars.pm create mode 100644 lib/gcstar/GCLang/BG/GCModels/GCmusics.pm create mode 100644 lib/gcstar/GCLang/BG/GCModels/GCperiodicals.pm create mode 100644 lib/gcstar/GCLang/BG/GCModels/GCsmartcards.pm create mode 100644 lib/gcstar/GCLang/BG/GCModels/GCsoftware.pm create mode 100644 lib/gcstar/GCLang/BG/GCModels/GCstamps.pm create mode 100644 lib/gcstar/GCLang/BG/GCModels/GCwines.pm create mode 100644 lib/gcstar/GCLang/BG/GCstar.pm (limited to 'lib/gcstar/GCLang/BG') diff --git a/lib/gcstar/GCLang/BG/GCExport/GCExportCSV.pm b/lib/gcstar/GCLang/BG/GCExport/GCExportCSV.pm new file mode 100644 index 0000000..0d269e6 --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCExport/GCExportCSV.pm @@ -0,0 +1,40 @@ +{ + package GCLang::BG::GCExport::GCExportCSV; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Header' => 'Включително имена на полета в горната част', + 'Separator' => 'Разделител', + 'Replacement' => 'Замени разделителя с', + 'Charset' => 'Charset', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCExport/GCExportExternal.pm b/lib/gcstar/GCLang/BG/GCExport/GCExportExternal.pm new file mode 100644 index 0000000..6f0cf6a --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCExport/GCExportExternal.pm @@ -0,0 +1,38 @@ +{ + package GCLang::BG::GCExport::GCExportExternal; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Name' => 'External disk', + 'ZipAll' => 'Put everything in a zipped file (.gcz)', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCExport/GCExportHTML.pm b/lib/gcstar/GCLang/BG/GCExport/GCExportHTML.pm new file mode 100644 index 0000000..523a3ed --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCExport/GCExportHTML.pm @@ -0,0 +1,64 @@ +{ + package GCLang::BG::GCExport::GCExportHTML; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'ModelNotFound' => 'Invalid template file', + 'UseFile' => 'Use file specified below', + 'TemplateExternalFile' => 'Template file', + 'WithJS' => 'Използване Javascript', + 'FileTemplate' => 'Шаблон :', + 'Preview' => 'Предварителен изглед', + 'NoPreview' => 'Няма наличен предварителен изглед', + 'Title' => 'Заглание на страница', + 'InfoFile' => 'Списъкът на филми е във файл: ', + 'InfoDir' => 'Изображенията са в: ', + 'HeightImg' => 'Височина в (пиксели) на изображения за експортиране: ', + 'OpenFileInBrowser' => 'Отваряне на генерирания файл в уеб-четец', + 'Note' => 'Списък, генериран от GCstar', + 'InputTitle' => 'Въведете текст за търсене', + 'SearchType1' => 'Само заглавие', + 'SearchType2' => 'Пълна информация', + 'SearchButton' => 'Търсене', + 'SearchTitle' => 'Показване само на филми, отговарящи на предишните критерии', + 'AllButton' => 'Вскички', + 'AllTitle' => 'Показване на всички филми', + 'Expand' => 'Разшири всички', + 'ExpandTitle' => 'Показване на цялата информация за филми', + 'Collapse' => 'Сгъване на всички', + 'CollapseTitle' => 'Сгъване на цялата информация за филми', + 'Borrowed' => 'Взет от: ', + 'NotBorrowed' => 'Наличен', + 'Top' => 'Горна част', + 'Bottom' => 'Bottom', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCExport/GCExportPDB.pm b/lib/gcstar/GCLang/BG/GCExport/GCExportPDB.pm new file mode 100644 index 0000000..49ecb10 --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCExport/GCExportPDB.pm @@ -0,0 +1,38 @@ +{ + package GCLang::BG::GCExport::GCExportPDB; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Name' => 'Palm PDB', + 'DatabaseName' => 'Database name', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCExport/GCExportSQL.pm b/lib/gcstar/GCLang/BG/GCExport/GCExportSQL.pm new file mode 100644 index 0000000..159da90 --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCExport/GCExportSQL.pm @@ -0,0 +1,40 @@ +{ + package GCLang::BG::GCExport::GCExportSQL; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'WithDrop' => 'Включително DROP инструкция', + 'WithCreate' => 'Включително CREATE инструкция', + 'TableName' => 'Име на таблица', + 'InfoFile' => 'SQL файл: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCExport/GCExportTarGz.pm b/lib/gcstar/GCLang/BG/GCExport/GCExportTarGz.pm new file mode 100644 index 0000000..12f70bc --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCExport/GCExportTarGz.pm @@ -0,0 +1,37 @@ +{ + package GCLang::BG::GCExport::GCExportTarGz; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Info' => 'Архивът е във файл: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCExport/GCExportXML.pm b/lib/gcstar/GCLang/BG/GCExport/GCExportXML.pm new file mode 100644 index 0000000..c84e405 --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCExport/GCExportXML.pm @@ -0,0 +1,41 @@ +{ + package GCLang::BG::GCExport::GCExportXML; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'ModelFile' => 'Файл-шаблон', + 'ModelText' => 'Текст на шаблон', + 'Models' => 'Шаблон за използване', + 'UseFile' => 'Използване на файл', + 'UseModel' => 'Използване на текстова област', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCImport/GCImportAlexandria.pm b/lib/gcstar/GCLang/BG/GCImport/GCImportAlexandria.pm new file mode 100644 index 0000000..8fc4750 --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCImport/GCImportAlexandria.pm @@ -0,0 +1,39 @@ +{ + package GCLang::BG::GCImport::GCImportAlexandria; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Where' => 'Where should it search', + 'Default' => 'Default Alexandria\'s directory', + 'Specified' => 'Directory specified below', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCImport/GCImportCSV.pm b/lib/gcstar/GCLang/BG/GCImport/GCImportCSV.pm new file mode 100644 index 0000000..3c4b98d --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCImport/GCImportCSV.pm @@ -0,0 +1,43 @@ +{ + package GCLang::BG::GCImport::GCImportCSV; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Charset' => 'Charset', + 'Header' => 'Игнориране на първия ред', + 'Separator' => 'Разделител', + 'Plugin' => 'Сайт, който да бъде използван', + 'UseFirst' => 'Избер на първия ако има много резултати', + 'SearchField' => 'Search for items using', + + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCImport/GCImportFolder.pm b/lib/gcstar/GCLang/BG/GCImport/GCImportFolder.pm new file mode 100644 index 0000000..be9e59d --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCImport/GCImportFolder.pm @@ -0,0 +1,68 @@ +{ + package GCLang::BG::GCImport::GCImportFolder; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + use GCLang::GCLangUtils; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Name' => 'Folder', + 'Recursive' => 'Browse sub-folders', + 'Suffixes' => 'Suffixes or extensions of the files', + 'SuffixesTooltip' => 'A comma-separated list of suffixes or extensions of files to consider', + 'Remove' => 'To be removed from names', + 'RemoveTooltip' => 'A comma-seperated list of words that should be removed from file names to create the fetched names', + 'Ask'=> 'Ask', + 'AskEnd'=> 'Ask all at end', + 'AddWithoutInfo'=> 'Add without infos', + 'DontAdd'=> 'Do not add', + 'TakeFirst' => 'Select first', + 'MultipleResult'=> 'Multiple results', + 'MultipleResultTooltip'=> 'What do we do when more than 1 result is return by the plugin', + 'RemoveWholeWord' => 'Remove only whole words', + 'NoResult'=> 'No results', + 'NoResultTooltip'=> 'What do we do when no search results is return by the plugin', + 'RemoveTooltipWholeWord' => 'Words will be removed only if they appear as an entire word', + 'RemoveRegularExpr' => 'Regular expression', + 'RemoveTooltipRegularExpr' => 'Consider that \'To be removed from names\' is a perl regular expression', + 'SkipFileAlreadyInCollection' => 'Add new files only', + 'SkipFileAlreadyInCollectionTooltip' => 'Add only files not already in the collection', + 'SkipFileNo' => 'No', + 'SkipFileFullPath' => 'based on full path', + 'SkipFileFileName' => 'based on file name', + 'SkipFileFileNameAndUpdate' => 'based on file name (but update path in collection)', + 'InfoFromFileNameRegExp' => 'Parse file name with this regular expression', + 'InfoFromFileNameRegExpTooltip' => 'Use this to retrieve infos from filename (applied after removing extension).\nLeave empty if not needed.\nKnown fields : \n$T:Title, $A:Alphabetised title, $Y:Release date, $S:Season, $E:Episode, $N:Alphabetised serie name, $x:Part number, $y: Total part number', + + ); + + # As this plugin shares some values with ImportList, it adds them from it + importTranslation('List'); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCImport/GCImportGCstar.pm b/lib/gcstar/GCLang/BG/GCImport/GCImportGCstar.pm new file mode 100644 index 0000000..d3bd629 --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCImport/GCImportGCstar.pm @@ -0,0 +1,37 @@ +{ + package GCLang::BG::GCImport::GCImportGCstar; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'CopyPictures' => 'Copy pictures', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCImport/GCImportList.pm b/lib/gcstar/GCLang/BG/GCImport/GCImportList.pm new file mode 100644 index 0000000..608aee9 --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCImport/GCImportList.pm @@ -0,0 +1,42 @@ +{ + package GCLang::BG::GCImport::GCImportList; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Name' => 'Списък заглавия', + 'Plugin' => 'Сайт, който да бъде използван', + 'UseFirst' => 'Избер на първия ако има много резултати', + 'CommentAuto' => 'Филмът е импортиран автоматично.', + 'CommentSite' => 'Уеб-сайт: ', + 'CommentTitle' => 'Заглавие: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCImport/GCImportScanner.pm b/lib/gcstar/GCLang/BG/GCImport/GCImportScanner.pm new file mode 100644 index 0000000..3ec57b5 --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCImport/GCImportScanner.pm @@ -0,0 +1,50 @@ +{ + package GCLang::BG::GCImport::GCImportScanner; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Name' => 'Barcode scanner', + 'Type' => 'Scanner type', + 'Local' => 'Local (used as a keyboard)', + 'Network' => 'Network (eg: GCstar Scanner for Android)', + 'Port' => 'Port to listen on', + 'Plugin' => 'Site to be used', + 'UseFirst' => 'Select first one if many results', + 'Waiting' => 'Waiting for barcode', + 'EAN' => 'Barcode', + 'ScanPrompt' => 'Scan an item or press on Done', + 'ScanOtherPrompt' => 'Scan another item or press on Done', + 'Previous' => '"%s" will be added.', + 'NothingFound' => 'Nothing was found for "%s". An empty item will be added.', + 'Terminate' => 'Done', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCImport/GCImportTellico.pm b/lib/gcstar/GCLang/BG/GCImport/GCImportTellico.pm new file mode 100644 index 0000000..657f7af --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCImport/GCImportTellico.pm @@ -0,0 +1,37 @@ +{ + package GCLang::BG::GCImport::GCImportTellico; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'NotSupported' => 'Файлът не е Tellico видео колекция', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCModels/GCTVepisodes.pm b/lib/gcstar/GCLang/BG/GCModels/GCTVepisodes.pm new file mode 100644 index 0000000..b250f4a --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCModels/GCTVepisodes.pm @@ -0,0 +1,46 @@ +{ + package GCLang::BG::GCModels::GCTVepisodes; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use GCLang::GCLangUtils; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'TV Shows (episodes) collection', + Items => 'Episodes', + NewItem => 'New episode', + NewSeries => 'New series', + Episode => 'Episode', + ); + # Both of them are required as importTranslation doesn't recurse + importTranslation('films'); + importTranslation('TVseries'); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCModels/GCTVseries.pm b/lib/gcstar/GCLang/BG/GCModels/GCTVseries.pm new file mode 100644 index 0000000..f95dc9e --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCModels/GCTVseries.pm @@ -0,0 +1,50 @@ +{ + package GCLang::BG::GCModels::GCTVseries; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use GCLang::GCLangUtils; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'TV Shows (series) collection', + Items => 'Series', + NewItem => 'New series', + Name => 'Name', + Season => 'Season', + Part => 'Part', + Episodes => 'Episodes', + FirstAired => 'First Aired', + Time => 'Ep. Length', + Producer => 'Producer', + Music => 'Music', + ); + importTranslation('Films'); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCModels/GCboardgames.pm b/lib/gcstar/GCLang/BG/GCModels/GCboardgames.pm new file mode 100644 index 0000000..4426ac9 --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCModels/GCboardgames.pm @@ -0,0 +1,86 @@ +{ + package GCLang::BG::GCModels::GCboardgames; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Board games collection', + Items => {0 => 'Game', + 1 => 'Game', + X => 'Games'}, + NewItem => 'New game', + + Id => 'Id', + Name => 'Name', + Original => 'Original name', + Box => 'Box picture', + DesignedBy => 'Designed by', + PublishedBy => 'Published by', + Players => 'Number of players', + PlayingTime => 'Playing time', + SuggestedAge => 'Suggested age', + Released => 'Released', + Description => 'Description', + Category => 'Category', + Mechanics => 'Mechanics', + ExpandedBy => 'Expanded by', + ExpansionFor => 'Expansion for', + GameFamily => 'Game family', + IllustratedBy => 'Illustrated by', + Url => 'Web page', + TimesPlayed => 'Times played', + CompleteContents => 'Complete contents', + Copies => 'No. of copies', + Condition => 'Condition', + Photos => 'Photos', + Photo1 => 'First picture', + Photo2 => 'Second picture', + Photo3 => 'Third picture', + Photo4 => 'Fourth picture', + Comments => 'Comments', + + Perfect => 'Perfect', + Good => 'Good', + Average => 'Average', + Poor => 'Poor', + + CompleteYes => 'Complete contents', + CompleteNo => 'Missing pieces', + + General => 'General', + Details => 'Details', + Personal => 'Personal', + Information => 'Information', + + FilterRatingSelect => 'Rating At _Least...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCModels/GCbooks.pm b/lib/gcstar/GCLang/BG/GCModels/GCbooks.pm new file mode 100644 index 0000000..a401bbd --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCModels/GCbooks.pm @@ -0,0 +1,68 @@ +{ + package GCLang::BG::GCModels::GCbooks; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Books collection', + Items => 'Books', + NewItem => 'New book', + + Isbn => 'ISBN', + Title => 'Title', + Cover => 'Cover', + Authors => 'Authors', + Publisher => 'Publisher', + Publication => 'Publication date', + Language => 'Language', + Genre => 'Genre', + Serie => 'Колекция', + Rank => 'Ранг', + Bookdescription => 'Description', + Pages => 'Pages', + Read => 'Read', + Acquisition => 'Acquisition date', + Edition => 'Edition', + Format => 'Format', + Comments => 'Comments', + Url => 'Web page', + Translator => 'Translator', + Artist => 'Artist', + DigitalFile => 'Digital version', + + General => 'General', + Details => 'Details', + + ReadNo => 'Not read', + ReadYes => 'Read', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCModels/GCcoins.pm b/lib/gcstar/GCLang/BG/GCModels/GCcoins.pm new file mode 100644 index 0000000..fbdade6 --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCModels/GCcoins.pm @@ -0,0 +1,102 @@ +{ + package GCLang::BG::GCModels::GCcoins; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Numismatic collection', + Items => 'Coins', + NewItem => 'New coin', + + Name => 'Name', + Country => 'Country', + Year => 'Year', + Currency => 'Currency', + Value => 'Value', + Picture => 'Main picture', + Diameter => 'Diameter', + Metal => 'Metal', + Edge => 'Edge', + Edge1 => 'Edge 1', + Edge2 => 'Edge 2', + Edge3 => 'Edge 3', + Edge4 => 'Edge 4', + Head => 'Head', + Tail => 'Tail', + Comments => 'Comments', + History => 'History', + Website => 'Website', + Estimate => 'Estimate', + References => 'References', + Type => 'Type', + Coin => 'Coin', + Banknote => 'Bank note', + + Main => 'Main', + Description => 'Description', + Other => 'Other information', + Pictures => 'Pictures', + + Condition => 'Condition (PCGS)', + Grade1 => 'BS-1', + Grade2 => 'FR-2', + Grade3 => 'AG-3', + Grade4 => 'G-4', + Grade6 => 'G-6', + Grade8 => 'VG-8', + Grade10 => 'VG-10', + Grade12 => 'F-12', + Grade15 => 'F-15', + Grade20 => 'VF-20', + Grade25 => 'VF-25', + Grade30 => 'VF-30', + Grade35 => 'VF-35', + Grade40 => 'XF-40', + Grade45 => 'XF-45', + Grade50 => 'AU-50', + Grade53 => 'AU-53', + Grade55 => 'AU-55', + Grade58 => 'AU-58', + Grade60 => 'MS-60', + Grade61 => 'MS-61', + Grade62 => 'MS-62', + Grade63 => 'MS-63', + Grade64 => 'MS-64', + Grade65 => 'MS-65', + Grade66 => 'MS-66', + Grade67 => 'MS-67', + Grade68 => 'MS-68', + Grade69 => 'MS-69', + Grade70 => 'MS-70', + + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCModels/GCcomics.pm b/lib/gcstar/GCLang/BG/GCModels/GCcomics.pm new file mode 100644 index 0000000..a0f8aba --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCModels/GCcomics.pm @@ -0,0 +1,73 @@ +{ + package GCLang::BG::GCModels::GCcomics; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Comics collection', + Items => {0 => 'Comics', + 1 => 'Comic', + X => 'Comics'}, + NewItem => 'New comic', + + + Id => 'Id', + Name => 'Name', + Series => 'Series', + Volume => 'Volume', + Title => 'Title', + Writer => 'Writer', + Illustrator => 'Illustrator', + Colourist => 'Colourist', + Publisher => 'Publisher', + Synopsis => 'Synopsis', + Collection => 'Collection', + PublishDate => 'Publish Date', + PrintingDate => 'Printing Date', + ISBN => 'ISBN', + Type => 'Type', + Category => 'Category', + Format => 'Format', + NumberBoards => 'Number of Boards', + Signing => 'Signing', + Cost => 'Cost', + Rating => 'Rating', + Comment => 'Comments', + Url => 'Web page', + + FilterRatingSelect => 'Rating At _Least...', + + Main => 'Main items', + General => 'General', + Details => 'Details', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCModels/GCfilms.pm b/lib/gcstar/GCLang/BG/GCModels/GCfilms.pm new file mode 100644 index 0000000..b8014e3 --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCModels/GCfilms.pm @@ -0,0 +1,91 @@ +{ + package GCLang::BG::GCModels::GCfilms; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Movies collection', + Items => 'Филми', + NewItem => 'Нов филм', + + + Id => 'Id', + Title => 'Заглавие', + Date => 'Дата', + Time => 'Продължителност', + Director => 'Режисьор', + Country => 'Държава', + MinimumAge => 'Минимална възраст', + Genre => 'Жанр', + Image => 'Изображение', + Original => 'Оригинално заглавие', + Actors => 'Участват', + Actor => 'Actor', + Role => 'Role', + Comment => 'Коментари', + Synopsis => 'Резюме', + Seen => 'Гледан', + Number => '# на медии', + Format => 'Тип медия', + Region => 'Region', + Identifier => 'Identifier', + Url => 'Уеб', + Audio => 'Аудио', + Video => 'Видео формат', + Trailer => 'Видео файл', + Serie => 'Колекция', + Rank => 'Ранг', + Subtitles => 'Субтитри', + + SeenYes => 'Показани', + SeenNo => 'Непоказани', + + AgeUnrated => 'Без рейтинг', + AgeAll => 'Всички възрасти', + AgeParent => 'Ръководство на родителя', + + Main => 'Основни', + General => 'Общи', + Details => 'Детайли', + + Information => 'Информация', + Languages => 'Езици', + Encoding => 'Кодиране', + + FilterAudienceAge => 'Зрителска възраст', + FilterSeenNo => '_Още не показани', + FilterSeenYes => '_Already Viewed', + FilterRatingSelect => 'Рейтинг най-малко...', + + ExtractSize => 'Размер', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCModels/GCgames.pm b/lib/gcstar/GCLang/BG/GCModels/GCgames.pm new file mode 100644 index 0000000..f43aec9 --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCModels/GCgames.pm @@ -0,0 +1,80 @@ +{ + package GCLang::BG::GCModels::GCgames; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Video games collection', + Items => 'Games', + NewItem => 'New game', + + Id => 'Id', + Ean => 'EAN', + Name => 'Name', + Platform => 'Platform', + Players => 'Number of players', + Released => 'Release Date', + Editor => 'Editor', + Developer => 'Developer', + Genre => 'Genre', + Box => 'Box picture', + Case => 'Case', + Manual => 'Instructions manual', + Completion => 'Completion (%)', + Executable => 'Executable', + Description => 'Description', + Codes => 'Codes', + Code => 'Code', + Effect => 'Effect', + Secrets => 'Secrets', + Screenshots => 'Screenshots', + Screenshot1 => 'First screenshot', + Screenshot2 => 'Second screenshot', + Comments => 'Comments', + Url => 'Web page', + Unlockables => 'Unlockables', + Unlockable => 'Unlockable', + Howto => 'How to unlock', + Exclusive => 'Exclusive', + Resolutions => 'Display resolutions', + InstallationSize => 'Size', + Region => 'Region', + SerialNumber => 'Serial Number', + + General => 'General', + Details => 'Details', + Tips => 'Tips', + Information => 'Information', + + FilterRatingSelect => 'Rating At _Least...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCModels/GCgeneric.pm b/lib/gcstar/GCLang/BG/GCModels/GCgeneric.pm new file mode 100644 index 0000000..1ae618a --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCModels/GCgeneric.pm @@ -0,0 +1,42 @@ +{ + package GCLang::BG::GCModels::GCgeneric; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + Items => {0 => 'Item', + 1 => 'Item', + X => 'Items' + }, + NewItem => 'New item', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCModels/GCminicars.pm b/lib/gcstar/GCLang/BG/GCModels/GCminicars.pm new file mode 100644 index 0000000..1491f8d --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCModels/GCminicars.pm @@ -0,0 +1,182 @@ +{ + package GCLang::BG::GCModels::GCminicars; + + use utf8; +################################################### +# +# Copyright 2005-2007 Tian +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Mini vehicles collection', + Items => {0 => 'Vehicle', + 1 => 'Vehicle', + X => 'Vehicles', + lowercase1 => 'vehicle', + lowercaseX => 'vehicles' + }, + NewItem => 'New vehicle', + Currency => 'Currency', + +# Main fields + + Main => 'Main information', + + Name => 'Name', + Exchange => 'To be sold or exchanged', + Wanted => 'Wanted', + Rating1 => 'Main rating', + Picture1 => 'Main picture', + Scale => 'Scale', + Manufacturer => 'Manufacturer', + Constructor => 'Constructor', + Type1 => 'Type', + Modele => 'Model', + Version => 'Version', + Color => 'Model color', + Pub => 'Advertisement', + Year => 'Year', + Reference => 'Reference', + Kit => 'In kit form', + Transformation => 'Personal transformation', + Comments1 => 'Comments', + +# Details fields + + Details => 'Details', + + MiscCharacteristics => 'Miscellaneous characteristics', + Material => 'Material', + Molding => 'Molding', + Condition => 'Condition', + Edition => 'Edition', + Collectiontype => 'Collection name', + Serial => 'Series', + Serialnumber => 'Serial number', + Designed => 'Design date', + Madein => 'Manufacture date', + Box1 => 'Kind of box', + Box2 => 'Box description', + Containbox => 'Box contet', + Rating2 => 'Realism', + Rating3 => 'Finish', + Acquisition => 'Acquisition date', + Location => 'Acquisition place', + Buyprice => 'Acquisition price', + Estimate => 'Estimation', + Comments2 => 'Comments', + Decorationset => 'Decoration set', + Characters => 'Characters', + CarFromFilm => 'Movie car', + Filmcar => 'Movie related to the vehicle', + Filmpart => 'Movie part/episode', + Parts => 'Number of parts', + VehiculeDetails => 'Vehicule details', + Detailsparts => 'Details parts', + Detailsdecorations => 'Kind of decorations', + Decorations => 'Number of decorations', + Lwh => 'Length / Width / Height', + Weight => 'Weight', + Framecar => 'Chassis', + Bodycar => 'Bodywork', + Colormirror => 'Model color', + Interior => 'Interior', + Wheels => 'Wheels', + Registrationnumber1 => 'Front registration number', + Registrationnumber2 => 'Back registration number', + RacingCar => 'Racing car', + Course => 'Race', + Courselocation => 'Race place', + Courseyear => 'Race date', + Team => 'Team', + Pilots => 'Pilot(s)', + Copilots => 'Copilot(s)', + Carnumber => 'Vehicle number', + Pub2 => 'Advertisers', + Finishline => 'Finish ranking', + Steeringwheel => 'Position of steering wheel', + + +# Catalogs fields + + Catalogs => 'Catalogs', + + OfficialPicture => 'Official picture', + Barcode => 'Barcode', + Referencemirror => 'Reference', + Year3 => 'Availability date', + CatalogCoverPicture => 'Cover', + CatalogPagePicture => 'Page', + Catalogyear => 'Catalog year', + Catalogedition => 'Catalog edition', + Catalogpage => 'Catalog page', + Catalogprice => 'Catalog price', + Personalref => 'Personal reference', + Websitem => 'Mini vehicle\'s manufacturer website', + Websitec => 'Actual vehicle\'s manufacturer website', + Websiteo => 'Useful link', + Comments3 => 'Comments', + +# Pictures fields + + Pictures => 'Pictures', + + OthersComments => 'General remarks', + OthersDetails => 'Other details', + Top1 => 'Above', + Back1 => 'Below', + AVG => 'Front Left', + AV => 'Front', + AVD => 'Front Right', + G => 'Left', + BOX => 'Box', + D => 'Right', + ARG => 'Back Left', + AR => 'Back', + ARD => 'Back Right', + Others => 'Misc', + +# PanelLending fields + + LendingExplanation => 'Useful exchanges during temporary exhibitions', + PanelLending => 'Lendings (for exhibitions)', + Comments4 => 'Comments', + +# Realmodel fields + + Realmodel => 'Actual vehicle', + + Difference => 'Differences with miniature', + Front2 => 'Front', + Back2 => 'Back', + Comments5 => 'Comments', + + References => 'References', + + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCModels/GCmusics.pm b/lib/gcstar/GCLang/BG/GCModels/GCmusics.pm new file mode 100644 index 0000000..b55b554 --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCModels/GCmusics.pm @@ -0,0 +1,66 @@ +{ + package GCLang::BG::GCModels::GCmusics; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Music collection', + Items => 'Albums', + NewItem => 'New album', + + Unique => 'ISRC/EAN', + Title => 'Title', + Cover => 'Cover', + Artist => 'Artist', + Format => 'Format', + Running => 'Running time', + Release => 'Release date', + Genre => 'Genre', + Origin => 'Origin', + +#For tracks list + Tracks => 'Tracks list', + Number => 'Number', + Track => 'Title', + Time => 'Time', + + Composer => 'Composer', + Producer => 'Producer', + Playlist => 'Playlist', + Comments => 'Comments', + Label => 'Label', + Url => 'Web page', + + General => 'General', + Details => 'Details', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCModels/GCperiodicals.pm b/lib/gcstar/GCLang/BG/GCModels/GCperiodicals.pm new file mode 100644 index 0000000..47d7faa --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCModels/GCperiodicals.pm @@ -0,0 +1,52 @@ +{ + package GCLang::BG::GCModels::GCperiodicals; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Periodicals collection', + Items => {0 => 'Periodical', + 1 => 'Periodical', + X => 'Periodicals'}, + NewItem => 'New periodical', + + Title => 'Title', + Cover => 'Cover', + Periodical => 'Periodical', + Number => 'Number', + Date => 'Date', + Subject => 'Subject', + Articles => 'Articles', + + General => 'General', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCModels/GCsmartcards.pm b/lib/gcstar/GCLang/BG/GCModels/GCsmartcards.pm new file mode 100644 index 0000000..7b5f440 --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCModels/GCsmartcards.pm @@ -0,0 +1,108 @@ +{ + package GCLang::BG::GCModels::GCsmartcards; + + use utf8; +################################################### +# +# Copyright 2005-2010 Tian +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Smart card collection', + Items => {0 => 'Smart card', + 1 => 'Smart card', + X => 'Smart cards'}, + NewItem => 'New smart card', + Currency => 'Currency', + + Help => 'Help for fields', + Help1 => 'Help', + +# Traduction des Champs "Main" + + Main => 'The smart card', + + Cover => 'Picture', + + Name => 'Name', + Exchange => 'To be exchanged or sold', + Wanted => 'Wanted', + Rating1 => 'Global rating', + TheSmartCard => 'The smart card, front/back', + + Country => 'Country', + Color => 'Color', + Type1 => 'Card type', + Type2 => 'Chip type', + Dimension => 'Length / Width / Thickness', + + Box => 'Box', + Chip => 'Chip', + Year1 => 'Edition year', + Year2 => 'Validity year', + Condition => 'Condition', + Charge => 'Rechargeable card', + Variety => 'Variety', + + Edition => 'Number of exemplars', + Serial => 'Serial number', + Theme => 'Theme', + + Acquisition => 'Acquired on', + + Catalog0 => 'Catalog', + Catalog1 => 'Phonecote / Infopuce (YT)', + Catalog2 => 'La Cote en Poche', + + Reference0 => 'Reference', + Reference1 => 'Reference Phonecote / Infopuce (YT)', + Reference2 => 'Reference La Cote en Poche', + Reference3 => 'Other reference', + + Quotationnew00 => 'Quotation for new card', + Quotationnew10 => 'Quotation Phonecote / Infopuce (YT)', + Quotationnew20 => 'Quotation La Cote en Poche', + Quotationnew30 => 'Cotation Autre', + Quotationold00 => 'Quotation for used card', + Quotationold10 => 'Quotation Phonecote / Infopuce (YT)', + Quotationold20 => 'Quotation La Cote en Poche', + Quotationold30 => 'Other quotation', + + Title1 => 'Title', + + Unit => 'Units / Minutes number', + + Pressed => 'Impression type', + Location => 'Impression place', + + Comments1 => 'Comments', + + Others => 'Misc.', + Weight => 'Weight', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCModels/GCsoftware.pm b/lib/gcstar/GCLang/BG/GCModels/GCsoftware.pm new file mode 100644 index 0000000..05d869c --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCModels/GCsoftware.pm @@ -0,0 +1,84 @@ +{ + package GCLang::BG::GCModels::GCsoftware; + + use utf8; +################################################### +# +# Copyright 2005-2009 Tian +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Computer software collection', + Items => {0 => 'Application', + 1 => 'Application', + X => 'Applications', + lowercase1 => 'application', + lowercaseX => 'applications'}, + NewItem => 'New application', + + Id => 'Id', + Ean => 'EAN', + Name => 'Name', + Platform => 'Platform', + Released => 'Release date', + Homepage => 'Homepage', + Editor => 'Editor', + Developer => 'Developer', + Category => 'Category', + NumberOfCopies => 'Copies', + Price => 'Price', + Box => 'Box picture', + Case => 'Case', + Manual => 'Instruction manual', + Executable => 'Executable', + Description => 'Description', + License => 'License', + Commercial => 'Commercial', + FreewareNoncommercial => 'Freeware (non-commercial use)', + OtherOpenSource => 'Other Open Source', + PublicDomain => 'Public Domain', + OtherLicense => 'Other', + Registration => 'Registration', + RegistrationInfo => 'Registration Info', + RegInfo => 'Registration Info', + RegistrationName => 'Username', + RegistrationNumber => 'Registration Number', + PanelRegistration => 'Registration Info', + RegistrationComments => 'Additional info or comments', + Screenshots => 'Screenshots', + Screenshot1 => 'First screenshot', + Screenshot2 => 'Second screenshot', + Comments => 'Comments', + Url => 'Web page', + General => 'General', + Details => 'Details', + Information => 'Information', + + FilterRatingSelect => 'Rating At _Least...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCModels/GCstamps.pm b/lib/gcstar/GCLang/BG/GCModels/GCstamps.pm new file mode 100644 index 0000000..1349d1d --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCModels/GCstamps.pm @@ -0,0 +1,189 @@ +{ + package GCLang::BG::GCModels::GCstamps; + + use utf8; +################################################### +# +# Copyright 2005-2007 Tian +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Stamp collection', + Items => {0 => 'Stamps', + 1 => 'Stamp', + X => 'Stamps'}, + NewItem => 'New stamp', + + General => 'General', + Detail => 'Detail', + Value => 'Value', + Notes => 'Notes', + Views => 'Views', + + Name => 'Name', + Country => 'Country', + Year => 'Year', + Catalog => 'Catalog', + Number => 'Number', + Topic => 'Topic', + Serie => 'Serie', + Designer => 'Designer', + Engraver => 'Engraver', + Type => 'Type', + Format => 'Format', + Description => 'Description', + Color => 'Color', + Gum => 'Gum', + Paper => 'Paper', + Perforation => 'Perforation', + PerforationSize => 'Perforation size', + CancellationType => 'Cancellation type', + Comments => 'Comments', + PrintingVariety => 'Printing variety', + IssueDate => 'Issue date', + EndOfIssue => 'End of issue', + Issue => 'Issue', + Grade => 'Grade', + Status => 'Status', + Adjusted => 'Adjusted', + Cancellation => 'Cancellation', + CancellationCondition => 'Cancellation condition', + GumCondition => 'Gum condition', + PerforationCondition => 'Perforation condition', + ConditionNotes => 'Condition notes', + Error => 'Error', + ErrorNotes => 'Error notes', + FaceValue => 'Face value', + MintValue => 'Mint value', + UsedValue => 'Used value', + PurchasedDate => 'Purchased date', + Quantity => 'Quantity', + History => 'History', + Picture1 => 'Picture 1', + Picture2 => 'Picture 2', + Picture3 => 'Picture 3', + + AirMail => 'Air mail', + MilitaryStamp => 'Military stamp', + Official => 'Official', + PostageDue => 'Postage due', + Regular => 'Regular', + Revenue => 'Revenue', + SpecialDelivery => 'Special delivery', + StrikeStamp => 'Strike stamp', + TelegraphStamp => 'Telegraph stamp', + WarStamp => 'War stamp', + WarTaxStamp => 'War tax stamp', + + Booklet => 'Booklet', + BookletPane => 'Booklet Pane', + Card => 'Card', + Coil => 'Coil', + Envelope => 'Envelope', + FirstDayCover => 'First Day Cover', + Sheet => 'Sheet', + Single => 'Single', + + Heliogravure => 'Heliogravure', + Lithography => 'Lithography', + Offset => 'Offset', + Photogravure => 'Photogravure', + RecessPrinting => 'Recess printing', + Typography => 'Typography', + + OriginalGum => 'Original gum', + Ungummed => 'Ungummed', + Regummed => 'Regummed', + + Chalky => 'Chalky', + ChinaPaper => 'China paper', + Coarsed => 'Coarsed', + Glossy => 'Glossy', + Granite => 'Granite', + Laid => 'Laid', + Manila => 'Manila', + Native => 'Native', + Pelure => 'Pelure', + Quadrille => 'Quadrille', + Ribbed => 'Ribbed', + Rice => 'Rice', + Silk => 'Silk', + Smoothed => 'Smoothed', + Thick => 'Thick', + Thin => 'Thin', + Wove => 'Wove', + + CoarsedPerforation => 'Coarsed perforation', + CombPerforation => 'Comb perforation', + CompoundPerforation => 'Compound perforation', + DamagedPerforation => 'Damaged perforation', + DoublePerforation => 'Double perforation', + HarrowPerforation => 'Harrow perforation', + LinePerforation => 'Line perforation', + NoPerforation => 'No perforation', + + CancellationToOrder => 'Cancellation To Order', + FancyCancellation => 'Fancy cancellation', + FirstDayCancellation => 'First Day cancellation', + NumeralCancellation => 'Numeral cancellation', + PenMarked => 'Pen-Marked', + RailroadCancellation => 'Railroad cancellation', + SpecialCancellation => 'Special cancellation', + + Superb => 'Superb', + ExtraFine => 'Extra-Fine', + VeryFine => 'Very fine', + FineVeryFine => 'Fine/Very fine', + Fine => 'Fine', + Average => 'Average', + Poor => 'Poor', + + Owned => 'Owned', + Ordered => 'Ordered', + Sold => 'Sold', + ToSell => 'To sell', + Wanted => 'Wanted', + + LightCancellation => 'Light cancellation', + HeavyCancellation => 'Heavy cancellation', + ModerateCancellation => 'Moderate cancellation', + + MintNeverHinged => 'Mint never hinged', + MintLightHinged => 'Mint light hinged', + HingedRemnant => 'Hinged remnant', + HeavilyHinged => 'Heavily hinged', + LargePartOriginalGum => 'Large part original gum', + SmallPartOriginalGum => 'Small part original gum', + NoGum => 'No gum', + + Perfect => 'Perfect', + VeryNice => 'Very nice', + Nice => 'Nice', + Incomplete => 'Incomplete', + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCModels/GCwines.pm b/lib/gcstar/GCLang/BG/GCModels/GCwines.pm new file mode 100644 index 0000000..2131d9a --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCModels/GCwines.pm @@ -0,0 +1,63 @@ +{ + package GCLang::BG::GCModels::GCwines; + + use utf8; + +# Copyright 2007 Yves Martin + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Wines collection', + Items => 'Wines', + NewItem => 'New wine', + + Name => 'Name', + Designation => 'Designation', + Vintage => 'Vintage', + Vineyard => 'Vineyard', + Type => 'Type', + Grapes => 'Grapes', + Soil => 'Soil', + Producer => 'Producer', + Country => 'Country', + Volume => 'Volume (ml)', + Alcohol => 'Alcohol (%)', + Medal => 'Medal/Honour', + + Storage => 'Storage', + Location => 'Location', + ShelfIndex => 'Index', + Quantity => 'Quantity', + Acquisition => 'Acquisition', + PurchaseDate => 'Purchase date', + PurchasePrice => 'Purchase price', + Gift => 'Gift', + BottleLabel => 'Bottle label', + Website => 'Reference on the web', + + Tasted => 'Tasted', + Comments => 'Comments', + Serving => 'Serving', + TastingField => 'Testing notes', + + General => 'General', + Details => 'Details', + Tasting => 'Tasting', + + TastedNo => 'Non tasted', + TastedYes => 'Tasted', + + FilterRange => 'Range', + FilterTastedNo => '_Not yet tasted', + FilterTastedYes => 'Already _tasted', + FilterRatingSelect => 'Rating at _least...' + + ); +} + +1; diff --git a/lib/gcstar/GCLang/BG/GCstar.pm b/lib/gcstar/GCLang/BG/GCstar.pm new file mode 100644 index 0000000..17d1e5a --- /dev/null +++ b/lib/gcstar/GCLang/BG/GCstar.pm @@ -0,0 +1,674 @@ +{ + package GCLang::BG; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + +# +# MODEL-SPECIFIC CODES +# +# Some strings are modified to include the model-specific item type. Inside these strings, +# any strings contained in {}'s will be replaced by the corresponding string from +# the Item collection in the model language file. For example: +# +# {lowercase1} = {Items}->{lowercase1} (item type, singular, all lowercase). EG: game, movie, book +# {1} = {Items}->{1} (item type, singular, with first letter uppercase). EG: Game, Movie, Book +# {lowercaseX} = {Items}->{lowercaseX} (item type, multiple, lowercase). EG: games, movies, books +# {X} = {Items}->{X} (item type, multiple, with first letter uppercase). EG Games, Movies, Books +# +# GCstar will automatically convert these codes to the relevant translated string. You can +# use these codes in any string marked by a "Accepts model codes" comment. +# + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + 'LangName' => 'Bulgarian', + + 'Separator' => ': ', + + 'Warning' => 'Внимание: + +Информация, свалена от уеб-страници (чрез приставките за търсене) е + само за лично ползване. + +Всякакво разпространение е забранено без изричното съгласие +на собствениците на страницата. + +За да определите коя страница притежава информацията, можете +да използвате бутона под детайлите на филма.', + + 'AllItemsFiltered' => 'Няма филм, отговарящ на критериите ви за търсене', # Accepts model codes + +#Installation + 'InstallDirInfo' => 'Инсталиране в ', + 'InstallMandatory' => 'Задължителни компоненти', + 'InstallOptional' => 'Незадължителни компоненти', + 'InstallErrorMissing' => 'Грешка : Следните Perl компоненти следва да се инсталират: ', + 'InstallPrompt' => 'Основна директория за инсталиране [/usr/local]: ', + 'InstallEnd' => 'Край на инсталацията', + 'InstallNoError' => 'Няма възникнали грешки', + 'InstallLaunch' => 'За да използвате приложението, можете да стартирате ', + 'InstallDirectory' => 'Базова директория', + 'InstallTitle' => 'GCstar инсталация', + 'InstallDependencies' => 'Зависимости', + 'InstallPath' => 'Пътека', + 'InstallOptions' => 'Настройки', + 'InstallSelectDirectory' => 'Изберете базова директория за инсталация', + 'InstallWithClean' => 'Премахване на файлове в инстлационната директория', + 'InstallWithMenu' => 'Добавяне на GCstar в менюто', + 'InstallNoPermission' => 'Грешка: Нямате права за писане в избраната директория', + 'InstallMissingMandatory' => 'Липсват задължителни модули. Няма да сте в състояние да инсталирате GCstar преди те да бъдат добавени на вашата система.', + 'InstallMissingOptional' => 'Някои незадължителни зависимости липсват. Техния списък е предоставен по-долу. GCstar може да бъде инсталиран, но някои негови функции няма да бъдат налични.', + 'InstallMissingNone' => 'Няма липсващи зависимости. Можете да продължите с инсталацията на GCstar.', + 'InstallOK' => 'OK', + 'InstallMissing' => 'Липсващ', + 'InstallMissingFor' => 'Липсващ за', + 'InstallCleanDirectory' => 'Removing GCstar\'s files in directory: ', + 'InstallCopyDirectory' => 'Copying files in directory: ', + 'InstallCopyDesktop' => 'Copying desktop file in: ', + +#Update + 'UpdateUseProxy' => 'Proxy to use (just press enter if none): ', + 'UpdateNoPermission' => 'Write permission denied in this directory: ', + 'UpdateNone' => 'No update have been found', + 'UpdateFileNotFound' => 'File not found', + +#Splash + 'SplashInit' => 'Инициализация', + 'SplashLoad' => 'Зареждане на колекцията', + 'SplashDisplay' => 'Displaying Collection', + 'SplashSort' => 'Sorting Collection', + 'SplashDone' => 'Готово', + +#Import from GCfilms + 'GCfilmsImportQuestion' => 'It seems you were using GCfilms before. What do you want to import from GCfilms to GCstar (it won\'t impact GCfilms if you still want to use it)?', + 'GCfilmsImportOptions' => 'Settings', + 'GCfilmsImportData' => 'Movies list', + +#Menus + 'MenuFile' => '_Файл', + 'MenuNewList' => '_Нова колекция', + 'MenuStats' => 'Statistics', + 'MenuHistory' => '_Скоро използвани колекции', + 'MenuLend' => 'Показване на заети филми', # Accepts model codes + 'MenuImport' => '_Импорт', + 'MenuExport' => '_Експорт', + 'MenuAddItem' => '_Add Item', # Accepts model codes + + 'MenuEdit' => '_Редактиране', + 'MenuDuplicate' => '_Дубликат на филм', # Accepts model codes + 'MenuDuplicatePlural' => 'Du_plicate Items', # Accepts model codes + 'MenuEditSelectAllItems' => 'Select _All Items', # Accepts model codes + 'MenuEditDeleteCurrent' => '_Премахване на филм', # Accepts model codes + 'MenuEditDeleteCurrentPlural' => '_Remove Items', # Accepts model codes + 'MenuEditFields' => '_Change collection fields', + 'MenuEditLockItems' => '_Заключване на колекция', + + 'MenuDisplay' => 'Ф_илтър', + 'MenuSavedSearches' => 'Saved searches', + 'MenuSavedSearchesSave' => 'Save current search', + 'MenuSavedSearchesEdit' => 'Modify saved searches', + 'MenuAdvancedSearch' => 'A_dvanced Search', + 'MenuViewAllItems' => 'Показване на _всички филми', # Accepts model codes + 'MenuNoFilter' => '_Всякакъв', + + 'MenuConfiguration' => '_Настройки', + 'MenuDisplayMenu' => 'Display', + 'MenuDisplayFullScreen' => 'Full screen', + 'MenuDisplayMenuBar' => 'Menus', + 'MenuDisplayToolBar' => 'Toolbar', + 'MenuDisplayStatusBar' => 'Bottom bar', + 'MenuDisplayOptions' => '_Показана информация', + 'MenuBorrowers' => '_Наематели', + 'MenuToolbarConfiguration' => '_Toolbar controls', + 'MenuDefaultValues' => 'Default values for new item', # Accepts model codes + 'MenuGenresConversion' => 'Конвертиране на жанр', + + 'MenuBookmarks' => 'My _Collections', + 'MenuBookmarksAdd' => '_Add current collection', + 'MenuBookmarksEdit' => '_Edit bookmarked collections', + + 'MenuHelp' => '_Помощ', + 'MenuHelpContent' => '_Помощ', + 'MenuAllPlugins' => 'View _plugins', + 'MenuBugReport' => 'Report a _bug', + 'MenuAbout' => '_Относно GCstar', + + 'MenuNewWindow' => 'Показване на филм в _Нов Прозорец', # Accepts model codes + 'MenuNewWindowPlural' => 'Show Items in _New Window', # Accepts model codes + + 'ContextExpandAll' => 'Expand all', + 'ContextCollapseAll' => 'Collapse all', + 'ContextChooseImage' => 'Choose _Image', + 'ContextOpenWith' => 'Open Wit_h', + 'ContextImageEditor' => 'Image Editor', + 'ContextImgFront' => 'Front', + 'ContextImgBack' => 'Back', + 'ContextChooseFile' => 'Choose a File', + 'ContextChooseFolder' => 'Choose a Folder', + + 'DialogEnterNumber' => 'Please enter value', + + 'RemoveConfirm' => 'Сигурни ли сте, че желаето премахването на филма?', # Accepts model codes + 'RemoveConfirmPlural' => 'Do you really want to remove these items?', # Accepts model codes + + 'DefaultNewItem' => 'New item', # Accepts model codes + 'NewItemTooltip' => 'Добавяне на нов филм', # Accepts model codes + 'NoItemFound' => 'Не е намерен филм. Желаети ли търсене в друг сайт?', + 'OpenList' => 'Моля изберете колекция', + 'SaveList' => 'Моля изберете къде да се съхрани колекцията', + 'SaveListTooltip' => 'Съхраняване на текуща колекция', + 'SaveUnsavedChanges' => 'There are unsaved changes in your collection. Do you want to save them?', + 'SaveDontSave' => 'Don\'t save', + 'PreferencesTooltip' => 'Установете предпочитанията си', + 'ViewTooltip' => 'Промяна на изгледа на колекция', + 'PlayTooltip' => 'Възпроизвеждане на видео, асоцииран с филм', # Accepts model codes + 'PlayFileNotFound' => 'File to launch was not found in this location:', + 'PlayRetry' => 'Retry', + + 'StatusSave' => 'Saving...', + 'StatusLoad' => 'Loading...', + 'StatusSearch' => 'Извършва се търсене...', + 'StatusGetInfo' => 'Получаване на информация...', + 'StatusGetImage' => 'Получаване на изображение...', + + 'SaveError' => 'Списъкът с филми не може да бъде съхранен . Моля проверете правата за достъп и наличното дисково пространство.', + 'OpenError' => 'Списъкът с филми не може да бъде отворен. Моля проверенте правата за достъп.', + 'OpenFormatError' => 'Списъкът с филми не може да бъде отворен.', + 'OpenVersionWarning' => 'Collection was created with a more recent version of GCstar. If you save it, you may loose some data.', + 'OpenVersionQuestion' => 'Do you still want to continue?', + 'ImageError' => 'Избраната директория за съхраняване на изображения не е коректна. Моля изберете друга.', + 'OptionsCreationError'=> 'Файлът с настройки не може да бъде създаден: ', + 'OptionsOpenError'=> 'Файлът с настройки не може да бъде отворен: ', + 'OptionsSaveError'=> 'Файлът с настройки не може да бъде съхранен:', + 'ErrorModelNotFound' => 'Model not found: ', + 'ErrorModelUserDir' => 'User defined models are in: ', + + 'RandomTooltip' => 'Какво да се гледа тази вечер?', + 'RandomError'=> 'Няме филми, които да не сте гледали', # Accepts model codes + 'RandomEnd'=> 'Няма повече филми', # Accepts model codes + 'RandomNextTip'=> 'Следващо предложение', + 'RandomOkTip'=> 'Приемане на този филм', + + 'AboutTitle' => 'Относно GCstar', + 'AboutDesc' => 'Gtk2 каталог на филми', + 'AboutVersion' => 'Версия', + 'AboutTeam' => 'Екип', + 'AboutWho' => 'Christian Jodar (Tian): Мениджър на проекта, Програмист +Nyall Dawson (Zombiepig): Програмист +TPF: Програмист +Adolfo González: Програмист +', + + 'AboutLicense' => 'Разпространява се под условията на GNU GPL +Автор на логото le Spektre', + 'AboutTranslation' => 'Българският превод е направен от Филип Андонов', + 'AboutDesign' => 'Łukasz Kowalczk (Qoolman): Skin Designer +Лого и дизайн на страницата от le Spektre', + + 'ToolbarRandom' => 'Довечера', + + 'UnsavedCollection' => 'Unsaved Collection', + 'ModelsSelect' => 'Select a collection type', + 'ModelsPersonal' => 'Personal models', + 'ModelsDefault' => 'Default models', + 'ModelsList' => 'Collection definition', + 'ModelSettings' => 'Collection settings', + 'ModelNewType' => 'New collection type', + 'ModelName' => 'Name of the collection type:', + 'ModelFields' => 'Fields', + 'ModelOptions' => 'Options', + 'ModelFilters' => 'Filters', + 'ModelNewField' => 'New field', + 'ModelFieldInformation' => 'Information', + 'ModelFieldName' => 'Label:', + 'ModelFieldType' => 'Type:', + 'ModelFieldGroup' => 'Group:', + 'ModelFieldValues' => 'Values', + 'ModelFieldInit' => 'Default:', + 'ModelFieldMin' => 'Minimum:', + 'ModelFieldMax' => 'Maximum:', + 'ModelFieldList' => 'Values list:', + 'ModelFieldListLegend' => 'Comma separated', + 'ModelFieldDisplayAs' => 'Display as:', + 'ModelFieldDisplayAsText' => 'Text', + 'ModelFieldDisplayAsGraphical' => 'Rating Control', + 'ModelFieldTypeShortText' => 'Short text', + 'ModelFieldTypeLongText' => 'Long text', + 'ModelFieldTypeYesNo' => 'Yes/No', + 'ModelFieldTypeNumber' => 'Number', + 'ModelFieldTypeDate' => 'Date', + 'ModelFieldTypeOptions' => 'Pre-defined values list', + 'ModelFieldTypeImage' => 'Image', + 'ModelFieldTypeSingleList' => 'Simple list', + 'ModelFieldTypeFile' => 'File', + 'ModelFieldTypeFormatted' => 'Dependant on other fields', + 'ModelFieldParameters' => 'Parameters', + 'ModelFieldHasHistory' => 'Use an history', + 'ModelFieldFlat' => 'Display on one line', + 'ModelFieldStep' => 'Increment step:', + 'ModelFieldFileFormat' => 'File format:', + 'ModelFieldFileFile' => 'Simple file', + 'ModelFieldFileImage' => 'Image', + 'ModelFieldFileVideo' => 'Video', + 'ModelFieldFileAudio' => 'Audio', + 'ModelFieldFileProgram' => 'Program', + 'ModelFieldFileUrl' => 'URL', + 'ModelFieldFileEbook' => 'Ebook', + 'ModelOptionsFields' => 'Fields to use', + 'ModelOptionsFieldsAuto' => 'Automatic', + 'ModelOptionsFieldsNone' => 'None', + 'ModelOptionsFieldsTitle' => 'As title', + 'ModelOptionsFieldsId' => 'As identifier', + 'ModelOptionsFieldsCover' => 'As cover', + 'ModelOptionsFieldsPlay' => 'For Play button', + 'ModelCollectionSettings' => 'Collection settings', + 'ModelCollectionSettingsLending' => 'Items could be borrowed', + 'ModelCollectionSettingsTagging' => 'Items can be tagged', + 'ModelFilterActivated' => 'Should be in search box', + 'ModelFilterComparison' => 'Comparison', + 'ModelFilterContain' => 'Contains', + 'ModelFilterDoesNotContain' => 'Does not contain', + 'ModelFilterRegexp' => 'Regular expression', + 'ModelFilterRange' => 'Range', + 'ModelFilterNumeric' => 'Comparison is numeric', + 'ModelFilterQuick' => 'Create a quick filter', + 'ModelTooltipName' => 'Use a name to re-use this model for many collections. If empty, the settings will be directly stored in the collection itself', + 'ModelTooltipLabel' => 'The field name as it will be displayed', + 'ModelTooltipGroup' => 'Used to group fields. Items with no value here will be in a default group', + 'ModelTooltipHistory' => 'Should the previous entered values be stored in a list associated to the field', + 'ModelTooltipFormat' => 'This format is used to determine the action to open the file with the Play button', + 'ModelTooltipLending' => 'This will add some fields to manage lendings', + 'ModelTooltipTagging' => 'This will add some fields to manage tags', + 'ModelTooltipNumeric' => 'Should the values be consider as numbers for comparison', + 'ModelTooltipQuick' => 'This will add a submenu in the Filters one', + + 'ResultsTitle' => 'Избор на филм', # Accepts model codes + 'ResultsNextTip' => 'Търсене в следващ сайт', + 'ResultsPreview' => 'Preview', + 'ResultsInfo' => 'You can add multiple items to the collection by holding down the Ctrl or the Shift key and selecting them', # Accepts model codes + + 'OptionsTitle' => 'Предпочитания', + 'OptionsExpertMode' => 'Expert Mode', + 'OptionsPrograms' => 'Specify applications to use for different media, leave blank to use system defaults', + 'OptionsBrowser' => 'Уеб-четец', + 'OptionsPlayer' => 'Видео плеър', + 'OptionsAudio' => 'Audio player', + 'OptionsImageEditor' => 'Image Editor', + 'OptionsCdDevice' => 'CD device', + 'OptionsImages' => 'Директория с изображения', + 'OptionsUseRelativePaths' => 'Използване на относителни пътеки към изображения', + 'OptionsLayout' => 'Оформление', + 'OptionsStatus' => 'Показване на статус-лента', + 'OptionsUseStars' => 'Use stars to display ratings', + 'OptionsWarning' => 'Внимание: Промените няма да имат ефект докато приложението не бъде рестартирано.', + 'OptionsRemoveConfirm' => 'Изисване на потвърждение преди изтриване', + 'OptionsAutoSave' => 'Автоматично съхраняване на колекция', + 'OptionsAutoLoad' => 'Load previous collection on startup', + 'OptionsSplash' => 'Показване на splash екран', + 'OptionsTearoffMenus' => 'Enable tear-off menus', + 'OptionsSpellCheck' => 'Use spelling checker for long text fields', + 'OptionsProgramTitle' => 'Избор на програма, която да бъде използвана', + 'OptionsPlugins' => 'Сайтове, от които да се получава информация', + 'OptionsAskPlugins' => 'Питане (Всички сайтове)', + 'OptionsPluginsMulti' => 'Много сайтове', + 'OptionsPluginsMultiAsk' => 'Питане (Много сайтове)', + 'OptionsPluginsMultiPerField' => 'Много сайтове (per field)', + 'OptionsPluginsMultiPerFieldWindowTitle' => 'Many sites per field order selection', + 'OptionsPluginsMultiPerFieldDesc' => 'For each selected field we will return the first non empty information beginning from left', + 'OptionsPluginsMultiPerFieldFirst' => 'First', + 'OptionsPluginsMultiPerFieldLast' => 'Last', + 'OptionsPluginsMultiPerFieldRemove' => 'Remove', + 'OptionsPluginsMultiPerFieldClearSelected' => 'Empty selected field list', + 'OptionsPluginsList' => 'Установяване на списък', + 'OptionsAskImport' => 'Избор на полета, които да бъдат импортирани', + 'OptionsProxy' => 'Използване на proxy', + 'OptionsCookieJar' => 'Use this cookie jar file', + 'OptionsLang' => 'Език', + 'OptionsMain' => 'Основен', + 'OptionsPaths' => 'Пътеки', + 'OptionsInternet' => 'Интернет', + 'OptionsConveniences' => 'Свойства', + 'OptionsDisplay' => 'Дисплей', + 'OptionsToolbar' => 'Лента с инструменти', + 'OptionsToolbars' => {0 => 'Без', 1 => 'Малък', 2 => 'Голям', 3 => 'System setting'}, + 'OptionsToolbarPosition' => 'Позиция', + 'OptionsToolbarPositions' => {0 => 'Горе', 1 => 'Долу', 2 => 'Ляво', 3 => 'Дясно'}, + 'OptionsExpandersMode' => 'Expanders too long', + 'OptionsExpandersModes' => {'asis' => 'Do nothing', 'cut' => 'Cut', 'wrap' => 'Line wrap'}, + 'OptionsDateFormat' => 'Date Format', + 'OptionsDateFormatTooltip' => 'Format is the one used by strftime(3). Default is %d/%m/%Y', + 'OptionsView' => 'Дисплей', + 'OptionsViews' => {0 => 'Техт', 1 => 'Изображение', 2 => 'Детайлно'}, + 'OptionsColumns' => 'Колони', + 'OptionsMailer' => 'Програма за електронна поща', + 'OptionsSMTP' => 'Сървър', + 'OptionsFrom' => 'Вашият адрес', + 'OptionsTransform' => 'Поставяне на статиите в края на заглавията', + 'OptionsArticles' => 'Статии (Разделени със запетая)', + 'OptionsSearchStop' => 'Позволяване прекъсване на търсенето', + 'OptionsBigPics' => 'Use big pictures when available', + 'OptionsAlwaysOriginal' => 'Използване на основното заглавие ако оригиналното не е представено', + 'OptionsRestoreAccelerators' => 'Restore accelerators', + 'OptionsHistory' => 'Размер на историята', + 'OptionsClearHistory' => 'Изчистване на историята', + 'OptionsStyle' => 'Кожа', + 'OptionsDontAsk' => 'Не питай повече', + 'OptionsPathProgramsGroup' => 'Applications', + 'OptionsProgramsSystem' => 'Use programs defined by system', + 'OptionsProgramsUser' => 'Use specified programs', + 'OptionsProgramsSet' => 'Set programs', + 'OptionsPathImagesGroup' => 'Images', + 'OptionsInternetDataGroup' => 'Data import', + 'OptionsInternetSettingsGroup' => 'Settings', + 'OptionsDisplayInformationGroup' => 'Information display', + 'OptionsDisplayArticlesGroup' => 'Articles', + 'OptionsImagesDisplayGroup' => 'Display', + 'OptionsImagesStyleGroup' => 'Style', + 'OptionsDetailedPreferencesGroup' => 'Preferences', + 'OptionsFeaturesConveniencesGroup' => 'Conveniences', + 'OptionsPicturesFormat' => 'Prefix to use for pictures:', + 'OptionsPicturesFormatInternal' => 'gcstar__', + 'OptionsPicturesFormatTitle' => 'Title or name of the associated item', + 'OptionsPicturesWorkingDir' => '%WORKING_DIR% or . will be replaced with collection directory (use only on beginning of path)', + 'OptionsPicturesFileBase' => '%FILE_BASE% will be replaced by collection file name without suffix (.gcs)', + 'OptionsPicturesWorkingDirError' => '%WORKING_DIR% could only be used on the beginning of the path for pictures', + 'OptionsConfigureMailers' => 'Configure mailing programs', + + 'ImagesOptionsButton' => 'Настройки', + 'ImagesOptionsTitle' => 'Настройки за списък с изображения', + 'ImagesOptionsSelectColor' => 'Избор на цвят', + 'ImagesOptionsUseOverlays' => 'Use image overlays', + 'ImagesOptionsBg' => 'Фон', + 'ImagesOptionsBgPicture' => 'Използване на изображение за фон', + 'ImagesOptionsFg'=> 'Избор', + 'ImagesOptionsBgTooltip' => 'Промяна на фонов цвят', + 'ImagesOptionsFgTooltip'=> 'Промяна на избран цвят', + 'ImagesOptionsResizeImgList' => 'Automatically change number of columns', + 'ImagesOptionsAnimateImgList' => 'Use animations', + 'ImagesOptionsSizeLabel' => 'Размер', + 'ImagesOptionsSizeList' => {0 => 'Много малък', 1 => 'Малък', 2 => 'Среден', 3 => 'Голям', 4 => 'Много голям'}, + 'ImagesOptionsSizeTooltip' => 'Избор на размер на изображение', + + 'DetailedOptionsTitle' => 'Настройки за детайлен списък', + 'DetailedOptionsImageSize' => 'Размер на изображение', + 'DetailedOptionsGroupItems' => 'Group items by', + 'DetailedOptionsSecondarySort' => 'Sort field for children', + 'DetailedOptionsFields' => 'ИЗбор на приятели за показване', + 'DetailedOptionsGroupedFirst' => 'Keep together orphaned items', + 'DetailedOptionsAddCount' => 'Add number of elements on categories', + + 'ExtractButton' => 'Информация', + 'ExtractTitle' => 'Информация за видео файл', + 'ExtractImport' => 'Използване на стойности', + + 'FieldsListOpen' => 'Load a fields list from a file', + 'FieldsListSave' => 'Save fields list to a file', + 'FieldsListError' => 'This fields list cannot be used with this kind of collection', + 'FieldsListIgnore' => '--- Ignore', + + 'ExportTitle' => 'Експортиране на списък с филми', + 'ExportFilter' => 'Експортиране само на показани филми', + 'ExportFieldsTitle' => 'Полета, които да бъдат експортирани', + 'ExportFieldsTip' => 'Избор на полета, които да бъдат експортирани', + 'ExportWithPictures' => 'Копиране на изображенията в под-директория', + 'ExportSortBy' => 'Sort by', + 'ExportOrder' => 'Order', + + 'ImportListTitle' => 'Импортиране на друг списък с филми', + 'ImportExportData' => 'Data', + 'ImportExportFile' => 'Файл', + 'ImportExportFieldsUnused' => 'Неизползвани полета', + 'ImportExportFieldsUsed' => 'Използвани полета', + 'ImportExportFieldsFill' => 'Добавяне на всички', + 'ImportExportFieldsClear' => 'Премахване на всички', + 'ImportExportFieldsEmpty' => 'Необходимо е да изберете поне едно поле', + 'ImportExportFileEmpty' => 'Необходимо е да определите име на файл', + 'ImportFieldsTitle' => 'Полета, които да бъдат импортирани', + 'ImportFieldsTip' => 'Избор на полета, които желаете да бъдат импортирани', + 'ImportNewList' => 'Създаване на нова колекция', + 'ImportCurrentList' => 'Добавяне към текущата колекция', + 'ImportDropError' => 'There was an error opening at least one file. Previous list will be reloaded.', + 'ImportGenerateId' => 'Generate identifier for each item', + + 'FileChooserOpenFile' => 'Моля изберете друг файл', + 'FileChooserDirectory' => 'Directory', + 'FileChooserOpenDirectory' => 'Избор на директория', + 'FileChooserOverwrite' => 'Този файл вече съществува. Желаете ли презапис?', + 'FileAllFiles' => 'All Files', + 'FileVideoFiles' => 'Video Files', + 'FileEbookFiles' => 'Ebook Files', + 'FileAudioFiles' => 'Audio Files', + 'FileGCstarFiles' => 'GCstar Collections', + + 'PanelCompact' => 'Компактен', + 'PanelReadOnly' => 'Само за четене', + 'PanelForm' => 'Табове', + + 'PanelSearchButton' => 'Добиване на информация', + 'PanelSearchTip' => 'Търсене в уеб за информация относно това заглавие', + 'PanelSearchContextChooseOne' => 'Choose a site ...', + 'PanelSearchContextMultiSite' => 'Use "Many sites"', + 'PanelSearchContextMultiSitePerField' => 'Use "Many sites per field"', + 'PanelSearchContextOptions' => 'Change options ...', + 'PanelImageTipOpen' => 'Щракнете върху изображението за да изберете друго.', + 'PanelImageTipView' => 'Click on the picture to view it in real size.', + 'PanelImageTipMenu' => ' Десен бутон за повече възможности.', + 'PanelImageTitle' => 'Избор на изображение', + 'PanelImageNoImage' => 'No image', + 'PanelSelectFileTitle' => 'Избор на файл', + 'PanelLaunch' => 'Launch', + 'PanelRestoreDefault' => 'Restore default', + 'PanelRefresh' => 'Update', + 'PanelRefreshTip' => 'Update information from web', + + 'PanelFrom' =>'From', + 'PanelTo' =>'To', + + 'PanelWeb' => 'Показване на информация', + 'PanelWebTip' => 'Показване на информация от уеб за този филм', # Accepts model codes + 'PanelRemoveTip' => 'Премахване на текущ филм', # Accepts model codes + + 'PanelDateSelect' => 'Избор на дата', + 'PanelNobody' => 'Никой', + 'PanelUnknown' => 'Неизвестен', + 'PanelAdded' => 'Add date', + 'PanelRating' => 'Рейтинг', + 'PanelPressRating' => 'Press Rating', + 'PanelLocation' => 'Местоположение', + + 'PanelLending' => 'Заемане', + 'PanelBorrower' => 'Взел', + 'PanelLendDate' => 'Не е наличен от', + 'PanelHistory' => 'История на заемането', + 'PanelReturned' => 'Върнат филм', # Accepts model codes + 'PanelReturnDate' => 'Дата на връщане', + 'PanelLendedYes' => 'Даден', + 'PanelLendedNo' => 'Наличен', + + 'PanelTags' => 'Tags', + 'PanelFavourite' => 'Favourite', + 'TagsAssigned' => 'Assigned Tags', + + 'PanelUser' => 'User fields', + + 'CheckUndef' => 'Без значение', + 'CheckYes' => 'Да', + 'CheckNo' => 'Не', + + 'ToolbarAll' => 'Показване на всички', + 'ToolbarAllTooltip' => 'Показване на всички филми', + 'ToolbarGroupBy' => 'Group by', + 'ToolbarGroupByTooltip' => 'Select the field to use to group items in list', + 'ToolbarQuickSearch' => 'Quick search', + 'ToolbarQuickSearchLabel' => 'Search', + 'ToolbarQuickSearchTooltip' => 'Select the field to search in. Enter the search terms and press Enter', + 'ToolbarSeparator' => ' Separator', + + 'PluginsTitle' => 'Търсене на филм', + 'PluginsQuery' => 'Query', + 'PluginsFrame' => 'Сайт за търсене', + 'PluginsLogo' => 'Лого', + 'PluginsName' => 'Име', + 'PluginsSearchFields' => 'Search fields', + 'PluginsAuthor' => 'Автор', + 'PluginsLang' => 'Език', + 'PluginsUseSite' => 'Използване на избрания сайт за бъдещи търсения', + 'PluginsPreferredTooltip' => 'Site recommended by GCstar', + 'PluginDisabled' => 'Disabled', + + 'BorrowersTitle' => 'Конфигуриране на наемателя', + 'BorrowersList' => 'Наематели', + 'BorrowersName' => 'Име', + 'BorrowersEmail' => 'Е-поща', + 'BorrowersAdd' => 'Добавяне', + 'BorrowersRemove' => 'Премахване', + 'BorrowersEdit' => 'Редактиране', + 'BorrowersTemplate' => 'Шаблон за писмо', + 'BorrowersSubject' => 'Заглавие на писмото', + 'BorrowersNotice1' => '%1 ще бъде заменено с името на наемателя', + 'BorrowersNotice2' => '%2 ще бъде заменено със заглавието на филма', + 'BorrowersNotice3' => '%3 ще бъде заменено с датата на заемане', + + 'BorrowersImportTitle' => 'Import borrowers information', + 'BorrowersImportType' => 'File format:', + 'BorrowersImportFile' => 'File:', + + 'BorrowedTitle' => 'Дадени филми', # Accepts model codes + 'BorrowedDate' => 'От', + 'BorrowedDisplayInPanel' => 'Show item in main window', # Accepts model codes + + 'MailTitle' => 'Изпращане на е-поща', + 'MailFrom' => 'От: ', + 'MailTo' => 'До: ', + 'MailSubject' => 'Заглавие: ', + 'MailSmtpError' => 'Проблем при свързване със SMTP сървър', + 'MailSendmailError' => 'Проблем при стартиране на sendmail', + + 'SearchTooltip' => 'Търсене на всички филми', # Accepts model codes + 'SearchTitle' => 'Търсене на филм', # Accepts model codes + 'SearchNoField' => 'No field have been selected for the search box. +Add some of them in the Filters tab of the collection settings.', + + 'QueryReplaceField' => 'Field to replace', + 'QueryReplaceOld' => 'Текущо име', + 'QueryReplaceNew' => 'Ново име', + 'QueryReplaceLaunch' => 'Replace', + + 'ImportWindowTitle' => 'Избор на приятели, които да бъдат импортирани', + 'ImportViewPicture' => 'Показване на изображение', + 'ImportSelectAll' => 'Избор на всички', + 'ImportSelectNone' => 'Премахване на избор', + + 'MultiSiteTitle' => 'Сайтове които да бъдат използвани за търсене', + 'MultiSiteUnused' => 'Неизползвани приставки', + 'MultiSiteUsed' => 'Приставки, които да бъдат използвани', + 'MultiSiteLang' => 'Попълване на списъка с английски приставки', + 'MultiSiteEmptyError' => 'Вие имате празен списък със сайтове', + 'MultiSiteClear' => 'Изчистване на списъка', + + 'DisplayOptionsTitle' => 'Неща за показване', + 'DisplayOptionsAll' => 'Избор на всички', + 'DisplayOptionsSearch' => 'Бутон за търсене', + + 'GenresTitle' => 'Конвертиране на жанр', + 'GenresCategoryName' => 'Използване на жанр', + 'GenresCategoryMembers' => 'Жанр за подмяна', + 'GenresLoad' => 'Зареждане на списък', + 'GenresExport' => 'Съхраняване на списък във файл', + 'GenresModify' => 'Редактиране на конвертирането', + + 'PropertiesName' => 'Collection name', + 'PropertiesLang' => 'Language code', + 'PropertiesOwner' => 'Owner', + 'PropertiesEmail' => 'Email', + 'PropertiesDescription' => 'Description', + 'PropertiesFile' => 'File Information', + 'PropertiesFilePath' => 'Full path', + 'PropertiesItemsNumber' => 'Number of items', # Accepts model codes + 'PropertiesFileSize' => 'Size', + 'PropertiesFileSizeSymbols' => ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'], + 'PropertiesCollection' => 'Collection properties', + 'PropertiesDefaultPicture' => 'Default picture', + + 'MailProgramsTitle' => 'Programs for mail sending', + 'MailProgramsName' => 'Name', + 'MailProgramsCommand' => 'Command line', + 'MailProgramsRestore' => 'Restore defaults', + 'MailProgramsAdd' => 'Add a program', + 'MailProgramsInstructions' => 'In command line, some substitutions are made: + %f is replaced with user\'s e-mail address. + %t is replaced with the recipient address. + %s is replaced with the subject of the message. + %b is replaced with the body of the message.', + + 'BookmarksBookmarks' => 'Bookmarks', + 'BookmarksFolder' => 'Directory', + 'BookmarksLabel' => 'Label', + 'BookmarksPath' => 'Path', + 'BookmarksNewFolder' => 'New folder', + + 'AdvancedSearchType' => 'Type of search', + 'AdvancedSearchTypeAnd' => 'Items matching all criteria', # Accepts model codes + 'AdvancedSearchTypeOr' => 'Items matching at least one criterion', # Accepts model codes + 'AdvancedSearchCriteria' => 'Criteria', + 'AdvancedSearchAnyField' => 'Any field', + 'AdvancedSearchSaveTitle' => 'Save search', + 'AdvancedSearchSaveName' => 'Name', + 'AdvancedSearchSaveOverwrite' => 'A saved search already exists with that name. Please use a different one.', + 'AdvancedSearchUseCase' => 'Case sensitive', + 'AdvancedSearchIgnoreDiacritics' => 'Ignore accents and other diacritics', + + 'BugReportSubject' => 'Bug report generated from GCstar', + 'BugReportVersion' => 'Version', + 'BugReportPlatform' => 'Operating system', + 'BugReportMessage' => 'Error message', + 'BugReportInformation' => 'Additional information', + +#Statistics + 'StatsFieldToUse' => 'Field to use', + 'StatsSortByNumber' => 'Sort by number of {lowercaseX}', + 'StatsGenerate' => 'Generate', + 'StatsKindOfGraph' => 'Kind of graphic', + 'StatsBars' => 'Bars', + 'StatsPie' => 'Pie', + 'Stats3DPie' => '3D Pie', + 'StatsArea' => 'Areas', + 'StatsHistory' => 'History', + 'StatsWidth' => 'Width', + 'StatsHeight' => 'Height', + 'StatsFontSize' => 'Font size', + 'StatsDisplayNumber' => 'Show numbers', + 'StatsSave' => 'Save statistics image to a file', + 'StatsAccumulate' => 'Accumulate values', + 'StatsShowAllDates' => 'Show all dates', + + 'DefaultValuesTip' => 'Values set in this window will be used as the default values when creating a new {lowercase1}', + ); +} +1; -- cgit v1.2.3