summaryrefslogtreecommitdiff
path: root/lib/gcstar/GCLang/EN
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gcstar/GCLang/EN')
-rw-r--r--lib/gcstar/GCLang/EN/GCExport/GCExportCSV.pm40
-rw-r--r--lib/gcstar/GCLang/EN/GCExport/GCExportExternal.pm38
-rw-r--r--lib/gcstar/GCLang/EN/GCExport/GCExportHTML.pm64
-rw-r--r--lib/gcstar/GCLang/EN/GCExport/GCExportPDB.pm38
-rw-r--r--lib/gcstar/GCLang/EN/GCExport/GCExportSQL.pm40
-rw-r--r--lib/gcstar/GCLang/EN/GCExport/GCExportTarGz.pm37
-rw-r--r--lib/gcstar/GCLang/EN/GCExport/GCExportXML.pm41
-rw-r--r--lib/gcstar/GCLang/EN/GCImport/GCImportAlexandria.pm39
-rw-r--r--lib/gcstar/GCLang/EN/GCImport/GCImportCSV.pm42
-rw-r--r--lib/gcstar/GCLang/EN/GCImport/GCImportFolder.pm71
-rw-r--r--lib/gcstar/GCLang/EN/GCImport/GCImportGCstar.pm37
-rw-r--r--lib/gcstar/GCLang/EN/GCImport/GCImportList.pm42
-rw-r--r--lib/gcstar/GCLang/EN/GCImport/GCImportScanner.pm50
-rw-r--r--lib/gcstar/GCLang/EN/GCImport/GCImportTellico.pm37
-rw-r--r--lib/gcstar/GCLang/EN/GCModels/GCTVepisodes.pm51
-rw-r--r--lib/gcstar/GCLang/EN/GCModels/GCTVseries.pm55
-rw-r--r--lib/gcstar/GCLang/EN/GCModels/GCboardgames.pm89
-rw-r--r--lib/gcstar/GCLang/EN/GCModels/GCbooks.pm73
-rw-r--r--lib/gcstar/GCLang/EN/GCModels/GCcoins.pm107
-rw-r--r--lib/gcstar/GCLang/EN/GCModels/GCcomics.pm76
-rw-r--r--lib/gcstar/GCLang/EN/GCModels/GCfilms.pm96
-rw-r--r--lib/gcstar/GCLang/EN/GCModels/GCgames.pm85
-rw-r--r--lib/gcstar/GCLang/EN/GCModels/GCgeneric.pm44
-rw-r--r--lib/gcstar/GCLang/EN/GCModels/GCminicars.pm182
-rw-r--r--lib/gcstar/GCLang/EN/GCModels/GCmusics.pm71
-rw-r--r--lib/gcstar/GCLang/EN/GCModels/GCperiodicals.pm55
-rw-r--r--lib/gcstar/GCLang/EN/GCModels/GCsmartcards.pm108
-rw-r--r--lib/gcstar/GCLang/EN/GCModels/GCsoftware.pm84
-rw-r--r--lib/gcstar/GCLang/EN/GCModels/GCstamps.pm192
-rw-r--r--lib/gcstar/GCLang/EN/GCModels/GCwines.pm68
-rw-r--r--lib/gcstar/GCLang/EN/GCstar.pm715
31 files changed, 2767 insertions, 0 deletions
diff --git a/lib/gcstar/GCLang/EN/GCExport/GCExportCSV.pm b/lib/gcstar/GCLang/EN/GCExport/GCExportCSV.pm
new file mode 100644
index 0000000..0653a56
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCExport/GCExportCSV.pm
@@ -0,0 +1,40 @@
+{
+ package GCLang::EN::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' => 'Include fields names on the top',
+ 'Separator' => 'Separator',
+ 'Replacement' => 'Replace the separator with',
+ 'Charset' => 'Charset',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCExport/GCExportExternal.pm b/lib/gcstar/GCLang/EN/GCExport/GCExportExternal.pm
new file mode 100644
index 0000000..3334ca4
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCExport/GCExportExternal.pm
@@ -0,0 +1,38 @@
+{
+ package GCLang::EN::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/EN/GCExport/GCExportHTML.pm b/lib/gcstar/GCLang/EN/GCExport/GCExportHTML.pm
new file mode 100644
index 0000000..a26ecba
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCExport/GCExportHTML.pm
@@ -0,0 +1,64 @@
+{
+ package GCLang::EN::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',
+ 'WithJS' => 'Use Javascript',
+ 'FileTemplate' => 'Template',
+ 'Preview' => 'Preview',
+ 'NoPreview' => 'No preview available',
+ 'TemplateExternalFile' => 'Template file',
+ 'Title' => 'Page title',
+ 'InfoFile' => 'Movies list is in file: ',
+ 'InfoDir' => 'Images are in: ',
+ 'HeightImg' => 'Height (in pixels) of the image to be exported',
+ 'OpenFileInBrowser' => 'Open generated file in web browser',
+ 'Note' => 'List generated by <a href="http://www.gcstar.org/">GCstar</a>',
+ 'InputTitle' => 'Enter search text',
+ 'SearchType1' => 'Title only',
+ 'SearchType2' => 'Full information',
+ 'SearchButton' => 'Search',
+ 'SearchTitle' => 'Display only movies matching previous criteria',
+ 'AllButton' => 'All',
+ 'AllTitle' => 'Display all movies',
+ 'Expand' => 'Expand all',
+ 'ExpandTitle' => 'Display all movies information',
+ 'Collapse' => 'Collapse all',
+ 'CollapseTitle' => 'Collapse all movies information',
+ 'Borrowed' => 'Borrowed by: ',
+ 'NotBorrowed' => 'Available',
+ 'Top' => 'Top',
+ 'Bottom' => 'Bottom',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCExport/GCExportPDB.pm b/lib/gcstar/GCLang/EN/GCExport/GCExportPDB.pm
new file mode 100644
index 0000000..fdfa311
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCExport/GCExportPDB.pm
@@ -0,0 +1,38 @@
+{
+ package GCLang::EN::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/EN/GCExport/GCExportSQL.pm b/lib/gcstar/GCLang/EN/GCExport/GCExportSQL.pm
new file mode 100644
index 0000000..8356cd4
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCExport/GCExportSQL.pm
@@ -0,0 +1,40 @@
+{
+ package GCLang::EN::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' => 'Include DROP instruction',
+ 'WithCreate' => 'Include CREATE instruction',
+ 'TableName' => 'Table Name',
+ 'InfoFile' => 'SQL file: ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCExport/GCExportTarGz.pm b/lib/gcstar/GCLang/EN/GCExport/GCExportTarGz.pm
new file mode 100644
index 0000000..2345b0e
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCExport/GCExportTarGz.pm
@@ -0,0 +1,37 @@
+{
+ package GCLang::EN::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' => 'Archive is in file: ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCExport/GCExportXML.pm b/lib/gcstar/GCLang/EN/GCExport/GCExportXML.pm
new file mode 100644
index 0000000..b68ac14
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCExport/GCExportXML.pm
@@ -0,0 +1,41 @@
+{
+ package GCLang::EN::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' => 'Template file',
+ 'ModelText' => 'Template text',
+ 'Models' => 'Template to use',
+ 'UseFile' => 'Use file',
+ 'UseModel' => 'Use text area',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCImport/GCImportAlexandria.pm b/lib/gcstar/GCLang/EN/GCImport/GCImportAlexandria.pm
new file mode 100644
index 0000000..ecdcc0d
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCImport/GCImportAlexandria.pm
@@ -0,0 +1,39 @@
+{
+ package GCLang::EN::GCImport::GCImportAlexandria;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Where' => 'Where should it search',
+ 'Default' => 'Default Alexandria\'s directory',
+ 'Specified' => 'Directory specified below',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCImport/GCImportCSV.pm b/lib/gcstar/GCLang/EN/GCImport/GCImportCSV.pm
new file mode 100644
index 0000000..9c1c731
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCImport/GCImportCSV.pm
@@ -0,0 +1,42 @@
+{
+ package GCLang::EN::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' => 'Ignore first line',
+ 'Separator' => 'Separator',
+ 'Plugin' => 'Site to be used',
+ 'UseFirst' => 'Select first one if many results',
+ 'SearchField' => 'Search for items using',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCImport/GCImportFolder.pm b/lib/gcstar/GCLang/EN/GCImport/GCImportFolder.pm
new file mode 100644
index 0000000..887a205
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCImport/GCImportFolder.pm
@@ -0,0 +1,71 @@
+{
+ package GCLang::EN::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',
+
+ 'InfoFromFileNameRegExp' => 'Parse file name with this regular expression',
+ 'InfoFromFileNameRegExpTooltip' => 'Use this to retrieve infos from filename (applied before removing anything).\nLeave empty if not needed.\nKnown fields : $T:Title, $A:Article, $Y:Year, $S:Season, $E:Episode, $N:Serie Name'
+
+ );
+
+ # As this plugin shares some values with ImportList, it adds them from it
+ importTranslation('List');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCImport/GCImportGCstar.pm b/lib/gcstar/GCLang/EN/GCImport/GCImportGCstar.pm
new file mode 100644
index 0000000..35c1fd3
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCImport/GCImportGCstar.pm
@@ -0,0 +1,37 @@
+{
+ package GCLang::EN::GCImport::GCImportGCstar;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'CopyPictures' => 'Copy pictures',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCImport/GCImportList.pm b/lib/gcstar/GCLang/EN/GCImport/GCImportList.pm
new file mode 100644
index 0000000..bb5346b
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCImport/GCImportList.pm
@@ -0,0 +1,42 @@
+{
+ package GCLang::EN::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' => 'Names list',
+ 'Plugin' => 'Site to be used',
+ 'UseFirst' => 'Select first one if many results',
+ 'CommentAuto' => 'Item automatically imported.',
+ 'CommentSite' => 'Website: ',
+ 'CommentTitle' => 'Title: ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCImport/GCImportScanner.pm b/lib/gcstar/GCLang/EN/GCImport/GCImportScanner.pm
new file mode 100644
index 0000000..4e09fa6
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCImport/GCImportScanner.pm
@@ -0,0 +1,50 @@
+{
+ package GCLang::EN::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/EN/GCImport/GCImportTellico.pm b/lib/gcstar/GCLang/EN/GCImport/GCImportTellico.pm
new file mode 100644
index 0000000..cb55181
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCImport/GCImportTellico.pm
@@ -0,0 +1,37 @@
+{
+ package GCLang::EN::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' => 'File is not a supported Tellico collection',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCModels/GCTVepisodes.pm b/lib/gcstar/GCLang/EN/GCModels/GCTVepisodes.pm
new file mode 100644
index 0000000..d4c9162
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCModels/GCTVepisodes.pm
@@ -0,0 +1,51 @@
+{
+ package GCLang::EN::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 => { 0 => 'Episodes',
+ 1 => 'Episode',
+ X => 'Episodes',
+ lowercase1 => 'episode',
+ lowercaseX => '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/EN/GCModels/GCTVseries.pm b/lib/gcstar/GCLang/EN/GCModels/GCTVseries.pm
new file mode 100644
index 0000000..aeddfbe
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCModels/GCTVseries.pm
@@ -0,0 +1,55 @@
+{
+ package GCLang::EN::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 => { 0 => 'Series',
+ 1 => 'Series',
+ X => 'Series',
+ lowercase1 => 'series',
+ lowercaseX => '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/EN/GCModels/GCboardgames.pm b/lib/gcstar/GCLang/EN/GCModels/GCboardgames.pm
new file mode 100644
index 0000000..b5727e6
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCModels/GCboardgames.pm
@@ -0,0 +1,89 @@
+{
+ package GCLang::EN::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 => 'Games',
+ 1 => 'Game',
+ X => 'Games',
+ lowercase1 => 'game',
+ lowercaseX => '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/EN/GCModels/GCbooks.pm b/lib/gcstar/GCLang/EN/GCModels/GCbooks.pm
new file mode 100644
index 0000000..964e573
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCModels/GCbooks.pm
@@ -0,0 +1,73 @@
+{
+ package GCLang::EN::GCModels::GCbooks;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Books collection',
+ Items => {0 => 'Books',
+ 1 => 'Book',
+ X => 'Books',
+ lowercase1 => 'book',
+ lowercaseX => 'books'
+ },
+ NewItem => 'New book',
+
+ Isbn => 'ISBN',
+ Title => 'Title',
+ Cover => 'Cover',
+ Authors => 'Authors',
+ Publisher => 'Publisher',
+ Publication => 'Publication date',
+ Language => 'Language',
+ Genre => 'Genre',
+ Serie => 'Series',
+ Rank => 'Rank',
+ Bookdescription => 'Description',
+ Pages => 'Pages',
+ Read => 'Read',
+ Acquisition => 'Acquisition date',
+ Edition => 'Edition',
+ Format => 'Format',
+ Comments => 'Comments',
+ Url => 'Web page',
+ Translator => 'Translator',
+ Artist => 'Artist',
+ DigitalFile => 'Digital version',
+
+ General => 'General',
+ Details => 'Details',
+
+ ReadNo => 'Not read',
+ ReadYes => 'Read',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCModels/GCcoins.pm b/lib/gcstar/GCLang/EN/GCModels/GCcoins.pm
new file mode 100644
index 0000000..f895ac2
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCModels/GCcoins.pm
@@ -0,0 +1,107 @@
+{
+ package GCLang::EN::GCModels::GCcoins;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Numismatic collection',
+ Items => {0 => 'Coins',
+ 1 => 'Coin',
+ X => 'Coins',
+ lowercase1 => 'coin',
+ lowercaseX => 'coins'
+ },
+ NewItem => 'New coin',
+
+ Name => 'Name',
+ Country => 'Country',
+ Year => 'Year',
+ Currency => 'Currency',
+ Value => 'Value',
+ Picture => 'Main picture',
+ Diameter => 'Diameter',
+ Metal => 'Metal',
+ Edge => 'Edge',
+ Edge1 => 'Edge 1',
+ Edge2 => 'Edge 2',
+ Edge3 => 'Edge 3',
+ Edge4 => 'Edge 4',
+ Head => 'Head',
+ Tail => 'Tail',
+ Comments => 'Comments',
+ History => 'History',
+ Website => 'Website',
+ Estimate => 'Estimate',
+ References => 'References',
+ Type => 'Type',
+ Coin => 'Coin',
+ Banknote => 'Bank note',
+
+ Main => 'Main',
+ Description => 'Description',
+ Other => 'Other information',
+ Pictures => 'Pictures',
+
+ Condition => 'Condition (PCGS)',
+ Grade1 => 'BS-1',
+ Grade2 => 'FR-2',
+ Grade3 => 'AG-3',
+ Grade4 => 'G-4',
+ Grade6 => 'G-6',
+ Grade8 => 'VG-8',
+ Grade10 => 'VG-10',
+ Grade12 => 'F-12',
+ Grade15 => 'F-15',
+ Grade20 => 'VF-20',
+ Grade25 => 'VF-25',
+ Grade30 => 'VF-30',
+ Grade35 => 'VF-35',
+ Grade40 => 'XF-40',
+ Grade45 => 'XF-45',
+ Grade50 => 'AU-50',
+ Grade53 => 'AU-53',
+ Grade55 => 'AU-55',
+ Grade58 => 'AU-58',
+ Grade60 => 'MS-60',
+ Grade61 => 'MS-61',
+ Grade62 => 'MS-62',
+ Grade63 => 'MS-63',
+ Grade64 => 'MS-64',
+ Grade65 => 'MS-65',
+ Grade66 => 'MS-66',
+ Grade67 => 'MS-67',
+ Grade68 => 'MS-68',
+ Grade69 => 'MS-69',
+ Grade70 => 'MS-70',
+
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCModels/GCcomics.pm b/lib/gcstar/GCLang/EN/GCModels/GCcomics.pm
new file mode 100644
index 0000000..d3054af
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCModels/GCcomics.pm
@@ -0,0 +1,76 @@
+{
+ package GCLang::EN::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',
+ lowercase1 => 'comic',
+ lowercaseX => '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/EN/GCModels/GCfilms.pm b/lib/gcstar/GCLang/EN/GCModels/GCfilms.pm
new file mode 100644
index 0000000..57d49d0
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCModels/GCfilms.pm
@@ -0,0 +1,96 @@
+{
+ package GCLang::EN::GCModels::GCfilms;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Movies collection',
+ Items => {0 => 'Movies',
+ 1 => 'Movie',
+ X => 'Movies',
+ lowercase1 => 'movie',
+ lowercaseX => 'movies'
+ },
+ NewItem => 'New movie',
+
+
+ Id => 'Id',
+ Title => 'Title',
+ Date => 'Date',
+ Time => 'Length',
+ Director => 'Director',
+ Country => 'Country',
+ MinimumAge => 'Minimum age',
+ Genre => 'Genre',
+ Image => 'Picture',
+ Original => 'Alternative titles',
+ Actors => 'Cast',
+ Actor => 'Actor',
+ Role => 'Role',
+ Comment => 'Comments',
+ Synopsis => 'Synopsis',
+ Seen => 'Viewed',
+ Number => '# of Media',
+ Format => 'Media',
+ Region => 'Region',
+ Identifier => 'Identifier',
+ Url => 'Web page',
+ Audio => 'Audio',
+ Video => 'Video format',
+ Trailer => 'Video file',
+ Serie => 'Series',
+ Rank => 'Rank',
+ Subtitles => 'Subtitles',
+
+ SeenYes => 'Viewed',
+ SeenNo => 'Not viewed',
+
+ AgeUnrated => 'Unrated',
+ AgeAll => 'All Ages',
+ AgeParent => 'Parental Guidance',
+
+ Main => 'Main items',
+ General => 'General',
+ Details => 'Details',
+
+ Information => 'Information',
+ Languages => 'Languages',
+ Encoding => 'Encoding',
+
+ FilterAudienceAge => 'Audience age',
+ FilterSeenNo => '_Not Yet Viewed',
+ FilterSeenYes => '_Already Viewed',
+ FilterRatingSelect => 'Rating At _Least...',
+
+ ExtractSize => 'Size',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCModels/GCgames.pm b/lib/gcstar/GCLang/EN/GCModels/GCgames.pm
new file mode 100644
index 0000000..af30095
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCModels/GCgames.pm
@@ -0,0 +1,85 @@
+{
+ package GCLang::EN::GCModels::GCgames;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Video games collection',
+ Items => {0 => 'Games',
+ 1 => 'Game',
+ X => 'Games',
+ lowercase1 => 'game',
+ lowercaseX => 'games'
+ },
+ NewItem => 'New game',
+
+ Id => 'Id',
+ Ean => 'EAN',
+ Name => 'Name',
+ Platform => 'Platform',
+ Players => 'Number of players',
+ Released => 'Release Date',
+ Editor => 'Editor',
+ Developer => 'Developer',
+ Genre => 'Genre',
+ Box => 'Box picture',
+ Case => 'Case',
+ Manual => 'Instructions manual',
+ Completion => 'Completion (%)',
+ Executable => 'Executable',
+ Description => 'Description',
+ Codes => 'Codes',
+ Code => 'Code',
+ Effect => 'Effect',
+ Secrets => 'Secrets',
+ Screenshots => 'Screenshots',
+ Screenshot1 => 'First screenshot',
+ Screenshot2 => 'Second screenshot',
+ Comments => 'Comments',
+ Url => 'Web page',
+ Unlockables => 'Unlockables',
+ Unlockable => 'Unlockable',
+ Howto => 'How to unlock',
+ Exclusive => 'Exclusive',
+ Resolutions => 'Display resolutions',
+ InstallationSize => 'Size',
+ Region => 'Region',
+ SerialNumber => 'Serial Number',
+
+ General => 'General',
+ Details => 'Details',
+ Tips => 'Tips',
+ Information => 'Information',
+
+ FilterRatingSelect => 'Rating At _Least...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCModels/GCgeneric.pm b/lib/gcstar/GCLang/EN/GCModels/GCgeneric.pm
new file mode 100644
index 0000000..6153bcf
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCModels/GCgeneric.pm
@@ -0,0 +1,44 @@
+{
+ package GCLang::EN::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 => 'Items',
+ 1 => 'Item',
+ X => 'Items',
+ lowercase1 => 'item',
+ lowercaseX => 'items'
+ },
+ NewItem => 'New item',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCModels/GCminicars.pm b/lib/gcstar/GCLang/EN/GCModels/GCminicars.pm
new file mode 100644
index 0000000..a672301
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCModels/GCminicars.pm
@@ -0,0 +1,182 @@
+{
+ package GCLang::EN::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 => 'Vehicles',
+ 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/EN/GCModels/GCmusics.pm b/lib/gcstar/GCLang/EN/GCModels/GCmusics.pm
new file mode 100644
index 0000000..87b1cfe
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCModels/GCmusics.pm
@@ -0,0 +1,71 @@
+{
+ package GCLang::EN::GCModels::GCmusics;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Music collection',
+ Items => {0 => 'Albums',
+ 1 => 'Album',
+ X => 'Albums',
+ lowercase1 => 'album',
+ lowercaseX => 'albums'
+ },
+ NewItem => 'New album',
+
+ Unique => 'ISRC/EAN',
+ Title => 'Title',
+ Cover => 'Cover',
+ Artist => 'Artist',
+ Format => 'Format',
+ Running => 'Running time',
+ Release => 'Release date',
+ Genre => 'Genre',
+ Origin => 'Origin',
+
+#For tracks list
+ Tracks => 'Tracks list',
+ Number => 'Number',
+ Track => 'Title',
+ Time => 'Time',
+
+ Composer => 'Composer',
+ Producer => 'Producer',
+ Playlist => 'Playlist',
+ Comments => 'Comments',
+ Label => 'Label',
+ Url => 'Web page',
+
+ General => 'General',
+ Details => 'Details',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCModels/GCperiodicals.pm b/lib/gcstar/GCLang/EN/GCModels/GCperiodicals.pm
new file mode 100644
index 0000000..0a84b76
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCModels/GCperiodicals.pm
@@ -0,0 +1,55 @@
+{
+ package GCLang::EN::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 => 'Periodicals',
+ 1 => 'Periodical',
+ X => 'Periodicals',
+ lowercase1 => 'periodical',
+ lowercaseX => '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/EN/GCModels/GCsmartcards.pm b/lib/gcstar/GCLang/EN/GCModels/GCsmartcards.pm
new file mode 100644
index 0000000..6229917
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCModels/GCsmartcards.pm
@@ -0,0 +1,108 @@
+{
+ package GCLang::EN::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 cards',
+ 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/EN/GCModels/GCsoftware.pm b/lib/gcstar/GCLang/EN/GCModels/GCsoftware.pm
new file mode 100644
index 0000000..f0a26ef
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCModels/GCsoftware.pm
@@ -0,0 +1,84 @@
+{
+ package GCLang::EN::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/EN/GCModels/GCstamps.pm b/lib/gcstar/GCLang/EN/GCModels/GCstamps.pm
new file mode 100644
index 0000000..a04e473
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCModels/GCstamps.pm
@@ -0,0 +1,192 @@
+{
+ package GCLang::EN::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',
+ lowercase1 => 'stamp',
+ lowercaseX => '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/EN/GCModels/GCwines.pm b/lib/gcstar/GCLang/EN/GCModels/GCwines.pm
new file mode 100644
index 0000000..57f2688
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCModels/GCwines.pm
@@ -0,0 +1,68 @@
+{
+ package GCLang::EN::GCModels::GCwines;
+
+ use utf8;
+
+# Copyright 2007 Yves Martin
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Wines collection',
+ Items => { 0 => 'Wines',
+ 1 => 'Wine',
+ X => 'Wines',
+ lowercase1 => 'wine',
+ lowercaseX => 'wines'
+ },
+ NewItem => 'New wine',
+
+ Name => 'Name',
+ Designation => 'Designation',
+ Vintage => 'Vintage',
+ Vineyard => 'Vineyard',
+ Type => 'Type',
+ Grapes => 'Grapes',
+ Soil => 'Soil',
+ Producer => 'Producer',
+ Country => 'Country',
+ Volume => 'Volume (ml)',
+ Alcohol => 'Alcohol (%)',
+ Medal => 'Medal/Honour',
+
+ Storage => 'Storage',
+ Location => 'Location',
+ ShelfIndex => 'Index',
+ Quantity => 'Quantity',
+ Acquisition => 'Acquisition',
+ PurchaseDate => 'Purchase date',
+ PurchasePrice => 'Purchase price',
+ Gift => 'Gift',
+ BottleLabel => 'Bottle label',
+ Website => 'Reference on the web',
+
+ Tasted => 'Tasted',
+ Comments => 'Comments',
+ Serving => 'Serving',
+ TastingField => 'Testing notes',
+
+ General => 'General',
+ Details => 'Details',
+ Tasting => 'Tasting',
+
+ TastedNo => 'Non tasted',
+ TastedYes => 'Tasted',
+
+ FilterRange => 'Range',
+ FilterTastedNo => '_Not yet tasted',
+ FilterTastedYes => 'Already _tasted',
+ FilterRatingSelect => 'Rating at _least...'
+
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EN/GCstar.pm b/lib/gcstar/GCLang/EN/GCstar.pm
new file mode 100644
index 0000000..a7c6486
--- /dev/null
+++ b/lib/gcstar/GCLang/EN/GCstar.pm
@@ -0,0 +1,715 @@
+{
+ package GCLang::EN;
+
+ 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' => 'English',
+
+ 'Separator' => ': ',
+
+ 'Warning' => '<b>Warning</b>:
+
+Information downloaded from web sites (through the
+search plugins) is for <b>personal use only</b>.
+
+Any redistribution is forbidden without the site\'s
+<b>explicit authorization</b>.
+
+To determine which site owns the information, you
+may use the <b>button below item details</b>.',
+
+ 'AllItemsFiltered' => 'No {lowercaseX} match your filter criteria', # Accepts model codes
+
+#Installation
+ 'InstallDirInfo' => 'Installing in ',
+ 'InstallMandatory' => 'Mandatory components',
+ 'InstallOptional' => 'Optional Components',
+ 'InstallErrorMissing' => 'Error : Following Perl components have to be installed: ',
+ 'InstallPrompt' => 'Base directory for installation [/usr/local]: ',
+ 'InstallEnd' => 'End of the installation',
+ 'InstallNoError' => 'No error',
+ 'InstallLaunch' => 'To use this application you can launch ',
+ 'InstallDirectory' => 'Base directory',
+ 'InstallTitle' => 'GCstar installation',
+ 'InstallDependencies' => 'Dependencies',
+ 'InstallPath' => 'Path',
+ 'InstallOptions' => 'Options',
+ 'InstallSelectDirectory' => 'Select base directory for the installation',
+ 'InstallWithClean' => 'Remove files found in installation directory',
+ 'InstallWithMenu' => 'Add GCstar to Applications menu',
+ 'InstallNoPermission' => 'Error: You don\'t have permission to write in the selected directory',
+ 'InstallMissingMandatory' => 'Mandatory dependencies are missing. You won\'t be able to install GCstar until they have been added to your system.',
+ 'InstallMissingOptional' => 'Some optional dependencies are missing. These are listed below. GCstar can be installed but some features won\'t be available.',
+ 'InstallMissingNone' => 'There are no missing dependencies. You may continue and install GCstar.',
+ 'InstallOK' => 'OK',
+ 'InstallMissing' => 'Missing',
+ 'InstallMissingFor' => 'Missing for',
+ 'InstallCleanDirectory' => 'Removing GCstar\'s files in directory: ',
+ 'InstallCopyDirectory' => 'Copying files in directory: ',
+ 'InstallCopyDesktop' => 'Copying desktop file in: ',
+
+#Update
+ 'UpdateUseProxy' => 'Proxy to use (just press enter if none): ',
+ 'UpdateNoPermission' => 'Write permission denied in this directory: ',
+ 'UpdateNone' => 'No updates have been found',
+ 'UpdateFileNotFound' => 'File not found',
+
+#Splash
+ 'SplashInit' => 'Initializing',
+ 'SplashLoad' => 'Loading Collection',
+ 'SplashDisplay' => 'Displaying Collection',
+ 'SplashSort' => 'Sorting Collection',
+ 'SplashDone' => 'Ready',
+
+#Import from GCfilms
+ 'GCfilmsImportQuestion' => 'It seems you were previously using GCfilms. What do you want to import from GCfilms to GCstar (it won\'t impact GCfilms if you still want to use it)?',
+ 'GCfilmsImportOptions' => 'Settings',
+ 'GCfilmsImportData' => 'Movies list',
+
+#Menus
+ 'MenuFile' => '_File',
+ 'MenuNewList' => '_New Collection',
+ 'MenuStats' => 'Statistics',
+ 'MenuHistory' => '_Recent Collections',
+ 'MenuLend' => 'Display _Borrowed {X}', # Accepts model codes
+ 'MenuImport' => '_Import',
+ 'MenuExport' => '_Export',
+ 'MenuAddItem' => '_Add {1}', # Accepts model codes
+
+ 'MenuEdit' => '_Edit',
+ 'MenuDuplicate' => 'Du_plicate {1}', # Accepts model codes
+ 'MenuDuplicatePlural' => 'Du_plicate {X}', # Accepts model codes
+ 'MenuEditSelectAllItems' => 'Select _All {X}', # Accepts model codes
+ 'MenuEditDeleteCurrent' => '_Remove {1}', # Accepts model codes
+ 'MenuEditDeleteCurrentPlural' => '_Remove {X}', # Accepts model codes
+ 'MenuEditFields' => '_Change Collection Fields',
+ 'MenuEditLockItems' => '_Lock Collection',
+
+ 'MenuDisplay' => 'F_ilter',
+ 'MenuSavedSearches' => 'Saved Searches',
+ 'MenuSavedSearchesSave' => 'Save Current Search',
+ 'MenuSavedSearchesEdit' => 'Modify Saved Searches',
+ 'MenuAdvancedSearch' => 'A_dvanced Search',
+ 'MenuViewAllItems' => 'Show _All {X}', # Accepts model codes
+ 'MenuNoFilter' => '_Any',
+
+ 'MenuConfiguration' => '_Settings',
+ 'MenuDisplayMenu' => 'Di_splay',
+ 'MenuDisplayFullScreen' => '_Full screen',
+ 'MenuDisplayMenuBar' => '_Menus',
+ 'MenuDisplayToolBar' => '_Toolbar',
+ 'MenuDisplayStatusBar' => 'B_ottom bar',
+ 'MenuDisplayOptions' => '_Displayed Information',
+ 'MenuBorrowers' => '_Borrowers',
+ 'MenuToolbarConfiguration' => '_Toolbar Controls',
+ 'MenuDefaultValues' => 'Default values for new {1}', # Accepts model codes
+ 'MenuGenresConversion' => 'Genre _Conversion',
+
+ 'MenuBookmarks' => 'My _Collections',
+ 'MenuBookmarksAdd' => '_Add Current Collection',
+ 'MenuBookmarksEdit' => '_Edit Bookmarked Collections',
+
+ 'MenuHelp' => '_Help',
+ 'MenuHelpContent' => '_Content',
+ 'MenuAllPlugins' => 'View _Plugins',
+ 'MenuBugReport' => 'Report a Problem',
+ 'MenuAbout' => '_About GCstar',
+
+ 'MenuNewWindow' => 'Show {1} in _New Window', # Accepts model codes
+ 'MenuNewWindowPlural' => 'Show {X} in _New Window', # Accepts model codes
+
+ 'ContextExpandAll' => 'Expand All',
+ 'ContextCollapseAll' => 'Collapse All',
+ 'ContextChooseImage' => 'Choose _Image',
+ 'ContextOpenWith' => 'Open Wit_h',
+ 'ContextImageEditor' => 'Image Editor',
+ 'ContextImgFront' => 'Front',
+ 'ContextImgBack' => 'Back',
+ 'ContextChooseFile' => 'Choose a File',
+ 'ContextChooseFolder' => 'Choose a Folder',
+
+ 'DialogEnterNumber' => 'Please enter value',
+
+ 'RemoveConfirm' => 'Do you really want to remove this {lowercase1}?', # Accepts model codes
+ 'RemoveConfirmPlural' => 'Do you really want to remove these {lowercaseX}?', # Accepts model codes
+
+ 'DefaultNewItem' => 'New {lowercase1}', # Accepts model codes
+ 'NewItemTooltip' => 'Add a new {lowercase1}', # Accepts model codes
+ 'NoItemFound' => 'Nothing was found. Would you like to search another site?',
+ 'OpenList' => 'Please select collection',
+ 'SaveList' => 'Please choose where to save the collection',
+ 'SaveListTooltip' => 'Save current collection',
+ 'SaveUnsavedChanges' => 'There are unsaved changes in your collection. Do you want to save them?',
+ 'SaveDontSave' => 'Don\'t save',
+ 'PreferencesTooltip' => 'Set your preferences',
+ 'ViewTooltip' => 'Change collection display',
+ 'PlayTooltip' => 'Launch file associated to the {lowercase1}', # Accepts model codes
+ 'PlayFileNotFound' => 'File to launch was not found in this location:',
+ 'PlayRetry' => 'Retry',
+
+ 'StatusSave' => 'Saving...',
+ 'StatusLoad' => 'Loading...',
+ 'StatusSearch' => 'Search in progress...',
+ 'StatusGetInfo' => 'Getting information...',
+ 'StatusGetImage' => 'Getting picture...',
+
+ 'SaveError' => 'Cannot save items list. Please check access rights and disk free space.',
+ 'OpenError' => 'Cannot open items list. Please check access rights.',
+ 'OpenFormatError' => 'Cannot open items list. Format may be incorrect.',
+ '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' => 'Selected directory to save images is not correct. Please select another one.',
+ 'OptionsCreationError'=> 'Cannot create options file: ',
+ 'OptionsOpenError'=> 'Cannot open options file: ',
+ 'OptionsSaveError'=> 'Cannot save options file: ',
+ 'ErrorModelNotFound' => 'Model not found: ',
+ 'ErrorModelUserDir' => 'User defined models are in: ',
+
+ 'RandomTooltip' => 'What to see this evening?',
+ 'RandomError'=> 'You have no {lowercaseX} that could be chosen', # Accepts model codes
+ 'RandomEnd'=> 'You have no more {lowercaseX} to choose from!', # Accepts model codes
+ 'RandomNextTip'=> 'Next suggestion',
+ 'RandomOkTip'=> 'Accept this suggestion',
+
+ 'AboutTitle' => 'About GCstar',
+ 'AboutDesc' => 'Personal collections manager',
+ 'AboutVersion' => 'Version',
+ 'AboutTeam' => 'Team',
+ 'AboutWho' => 'Christian Jodar (Tian): Project manager, Programmer
+Nyall Dawson (Zombiepig): Programmer
+TPF: Programmer
+Adolfo González: Programmer
+',
+ 'AboutLicense' => 'Distributed under the terms of the GNU GPL
+Logos Copyright le Spektre',
+ 'AboutTranslation' => 'English translation by Christian Jodar and Jason Day',
+ 'AboutDesign' => 'Łukasz Kowalczk (Qoolman): Skin Designer
+Logo and webdesign by le Spektre',
+
+ 'UnsavedCollection' => 'Unsaved Collection',
+
+#Collection models
+ 'ModelsSelect' => 'Select a collection type',
+ 'ModelsPersonal' => 'Personal models',
+ 'ModelsDefault' => 'Default models',
+ 'ModelsList' => 'Collection definition',
+ 'ModelSettings' => 'Collection settings',
+ 'ModelNewType' => 'New collection type',
+ 'ModelName' => 'Name of the collection type:',
+ 'ModelFields' => 'Fields',
+ 'ModelOptions' => 'Options',
+ 'ModelFilters' => 'Filters',
+ 'ModelNewField' => 'New field',
+ 'ModelFieldInformation' => 'Information',
+ 'ModelFieldName' => 'Label:',
+ 'ModelFieldType' => 'Type:',
+ 'ModelFieldGroup' => 'Group:',
+ 'ModelFieldValues' => 'Values',
+ 'ModelFieldInit' => 'Default:',
+ 'ModelFieldMin' => 'Minimum:',
+ 'ModelFieldMax' => 'Maximum:',
+ 'ModelFieldList' => 'Values list:',
+ 'ModelFieldListLegend' => '<i>Comma separated</i>',
+ 'ModelFieldDisplayAs' => 'Display as:',
+ 'ModelFieldDisplayAsText' => 'Text',
+ 'ModelFieldDisplayAsGraphical' => 'Rating Control',
+ 'ModelFieldTypeShortText' => 'Short text',
+ 'ModelFieldTypeLongText' => 'Long text',
+ 'ModelFieldTypeYesNo' => 'Yes/No',
+ 'ModelFieldTypeNumber' => 'Number',
+ 'ModelFieldTypeDate' => 'Date',
+ 'ModelFieldTypeOptions' => 'Pre-defined values list',
+ 'ModelFieldTypeImage' => 'Image',
+ 'ModelFieldTypeSingleList' => 'Simple list',
+ 'ModelFieldTypeFile' => 'File',
+ 'ModelFieldTypeFormatted' => 'Dependant on other fields',
+ 'ModelFieldParameters' => 'Parameters',
+ 'ModelFieldHasHistory' => 'Use an history',
+ 'ModelFieldFlat' => 'Display on one line',
+ 'ModelFieldStep' => 'Increment step:',
+ 'ModelFieldFileFormat' => 'File format:',
+ 'ModelFieldFileFile' => 'Simple file',
+ 'ModelFieldFileImage' => 'Image',
+ 'ModelFieldFileVideo' => 'Video',
+ 'ModelFieldFileAudio' => 'Audio',
+ 'ModelFieldFileProgram' => 'Program',
+ 'ModelFieldFileUrl' => 'URL',
+ 'ModelFieldFileEbook' => 'Ebook',
+ 'ModelOptionsFields' => 'Fields to use',
+ 'ModelOptionsFieldsAuto' => 'Automatic',
+ 'ModelOptionsFieldsNone' => 'None',
+ 'ModelOptionsFieldsTitle' => 'As title',
+ 'ModelOptionsFieldsId' => 'As identifier',
+ 'ModelOptionsFieldsCover' => 'As cover',
+ 'ModelOptionsFieldsPlay' => 'For Play button',
+ 'ModelCollectionSettings' => 'Collection settings',
+ 'ModelCollectionSettingsLending' => 'Items can be borrowed',
+ 'ModelCollectionSettingsTagging' => 'Items can be tagged',
+ 'ModelFilterActivated' => 'Should be in search box',
+ 'ModelFilterComparison' => 'Comparison',
+ 'ModelFilterContain' => 'Contains',
+ 'ModelFilterDoesNotContain' => 'Does not contain',
+ 'ModelFilterRegexp' => 'Regular expression',
+ 'ModelFilterRange' => 'Range',
+ 'ModelFilterNumeric' => 'Comparison is numeric',
+ 'ModelFilterQuick' => 'Create a quick filter',
+ 'ModelTooltipName' => 'Use a name to re-use this model for many collections. If empty, the settings will be directly stored in the collection itself',
+ 'ModelTooltipLabel' => 'The field name as it will be displayed',
+ 'ModelTooltipGroup' => 'Used to group fields. Items with no value here will be in a default group',
+ 'ModelTooltipHistory' => 'Should the previous entered values be stored in a list associated to the field',
+ 'ModelTooltipFormat' => 'This format is used to determine the action to open the file with the Play button',
+ 'ModelTooltipLending' => 'This will add some fields to manage lendings',
+ 'ModelTooltipTagging' => 'This will add some fields to manage tags',
+ 'ModelTooltipNumeric' => 'Should the values be considered as numbers for comparison',
+ 'ModelTooltipQuick' => 'This will add a submenu in the Filters one',
+
+#Web searches
+ 'PluginsTitle' => 'Search an item',
+ 'PluginsQuery' => 'Query',
+ 'PluginsFrame' => 'Search site',
+ 'PluginsLogo' => 'Logo',
+ 'PluginsName' => 'Name',
+ 'PluginsSearchFields' => 'Search fields',
+ 'PluginsAuthor' => 'Author',
+ 'PluginsLang' => 'Language',
+ 'PluginsUseSite' => 'Use selected site for future searches',
+ 'PluginsPreferredTooltip' => 'Site recommended by GCstar',
+ 'PluginDisabled' => 'Disabled',
+
+ 'ResultsTitle' => 'Select a {lowercase1}', # Accepts model codes
+ 'ResultsNextTip' => 'Search in next site',
+ 'ResultsPreview' => 'Preview',
+ 'ResultsInfo' => 'You can add multiple {lowercaseX} to the collection by holding down the Ctrl or the Shift key and selecting them', # Accepts model codes
+
+ 'ImportWindowTitle' => 'Select Fields to be Imported',
+ 'ImportViewPicture' => 'View Picture',
+ 'ImportSelectAll' => 'Select All',
+ 'ImportSelectNone' => 'Select None',
+
+ 'MultiSiteTitle' => 'Sites to use for searches',
+ 'MultiSiteUnused' => 'Unused plugins',
+ 'MultiSiteUsed' => 'Plugins to be used',
+ 'MultiSiteLang' => 'Fill List with English Plugins',
+ 'MultiSiteEmptyError' => 'You have an empty site list',
+ 'MultiSiteClear' => 'Clear List',
+
+#Settings
+ 'OptionsTitle' => 'Preferences',
+ 'OptionsExpertMode' => 'Expert Mode',
+ 'OptionsPrograms' => 'Specify applications to use for different media, leave blank to use system defaults',
+ 'OptionsBrowser' => 'Web browser',
+ 'OptionsPlayer' => 'Video player',
+ 'OptionsAudio' => 'Audio player',
+ 'OptionsImageEditor' => 'Image editor',
+ 'OptionsCdDevice' => 'CD device',
+ 'OptionsImages' => 'Images directory',
+ 'OptionsUseRelativePaths' => 'Use relative paths for images',
+ 'OptionsLayout' => 'Layout',
+ 'OptionsStatus' => 'Display status bar',
+ 'OptionsUseStars' => 'Use stars to display ratings',
+ 'OptionsWarning' => 'Warning: Changes in this tab won\'t take effect until the application is restarted.',
+ 'OptionsRemoveConfirm' => 'Ask confirmation before item deletion',
+ 'OptionsAutoSave' => 'Automatically save collection',
+ 'OptionsAutoLoad' => 'Load previous collection on startup',
+ 'OptionsSplash' => 'Show splash screen',
+ 'OptionsTearoffMenus' => 'Enable tear-off menus',
+ 'OptionsSpellCheck' => 'Use spelling checker for long text fields',
+ 'OptionsProgramTitle' => 'Select the program to be used',
+ 'OptionsPlugins' => 'Site to retrieve data from',
+ 'OptionsAskPlugins' => 'Ask (All sites)',
+ 'OptionsPluginsMulti' => 'Many sites',
+ 'OptionsPluginsMultiAsk' => 'Ask (Many sites)',
+ 'OptionsPluginsMultiPerField' => 'Many sites (per field)',
+ 'OptionsPluginsMultiPerFieldWindowTitle' => 'Many sites per field order selection',
+ 'OptionsPluginsMultiPerFieldDesc' => 'For each field we will fill the field with the first non empty information beginning from left',
+ 'OptionsPluginsMultiPerFieldFirst' => 'First',
+ 'OptionsPluginsMultiPerFieldLast' => 'Last',
+ 'OptionsPluginsMultiPerFieldRemove' => 'Remove',
+ 'OptionsPluginsMultiPerFieldClearSelected' => 'Empty selected field list',
+ 'OptionsPluginsList' => 'Set list',
+ 'OptionsAskImport' => 'Select fields to be imported',
+ 'OptionsProxy' => 'Use a proxy',
+ 'OptionsCookieJar' => 'Use this cookie jar file',
+ 'OptionsLang' => 'Language',
+ 'OptionsMain' => 'Main',
+ 'OptionsPaths' => 'Paths',
+ 'OptionsInternet' => 'Internet',
+ 'OptionsConveniences' => 'Features',
+ 'OptionsDisplay' => 'Display',
+ 'OptionsToolbar' => 'Toolbar',
+ 'OptionsToolbars' => {0 => 'None', 1 => 'Small', 2 => 'Large', 3 => 'System setting'},
+ 'OptionsToolbarPosition' => 'Position',
+ 'OptionsToolbarPositions' => {0 => 'Top', 1 => 'Bottom', 2 => 'Left', 3 => 'Right'},
+ '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' => 'Items list',
+ 'OptionsViews' => {0 => 'Text', 1 => 'Image', 2 => 'Detailed'},
+ 'OptionsColumns' => 'Columns',
+ 'OptionsMailer' => 'E-mailer',
+ 'OptionsSMTP' => 'Server',
+ 'OptionsFrom' => 'Your e-mail',
+ 'OptionsTransform' => 'Place articles at the end of titles',
+ 'OptionsArticles' => 'Articles (Comma separated)',
+ 'OptionsSearchStop' => 'Allow search to be aborted',
+ 'OptionsBigPics' => 'Download hi-res artwork when available',
+ 'OptionsAlwaysOriginal' => 'Use main title as the original title if none present',
+ 'OptionsRestoreAccelerators' => 'Restore Accelerators',
+ 'OptionsHistory' => 'Size of history',
+ 'OptionsClearHistory' => 'Clear History',
+ 'OptionsStyle' => 'Skin',
+ 'OptionsDontAsk' => 'Don\'t ask anymore',
+ 'OptionsPathProgramsGroup' => 'Applications',
+ 'OptionsProgramsSystem' => 'Use programs defined by system',
+ 'OptionsProgramsUser' => 'Override default programs',
+ 'OptionsProgramsSet' => 'Set Programs',
+ 'OptionsPathImagesGroup' => 'Images',
+ 'OptionsInternetDataGroup' => 'Data import',
+ 'OptionsInternetSettingsGroup' => 'Settings',
+ 'OptionsDisplayInformationGroup' => 'Information display',
+ 'OptionsDisplayArticlesGroup' => 'Articles',
+ 'OptionsImagesDisplayGroup' => 'Display',
+ 'OptionsImagesStyleGroup' => 'Style',
+ 'OptionsDetailedPreferencesGroup' => 'Preferences',
+ 'OptionsFeaturesConveniencesGroup' => 'Conveniences',
+ 'OptionsPicturesFormat' => 'Prefix to use for pictures:',
+ 'OptionsPicturesFormatInternal' => 'gcstar__',
+ 'OptionsPicturesFormatTitle' => 'Title or name of the associated item',
+ 'OptionsPicturesWorkingDir' => '%WORKING_DIR% or . will be replaced with collection directory (use only on beginning of path)',
+ 'OptionsPicturesFileBase' => '%FILE_BASE% will be replaced by collection file name without suffix (.gcs)',
+ 'OptionsPicturesWorkingDirError' => '%WORKING_DIR% could only be used on the beginning of the path for pictures',
+ 'OptionsConfigureMailers' => 'Configure Mailing Programs',
+
+#Image list settings
+ 'ImagesOptionsButton' => 'Settings',
+ 'ImagesOptionsTitle' => 'Settings for images list',
+ 'ImagesOptionsSelectColor' => 'Select a color',
+ 'ImagesOptionsUseOverlays' => 'Use image overlays',
+ 'ImagesOptionsBg' => 'Background',
+ 'ImagesOptionsBgPicture' => 'Use a background picture',
+ 'ImagesOptionsFg'=> 'Selection',
+ 'ImagesOptionsBgTooltip' => 'Change background color',
+ 'ImagesOptionsFgTooltip'=> 'Change selection color',
+ 'ImagesOptionsResizeImgList' => 'Automatically change number of columns',
+ 'ImagesOptionsAnimateImgList' => 'Use animations',
+ 'ImagesOptionsSizeLabel' => 'Size',
+ 'ImagesOptionsSizeList' => {0 => 'Very Small', 1 => 'Small', 2 => 'Medium', 3 => 'Large', 4 => 'Extra Large'},
+ 'ImagesOptionsSizeTooltip' => 'Select image size',
+
+#Detailed list settings
+ 'DetailedOptionsTitle' => 'Settings for detailed list',
+ 'DetailedOptionsImageSize' => 'Images size',
+ 'DetailedOptionsGroupItems' => 'Group items by',
+ 'DetailedOptionsSecondarySort' => 'Sort field for children',
+ 'DetailedOptionsFields' => 'Select fields to display',
+ 'DetailedOptionsGroupedFirst' => 'Keep together orphaned items',
+ 'DetailedOptionsAddCount' => 'Add number of elements on categories',
+
+#Fields to display
+ 'DisplayOptionsTitle' => 'Items to display',
+ 'DisplayOptionsAll' => 'Select all',
+ 'DisplayOptionsSearch' => 'Search button',
+
+#Extract plugins
+ 'ExtractButton' => 'Information',
+ 'ExtractTitle' => 'File information',
+ 'ExtractImport' => 'Use values',
+
+#Fields list
+ 'FieldsListOpen' => 'Load a fields list from a file',
+ 'FieldsListSave' => 'Save fields list to a file',
+ 'FieldsListError' => 'This fields list cannot be used with this kind of collection',
+ 'FieldsListIgnore' => '--- Ignore',
+
+#Export plugins
+ 'ExportTitle' => 'Export item list',
+ 'ExportFilter' => 'Export only displayed items',
+ 'ExportFieldsTitle' => 'Fields to be exported',
+ 'ExportFieldsTip' => 'Select fields you want to export',
+ 'ExportWithPictures' => 'Copy pictures in a sub-directory',
+ 'ExportSortBy' => 'Sort by',
+ 'ExportOrder' => 'Order',
+
+#Import plugins
+ 'ImportListTitle' => 'Import another items list',
+ 'ImportExportData' => 'Data',
+ 'ImportExportFile' => 'File',
+ 'ImportExportFieldsUnused' => 'Unused fields',
+ 'ImportExportFieldsUsed' => 'Used fields',
+ 'ImportExportFieldsFill' => 'Add All',
+ 'ImportExportFieldsClear' => 'Remove All',
+ 'ImportExportFieldsEmpty' => 'You must choose at least one field',
+ 'ImportExportFileEmpty' => 'You have to specify a file name',
+ 'ImportFieldsTitle' => 'Fields to be imported',
+ 'ImportFieldsTip' => 'Select fields you want to import',
+ 'ImportNewList' => 'Create a new collection',
+ 'ImportCurrentList' => 'Add to current collection',
+ 'ImportDropError' => 'There was an error opening at least one file. Previous list will be reloaded.',
+ 'ImportGenerateId' => 'Generate identifier for each item',
+
+#File chooser
+ 'FileChooserOpenFile' => 'Please select file to use',
+ 'FileChooserDirectory' => 'Directory',
+ 'FileChooserOpenDirectory' => 'Select a directory',
+ 'FileChooserOverwrite' => 'This file already exists. Do you want to overwrite it?',
+ 'FileAllFiles' => 'All Files',
+ 'FileVideoFiles' => 'Video Files',
+ 'FileEbookFiles' => 'Ebook Files',
+ 'FileAudioFiles' => 'Audio Files',
+ 'FileGCstarFiles' => 'GCstar Collections',
+
+#Some default panels
+ 'PanelCompact' => 'Compact',
+ 'PanelReadOnly' => 'Read Only',
+ 'PanelForm' => 'Tabs',
+
+#Default labels used in panels
+ 'PanelSearchButton' => 'Fetch Information',
+ 'PanelSearchTip' => 'Search web for information on this name',
+ 'PanelSearchContextChooseOne' => 'Choose a site ...',
+ 'PanelSearchContextMultiSite' => 'Use "Many sites"',
+ 'PanelSearchContextMultiSitePerField' => 'Use "Many sites per field"',
+ 'PanelSearchContextOptions' => 'Change options ...',
+ 'PanelImageTipOpen' => 'Click on the picture to select different one.',
+ 'PanelImageTipView' => 'Click on the picture to view it in real size.',
+ 'PanelImageTipMenu' => ' Right click for more options.',
+ 'PanelImageTitle' => 'Select a picture',
+ 'PanelImageNoImage' => 'No image',
+ 'PanelSelectFileTitle' => 'Select File',
+ 'PanelLaunch' => 'Launch',
+ 'PanelRestoreDefault' => 'Restore Default',
+ 'PanelRefresh' => 'Update',
+ 'PanelRefreshTip' => 'Automatically update blank fields',
+
+ 'PanelFrom' =>'From',
+ 'PanelTo' =>'To',
+
+ 'PanelWeb' => 'View Information',
+ 'PanelWebTip' => 'View information on the web about this {lowercase1}', # Accepts model codes
+ 'PanelRemoveTip' => 'Remove current {lowercase1}', # Accepts model codes
+
+ 'PanelDateSelect' => 'Select',
+ 'PanelNobody' => 'Nobody',
+ 'PanelUnknown' => 'Unknown',
+ 'PanelAdded' => 'Add date',
+ 'PanelRating' => 'Rating',
+ 'PanelPressRating' => 'Press Rating',
+ 'PanelLocation' => 'Location',
+
+ 'PanelLending' => 'Lending',
+ 'PanelBorrower' => 'Borrower',
+ 'PanelLendDate' => 'Out Since',
+ 'PanelHistory' => 'Lending History',
+ 'PanelReturned' => '{1} Returned', # Accepts model codes
+ 'PanelReturnDate' => 'Return date',
+ 'PanelLendedYes' => 'Lended',
+ 'PanelLendedNo' => 'Available',
+
+ 'PanelTags' => 'Tags',
+ 'PanelFavourite' => 'Favourite',
+ 'TagsAssigned' => 'Assigned Tags',
+
+ 'PanelUser' => 'User fields',
+
+ 'CheckUndef' => 'Either',
+ 'CheckYes' => 'Yes',
+ 'CheckNo' => 'No',
+
+#Toolbar
+ 'ToolbarRandom' => 'Tonight',
+ 'ToolbarAll' => 'View All',
+ 'ToolbarAllTooltip' => 'View all items',
+ 'ToolbarGroupBy' => 'Group by',
+ 'ToolbarGroupByTooltip' => 'Select the field to use to group items in list',
+ 'ToolbarQuickSearch' => 'Quick search',
+ 'ToolbarQuickSearchLabel' => 'Search',
+ 'ToolbarQuickSearchTooltip' => 'Select the field to search in. Enter the search terms and press Enter',
+ 'ToolbarSeparator' => ' Separator',
+
+#Borrowers
+ 'BorrowersTitle' => 'Borrower Configuration',
+ 'BorrowersList' => 'Borrowers',
+ 'BorrowersName' => 'Name',
+ 'BorrowersEmail' => 'E-mail',
+ 'BorrowersAdd' => 'Add',
+ 'BorrowersRemove' => 'Remove',
+ 'BorrowersEdit' => 'Edit',
+ 'BorrowersTemplate' => 'Mail template',
+ 'BorrowersSubject' => 'Mail subject',
+ 'BorrowersNotice1' => '%1 will be replaced with the borrower\'s name',
+ 'BorrowersNotice2' => '%2 will be replaced with the item title',
+ 'BorrowersNotice3' => '%3 will be replaced with the borrow date',
+
+ 'BorrowersImportTitle' => 'Import borrowers information',
+ 'BorrowersImportType' => 'File format:',
+ 'BorrowersImportFile' => 'File:',
+
+ 'BorrowedTitle' => 'Borrowed {lowercaseX}', # Accepts model codes
+ 'BorrowedDate' => 'Since',
+ 'BorrowedDisplayInPanel' => 'Show {1} in Main Window', # Accepts model codes
+
+#Mail
+ 'MailTitle' => 'Send an e-mail',
+ 'MailFrom' => 'From: ',
+ 'MailTo' => 'To: ',
+ 'MailSubject' => 'Subject: ',
+ 'MailSmtpError' => 'Problem when connecting to SMTP server',
+ 'MailSendmailError' => 'Problem when launching sendmail',
+
+#Search dialog
+ 'SearchTooltip' => 'Search all {lowercaseX}', # Accepts model codes
+ 'SearchTitle' => '{1} Search', # 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.',
+
+ 'AdvancedSearchType' => 'Type of search',
+ 'AdvancedSearchTypeAnd' => '{X} matching all criteria', # Accepts model codes
+ 'AdvancedSearchTypeOr' => '{X} matching at least one criterion', # Accepts model codes
+ 'AdvancedSearchCriteria' => 'Criteria',
+ 'AdvancedSearchAnyField' => 'Any field',
+ 'AdvancedSearchSaveTitle' => 'Save search',
+ 'AdvancedSearchSaveName' => 'Name',
+ 'AdvancedSearchSaveOverwrite' => 'A saved search already exists with that name. Please use a different one.',
+ 'AdvancedSearchUseCase' => 'Case sensitive',
+ 'AdvancedSearchIgnoreDiacritics' => 'Ignore accents and other diacritics',
+
+#Query replace
+ 'QueryReplaceField' => 'Field to replace',
+ 'QueryReplaceOld' => 'Current value',
+ 'QueryReplaceNew' => 'New value',
+ 'QueryReplaceLaunch' => 'Replace',
+
+#Collection properties
+ 'PropertiesName' => 'Collection name',
+ 'PropertiesLang' => 'Language code',
+ 'PropertiesOwner' => 'Owner',
+ 'PropertiesEmail' => 'Email',
+ 'PropertiesDescription' => 'Description',
+ 'PropertiesFile' => 'File Information',
+ 'PropertiesFilePath' => 'Full path',
+ 'PropertiesItemsNumber' => 'Number of {lowercaseX}', # Accepts model codes
+ 'PropertiesFileSize' => 'Size',
+ 'PropertiesFileSizeSymbols' => ['Bytes', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
+ 'PropertiesCollection' => 'Collection properties',
+ 'PropertiesDefaultPicture' => 'Default picture',
+
+#Mail sending
+ 'MailProgramsTitle' => 'Programs for mail sending',
+ 'MailProgramsName' => 'Name',
+ 'MailProgramsCommand' => 'Command line',
+ 'MailProgramsRestore' => 'Restore defaults',
+ 'MailProgramsAdd' => 'Add a program',
+ 'MailProgramsInstructions' => 'In command line, some substitutions are made:
+ %f is replaced with user\'s e-mail address.
+ %t is replaced with the recipient address.
+ %s is replaced with the subject of the message.
+ %b is replaced with the body of the message.',
+
+#Bookmarks
+ 'BookmarksBookmarks' => 'Bookmarks',
+ 'BookmarksFolder' => 'Folders',
+ 'BookmarksLabel' => 'Label',
+ 'BookmarksPath' => 'Path',
+ 'BookmarksNewFolder' => 'New folder',
+
+#Bug report
+ 'BugReportSubject' => 'Bug report generated from GCstar',
+ 'BugReportVersion' => 'Version',
+ 'BugReportPlatform' => 'Operating system',
+ 'BugReportMessage' => 'Error message',
+ 'BugReportInformation' => 'Additional information',
+
+#Statistics
+ 'StatsFieldToUse' => 'Field to use',
+ 'StatsSortByNumber' => 'Sort by number of {lowercaseX}',
+ 'StatsGenerate' => 'Generate',
+ 'StatsKindOfGraph' => 'Kind of graphic',
+ 'StatsBars' => 'Bars',
+ 'StatsPie' => 'Pie',
+ 'Stats3DPie' => '3D Pie',
+ 'StatsArea' => 'Areas',
+ 'StatsHistory' => 'History',
+ 'StatsWidth' => 'Width',
+ 'StatsHeight' => 'Height',
+ 'StatsFontSize' => 'Font size',
+ 'StatsDisplayNumber' => 'Show numbers',
+ 'StatsSave' => 'Save statistics image to a file',
+ 'StatsAccumulate' => 'Accumulate values',
+ 'StatsShowAllDates' => 'Show all dates',
+
+#Not used yet
+ 'GenresTitle' => 'Genre Conversion',
+ 'GenresCategoryName' => 'Genre to use',
+ 'GenresCategoryMembers' => 'Genre to replace',
+ 'GenresLoad' => 'Load a list',
+ 'GenresExport' => 'Save list to a file',
+ 'GenresModify' => 'Edit conversion',
+
+#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;