summaryrefslogtreecommitdiff
path: root/lib/gcstar/GCLang/EL/GCModels
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gcstar/GCLang/EL/GCModels')
-rw-r--r--lib/gcstar/GCLang/EL/GCModels/GCTVepisodes.pm45
-rw-r--r--lib/gcstar/GCLang/EL/GCModels/GCTVseries.pm55
-rw-r--r--lib/gcstar/GCLang/EL/GCModels/GCboardgames.pm86
-rw-r--r--lib/gcstar/GCLang/EL/GCModels/GCbooks.pm70
-rw-r--r--lib/gcstar/GCLang/EL/GCModels/GCcoins.pm104
-rw-r--r--lib/gcstar/GCLang/EL/GCModels/GCcomics.pm73
-rw-r--r--lib/gcstar/GCLang/EL/GCModels/GCfilms.pm93
-rw-r--r--lib/gcstar/GCLang/EL/GCModels/GCgames.pm82
-rw-r--r--lib/gcstar/GCLang/EL/GCModels/GCgeneric.pm42
-rw-r--r--lib/gcstar/GCLang/EL/GCModels/GCminicars.pm182
-rw-r--r--lib/gcstar/GCLang/EL/GCModels/GCmusics.pm68
-rw-r--r--lib/gcstar/GCLang/EL/GCModels/GCperiodicals.pm52
-rw-r--r--lib/gcstar/GCLang/EL/GCModels/GCsmartcards.pm108
-rw-r--r--lib/gcstar/GCLang/EL/GCModels/GCsoftware.pm84
-rw-r--r--lib/gcstar/GCLang/EL/GCModels/GCstamps.pm189
-rw-r--r--lib/gcstar/GCLang/EL/GCModels/GCwines.pm84
16 files changed, 1417 insertions, 0 deletions
diff --git a/lib/gcstar/GCLang/EL/GCModels/GCTVepisodes.pm b/lib/gcstar/GCLang/EL/GCModels/GCTVepisodes.pm
new file mode 100644
index 0000000..7666f79
--- /dev/null
+++ b/lib/gcstar/GCLang/EL/GCModels/GCTVepisodes.pm
@@ -0,0 +1,45 @@
+{
+ package GCLang::EL::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 => 'Συλλογή τηλεοπτικών εκπομπών',
+ Items => 'Επεισόδια',
+ NewItem => 'Νέο επεισόδιο',
+ NewSeries => 'Νέα σειρά',
+ Episode => 'Επεισόδιο',
+ );
+ # Both of them are required as importTranslation doesn't recurse
+ importTranslation('films');
+ importTranslation('TVseries');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EL/GCModels/GCTVseries.pm b/lib/gcstar/GCLang/EL/GCModels/GCTVseries.pm
new file mode 100644
index 0000000..7ba017c
--- /dev/null
+++ b/lib/gcstar/GCLang/EL/GCModels/GCTVseries.pm
@@ -0,0 +1,55 @@
+{
+ package GCLang::EL::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 => 'Συλλογή τηλεοπτικών σειρών',
+ Items => { 0 => 'Σειρά',
+ 1 => 'Σειρά',
+ X => 'Σειρές',
+ lowercase1 => 'σειρά',
+ lowercaseX => 'σειρές'
+ },
+ NewItem => 'Νέα σειρά',
+ Name => 'Όνομα',
+ Season => 'Σεζόν',
+ Part => 'Μέρος',
+ Episodes => 'Επισόδεια',
+ FirstAired => 'Πρώτη προβολή',
+ Time => 'Διάρκεια',
+ Producer => 'Παραγωγός',
+ Music => 'Μουσική',
+ );
+ importTranslation('ταινίες');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EL/GCModels/GCboardgames.pm b/lib/gcstar/GCLang/EL/GCModels/GCboardgames.pm
new file mode 100644
index 0000000..1c4ca21
--- /dev/null
+++ b/lib/gcstar/GCLang/EL/GCModels/GCboardgames.pm
@@ -0,0 +1,86 @@
+{
+ package GCLang::EL::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 => 'Συλλογή επιτραπέζιων παιχνιδιών',
+ Items => {0 => 'Παιχνίδι',
+ 1 => 'Παιχνίδι',
+ X => 'Παιχνίδια'},
+ NewItem => 'Νέο παιχνίδι',
+
+ Id => 'Id',
+ Name => 'Όνομα',
+ Original => 'Αυθεντικό όνομα',
+ Box => 'Εικόνα συσκευασίας',
+ DesignedBy => 'Δημιουργός',
+ PublishedBy => 'Εκδότης',
+ Players => 'Αριθμός παικτών',
+ PlayingTime => 'Χρόνος παρτίδας',
+ SuggestedAge => 'Προτεινόμενη ηλικία',
+ Released => 'Ημερομηνία έκδοσης',
+ Description => 'Περιγραφή',
+ Category => 'Κατηγορία',
+ Mechanics => 'Μηχανισμοί',
+ ExpandedBy => 'Υπάρχουσα επέκταση',
+ ExpansionFor => 'Επέκταση για',
+ GameFamily => 'Κατηγορία παιχνιδιού',
+ IllustratedBy => 'Εικονογράφηση από',
+ Url => 'Ιστοσελίδα',
+ TimesPlayed => 'Αριθμός παρτίδων που έχουν παιχτεί',
+ CompleteContents => 'Πλήρες περιεχόμενο',
+ Copies => 'Αριθμός αντιγράφων',
+ Condition => 'Κατάσταση',
+ Photos => 'Εικόνες',
+ Photo1 => 'Πρώτη εικόνα',
+ Photo2 => 'Δεύτερη εικόνα',
+ Photo3 => 'Τρίτη εικόνα',
+ Photo4 => 'Τέταρτη εικόνα',
+ Comments => 'Σχόλια',
+
+ Perfect => 'Εξαίρετο',
+ Good => 'Καλό',
+ Average => 'Μέτριο',
+ Poor => 'Κακό',
+
+ CompleteYes => 'Πλήρες περιεχόμενο',
+ CompleteNo => 'Ελλειπή στοιχεία',
+
+ General => 'Γενικά',
+ Details => 'Λεπτομέρειες',
+ Personal => 'Προσωπικά',
+ Information => 'Πληροφορίες',
+
+ FilterRatingSelect => '_Βαθμολογία τουλάχιστο...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EL/GCModels/GCbooks.pm b/lib/gcstar/GCLang/EL/GCModels/GCbooks.pm
new file mode 100644
index 0000000..fd601f1
--- /dev/null
+++ b/lib/gcstar/GCLang/EL/GCModels/GCbooks.pm
@@ -0,0 +1,70 @@
+{
+ package GCLang::EL::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 => 'Συλλογή βιβλίων',
+ Items => {0 => 'Βιβλίο',
+ 1 => 'Βιβλίο',
+ X => 'Βιβλία'},
+ NewItem => 'Νέο βιβλίο',
+
+ Isbn => 'ISBN',
+ Title => 'Τίτλος',
+ Cover => 'Εξώφυλλο',
+ Authors => 'Συγγραφέας',
+ Publisher => 'Εκδότης',
+ Publication => 'Ημερομηνία έκδοσης',
+ Language => 'Γλώσσα',
+ Genre => 'Κατηγορία',
+ Serie => 'Σειρά',
+ Rank => 'Rank',
+ Bookdescription => 'Περιγραφή',
+ Pages => 'Σελίδες',
+ Read => 'Διαβασμένο',
+ Acquisition => 'Ημερομηνία απόκτησης',
+ Edition => 'Έκδοση',
+ Format => 'Μορφή',
+ Comments => 'Σχόλια',
+ Url => 'Ιστοσελίδα',
+ Translator => 'Μετάφραση:',
+ Artist => 'Επιμέλεια:',
+ DigitalFile => 'Digital version',
+
+ General => 'Γενικά',
+ Details => 'Λεπτομέρειες',
+
+ ReadNo => 'Not read',
+ ReadYes => 'Read',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EL/GCModels/GCcoins.pm b/lib/gcstar/GCLang/EL/GCModels/GCcoins.pm
new file mode 100644
index 0000000..004537d
--- /dev/null
+++ b/lib/gcstar/GCLang/EL/GCModels/GCcoins.pm
@@ -0,0 +1,104 @@
+{
+ package GCLang::EL::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 => 'Συλλογή νομισμάτων',
+ Items => {0 => 'Νόμισμα',
+ 1 => 'Νόμισμα',
+ X => 'Νομίσματα'},
+ NewItem => 'Νέο νόμισμα',
+
+ Name => 'Όνομα',
+ Country => 'Χώρα',
+ Year => 'Έτος',
+ Currency => 'Νόμισμα',
+ Value => 'Αξία',
+ Picture => 'Κεντρική εικόνα',
+ Diameter => 'Διάμετρος',
+ Metal => 'Μέταλλο',
+ Edge => 'Στεφάνη',
+ Edge1 => 'Στεφάνη 1',
+ Edge2 => 'Στεφάνη 2',
+ Edge3 => 'Στεφάνη 3',
+ Edge4 => 'Στεφάνη 4',
+ Head => 'Όψη κύρια',
+ Tail => 'Όψη πίσω',
+ Comments => 'Σχόλια',
+ History => 'Ιστορικό',
+ Website => 'Ιστοσελίδα',
+ Estimate => 'Εκτιμώμενη αξία (€)',
+ References => 'Παραπομπές',
+ Type => 'Τύπος',
+ Coin => 'Κέρμα',
+ Banknote => 'Χαρτονόμισμα',
+
+ Main => 'Κυρίως',
+ Description => 'Περιγραφή',
+ Other => 'Λοιπές πληροφορίες',
+ 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/EL/GCModels/GCcomics.pm b/lib/gcstar/GCLang/EL/GCModels/GCcomics.pm
new file mode 100644
index 0000000..b5cc1de
--- /dev/null
+++ b/lib/gcstar/GCLang/EL/GCModels/GCcomics.pm
@@ -0,0 +1,73 @@
+{
+ package GCLang::EL::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 => 'Συλλογή Κόμικς',
+ Items => {0 => 'Κόμικς',
+ 1 => 'Κόμικ',
+ X => 'Κόμικς'},
+ NewItem => 'Νέο κόμικ',
+
+
+ Id => 'Id',
+ Name => 'Όνομα',
+ Series => 'Σειρά',
+ Volume => 'Τόμος',
+ Title => 'Τίτλος',
+ Writer => 'Συγγραφέας',
+ Illustrator => 'Εικονογράφος',
+ Colourist => 'Κολορίστας',
+ Publisher => 'Εκδότης',
+ Synopsis => 'Περίληψη',
+ Collection => 'Συλλογή',
+ PublishDate => 'Ημερομηνία έκδοσης',
+ PrintingDate => 'Ημερομηνία εκτύπωσης',
+ ISBN => 'ISBN',
+ Type => 'Τύπος',
+ Category => 'Κατηγορία',
+ Format => 'Μορφή',
+ NumberBoards => 'Αριθμός Σελίδων',
+ Signing => 'Αφιέρωση',
+ Cost => 'Κόστος',
+ Rating => 'Βαθμολογία',
+ Comment => 'Σχόλια',
+ Url => 'Ιστοσελίδα',
+
+ FilterRatingSelect => 'Βαθμός _τουλάχιστο...',
+
+ Main => 'Κεντρικό μενού',
+ General => 'Γενικά',
+ Details => 'Λεπτομέρειες',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EL/GCModels/GCfilms.pm b/lib/gcstar/GCLang/EL/GCModels/GCfilms.pm
new file mode 100644
index 0000000..7dea458
--- /dev/null
+++ b/lib/gcstar/GCLang/EL/GCModels/GCfilms.pm
@@ -0,0 +1,93 @@
+{
+ package GCLang::EL::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 => 'Συλλογή ταινιών',
+ Items => {0 => 'Ταινία',
+ 1 => 'Ταινία',
+ X => 'Ταινίες'},
+ NewItem => 'Νέα ταινία',
+
+
+ Id => 'Id',
+ Title => 'Τίτλος',
+ Date => 'Ημερομηνία',
+ Time => 'Διάρκεια',
+ Director => 'Σκηνοθέτης',
+ Country => 'Χώρα',
+ MinimumAge => 'Όριο ηλικίας',
+ Genre => 'Είδος',
+ Image => 'Εικόνα',
+ Original => 'Αυθεντικός τίτλος',
+ Actors => 'Ηθοποιοί',
+ Actor => 'Ηθοποιός',
+ Role => 'Ρόλος',
+ Comment => 'Σχόλια',
+ Synopsis => 'Περίληψη',
+ Seen => 'Το \'χω δει',
+ Number => 'Αριθμός',
+ Format => 'Τύπος μέσου',
+ Region => 'Χώρα',
+ Identifier => 'Αναγνωριστικό',
+ Url => 'Ιστοσελίδα',
+ Audio => 'Ήχος',
+ Video => 'Video format',
+ Trailer => 'Αρχείο video',
+ Serie => 'Σειρά',
+ Rank => 'Rank',
+ Subtitles => 'Υπότιτλοι',
+
+ SeenYes => 'Το \'χω δει',
+ SeenNo => 'Δεν το \'χω δει',
+
+ AgeUnrated => 'Άγνωστο',
+ AgeAll => 'Για όλη την οικογένεια',
+ AgeParent => 'Με γονική συναίνεση',
+
+ Main => 'Βασικά στοιχεία',
+ General => 'Γενικά',
+ Details => 'Λεπτομέρειες',
+
+ Information => 'Πληροφορίες',
+ Languages => 'Γλώσσες',
+ Encoding => 'Κωδικοποίηση',
+
+ FilterAudienceAge => 'Ηλικία θεατή',
+ FilterSeenNo => '_Δεν το \'χω δει',
+ FilterSeenYes => '_Το \'χω δει',
+ FilterRatingSelect => '_Βαθμολογία τουλάχιστο...',
+
+ ExtractSize => 'Μέγεθος',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EL/GCModels/GCgames.pm b/lib/gcstar/GCLang/EL/GCModels/GCgames.pm
new file mode 100644
index 0000000..807a47f
--- /dev/null
+++ b/lib/gcstar/GCLang/EL/GCModels/GCgames.pm
@@ -0,0 +1,82 @@
+{
+ package GCLang::EL::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 ',
+ Items => {0 => 'Παιχνίδι',
+ 1 => 'Παιχνίδι',
+ X => 'Παιχνίδια'},
+ NewItem => 'Νέο παιχνίδι',
+
+ Id => 'Id',
+ Ean => 'EAN',
+ Name => 'Όνομα',
+ Platform => 'Πλατφόρμα',
+ Players => 'Αριθμός παικτών',
+ Released => 'Ημερομηνία έκδοσης',
+ Editor => 'Εκδότης',
+ Developer => 'Δημιουργός',
+ Genre => 'Είδος',
+ Box => 'Εικόνα συσκευασίας',
+ Case => 'Συσκευασία',
+ Manual => 'Οδηγίες χρήσης',
+ Completion => 'Ολοκλήρωση (%)',
+ Executable => 'Εκτελέσιμο',
+ Description => 'Περιγραφή',
+ Codes => 'Κωδικοί',
+ Code => 'Κώδικας',
+ Effect => 'Effect',
+ Secrets => 'Secrets',
+ Screenshots => 'Στιγμιότυπα',
+ Screenshot1 => 'Πρώτο στιγμιότυπο',
+ Screenshot2 => 'Δεύτερο στιγμιότυπο',
+ Comments => 'Σχόλια',
+ Url => 'Ιστοσελίδα',
+ Unlockables => 'Μπορούν να ξεκλειδωθουν',
+ Unlockable => 'Μπορεί να ξεκλειδωθεί',
+ Howto => 'Τρόπος ξεκλειδώματος',
+ Exclusive => 'Exclusive',
+ Resolutions => 'Display resolutions',
+ InstallationSize => 'Size',
+ Region => 'Περιοχή',
+ SerialNumber => 'Σειριακός αριθμός',
+
+ General => 'Γενικά',
+ Details => 'Λεπτομέρειες',
+ Tips => 'Tips',
+ Information => 'Πληροφορίες',
+
+ FilterRatingSelect => '_Βαθμολογία τουλάχιστο...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EL/GCModels/GCgeneric.pm b/lib/gcstar/GCLang/EL/GCModels/GCgeneric.pm
new file mode 100644
index 0000000..2e18bbe
--- /dev/null
+++ b/lib/gcstar/GCLang/EL/GCModels/GCgeneric.pm
@@ -0,0 +1,42 @@
+{
+ package GCLang::EL::GCModels::GCgeneric;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ Items => {0 => 'Item',
+ 1 => 'Item',
+ X => 'Items'
+ },
+ NewItem => 'New item',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EL/GCModels/GCminicars.pm b/lib/gcstar/GCLang/EL/GCModels/GCminicars.pm
new file mode 100644
index 0000000..54fc2e1
--- /dev/null
+++ b/lib/gcstar/GCLang/EL/GCModels/GCminicars.pm
@@ -0,0 +1,182 @@
+{
+ package GCLang::EL::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 => 'Συλλογή μινιατούρων αυτοκινήτων',
+ Items => {0 => 'Όχημα',
+ 1 => 'Όχημα',
+ X => 'Οχήματα',
+ lowercase1 => 'όχημα',
+ lowercaseX => 'οχήματα'
+ },
+ NewItem => 'Νέο όχημα',
+ Currency => 'Νόμισμα',
+
+# Main fields
+
+ Main => 'Κύριες πληροφορίες',
+
+ Name => 'Όνομα',
+ Exchange => 'Προς πώληση ή ανταλλαγή',
+ Wanted => 'Ζήτηση',
+ Rating1 => 'Κύρια αξιολόγηση',
+ Picture1 => 'Κύρια εικόνα',
+ Scale => 'Κλίμακα',
+ Manufacturer => 'Εργοστάσιο',
+ Constructor => 'Κατασκευαστής',
+ Type1 => 'Τύπος',
+ Modele => 'Μοντέλο',
+ Version => 'Έκδοση',
+ Color => 'Χρώμα μοντέλου',
+ Pub => 'Διαφήμιση',
+ Year => 'Έτος',
+ Reference => 'Κωδικός',
+ Kit => 'Σε κιτ',
+ Transformation => 'Προσωπική τροποποίηση',
+ Comments1 => 'Σχόλια',
+
+# Details fields
+
+ Details => 'Λεπτομέρειες',
+
+ MiscCharacteristics => 'Διάφορα χαρακτηριστικά',
+ Material => 'Υλικό',
+ Molding => 'Καλούπι',
+ Condition => 'Κατάσταση',
+ Edition => 'Έκδοση',
+ Collectiontype => 'Όνομα συλλογής',
+ Serial => 'Σειρά',
+ Serialnumber => 'Σειριακός αριθμός',
+ Designed => 'Ημερομηνία σχεδιασμού',
+ Madein => 'Ημερομηνία κατασκευής',
+ Box1 => 'Τύπος κουτιού',
+ Box2 => 'Περιγραφή κουτιού',
+ Containbox => 'Περιεχόμενο κουτιού',
+ Rating2 => 'Ρεαλιστικό',
+ Rating3 => 'Φινίρισμα',
+ Acquisition => 'Ημερομηνία αγοράς',
+ Location => 'Τόπος αγοράς',
+ Buyprice => 'Τιμή αγοράς',
+ Estimate => 'Εκτίμηση',
+ Comments2 => 'Σχόλια',
+ Decorationset => 'Σετ διακόσμησης',
+ Characters => 'Χαρακτήρες',
+ CarFromFilm => 'Αυτοκίνητο από ταινία',
+ Filmcar => 'Ταινία σχετική με το όχημα',
+ Filmpart => 'Μέρος/επισόδειο ταινίας',
+ Parts => 'Αριθμός μερών',
+ VehiculeDetails => 'Λεπτομέρειες αυτοκινήτου',
+ Detailsparts => 'Αναλυτικά στοιχεία',
+ Detailsdecorations => 'Τύπος διακοσμήσεων',
+ Decorations => 'Αριθμός διακοσμήσεων',
+ Lwh => 'Μήκος / Πλάτος / Ύψος',
+ Weight => 'Βάρος',
+ Framecar => 'Σασί',
+ Bodycar => 'Αμάξωμα',
+ Colormirror => 'Χρώμα μοντέλου',
+ Interior => 'Εσωτερικό',
+ Wheels => 'Τροχοί',
+ Registrationnumber1 => 'Εμπρόσθιος αριθμός καταχώρησης',
+ Registrationnumber2 => 'Οπίσθιος αριθμός καταχώρησης',
+ RacingCar => 'Αγωνιστικό αυτοκίνητο',
+ Course => 'Αγώνας',
+ Courselocation => 'Τοποθεσία αγώνα',
+ Courseyear => 'Ημερομηνία αγώνα',
+ Team => 'Ομάδα',
+ Pilots => 'Οδηγός(οι)',
+ Copilots => 'Συνοδηγός(οι)',
+ Carnumber => 'Αριθμός οχήματος',
+ Pub2 => 'Διαφημιστές',
+ Finishline => 'Τελική κατάταξη',
+ Steeringwheel => 'Θέση τιμονιού',
+
+
+# Catalogs fields
+
+ Catalogs => 'Κατάλογοι',
+
+ OfficialPicture => 'Επίσημη εικόνα',
+ Barcode => 'Barcode',
+ Referencemirror => 'Κωδικός',
+ Year3 => 'Ημερομηνία διαθεσιμότητας',
+ CatalogCoverPicture => 'Εξώφυλλο',
+ CatalogPagePicture => 'Σελίδα',
+ Catalogyear => 'Έτος καταλόγου',
+ Catalogedition => 'Έκδοση καταλόγου',
+ Catalogpage => 'Σελίδα καταλόγου',
+ Catalogprice => 'Τιμή καταλόγου',
+ Personalref => 'Προσωπικός κωδικός',
+ Websitem => 'Ιστοσελίδα κατασκευαστή μινιατούρας',
+ Websitec => 'Ιστοσελίδα κατασκευαστή του πραγματικού οχήματος',
+ Websiteo => 'Χρήσιμοι σύνδεσμοι',
+ Comments3 => 'Σχόλια',
+
+# Pictures fields
+
+ Pictures => 'Εικόνες',
+
+ OthersComments => 'Γενικές παρατηρήσεις',
+ OthersDetails => 'Άλλες λεπτομέρειες',
+ Top1 => 'Επάνω',
+ Back1 => 'Κάτω',
+ AVG => 'Επάνω αριστερά',
+ AV => 'Επάνω',
+ AVD => 'Επάνω δεξιά',
+ G => 'Αριστερά',
+ BOX => 'Κουτί',
+ D => 'Δεξιά',
+ ARG => 'Πίσω αριστερά',
+ AR => 'Πίσω',
+ ARD => 'Πίσω δεξιά',
+ Others => 'Διάφορα',
+
+# PanelLending fields
+
+ LendingExplanation => 'Χρήσιμες ανταλλαγές κατα την διαρκεια περιοδικών εκθέσεων',
+ PanelLending => 'Χορηγήσεις (για εκθέσεις)',
+ Comments4 => 'Σχόλια',
+
+# Realmodel fields
+
+ Realmodel => 'Πραγματικό αυτοκίνητο',
+
+ Difference => 'Διαφορές με την μινιατούρα',
+ Front2 => 'Εμπρός',
+ Back2 => 'Πίσω',
+ Comments5 => 'Σχόλια',
+
+ References => 'Αναφορές',
+
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EL/GCModels/GCmusics.pm b/lib/gcstar/GCLang/EL/GCModels/GCmusics.pm
new file mode 100644
index 0000000..be29c6e
--- /dev/null
+++ b/lib/gcstar/GCLang/EL/GCModels/GCmusics.pm
@@ -0,0 +1,68 @@
+{
+ package GCLang::EL::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 => 'Συλλογή μουσικής',
+ Items => {0 => 'Δίσκος',
+ 1 => 'Δίσκος',
+ X => 'Δίσκοι'},
+ NewItem => 'Νέος δίσκος',
+
+ Unique => 'ISRC/EAN',
+ Title => 'Τίτλος',
+ Cover => 'Εξώφυλλο',
+ Artist => 'Καλλιτέχνης',
+ Format => 'Format',
+ Running => 'Διάρκεια',
+ Release => 'Ημερομηνία έκδοσης',
+ Genre => 'Είδος',
+ Origin => 'Προέλευση',
+
+#For tracks list
+ Tracks => 'Λίστα τραγουδιών',
+ Number => 'Νούμερο',
+ Track => 'Τίτλος',
+ Time => 'Διάρκεια',
+
+ Composer => 'Συνθέτης',
+ Producer => 'Παραγωγός',
+ Playlist => 'Λίστα αναπαραγωγής',
+ Comments => 'Σχόλια',
+ Label => 'Δισκογραφική εταιρεία',
+ Url => 'Ιστοσελίδα',
+
+ General => 'Γενικά',
+ Details => 'Λεπτομέρειες',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EL/GCModels/GCperiodicals.pm b/lib/gcstar/GCLang/EL/GCModels/GCperiodicals.pm
new file mode 100644
index 0000000..d4fc659
--- /dev/null
+++ b/lib/gcstar/GCLang/EL/GCModels/GCperiodicals.pm
@@ -0,0 +1,52 @@
+{
+ package GCLang::EL::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 => 'Συλλογή Περιοδικών',
+ Items => {0 => 'Περιοδικό',
+ 1 => 'Περιοδικό',
+ X => 'Περιοδικά'},
+ NewItem => 'Νέο περιοδικό',
+
+ Title => 'Τίτλος',
+ Cover => 'Εξώφυλλο',
+ Periodical => 'Περιοδικό',
+ Number => 'Τεύχος',
+ Date => 'Ημερομηνία',
+ Subject => 'Θέμα',
+ Articles => 'Άρθρα',
+
+ General => 'Γενικά',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EL/GCModels/GCsmartcards.pm b/lib/gcstar/GCLang/EL/GCModels/GCsmartcards.pm
new file mode 100644
index 0000000..30eaff2
--- /dev/null
+++ b/lib/gcstar/GCLang/EL/GCModels/GCsmartcards.pm
@@ -0,0 +1,108 @@
+{
+ package GCLang::EL::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 => 'Συλλογή τηλεκαρτών',
+ Items => {0 => 'Τηλεκάρτα',
+ 1 => 'Τηλεκάρτα',
+ X => 'Τηλεκάρτες'},
+ NewItem => 'Νέα τηλεκάρτα',
+ Currency => 'Νόμισμα',
+
+ Help => 'Βοήθεια για τα πεδία',
+ Help1 => 'Βοήθεια',
+
+# Traduction des Champs "Main"
+
+ Main => 'Η τηλεκάρτα',
+
+ Cover => 'Εικόνα',
+
+ Name => 'Όνομα',
+ Exchange => 'Προς πώληση ή ανταλλαγή',
+ Wanted => 'Ζήτηση',
+ Rating1 => 'Γενική αξιολόγηση',
+ TheSmartCard => 'Η τηλεκάρτα, εμπρός/πίσω',
+
+ Country => 'Χώρα',
+ Color => 'Χρώμα',
+ Type1 => 'Τύπος κάρτας',
+ Type2 => 'Τύπος τσιπ',
+ Dimension => 'Μήκος / Πλάτος / Πάχος',
+
+ Box => 'Κουτί',
+ Chip => 'Τσίπ',
+ Year1 => 'Έτος έκδοσης',
+ Year2 => 'Ετος εγκυρότητας',
+ Condition => 'Κατάσταση',
+ Charge => 'Φορτιζόμερνη κάρτα',
+ Variety => 'Είδος',
+
+ Edition => 'Αριθμός δειγμάτων',
+ Serial => 'Σειριακός αριθμός',
+ Theme => 'Θέμα',
+
+ Acquisition => 'Αγοραστηκε στο',
+
+ Catalog0 => 'Κατάλογος',
+ Catalog1 => 'OTE',
+ Catalog2 => 'Κινητής τηλεφωνίας',
+
+ Reference0 => 'Κωδικός',
+ Reference1 => 'Κωδικός ΟΤΕ',
+ Reference2 => 'Κωδικός κινητής τηλεφωνίας',
+ Reference3 => 'Άλλος κωδικός',
+
+ Quotationnew00 => 'Αξία νέας κάρτας',
+ Quotationnew10 => 'Αξία κάρτας ΟΤΕ',
+ Quotationnew20 => 'Αξία κάρτας κινητής',
+ Quotationnew30 => 'Άλλη αξία',
+ Quotationold00 => 'Αξία μεταχειρισμένης κάρτας',
+ Quotationold10 => 'Αξία κάρτας ΟΤΕ',
+ Quotationold20 => 'Αξία κάρτας κινητής',
+ Quotationold30 => 'Άλλη αξία',
+
+ Title1 => 'Τίτλος',
+
+ Unit => 'Μονάδες / Αριθμός λεπτών',
+
+ Pressed => 'Τύπος εκτύπωσης',
+ Location => 'Τόπος εκτύπωσης',
+
+ Comments1 => 'Σχόλια',
+
+ Others => 'Διάφορα.',
+ Weight => 'Βάρος',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EL/GCModels/GCsoftware.pm b/lib/gcstar/GCLang/EL/GCModels/GCsoftware.pm
new file mode 100644
index 0000000..274d7e4
--- /dev/null
+++ b/lib/gcstar/GCLang/EL/GCModels/GCsoftware.pm
@@ -0,0 +1,84 @@
+{
+ package GCLang::EL::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 => 'Συλλογή προγραμμάτων υπολογιστών',
+ Items => {0 => 'Εφαρμογή',
+ 1 => 'Εφαρμογή',
+ X => 'Εφαρμογές',
+ lowercase1 => 'εφαρμογή',
+ lowercaseX => 'εφαρμογες'},
+ NewItem => 'Νέα εφαρμογή',
+
+ Id => 'Id',
+ Ean => 'EAN',
+ Name => 'Όνομα',
+ Platform => 'Πλατφόρμα',
+ Released => 'Ημερομηνία κυκλοφορίας',
+ Homepage => 'Ιστοσελίδα',
+ Editor => 'Εκδότης',
+ Developer => 'Προγραμματιστής',
+ Category => 'Κατηγορία',
+ NumberOfCopies => 'Αντίγραφα',
+ Price => 'Τιμή',
+ Box => 'Εικόνα κουτιού',
+ Case => 'Θήκη',
+ Manual => 'Εγχειρίδιο χρήσης',
+ Executable => 'Εκτελέσιμο',
+ Description => 'Περιγραφή',
+ License => 'Άδεια χρήσης',
+ Commercial => 'Εμπορικό',
+ FreewareNoncommercial => 'Freeware (μη εμπορική χρήση)',
+ OtherOpenSource => 'Άλλο ανοιχτού λογισμικού',
+ PublicDomain => 'Δημόσιος τομέας',
+ OtherLicense => 'Άλλο',
+ Registration => 'Εγγραφή',
+ RegistrationInfo => 'Πληροφορίες εγγραφής',
+ RegInfo => 'Πληροφορίες εγγραφής',
+ RegistrationName => 'Όνομα χρήστη',
+ RegistrationNumber => 'Αριθμός εγγραφής',
+ PanelRegistration => 'Πληροφορίες εγγραφής',
+ RegistrationComments => 'Πρόσθετες πληροφορίες ή σχόλια',
+ Screenshots => 'Στιγμιότυπα',
+ Screenshot1 => 'Πρώτο στιγμιότυπο',
+ Screenshot2 => 'Δεύτερο στιγμιότυπο',
+ Comments => 'Σχόλια',
+ Url => 'Ιστοσελίδα',
+ General => 'Γενικά',
+ Details => 'Λεπτομέρειες',
+ Information => 'Πληροφορίες',
+
+ FilterRatingSelect => 'Αξιολόγηση τουλάχιστο...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EL/GCModels/GCstamps.pm b/lib/gcstar/GCLang/EL/GCModels/GCstamps.pm
new file mode 100644
index 0000000..c48b9f0
--- /dev/null
+++ b/lib/gcstar/GCLang/EL/GCModels/GCstamps.pm
@@ -0,0 +1,189 @@
+{
+ package GCLang::EL::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 => 'Συλλογή γραμματοσήμων',
+ Items => {0 => 'Γραμματόσημα',
+ 1 => 'Γραμματόσημο',
+ X => 'Γραμματόσημα'},
+ NewItem => 'Νέο γραμματόσημο',
+
+ General => 'Γενικά',
+ Detail => 'Λεπτομέρεια',
+ Value => 'Αξία',
+ Notes => 'Σημειώσεις',
+ Views => 'Όψεις',
+
+ Name => 'Όνομα',
+ Country => 'Χώρα',
+ Year => 'Έτος',
+ Catalog => 'Κατάλογος',
+ Number => 'Αριθμός',
+ Topic => 'Θέμα',
+ Serie => 'Σειρά',
+ Designer => 'Σχεδιαστής',
+ Engraver => 'Χαράκτης',
+ Type => 'Τύπος',
+ Format => 'Μορφή',
+ Description => 'Περιγραφή',
+ Color => 'Χρώμα',
+ Gum => 'Κόλλα',
+ Paper => 'Χαρτί',
+ Perforation => 'Οδόντωση',
+ PerforationSize => 'Μέγεθος οδόντωσης',
+ CancellationType => 'Τύπος σφράγισης',
+ Comments => 'Σχόλια',
+ PrintingVariety => 'Ποικιλία εκτύπωσης',
+ IssueDate => 'Ημερομηνία έκδοσης',
+ EndOfIssue => 'Τέλος έκδοσης',
+ Issue => 'Έκδοση',
+ Grade => 'Ποιότητα',
+ Status => 'Θέση',
+ Adjusted => 'Προσαρμοσμένο',
+ Cancellation => 'Σφράγιση',
+ CancellationCondition => 'Κατάσταση σφραγίδας',
+ GumCondition => 'Κατάσταση κόλλας',
+ PerforationCondition => 'Κατάσταση οδόντωσης',
+ ConditionNotes => 'Σημειώσεις για την κατάσταση',
+ Error => 'Λάθος',
+ ErrorNotes => 'Σημειώσεις Λάθους',
+ FaceValue => 'Αξία όψης',
+ MintValue => 'Αξία καινούργιου',
+ UsedValue => 'Αξία σφραγισμένου',
+ PurchasedDate => 'Ημερομηνία αγοράς',
+ Quantity => 'Ποσότητα',
+ History => 'Ιστορικό',
+ Picture1 => 'Εικόνα 1',
+ Picture2 => 'Εικόνα 2',
+ Picture3 => 'Εικόνα 3',
+
+ AirMail => 'Ταχυδρομημένο αεροπορικώς',
+ MilitaryStamp => 'Στρατιωτική σφραγίδα',
+ Official => 'Σφραγίδα υπηρεσίας',
+ PostageDue => 'Φόρος γραμματοσήμου',
+ Regular => 'Κανονικό γραμματόσημο',
+ Revenue => 'Χαρτόσημο',
+ SpecialDelivery => 'Ταχεία αποστολή',
+ StrikeStamp => 'Γραμματόσημο απεργίας',
+ TelegraphStamp => 'Γραμματόσημο τηλέγραφου',
+ WarStamp => 'Γραμματόσημο πολέμου',
+ WarTaxStamp => 'Χαρτόσημο πολέμου',
+
+ Booklet => 'Κλασέρ',
+ BookletPane => 'Ποσεττα',
+ Card => 'Κάρτα',
+ Coil => 'Γραμματόσημο τροχίσου',
+ Envelope => 'Φάκελος',
+ FirstDayCover => 'Φάκελος πρώτης ημέρας κυκλοφορίας',
+ Sheet => 'Φεγιέ',
+ Single => 'Μεμονωμένο',
+
+ Heliogravure => 'Φωτοχαραξη',
+ Lithography => 'Λιθογραφία',
+ Offset => 'Offset',
+ Photogravure => 'Φωτοτσιγκογραφία',
+ RecessPrinting => 'Χαλκογραφική',
+ Typography => 'Τυπογραφία',
+
+ OriginalGum => 'Αυθεντική κόλλα',
+ Ungummed => 'Ξεκολλημένο',
+ Regummed => 'Επανακολλημενο',
+
+ Chalky => 'Ασβεστολιθικό χαρτί',
+ ChinaPaper => 'Χαρτί Κίνας',
+ Coarsed => 'Τραχύ χαρτί',
+ Glossy => 'Γυαλιστερό',
+ Granite => 'Γρανίτης',
+ Laid => 'Στρωτό',
+ Manila => 'Χαρτί με φυσαλίδες',
+ Native => 'Φυσικό',
+ Pelure => 'Φλοιώδες',
+ Quadrille => 'Χαρτί καντριλέ',
+ Ribbed => 'Ραβδωτό',
+ Rice => 'Ρυζόχαρτο',
+ Silk => 'Μεταξωτό',
+ Smoothed => 'Λείο',
+ Thick => 'Παχύ',
+ Thin => 'Λεπτό',
+ Wove => 'Κυματιστό',
+
+ CoarsedPerforation => 'Χονδροειδή οδόντωση',
+ CombPerforation => 'Οδόντωση χτένα',
+ CompoundPerforation => 'Ανάμικτη οδόντωση',
+ DamagedPerforation => 'Αλλοιωμένη οδόντωση',
+ DoublePerforation => 'Διπλή διάτρηση',
+ HarrowPerforation => 'Σκισμένη οδόντωση',
+ LinePerforation => 'Γραμμική οδόντωση',
+ NoPerforation => 'Χωρίς οδόντωση',
+
+ CancellationToOrder => 'Σφράγιση παραγγελίας',
+ FancyCancellation => 'Εντυπωσιακή σφράγιση',
+ FirstDayCancellation => 'Σφράγιση φακέλου πρώτης ημέρας',
+ NumeralCancellation => 'Ψηφιακή σφράγιση',
+ PenMarked => 'Σημειωμένο με πένα',
+ RailroadCancellation => 'Σφράγιση σιδηρόδρομου',
+ SpecialCancellation => 'Ειδική σφράγιση',
+
+ Superb => 'Εξαίσιο',
+ ExtraFine => 'Πάρα πολυ ωραίο',
+ VeryFine => 'Πολυ ωραίο',
+ FineVeryFine => 'Ωραίο/Πολύ ωραίο',
+ Fine => 'Ωραίο',
+ Average => 'Μέτριο',
+ Poor => 'Κακό',
+
+ Owned => 'Κατεχόμενο',
+ Ordered => 'Σε παραγγελία',
+ Sold => 'Πουλημένο',
+ ToSell => 'Προς πώληση',
+ Wanted => 'Ζητούμενο',
+
+ LightCancellation => 'Ελαφριά σφράγιση',
+ HeavyCancellation => 'Έντονη σφράγιση',
+ ModerateCancellation => 'Μέτρια σφράγιση',
+
+ MintNeverHinged => 'Ανέπαφο',
+ MintLightHinged => 'Ελαφριά τσάκιση',
+ HingedRemnant => 'Τσάκιση',
+ HeavilyHinged => 'Μεγάλη τσάκιση',
+ LargePartOriginalGum => 'Γνήσια κόλλα σε μεγάλη επιφάνεια',
+ SmallPartOriginalGum => 'Γνήσια κόλλα σε μικρή επιφάνεια',
+ NoGum => 'Χωρίς κόλλα',
+
+ Perfect => 'Τέλειο',
+ VeryNice => 'Πολύ όμορφο',
+ Nice => 'Όμορφο',
+ Incomplete => 'Ατελείωτο',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/EL/GCModels/GCwines.pm b/lib/gcstar/GCLang/EL/GCModels/GCwines.pm
new file mode 100644
index 0000000..a596e3a
--- /dev/null
+++ b/lib/gcstar/GCLang/EL/GCModels/GCwines.pm
@@ -0,0 +1,84 @@
+{
+ package GCLang::EL::GCModels::GCwines;
+
+ 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 => 'Συλλογή κρασιών',
+ Items => {0 => 'Κρασί',
+ 1 => 'Κρασί',
+ X => 'Κρασιά'},
+ NewItem => 'Νέο κρασί',
+
+ Name => 'Όνομα',
+ Designation => 'Ονομασία',
+ Vintage => 'Χρονιά παραγωγής',
+ Vineyard => 'Αμπελώνας',
+ Type => 'Κατηγορία',
+ Grapes => 'Σταφύλι',
+ Soil => 'Έδαφος',
+ Producer => 'Παραγωγός',
+ Country => 'Χώρα',
+ Volume => 'Ποσότητα (ml)',
+ Alcohol => 'Αλκοόλ (%)',
+ Medal => 'Διακρίσεις',
+
+ Storage => 'Αποθήκευση',
+ Location => 'Τοποθεσία',
+ ShelfIndex => 'Θέση',
+ Quantity => 'Ποσότητα',
+ Acquisition => 'Απόκτηση',
+ PurchaseDate => 'Ημερομηνία απόκτησης',
+ PurchasePrice => 'Τιμή απόκτησης',
+ Gift => 'Δώρο',
+ BottleLabel => 'Ετικέτα φιάλης',
+ Website => 'Παραπομπή στο Internet',
+
+ Tasted => 'Δοκιμασμένο',
+ Comments => 'Παρατηρήσεις',
+ Serving => 'Σερβίρισμα',
+ TastingField => 'Χαρακτήρας',
+
+ General => 'Γενικά',
+ Details => 'Λεπτομέρειες',
+ Tasting => 'Γεύση',
+
+ TastedNo => 'Δεν είναι δοκιμασμένο',
+ TastedYes => 'Δοκιμασμένο',
+
+ FilterRange => 'Εύρος',
+ FilterTastedNo => '_Δεν έχει δοκιμαστεί ακόμα',
+ FilterTastedYes => 'Δοκιμασμένο',
+ FilterRatingSelect => '_Βαθμολογία τουλάχιστο...'
+
+ );
+}
+
+1;