summaryrefslogtreecommitdiff
path: root/lib/gcstar/GCLang/DE
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gcstar/GCLang/DE')
-rw-r--r--lib/gcstar/GCLang/DE/GCExport/GCExportCSV.pm40
-rw-r--r--lib/gcstar/GCLang/DE/GCExport/GCExportExternal.pm38
-rw-r--r--lib/gcstar/GCLang/DE/GCExport/GCExportHTML.pm64
-rw-r--r--lib/gcstar/GCLang/DE/GCExport/GCExportPDB.pm38
-rw-r--r--lib/gcstar/GCLang/DE/GCExport/GCExportSQL.pm40
-rw-r--r--lib/gcstar/GCLang/DE/GCExport/GCExportTarGz.pm37
-rw-r--r--lib/gcstar/GCLang/DE/GCExport/GCExportXML.pm41
-rw-r--r--lib/gcstar/GCLang/DE/GCImport/GCImportAlexandria.pm39
-rw-r--r--lib/gcstar/GCLang/DE/GCImport/GCImportCSV.pm42
-rw-r--r--lib/gcstar/GCLang/DE/GCImport/GCImportFolder.pm68
-rw-r--r--lib/gcstar/GCLang/DE/GCImport/GCImportGCstar.pm37
-rw-r--r--lib/gcstar/GCLang/DE/GCImport/GCImportList.pm42
-rw-r--r--lib/gcstar/GCLang/DE/GCImport/GCImportScanner.pm50
-rw-r--r--lib/gcstar/GCLang/DE/GCImport/GCImportTellico.pm37
-rw-r--r--lib/gcstar/GCLang/DE/GCModels/GCTVepisodes.pm50
-rw-r--r--lib/gcstar/GCLang/DE/GCModels/GCTVseries.pm53
-rw-r--r--lib/gcstar/GCLang/DE/GCModels/GCboardgames.pm87
-rw-r--r--lib/gcstar/GCLang/DE/GCModels/GCbooks.pm71
-rw-r--r--lib/gcstar/GCLang/DE/GCModels/GCcoins.pm108
-rw-r--r--lib/gcstar/GCLang/DE/GCModels/GCcomics.pm74
-rw-r--r--lib/gcstar/GCLang/DE/GCModels/GCfilms.pm94
-rw-r--r--lib/gcstar/GCLang/DE/GCModels/GCgames.pm82
-rw-r--r--lib/gcstar/GCLang/DE/GCModels/GCgeneric.pm42
-rw-r--r--lib/gcstar/GCLang/DE/GCModels/GCminicars.pm179
-rw-r--r--lib/gcstar/GCLang/DE/GCModels/GCmusics.pm69
-rw-r--r--lib/gcstar/GCLang/DE/GCModels/GCperiodicals.pm56
-rw-r--r--lib/gcstar/GCLang/DE/GCModels/GCsmartcards.pm108
-rw-r--r--lib/gcstar/GCLang/DE/GCModels/GCsoftware.pm82
-rw-r--r--lib/gcstar/GCLang/DE/GCModels/GCstamps.pm189
-rw-r--r--lib/gcstar/GCLang/DE/GCModels/GCwines.pm65
-rw-r--r--lib/gcstar/GCLang/DE/GCstar.pm686
31 files changed, 2708 insertions, 0 deletions
diff --git a/lib/gcstar/GCLang/DE/GCExport/GCExportCSV.pm b/lib/gcstar/GCLang/DE/GCExport/GCExportCSV.pm
new file mode 100644
index 0000000..81ff935
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCExport/GCExportCSV.pm
@@ -0,0 +1,40 @@
+{
+ package GCLang::DE::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' => 'Feldnamen im Header exportieren',
+ 'Separator' => 'Feldtrenner',
+ 'Replacement' => 'Feldtrenner ersetzen durch',
+ 'Charset' => 'Zeichenkodierung',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCExport/GCExportExternal.pm b/lib/gcstar/GCLang/DE/GCExport/GCExportExternal.pm
new file mode 100644
index 0000000..eca0d20
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCExport/GCExportExternal.pm
@@ -0,0 +1,38 @@
+{
+ package GCLang::DE::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' => 'externes Medium',
+ 'ZipAll' => 'alles in eine Zip-Datei packen (.gcz)',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCExport/GCExportHTML.pm b/lib/gcstar/GCLang/DE/GCExport/GCExportHTML.pm
new file mode 100644
index 0000000..b03268b
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCExport/GCExportHTML.pm
@@ -0,0 +1,64 @@
+{
+ package GCLang::DE::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' => 'Ungültige Templatedatei',
+ 'UseFile' => 'Nutze angegebene Datei',
+ 'TemplateExternalFile' => 'Templatedatei',
+ 'WithJS' => 'Javascript verwenden',
+ 'FileTemplate' => 'Template:',
+ 'Preview' => 'Vorschau',
+ 'NoPreview' => 'Keine Vorschau verfügbar',
+ 'Title' => 'Seitentitel',
+ 'InfoFile' => 'Liste erstellt: ',
+ 'InfoDir' => 'Bilder gespeichert unter: ',
+ 'HeightImg' => 'Höhe der zu exportierenden Bilder (in Pixeln): ',
+ 'OpenFileInBrowser' => 'Erzeugte Datei im Webbrowser öffnen',
+ 'Note' => 'Liste erstellt mit <a href="http://www.gcstar.org/">GCstar</a>',
+ 'InputTitle' => 'Suchtext eingeben',
+ 'SearchType1' => 'Nur Titel',
+ 'SearchType2' => 'Alle Informationen',
+ 'SearchButton' => 'Suche',
+ 'SearchTitle' => 'Nur Elemente anzeigen die diesen Kriterien entsprechen',
+ 'AllButton' => 'Alle',
+ 'AllTitle' => 'Alle Elemente anzeigen',
+ 'Expand' => 'Alle maximieren',
+ 'ExpandTitle' => 'Alle Informationen anzeigen',
+ 'Collapse' => 'Alle minimieren',
+ 'CollapseTitle' => 'Nur Titel anzeigen',
+ 'Borrowed' => 'Ausgeliehen von: ',
+ 'NotBorrowed' => 'Verfügbar',
+ 'Top' => 'Oben',
+ 'Bottom' => 'Unten',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCExport/GCExportPDB.pm b/lib/gcstar/GCLang/DE/GCExport/GCExportPDB.pm
new file mode 100644
index 0000000..e2da12e
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCExport/GCExportPDB.pm
@@ -0,0 +1,38 @@
+{
+ package GCLang::DE::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' => 'Databankname',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCExport/GCExportSQL.pm b/lib/gcstar/GCLang/DE/GCExport/GCExportSQL.pm
new file mode 100644
index 0000000..ae45cae
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCExport/GCExportSQL.pm
@@ -0,0 +1,40 @@
+{
+ package GCLang::DE::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' => 'Exportiere mit DROP TABLE Anweisung',
+ 'WithCreate' => 'Exportiere mit CREATE TABLE Anweisung',
+ 'TableName' => 'Tabellenname',
+ 'InfoFile' => 'SQL Datei: ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCExport/GCExportTarGz.pm b/lib/gcstar/GCLang/DE/GCExport/GCExportTarGz.pm
new file mode 100644
index 0000000..1bef88a
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCExport/GCExportTarGz.pm
@@ -0,0 +1,37 @@
+{
+ package GCLang::DE::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' => 'Archiv erstellt: ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCExport/GCExportXML.pm b/lib/gcstar/GCLang/DE/GCExport/GCExportXML.pm
new file mode 100644
index 0000000..2b15bb7
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCExport/GCExportXML.pm
@@ -0,0 +1,41 @@
+{
+ package GCLang::DE::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' => 'Dateivorlage',
+ 'ModelText' => 'Textvorlage',
+ 'Models' => 'Zu verwendende Vorlage',
+ 'UseFile' => 'Datei verwenden',
+ 'UseModel' => 'Textvorlage verwenden',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCImport/GCImportAlexandria.pm b/lib/gcstar/GCLang/DE/GCImport/GCImportAlexandria.pm
new file mode 100644
index 0000000..d6bf1f7
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCImport/GCImportAlexandria.pm
@@ -0,0 +1,39 @@
+{
+ package GCLang::DE::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' => 'Wo soll gesucht werden',
+ 'Default' => 'Vorgabeverzeichnis von Alexandria',
+ 'Specified' => 'Verzeichnis wie unten angegeben',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCImport/GCImportCSV.pm b/lib/gcstar/GCLang/DE/GCImport/GCImportCSV.pm
new file mode 100644
index 0000000..4d0b19c
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCImport/GCImportCSV.pm
@@ -0,0 +1,42 @@
+{
+ package GCLang::DE::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' => 'Zeichenkodierung',
+ 'Header' => 'Erste Zeile ignorieren',
+ 'Separator' => 'Feldtrenner',
+ 'Plugin' => 'Zu verwendende Seite',
+ 'UseFirst' => 'Bei mehreren Ergebnissen erstes verwenden',
+ 'SearchField' => 'verwende dieses Feld für die Suche',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCImport/GCImportFolder.pm b/lib/gcstar/GCLang/DE/GCImport/GCImportFolder.pm
new file mode 100644
index 0000000..6ca92e0
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCImport/GCImportFolder.pm
@@ -0,0 +1,68 @@
+{
+ package GCLang::DE::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' => 'Ordner',
+ 'Recursive' => 'Unterordner durchsuchen',
+ 'Suffixes' => 'Suffix oder Dateiendung der Dateien',
+ 'SuffixesTooltip' => 'Eine kommaseparierte Liste von in Frage kommenden Suffixen oder Dateiendungen',
+ 'Remove' => 'Von den Namen zu entfernen',
+ 'RemoveTooltip' => 'Eine kommaseparierte Liste on Wörtern, die aus den Dateinamen entfernt werden sollen um die Namen zu bestimmen',
+ 'Ask'=> 'Nachfragen',
+ 'AskEnd'=> 'Nachfragen nach dem Sammeln aller Informationen',
+ 'AddWithoutInfo'=> 'Ohne Informationen hinzufügen',
+ 'DontAdd'=> 'Nicht hinzufügen',
+ 'TakeFirst' => 'Erstes verwenden',
+ 'MultipleResult'=> 'Mehrere Ergebnisse',
+ 'MultipleResultTooltip'=> 'Vorgehensweise wenn das Plugin mehr als ein Ergebnis liefert',
+ 'RemoveWholeWord' => 'Nur ganze Wörter entfernen',
+ 'NoResult'=> 'Keine Ergebnisse',
+ 'NoResultTooltip'=> 'Vorgehensweise wenn das Plugin kein Ergebnis liefert',
+ 'RemoveTooltipWholeWord' => 'Wörter entfernen wenn sie als gesamtes Wort erscheinen',
+ 'RemoveRegularExpr' => 'Reguläre Ausdrücke',
+ 'RemoveTooltipRegularExpr' => 'Zähle \'To be removed from names\' als regulären Perl Ausdruck',
+ 'SkipFileAlreadyInCollection' => 'Nur unbekannte Dateien hinzufügen',
+ 'SkipFileAlreadyInCollectionTooltip' => 'Nur Dateien hinzufügen, die nicht Teil der Sammlung sind',
+ 'SkipFileNo' => 'Nein',
+ 'SkipFileFullPath' => 'basierend auf kompletten Pfad',
+ 'SkipFileFileName' => 'basierend auf komplettem Pfad',
+ 'SkipFileFileNameAndUpdate' => 'basierend auf komplettem Pfad (neuen Pfad für bewegte Dateien eintragen)',
+ 'InfoFromFileNameRegExp' => 'Verarbeite Dateinamen mit diesem regulären Ausdruck',
+ 'InfoFromFileNameRegExpTooltip' => 'Nachfolgende Informationen können für die Verarbeitugn verwendet werden (nach dem Entfernen der Dateiendung).\nLeer lassen, wenn nicht benötigt wird.\nBekannte Felder: \n$T:Titel, $A:Alphabetisierte Titel, $Y:Veröffentlichungsdatum, $S:Jahrgang, $E:Episode, $N:Alphabetisierter Serienname, $x:Nummer der Folge, $y: Anzahl Gesamtfolgen',
+
+ );
+
+ # As this plugin shares some values with ImportList, it adds them from it
+ importTranslation('List');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCImport/GCImportGCstar.pm b/lib/gcstar/GCLang/DE/GCImport/GCImportGCstar.pm
new file mode 100644
index 0000000..e31bb99
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCImport/GCImportGCstar.pm
@@ -0,0 +1,37 @@
+{
+ package GCLang::DE::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' => 'Kopiere Bilder',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCImport/GCImportList.pm b/lib/gcstar/GCLang/DE/GCImport/GCImportList.pm
new file mode 100644
index 0000000..6f5be27
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCImport/GCImportList.pm
@@ -0,0 +1,42 @@
+{
+ package GCLang::DE::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' => 'Titelliste',
+ 'Plugin' => 'Zu verwendende Seite',
+ 'UseFirst' => 'Bei mehreren Ergebnissen erstes verwenden',
+ 'CommentAuto' => 'Element automatisch importiert.',
+ 'CommentSite' => 'Webseite: ',
+ 'CommentTitle' => 'Titel: ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCImport/GCImportScanner.pm b/lib/gcstar/GCLang/DE/GCImport/GCImportScanner.pm
new file mode 100644
index 0000000..8610ac6
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCImport/GCImportScanner.pm
@@ -0,0 +1,50 @@
+{
+ package GCLang::DE::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' => 'Barcodescanner',
+ 'Type' => 'Art des Scanners',
+ 'Local' => 'Lokal (Tastaturersatz)',
+ 'Network' => 'Netzwerk (z.B.: GCstar Scanner for Android)',
+ 'Port' => 'zu nutzender Port',
+ 'Plugin' => 'zu nutzende Website',
+ 'UseFirst' => 'Verwende erstes von mehreren Ergebnissen',
+ 'Waiting' => 'Warte auf Barcode',
+ 'EAN' => 'Barcode',
+ 'ScanPrompt' => 'Element scannen oder Vorgang beenden',
+ 'ScanOtherPrompt' => 'Ein anderes Element scannen oder Vorgang beenden',
+ 'Previous' => '"%s" wird hinzugefügt.',
+ 'NothingFound' => 'Für "%s" wurde nichts gefunden. Ein leeres Element wird hinzugefügt.',
+ 'Terminate' => 'Vorgang beenden',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCImport/GCImportTellico.pm b/lib/gcstar/GCLang/DE/GCImport/GCImportTellico.pm
new file mode 100644
index 0000000..1a3e773
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCImport/GCImportTellico.pm
@@ -0,0 +1,37 @@
+{
+ package GCLang::DE::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' => 'Datei ist keine Tellico Video-Sammlung',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCModels/GCTVepisodes.pm b/lib/gcstar/GCLang/DE/GCModels/GCTVepisodes.pm
new file mode 100644
index 0000000..7650cbb
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCModels/GCTVepisodes.pm
@@ -0,0 +1,50 @@
+{
+ package GCLang::DE::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 => 'Episodensammlung von Fernsehserien',
+ Items => {
+ 0 => 'Folge',
+ 1 => 'Folge',
+ X => 'Folgen'},
+ NewItem => 'Neue Folge',
+ NewSeries => 'Neue Serie',
+ Episode => 'Folge',
+ Writer => 'Drehbuch',
+ );
+ # Both of them are required as importTranslation doesn't recurse
+ importTranslation('films');
+ importTranslation('TVseries');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCModels/GCTVseries.pm b/lib/gcstar/GCLang/DE/GCModels/GCTVseries.pm
new file mode 100644
index 0000000..65f5848
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCModels/GCTVseries.pm
@@ -0,0 +1,53 @@
+{
+ package GCLang::DE::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 => 'Fernsehseriensammlung',
+ Items => {
+ 0 => 'Serie',
+ 1 => 'Serie',
+ X => 'Serien'},
+ NewItem => 'Neue Serie',
+ Name => 'Name',
+ Season => 'Staffel',
+ Part => 'Teil',
+ Episodes => 'Folge',
+ FirstAired => 'Erstausstrahlung',
+ Time => 'Länge',
+ Producer => 'Produzent',
+ Music => 'Musik',
+ );
+ importTranslation('Films');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCModels/GCboardgames.pm b/lib/gcstar/GCLang/DE/GCModels/GCboardgames.pm
new file mode 100644
index 0000000..33a094a
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCModels/GCboardgames.pm
@@ -0,0 +1,87 @@
+{
+ package GCLang::DE::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 => 'Brettspielsammlung',
+ Items => {0 => 'Spiel',
+ 1 => 'Spiel',
+ X => 'Spiele'},
+ NewItem => 'Neues Spiel',
+
+ Id => 'Id',
+ Name => 'Name',
+ Original => 'Originalname',
+ Box => 'Verpackungsbild',
+ DesignedBy => 'Entwickelt von',
+ PublishedBy => 'Erschienen bei',
+ Players => 'Anzahl der Spieler',
+ PlayingTime => 'Spielzeit',
+ SuggestedAge => 'Empfohlenes Alter',
+ Released => 'Erscheinungsdatum',
+ Description => 'Beschreibung',
+ Category => 'Kategorie',
+ Mechanics => 'Spielaktionen',
+ ExpandedBy => 'Erweitert durch',
+ ExpansionFor => 'Erweiterung für',
+ GameFamily => 'Spieltyp',
+ IllustratedBy => 'Illustriert von',
+ Url => 'Webseite',
+ TimesPlayed => 'Wie oft gespielt',
+ CompleteContents => 'Inhalt vollständig',
+ Copies => 'Anzahl der Spiele',
+ Condition => 'Konditionen',
+ Photos => 'Fotos',
+ Photo1 => 'Erstes Bild',
+ Photo2 => 'Zweites Bild',
+ Photo3 => 'Drittes Bild',
+ Photo4 => 'Viertes Bild',
+ Comments => 'Kommentare',
+
+ Perfect => 'Perfekt',
+ Good => 'Gut',
+ Average => 'Durchschnitt',
+ Poor => 'Schlecht',
+
+ CompleteYes => 'Inhalt vollständig',
+ CompleteNo => 'Fehlende Teile',
+
+ General => 'Allgemein',
+ Details => 'Details',
+ Personal => 'Persönlich',
+ Information => 'Information',
+
+ FilterRatingSelect => 'Bewertung _mindestens...',
+ );
+}
+
+1;
+
diff --git a/lib/gcstar/GCLang/DE/GCModels/GCbooks.pm b/lib/gcstar/GCLang/DE/GCModels/GCbooks.pm
new file mode 100644
index 0000000..96aac2f
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCModels/GCbooks.pm
@@ -0,0 +1,71 @@
+{
+ package GCLang::DE::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 => 'Büchersammlung',
+ Items => {0 => 'Buch',
+ 1 => 'Buch',
+ X => 'Bücher',
+ },
+ NewItem => 'Neues Buch',
+
+ Isbn => 'ISBN',
+ Title => 'Titel',
+ Cover => 'Umschlag',
+ Authors => 'Autoren',
+ Publisher => 'Verlag',
+ Publication => 'Erscheinungsdatum',
+ Language => 'Sprache',
+ Genre => 'Genre',
+ Serie => 'Sammlung',
+ Rank => 'Teil/Folge',
+ Bookdescription => 'Beschreibung',
+ Pages => 'Seiten',
+ Read => 'Gelesen',
+ Acquisition => 'Anschaffungsdatum',
+ Edition => 'Auflage',
+ Format => 'Format',
+ Comments => 'Kommentare',
+ Url => 'Webseite',
+ Translator => 'Übersetzung',
+ Artist => 'Künstler',
+ DigitalFile => 'Digitalversion',
+
+ General => 'Allgemein',
+ Details => 'Details',
+
+ ReadNo => 'Nicht gelesen',
+ ReadYes => 'Gelesen',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCModels/GCcoins.pm b/lib/gcstar/GCLang/DE/GCModels/GCcoins.pm
new file mode 100644
index 0000000..5f858ba
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCModels/GCcoins.pm
@@ -0,0 +1,108 @@
+{
+ package GCLang::DE::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 => 'Numismatische Sammlung',
+ Items => {0 => 'Münze',
+ 1 => 'Münze',
+ X => 'Münzen',
+ },
+ NewItem => 'Neue Münze',
+
+ Name => 'Name',
+ Country => 'Land',
+ Year => 'Jahr',
+ Currency => 'Währung',
+ Value => 'Wert',
+ Picture => 'Bild',
+ Diameter => 'Durchmesser',
+ Metal => 'Metall',
+ Front => 'Kopf',
+ Back => 'Zahl',
+ Edge => 'Rand',
+ Edge1 => 'Rand 1',
+ Edge2 => 'Rand 2',
+ Edge3 => 'Rand 3',
+ Edge4 => 'Rand 4',
+ Head => 'Kopf',
+ Tail => 'Zahl',
+ Comments => 'Kommentar',
+ Location => 'Ort',
+ History => 'Geschichte',
+ Website => 'Website',
+ Estimate => 'Schätzwert',
+ References => 'Verweise',
+ Type => 'Typ',
+ Coin => 'Münze',
+ Banknote => 'Banknote',
+
+ Main => 'Haupt',
+ Description => 'Beschreibung',
+ Other => 'andere Informationen',
+ Pictures => 'Bilder',
+
+ Condition => 'Erhaltungsgrad nach 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/DE/GCModels/GCcomics.pm b/lib/gcstar/GCLang/DE/GCModels/GCcomics.pm
new file mode 100644
index 0000000..97144f8
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCModels/GCcomics.pm
@@ -0,0 +1,74 @@
+{
+ package GCLang::DE::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 => 'Comicheftsammlung',
+ Items => {0 => 'Comicheft',
+ 1 => 'Comicheft',
+ X => 'Comichefte'
+ },
+ NewItem => 'Neues Comicheft',
+
+
+ Id => 'Id',
+ Name => 'Name',
+ Series => 'Serie',
+ Volume => 'Ausgabe',
+ Title => 'Titel',
+ Writer => 'Autor',
+ Illustrator => 'Illustrator',
+ Colourist => 'Kolorist',
+ Publisher => 'Herausgeber',
+ Synopsis => 'Zusammenfassung',
+ Collection => 'Sammlung',
+ PublishDate => 'Erscheinungsdatum',
+ PrintingDate => 'Druckdatum',
+ ISBN => 'ISBN',
+ Type => 'Typ',
+ Category => 'Kategorie',
+ Format => 'Format',
+ NumberBoards => 'Anzahl der Boards',
+ Signing => 'signiert',
+ Cost => 'Preis',
+ Rating => 'Bewertung',
+ Comment => 'Bemerkungen',
+ Url => 'Internetseite',
+
+ FilterRatingSelect => 'Bewertung _mindestens...',
+
+ Main => 'Hauptelemente',
+ General => 'Allgemein',
+ Details => 'Details',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCModels/GCfilms.pm b/lib/gcstar/GCLang/DE/GCModels/GCfilms.pm
new file mode 100644
index 0000000..fdcb003
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCModels/GCfilms.pm
@@ -0,0 +1,94 @@
+{
+ package GCLang::DE::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 => 'Filmsammlung',
+ Items => {0 => 'Film',
+ 1 => 'Film',
+ X => 'Filme',
+ },
+
+ NewItem => 'Neuer Film',
+
+ Id => 'Kennung',
+ Title => 'Titel',
+ Date => 'Datum',
+ Time => 'Länge',
+ Director => 'Regisseur',
+ Country => 'Land',
+ MinimumAge => 'Altersfreigabe',
+ Genre => 'Genre',
+ Image => 'Bild',
+ Original => 'Originaltitel',
+ Actors => 'Besetzung',
+ Actor => 'Schauspieler/in',
+ Role => 'Rolle',
+ Comment => 'Kommentar',
+ Synopsis => 'Beschreibung',
+ Seen => 'gesehen',
+ Number => '# der Medien',
+ Format => 'Format',
+ Region => 'Region',
+ Identifier => 'Identifier',
+ Url => 'Internetseite',
+ Audio => 'Audio',
+ Video => 'Videoformat',
+ Trailer => 'Videodatei',
+ Serie => 'Serie',
+ Rank => 'Teil/Folge',
+ Subtitles => 'Untertitel',
+
+ SeenYes => 'Film bereits gesehen',
+ SeenNo => 'Film noch nicht gesehen',
+
+ AgeUnrated => 'Unbewertet',
+ AgeAll => 'Ohne Altersbeschränkung',
+ AgeParent => '6',
+
+ Main => 'Wichtigste Felder',
+ General => 'Allgemein',
+ Details => 'Details',
+
+ Information => 'Informationen',
+ Languages => 'Sprachen',
+ Encoding => 'Kodierung',
+
+ FilterAudienceAge => 'Altersfreigabe',
+ FilterSeenNo => 'Noch _nicht gesehen',
+ FilterSeenYes => 'Bereits _gesehen',
+ FilterRatingSelect => 'Bewertung _mindestens...',
+
+ ExtractSize => 'Größe',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCModels/GCgames.pm b/lib/gcstar/GCLang/DE/GCModels/GCgames.pm
new file mode 100644
index 0000000..4c0c028
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCModels/GCgames.pm
@@ -0,0 +1,82 @@
+{
+ package GCLang::DE::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 => 'Computerspiele Sammlung',
+ Items => {0 => 'Spiel',
+ 1 => 'Spiel',
+ X => 'Spiele'},
+ NewItem => 'Neues Spiel',
+
+ Id => 'Id',
+ Ean => 'EAN',
+ Name => 'Name',
+ Platform => 'Plattform',
+ Players => 'Anzahl der Spieler',
+ Released => 'Erscheinungsdatum',
+ Editor => 'Herausgeber',
+ Developer => 'Entwickler',
+ Genre => 'Genre',
+ Box => 'Bild der Verpackung',
+ Case => 'Originalverpackung',
+ Manual => 'Bedienungsanleitung',
+ Completion => 'Durchgespielt (%)',
+ Executable => 'Startdatei',
+ Description => 'Beschreibung',
+ Codes => 'Cheats',
+ Code => 'Cheatcode',
+ Effect => 'Effekt',
+ Secrets => 'Geheimnisse',
+ Screenshots => 'Bildschirm Foto',
+ Screenshot1 => 'Erstes Bildschirm Foto',
+ Screenshot2 => 'Zweites Bildschirm Foto',
+ Comments => 'Kommentar',
+ Url => 'Internetseite',
+ Unlockables => 'Lösungen',
+ Unlockable => 'Ziel',
+ Howto => 'Lösungsweg',
+ Exclusive => 'Exclusive',
+ Resolutions => 'Bildschirmauflösungen',
+ InstallationSize => 'Größe',
+ Region => 'Region',
+ SerialNumber => 'Seriennummer',
+
+ General => 'Allgemein',
+ Details => 'Details',
+ Tips => 'Tipps',
+ Information => 'Information',
+
+ FilterRatingSelect => 'Bewertung _mindestens...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCModels/GCgeneric.pm b/lib/gcstar/GCLang/DE/GCModels/GCgeneric.pm
new file mode 100644
index 0000000..5512302
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCModels/GCgeneric.pm
@@ -0,0 +1,42 @@
+{
+ package GCLang::DE::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 => 'Eintrag',
+ 1 => 'Eintrag',
+ X => 'Einträge'
+ },
+ NewItem => 'Neuer Eintrag',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCModels/GCminicars.pm b/lib/gcstar/GCLang/DE/GCModels/GCminicars.pm
new file mode 100644
index 0000000..d14de56
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCModels/GCminicars.pm
@@ -0,0 +1,179 @@
+{
+ package GCLang::DE::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 => 'Miniaturfahrzeugsammlung',
+ Items => {0 => 'Fahrzeug',
+ 1 => 'Fahrzeug',
+ X => 'Fahrzeuge'},
+ NewItem => 'Neues Fahrzeug',
+ Currency => 'Währung',
+
+# Main fields
+
+ Main => 'Hauptinformation',
+
+ Name => 'Name',
+ Exchange => 'Zu verkaufen oder zu tauschen',
+ Wanted => 'gesucht',
+ Rating1 => 'Hauptbewertung',
+ Picture1 => 'Hauptbild',
+ Scale => 'Maßstab',
+ Manufacturer => 'Hersteller',
+ Constructor => 'Konstrukteur',
+ Type1 => 'Typ',
+ Modele => 'Modell',
+ Version => 'Version',
+ Color => 'Farbe des Modells',
+ Pub => 'Werbung',
+ Year => 'Jahr',
+ Reference => 'Verweise',
+ Kit => 'Als Bausatz',
+ Transformation => 'Persönliche Informationen',
+ Comments1 => 'Bemerkungen',
+
+# Details fields
+
+ Details => 'Details',
+
+ MiscCharacteristics => 'verschiedene Eigenschaften',
+ Material => 'Material',
+ Molding => 'Guss',
+ Condition => 'Zustand',
+ Edition => 'Ausgabe',
+ Collectiontype => 'Sammlungsname',
+ Serial => 'Serie',
+ Serialnumber => 'Seriennummer',
+ Designed => 'Entwurfsdatum',
+ Madein => 'Herstellungsland',
+ Box1 => 'Art der Verpackung',
+ Box2 => 'Verpackungsbeschreibung',
+ Containbox => 'Verpackungsinhalt',
+ Rating2 => 'Realitätsnähe',
+ Rating3 => 'Ausführung',
+ Acquisition => 'Kaufdatum',
+ Location => 'wo gekauft',
+ Buyprice => 'Kaufpreis',
+ Estimate => 'Schätzwert',
+ Comments2 => 'Bemerkungen',
+ Decorationset => 'Dekorationsausführung',
+ Characters => 'Figuren',
+ CarFromFilm => 'Filmauto',
+ Filmcar => 'Film mit diesem Auto',
+ Filmpart => 'Serienfolge',
+ Parts => 'Anzahl der Teile',
+ VehiculeDetails => 'technische Daten',
+ Detailsparts => 'besondere Einzelheiten',
+ Detailsdecorations => 'Art der Dekoration',
+ Decorations => 'Anzahl der Dokorationen',
+ Lwh => 'Länge / Breite / Höhe',
+ Weight => 'Gewicht',
+ Framecar => 'Fahrgestell',
+ Bodycar => 'Karosserie',
+ Colormirror => 'Farbe des Modells',
+ Interior => 'Innenausstattung',
+ Wheels => 'Räder',
+ Registrationnumber1 => 'Nummernschild vorne',
+ Registrationnumber2 => 'Nummernschild hinten',
+ RacingCar => 'Rennwagen',
+ Course => 'Rennen',
+ Courselocation => 'Rennplatzierung',
+ Courseyear => 'Renndatum',
+ Team => 'Team',
+ Pilots => 'Fahrer(innen)',
+ Copilots => 'Beifahrer(innen)',
+ Carnumber => 'Fahrzeugnummer',
+ Pub2 => 'Werbepartner',
+ Finishline => 'Platzierung',
+ Steeringwheel => 'Position des Lenkrades',
+
+
+# Catalogs fields
+
+ Catalogs => 'Katalog',
+
+ OfficialPicture => 'Herstellerfoto',
+ Barcode => 'Strichcode',
+ Referencemirror => 'Verweise',
+ Year3 => 'Verfügbarkeitsdatum',
+ CatalogCoverPicture => 'Katalogcover',
+ CatalogPagePicture => 'Katalogseite',
+ Catalogyear => 'Katalogsjahr',
+ Catalogedition => 'Katalogsausgabe',
+ Catalogpage => 'Katalogseite',
+ Catalogprice => 'Katalogpreis',
+ Personalref => 'Persönlicher Bezug',
+ Websitem => 'Website vom Herstellers des Miniaturfahrzeuges',
+ Websitec => 'Website vom Hersteller des Originalfahrzeuges',
+ Websiteo => 'Nützlicher Link',
+ Comments3 => 'Kommentare',
+
+# Pictures fields
+
+ Pictures => 'Bilder',
+
+ OthersComments => 'Generelle Anmerkungen',
+ OthersDetails => 'andere Details',
+ Top1 => 'oben',
+ Back1 => 'unten',
+ AVG => 'vorne links',
+ AV => 'vorne',
+ AVD => 'vorne rechts',
+ G => 'links',
+ BOX => 'Verpackung',
+ D => 'rechts',
+ ARG => 'hinten links',
+ AR => 'hinten',
+ ARD => 'hinten rechts',
+ Others => 'andere',
+
+# PanelLending fields
+
+ LendingExplanation => 'Leihgaben für Ausstellungen',
+ PanelLending => 'Ausleihen',
+ Comments4 => 'Kommentare',
+
+# Realmodel fields
+
+ Realmodel => 'Modell',
+
+ Difference => 'Unterschiede zwischen Modell und Original',
+ Front2 => 'vorne',
+ Back2 => 'hinten',
+ Comments5 => 'Kommentare',
+
+ References => 'Verweise',
+
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCModels/GCmusics.pm b/lib/gcstar/GCLang/DE/GCModels/GCmusics.pm
new file mode 100644
index 0000000..3605487
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCModels/GCmusics.pm
@@ -0,0 +1,69 @@
+{
+ package GCLang::DE::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 => 'Musiksammlung',
+ Items => {0 => 'Album',
+ 1 => 'Album',
+ X => 'Alben',
+ },
+ NewItem => 'Neues Album',
+
+ Unique => 'ISRC/EAN',
+ Title => 'Titel',
+ Cover => 'Cover',
+ Artist => 'Künstler',
+ Format => 'Format',
+ Running => 'Laufzeit',
+ Release => 'Veröffentlichungsdatum',
+ Genre => 'Genre',
+ Origin => 'Origin',
+
+ # For tracks list
+ Tracks => 'Titelliste',
+ Number => 'Nummer',
+ Track => 'Titel',
+ Time => 'Zeit',
+
+ Composer => 'Komponist/in',
+ Producer => 'Produzent/in',
+ Playlist => 'Wiedergabeliste',
+ Comments => 'Kommentare',
+ Label => 'Verlag',
+ Url => 'Internetseite',
+
+ General => 'Allgemein',
+ Details => 'Details',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCModels/GCperiodicals.pm b/lib/gcstar/GCLang/DE/GCModels/GCperiodicals.pm
new file mode 100644
index 0000000..5cd7c20
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCModels/GCperiodicals.pm
@@ -0,0 +1,56 @@
+{
+ package GCLang::DE::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 => 'Zeitschriftensammlung',
+ Items => {0 => 'Heft',
+ 1 => 'Heft',
+ X => 'Hefte'},
+ NewItem => 'Neues Heft',
+
+ Title => 'Titel',
+ Cover => 'Titelseite',
+ Periodical => 'Zeitschrift',
+ Number => 'Nummer',
+ Date => 'Datum',
+ Subject => 'Stichworte',
+ Articles => 'Inhalt',
+
+ Article => 'Artikel',
+ Page => 'Seite',
+ Résumé => 'Zusammenfassung',
+
+ General => 'Allgemein',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCModels/GCsmartcards.pm b/lib/gcstar/GCLang/DE/GCModels/GCsmartcards.pm
new file mode 100644
index 0000000..288eb69
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCModels/GCsmartcards.pm
@@ -0,0 +1,108 @@
+{
+ package GCLang::DE::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 => 'Telefonkartensammlung',
+ Items => {0 => 'Karte',
+ 1 => 'Karte',
+ X => 'Karten'},
+ NewItem => 'Neue Karte',
+ Currency => 'Währung',
+
+ Help => 'Hinweise zu den Eingabefeldern',
+ Help1 => 'Hilfe',
+
+# Traduction des Champs "Main"
+
+ Main => 'Kartendaten',
+
+ Cover => 'Abbildung',
+
+ Name => 'Name',
+ Exchange => 'tauschen oder verkaufen',
+ Wanted => 'gesucht',
+ Rating1 => 'Gesamtbewertung',
+ TheSmartCard => 'Vorder-/Rückseite',
+
+ Country => 'Land',
+ Color => 'Farbe',
+ Type1 => 'Kartentyp',
+ Type2 => 'Modultyp',
+ Dimension => 'Länge/Breite/Dicke',
+
+ Box => 'Box',
+ Chip => 'Modul',
+ Year1 => 'Ausgabedatum',
+ Year2 => 'Gültigkeitsdatum',
+ Condition => 'Zustand',
+ Charge => 'aufladbar',
+ Variety => 'Variante',
+
+ Edition => 'Gesamtauflage',
+ Serial => 'Seriennummer',
+ Theme => 'Theme',
+
+ Acquisition => 'Kaufdatum',
+
+ Catalog0 => 'Katalog',
+ Catalog1 => 'Michel',
+ Catalog2 => 'Sherlock',
+
+ Reference0 => 'Katalognummer',
+ Reference1 => 'Michelnummer',
+ Reference2 => 'Katalognummer Sherlock',
+ Reference3 => 'andere Katalognummer',
+
+ Quotationnew00 => 'Wert ungebraucht',
+ Quotationnew10 => 'Wert Michel',
+ Quotationnew20 => 'Wert Sherlock',
+ Quotationnew30 => 'andere Bewertung',
+ Quotationold00 => 'Wert gebraucht',
+ Quotationold10 => 'Wert Michael',
+ Quotationold20 => 'Wert Sherlock',
+ Quotationold30 => 'andere Bewertung',
+
+ Title1 => 'Titel',
+
+ Unit => 'Einheiten/Minuten',
+
+ Pressed => 'Hersteller',
+ Location => 'Ort',
+
+ Comments1 => 'Bemerkung',
+
+ Others => 'Sonstiges',
+ Weight => 'Gewicht',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCModels/GCsoftware.pm b/lib/gcstar/GCLang/DE/GCModels/GCsoftware.pm
new file mode 100644
index 0000000..ed527cb
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCModels/GCsoftware.pm
@@ -0,0 +1,82 @@
+{
+ package GCLang::DE::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 => 'Softwaresammlung',
+ Items => {0 => 'Programm',
+ 1 => 'Programm',
+ X => 'Programme'},
+ NewItem => 'Neues Programm',
+
+ Id => 'Id',
+ Ean => 'EAN',
+ Name => 'Name',
+ Platform => 'Platform',
+ Released => 'Erscheinungsdatum',
+ Homepage => 'Homepage',
+ Editor => 'Editor',
+ Developer => 'Entwickler',
+ Category => 'Kategorie',
+ NumberOfCopies => '# Exemplare',
+ Price => 'Preis',
+ Box => 'Verpackungsbild',
+ Case => 'Verpackung',
+ Manual => 'Handbuch',
+ Executable => 'Datei',
+ Description => 'Beschreibung',
+ License => 'Lizenz',
+ Commercial => 'kommerziell',
+ FreewareNoncommercial => 'Freeware (für nicht-kommerziellen Einsatz)',
+ OtherOpenSource => 'sonstige Open Source',
+ PublicDomain => 'Public Domain',
+ OtherLicense => 'sonstige',
+ Registration => 'Registrierung',
+ RegistrationInfo => 'Registrierungsdaten',
+ RegInfo => 'Registrierungsdaten',
+ RegistrationName => 'Username',
+ RegistrationNumber => 'Registierungsnumber',
+ PanelRegistration => 'Registrierungsdaten',
+ RegistrationComments => 'Bemerkungen',
+ Screenshots => 'Screenshots',
+ Screenshot1 => 'erster Screenshot',
+ Screenshot2 => 'zweiter Screenshot',
+ Comments => 'Bemerkungen',
+ Url => 'Webseite',
+ General => 'Allgemein',
+ Details => 'Details',
+ Information => 'Information',
+
+ FilterRatingSelect => 'Bewertung _mindestens...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCModels/GCstamps.pm b/lib/gcstar/GCLang/DE/GCModels/GCstamps.pm
new file mode 100644
index 0000000..36ec79a
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCModels/GCstamps.pm
@@ -0,0 +1,189 @@
+{
+ package GCLang::DE::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 => 'Briefmarkensammlung',
+ Items => {0 => 'Briefmarke',
+ 1 => 'Briefmarke',
+ X => 'Briefmarken'},
+ NewItem => 'Neue Briefmarke',
+
+ General => 'Allgemein',
+ Detail => 'Detail',
+ Value => 'Wert',
+ Notes => 'Bemerkungen',
+ Views => 'Fotos',
+
+ Name => 'Name',
+ Country => 'Land',
+ Year => 'Jahr',
+ Catalog => 'Katalog',
+ Number => 'Nummer',
+ Topic => 'Motiv',
+ Serie => 'Serie',
+ Designer => 'Designer',
+ Engraver => 'Graveur',
+ Type => 'Typ',
+ Format => 'Art',
+ Description => 'Beschreibung',
+ Color => 'Farbe',
+ Gum => 'Gummierung',
+ Paper => 'Papier',
+ Perforation => 'Perforation',
+ PerforationSize => 'Perforationsgröße',
+ CancellationType => 'Stempel',
+ Comments => 'Bemerkungen',
+ PrintingVariety => 'Druck',
+ IssueDate => 'Erstausgabedatum',
+ EndOfIssue => 'gültig bis',
+ Issue => 'Auflage',
+ Grade => 'Erhaltung',
+ Status => 'Status',
+ Adjusted => 'Adjusted',
+ Cancellation => 'Entwertung',
+ CancellationCondition => 'Stempelqualität',
+ GumCondition => 'Zustand der Gummierung',
+ PerforationCondition => 'Zustand der Perforation',
+ ConditionNotes => 'Bemerkungen zum Zustand',
+ Error => 'Fehldruck',
+ ErrorNotes => 'Bemerkungen zum Druck',
+ FaceValue => 'Nennwert',
+ MintValue => 'Wert postfrisch',
+ UsedValue => 'Wert gestempelt',
+ PurchasedDate => 'Kaufdatum',
+ Quantity => 'Anzahl',
+ History => 'Geschichte',
+ Picture1 => 'Bild 1',
+ Picture2 => 'Bild 2',
+ Picture3 => 'Bild 3',
+
+ AirMail => 'Luftpost',
+ MilitaryStamp => 'Feldpost',
+ Official => 'offiziell',
+ PostageDue => 'Nachgebühr',
+ Regular => 'Regulär',
+ Revenue => 'Erlös',
+ SpecialDelivery => 'Sondermarke',
+ StrikeStamp => 'Streikmarke',
+ TelegraphStamp => 'Telegrafenmarke',
+ WarStamp => 'Feldpostmarke',
+ WarTaxStamp => 'Kriegssteuermarke',
+
+ Booklet => 'Markenheftchen',
+ BookletPane => 'Heftchenblatt',
+ Card => 'Postkarte',
+ Coil => 'Rolle',
+ Envelope => 'Umschlag',
+ FirstDayCover => 'Ersttagsbrief',
+ Sheet => 'Bogen',
+ Single => 'Einzelexemplar',
+
+ Heliogravure => 'Heliogravüre',
+ Lithography => 'Lithographie',
+ Offset => 'Offset',
+ Photogravure => 'Rastertiefdruck',
+ RecessPrinting => 'Stichtiefdruck',
+ Typography => 'Schriftsatz',
+
+ OriginalGum => 'Originalgummierung',
+ Ungummed => 'ungummiert',
+ Regummed => 'nachgummiert',
+
+ Chalky => 'gestrichenes Papier',
+ ChinaPaper => 'Chinapapier',
+ Coarsed => 'Rauh',
+ Glossy => 'Glänzend',
+ Granite => 'Granite',
+ Laid => 'Gestreift',
+ Manila => 'Manila',
+ Native => 'Native',
+ Pelure => 'Zigarettenpapier',
+ Quadrille => 'Gegittert',
+ Ribbed => 'Riffelung',
+ Rice => 'Reis',
+ Silk => 'Seide',
+ Smoothed => 'Geglättet',
+ Thick => 'Dick',
+ Thin => 'Dünn',
+ Wove => 'Gewebt',
+
+ CoarsedPerforation => 'Rauhe Perforation',
+ CombPerforation => 'Gekämmte Perforation',
+ CompoundPerforation => 'Gemischte Perforation',
+ DamagedPerforation => 'Beschädigte Perforation',
+ DoublePerforation => 'Doppelte Oerforation',
+ HarrowPerforation => 'Eckige Perforation',
+ LinePerforation => 'Gerade Perforation',
+ NoPerforation => 'Keine Perforation',
+
+ CancellationToOrder => 'Gefälligkeitsstempel',
+ FancyCancellation => 'Sonderstempel',
+ FirstDayCancellation => 'Ersttagsstempel',
+ NumeralCancellation => 'Nummernstempel',
+ PenMarked => 'Federzugentwertung',
+ RailroadCancellation => 'Eisenbahnentwertung',
+ SpecialCancellation => 'Spezielle Entwertung',
+
+ Superb => 'Luxuserhaltung',
+ ExtraFine => 'Kabinetterhaltung',
+ VeryFine => 'Prachterhaltung',
+ FineVeryFine => 'Feinsterhaltung',
+ Fine => 'Feinerhaltung',
+ Average => 'Durchschnittserhaltung',
+ Poor => 'Knochenerhaltung',
+
+ Owned => 'im Besitz',
+ Ordered => 'bestellt',
+ Sold => 'verkauft',
+ ToSell => 'zu verkaufen',
+ Wanted => 'gesucht',
+
+ LightCancellation => 'schwacher Stempel',
+ HeavyCancellation => 'starker Stempel',
+ ModerateCancellation => 'normaler Stempel',
+
+ MintNeverHinged => 'Prägung niemals gefaltet',
+ MintLightHinged => 'Prägung leicht gefaltet',
+ HingedRemnant => 'Faltung sichtbar',
+ HeavilyHinged => 'Stark gefaltet',
+ LargePartOriginalGum => 'Große Teile der originalen Gummierung',
+ SmallPartOriginalGum => 'Kleine Teile der originalen Gummierung',
+ NoGum => 'Keine Gummierung',
+
+ Perfect => 'Perfekt',
+ VeryNice => 'Sehr gut',
+ Nice => 'Gut',
+ Incomplete => 'Unvollständig',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCModels/GCwines.pm b/lib/gcstar/GCLang/DE/GCModels/GCwines.pm
new file mode 100644
index 0000000..cfc9891
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCModels/GCwines.pm
@@ -0,0 +1,65 @@
+{
+ package GCLang::DE::GCModels::GCwines;
+
+ use utf8;
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Weinsammlung',
+ Items => {0 => 'Wein',
+ 1 => 'Wein',
+ X => 'Weine',
+ },
+
+ NewItem => 'Neuer Wein',
+
+ Name => 'Name',
+ Designation => 'Kennzeichnung',
+ Vintage => 'Jahrgang',
+ Vineyard => 'Weingut',
+ Type => 'Art',
+ Grapes => 'Rebsorte',
+ Soil => 'Erde',
+ Producer => 'Abfüller',
+ Country => 'Land',
+ Volume => 'Inhalt (ml)',
+ Alcohol => 'Alkohol (%)',
+ Medal => 'Auszeichnungen',
+
+ Storage => 'Aufbewahrung',
+ Location => 'Ortsangabe',
+ ShelfIndex => 'Ablageindex',
+ Quantity => 'Anzahl',
+ Acquisition => 'Erwerb',
+ PurchaseDate => 'Kaufdatum',
+ PurchasePrice => 'Kaufpreis',
+ Gift => 'Geschenk',
+ BottleLabel => 'Etikett',
+ Website => 'Website',
+
+ Tasted => 'verkostet',
+ Comments => 'Kommentar',
+ Serving => 'Portion',
+ TastingField => 'Bemerkungen',
+
+ General => 'Allgemein',
+ Details => 'Einzelheiten',
+ Tasting => 'Geschmack',
+
+ TastedNo => 'nicht gekostet',
+ TastedYes => 'gekostet',
+
+ FilterRange => 'Filter',
+ FilterTastedNo => '_Noch nicht gekostet',
+ FilterTastedYes => 'Bereits _gekostet',
+ FilterRatingSelect => 'Bewertung _mindestens...'
+
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/DE/GCstar.pm b/lib/gcstar/GCLang/DE/GCstar.pm
new file mode 100644
index 0000000..2326204
--- /dev/null
+++ b/lib/gcstar/GCLang/DE/GCstar.pm
@@ -0,0 +1,686 @@
+{
+ package GCLang::DE;
+
+ 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' => 'Deutsch',
+
+ 'Separator' => ': ',
+
+ 'Warning' => '<b>Warnung</b>:
+
+Informationen, die Sie (durch Plugins) von Webseiten herunterladen,
+sind <b>ausschließlich für den persönlichen Gebrauch bestimmt.</b>.
+
+Jede <b>Weitergabe</b> ist ohne die explizite Erlaubnis der
+Seitenbetreiber <b>verboten</b>.
+
+Der Button unter den Elementen verweist Sie auf die jeweilige
+Webseite, von der die Informationen stammen.',
+
+ 'AllItemsFiltered' => 'Kein Element erfüllt Ihre Filtereinstellungen.', # Accepts model codes
+
+ 'InstallDirInfo' => 'Installiere nach ',
+ 'InstallMandatory' => 'Erforderliche Komponenten',
+ 'InstallOptional' => 'Optionale Komponenten',
+ 'InstallErrorMissing' => 'Fehler : Die folgenden Komponenten müssen installiert sein: ',
+ 'InstallPrompt' => 'Basisverzeichnis für die Installation [/usr/local]: ',
+ 'InstallEnd' => 'Installation beendet',
+ 'InstallNoError' => 'Keine Fehler',
+ 'InstallLaunch' => 'Um die Anwendung zu verwenden starten Sie ',
+ 'InstallDirectory' => 'Installationsverzeichnis',
+ 'InstallTitle' => 'Installation von GCstar',
+ 'InstallDependencies' => 'Abhängigkeiten',
+ 'InstallPath' => 'Pfad',
+ 'InstallOptions' => 'Optionen',
+ 'InstallSelectDirectory' => 'Wählen Sie ein Basisverzeichnis für die Installation',
+ 'InstallWithClean' => 'Daten im Installationsverzeichnis löschen',
+ 'InstallWithMenu' => 'GCstar zum Anwendungsmenü hinzufügen',
+ 'InstallNoPermission' => 'Fehler: Sie haben keine Schreibrechte im gewählten Verzeichnis',
+ 'InstallMissingMandatory' => 'Abhängigkeiten können auf Ihrem System nicht gelöst werden. Sie müssen diese ergänzen, um GCstar installieren zu können.',
+ 'InstallMissingOptional' => 'Einige unten aufgelistete optionale Abhängigkeiten können nicht gelöst werden. GCstar kann installiert werden, aber einige Eigenschaften werden nicht verfügbar sein.',
+ 'InstallMissingNone' => 'Es gibt keine ungelösten Abhängigkeiten. Sie können mit der Installation fortfahren.',
+ 'InstallOK' => 'OK',
+ 'InstallMissing' => 'Fehlt',
+ 'InstallMissingFor' => 'Fehlt für',
+ 'InstallCleanDirectory' => 'Entferne GCstar\'s Dateien im Verzeichnis: ',
+ 'InstallCopyDirectory' => 'Kopiere Dateien in Verzeichnis: ',
+ 'InstallCopyDesktop' => 'Kopiere Desktop Datei nach: ',
+
+#Update
+ 'UpdateUseProxy' => 'Proxy (drücken Sie Enter für keinen): ',
+ 'UpdateNoPermission' => 'Keine Schreibrechte im Verzeichnis: ',
+ 'UpdateNone' => 'Keine Updates gefunden',
+ 'UpdateFileNotFound' => 'Datei nicht gefunden',
+
+#Splash
+ 'SplashInit' => 'Initialisiere',
+ 'SplashLoad' => 'Lade Sammlung',
+ 'SplashDisplay' => 'Sammlung anzeigen',
+ 'SplashSort' => 'Sammlung sortieren',
+ 'SplashDone' => 'Fertig',
+
+#Import from GCfilms
+ 'GCfilmsImportQuestion' => 'Sie scheinen bereits GCfilms benutzt zu haben. Was möchten Sie von GCfilms nach GCstar importieren (die Daten von GCfilms bleiben erhalten)?',
+ 'GCfilmsImportOptions' => 'Einstellungen',
+ 'GCfilmsImportData' => 'Filmliste',
+
+#Menus
+ 'MenuFile' => '_Datei',
+ 'MenuNewList' => '_Neue Liste',
+ 'MenuStats' => 'Statistische Auswertung',
+ 'MenuHistory' => '_Letzte Sammlung',
+ 'MenuLend' => '_Verliehenes anzeigen', # Accepts model codes
+ 'MenuImport' => '_Importieren',
+ 'MenuExport' => '_Exportieren',
+ 'MenuAddItem' => '_Hinzufügen', # Accepts model codes
+
+ 'MenuEdit' => '_Bearbeiten',
+ 'MenuDuplicate' => '{1} _duplizieren', # Accepts model codes
+ 'MenuDuplicatePlural' => '{X} _duplizieren', # Accepts model codes
+ 'MenuEditSelectAllItems' => '_alle {X} auswählen', # Accepts model codes
+ 'MenuEditDeleteCurrent' => '{1} _löschen', # Accepts model codes
+ 'MenuEditDeleteCurrentPlural' => '{X} _löschen', # Accepts model codes
+ 'MenuEditFields' => 'Felder _bearbeiten',
+ 'MenuEditLockItems' => 'Liste _sperren',
+
+ 'MenuDisplay' => '_Filter',
+ 'MenuSavedSearches' => 'Gespeicherte Suchanfragen',
+ 'MenuSavedSearchesSave' => 'Aktuelle Suchanfrage speichern',
+ 'MenuSavedSearchesEdit' => 'Gespeicherte Suchanfragen bearbeiten',
+ 'MenuAdvancedSearch' => 'Erweiterte Suche',
+ 'MenuViewAllItems' => '_Alle {X} anzeigen', # Accepts model codes
+ 'MenuNoFilter' => '_Alle',
+
+ 'MenuConfiguration' => '_Einstellungen',
+ 'MenuDisplayMenu' => 'Display',
+ 'MenuDisplayFullScreen' => 'Full screen',
+ 'MenuDisplayMenuBar' => 'Menus',
+ 'MenuDisplayToolBar' => 'Toolbar',
+ 'MenuDisplayStatusBar' => 'Bottom bar',
+ 'MenuDisplayOptions' => 'Sichtbare _Felder',
+ 'MenuBorrowers' => 'Ent_leiher',
+ 'MenuToolbarConfiguration' => '_Werkzeugleiste konfigurieren',
+ 'MenuDefaultValues' => 'Default values for new item', # Accepts model codes
+ 'MenuGenresConversion' => 'Genres _konvertieren',
+
+ 'MenuBookmarks' => 'Meine _Sammlung',
+ 'MenuBookmarksAdd' => 'aktuelle Sammlung _hinzufügen',
+ 'MenuBookmarksEdit' => 'Sammlung _bearbeiten',
+
+ 'MenuHelp' => '_Hilfe',
+ 'MenuHelpContent' => '_Hilfe',
+ 'MenuAllPlugins' => 'Zeige _Plugins',
+ 'MenuBugReport' => '_Programmfehler melden',
+ 'MenuAbout' => '_Über GCstar',
+
+ 'MenuNewWindow' => '{1} in neuem _Fenster zeigen', # Accepts model codes
+ 'MenuNewWindowPlural' => '{X} in neuem _Fenster zeigen', # Accepts model codes
+
+ 'ContextExpandAll' => 'alle ausklappen',
+ 'ContextCollapseAll' => 'alle zusammenklappen',
+ 'ContextChooseImage' => '_Bild wählen',
+ 'ContextOpenWith' => 'Öffnen mit',
+ 'ContextImageEditor' => 'Bildbearbeitungsprogramm',
+ 'ContextImgFront' => 'Vorderseite',
+ 'ContextImgBack' => 'Rückseite',
+ 'ContextChooseFile' => 'Datei auswählen',
+ 'ContextChooseFolder' => 'Verzeichnis auswählen',
+
+ 'DialogEnterNumber' => 'Bitte geben Sie einen Wert ein',
+
+ 'RemoveConfirm' => 'Wollen Sie dieses Element wirklich löschen?', # Accepts model codes
+ 'RemoveConfirmPlural' => 'Sollen alle diese {X} wirklich gelöscht werden?', # Accepts model codes
+
+ 'DefaultNewItem' => 'Neues Element', # Accepts model codes
+ 'NewItemTooltip' => '{1} hinzufügen', # Accepts model codes
+ 'NoItemFound' => 'Element nicht gefunden. Möchten Sie auf einer anderen Seite suchen?',
+ 'OpenList' => 'Bitte wählen Sie eine Liste',
+ 'SaveList' => 'Bitte wählen Sie den Speicherort für die Liste',
+ 'SaveListTooltip' => 'Aktuelle Liste speichern',
+ 'SaveUnsavedChanges' => 'Es gibt ungespeicherte Änderungen in Ihrere Sammlung. Wollen Sie diese speichern?',
+ 'SaveDontSave' => 'Nicht speichern',
+ 'PreferencesTooltip' => 'Ändern der Programmeinstellungen',
+ 'ViewTooltip' => 'Anzeige der Liste ändern',
+ 'PlayTooltip' => 'Mit dem Film verknüpftes Video abspielen', # Accepts model codes
+ 'PlayFileNotFound' => 'Abzuspielende Datei nicht gefunden in:',
+ 'PlayRetry' => 'noch einmal versuchen',
+
+ 'StatusSave' => 'Speichere...',
+ 'StatusLoad' => 'Lade...',
+ 'StatusSearch' => 'Suche...',
+ 'StatusGetInfo' => 'Lade Informationen...',
+ 'StatusGetImage' => 'Lade Bild...',
+
+ 'SaveError' => 'Die Liste kann nicht gespeichert werden. Bitte überprüfen Sie die Dateirechte, und ob genügend freier Speicherplatz zur Verfügung steht.',
+ 'OpenError' => 'Kann die Liste nicht öffnen. Bitte überprüfen Sie die Dateirechte.',
+ 'OpenFormatError' => 'Kann die Liste nicht öffnen.',
+ 'OpenVersionWarning' => 'Die Sammlung wurde mit einer neueren Version von GCStar erzeugt. Beim speichern können Daten verloren gehen.',
+ 'OpenVersionQuestion' => 'Möchten Sie trotzdem fortfahren?',
+ 'ImageError' => 'Das Verzeichnis zum Speichern der Bilder ist nicht korrekt. Bitte wählen Sie ein anderes.',
+ 'OptionsCreationError'=> 'Kann die Einstellungsdatei nicht erstellen: ',
+ 'OptionsOpenError'=> 'Kann die Einstellungen nicht laden: ',
+ 'OptionsSaveError'=> 'Kann die Einstellungen nicht speichern: ',
+ 'ErrorModelNotFound' => 'Folgendes Modell wurde nicht gefunden: ',
+ 'ErrorModelUserDir' => 'Die nutzerdefinierten Modelle sind in: ',
+
+ 'RandomTooltip' => '{1} für heute Abend vorschlagen',
+ 'RandomError'=> 'Sie haben keine ungesehenen {X}', # Accepts model codes
+ 'RandomEnd'=> 'Keine weiteren Vorschläge verfügbar', # Accepts model codes
+ 'RandomNextTip'=> 'Nächster Vorschlag',
+ 'RandomOkTip'=> 'Diesen Vorschlag akzeptieren',
+
+ 'AboutTitle' => 'Über GCstar',
+ 'AboutDesc' => 'Gtk2 Sammlungs Manager',
+ 'AboutVersion' => 'Version',
+ 'AboutTeam' => 'Team',
+ 'AboutWho' => 'Christian Jodar (Tian) : Projektmanager, Programmierer
+Nyall Dawson (Zombiepig) : Programmierer
+TPF : Programmierer
+Adolfo González : Programmierer
+',
+ 'AboutLicense' => 'Veröffentlicht unter den Bedingungen der GNU GPL
+Logos Copyright le Spektre',
+ 'AboutTranslation' => 'Deutsche Übersetzung von Gabriel Meier und FrenkX',
+ 'AboutDesign' => 'Łukasz Kowalczk (Qoolman): Skin Designer
+Logo und Webdesign von le Spektre',
+
+ 'ToolbarRandom' => 'Heute Abend',
+
+ 'UnsavedCollection' => 'Ungespeicherte Sammlung',
+ 'ModelsSelect' => 'Wählen Sie den Typ der Sammlung',
+ 'ModelsPersonal' => 'Eigene Modelle',
+ 'ModelsDefault' => 'Vorgegebene Modelle',
+ 'ModelsList' => 'Definitionen von Sammlungen',
+ 'ModelSettings' => 'Einstellungen von Sammlungen',
+ 'ModelNewType' => 'Neuer Sammlungstyp',
+ 'ModelName' => 'Name des Sammlungstypes:',
+ 'ModelFields' => 'Felder',
+ 'ModelOptions' => 'Optionen',
+ 'ModelFilters' => 'Filter',
+ 'ModelNewField' => 'Neues Feld',
+ 'ModelFieldInformation' => 'Information',
+ 'ModelFieldName' => 'Beschriftung:',
+ 'ModelFieldType' => 'Typ:',
+ 'ModelFieldGroup' => 'Gruppe:',
+ 'ModelFieldValues' => 'Werte',
+ 'ModelFieldInit' => 'Vorgaben:',
+ 'ModelFieldMin' => 'Minimum:',
+ 'ModelFieldMax' => 'Maximum:',
+ 'ModelFieldList' => 'Wertliste:',
+ 'ModelFieldListLegend' => '<i>Kommasepariert</i>',
+ 'ModelFieldDisplayAs' => 'Anzeige als:',
+ 'ModelFieldDisplayAsText' => 'Text',
+ 'ModelFieldDisplayAsGraphical' => 'Bewertungselement',
+ 'ModelFieldTypeShortText' => 'Kurzer Text',
+ 'ModelFieldTypeLongText' => 'Langer Text',
+ 'ModelFieldTypeYesNo' => 'Ja/Nein',
+ 'ModelFieldTypeNumber' => 'Zahl',
+ 'ModelFieldTypeDate' => 'Datum',
+ 'ModelFieldTypeOptions' => 'Vordefinierte Auswahlliste',
+ 'ModelFieldTypeImage' => 'Bild',
+ 'ModelFieldTypeSingleList' => 'Einfache List',
+ 'ModelFieldTypeFile' => 'Datei',
+ 'ModelFieldTypeFormatted' => 'von anderen Feldern abhängig',
+ 'ModelFieldParameters' => 'Parameter',
+ 'ModelFieldHasHistory' => 'Benutze Verlauf',
+ 'ModelFieldFlat' => 'Auf einer Zeile anzeigen',
+ 'ModelFieldStep' => 'Schrittweite:',
+ 'ModelFieldFileFormat' => 'Dateiformat:',
+ 'ModelFieldFileFile' => 'Einfache Datei',
+ 'ModelFieldFileImage' => 'Bild',
+ 'ModelFieldFileVideo' => 'Video',
+ 'ModelFieldFileAudio' => 'Audio',
+ 'ModelFieldFileProgram' => 'Programm',
+ 'ModelFieldFileUrl' => 'URL',
+ 'ModelFieldFileEbook' => 'E-Book',
+ 'ModelOptionsFields' => 'zu benutzende Felder',
+ 'ModelOptionsFieldsAuto' => 'Automatisch',
+ 'ModelOptionsFieldsNone' => 'Keine',
+ 'ModelOptionsFieldsTitle' => 'Als Titel',
+ 'ModelOptionsFieldsId' => 'Als Identifikator',
+ 'ModelOptionsFieldsCover' => 'Als Cover',
+ 'ModelOptionsFieldsPlay' => 'Für Abspielen Knopf',
+ 'ModelCollectionSettings' => 'Sammlungseinstellungen',
+ 'ModelCollectionSettingsLending' => 'Elemente können verborgt werden',
+ 'ModelCollectionSettingsTagging' => 'Elemente können getaggt werden',
+ 'ModelFilterActivated' => 'Soll in Suchfeld sein',
+ 'ModelFilterComparison' => 'Vergleich',
+ 'ModelFilterContain' => 'Beinhaltet',
+ 'ModelFilterDoesNotContain' => 'ist nicht enthalten',
+ 'ModelFilterRegexp' => 'Regulärer Ausdruck',
+ 'ModelFilterRange' => 'Bereich',
+ 'ModelFilterNumeric' => 'numerischer Vergleich',
+ 'ModelFilterQuick' => 'Schnellen Filter erstellen',
+ 'ModelTooltipName' => 'Benutzen Sie einen Namen, der in vielen Sammlungen verwendet werden kann. Wenn Sie nichts angeben, werden die Einstellungen direkt in der Sammlung gespeichert',
+ 'ModelTooltipLabel' => 'Der Feldname, so wie er angezeigt wird',
+ 'ModelTooltipGroup' => 'Kann zum gruppieren verwendet werden. Elemente ohne Gruppenangabe werden in einer vorgegebenen Gruppe zusammengefasst',
+ 'ModelTooltipHistory' => 'Alle hier eingegebenen Werte werden in einer Liste gespeichert und können darüber auch wieder ausgewählt werden',
+ 'ModelTooltipFormat' => 'Das Format wird benutzt, um eine geeignete Anwendung mit dem "Öffnen"-Knopf zu verbinden',
+ 'ModelTooltipLending' => 'Fügt Felder zur Verwaltung der Ausleihe hinzu',
+ 'ModelTooltipTagging' => 'Fügt Felder zur Verwaltung von Markierungen hinzu',
+ 'ModelTooltipNumeric' => 'In Vergleichsoperationen wird der Wert als Zahl interpretiert',
+ 'ModelTooltipQuick' => 'Fügt ein Untermenü zu "Filter" hinzu',
+
+ 'ResultsTitle' => 'Wählen Sie einen Eintrag', # Accepts model codes
+ 'ResultsNextTip' => 'Auf der nächsten Seite suchen',
+ 'ResultsPreview' => 'Vorschau',
+ 'ResultsInfo' => 'Es können mehrere Elemente durch Auswahl bei gedrückter STRG oder UMSCHALT Taste zu der Sammlung hinzugefügt werden.', # Accepts model codes
+
+ 'OptionsTitle' => 'Einstellungen',
+ 'OptionsExpertMode' => 'Expertenmodus',
+ 'OptionsPrograms' => 'Wählen Sie eine Anwendung für verschiedene Medientypen. Wird nichts eingetragen, werden die Voreinstellungen des Systems verwendet.',
+ 'OptionsBrowser' => 'Internetbrowser',
+ 'OptionsPlayer' => 'Videoabspielprogramm',
+ 'OptionsAudio' => 'Musikabspielprogramm',
+ 'OptionsImageEditor' => 'Bildbearbeitungsprogramm',
+ 'OptionsCdDevice' => 'CD Gerät',
+ 'OptionsImages' => 'Verzeichnis für Bilder',
+ 'OptionsUseRelativePaths' => 'Relative Pfade für Bilder verwenden',
+ 'OptionsLayout' => 'Layout',
+ 'OptionsStatus' => 'Statusleiste am unteren Fensterrand anzeigen',
+ 'OptionsUseStars' => 'Sterne für die Bewertung nutzen',
+ 'OptionsWarning' => 'Warnung: Die Einstellungen in diesem Panel werden erst nach dem Neustart der Anwendung wirksam!',
+ 'OptionsRemoveConfirm' => 'Löschen von Elementen bestätigen lassen',
+ 'OptionsAutoSave' => 'Sammlung automatisch speichern',
+ 'OptionsAutoLoad' => 'Vorhergehende Sammlung beim Programmstart laden',
+ 'OptionsSplash' => 'Splash-Screen anzeigen',
+ 'OptionsTearoffMenus' => 'Ablösbare Menüs aktivieren',
+ 'OptionsSpellCheck' => 'Rechtschreibprüfung für lange Textfelder verwenden',
+ 'OptionsProgramTitle' => 'Wählen Sie die gewünschte Anwendung',
+ 'OptionsPlugins' => 'Seite zum Bezug von Informationen',
+ 'OptionsAskPlugins' => 'Fragen (Alle Seiten)',
+ 'OptionsPluginsMulti' => 'Mehrere...',
+ 'OptionsPluginsMultiAsk' => 'Fragen (Mehrere...)',
+ 'OptionsPluginsMultiPerField' => 'Mehrere... (pro Feld)',
+ 'OptionsPluginsMultiPerFieldWindowTitle' => 'Datenquellen für die einzeln Felder zuordnen',
+ 'OptionsPluginsMultiPerFieldDesc' => 'Jedes ausgewählte Feld wird mit dem ersten gefunden Inhalt gefüllt, von links angefangen.',
+ 'OptionsPluginsMultiPerFieldFirst' => 'Anfang',
+ 'OptionsPluginsMultiPerFieldLast' => 'Ende',
+ 'OptionsPluginsMultiPerFieldRemove' => 'Entfernen',
+ 'OptionsPluginsMultiPerFieldClearSelected' => 'Ausgewählte Feldliste leeren',
+ 'OptionsPluginsList' => 'Sammlung bearbeiten',
+ 'OptionsAskImport' => 'Zu importierende Felder wählen',
+ 'OptionsProxy' => 'Proxy verwenden',
+ 'OptionsCookieJar' => 'Speichere Cookies in dieser Datei',
+ 'OptionsLang' => 'Sprache',
+ 'OptionsMain' => 'Allgemein',
+ 'OptionsPaths' => 'Pfade',
+ 'OptionsInternet' => 'Internet',
+ 'OptionsConveniences' => 'Eigenschaften',
+ 'OptionsDisplay' => 'Anzeige',
+ 'OptionsToolbar' => 'Werkzeugleiste',
+ 'OptionsToolbars' => {
+ 0 => 'Keine',
+ 1 => 'Klein',
+ 2 => 'Groß',
+ 3 => 'Systemeinstellung'},
+ 'OptionsToolbarPosition' => 'Position',
+ 'OptionsToolbarPositions' => {
+ 0 => 'Oben',
+ 1 => 'Unten',
+ 2 => 'Links',
+ 3 => 'Rechts'},
+ 'OptionsExpandersMode' => 'ausklappbare Zeile zu lang',
+ 'OptionsExpandersModes' => {
+ 'asis' => 'Unverändert',
+ 'cut' => 'Abschneiden',
+ 'wrap' => 'Zeilenumbruch'},
+ 'OptionsDateFormat' => 'Datumsformat',
+ 'OptionsDateFormatTooltip' => 'Das Format entspricht dem bei der Funktion strftime(3) genutzten. Voreinstellung ist %d/%m/%Y',
+ 'OptionsView' => 'Listenansicht',
+ 'OptionsViews' => {
+ 0 => 'Text',
+ 1 => 'Bilder',
+ 2 => 'Detailliert'},
+ 'OptionsColumns' => 'Spalten',
+ 'OptionsMailer' => 'E-Mail-Versand per',
+ 'OptionsSMTP' => 'Server',
+ 'OptionsFrom' => 'E-Mail-Adresse des Absenders',
+ 'OptionsTransform' => 'Artikel ans Ende des Titels stellen',
+ 'OptionsArticles' => 'Artikel (getrennt durch Kommata)',
+ 'OptionsSearchStop' => 'Suche kann abgebrochen werden',
+ 'OptionsBigPics' => 'Große Bilder anzeigen sofern verfügbar',
+ 'OptionsAlwaysOriginal' => 'Titel statt Originaltitel verwenden, wenn dieser nicht vorhanden ist',
+ 'OptionsRestoreAccelerators' => 'Schnellzugriffe wiederherstellen',
+ 'OptionsHistory' => 'Größe des Verlaufs',
+ 'OptionsClearHistory' => 'Verlauf löschen',
+ 'OptionsStyle' => 'Erscheinungsbild',
+ 'OptionsDontAsk' => 'Nicht mehr fragen',
+ 'OptionsPathProgramsGroup' => 'Anwendungsprogramme',
+ 'OptionsProgramsSystem' => 'Nutze systemweite Einstellungen',
+ 'OptionsProgramsUser' => 'Nutze hier angegebene Programme',
+ 'OptionsProgramsSet' => 'Programmeinstellungen',
+ 'OptionsPathImagesGroup' => 'Bilder',
+ 'OptionsInternetDataGroup' => 'Datenimport',
+ 'OptionsInternetSettingsGroup' => 'Einstellungen',
+ 'OptionsDisplayInformationGroup' => 'Informationsanzeige',
+ 'OptionsDisplayArticlesGroup' => 'Artikel',
+ 'OptionsImagesDisplayGroup' => 'Anzeige',
+ 'OptionsImagesStyleGroup' => 'Style',
+ 'OptionsDetailedPreferencesGroup' => 'Einstellungen',
+ 'OptionsFeaturesConveniencesGroup' => 'Annehmlichkeiten',
+ 'OptionsPicturesFormat' => 'Prefix für Bilddateien:',
+ 'OptionsPicturesFormatInternal' => 'gcstar__',
+ 'OptionsPicturesFormatTitle' => 'Titel oder Name für das verbundene Element',
+ 'OptionsPicturesWorkingDir' => '%WORKING_DIR% oder . wird durch das Verzeichnis der Sammlung ersetzt (nur am Anfang der Pfadangabe nutzen!)',
+ 'OptionsPicturesFileBase' => '%FILE_BASE% wird durch den Dateinamen der Sammlung ohne Erweiterung (.gcs) ersetzt',
+ 'OptionsPicturesWorkingDirError' => '%WORKING_DIR% kann nur am Anfang der Pfadangabe für die Bilder genutzt werden',
+ 'OptionsConfigureMailers' => 'E-Mail Programmeinstellung',
+
+ 'ImagesOptionsButton' => 'Einstellungen',
+ 'ImagesOptionsTitle' => 'Einstellungen für die Bilderliste',
+ 'ImagesOptionsSelectColor' => 'Farbe wählen',
+ 'ImagesOptionsUseOverlays' => '3D-Rahmen um Bild',
+ 'ImagesOptionsBg' => 'Hintergrund',
+ 'ImagesOptionsBgPicture' => 'Hintergrundbild verwenden',
+ 'ImagesOptionsFg'=> 'Auswahl',
+ 'ImagesOptionsBgTooltip' => 'Hintergrundfarbe ändern',
+ 'ImagesOptionsFgTooltip'=> 'Farbe für die Auswahl einstellen',
+ 'ImagesOptionsResizeImgList' => 'Anzahl der Spalten automatisch anpassen',
+ 'ImagesOptionsAnimateImgList' => 'Use animations',
+ 'ImagesOptionsSizeLabel' => 'Größe',
+ 'ImagesOptionsSizeList' => {0 => 'Sehr klein', 1 => 'Klein', 2 => 'Mittel', 3 => 'Groß', 4 => 'Sehr Groß'},
+ 'ImagesOptionsSizeTooltip' => 'Bildgröße auswählen',
+
+ 'DetailedOptionsTitle' => 'Einstellungen für die detaillierte Sammlung',
+ 'DetailedOptionsImageSize' => 'Bildgröße',
+ 'DetailedOptionsGroupItems' => 'Gruppiere Elemente nach',
+ 'DetailedOptionsSecondarySort' => 'Sortiere gruppierte Felder nach',
+ 'DetailedOptionsFields' => 'Anzuzeigende Felder wählen',
+ 'DetailedOptionsGroupedFirst' => 'leere Elemente zusammenhalten',
+ 'DetailedOptionsAddCount' => 'Anzahl der enthaltenen Elemente anzeigen',
+
+ 'ExtractButton' => 'Information',
+ 'ExtractTitle' => 'Dateiinformationen',
+ 'ExtractImport' => 'Werte verwenden',
+
+ 'FieldsListOpen' => 'Lade Liste von Feldern aus Datei',
+ 'FieldsListSave' => 'Speichere Liste von Feldern in Datei',
+ 'FieldsListError' => 'Diese Liste von Feldern kann nicht für diese Sammlung benutzt werden',
+ 'FieldsListIgnore' => '--- Ignoriere',
+
+ 'ExportTitle' => 'Sammlung exportieren',
+ 'ExportFilter' => 'Nur angezeigte Elemente exportieren',
+ 'ExportFieldsTitle' => 'Zu exportierende Felder',
+ 'ExportFieldsTip' => 'Wählen Sie die zu exportierenden Felder',
+ 'ExportWithPictures' => 'Bilder in ein Unterverzeichnis kopieren',
+ 'ExportSortBy' => 'Sortierung nach',
+ 'ExportOrder' => 'Reihenfolge',
+
+ 'ImportListTitle' => 'Eine weitere Sammlung importieren',
+ 'ImportExportData' => 'Data',
+ 'ImportExportFile' => 'Datei',
+ 'ImportExportFieldsUnused' => 'Freie Felder',
+ 'ImportExportFieldsUsed' => 'Verwendete Felder',
+ 'ImportExportFieldsFill' => 'Alle hinzufügen',
+ 'ImportExportFieldsClear' => 'Alle entfernen',
+ 'ImportExportFieldsEmpty' => 'Sie müssen mindestens ein Feld wählen',
+ 'ImportExportFileEmpty' => 'Sie müssen einen Dateinamen angeben',
+ 'ImportFieldsTitle' => 'Zu importierende Felder',
+ 'ImportFieldsTip' => 'Wählen Sie die zu importierenden Felder',
+ 'ImportNewList' => 'Eine neue Sammlung erstellen',
+ 'ImportCurrentList' => 'Zur aktuellen Sammlung hinzufügen',
+ 'ImportDropError' => 'Es gab mindestens einen Fehler beim Öffnen der Dateien. Vorherige Liste wird wiederhergestellt.',
+ 'ImportGenerateId' => 'ID für jedes Element erzeugen',
+
+ 'FileChooserOpenFile' => 'Bitte wählen Sie die zu verwendende Datei',
+ 'FileChooserDirectory' => 'Verzeichnis',
+ 'FileChooserOpenDirectory' => 'Wählen Sie ein Verzeichnis',
+ 'FileChooserOverwrite' => 'Diese Datei existiert bereits. Möchten Sie sie überschreiben?',
+ 'FileAllFiles' => 'Alle Dateien',
+ 'FileVideoFiles' => 'nur Video-Dateien',
+ 'FileEbookFiles' => 'nur Ebook-Dateien',
+ 'FileAudioFiles' => 'nur Audio-Dateien',
+ 'FileGCstarFiles' => 'GCstar Sammlungen',
+
+ 'PanelCompact' => 'Komprimieren',
+ 'PanelReadOnly' => 'Nur Lesen',
+ 'PanelForm' => 'Tabs',
+
+ 'PanelSearchButton' => 'Internetsuche',
+ 'PanelSearchTip' => 'Im Internet nach Informationen zu diesem Titel suchen',
+ 'PanelSearchContextChooseOne' => 'Wähle eine Seite ...',
+ 'PanelSearchContextMultiSite' => 'Verwende "Viele Seiten"',
+ 'PanelSearchContextMultiSitePerField' => 'Verwende "Viele Seiten pro Feld"',
+ 'PanelSearchContextOptions' => 'Optionen ändern ...',
+ 'PanelImageTipOpen' => 'Klicken, um das Bild zu ändern.',
+ 'PanelImageTipView' => 'Klicken, um das Bild in Orginalgröße anzuzeigen.',
+ 'PanelImageTipMenu' => ' Rechtsklick für weitere Optionen.',
+ 'PanelImageTitle' => 'Wählen Sie ein Bild',
+ 'PanelImageNoImage' => 'kein Bild',
+ 'PanelSelectFileTitle' => 'Datei auswählen',
+ 'PanelLaunch' => 'Launch',
+ 'PanelRestoreDefault' => 'Voreinstellung herstellen',
+ 'PanelRefresh' => 'Update',
+ 'PanelRefreshTip' => 'Noch offene Einträge aus dem Internet auffüllen',
+
+ 'PanelFrom' =>'Von',
+ 'PanelTo' =>'Bis',
+
+ 'PanelWeb' => 'Zeige Informationen',
+ 'PanelWebTip' => 'Zeige Informationen über dieses Element im Internet', # Accepts model codes
+ 'PanelRemoveTip' => 'Dieses Element entfernen', # Accepts model codes
+
+ 'PanelDateSelect' => 'Wählen Sie ein Datum',
+ 'PanelNobody' => 'Niemand',
+ 'PanelUnknown' => 'Unbekannt',
+ 'PanelAdded' => 'Hinzufügedatum',
+ 'PanelRating' => 'Bewertung',
+ 'PanelPressRating' => 'Fremdbewertung',
+ 'PanelLocation' => 'Ort',
+
+ 'PanelLending' => 'Verleih',
+ 'PanelBorrower'=> 'Entleiher',
+ 'PanelLendDate'=> 'verliehen am',
+ 'PanelHistory'=> 'Verlauf',
+ 'PanelReturned' => 'Element zurückgegeben', # Accepts model codes
+ 'PanelReturnDate' => 'Rückgabedatum',
+ 'PanelLendedYes' => 'Verliehen',
+ 'PanelLendedNo' => 'Verfügbar',
+
+ 'PanelTags' => 'Markierungen',
+ 'PanelFavourite' => 'Favoriten',
+ 'TagsAssigned' => 'Zugeordnete Markierungen',
+
+ 'PanelUser' => 'Nutzerfeld',
+
+ 'CheckUndef' => 'Egal',
+ 'CheckYes' => 'Ja',
+ 'CheckNo' => 'Nein',
+
+ 'ToolbarAll' => 'Zeige alle',
+ 'ToolbarAllTooltip' => 'Alle Elemente anzeigen',
+ 'ToolbarGroupBy' => 'Gruppiere nach',
+ 'ToolbarGroupByTooltip' => 'Wählen Sie das Feld, nach dem die Einträge gruppiert werden sollen',
+ 'ToolbarQuickSearch' => 'Schnelle Suche',
+ 'ToolbarQuickSearchLabel' => 'Suche',
+ 'ToolbarQuickSearchTooltip' => 'Bitte wählen Sie das Feld, in dem gesucht werden soll. Geben Sie den Suchbegriff ein und drücken Sie anschließend Enter.',
+ 'ToolbarSeparator' => ' Trenner',
+
+ 'PluginsTitle' => 'Nach einem Element suchen',
+ 'PluginsQuery' => 'Abfrage',
+ 'PluginsFrame' => 'Eine Website durchsuchen',
+ 'PluginsLogo' => 'Logo',
+ 'PluginsName' => 'Name',
+ 'PluginsSearchFields' => 'Suchfelder',
+ 'PluginsAuthor' => 'Autor',
+ 'PluginsLang' => 'Sprache',
+ 'PluginsUseSite' => 'Gewählte Seite für zukünftige Suchen verwenden',
+ 'PluginsPreferredTooltip' => 'Empfohlen von GCstar',
+ 'PluginDisabled' => 'Deaktiviert',
+
+ 'BorrowersTitle' => 'Entleiher bearbeiten',
+ 'BorrowersList' => 'Entleiher',
+ 'BorrowersName' => 'Name',
+ 'BorrowersEmail' => 'E-Mail',
+ 'BorrowersAdd' => 'Hinzufügen',
+ 'BorrowersRemove' => 'Entfernen',
+ 'BorrowersEdit' => 'Bearbeiten',
+ 'BorrowersTemplate' => 'E-Mail Vorlage',
+ 'BorrowersSubject' => 'E-Mail Betreff',
+ 'BorrowersNotice1' => '%1 wird durch den Namen des Entleihers ersetzt',
+ 'BorrowersNotice2' => '%2 wird durch den Titel ersetzt',
+ 'BorrowersNotice3' => '%3 wird durch das Entleihdatum ersetzt',
+
+ 'BorrowersImportTitle' => 'Importiere Informationen zum Ausleiher',
+ 'BorrowersImportType' => 'Dateiformat:',
+ 'BorrowersImportFile' => 'Datei:',
+
+ 'BorrowedTitle' => 'Verliehene Elemente', # Accepts model codes
+ 'BorrowedDate' => 'Seit',
+ 'BorrowedDisplayInPanel' => 'Elemente im Hauptfenster anzeigen', # Accepts model codes
+
+ 'MailTitle' => 'E-Mail senden',
+ 'MailFrom' => 'Von: ',
+ 'MailTo' => 'An: ',
+ 'MailSubject' => 'Betreff: ',
+ 'MailSmtpError' => 'Problem beim Verbinden zum SMTP-Server',
+ 'MailSendmailError' => 'Problem beim Starten von Sendmail',
+
+ 'SearchTooltip' => 'Alle Elemente durchsuchen', # Accepts model codes
+ 'SearchTitle' => 'Titelsuche', # Accepts model codes
+ 'SearchNoField' => 'Es wurden keine Felder für die Suchanfrage ausgewählt.
+Füge einige davon in der Filtersektion unter Einstellungen hinzu.',
+
+ 'QueryReplaceField' => 'Felder zu ersetzen',
+ 'QueryReplaceOld' => 'Bisheriger Name',
+ 'QueryReplaceNew' => 'Neuer Name',
+ 'QueryReplaceLaunch' => 'Ersetzen',
+
+ 'ImportWindowTitle' => 'Wählen Sie die zu importierenden Felder',
+ 'ImportViewPicture' => 'Bild ansehen',
+ 'ImportSelectAll' => 'Alles auswählen',
+ 'ImportSelectNone' => 'Nichts auswählen',
+
+ 'MultiSiteTitle' => 'Seite für Internetrecherche',
+ 'MultiSiteUnused' => 'Nicht verwendete Plugins',
+ 'MultiSiteUsed' => 'Zu verwendende Plugins',
+ 'MultiSiteLang' => 'deutschsprachige Plugins verwenden',
+ 'MultiSiteEmptyError' => 'Die Liste der zu verwendenden Plugins ist leer!',
+ 'MultiSiteClear' => 'Liste löschen',
+
+ 'DisplayOptionsTitle' => 'Anzuzeigende Felder',
+ 'DisplayOptionsAll' => 'Alle auswählen',
+ 'DisplayOptionsSearch' => 'Suchbutton',
+
+ 'GenresTitle' => 'Genre konvertieren',
+ 'GenresCategoryName' => 'Verwendete Genres',
+ 'GenresCategoryMembers' => 'Zu ersetzende Genres',
+ 'GenresLoad' => 'Lade eine Liste',
+ 'GenresExport' => 'Liste in Datei speichern',
+ 'GenresModify' => 'Genre bearbeiten',
+
+ 'PropertiesName' => 'Name der Sammlung',
+ 'PropertiesLang' => 'Sprachcode',
+ 'PropertiesOwner' => 'Besitzer',
+ 'PropertiesEmail' => 'E-Mail',
+ 'PropertiesDescription' => 'Beschreibung',
+ 'PropertiesFile' => 'Dateieigenschaften',
+ 'PropertiesFilePath' => 'Vollständiger Pfad',
+ 'PropertiesItemsNumber' => 'Anzahl enthaltener Elemente', # Accepts model codes
+ 'PropertiesFileSize' => 'Dateigröße',
+ 'PropertiesFileSizeSymbols' => ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
+ 'PropertiesCollection' => 'Eigenschaften der Sammlung',
+ 'PropertiesDefaultPicture' => 'Standardbild',
+
+ 'MailProgramsTitle' => 'Programm zum senden von E-Mails',
+ 'MailProgramsName' => 'Name',
+ 'MailProgramsCommand' => 'Kommandozeile',
+ 'MailProgramsRestore' => 'Vorgabe wiederherstellen',
+ 'MailProgramsAdd' => 'Programm hinzufügen',
+ 'MailProgramsInstructions' => 'In der Kommandozeile werden einige Ersetzungen vorgenommen:
+ %f wird ersetzt mit der E-Mailadresse des Nutzers.
+ %t wird ersetzt mit der E-Mailadresse des Empfängers.
+ %s wird ersetzt mit dem Betreff der Nachricht.
+ %b wird ersetzt mit dem Nachrichtentext.',
+
+ 'BookmarksBookmarks' => 'Lesezeichen',
+ 'BookmarksFolder' => 'Verzeichnis',
+ 'BookmarksLabel' => 'Beschriftung',
+ 'BookmarksPath' => 'Pfad',
+ 'BookmarksNewFolder' => 'Neues Verzeichnis',
+
+ 'AdvancedSearchType' => 'Art der Suche',
+ 'AdvancedSearchTypeAnd' => 'Elemente, die alle Kriterien erfüllen', # Accepts model codes
+ 'AdvancedSearchTypeOr' => 'Elemente, die mindestens ein Kriterium erfüllen', # Accepts model codes
+ 'AdvancedSearchCriteria' => 'Suchkriterium',
+ 'AdvancedSearchAnyField' => 'In allen Elementen',
+ 'AdvancedSearchSaveTitle' => 'Suchanfrage speichern',
+ 'AdvancedSearchSaveName' => 'Name',
+ 'AdvancedSearchSaveOverwrite' => 'Es existiert bereits eine Suchanfrage mit diesem Namen. Bitte nutzen Sie einen anderen.',
+ 'AdvancedSearchUseCase' => 'Groß/Kleinschreibung beachten',
+ 'AdvancedSearchIgnoreDiacritics' => 'Sonderzeichen ignorieren',
+
+ 'BugReportSubject' => 'Fehlermeldung erstellt von GCstar',
+ 'BugReportVersion' => 'Version',
+ 'BugReportPlatform' => 'Betriebssystem',
+ 'BugReportMessage' => 'Fehlermeldung',
+ 'BugReportInformation' => 'Zusätzliche Informationen',
+
+#Statistics
+ 'StatsFieldToUse' => 'Auszuwertendes Feld',
+ 'StatsSortByNumber' => 'Nach Anzahl der {X} sortieren',
+ 'StatsGenerate' => 'Erzeugen',
+ 'StatsKindOfGraph' => 'Diagrammart',
+ 'StatsBars' => 'Balken',
+ 'StatsPie' => 'Kuchen',
+ 'Stats3DPie' => '3D Kuchen',
+ 'StatsArea' => 'Fläche',
+ 'StatsHistory' => 'Häufigkeitsverteilung',
+ 'StatsWidth' => 'Breite',
+ 'StatsHeight' => 'Höhe',
+ 'StatsFontSize' => 'Schriftgröße',
+ 'StatsDisplayNumber' => 'Häufigkeiten eintragen',
+ 'StatsSave' => 'Diagramm als Grafik speichern',
+ 'StatsAccumulate' => 'Werte zusammenzählen',
+ 'StatsShowAllDates' => 'alle Daten berücksichtigen',
+
+ 'DefaultValuesTip' => 'Values set in this window will be used as the default values when creating a new {1}',
+ );
+}
+1;