summaryrefslogtreecommitdiff
path: root/lib/gcstar/GCLang/CS
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gcstar/GCLang/CS')
-rw-r--r--lib/gcstar/GCLang/CS/GCExport/GCExportCSV.pm40
-rw-r--r--lib/gcstar/GCLang/CS/GCExport/GCExportExternal.pm38
-rw-r--r--lib/gcstar/GCLang/CS/GCExport/GCExportHTML.pm64
-rw-r--r--lib/gcstar/GCLang/CS/GCExport/GCExportPDB.pm38
-rw-r--r--lib/gcstar/GCLang/CS/GCExport/GCExportSQL.pm40
-rw-r--r--lib/gcstar/GCLang/CS/GCExport/GCExportTarGz.pm37
-rw-r--r--lib/gcstar/GCLang/CS/GCExport/GCExportXML.pm41
-rw-r--r--lib/gcstar/GCLang/CS/GCImport/GCImportAlexandria.pm39
-rw-r--r--lib/gcstar/GCLang/CS/GCImport/GCImportCSV.pm42
-rw-r--r--lib/gcstar/GCLang/CS/GCImport/GCImportFolder.pm68
-rw-r--r--lib/gcstar/GCLang/CS/GCImport/GCImportGCstar.pm37
-rw-r--r--lib/gcstar/GCLang/CS/GCImport/GCImportList.pm42
-rw-r--r--lib/gcstar/GCLang/CS/GCImport/GCImportScanner.pm50
-rw-r--r--lib/gcstar/GCLang/CS/GCImport/GCImportTellico.pm37
-rw-r--r--lib/gcstar/GCLang/CS/GCModels/GCTVepisodes.pm46
-rw-r--r--lib/gcstar/GCLang/CS/GCModels/GCTVseries.pm50
-rw-r--r--lib/gcstar/GCLang/CS/GCModels/GCboardgames.pm86
-rw-r--r--lib/gcstar/GCLang/CS/GCModels/GCbooks.pm73
-rw-r--r--lib/gcstar/GCLang/CS/GCModels/GCcoins.pm107
-rw-r--r--lib/gcstar/GCLang/CS/GCModels/GCcomics.pm73
-rw-r--r--lib/gcstar/GCLang/CS/GCModels/GCfilms.pm96
-rw-r--r--lib/gcstar/GCLang/CS/GCModels/GCgames.pm85
-rw-r--r--lib/gcstar/GCLang/CS/GCModels/GCgeneric.pm42
-rw-r--r--lib/gcstar/GCLang/CS/GCModels/GCminicars.pm182
-rw-r--r--lib/gcstar/GCLang/CS/GCModels/GCmusics.pm71
-rw-r--r--lib/gcstar/GCLang/CS/GCModels/GCperiodicals.pm52
-rw-r--r--lib/gcstar/GCLang/CS/GCModels/GCsmartcards.pm108
-rw-r--r--lib/gcstar/GCLang/CS/GCModels/GCsoftware.pm84
-rw-r--r--lib/gcstar/GCLang/CS/GCModels/GCstamps.pm189
-rw-r--r--lib/gcstar/GCLang/CS/GCModels/GCwines.pm68
-rw-r--r--lib/gcstar/GCLang/CS/GCstar.pm672
31 files changed, 2697 insertions, 0 deletions
diff --git a/lib/gcstar/GCLang/CS/GCExport/GCExportCSV.pm b/lib/gcstar/GCLang/CS/GCExport/GCExportCSV.pm
new file mode 100644
index 0000000..ddc768d
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCExport/GCExportCSV.pm
@@ -0,0 +1,40 @@
+{
+ package GCLang::CS::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' => 'Včetně názvu polí nahoře',
+ 'Separator' => 'Oddělovač',
+ 'Replacement' => 'Nahradit oddělovač tímto',
+ 'Charset' => 'Charset',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/CS/GCExport/GCExportExternal.pm b/lib/gcstar/GCLang/CS/GCExport/GCExportExternal.pm
new file mode 100644
index 0000000..7bfd2ce
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCExport/GCExportExternal.pm
@@ -0,0 +1,38 @@
+{
+ package GCLang::CS::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/CS/GCExport/GCExportHTML.pm b/lib/gcstar/GCLang/CS/GCExport/GCExportHTML.pm
new file mode 100644
index 0000000..0c0b970
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCExport/GCExportHTML.pm
@@ -0,0 +1,64 @@
+{
+ package GCLang::CS::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' => 'Použít Javascript',
+ 'FileTemplate' => 'Šablona:',
+ 'Preview' => 'Náhled',
+ 'NoPreview' => 'Náhled není k dispozici',
+ 'Title' => 'Název HTML stránky: ',
+ 'InfoFile' => 'Seznam filmů je v souboru: ',
+ 'InfoDir' => 'Obrázky jsou v: ',
+ 'HeightImg' => 'Výška obrázků (v pixelech): ',
+ 'OpenFileInBrowser' => 'Generovaný soubor otevřít ve webovém prohlížeči',
+ 'Note' => 'Seznam generován aplikací <a href="http://www.gcstar.org/">GCstar</a>',
+ 'InputTitle' => 'Zadejte text k vyhledání',
+ 'SearchType1' => 'Pouze název',
+ 'SearchType2' => 'Všechny informace',
+ 'SearchButton' => 'Hledání',
+ 'SearchTitle' => 'Vyhledá filmy, které vyhovují zadaným kritériím',
+ 'AllButton' => 'Vše',
+ 'AllTitle' => 'Zobrazí všechny filmy',
+ 'Expand' => 'Zobrazit vše',
+ 'ExpandTitle' => 'Zobrazí všechny informace o filmu',
+ 'Collapse' => 'Skrýt vše',
+ 'CollapseTitle' => 'Skryje všechny informace o filmu',
+ 'Borrowed' => 'Má půjčeno: ',
+ 'NotBorrowed' => 'Nepůjčen',
+ 'Top' => 'Nahoře',
+ 'Bottom' => 'Bottom',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/CS/GCExport/GCExportPDB.pm b/lib/gcstar/GCLang/CS/GCExport/GCExportPDB.pm
new file mode 100644
index 0000000..d7dc51d
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCExport/GCExportPDB.pm
@@ -0,0 +1,38 @@
+{
+ package GCLang::CS::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/CS/GCExport/GCExportSQL.pm b/lib/gcstar/GCLang/CS/GCExport/GCExportSQL.pm
new file mode 100644
index 0000000..60c40c2
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCExport/GCExportSQL.pm
@@ -0,0 +1,40 @@
+{
+ package GCLang::CS::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' => 'Včetně instrukce DROP',
+ 'WithCreate' => 'Včetně instrukce CREATE',
+ 'TableName' => 'Jméno tabulky',
+ 'InfoFile' => 'SQL soubor: ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/CS/GCExport/GCExportTarGz.pm b/lib/gcstar/GCLang/CS/GCExport/GCExportTarGz.pm
new file mode 100644
index 0000000..2cadd8f
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCExport/GCExportTarGz.pm
@@ -0,0 +1,37 @@
+{
+ package GCLang::CS::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' => 'Archív je v souboru: ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/CS/GCExport/GCExportXML.pm b/lib/gcstar/GCLang/CS/GCExport/GCExportXML.pm
new file mode 100644
index 0000000..3ba9bed
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCExport/GCExportXML.pm
@@ -0,0 +1,41 @@
+{
+ package GCLang::CS::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' => 'Soubor šablony',
+ 'ModelText' => 'Text šablony',
+ 'Models' => 'Použít šablonu',
+ 'UseFile' => 'Použít soubor',
+ 'UseModel' => 'Použít oblast textu',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/CS/GCImport/GCImportAlexandria.pm b/lib/gcstar/GCLang/CS/GCImport/GCImportAlexandria.pm
new file mode 100644
index 0000000..952490c
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCImport/GCImportAlexandria.pm
@@ -0,0 +1,39 @@
+{
+ package GCLang::CS::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' => 'Kde hledat', #Where should it search
+ 'Default' => 'Implicitní adresář Alexandrie',
+ 'Specified' => 'Adresář specifikovaný níže',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/CS/GCImport/GCImportCSV.pm b/lib/gcstar/GCLang/CS/GCImport/GCImportCSV.pm
new file mode 100644
index 0000000..eafe722
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCImport/GCImportCSV.pm
@@ -0,0 +1,42 @@
+{
+ package GCLang::CS::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' => 'Ignorovat první řádek',
+ 'Separator' => 'Oddělovač',
+ 'Plugin' => 'Použít server',
+ 'UseFirst' => 'Při více výsledcích použít první',
+ 'SearchField' => 'Search for items using',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/CS/GCImport/GCImportFolder.pm b/lib/gcstar/GCLang/CS/GCImport/GCImportFolder.pm
new file mode 100644
index 0000000..03db588
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCImport/GCImportFolder.pm
@@ -0,0 +1,68 @@
+{
+ package GCLang::CS::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/CS/GCImport/GCImportGCstar.pm b/lib/gcstar/GCLang/CS/GCImport/GCImportGCstar.pm
new file mode 100644
index 0000000..84ae50b
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCImport/GCImportGCstar.pm
@@ -0,0 +1,37 @@
+{
+ package GCLang::CS::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' => 'Kopírovat obrázky',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/CS/GCImport/GCImportList.pm b/lib/gcstar/GCLang/CS/GCImport/GCImportList.pm
new file mode 100644
index 0000000..16c0e18
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCImport/GCImportList.pm
@@ -0,0 +1,42 @@
+{
+ package GCLang::CS::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' => 'Seznam názvů',
+ 'Plugin' => 'Použít server',
+ 'UseFirst' => 'Při více výsledcích použít první',
+ 'CommentAuto' => 'Film automaticky importován.',
+ 'CommentSite' => 'Server: ',
+ 'CommentTitle' => 'Název: ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/CS/GCImport/GCImportScanner.pm b/lib/gcstar/GCLang/CS/GCImport/GCImportScanner.pm
new file mode 100644
index 0000000..9f33833
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCImport/GCImportScanner.pm
@@ -0,0 +1,50 @@
+{
+ package GCLang::CS::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/CS/GCImport/GCImportTellico.pm b/lib/gcstar/GCLang/CS/GCImport/GCImportTellico.pm
new file mode 100644
index 0000000..f191f1e
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCImport/GCImportTellico.pm
@@ -0,0 +1,37 @@
+{
+ package GCLang::CS::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' => 'Soubor není vytvořen aplikací Tellico',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/CS/GCModels/GCTVepisodes.pm b/lib/gcstar/GCLang/CS/GCModels/GCTVepisodes.pm
new file mode 100644
index 0000000..c913588
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCModels/GCTVepisodes.pm
@@ -0,0 +1,46 @@
+{
+ package GCLang::CS::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/CS/GCModels/GCTVseries.pm b/lib/gcstar/GCLang/CS/GCModels/GCTVseries.pm
new file mode 100644
index 0000000..611baeb
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCModels/GCTVseries.pm
@@ -0,0 +1,50 @@
+{
+ package GCLang::CS::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/CS/GCModels/GCboardgames.pm b/lib/gcstar/GCLang/CS/GCModels/GCboardgames.pm
new file mode 100644
index 0000000..8940f06
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCModels/GCboardgames.pm
@@ -0,0 +1,86 @@
+{
+ package GCLang::CS::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/CS/GCModels/GCbooks.pm b/lib/gcstar/GCLang/CS/GCModels/GCbooks.pm
new file mode 100644
index 0000000..89b0e84
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCModels/GCbooks.pm
@@ -0,0 +1,73 @@
+{
+ package GCLang::CS::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 => 'Sbírka knih',
+ Items => sub {
+ my $number = shift;
+ return 'Kniha' if $number eq '1';
+ return 'Knihy' if $number =~ /(?<!1)[2-4]$/;
+ return 'Knih';
+ },
+ NewItem => 'Nová kniha',
+
+ Isbn => 'ISBN',
+ Title => 'Název',
+ Cover => 'Obal',
+ Authors => 'Autoři',
+ Publisher => 'Vydavatel',
+ Publication => 'Datum vydání',
+ Language => 'Jazyk',
+ Genre => 'Žánr',
+ Serie => 'Sbírka',
+ Rank => 'Pořadí',
+ Bookdescription => 'Popis',
+ Pages => 'Počet stran',
+ Read => 'Přečteno',
+ Acquisition => 'Datum pořízení',
+ Edition => 'Náklad',
+ Format => 'Rozměr',
+ Comments => 'Poznámky',
+ Url => 'Web',
+ Translator => 'Překladatel',
+ Artist => 'Ilustrace',
+ DigitalFile => 'Digital version',
+
+ General => 'Hlavní',
+ Details => 'Detaily',
+
+ ReadNo => 'Nepřečteno',
+ ReadYes => 'Přečteno',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/CS/GCModels/GCcoins.pm b/lib/gcstar/GCLang/CS/GCModels/GCcoins.pm
new file mode 100644
index 0000000..b19874e
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCModels/GCcoins.pm
@@ -0,0 +1,107 @@
+{
+ package GCLang::CS::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 => 'Sbírka mincí',
+ Items => sub {
+ my $number = shift;
+ return 'Mince' if $number eq '1';
+ return 'Mince' if $number =~ /(?<!1)[2-4]$/;
+ return 'Mincí';
+ },
+ NewItem => 'Nová mince',
+
+ Name => 'Název',
+ Country => 'Země',
+ Year => 'Rok',
+ Currency => 'Měna',
+ Value => 'Hodnota',
+ Picture => 'Hlavní obrázek',
+ Diameter => 'Průměr',
+ Metal => 'Kov',
+ Edge => 'Hrana',
+ Edge1 => 'Hrana 1',
+ Edge2 => 'Hrana 2',
+ Edge3 => 'Hrana 3',
+ Edge4 => 'Hrana 4',
+ Head => 'Hlava',
+ Tail => 'Orel',
+ Comments => 'Poznámky',
+ History => 'Historie',
+ Website => 'Webová stránka',
+ Estimate => 'Odhad',
+ References => 'Reference',
+ Type => 'Typ',
+ Coin => 'Mince',
+ Banknote => 'Bankovka',
+
+ Main => 'Hlavní',
+ Description => 'Popis',
+ Other => 'Další informace',
+ Pictures => 'Obrázky',
+
+ Condition => 'Stav (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/CS/GCModels/GCcomics.pm b/lib/gcstar/GCLang/CS/GCModels/GCcomics.pm
new file mode 100644
index 0000000..3f3e10b
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCModels/GCcomics.pm
@@ -0,0 +1,73 @@
+{
+ package GCLang::CS::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/CS/GCModels/GCfilms.pm b/lib/gcstar/GCLang/CS/GCModels/GCfilms.pm
new file mode 100644
index 0000000..c22e53d
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCModels/GCfilms.pm
@@ -0,0 +1,96 @@
+{
+ package GCLang::CS::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 => 'Sbírka filmů',
+ Items => sub {
+ my $number = shift;
+ return 'Film' if $number eq '1';
+ return 'Filmy' if $number =~ /(?<!1)[2-4]$/;
+ return 'Filmů';
+ },
+ NewItem => 'Nový film',
+
+
+ Id => 'Id',
+ Title => 'Název',
+ Date => 'Datum',
+ Time => 'Délka',
+ Director => 'Režie',
+ Country => 'Země',
+ MinimumAge => 'Věk',
+ Genre => 'Žánr',
+ Image => 'Obrázek',
+ Original => 'Původní název',
+ Actors => 'Obsazení',
+ Actor => 'Actor',
+ Role => 'Role',
+ Comment => 'Komentář',
+ Synopsis => 'Anotace',
+ Seen => 'Shlédnuto',
+ Number => 'Počet médií',
+ Format => 'Medium',
+ Region => 'Region',
+ Identifier => 'Identifikátor',
+ Url => 'Web',
+ Audio => 'Zvuk',
+ Video => 'Video formát',
+ Trailer => 'Soubor s filmem',
+ Serie => 'Sbírka',
+ Rank => 'Pořadí',
+ Subtitles => 'Titulky',
+
+ SeenYes => 'Shlédnuto',
+ SeenNo => 'Neshlédnuto',
+
+ AgeUnrated => 'Nestanoven',
+ AgeAll => 'Pro všechny',
+ AgeParent => 'Pod dozorem rodičů',
+
+ Main => 'Hlavní položky',
+ General => 'Hlavní',
+ Details => 'Detaily',
+
+ Information => 'Informace',
+ Languages => 'Jazyky',
+ Encoding => 'Kódování',
+
+ FilterAudienceAge => 'Věk diváka',
+ FilterSeenNo => '_Neshlédnuté filmy',
+ FilterSeenYes => '_Shlédnuté filmy',
+ FilterRatingSelect => '_Hodnocení minimálně...',
+
+ ExtractSize => 'Velikost',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/CS/GCModels/GCgames.pm b/lib/gcstar/GCLang/CS/GCModels/GCgames.pm
new file mode 100644
index 0000000..a16822f
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCModels/GCgames.pm
@@ -0,0 +1,85 @@
+{
+ package GCLang::CS::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 => 'Sbírka her',
+ Items => sub {
+ my $number = shift;
+ return 'Hra' if $number eq '1';
+ return 'Hry' if $number =~ /(?<!1)[2-4]$/;
+ return 'Her';
+ },
+ NewItem => 'Nová hra',
+
+ Id => 'Id',
+ Ean => 'EAN',
+ Name => 'Název',
+ Platform => 'Platforma',
+ Players => 'Počet hráčů',
+ Released => 'Datum vydání',
+ Editor => 'Vydavatel',
+ Developer => 'Vývojář',
+ Genre => 'Žánr',
+ Box => 'Obrázek obalu',
+ Case => 'Obal',
+ Manual => 'Manuál',
+ Completion => 'Dokončeno (%)',
+ Executable => 'Spustitelný soubor',
+ Description => 'Popis',
+ Codes => 'Cheaty',
+ Code => 'Cheat',
+ Effect => 'Účel',
+ Secrets => 'Tajemství',
+ Screenshots => 'Snímek ze hry',
+ Screenshot1 => 'První snímek ze hry',
+ Screenshot2 => 'Druhý snímek ze hry',
+ Comments => 'Komentář',
+ Url => 'Web',
+ Unlockables => 'Možnosti odemčení',
+ Unlockable => 'Odemčení',
+ Howto => 'Jak odemknout',
+ Exclusive => 'Exclusive',
+ Resolutions => 'Display resolutions',
+ InstallationSize => 'Size',
+ Region => 'Region',
+ SerialNumber => 'Serial Number',
+
+ General => 'Hlavní',
+ Details => 'Detaily',
+ Tips => 'Tipy',
+ Information => 'Informace',
+
+ FilterRatingSelect => 'Hodnocení _minimálně...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/CS/GCModels/GCgeneric.pm b/lib/gcstar/GCLang/CS/GCModels/GCgeneric.pm
new file mode 100644
index 0000000..8257a08
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCModels/GCgeneric.pm
@@ -0,0 +1,42 @@
+{
+ package GCLang::CS::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/CS/GCModels/GCminicars.pm b/lib/gcstar/GCLang/CS/GCModels/GCminicars.pm
new file mode 100644
index 0000000..18c9c20
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCModels/GCminicars.pm
@@ -0,0 +1,182 @@
+{
+ package GCLang::CS::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/CS/GCModels/GCmusics.pm b/lib/gcstar/GCLang/CS/GCModels/GCmusics.pm
new file mode 100644
index 0000000..719bd39
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCModels/GCmusics.pm
@@ -0,0 +1,71 @@
+{
+ package GCLang::CS::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 => 'Sbírka hudby',
+ Items => sub {
+ my $number = shift;
+ return 'Album' if $number eq '1';
+ return 'Alba' if $number =~ /(?<!1)[2-4]$/;
+ return 'Alb';
+ },
+ NewItem => 'Nové album',
+
+ Unique => 'ISRC/EAN',
+ Title => 'Název',
+ Cover => 'Obal',
+ Artist => 'Umělec',
+ Format => 'Formát',
+ Running => 'Délka',
+ Release => 'Datum vydání',
+ Genre => 'Žánr',
+ Origin => 'Origin',
+
+#For tracks list
+ Tracks => 'Seznam skladeb',
+ Number => 'Číslo',
+ Track => 'Název',
+ Time => 'Čas',
+
+ Composer => 'Skladatel',
+ Producer => 'Producent',
+ Playlist => 'Playlist',
+ Comments => 'Poznámky',
+ Label => 'Vydavatel', #Label
+ Url => 'Webová stránka',
+
+ General => 'Hlavní',
+ Details => 'Detaily',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/CS/GCModels/GCperiodicals.pm b/lib/gcstar/GCLang/CS/GCModels/GCperiodicals.pm
new file mode 100644
index 0000000..10a0117
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCModels/GCperiodicals.pm
@@ -0,0 +1,52 @@
+{
+ package GCLang::CS::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/CS/GCModels/GCsmartcards.pm b/lib/gcstar/GCLang/CS/GCModels/GCsmartcards.pm
new file mode 100644
index 0000000..c312da1
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCModels/GCsmartcards.pm
@@ -0,0 +1,108 @@
+{
+ package GCLang::CS::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/CS/GCModels/GCsoftware.pm b/lib/gcstar/GCLang/CS/GCModels/GCsoftware.pm
new file mode 100644
index 0000000..8745ae9
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCModels/GCsoftware.pm
@@ -0,0 +1,84 @@
+{
+ package GCLang::CS::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/CS/GCModels/GCstamps.pm b/lib/gcstar/GCLang/CS/GCModels/GCstamps.pm
new file mode 100644
index 0000000..d60bfa5
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCModels/GCstamps.pm
@@ -0,0 +1,189 @@
+{
+ package GCLang::CS::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/CS/GCModels/GCwines.pm b/lib/gcstar/GCLang/CS/GCModels/GCwines.pm
new file mode 100644
index 0000000..8d94535
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCModels/GCwines.pm
@@ -0,0 +1,68 @@
+{
+ package GCLang::CS::GCModels::GCwines;
+
+ use utf8;
+
+# Copyright 2007 Yves Martin
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Sbírka vín',
+ Items => sub {
+ my $number = shift;
+ return 'Víno' if $number eq '1';
+ return 'Vína' if $number =~ /(?<!1)[2-4]$/;
+ return 'Vín';
+ },
+ NewItem => 'Nové víno',
+
+ Name => 'Název',
+ Designation => 'Zatřídění',
+ Vintage => 'Ročník',
+ Vineyard => 'Vinice',
+ Type => 'Typ',
+ Grapes => 'Hrozny',
+ Soil => 'Půda',
+ Producer => 'Výrobce',
+ Country => 'Původ',
+ Volume => 'Obsah (ml)',
+ Alcohol => 'Alkohol (%)',
+ Medal => 'Ocenění/Vyznamenání',
+
+ Storage => 'Uskladnění',
+ Location => 'Umístění',
+ ShelfIndex => 'Index',
+ Quantity => 'Množství',
+ Acquisition => 'Přírůstek', #Acquisition
+ PurchaseDate => 'Datum nákupu',
+ PurchasePrice => 'Nákupní cena',
+ Gift => 'Dar',
+ BottleLabel => 'Viněta',
+ Website => 'Zmínka na webu',
+
+ Tasted => 'Ochutnáno',
+ Comments => 'Poznámky',
+ Serving => 'Servírování', #Serving
+ TastingField => 'Poznámky k jakkosti', #Testing notes
+
+ General => 'Hlavní',
+ Details => 'Detaily',
+ Tasting => 'Ochutnávka',
+
+ TastedNo => 'Neochutnáno',
+ TastedYes => 'Ochutnáno',
+
+ FilterRange => '_Rozmezí',
+ FilterTastedNo => '_Neochutnáno',
+ FilterTastedYes => '_Ochutnáno',
+ FilterRatingSelect => '_Hodnocení minimálně...'
+
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/CS/GCstar.pm b/lib/gcstar/GCLang/CS/GCstar.pm
new file mode 100644
index 0000000..359f860
--- /dev/null
+++ b/lib/gcstar/GCLang/CS/GCstar.pm
@@ -0,0 +1,672 @@
+{
+ package GCLang::CS;
+
+ 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' => 'Czech',
+
+ 'Separator' => ': ',
+
+ 'Warning' => '<b>Varování</b>:
+
+Informace získané ze serverů (vyhledávacím pluginem)
+jsou pouze pro <b>osobní použití</b>.
+
+Jakákoliv redistribuce je zakázána bez <b>přímého souhlasu</b> serverů.
+
+K rozlišení, který server vlastní dané informace, můžete použít
+<b>tlačítko pod detaily každé položky</b>.',
+
+ 'AllItemsFiltered' => 'Žádný záznam pro Vaše zadání', # Accepts model codes
+
+#Installation
+ 'InstallDirInfo' => 'Instaluji do ',
+ 'InstallMandatory' => 'Povinné součásti',
+ 'InstallOptional' => 'Volitelné součásti',
+ 'InstallErrorMissing' => 'Chyba: Musí být nainstalovány následující komponenty Perlu: ',
+ 'InstallPrompt' => 'Základní adresář pro instalaci [/usr/local]: ',
+ 'InstallEnd' => 'Konec instalace',
+ 'InstallNoError' => 'Bez chyb',
+ 'InstallLaunch' => 'Před použitím aplikace musíte spustit ',
+ 'InstallDirectory' => 'Základní adresář',
+ 'InstallTitle' => 'Instalace GCstar',
+ 'InstallDependencies' => 'Závislosti',
+ 'InstallPath' => 'Cesta',
+ 'InstallOptions' => 'Volby',
+ 'InstallSelectDirectory' => 'Vyberte adresář pro instalaci',
+ 'InstallWithClean' => 'Odstraňte soubory z adresáře pro instalaci',
+ 'InstallWithMenu' => 'Přidat GCstar do menu Aplikace',
+ 'InstallNoPermission' => 'Chyba: Nemáte oprávnění k zápisu do zvoleného adresáře',
+ 'InstallMissingMandatory' => 'Povinné závislosti chybí. Instalace GCstar není možná, dokud nebudou přidány do systému.',
+ 'InstallMissingOptional' => 'Několik volitelných součástí chybí. Jejich seznam je níže. GCstar může být nainstalován, ale některé vlastnosti nebudou dostupné.',
+ 'InstallMissingNone' => 'Všechny potřebné součásti jsou nainstalovány. Instalace může pokračovat.',
+ 'InstallOK' => 'OK',
+ 'InstallMissing' => 'Chybí',
+ 'InstallMissingFor' => 'Chybí',
+ 'InstallCleanDirectory' => 'Odstraňování souborů programu GCstar v adresáři: ',
+ 'InstallCopyDirectory' => 'Kopírování souborů do adresáře: ',
+ 'InstallCopyDesktop' => 'Kopírování souboru pracovní plochy do: ', #Copying desktop file in
+
+#Update
+ 'UpdateUseProxy' => 'Použít Proxy (pokud není potřeba, stiskni enter): ',
+ 'UpdateNoPermission' => 'Nemáte právo zápisu v tomto adresáři: ',
+ 'UpdateNone' => 'Update není k dispozici',
+ 'UpdateFileNotFound' => 'Soubor nenalezen',
+
+#Splash
+ 'SplashInit' => 'Inicializace',
+ 'SplashLoad' => 'Nahrávám sbírku',
+ 'SplashDisplay' => 'Zobrazuji sbírku',
+ 'SplashSort' => 'Řadím sbírku',
+ 'SplashDone' => 'Hotovo',
+
+#Import from GCfilms
+ 'GCfilmsImportQuestion' => 'Zdá se, že jste dříve používal(a) GCfilms. Co chcete importovat z GCfilms do GCstar (nebude to mít vliv na GCfilms pokud jej nadále budete chtít používat)?',
+ 'GCfilmsImportOptions' => 'Nastavení',
+ 'GCfilmsImportData' => 'Seznam filmů',
+
+#Menus
+ 'MenuFile' => '_Soubor',
+ 'MenuNewList' => '_Nová sbírka',
+ 'MenuStats' => 'Statistics',
+ 'MenuHistory' => 'N_edávné sbírky',
+ 'MenuLend' => 'Zobraz _půjčené položky', # Accepts model codes
+ 'MenuImport' => '_Import',
+ 'MenuExport' => '_Export',
+ 'MenuAddItem' => '_Add Items', # Accepts model codes
+
+ 'MenuEdit' => '_Úpravy',
+ 'MenuDuplicate' => '_Duplikuj položku', # Accepts model codes
+ 'MenuDuplicatePlural' => 'Du_plicate Items', # Accepts model codes
+ 'MenuEditSelectAllItems' => 'Select _All Items', # Accepts model codes
+ 'MenuEditDeleteCurrent' => '_Vymaž položku', # Accepts model codes
+ 'MenuEditDeleteCurrentPlural' => '_Remove Items', # Accepts model codes
+ 'MenuEditFields' => '_Změň pole sbírky', # Change collection fields
+ 'MenuEditLockItems' => '_Uzamkni sbírku',
+
+ 'MenuDisplay' => '_Filtr',
+ 'MenuSavedSearches' => 'Saved searches',
+ 'MenuSavedSearchesSave' => 'Save current search',
+ 'MenuSavedSearchesEdit' => 'Modify saved searches',
+ 'MenuAdvancedSearch' => '_Pokročilé vyhledávání',
+ 'MenuViewAllItems' => 'Zobrazit _všechny položky', # Accepts model codes
+ 'MenuNoFilter' => '_Vše',
+
+ 'MenuConfiguration' => '_Nastavení',
+ 'MenuDisplayMenu' => 'Display',
+ 'MenuDisplayFullScreen' => 'Full screen',
+ 'MenuDisplayMenuBar' => 'Menus',
+ 'MenuDisplayToolBar' => 'Toolbar',
+ 'MenuDisplayStatusBar' => 'Bottom bar',
+ 'MenuDisplayOptions' => '_Zobrazené informace',
+ 'MenuBorrowers' => '_Dlužníci',
+ 'MenuToolbarConfiguration' => '_Toolbar controls',
+ 'MenuDefaultValues' => 'Default values for new item', # Accepts model codes
+ 'MenuGenresConversion' => '_Konverze žánru',
+
+ 'MenuBookmarks' => 'Mé _Sbíky',
+ 'MenuBookmarksAdd' => '_Přidat aktuální sbírku',
+ 'MenuBookmarksEdit' => '_Editovat založené sbírky', # Edit bookmarked collections
+
+ 'MenuHelp' => '_Nápověda',
+ 'MenuHelpContent' => '_Nápověda',
+ 'MenuAllPlugins' => 'Zobrazit _pluginy',
+ 'MenuBugReport' => 'Nahlásit _chybu',
+ 'MenuAbout' => '_O aplikaci GCstar',
+
+ 'MenuNewWindow' => 'Zobrazit položky v _novém okně', # Accepts model codes
+ 'MenuNewWindowPlural' => 'Show Items in _New Window', # Accepts model codes
+
+ 'ContextExpandAll' => 'Zobraz vše',
+ 'ContextCollapseAll' => 'Skryj vše',
+ 'ContextChooseImage' => 'Choose _Image',
+ 'ContextOpenWith' => 'Open Wit_h',
+ 'ContextImageEditor' => 'Image Editor',
+ 'ContextImgFront' => 'Front',
+ 'ContextImgBack' => 'Back',
+ 'ContextChooseFile' => 'Choose a File',
+ 'ContextChooseFolder' => 'Choose a Folder',
+
+ 'DialogEnterNumber' => 'Prosím zadej hodnotu',
+
+ 'RemoveConfirm' => 'Opravdu chcete vymazat tuto položku?', # Accepts model codes
+ 'RemoveConfirmPlural' => 'Do you really want to remove these items?', # Accepts model codes
+
+ 'DefaultNewItem' => 'Nová položka', # Accepts model codes
+ 'NewItemTooltip' => 'Přidat novou položku', # Accepts model codes
+ 'NoItemFound' => 'Položka nebyla nalezena. Chcete ji zkusit najít na jiném serveru?',
+ 'OpenList' => 'Prosím vyberte sbírku',
+ 'SaveList' => 'Prosím vyberte, kam uložit sbírku',
+ 'SaveListTooltip' => 'Uložit současnou sbírku',
+ 'SaveUnsavedChanges' => 'Ve sbírce jste provedli změny. Chcete je nyní uložit?',
+ 'SaveDontSave' => 'Neukládat',
+ 'PreferencesTooltip' => 'Umožňuje změnu nastavení',
+ 'ViewTooltip' => 'Změní zobrazení sbírky',
+ 'PlayTooltip' => 'Přehraje video asociované filmem', # Accepts model codes
+ 'PlayFileNotFound' => 'File to launch was not found in this location:',
+ 'PlayRetry' => 'Retry',
+
+ 'StatusSave' => 'Ukládám...',
+ 'StatusLoad' => 'Nahrávám...',
+ 'StatusSearch' => 'Hledám...',
+ 'StatusGetInfo' => 'Stahuji informace...',
+ 'StatusGetImage' => 'Stahuji obrázek...',
+
+ 'SaveError' => 'Nemohu uložit seznam. Prosím zkontrolujte přístupová práva a volné místo na disku.',
+ 'OpenError' => 'Nemohu otevřít seznam. Prosím zkontrolujte přístupová práva.',
+ 'OpenFormatError' => 'Nemohu otevřít seznam.',
+ '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' => 'Adresář vybraný k ukládání obrázků není správný. Prosím vyberte jiný.',
+ 'OptionsCreationError'=> 'Nemohu vytvořit soubor s nastavením: ',
+ 'OptionsOpenError'=> 'Nemohu otevřít soubor s nastavením: ',
+ 'OptionsSaveError'=> 'Nemohu uložit soubor s nastavením: ',
+ 'ErrorModelNotFound' => 'Model not found: ',
+ 'ErrorModelUserDir' => 'User defined models are in: ',
+
+ 'RandomTooltip' => 'Co budu dělat dnes večer?',
+ 'RandomError'=> 'Nic nemáte', # Accepts model codes
+ 'RandomEnd'=> 'Nic dalšího nemáte', # Accepts model codes
+ 'RandomNextTip'=> 'Další tip',
+ 'RandomOkTip'=> 'Přijmout tento tip',
+
+ 'AboutTitle' => 'O aplikaci GCstar',
+ 'AboutDesc' => 'Katalog sbírek',
+ 'AboutVersion' => 'Verze',
+ 'AboutTeam' => 'Tým',
+ 'AboutWho' => 'Christian Jodar (Tian): Project manager, Programmer
+Nyall Dawson (Zombiepig): Programmer
+TPF: Programmer
+Adolfo González: Programmer
+',
+ 'AboutLicense' => 'Distribuováno za podmínek GNU GPL
+Logos Copyright le Spektre',
+ 'AboutTranslation' => 'Český překlad připravil Tomáš Klimek (Tomas.Klimek@gmail.com)',
+ 'AboutDesign' => 'Łukasz Kowalczk (Qoolman): Skin Designer
+Logo a webdesign od le Spektre',
+
+ 'ToolbarRandom' => 'Dnes večer',
+
+ 'UnsavedCollection' => 'Unsaved Collection',
+ 'ModelsSelect' => 'Vyber typ sbírky',
+ 'ModelsPersonal' => 'Vlastní šablony',
+ 'ModelsDefault' => 'Standardní šablony',
+ 'ModelsList' => 'Typy sbírek',
+ 'ModelSettings' => 'Nastavení sbírek',
+ 'ModelNewType' => 'Nový typ sbírky',
+ 'ModelName' => 'Název nového typu sbírky:',
+ 'ModelFields' => 'Pole',
+ 'ModelOptions' => 'Nastavení',
+ 'ModelFilters' => 'Filtry',
+ 'ModelNewField' => 'Nové pole',
+ 'ModelFieldInformation' => 'Informace',
+ 'ModelFieldName' => 'Štítek:',
+ 'ModelFieldType' => 'Typ:',
+ 'ModelFieldGroup' => 'Skupina:',
+ 'ModelFieldValues' => 'Hodnoty',
+ 'ModelFieldInit' => 'Implicitní:',
+ 'ModelFieldMin' => 'Minimální:',
+ 'ModelFieldMax' => 'Maximální:',
+ 'ModelFieldList' => 'Seznam hodnot:',
+ 'ModelFieldListLegend' => '<i>Oddělovač je čárka</i>',
+ 'ModelFieldDisplayAs' => 'Display as:',
+ 'ModelFieldDisplayAsText' => 'Text',
+ 'ModelFieldDisplayAsGraphical' => 'Rating Control',
+ 'ModelFieldTypeShortText' => 'Krátký text',
+ 'ModelFieldTypeLongText' => 'Dlouhý text',
+ 'ModelFieldTypeYesNo' => 'Ano/Ne',
+ 'ModelFieldTypeNumber' => 'Číslo',
+ 'ModelFieldTypeDate' => 'Datum',
+ 'ModelFieldTypeOptions' => 'Předdefinovaný seznam hodnot',
+ 'ModelFieldTypeImage' => 'Obrázek',
+ 'ModelFieldTypeSingleList' => 'Jednoduchý seznam',
+ 'ModelFieldTypeFile' => 'Soubor',
+ 'ModelFieldTypeFormatted' => 'Závislý na jiných typech',
+ 'ModelFieldParameters' => 'Parametry',
+ 'ModelFieldHasHistory' => 'Používat historii',
+ 'ModelFieldFlat' => 'Zobrazit v jedné řadě',
+ 'ModelFieldStep' => 'Krok přírůstku:',
+ 'ModelFieldFileFormat' => 'Typ souboru:',
+ 'ModelFieldFileFile' => 'Prostý soubor',
+ 'ModelFieldFileImage' => 'Obrázek',
+ 'ModelFieldFileVideo' => 'Video',
+ 'ModelFieldFileAudio' => 'Audio',
+ 'ModelFieldFileProgram' => 'Program',
+ 'ModelFieldFileUrl' => 'URL',
+ 'ModelFieldFileEbook' => 'Ebook',
+ 'ModelOptionsFields' => 'Přiřazení polí',
+ 'ModelOptionsFieldsAuto' => 'Automaticky',
+ 'ModelOptionsFieldsNone' => 'Nic',
+ 'ModelOptionsFieldsTitle' => 'Nadpis',
+ 'ModelOptionsFieldsId' => 'Identifikátor',
+ 'ModelOptionsFieldsCover' => 'Obal',
+ 'ModelOptionsFieldsPlay' => 'Tlačítko přehrát',
+ 'ModelCollectionSettings' => 'Nastavení sbírky',
+ 'ModelCollectionSettingsLending' => 'Položky mohou být půjčeny',
+ 'ModelCollectionSettingsTagging' => 'Items can be tagged',
+ 'ModelFilterActivated' => 'Pole bude ve vyhledávání',
+ 'ModelFilterComparison' => 'Porovnání',
+ 'ModelFilterContain' => 'Obsahuje',
+ 'ModelFilterDoesNotContain' => 'Does not contain',
+ 'ModelFilterRegexp' => 'Regular expression',
+ 'ModelFilterRange' => 'Rozsah',
+ 'ModelFilterNumeric' => 'Porovnávání je číselné',
+ 'ModelFilterQuick' => 'Vytvořit rychlý filtr',
+ 'ModelTooltipName' => 'Zadejte název pokud chcete šablonu použít v dalších kolekcích. Pokud název nezadáte, bude nastavení uloženo přímo v kolekci',
+ 'ModelTooltipLabel' => 'Zobrazený název pole',
+ 'ModelTooltipGroup' => 'Použití pro seskupování polí. Položky bez přiřazené hodnoty budou v implicitní skupině',
+ 'ModelTooltipHistory' => 'Pro uchování dříve zadaných hodnot do seznamu přiřazenému poli',
+ 'ModelTooltipFormat' => 'Typ souboru se použije pro rozlišení akce při otevírání souboru tlačítkem Přehrát',
+ 'ModelTooltipLending' => 'Tato možnost přidá několik polí pro správu půjčování',
+ 'ModelTooltipTagging' => 'This will add some fields to manage tags',
+ 'ModelTooltipNumeric' => 'Hodnoty budou považovány za čísla při porovnání',
+ 'ModelTooltipQuick' => 'Do menu filtr přidá submenu', #This will add a submenu in the Filters one
+
+ 'ResultsTitle' => 'Vyberte si ze seznamu', # Accepts model codes
+ 'ResultsNextTip' => 'Hledat na dalším serveru',
+ 'ResultsPreview' => 'Náhled',
+ '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' => 'Možnosti',
+ 'OptionsExpertMode' => 'Expert Mode',
+ 'OptionsPrograms' => 'Specify applications to use for different media, leave blank to use system defaults',
+ 'OptionsBrowser' => 'Webový prohlížeč',
+ 'OptionsPlayer' => 'Přehrávač videa',
+ 'OptionsAudio' => 'Přehrávač hudby',
+ 'OptionsImageEditor' => 'Image Editor',
+ 'OptionsCdDevice' => 'CD device',
+ 'OptionsImages' => 'Adresář s obrázky',
+ 'OptionsUseRelativePaths' => 'Pro obrázky používat relativní cesty',
+ 'OptionsLayout' => 'Rozložení',
+ 'OptionsStatus' => 'Zobrazit stavový řádek',
+ 'OptionsUseStars' => 'Use stars to display ratings',
+ 'OptionsWarning' => 'Varování: Změny v této záložce budou bez efektu až do restartu aplikace',
+ 'OptionsRemoveConfirm' => 'Před smazáním položky požadovat potvrzení',
+ 'OptionsAutoSave' => 'Automaticky ukládat sbírku',
+ 'OptionsAutoLoad' => 'Při startu nahrát předchozí sbírku',
+ 'OptionsSplash' => 'Zobrazit úvodní obrázek',
+ 'OptionsTearoffMenus' => 'Enable tear-off menus',
+ 'OptionsSpellCheck' => 'Use spelling checker for long text fields',
+ 'OptionsProgramTitle' => 'Vyberte webový prohlížeč',
+ 'OptionsPlugins' => 'Server, odkud stahovat data',
+ 'OptionsAskPlugins' => 'Zeptat se (všechny servery)',
+ 'OptionsPluginsMulti' => 'Více serverů',
+ 'OptionsPluginsMultiAsk' => 'Zeptat se (více serverů)',
+ 'OptionsPluginsMultiPerField' => 'Více serverů (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' => 'Nastavit seznam',
+ 'OptionsAskImport' => 'Vyberte pole, která se importují',
+ 'OptionsProxy' => 'Použít proxy',
+ 'OptionsCookieJar' => 'Use this cookie jar file',
+ 'OptionsLang' => 'Jazyk',
+ 'OptionsMain' => 'Hlavní',
+ 'OptionsPaths' => 'Cesty',
+ 'OptionsInternet' => 'Internet',
+ 'OptionsConveniences' => 'Vlastnosti',
+ 'OptionsDisplay' => 'Zobrazení',
+ 'OptionsToolbar' => 'Nástrojová lišta',
+ 'OptionsToolbars' => {0 => 'Žádná', 1 => 'Malá', 2 => 'Velká', 3 => 'System setting'},
+ 'OptionsToolbarPosition' => 'Umístění',
+ 'OptionsToolbarPositions' => {0 => 'Nahoře', 1 => 'Dole', 2 => 'Vlevo', 3 => 'Vpravo'},
+ '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' => 'Zobrazení',
+ 'OptionsViews' => {0 => 'Text', 1 => 'Obrázek', 2 => 'Detailní'},
+ 'OptionsColumns' => 'Sloupce',
+ 'OptionsMailer' => 'E-mailer',
+ 'OptionsSMTP' => 'Server',
+ 'OptionsFrom' => 'E-mail',
+ 'OptionsTransform' => 'Členy umístit na konce názvů',
+ 'OptionsArticles' => 'Členy (odděleny čárkou)',
+ 'OptionsSearchStop' => 'Umožnit zrušení hledání',
+ 'OptionsBigPics' => 'Use big pictures when available',
+ 'OptionsAlwaysOriginal' => 'Použít hlavní titul jako originální titul, pokud není vyplněn',
+ 'OptionsRestoreAccelerators' => 'Restore accelerators',
+ 'OptionsHistory' => 'Velikost historie',
+ 'OptionsClearHistory' => 'Vyčistit historii',
+ 'OptionsStyle' => 'Skin',
+ 'OptionsDontAsk' => 'Příště se nedotazovat',
+ 'OptionsPathProgramsGroup' => 'Programy',
+ 'OptionsProgramsSystem' => 'Použít programy stanovené v systému',
+ 'OptionsProgramsUser' => 'Použít jiné programy',
+ 'OptionsProgramsSet' => 'Nastavit programy',
+ 'OptionsPathImagesGroup' => 'Obrázky',
+ 'OptionsInternetDataGroup' => 'Import dat',
+ 'OptionsInternetSettingsGroup' => 'Nastavení',
+ 'OptionsDisplayInformationGroup' => 'Informační panel',
+ 'OptionsDisplayArticlesGroup' => 'Členy',
+ 'OptionsImagesDisplayGroup' => 'Zobrazení',
+ 'OptionsImagesStyleGroup' => 'Styl',
+ 'OptionsDetailedPreferencesGroup' => 'Předvolby',
+ 'OptionsFeaturesConveniencesGroup' => 'Nastavení',
+ 'OptionsPicturesFormat' => 'Předpona použitá pro obrázky:',
+ 'OptionsPicturesFormatInternal' => 'gcstar__',
+ 'OptionsPicturesFormatTitle' => 'Titul nebo název asociované položky',
+ 'OptionsPicturesWorkingDir' => '%WORKING_DIR% nebo . bude nahrazen adresářem se sbírkou (používat pouze pro začátek cesty)',
+ 'OptionsPicturesFileBase' => '%FILE_BASE% bude nahrazen názvem sbírky bez přípony (.gcs)',
+ 'OptionsPicturesWorkingDirError' => '%WORKING_DIR% může být použit pouze pro začátek cesty s obrázky',
+ 'OptionsConfigureMailers' => 'Nastavení e-mailových programů',
+
+ 'ImagesOptionsButton' => 'Nastavení',
+ 'ImagesOptionsTitle' => 'Nastavení pro seznam obrázků',
+ 'ImagesOptionsSelectColor' => 'Vybrat barvu',
+ 'ImagesOptionsUseOverlays' => 'Use image overlays',
+ 'ImagesOptionsBg' => 'Pozadí',
+ 'ImagesOptionsBgPicture' => 'Použít obrázek na pozadí',
+ 'ImagesOptionsFg'=> 'Výběr',
+ 'ImagesOptionsBgTooltip' => 'Změna barvy pozadí',
+ 'ImagesOptionsFgTooltip'=> 'Změna barvy výběru',
+ 'ImagesOptionsResizeImgList' => 'Automatically change number of columns',
+ 'ImagesOptionsAnimateImgList' => 'Use animations',
+ 'ImagesOptionsSizeLabel' => 'Velikost obrázků',
+ 'ImagesOptionsSizeList' => {0 => 'Velmi malé', 1 => 'Malé', 2 => 'Středně velké', 3 => 'Velké', 4 => 'Velmi velké'},
+ 'ImagesOptionsSizeTooltip' => 'Výběr velikosti obrázků',
+
+ 'DetailedOptionsTitle' => 'Nastavení detailního seznamu',
+ 'DetailedOptionsImageSize' => 'Velikost obrázků',
+ 'DetailedOptionsGroupItems' => 'Řadit podle',
+ 'DetailedOptionsSecondarySort' => 'Sort field for children',
+ 'DetailedOptionsFields' => 'Výběr zobrazených polí',
+ 'DetailedOptionsGroupedFirst' => 'Osiřelé položky nechat pohromadě',
+ 'DetailedOptionsAddCount' => 'Zobrazit počet prvků v kategoriích',
+
+ 'ExtractButton' => 'Informace',
+ 'ExtractTitle' => 'Informace o video souboru',
+ 'ExtractImport' => 'Použít hodnoty',
+
+ 'FieldsListOpen' => 'Nahrát seznam polí ze souboru',
+ 'FieldsListSave' => 'Uložit seznam polí do souboru',
+ 'FieldsListError' => 'Tento seznam polí nemůže být použit s tímto typem sbírky',
+ 'FieldsListIgnore' => '--- Ignore',
+
+ 'ExportTitle' => 'Export seznamu',
+ 'ExportFilter' => 'Export pouze zobrazených položek',
+ 'ExportFieldsTitle' => 'Pole k exportu',
+ 'ExportFieldsTip' => 'Vyber pole k exportu',
+ 'ExportWithPictures' => 'Zkopírovat obrázky do podadresáře',
+ 'ExportSortBy' => 'Řadit podle',
+ 'ExportOrder' => 'Order',
+
+ 'ImportListTitle' => 'Import dalšího seznamu',
+ 'ImportExportData' => 'Data',
+ 'ImportExportFile' => 'Soubor',
+ 'ImportExportFieldsUnused' => 'Nepoužité pole',
+ 'ImportExportFieldsUsed' => 'Použité pole',
+ 'ImportExportFieldsFill' => 'Přidat vše',
+ 'ImportExportFieldsClear' => 'Odebrat vše',
+ 'ImportExportFieldsEmpty' => 'Musíte vybrat alespoň jedno pole',
+ 'ImportExportFileEmpty' => 'Musíte zadat jméno souboru',
+ 'ImportFieldsTitle' => 'Pole k importu',
+ 'ImportFieldsTip' => 'Vyberte pole k importu',
+ 'ImportNewList' => 'Vytvořit novou kolekci',
+ 'ImportCurrentList' => 'Přidat do stávající kolekce',
+ 'ImportDropError' => 'Při otevírání souboru se vyskytl problém. Znovu se načte předchozí seznam.',
+ 'ImportGenerateId' => 'Vytvořit identifikátor pro každou položku',
+
+ 'FileChooserOpenFile' => 'Prosím vyberte soubor',
+ 'FileChooserDirectory' => 'Directory',
+ 'FileChooserOpenDirectory' => 'Vyberte adresář pro ukládání obrázků',
+ 'FileChooserOverwrite' => 'Tento soubor již existuje. Chcete jej přepsat?',
+ 'FileAllFiles' => 'All Files',
+ 'FileVideoFiles' => 'Video Files',
+ 'FileEbookFiles' => 'Ebook Files',
+ 'FileAudioFiles' => 'Audio Files',
+ 'FileGCstarFiles' => 'GCstar Collections',
+
+ 'PanelCompact' => 'Kompaktní',
+ 'PanelReadOnly' => 'Pouze pro čtení',
+ 'PanelForm' => 'Záložky',
+
+ 'PanelSearchButton' => 'Stáhnout Informace',
+ 'PanelSearchTip' => 'Hledá informace o tomto názvu na webu',
+ 'PanelSearchContextChooseOne' => 'Choose a site ...',
+ 'PanelSearchContextMultiSite' => 'Use "Many sites"',
+ 'PanelSearchContextMultiSitePerField' => 'Use "Many sites per field"',
+ 'PanelSearchContextOptions' => 'Change options ...',
+ 'PanelImageTipOpen' => 'Pro výběr jiného obrázku na obrázek klikněte.',
+ 'PanelImageTipView' => 'Pro zobrazení skutečné velikosti obrázku na něj klikněte.',
+ 'PanelImageTipMenu' => 'Pod pravým tlačítkem je více voleb.',
+ 'PanelImageTitle' => 'Vyberte obrázek',
+ 'PanelImageNoImage' => 'Bez obrázku',
+ 'PanelSelectFileTitle' => 'Vyberte soubor',
+ 'PanelLaunch' => 'Launch',
+ 'PanelRestoreDefault' => 'Obnovit výchozí nastavení',
+ 'PanelRefresh' => 'Update',
+ 'PanelRefreshTip' => 'Update information from web',
+
+ 'PanelFrom' =>'Od',
+ 'PanelTo' =>'Do',
+
+ 'PanelWeb' => 'Zobrazit informace',
+ 'PanelWebTip' => 'Zobrazí informace o vybrané položce na webu', # Accepts model codes
+ 'PanelRemoveTip' => 'Odstraní stávající položku', # Accepts model codes
+
+ 'PanelDateSelect' => 'Vyberte datum',
+ 'PanelNobody' => 'Žádný',
+ 'PanelUnknown' => 'Neznámý',
+ 'PanelAdded' => 'Přidáno',
+ 'PanelRating' => 'Hodnocení',
+ 'PanelPressRating' => 'Press Rating',
+ 'PanelLocation' => 'Umístění',
+
+ 'PanelLending' => 'Zápůjčky',
+ 'PanelBorrower' => 'Dlužník',
+ 'PanelLendDate' => 'Půjčeno od',
+ 'PanelHistory' => 'Historie zápůjček',
+ 'PanelReturned' => 'Položka vrácena', # Accepts model codes
+ 'PanelReturnDate' => 'Datum vrácení',
+ 'PanelLendedYes' => 'Půjčeno',
+ 'PanelLendedNo' => 'Dostupné',
+
+ 'PanelTags' => 'Tags',
+ 'PanelFavourite' => 'Favourite',
+ 'TagsAssigned' => 'Assigned Tags',
+
+ 'PanelUser' => 'User fields',
+
+ 'CheckUndef' => 'Nezáleží',
+ 'CheckYes' => 'Ano',
+ 'CheckNo' => 'Ne',
+
+ 'ToolbarAll' => 'Zobrazit vše',
+ 'ToolbarAllTooltip' => 'Zobrazí celý seznam',
+ 'ToolbarGroupBy' => 'Řadit podle',
+ 'ToolbarGroupByTooltip' => 'Vyberte pole, podle kterého se mají řadit položky seznamu',
+ 'ToolbarQuickSearch' => 'Quick search',
+ 'ToolbarQuickSearchLabel' => 'Search',
+ 'ToolbarQuickSearchTooltip' => 'Select the field to search in. Enter the search terms and press Enter',
+ 'ToolbarSeparator' => ' Separator',
+
+ 'PluginsTitle' => 'Hledat',
+ 'PluginsQuery' => 'Dotaz',
+ 'PluginsFrame' => 'Hledat na serveru',
+ 'PluginsLogo' => 'Logo',
+ 'PluginsName' => 'Jméno',
+ 'PluginsSearchFields' => 'Hledat v poli',
+ 'PluginsAuthor' => 'Autor',
+ 'PluginsLang' => 'Jazyk',
+ 'PluginsUseSite' => 'Použít vybraný server pro další hledání',
+ 'PluginsPreferredTooltip' => 'Site recommended by GCstar',
+ 'PluginDisabled' => 'Disabled',
+
+ 'BorrowersTitle' => 'Konfigurace dlužníků',
+ 'BorrowersList' => 'Dlužníci',
+ 'BorrowersName' => 'Jméno',
+ 'BorrowersEmail' => 'E-mail',
+ 'BorrowersAdd' => 'Přidat',
+ 'BorrowersRemove' => 'Odebrat',
+ 'BorrowersEdit' => 'Editace',
+ 'BorrowersTemplate' => 'Šablona mailu',
+ 'BorrowersSubject' => 'Předmět mailu',
+ 'BorrowersNotice1' => '%1 bude nahrazen jménem dlužníka',
+ 'BorrowersNotice2' => '%2 bude nahrazen názvem položky',
+ 'BorrowersNotice3' => '%3 bude nahrazen datem výpůjčky',
+
+ 'BorrowersImportTitle' => 'Importovat informace o dlužnících',
+ 'BorrowersImportType' => 'Formát souboru:',
+ 'BorrowersImportFile' => 'Soubor:',
+
+ 'BorrowedTitle' => 'Půjčené položky', # Accepts model codes
+ 'BorrowedDate' => 'Od',
+ 'BorrowedDisplayInPanel' => 'Show item in main window', # Accepts model codes
+
+ 'MailTitle' => 'Poslat e-mail',
+ 'MailFrom' => 'Od: ',
+ 'MailTo' => 'Komu: ',
+ 'MailSubject' => 'Předmět: ',
+ 'MailSmtpError' => 'Problém s připojením k SMTP serveru',
+ 'MailSendmailError' => 'Problém se spuštěním sendmailu',
+
+ 'SearchTooltip' => 'Prohledává celý seznam', # Accepts model codes
+ 'SearchTitle' => 'Hledání', # 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' => 'Nahradit v poli',
+ 'QueryReplaceOld' => 'Současné jméno',
+ 'QueryReplaceNew' => 'Nové jméno',
+ 'QueryReplaceLaunch' => 'Nahradit',
+
+ 'ImportWindowTitle' => 'Vyberte pole k importu',
+ 'ImportViewPicture' => 'Zobrazit obrázek',
+ 'ImportSelectAll' => 'Vybrat vše',
+ 'ImportSelectNone' => 'Nevybírat nic',
+
+ 'MultiSiteTitle' => 'Pro hledání použít tyto servery',
+ 'MultiSiteUnused' => 'Nepoužité servery',
+ 'MultiSiteUsed' => 'Použité servery',
+ 'MultiSiteLang' => 'Vybrat české servery',
+ 'MultiSiteEmptyError' => 'Máte prázdný seznam serverů',
+ 'MultiSiteClear' => 'Vymazat seznam',
+
+ 'DisplayOptionsTitle' => 'Zobrazit položky',
+ 'DisplayOptionsAll' => 'Vybrat vše',
+ 'DisplayOptionsSearch' => 'Stáhnout informace',
+
+ 'GenresTitle' => 'Konverze žánrů',
+ 'GenresCategoryName' => 'Použít žánr',
+ 'GenresCategoryMembers' => 'Nahradit žánr',
+ 'GenresLoad' => 'Nahrát seznam',
+ 'GenresExport' => 'Uložit seznam do souboru',
+ 'GenresModify' => 'Upravit konverzi',
+
+ 'PropertiesName' => 'Název sbírky',
+ 'PropertiesLang' => 'Language code',
+ 'PropertiesOwner' => 'Vlastník',
+ 'PropertiesEmail' => 'E-mail',
+ 'PropertiesDescription' => 'Popis',
+ 'PropertiesFile' => 'Informace o souboru',
+ 'PropertiesFilePath' => 'Úplná cesta',
+ 'PropertiesItemsNumber' => 'Počet položek', # Accepts model codes
+ 'PropertiesFileSize' => 'Velikost',
+ 'PropertiesFileSizeSymbols' => ['Bytů', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
+ 'PropertiesCollection' => 'Vlastnosti sbírky',
+ 'PropertiesDefaultPicture' => 'Default picture',
+
+ 'MailProgramsTitle' => 'Programy pro odesílání mailů',
+ 'MailProgramsName' => 'Název',
+ 'MailProgramsCommand' => 'Příkazová řádka',
+ 'MailProgramsRestore' => 'Obnovit implicitní',
+ 'MailProgramsAdd' => 'Přidat program',
+ 'MailProgramsInstructions' => 'V příkazové řádce je provedeno několik substitucí:
+ %f je nahrazeno e-mailovou adresou uživatele.
+ %t je nahrazeno adresou příjemce.
+ %s je nahrazeno předmětem zprávy.
+ %b je nahrazeno obsahem zprávy.',
+
+ 'BookmarksBookmarks' => 'Záložky',
+ 'BookmarksFolder' => 'Adresář',
+ 'BookmarksLabel' => 'Štítek', #Label
+ 'BookmarksPath' => 'Cesta',
+ 'BookmarksNewFolder' => 'Nový adresář',
+
+ 'AdvancedSearchType' => 'Typ hledání',
+ 'AdvancedSearchTypeAnd' => 'Položky odpovídají všem podmínkám', # Accepts model codes
+ 'AdvancedSearchTypeOr' => 'Položky odpovídají alespoň jedné podmínce', # Accepts model codes
+ 'AdvancedSearchCriteria' => 'Podmínky',
+ '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' => 'Zpráva o chybě generovaná z GCstar',
+ 'BugReportVersion' => 'Verze',
+ 'BugReportPlatform' => 'Operační systém',
+ 'BugReportMessage' => 'Chybová zpráva',
+ 'BugReportInformation' => 'Další informace',
+
+#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;