diff options
Diffstat (limited to 'lib/gcstar/GCLang/SV/GCModels')
-rw-r--r-- | lib/gcstar/GCLang/SV/GCModels/GCTVepisodes.pm | 45 | ||||
-rw-r--r-- | lib/gcstar/GCLang/SV/GCModels/GCTVseries.pm | 49 | ||||
-rw-r--r-- | lib/gcstar/GCLang/SV/GCModels/GCboardgames.pm | 86 | ||||
-rw-r--r-- | lib/gcstar/GCLang/SV/GCModels/GCbooks.pm | 68 | ||||
-rw-r--r-- | lib/gcstar/GCLang/SV/GCModels/GCcoins.pm | 102 | ||||
-rw-r--r-- | lib/gcstar/GCLang/SV/GCModels/GCcomics.pm | 73 | ||||
-rw-r--r-- | lib/gcstar/GCLang/SV/GCModels/GCfilms.pm | 91 | ||||
-rw-r--r-- | lib/gcstar/GCLang/SV/GCModels/GCgames.pm | 80 | ||||
-rw-r--r-- | lib/gcstar/GCLang/SV/GCModels/GCgeneric.pm | 42 | ||||
-rw-r--r-- | lib/gcstar/GCLang/SV/GCModels/GCminicars.pm | 182 | ||||
-rw-r--r-- | lib/gcstar/GCLang/SV/GCModels/GCmusics.pm | 66 | ||||
-rw-r--r-- | lib/gcstar/GCLang/SV/GCModels/GCperiodicals.pm | 52 | ||||
-rw-r--r-- | lib/gcstar/GCLang/SV/GCModels/GCsmartcards.pm | 108 | ||||
-rw-r--r-- | lib/gcstar/GCLang/SV/GCModels/GCsoftware.pm | 84 | ||||
-rw-r--r-- | lib/gcstar/GCLang/SV/GCModels/GCstamps.pm | 189 | ||||
-rw-r--r-- | lib/gcstar/GCLang/SV/GCModels/GCwines.pm | 63 |
16 files changed, 1380 insertions, 0 deletions
diff --git a/lib/gcstar/GCLang/SV/GCModels/GCTVepisodes.pm b/lib/gcstar/GCLang/SV/GCModels/GCTVepisodes.pm new file mode 100644 index 0000000..2ba74e6 --- /dev/null +++ b/lib/gcstar/GCLang/SV/GCModels/GCTVepisodes.pm @@ -0,0 +1,45 @@ +{ + package GCLang::SV::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-episod samling', + Items => 'Episoder', + NewItem => 'Ny episod', + NewSeries => 'Nya serier', + Episode => 'Episod', + ); + # Both of them are required as importTranslation doesn't recurse + importTranslation('films'); + importTranslation('TVseries'); +} + +1; diff --git a/lib/gcstar/GCLang/SV/GCModels/GCTVseries.pm b/lib/gcstar/GCLang/SV/GCModels/GCTVseries.pm new file mode 100644 index 0000000..7647402 --- /dev/null +++ b/lib/gcstar/GCLang/SV/GCModels/GCTVseries.pm @@ -0,0 +1,49 @@ +{ + package GCLang::SV::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-serie samling', + Items => 'Serier', + NewItem => 'Nya serier', + Name => 'Namn', + Season => 'Säsong', + Part => 'Del', + Episodes => 'Episod', + FirstAired => 'Lanserad', + Time => 'Ep. Längd', + Producer => 'Producent', + Music => 'Musik', + ); + importTranslation('Films'); +} + +1; diff --git a/lib/gcstar/GCLang/SV/GCModels/GCboardgames.pm b/lib/gcstar/GCLang/SV/GCModels/GCboardgames.pm new file mode 100644 index 0000000..9ec109b --- /dev/null +++ b/lib/gcstar/GCLang/SV/GCModels/GCboardgames.pm @@ -0,0 +1,86 @@ +{ + package GCLang::SV::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 => 'Brädspelssamling', + Items => {0 => 'Spel', + 1 => 'Spel', + X => 'Spel'}, + NewItem => 'Nytt spel', + + Id => 'Id', + Name => 'Namn', + Original => 'Original namn', + Box => 'Omslagsbild', + DesignedBy => 'Designad av', + PublishedBy => 'Utgiven av', + Players => 'Antal spelare', + PlayingTime => 'Speltid', + SuggestedAge => 'Rekommenderad ålder', + Released => 'Utgiven', + Description => 'Beskrivning', + Category => 'Kategori', + Mechanics => 'Mekanik', + ExpandedBy => 'Expanderad av', + ExpansionFor => 'Expansion för', + GameFamily => 'Spelfamilj', + IllustratedBy => 'Illustrerad av', + Url => 'Hemsida', + TimesPlayed => 'Antal spelade sessioner', + CompleteContents => 'Komplett innehåll', + Copies => 'Antal exemplar', + Condition => 'Skick', + Photos => 'Bilder', + Photo1 => 'Första bild', + Photo2 => 'Andra bild', + Photo3 => 'Tredje bild', + Photo4 => 'Fjärde bild', + Comments => 'Kommentarer', + + Perfect => 'Perfekt', + Good => 'Bra', + Average => 'Medel', + Poor => 'Undermålig', + + CompleteYes => 'Komplett innehåll', + CompleteNo => 'Saknade delar', + + General => 'Allmänt', + Details => 'Detaljer', + Personal => 'Personligt', + Information => 'Information', + + FilterRatingSelect => 'Betyg _Åtminstone...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/SV/GCModels/GCbooks.pm b/lib/gcstar/GCLang/SV/GCModels/GCbooks.pm new file mode 100644 index 0000000..f91e0f1 --- /dev/null +++ b/lib/gcstar/GCLang/SV/GCModels/GCbooks.pm @@ -0,0 +1,68 @@ +{ + package GCLang::SV::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 => 'Boksamling', + Items => 'Böcker', + NewItem => 'Ny bok', + + Isbn => 'ISBN', + Title => 'Titel', + Cover => 'Omslag', + Authors => 'Författare', + Publisher => 'Utgivare', + Publication => 'Utgivningsdatum', + Language => 'Språk', + Genre => 'Genre', + Serie => 'Serie', + Rank => 'Grad', + Bookdescription => 'Beskrivning', + Pages => 'Antal sidor', + Read => 'Läst', + Acquisition => 'Förvärvsdatum', + Edition => 'Utgåva', + Format => 'Format', + Comments => 'Kommentarer', + Url => 'Hemsida', + Translator => 'Översättare', + Artist => 'Illustratör', + DigitalFile => 'Digital version', + + General => 'Allmänt', + Details => 'Detaljer', + + ReadNo => 'Ej läst', + ReadYes => 'Läst', + ); +} + +1; diff --git a/lib/gcstar/GCLang/SV/GCModels/GCcoins.pm b/lib/gcstar/GCLang/SV/GCModels/GCcoins.pm new file mode 100644 index 0000000..54027c8 --- /dev/null +++ b/lib/gcstar/GCLang/SV/GCModels/GCcoins.pm @@ -0,0 +1,102 @@ +{ + package GCLang::SV::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 => 'Myntsamling', + Items => 'Mynt', + NewItem => 'Nytt mynt', + + Name => 'Namn', + Country => 'Land', + Year => 'År', + Currency => 'Valuta', + Value => 'Värde', + Picture => 'Huvudbild', + Diameter => 'Diameter', + Metal => 'Metall', + Edge => 'Kant', + Edge1 => 'Kant 1', + Edge2 => 'Kant 2', + Edge3 => 'Kant 3', + Edge4 => 'Kant 4', + Head => 'Huvud', + Tail => 'Baksida', + Comments => 'Kommentarer', + History => 'Historik', + Website => 'Hemsida', + Estimate => 'Bedömning', + References => 'Referenser', + Type => 'Typ', + Coin => 'Mynt', + Banknote => 'Banknotering', + + Main => 'Huvud', + Description => 'Beskrivning', + Other => 'Övrig information', + Pictures => 'Bilder', + + Condition => 'Tillstånd (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/SV/GCModels/GCcomics.pm b/lib/gcstar/GCLang/SV/GCModels/GCcomics.pm new file mode 100644 index 0000000..f01bb23 --- /dev/null +++ b/lib/gcstar/GCLang/SV/GCModels/GCcomics.pm @@ -0,0 +1,73 @@ +{ + package GCLang::SV::GCModels::GCcomics; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Comics collection', + Items => {0 => 'Comics', + 1 => 'Comic', + X => 'Comics'}, + NewItem => 'New comic', + + + Id => 'Id', + Name => 'Name', + Series => 'Series', + Volume => 'Volume', + Title => 'Title', + Writer => 'Writer', + Illustrator => 'Illustrator', + Colourist => 'Colourist', + Publisher => 'Publisher', + Synopsis => 'Synopsis', + Collection => 'Collection', + PublishDate => 'Publish Date', + PrintingDate => 'Printing Date', + ISBN => 'ISBN', + Type => 'Type', + Category => 'Category', + Format => 'Format', + NumberBoards => 'Number of Boards', + Signing => 'Signing', + Cost => 'Cost', + Rating => 'Rating', + Comment => 'Comments', + Url => 'Web page', + + FilterRatingSelect => 'Rating At _Least...', + + Main => 'Main items', + General => 'General', + Details => 'Details', + ); +} + +1; diff --git a/lib/gcstar/GCLang/SV/GCModels/GCfilms.pm b/lib/gcstar/GCLang/SV/GCModels/GCfilms.pm new file mode 100644 index 0000000..7075d79 --- /dev/null +++ b/lib/gcstar/GCLang/SV/GCModels/GCfilms.pm @@ -0,0 +1,91 @@ +{ + package GCLang::SV::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 => 'Filmsamling', + Items => 'Filmer', + NewItem => 'Ny film', + + + Id => 'Id', + Title => 'Titel', + Date => 'Datum', + Time => 'Längd', + Director => 'Regissör', + Country => 'Land', + MinimumAge => 'Åldersgräns', + Genre => 'Genre', + Image => 'Bild', + Original => 'Original titel', + Actors => 'Roller', + Actor => 'Skådespelare', + Role => 'Roll', + Comment => 'Kommentarer', + Synopsis => 'Synopsis', + Seen => 'Visad', + Number => '# av Media', + Format => 'Media', + Region => 'Region', + Identifier => 'Identifierare', + Url => 'Hemsida', + Audio => 'Ljud', + Video => 'Videoformat', + Trailer => 'Videofil', + Serie => 'Serie', + Rank => 'Grad', + Subtitles => 'Undertexter', + + SeenYes => 'Visad', + SeenNo => 'Ej visad', + + AgeUnrated => 'Ej betygsatt', + AgeAll => 'Alla Åldrar', + AgeParent => 'Åldersgräns', + + Main => 'Huvudartiklar', + General => 'Allmänt', + Details => 'Detaljer', + + Information => 'Information', + Languages => 'Språk', + Encoding => 'Kodning', + + FilterAudienceAge => 'Publik ålder', + FilterSeenNo => '_Ännu ej visad', + FilterSeenYes => '_Redan visad', + FilterRatingSelect => 'Betyg _Åtminstone...', + + ExtractSize => 'Storlek', + ); +} + +1; diff --git a/lib/gcstar/GCLang/SV/GCModels/GCgames.pm b/lib/gcstar/GCLang/SV/GCModels/GCgames.pm new file mode 100644 index 0000000..f708e93 --- /dev/null +++ b/lib/gcstar/GCLang/SV/GCModels/GCgames.pm @@ -0,0 +1,80 @@ +{ + package GCLang::SV::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 => 'Videospelsamling', + Items => 'Spel', + NewItem => 'Nytt spel', + + Id => 'Id', + Ean => 'EAN', + Name => 'Namn', + Platform => 'Plattform', + Players => 'Antal spelare', + Released => 'Releasedatum', + Editor => 'Utgivare', + Developer => 'Utvecklare', + Genre => 'Genre', + Box => 'Omslagsbild', + Case => 'Fodral', + Manual => 'Instruktionsmanual', + Completion => 'Fullständighet (%)', + Executable => 'Startfil', + Description => 'Beskrivning', + Codes => 'Koder', + Code => 'Kod', + Effect => 'Effekt', + Secrets => 'Hemligheter', + Screenshots => 'Bilder', + Screenshot1 => 'Första bild', + Screenshot2 => 'Andra screenshot', + Comments => 'Kommentarer', + Url => 'Hemsida', + Unlockables => 'Upplåsningar', + Unlockable => 'Upplåsningsbar', + Howto => 'Hur låsa upp', + Exclusive => 'Exclusive', + Resolutions => 'Display resolutions', + InstallationSize => 'Size', + Region => 'Region', + SerialNumber => 'Serial Number', + + General => 'Allmänt', + Details => 'Detaljer', + Tips => 'Tips', + Information => 'Information', + + FilterRatingSelect => 'Betyg _Åtminstone...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/SV/GCModels/GCgeneric.pm b/lib/gcstar/GCLang/SV/GCModels/GCgeneric.pm new file mode 100644 index 0000000..4d52094 --- /dev/null +++ b/lib/gcstar/GCLang/SV/GCModels/GCgeneric.pm @@ -0,0 +1,42 @@ +{ + package GCLang::SV::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/SV/GCModels/GCminicars.pm b/lib/gcstar/GCLang/SV/GCModels/GCminicars.pm new file mode 100644 index 0000000..16b8ec9 --- /dev/null +++ b/lib/gcstar/GCLang/SV/GCModels/GCminicars.pm @@ -0,0 +1,182 @@ +{
+ package GCLang::SV::GCModels::GCminicars;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2007 Tian
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Mini vehicles collection',
+ Items => {0 => 'Vehicle',
+ 1 => 'Vehicle',
+ X => 'Vehicles', + lowercase1 => 'vehicle', + lowercaseX => 'vehicles' + },
+ NewItem => 'New vehicle',
+ Currency => 'Currency',
+
+# Main fields
+
+ Main => 'Main information',
+
+ Name => 'Name',
+ Exchange => 'To be sold or exchanged',
+ Wanted => 'Wanted',
+ Rating1 => 'Main rating',
+ Picture1 => 'Main picture',
+ Scale => 'Scale',
+ Manufacturer => 'Manufacturer',
+ Constructor => 'Constructor',
+ Type1 => 'Type',
+ Modele => 'Model',
+ Version => 'Version',
+ Color => 'Model color',
+ Pub => 'Advertisement',
+ Year => 'Year',
+ Reference => 'Reference',
+ Kit => 'In kit form',
+ Transformation => 'Personal transformation',
+ Comments1 => 'Comments',
+
+# Details fields
+
+ Details => 'Details',
+
+ MiscCharacteristics => 'Miscellaneous characteristics',
+ Material => 'Material',
+ Molding => 'Molding',
+ Condition => 'Condition',
+ Edition => 'Edition',
+ Collectiontype => 'Collection name',
+ Serial => 'Series',
+ Serialnumber => 'Serial number',
+ Designed => 'Design date',
+ Madein => 'Manufacture date',
+ Box1 => 'Kind of box',
+ Box2 => 'Box description',
+ Containbox => 'Box contet',
+ Rating2 => 'Realism',
+ Rating3 => 'Finish',
+ Acquisition => 'Acquisition date',
+ Location => 'Acquisition place',
+ Buyprice => 'Acquisition price',
+ Estimate => 'Estimation',
+ Comments2 => 'Comments',
+ Decorationset => 'Decoration set',
+ Characters => 'Characters',
+ CarFromFilm => 'Movie car',
+ Filmcar => 'Movie related to the vehicle',
+ Filmpart => 'Movie part/episode',
+ Parts => 'Number of parts',
+ VehiculeDetails => 'Vehicule details',
+ Detailsparts => 'Details parts',
+ Detailsdecorations => 'Kind of decorations',
+ Decorations => 'Number of decorations',
+ Lwh => 'Length / Width / Height',
+ Weight => 'Weight',
+ Framecar => 'Chassis',
+ Bodycar => 'Bodywork',
+ Colormirror => 'Model color',
+ Interior => 'Interior',
+ Wheels => 'Wheels',
+ Registrationnumber1 => 'Front registration number',
+ Registrationnumber2 => 'Back registration number',
+ RacingCar => 'Racing car',
+ Course => 'Race',
+ Courselocation => 'Race place',
+ Courseyear => 'Race date',
+ Team => 'Team',
+ Pilots => 'Pilot(s)',
+ Copilots => 'Copilot(s)',
+ Carnumber => 'Vehicle number',
+ Pub2 => 'Advertisers',
+ Finishline => 'Finish ranking',
+ Steeringwheel => 'Position of steering wheel',
+
+
+# Catalogs fields
+
+ Catalogs => 'Catalogs',
+
+ OfficialPicture => 'Official picture',
+ Barcode => 'Barcode',
+ Referencemirror => 'Reference',
+ Year3 => 'Availability date',
+ CatalogCoverPicture => 'Cover',
+ CatalogPagePicture => 'Page',
+ Catalogyear => 'Catalog year',
+ Catalogedition => 'Catalog edition',
+ Catalogpage => 'Catalog page',
+ Catalogprice => 'Catalog price',
+ Personalref => 'Personal reference',
+ Websitem => 'Mini vehicle\'s manufacturer website',
+ Websitec => 'Actual vehicle\'s manufacturer website',
+ Websiteo => 'Useful link',
+ Comments3 => 'Comments',
+
+# Pictures fields
+
+ Pictures => 'Pictures',
+
+ OthersComments => 'General remarks',
+ OthersDetails => 'Other details',
+ Top1 => 'Above',
+ Back1 => 'Below',
+ AVG => 'Front Left',
+ AV => 'Front',
+ AVD => 'Front Right',
+ G => 'Left',
+ BOX => 'Box',
+ D => 'Right',
+ ARG => 'Back Left',
+ AR => 'Back',
+ ARD => 'Back Right',
+ Others => 'Misc',
+
+# PanelLending fields
+
+ LendingExplanation => 'Useful exchanges during temporary exhibitions',
+ PanelLending => 'Lendings (for exhibitions)',
+ Comments4 => 'Comments',
+
+# Realmodel fields
+
+ Realmodel => 'Actual vehicle',
+
+ Difference => 'Differences with miniature',
+ Front2 => 'Front',
+ Back2 => 'Back',
+ Comments5 => 'Comments',
+
+ References => 'References',
+
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/SV/GCModels/GCmusics.pm b/lib/gcstar/GCLang/SV/GCModels/GCmusics.pm new file mode 100644 index 0000000..f85eca9 --- /dev/null +++ b/lib/gcstar/GCLang/SV/GCModels/GCmusics.pm @@ -0,0 +1,66 @@ +{ + package GCLang::SV::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 => 'Musiksamling', + Items => 'Album', + NewItem => 'Nytt album', + + Unique => 'ISRC/EAN', + Title => 'Titel', + Cover => 'Omslag', + Artist => 'Artist', + Format => 'Format', + Running => 'Speltid', + Release => 'Releasedatum', + Genre => 'Genre', + Origin => 'Ursprung', + +#For tracks list + Tracks => 'Låtlista', + Number => 'Nummer', + Track => 'Titel', + Time => 'Tid', + + Composer => 'Kompositör', + Producer => 'Producent', + Playlist => 'Spellista', + Comments => 'Kommentarer', + Label => 'Beteckning', + Url => 'Hemsida', + + General => 'Allmänt', + Details => 'Detaljer', + ); +} + +1; diff --git a/lib/gcstar/GCLang/SV/GCModels/GCperiodicals.pm b/lib/gcstar/GCLang/SV/GCModels/GCperiodicals.pm new file mode 100644 index 0000000..e42b68a --- /dev/null +++ b/lib/gcstar/GCLang/SV/GCModels/GCperiodicals.pm @@ -0,0 +1,52 @@ +{ + package GCLang::SV::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 => 'Tidsskriftssamling', + Items => {0 => 'Tidsskrift', + 1 => 'Tidsskrift', + X => 'Tidsskrifter'}, + NewItem => 'Ny Tidsskrift', + + Title => 'Titel', + Cover => 'Omslag', + Periodical => 'Tidsskrift', + Number => 'Nummer', + Date => 'Datum', + Subject => 'Ämne', + Articles => 'Artiklar', + + General => 'Allmänt', + ); +} + +1; diff --git a/lib/gcstar/GCLang/SV/GCModels/GCsmartcards.pm b/lib/gcstar/GCLang/SV/GCModels/GCsmartcards.pm new file mode 100644 index 0000000..6cc88b1 --- /dev/null +++ b/lib/gcstar/GCLang/SV/GCModels/GCsmartcards.pm @@ -0,0 +1,108 @@ +{
+ package GCLang::SV::GCModels::GCsmartcards;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Tian
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Smart card collection',
+ Items => {0 => 'Smart card',
+ 1 => 'Smart card',
+ X => 'Smart cards'},
+ NewItem => 'New smart card',
+ Currency => 'Currency',
+
+ Help => 'Help for fields',
+ Help1 => 'Help',
+
+# Traduction des Champs "Main"
+
+ Main => 'The smart card',
+
+ Cover => 'Picture',
+
+ Name => 'Name',
+ Exchange => 'To be exchanged or sold',
+ Wanted => 'Wanted',
+ Rating1 => 'Global rating',
+ TheSmartCard => 'The smart card, front/back',
+
+ Country => 'Country',
+ Color => 'Color',
+ Type1 => 'Card type',
+ Type2 => 'Chip type',
+ Dimension => 'Length / Width / Thickness',
+
+ Box => 'Box',
+ Chip => 'Chip',
+ Year1 => 'Edition year',
+ Year2 => 'Validity year',
+ Condition => 'Condition',
+ Charge => 'Rechargeable card',
+ Variety => 'Variety',
+
+ Edition => 'Number of exemplars',
+ Serial => 'Serial number',
+ Theme => 'Theme',
+
+ Acquisition => 'Acquired on',
+
+ Catalog0 => 'Catalog',
+ Catalog1 => 'Phonecote / Infopuce (YT)',
+ Catalog2 => 'La Cote en Poche',
+
+ Reference0 => 'Reference',
+ Reference1 => 'Reference Phonecote / Infopuce (YT)',
+ Reference2 => 'Reference La Cote en Poche',
+ Reference3 => 'Other reference',
+
+ Quotationnew00 => 'Quotation for new card',
+ Quotationnew10 => 'Quotation Phonecote / Infopuce (YT)',
+ Quotationnew20 => 'Quotation La Cote en Poche',
+ Quotationnew30 => 'Cotation Autre',
+ Quotationold00 => 'Quotation for used card',
+ Quotationold10 => 'Quotation Phonecote / Infopuce (YT)',
+ Quotationold20 => 'Quotation La Cote en Poche',
+ Quotationold30 => 'Other quotation',
+
+ Title1 => 'Title',
+
+ Unit => 'Units / Minutes number',
+
+ Pressed => 'Impression type',
+ Location => 'Impression place',
+
+ Comments1 => 'Comments',
+
+ Others => 'Misc.',
+ Weight => 'Weight',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/SV/GCModels/GCsoftware.pm b/lib/gcstar/GCLang/SV/GCModels/GCsoftware.pm new file mode 100644 index 0000000..15ce1d0 --- /dev/null +++ b/lib/gcstar/GCLang/SV/GCModels/GCsoftware.pm @@ -0,0 +1,84 @@ +{ + package GCLang::SV::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/SV/GCModels/GCstamps.pm b/lib/gcstar/GCLang/SV/GCModels/GCstamps.pm new file mode 100644 index 0000000..b6e8348 --- /dev/null +++ b/lib/gcstar/GCLang/SV/GCModels/GCstamps.pm @@ -0,0 +1,189 @@ +{ + package GCLang::SV::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 => 'Frimärkssamling', + Items => {0 => 'Frimärken', + 1 => 'Frimärke', + X => 'Frimärken'}, + NewItem => 'Nytt frimärke', + + General => 'Allmänt', + Detail => 'Detaljerat', + Value => 'Värde', + Notes => 'Noteringar', + Views => 'Vyer', + + Name => 'Namn', + Country => 'Land', + Year => 'År', + Catalog => 'Katalog', + Number => 'Nummer', + Topic => 'Ämne', + Serie => 'Serie', + Designer => 'Designer', + Engraver => 'Graverad av', + Type => 'Typ', + Format => 'Format', + Description => 'Beskrivning', + Color => 'Färg', + Gum => 'Klister', + Paper => 'Papper', + Perforation => 'Tandning', + PerforationSize => 'Tandningens storlek', + CancellationType => 'Typ av stämpel', + Comments => 'Kommentarer', + PrintingVariety => 'Form av tryck', + IssueDate => 'Datum för utfärdande', + EndOfIssue => 'Slut för utfärdande', + Issue => 'Utfärdande', + Grade => 'Sortering', + Status => 'Status', + Adjusted => 'Anpassad', + Cancellation => 'Stämpel', + CancellationCondition => 'Stämpelns skick', + GumCondition => 'Klistrets skick', + PerforationCondition => 'Tandningens skick', + ConditionNotes => 'Notering av skick', + Error => 'Fel', + ErrorNotes => 'Notering av fel', + FaceValue => 'Ansiktsvärde', + MintValue => 'Myntvärde', + UsedValue => 'Begagnatvärde', + PurchasedDate => 'Införskaffad datum', + Quantity => 'Kvantitet', + History => 'Historia', + Picture1 => 'Bild 1', + Picture2 => 'Bild 2', + Picture3 => 'Bild 3', + + AirMail => 'Flygpost', + MilitaryStamp => 'Militärt frimärke', + Official => 'Officiell', + PostageDue => 'Postat den', + Regular => 'Vanlig', + Revenue => 'Intäkt', + SpecialDelivery => 'Special leverans', + StrikeStamp => 'Strejk frimärke', + TelegraphStamp => 'Telegraf frimärke', + WarStamp => 'Krigsfrimärke', + WarTaxStamp => 'Krigsskattefrimärke', + + Booklet => 'Häfte', + BookletPane => 'Panel för häfte', + Card => 'Kort', + Coil => 'Rulle', + Envelope => 'Kuvert', + FirstDayCover => 'Första omslag', + Sheet => 'Blad', + Single => 'Singel', + + Heliogravure => 'Heliogravyr', + Lithography => 'Litografi', + Offset => 'Utjämning', + Photogravure => 'Fotogravyr', + RecessPrinting => 'Fördjupningstryck', + Typography => 'Typografi', + + OriginalGum => 'Originalklister', + Ungummed => 'Oklistrad', + Regummed => 'Omklistrad', + + Chalky => 'Kritad', + ChinaPaper => 'Kinapapper', + Coarsed => 'Ojämn', + Glossy => 'Blank', + Granite => 'Granit', + Laid => 'Dämpad', + Manila => 'Manillapapper', + Native => 'Naturlig', + Pelure => 'Pelure', + Quadrille => 'Quadrille', + Ribbed => 'Randig', + Rice => 'Ris', + Silk => 'Silke', + Smoothed => 'Jämn', + Thick => 'Tjock', + Thin => 'Tunn', + Wove => 'Vågig', + + CoarsedPerforation => 'Ojämn tandning', + CombPerforation => 'Bruten tandning', + CompoundPerforation => 'Sammansatt tandning', + DamagedPerforation => 'Skadad tandning', + DoublePerforation => 'Dubbeltandning', + HarrowPerforation => 'Harvig tandning', + LinePerforation => 'Linjerad tandning', + NoPerforation => 'Ingen tandning', + + CancellationToOrder => 'Stämpel att beställa', + FancyCancellation => 'Dekorerad stämpel', + FirstDayCancellation => 'Första stämpeln', + NumeralCancellation => 'Numerisk stämpel', + PenMarked => 'Pennmarkerad', + RailroadCancellation => 'Tågstämpel', + SpecialCancellation => 'Specialstämpel', + + Superb => 'Super', + ExtraFine => 'Extra Fin', + VeryFine => 'Väldigt fin', + FineVeryFine => 'Fin/Väldigt fin', + Fine => 'Fin', + Average => 'Medel', + Poor => 'Dålig', + + Owned => 'Ägd', + Ordered => 'Beställd', + Sold => 'Såld', + ToSell => 'Att sälja', + Wanted => 'Vill ha', + + LightCancellation => 'Lätt stämplad', + HeavyCancellation => 'Hårt stämplad', + ModerateCancellation => 'Medelstämplad', + + MintNeverHinged => 'Mynt aldrig fäst', + MintLightHinged => 'Mynt lätt fäst', + HingedRemnant => 'Lämpligt fäst', + HeavilyHinged => 'Väldigt fäst', + LargePartOriginalGum => 'Stor del original klister', + SmallPartOriginalGum => 'Liten del original klister', + NoGum => 'Inget klister', + + Perfect => 'Perfekt', + VeryNice => 'Väldigt bra', + Nice => 'Bra', + Incomplete => 'Ej komplett', + ); +} + +1; diff --git a/lib/gcstar/GCLang/SV/GCModels/GCwines.pm b/lib/gcstar/GCLang/SV/GCModels/GCwines.pm new file mode 100644 index 0000000..96dfae3 --- /dev/null +++ b/lib/gcstar/GCLang/SV/GCModels/GCwines.pm @@ -0,0 +1,63 @@ +{ + package GCLang::SV::GCModels::GCwines; + + use utf8; + +# Copyright 2007 Yves Martin + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Wines collection', + Items => 'Wines', + NewItem => 'New wine', + + Name => 'Name', + Designation => 'Designation', + Vintage => 'Vintage', + Vineyard => 'Vineyard', + Type => 'Type', + Grapes => 'Grapes', + Soil => 'Soil', + Producer => 'Producer', + Country => 'Country', + Volume => 'Volume (ml)', + Alcohol => 'Alcohol (%)', + Medal => 'Medal/Honour', + + Storage => 'Storage', + Location => 'Location', + ShelfIndex => 'Index', + Quantity => 'Quantity', + Acquisition => 'Acquisition', + PurchaseDate => 'Purchase date', + PurchasePrice => 'Purchase price', + Gift => 'Gift', + BottleLabel => 'Bottle label', + Website => 'Reference on the web', + + Tasted => 'Tasted', + Comments => 'Comments', + Serving => 'Serving', + TastingField => 'Testing notes', + + General => 'General', + Details => 'Details', + Tasting => 'Tasting', + + TastedNo => 'Non tasted', + TastedYes => 'Tasted', + + FilterRange => 'Range', + FilterTastedNo => '_Not yet tasted', + FilterTastedYes => 'Already _tasted', + FilterRatingSelect => 'Rating at _least...' + + ); +} + +1; |