summaryrefslogtreecommitdiff
path: root/lib/gcstar/GCLang/NL/GCModels/GCcomics.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gcstar/GCLang/NL/GCModels/GCcomics.pm')
-rw-r--r--lib/gcstar/GCLang/NL/GCModels/GCcomics.pm73
1 files changed, 73 insertions, 0 deletions
diff --git a/lib/gcstar/GCLang/NL/GCModels/GCcomics.pm b/lib/gcstar/GCLang/NL/GCModels/GCcomics.pm
new file mode 100644
index 0000000..e3105cc
--- /dev/null
+++ b/lib/gcstar/GCLang/NL/GCModels/GCcomics.pm
@@ -0,0 +1,73 @@
+{
+ package GCLang::NL::GCModels::GCcomics;
+
+ use utf8;
+###################################################
+#
+# Auteursrecht 2005-2009 Tian
+#
+# Dit bestand is onderdeel van GCstar.
+#
+# GCstar is gratis software; je kan het verspreiden en/ of wijzigen
+# onder de voorwaarden van de GNU General Public License zoals gepubliceerd door
+# de Free Software Foundation; ofwel versie 2 van de licentie, of
+# (op uw keuze) een latere versie.
+#
+# GCstar wordt verspreid in de hoop dat het nuttig zal zijn
+# maar ZONDER ENIGE GARANTIE, zelfs zonder de impliciete garantie van
+# Verkoopbaarheid of geschiktheid voor een bepaald doel. Zie de
+# GNU General Public License voor meer details.
+#
+# Je zou een kopie van de GNU General Public License moeten ontvangen hebben
+# samen met GCstar; zo niet, schrijf naar de Free Software
+# Foundation, Inc, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Collectie strips',
+ Items => {0 => 'Strips',
+ 1 => 'Strip',
+ X => 'Strips'},
+ NewItem => 'Nieuwe strip',
+
+
+ Id => 'Id',
+ Name => 'Naam',
+ Series => 'Series',
+ Volume => 'Deel',
+ Title => 'Titel',
+ Writer => 'Schrijver',
+ Illustrator => 'Illustrator',
+ Colourist => 'Colorist',
+ Publisher => 'Uitgever',
+ Synopsis => 'Synopsis',
+ Collection => 'Collectie',
+ PublishDate => 'Publicatiedatum',
+ PrintingDate => 'Afdrukdatum',
+ ISBN => 'ISBN',
+ Type => 'Type',
+ Category => 'Categorie',
+ Format => 'Formaat',
+ NumberBoards => 'Aantal',
+ Signing => 'Ondertekening',
+ Cost => 'Kost',
+ Rating => 'Waardering',
+ Comment => 'Opmerkingen',
+ Url => 'Webpagina',
+
+ FilterRatingSelect => 'Minimum waardering...',
+
+ Main => 'Belangrijkste punten',
+ General => 'Algemeen',
+ Details => 'Details',
+ );
+}
+
+1;