summaryrefslogtreecommitdiff
path: root/lib/gcstar/GCLang/IT
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gcstar/GCLang/IT')
-rw-r--r--lib/gcstar/GCLang/IT/GCExport/GCExportCSV.pm47
-rw-r--r--lib/gcstar/GCLang/IT/GCExport/GCExportExternal.pm38
-rw-r--r--lib/gcstar/GCLang/IT/GCExport/GCExportHTML.pm71
-rw-r--r--lib/gcstar/GCLang/IT/GCExport/GCExportPDB.pm38
-rw-r--r--lib/gcstar/GCLang/IT/GCExport/GCExportSQL.pm47
-rw-r--r--lib/gcstar/GCLang/IT/GCExport/GCExportTarGz.pm44
-rw-r--r--lib/gcstar/GCLang/IT/GCExport/GCExportXML.pm48
-rw-r--r--lib/gcstar/GCLang/IT/GCImport/GCImportAlexandria.pm46
-rw-r--r--lib/gcstar/GCLang/IT/GCImport/GCImportCSV.pm49
-rw-r--r--lib/gcstar/GCLang/IT/GCImport/GCImportFolder.pm68
-rw-r--r--lib/gcstar/GCLang/IT/GCImport/GCImportGCstar.pm44
-rw-r--r--lib/gcstar/GCLang/IT/GCImport/GCImportList.pm49
-rw-r--r--lib/gcstar/GCLang/IT/GCImport/GCImportScanner.pm50
-rw-r--r--lib/gcstar/GCLang/IT/GCImport/GCImportTellico.pm44
-rw-r--r--lib/gcstar/GCLang/IT/GCModels/GCTVepisodes.pm48
-rw-r--r--lib/gcstar/GCLang/IT/GCModels/GCTVseries.pm52
-rw-r--r--lib/gcstar/GCLang/IT/GCModels/GCboardgames.pm86
-rw-r--r--lib/gcstar/GCLang/IT/GCModels/GCbooks.pm77
-rw-r--r--lib/gcstar/GCLang/IT/GCModels/GCcoins.pm110
-rw-r--r--lib/gcstar/GCLang/IT/GCModels/GCcomics.pm73
-rw-r--r--lib/gcstar/GCLang/IT/GCModels/GCfilms.pm99
-rw-r--r--lib/gcstar/GCLang/IT/GCModels/GCgames.pm89
-rw-r--r--lib/gcstar/GCLang/IT/GCModels/GCgeneric.pm42
-rw-r--r--lib/gcstar/GCLang/IT/GCModels/GCminicars.pm182
-rw-r--r--lib/gcstar/GCLang/IT/GCModels/GCmusics.pm75
-rw-r--r--lib/gcstar/GCLang/IT/GCModels/GCperiodicals.pm52
-rw-r--r--lib/gcstar/GCLang/IT/GCModels/GCsmartcards.pm108
-rw-r--r--lib/gcstar/GCLang/IT/GCModels/GCsoftware.pm84
-rw-r--r--lib/gcstar/GCLang/IT/GCModels/GCstamps.pm189
-rw-r--r--lib/gcstar/GCLang/IT/GCModels/GCwines.pm73
-rw-r--r--lib/gcstar/GCLang/IT/GCstar.pm678
-rw-r--r--lib/gcstar/GCLang/IT/README.txt9
32 files changed, 2809 insertions, 0 deletions
diff --git a/lib/gcstar/GCLang/IT/GCExport/GCExportCSV.pm b/lib/gcstar/GCLang/IT/GCExport/GCExportCSV.pm
new file mode 100644
index 0000000..2bc1adb
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCExport/GCExportCSV.pm
@@ -0,0 +1,47 @@
+{
+ package GCLang::IT::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
+#
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Header' => 'Aggiungere colonna',
+ 'Separator' => 'Delimitatore',
+ 'Replacement' => 'Ripeti delimitazione con',
+ 'Charset' => 'Charset',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCExport/GCExportExternal.pm b/lib/gcstar/GCLang/IT/GCExport/GCExportExternal.pm
new file mode 100644
index 0000000..47a2867
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCExport/GCExportExternal.pm
@@ -0,0 +1,38 @@
+{
+ package GCLang::IT::GCExport::GCExportExternal;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Name' => 'External disk',
+ 'ZipAll' => 'Put everything in a zipped file (.gcz)',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCExport/GCExportHTML.pm b/lib/gcstar/GCLang/IT/GCExport/GCExportHTML.pm
new file mode 100644
index 0000000..3045fa7
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCExport/GCExportHTML.pm
@@ -0,0 +1,71 @@
+{
+ package GCLang::IT::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
+#
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'ModelNotFound' => 'Invalid template file',
+ 'UseFile' => 'Use file specified below',
+ 'TemplateExternalFile' => 'Template file',
+ 'WithJS' => 'Usa Javascript',
+ 'FileTemplate' => 'Modello:',
+ 'Preview' => 'Anteprima',
+ 'NoPreview' => 'Anteprima non disponibilee',
+ 'Title' => 'Titolo pagina',
+ 'InfoFile' => 'La lista dei film è nel file : ',
+ 'InfoDir' => 'Immagini sono in : ',
+ 'HeightImg' => 'Altezza in pixel dell\'immagine da esportare :',
+ 'OpenFileInBrowser' => 'Apri il file generato nel web browser',
+ 'Note' => 'Lista generata con <a href="http://www.gcstar.org/">GCstar</a>',
+ 'InputTitle' => 'Immetti testo da cercare',
+ 'SearchType1' => 'Solo il titolo',
+ 'SearchType2' => 'Informazioni complete',
+ 'SearchButton' => 'Cerca',
+ 'SearchTitle' => 'Visualizza solo i film trovati con il criterio precedente',
+ 'AllButton' => 'Tutto',
+ 'AllTitle' => 'Visualizza tutti i film',
+ 'Expand' => 'Espandi tutto',
+ 'ExpandTitle' => 'Visualizza tutte le informazioni dei film',
+ 'Collapse' => 'Comprimi tutto',
+ 'CollapseTitle' => 'Comprimi tutte le informazioni dei film',
+ 'Borrowed' => 'Preso in prestito da: ',
+ 'NotBorrowed' => 'Disponibile',
+ 'Top' => 'In alto',
+ 'Bottom' => 'Bottom',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCExport/GCExportPDB.pm b/lib/gcstar/GCLang/IT/GCExport/GCExportPDB.pm
new file mode 100644
index 0000000..7b70074
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCExport/GCExportPDB.pm
@@ -0,0 +1,38 @@
+{
+ package GCLang::IT::GCExport::GCExportPDB;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Name' => 'Palm PDB',
+ 'DatabaseName' => 'Database name',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCExport/GCExportSQL.pm b/lib/gcstar/GCLang/IT/GCExport/GCExportSQL.pm
new file mode 100644
index 0000000..808a587
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCExport/GCExportSQL.pm
@@ -0,0 +1,47 @@
+{
+ package GCLang::IT::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
+#
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'WithDrop' => 'Includi istruzione DROP',
+ 'WithCreate' => 'Includi istruzione CREATE',
+ 'TableName' => 'Nome tabella',
+ 'InfoFile' => 'File SQL: ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCExport/GCExportTarGz.pm b/lib/gcstar/GCLang/IT/GCExport/GCExportTarGz.pm
new file mode 100644
index 0000000..2aaf1f4
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCExport/GCExportTarGz.pm
@@ -0,0 +1,44 @@
+{
+ package GCLang::IT::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
+#
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Info' => 'L\'archivio e\' in questo file: ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCExport/GCExportXML.pm b/lib/gcstar/GCLang/IT/GCExport/GCExportXML.pm
new file mode 100644
index 0000000..979b15e
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCExport/GCExportXML.pm
@@ -0,0 +1,48 @@
+{
+ package GCLang::IT::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
+#
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'ModelFile' => 'Modello file',
+ 'ModelText' => 'Modello testo',
+ 'Models' => 'Modello da usare',
+ 'UseFile' => 'Usa file',
+ 'UseModel' => 'Usa area di testo',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCImport/GCImportAlexandria.pm b/lib/gcstar/GCLang/IT/GCImport/GCImportAlexandria.pm
new file mode 100644
index 0000000..1d5f17d
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCImport/GCImportAlexandria.pm
@@ -0,0 +1,46 @@
+{
+ package GCLang::IT::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
+#
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Where' => 'Dove cercare',
+ 'Default' => 'Directory di Alexandria',
+ 'Specified' => 'Directory specificata piu\' sotto',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCImport/GCImportCSV.pm b/lib/gcstar/GCLang/IT/GCImport/GCImportCSV.pm
new file mode 100644
index 0000000..fb76914
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCImport/GCImportCSV.pm
@@ -0,0 +1,49 @@
+{
+ package GCLang::IT::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
+#
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Charset' => 'Charset',
+ 'Header' => 'Ignora la prima linea',
+ 'Separator' => 'Delimitatore',
+ 'Plugin' => 'Lato da utilizzare',
+ 'UseFirst' => 'In caso di piu\' risultati utilizza il primo',
+ 'SearchField' => 'Search for items using',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCImport/GCImportFolder.pm b/lib/gcstar/GCLang/IT/GCImport/GCImportFolder.pm
new file mode 100644
index 0000000..614da49
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCImport/GCImportFolder.pm
@@ -0,0 +1,68 @@
+{
+ package GCLang::IT::GCImport::GCImportFolder;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+ use GCLang::GCLangUtils;
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Name' => 'Folder',
+ 'Recursive' => 'Browse sub-folders',
+ 'Suffixes' => 'Suffixes or extensions of the files',
+ 'SuffixesTooltip' => 'A comma-separated list of suffixes or extensions of files to consider',
+ 'Remove' => 'To be removed from names',
+ 'RemoveTooltip' => 'A comma-seperated list of words that should be removed from file names to create the fetched names',
+ 'Ask'=> 'Ask',
+ 'AskEnd'=> 'Ask all at end',
+ 'AddWithoutInfo'=> 'Add without infos',
+ 'DontAdd'=> 'Do not add',
+ 'TakeFirst' => 'Select first',
+ 'MultipleResult'=> 'Multiple results',
+ 'MultipleResultTooltip'=> 'What do we do when more than 1 result is return by the plugin',
+ 'RemoveWholeWord' => 'Remove only whole words',
+ 'NoResult'=> 'No results',
+ 'NoResultTooltip'=> 'What do we do when no search results is return by the plugin',
+ 'RemoveTooltipWholeWord' => 'Words will be removed only if they appear as an entire word',
+ 'RemoveRegularExpr' => 'Regular expression',
+ 'RemoveTooltipRegularExpr' => 'Consider that \'To be removed from names\' is a perl regular expression',
+ 'SkipFileAlreadyInCollection' => 'Add new files only',
+ 'SkipFileAlreadyInCollectionTooltip' => 'Add only files not already in the collection',
+ 'SkipFileNo' => 'No',
+ 'SkipFileFullPath' => 'based on full path',
+ 'SkipFileFileName' => 'based on file name',
+ 'SkipFileFileNameAndUpdate' => 'based on file name (but update path in collection)',
+ 'InfoFromFileNameRegExp' => 'Parse file name with this regular expression',
+ 'InfoFromFileNameRegExpTooltip' => 'Use this to retrieve infos from filename (applied after removing extension).\nLeave empty if not needed.\nKnown fields : \n$T:Title, $A:Alphabetised title, $Y:Release date, $S:Season, $E:Episode, $N:Alphabetised serie name, $x:Part number, $y: Total part number',
+
+ );
+
+ # As this plugin shares some values with ImportList, it adds them from it
+ importTranslation('List');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCImport/GCImportGCstar.pm b/lib/gcstar/GCLang/IT/GCImport/GCImportGCstar.pm
new file mode 100644
index 0000000..8cd35fb
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCImport/GCImportGCstar.pm
@@ -0,0 +1,44 @@
+{
+ package GCLang::IT::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
+#
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'CopyPictures' => 'Copia immagini',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCImport/GCImportList.pm b/lib/gcstar/GCLang/IT/GCImport/GCImportList.pm
new file mode 100644
index 0000000..ec2da7a
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCImport/GCImportList.pm
@@ -0,0 +1,49 @@
+{
+ package GCLang::IT::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
+#
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Name' => 'Elenco dei titoli',
+ 'Plugin' => 'Lato da utilizzare',
+ 'UseFirst' => 'In caso di piu\' risultati utilizza il primo',
+ 'CommentAuto' => 'Articolo importato automaticamente.',
+ 'CommentSite' => 'Sito web: ',
+ 'CommentTitle' => 'Titolo: ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCImport/GCImportScanner.pm b/lib/gcstar/GCLang/IT/GCImport/GCImportScanner.pm
new file mode 100644
index 0000000..f7e6343
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCImport/GCImportScanner.pm
@@ -0,0 +1,50 @@
+{
+ package GCLang::IT::GCImport::GCImportScanner;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Name' => 'Barcode scanner',
+ 'Type' => 'Scanner type',
+ 'Local' => 'Local (used as a keyboard)',
+ 'Network' => 'Network (eg: GCstar Scanner for Android)',
+ 'Port' => 'Port to listen on',
+ 'Plugin' => 'Site to be used',
+ 'UseFirst' => 'Select first one if many results',
+ 'Waiting' => 'Waiting for barcode',
+ 'EAN' => 'Barcode',
+ 'ScanPrompt' => 'Scan an item or press on Done',
+ 'ScanOtherPrompt' => 'Scan another item or press on Done',
+ 'Previous' => '"%s" will be added.',
+ 'NothingFound' => 'Nothing was found for "%s". An empty item will be added.',
+ 'Terminate' => 'Done',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCImport/GCImportTellico.pm b/lib/gcstar/GCLang/IT/GCImport/GCImportTellico.pm
new file mode 100644
index 0000000..d20b7c3
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCImport/GCImportTellico.pm
@@ -0,0 +1,44 @@
+{
+ package GCLang::IT::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
+#
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'NotSupported' => 'Il file non contiene una collezione valida Tellico',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCModels/GCTVepisodes.pm b/lib/gcstar/GCLang/IT/GCModels/GCTVepisodes.pm
new file mode 100644
index 0000000..cc546b1
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCModels/GCTVepisodes.pm
@@ -0,0 +1,48 @@
+{
+ package GCLang::IT::GCModels::GCTVepisodes;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use GCLang::GCLangUtils;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'TV Shows (episodes) collection',
+ Items => {0 => 'Episode',
+ 1 => 'Episode',
+ X => 'Episodes'},
+ NewItem => 'New episode',
+ NewSeries => 'New series',
+ Episode => 'Episode',
+ );
+ # Both of them are required as importTranslation doesn't recurse
+ importTranslation('films');
+ importTranslation('TVseries');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCModels/GCTVseries.pm b/lib/gcstar/GCLang/IT/GCModels/GCTVseries.pm
new file mode 100644
index 0000000..1932fa5
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCModels/GCTVseries.pm
@@ -0,0 +1,52 @@
+{
+ package GCLang::IT::GCModels::GCTVseries;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use GCLang::GCLangUtils;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'TV Shows (series) collection',
+ Items => {0 => 'Series',
+ 1 => 'Series',
+ X => 'Series'},
+ NewItem => 'New series',
+ Name => 'Name',
+ Season => 'Season',
+ Part => 'Part',
+ Episodes => 'Episodes',
+ FirstAired => 'First Aired',
+ Time => 'Ep. Length',
+ Producer => 'Producer',
+ Music => 'Music',
+ );
+ importTranslation('Films');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCModels/GCboardgames.pm b/lib/gcstar/GCLang/IT/GCModels/GCboardgames.pm
new file mode 100644
index 0000000..1200981
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCModels/GCboardgames.pm
@@ -0,0 +1,86 @@
+{
+ package GCLang::IT::GCModels::GCboardgames;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Board games collection',
+ Items => {0 => 'Game',
+ 1 => 'Game',
+ X => 'Games'},
+ NewItem => 'New game',
+
+ Id => 'Id',
+ Name => 'Name',
+ Original => 'Original name',
+ Box => 'Box picture',
+ DesignedBy => 'Designed by',
+ PublishedBy => 'Published by',
+ Players => 'Number of players',
+ PlayingTime => 'Playing time',
+ SuggestedAge => 'Suggested age',
+ Released => 'Released',
+ Description => 'Description',
+ Category => 'Category',
+ Mechanics => 'Mechanics',
+ ExpandedBy => 'Expanded by',
+ ExpansionFor => 'Expansion for',
+ GameFamily => 'Game family',
+ IllustratedBy => 'Illustrated by',
+ Url => 'Web page',
+ TimesPlayed => 'Times played',
+ CompleteContents => 'Complete contents',
+ Copies => 'No. of copies',
+ Condition => 'Condition',
+ Photos => 'Photos',
+ Photo1 => 'First picture',
+ Photo2 => 'Second picture',
+ Photo3 => 'Third picture',
+ Photo4 => 'Fourth picture',
+ Comments => 'Comments',
+
+ Perfect => 'Perfect',
+ Good => 'Good',
+ Average => 'Average',
+ Poor => 'Poor',
+
+ CompleteYes => 'Complete contents',
+ CompleteNo => 'Missing pieces',
+
+ General => 'General',
+ Details => 'Details',
+ Personal => 'Personal',
+ Information => 'Information',
+
+ FilterRatingSelect => 'Rating At _Least...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCModels/GCbooks.pm b/lib/gcstar/GCLang/IT/GCModels/GCbooks.pm
new file mode 100644
index 0000000..b846c6f
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCModels/GCbooks.pm
@@ -0,0 +1,77 @@
+{
+ package GCLang::IT::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
+#
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Biblioteca',
+ Items => {0 => 'Libri',
+ 1 => 'Libri',
+ X => 'Libris'},
+ NewItem => 'Libro nuovo',
+
+ Isbn => 'ISBN',
+ Title => 'Titolo',
+ Cover => 'Copertina',
+ Authors => 'Autore(i)',
+ Publisher => 'Editore',
+ Publication => 'Data di pubblicazione',
+ Language => 'Lingua',
+ Genre => 'Genere',
+ Serie => 'Serie',
+ Rank => 'Rank',
+ Bookdescription => 'Descrizione',
+ Pages => 'Pagine',
+ Read => 'Letto',
+ Acquisition => 'Acquisito il',
+ Edition => 'Edizione',
+ Format => 'Formato',
+ Comments => 'Commenti',
+ Url => 'Pagina web',
+ Translator => 'Traduttore',
+ Artist => 'Scrittore',
+ DigitalFile => 'Digital version',
+
+ General => 'Generale',
+ Details => 'Dettagli',
+
+ ReadNo => 'Non letto',
+ ReadYes => 'Letto',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCModels/GCcoins.pm b/lib/gcstar/GCLang/IT/GCModels/GCcoins.pm
new file mode 100644
index 0000000..0f0d79d
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCModels/GCcoins.pm
@@ -0,0 +1,110 @@
+{
+ package GCLang::IT::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
+#
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Numismatica',
+ Items => {0 => 'Monete',
+ 1 => 'Monete',
+ X => 'Monete'},
+ NewItem => 'Moneta nuova',
+
+ Name => 'Nome',
+ Country => 'Stato',
+ Year => 'Anno',
+ Currency => 'Valuta',
+ Value => 'Valore',
+ Picture => 'Immagine',
+ Diameter => 'Diametro',
+ Metal => 'Metallo',
+ Edge => 'Profilo',
+ Edge1 => 'Profilo 1',
+ Edge2 => 'Profilo 2',
+ Edge3 => 'Profilo 3',
+ Edge4 => 'Profilo 4',
+ Head => 'Fronte',
+ Tail => 'Retro',
+ Comments => 'Commenti',
+ History => 'Storia',
+ Website => 'Sito Web',
+ Estimate => 'Stima',
+ References => 'Riferimenti',
+ Type => 'Tipo',
+ Coin => 'Moneta',
+ Banknote => 'Banconota',
+
+ Main => 'Principale',
+ Description => 'Descrizione',
+ Other => 'Altre informazioni',
+ Pictures => 'Immagini',
+
+ Condition => 'Condizioni (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/IT/GCModels/GCcomics.pm b/lib/gcstar/GCLang/IT/GCModels/GCcomics.pm
new file mode 100644
index 0000000..821debb
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCModels/GCcomics.pm
@@ -0,0 +1,73 @@
+{
+ package GCLang::IT::GCModels::GCcomics;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Comics collection',
+ Items => {0 => 'Comics',
+ 1 => 'Comic',
+ X => 'Comics'},
+ NewItem => 'New comic',
+
+
+ Id => 'Id',
+ Name => 'Name',
+ Series => 'Series',
+ Volume => 'Volume',
+ Title => 'Title',
+ Writer => 'Writer',
+ Illustrator => 'Illustrator',
+ Colourist => 'Colourist',
+ Publisher => 'Publisher',
+ Synopsis => 'Synopsis',
+ Collection => 'Collection',
+ PublishDate => 'Publish Date',
+ PrintingDate => 'Printing Date',
+ ISBN => 'ISBN',
+ Type => 'Type',
+ Category => 'Category',
+ Format => 'Format',
+ NumberBoards => 'Number of Boards',
+ Signing => 'Signing',
+ Cost => 'Cost',
+ Rating => 'Rating',
+ Comment => 'Comments',
+ Url => 'Web page',
+
+ FilterRatingSelect => 'Rating At _Least...',
+
+ Main => 'Main items',
+ General => 'General',
+ Details => 'Details',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCModels/GCfilms.pm b/lib/gcstar/GCLang/IT/GCModels/GCfilms.pm
new file mode 100644
index 0000000..b77dab7
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCModels/GCfilms.pm
@@ -0,0 +1,99 @@
+{
+ package GCLang::IT::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
+#
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+#
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Filmoteca',
+ Items => {0 => 'Film',
+ 1 => 'Film',
+ X => 'Film'},
+ NewItem => 'Nuovo film',
+
+ Id => 'Id',
+ Title => 'Titolo',
+ Date => 'Data',
+ Time => 'Durata',
+ Director => 'Regista',
+ Country => 'Nazione',
+ MinimumAge => 'Eta\' minima',
+ Genre => 'Genere',
+ Image => 'Immagine',
+ Original => 'Titolo originale',
+ Actors => 'Cast',
+ Actor => 'Actor',
+ Role => 'Role',
+ Comment => 'Commento',
+ Synopsis => 'Trama',
+ Seen => 'Gia\' visto',
+ Number => 'Numero',
+ Format => 'Tipo',
+ Region => 'Region',
+ Identifier => 'Identifier',
+ Url => 'URL',
+ Audio => 'Audio',
+ Video => 'Video',
+ Trailer => 'Trailer',
+ Serie => 'Serie',
+ Rank => 'Rank',
+ Subtitles => 'Sottotitoli',
+
+ SeenYes => 'Gia\' visto',
+ SeenNo => 'Non visto',
+
+ AgeUnrated => 'Sconosciuta',
+ AgeAll => 'Nessuna',
+ AgeParent => 'V.m.',
+
+ Main => 'Oggetti principali',
+ General => 'Informazioni film',
+ Details => 'Dettagli',
+
+ Information => 'Informazioni',
+ Languages => 'Lingua',
+ Encoding => 'Codifica',
+
+ FilterAudienceAge => 'Eta\' pubblico',
+ FilterSeenNo => '_Non visto',
+ FilterSeenYes => '_Gia\' visto',
+ FilterRatingSelect => 'Valutazione maggiore di...',
+
+ ExtractSize => 'Dimensione',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCModels/GCgames.pm b/lib/gcstar/GCLang/IT/GCModels/GCgames.pm
new file mode 100644
index 0000000..d005508
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCModels/GCgames.pm
@@ -0,0 +1,89 @@
+{
+ package GCLang::IT::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
+#
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Videogiochi',
+ Items => {0 => 'Giochi',
+ 1 => 'Giochi',
+ X => 'Giochi'},
+ NewItem => 'Nuovo gioco',
+
+ Id => 'Id',
+ Ean => 'EAN',
+ Name => 'Titolo',
+ Platform => 'Piattaforma',
+ Players => 'Numero giocatori',
+ Released => 'Data rilascio',
+ Editor => 'Editore',
+ Developer => 'Sviluppatore',
+ Genre => 'Genere',
+ Box => 'Scatola',
+ Case => 'Contenitore',
+ Manual => 'Manuale d\'istruzioni',
+ Completion => 'Completato (%)',
+ Executable => 'Executable',
+ Description => 'Descrizione',
+ Codes => 'Codici',
+ Code => 'Codice',
+ Effect => 'Effetto',
+ Secrets => 'Segreti',
+ Screenshots => 'Vista',
+ Screenshot1 => 'Prima vista',
+ Screenshot2 => 'Seconda vista',
+ Comments => 'Commenti',
+ Url => 'Pagina web',
+ Unlockables => 'Non bloccabili',
+ Unlockable => 'Bloccabile',
+ Howto => 'Come sbloccare',
+ Exclusive => 'Exclusive',
+ Resolutions => 'Display resolutions',
+ InstallationSize => 'Size',
+ Region => 'Region',
+ SerialNumber => 'Serial Number',
+
+ General => 'Generale',
+ Details => 'Dettagli',
+ Tips => 'Suggerimenti',
+ Information => 'Informatzioni',
+
+ FilterRatingSelect => 'Valutazioni, almeno...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCModels/GCgeneric.pm b/lib/gcstar/GCLang/IT/GCModels/GCgeneric.pm
new file mode 100644
index 0000000..6550088
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCModels/GCgeneric.pm
@@ -0,0 +1,42 @@
+{
+ package GCLang::IT::GCModels::GCgeneric;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ Items => {0 => 'Item',
+ 1 => 'Item',
+ X => 'Items'
+ },
+ NewItem => 'New item',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCModels/GCminicars.pm b/lib/gcstar/GCLang/IT/GCModels/GCminicars.pm
new file mode 100644
index 0000000..f635c44
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCModels/GCminicars.pm
@@ -0,0 +1,182 @@
+{
+ package GCLang::IT::GCModels::GCminicars;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2007 Tian
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Mini vehicles collection',
+ Items => {0 => 'Vehicle',
+ 1 => 'Vehicle',
+ X => 'Vehicles',
+ lowercase1 => 'vehicle',
+ lowercaseX => 'vehicles'
+ },
+ NewItem => 'New vehicle',
+ Currency => 'Currency',
+
+# Main fields
+
+ Main => 'Main information',
+
+ Name => 'Name',
+ Exchange => 'To be sold or exchanged',
+ Wanted => 'Wanted',
+ Rating1 => 'Main rating',
+ Picture1 => 'Main picture',
+ Scale => 'Scale',
+ Manufacturer => 'Manufacturer',
+ Constructor => 'Constructor',
+ Type1 => 'Type',
+ Modele => 'Model',
+ Version => 'Version',
+ Color => 'Model color',
+ Pub => 'Advertisement',
+ Year => 'Year',
+ Reference => 'Reference',
+ Kit => 'In kit form',
+ Transformation => 'Personal transformation',
+ Comments1 => 'Comments',
+
+# Details fields
+
+ Details => 'Details',
+
+ MiscCharacteristics => 'Miscellaneous characteristics',
+ Material => 'Material',
+ Molding => 'Molding',
+ Condition => 'Condition',
+ Edition => 'Edition',
+ Collectiontype => 'Collection name',
+ Serial => 'Series',
+ Serialnumber => 'Serial number',
+ Designed => 'Design date',
+ Madein => 'Manufacture date',
+ Box1 => 'Kind of box',
+ Box2 => 'Box description',
+ Containbox => 'Box contet',
+ Rating2 => 'Realism',
+ Rating3 => 'Finish',
+ Acquisition => 'Acquisition date',
+ Location => 'Acquisition place',
+ Buyprice => 'Acquisition price',
+ Estimate => 'Estimation',
+ Comments2 => 'Comments',
+ Decorationset => 'Decoration set',
+ Characters => 'Characters',
+ CarFromFilm => 'Movie car',
+ Filmcar => 'Movie related to the vehicle',
+ Filmpart => 'Movie part/episode',
+ Parts => 'Number of parts',
+ VehiculeDetails => 'Vehicule details',
+ Detailsparts => 'Details parts',
+ Detailsdecorations => 'Kind of decorations',
+ Decorations => 'Number of decorations',
+ Lwh => 'Length / Width / Height',
+ Weight => 'Weight',
+ Framecar => 'Chassis',
+ Bodycar => 'Bodywork',
+ Colormirror => 'Model color',
+ Interior => 'Interior',
+ Wheels => 'Wheels',
+ Registrationnumber1 => 'Front registration number',
+ Registrationnumber2 => 'Back registration number',
+ RacingCar => 'Racing car',
+ Course => 'Race',
+ Courselocation => 'Race place',
+ Courseyear => 'Race date',
+ Team => 'Team',
+ Pilots => 'Pilot(s)',
+ Copilots => 'Copilot(s)',
+ Carnumber => 'Vehicle number',
+ Pub2 => 'Advertisers',
+ Finishline => 'Finish ranking',
+ Steeringwheel => 'Position of steering wheel',
+
+
+# Catalogs fields
+
+ Catalogs => 'Catalogs',
+
+ OfficialPicture => 'Official picture',
+ Barcode => 'Barcode',
+ Referencemirror => 'Reference',
+ Year3 => 'Availability date',
+ CatalogCoverPicture => 'Cover',
+ CatalogPagePicture => 'Page',
+ Catalogyear => 'Catalog year',
+ Catalogedition => 'Catalog edition',
+ Catalogpage => 'Catalog page',
+ Catalogprice => 'Catalog price',
+ Personalref => 'Personal reference',
+ Websitem => 'Mini vehicle\'s manufacturer website',
+ Websitec => 'Actual vehicle\'s manufacturer website',
+ Websiteo => 'Useful link',
+ Comments3 => 'Comments',
+
+# Pictures fields
+
+ Pictures => 'Pictures',
+
+ OthersComments => 'General remarks',
+ OthersDetails => 'Other details',
+ Top1 => 'Above',
+ Back1 => 'Below',
+ AVG => 'Front Left',
+ AV => 'Front',
+ AVD => 'Front Right',
+ G => 'Left',
+ BOX => 'Box',
+ D => 'Right',
+ ARG => 'Back Left',
+ AR => 'Back',
+ ARD => 'Back Right',
+ Others => 'Misc',
+
+# PanelLending fields
+
+ LendingExplanation => 'Useful exchanges during temporary exhibitions',
+ PanelLending => 'Lendings (for exhibitions)',
+ Comments4 => 'Comments',
+
+# Realmodel fields
+
+ Realmodel => 'Actual vehicle',
+
+ Difference => 'Differences with miniature',
+ Front2 => 'Front',
+ Back2 => 'Back',
+ Comments5 => 'Comments',
+
+ References => 'References',
+
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCModels/GCmusics.pm b/lib/gcstar/GCLang/IT/GCModels/GCmusics.pm
new file mode 100644
index 0000000..8a1a13f
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCModels/GCmusics.pm
@@ -0,0 +1,75 @@
+{
+ package GCLang::IT::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
+#
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Musicoteca',
+ Items => {0 => 'Album',
+ 1 => 'Album',
+ X => 'Album'},
+ NewItem => 'Nuovo album',
+
+ Unique => 'ISRC/EAN',
+ Title => 'Titolo',
+ Cover => 'Copertina',
+ Artist => 'Artista',
+ Format => 'Formato',
+ Running => 'Durata',
+ Release => 'Data pubblicazione',
+ Genre => 'Genere',
+ Origin => 'Origin',
+
+#For tracks list
+ Tracks => 'Lista tracce',
+ Number => 'Numero',
+ Track => 'Titolo',
+ Time => 'Tempo',
+
+ Composer => 'Compositore',
+ Producer => 'Produttore',
+ Playlist => 'Playlist',
+ Comments => 'Commenti',
+ Label => 'Etichetta',
+ Url => 'WPagina web',
+
+ General => 'Generale',
+ Details => 'Dettagli',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCModels/GCperiodicals.pm b/lib/gcstar/GCLang/IT/GCModels/GCperiodicals.pm
new file mode 100644
index 0000000..d5d1446
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCModels/GCperiodicals.pm
@@ -0,0 +1,52 @@
+{
+ package GCLang::IT::GCModels::GCperiodicals;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Periodicals collection',
+ Items => {0 => 'Periodical',
+ 1 => 'Periodical',
+ X => 'Periodicals'},
+ NewItem => 'New periodical',
+
+ Title => 'Title',
+ Cover => 'Cover',
+ Periodical => 'Periodical',
+ Number => 'Number',
+ Date => 'Date',
+ Subject => 'Subject',
+ Articles => 'Articles',
+
+ General => 'General',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCModels/GCsmartcards.pm b/lib/gcstar/GCLang/IT/GCModels/GCsmartcards.pm
new file mode 100644
index 0000000..ad7d61b
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCModels/GCsmartcards.pm
@@ -0,0 +1,108 @@
+{
+ package GCLang::IT::GCModels::GCsmartcards;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Tian
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Smart card collection',
+ Items => {0 => 'Smart card',
+ 1 => 'Smart card',
+ X => 'Smart cards'},
+ NewItem => 'New smart card',
+ Currency => 'Currency',
+
+ Help => 'Help for fields',
+ Help1 => 'Help',
+
+# Traduction des Champs "Main"
+
+ Main => 'The smart card',
+
+ Cover => 'Picture',
+
+ Name => 'Name',
+ Exchange => 'To be exchanged or sold',
+ Wanted => 'Wanted',
+ Rating1 => 'Global rating',
+ TheSmartCard => 'The smart card, front/back',
+
+ Country => 'Country',
+ Color => 'Color',
+ Type1 => 'Card type',
+ Type2 => 'Chip type',
+ Dimension => 'Length / Width / Thickness',
+
+ Box => 'Box',
+ Chip => 'Chip',
+ Year1 => 'Edition year',
+ Year2 => 'Validity year',
+ Condition => 'Condition',
+ Charge => 'Rechargeable card',
+ Variety => 'Variety',
+
+ Edition => 'Number of exemplars',
+ Serial => 'Serial number',
+ Theme => 'Theme',
+
+ Acquisition => 'Acquired on',
+
+ Catalog0 => 'Catalog',
+ Catalog1 => 'Phonecote / Infopuce (YT)',
+ Catalog2 => 'La Cote en Poche',
+
+ Reference0 => 'Reference',
+ Reference1 => 'Reference Phonecote / Infopuce (YT)',
+ Reference2 => 'Reference La Cote en Poche',
+ Reference3 => 'Other reference',
+
+ Quotationnew00 => 'Quotation for new card',
+ Quotationnew10 => 'Quotation Phonecote / Infopuce (YT)',
+ Quotationnew20 => 'Quotation La Cote en Poche',
+ Quotationnew30 => 'Cotation Autre',
+ Quotationold00 => 'Quotation for used card',
+ Quotationold10 => 'Quotation Phonecote / Infopuce (YT)',
+ Quotationold20 => 'Quotation La Cote en Poche',
+ Quotationold30 => 'Other quotation',
+
+ Title1 => 'Title',
+
+ Unit => 'Units / Minutes number',
+
+ Pressed => 'Impression type',
+ Location => 'Impression place',
+
+ Comments1 => 'Comments',
+
+ Others => 'Misc.',
+ Weight => 'Weight',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCModels/GCsoftware.pm b/lib/gcstar/GCLang/IT/GCModels/GCsoftware.pm
new file mode 100644
index 0000000..335390d
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCModels/GCsoftware.pm
@@ -0,0 +1,84 @@
+{
+ package GCLang::IT::GCModels::GCsoftware;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2009 Tian
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Computer software collection',
+ Items => {0 => 'Application',
+ 1 => 'Application',
+ X => 'Applications',
+ lowercase1 => 'application',
+ lowercaseX => 'applications'},
+ NewItem => 'New application',
+
+ Id => 'Id',
+ Ean => 'EAN',
+ Name => 'Name',
+ Platform => 'Platform',
+ Released => 'Release date',
+ Homepage => 'Homepage',
+ Editor => 'Editor',
+ Developer => 'Developer',
+ Category => 'Category',
+ NumberOfCopies => 'Copies',
+ Price => 'Price',
+ Box => 'Box picture',
+ Case => 'Case',
+ Manual => 'Instruction manual',
+ Executable => 'Executable',
+ Description => 'Description',
+ License => 'License',
+ Commercial => 'Commercial',
+ FreewareNoncommercial => 'Freeware (non-commercial use)',
+ OtherOpenSource => 'Other Open Source',
+ PublicDomain => 'Public Domain',
+ OtherLicense => 'Other',
+ Registration => 'Registration',
+ RegistrationInfo => 'Registration Info',
+ RegInfo => 'Registration Info',
+ RegistrationName => 'Username',
+ RegistrationNumber => 'Registration Number',
+ PanelRegistration => 'Registration Info',
+ RegistrationComments => 'Additional info or comments',
+ Screenshots => 'Screenshots',
+ Screenshot1 => 'First screenshot',
+ Screenshot2 => 'Second screenshot',
+ Comments => 'Comments',
+ Url => 'Web page',
+ General => 'General',
+ Details => 'Details',
+ Information => 'Information',
+
+ FilterRatingSelect => 'Rating At _Least...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCModels/GCstamps.pm b/lib/gcstar/GCLang/IT/GCModels/GCstamps.pm
new file mode 100644
index 0000000..bec04a6
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCModels/GCstamps.pm
@@ -0,0 +1,189 @@
+{
+ package GCLang::IT::GCModels::GCstamps;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2007 Tian
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Stamp collection',
+ Items => {0 => 'Stamps',
+ 1 => 'Stamp',
+ X => 'Stamps'},
+ NewItem => 'New stamp',
+
+ General => 'General',
+ Detail => 'Detail',
+ Value => 'Value',
+ Notes => 'Notes',
+ Views => 'Views',
+
+ Name => 'Name',
+ Country => 'Country',
+ Year => 'Year',
+ Catalog => 'Catalog',
+ Number => 'Number',
+ Topic => 'Topic',
+ Serie => 'Serie',
+ Designer => 'Designer',
+ Engraver => 'Engraver',
+ Type => 'Type',
+ Format => 'Format',
+ Description => 'Description',
+ Color => 'Color',
+ Gum => 'Gum',
+ Paper => 'Paper',
+ Perforation => 'Perforation',
+ PerforationSize => 'Perforation size',
+ CancellationType => 'Cancellation type',
+ Comments => 'Comments',
+ PrintingVariety => 'Printing variety',
+ IssueDate => 'Issue date',
+ EndOfIssue => 'End of issue',
+ Issue => 'Issue',
+ Grade => 'Grade',
+ Status => 'Status',
+ Adjusted => 'Adjusted',
+ Cancellation => 'Cancellation',
+ CancellationCondition => 'Cancellation condition',
+ GumCondition => 'Gum condition',
+ PerforationCondition => 'Perforation condition',
+ ConditionNotes => 'Condition notes',
+ Error => 'Error',
+ ErrorNotes => 'Error notes',
+ FaceValue => 'Face value',
+ MintValue => 'Mint value',
+ UsedValue => 'Used value',
+ PurchasedDate => 'Purchased date',
+ Quantity => 'Quantity',
+ History => 'History',
+ Picture1 => 'Picture 1',
+ Picture2 => 'Picture 2',
+ Picture3 => 'Picture 3',
+
+ AirMail => 'Air mail',
+ MilitaryStamp => 'Military stamp',
+ Official => 'Official',
+ PostageDue => 'Postage due',
+ Regular => 'Regular',
+ Revenue => 'Revenue',
+ SpecialDelivery => 'Special delivery',
+ StrikeStamp => 'Strike stamp',
+ TelegraphStamp => 'Telegraph stamp',
+ WarStamp => 'War stamp',
+ WarTaxStamp => 'War tax stamp',
+
+ Booklet => 'Booklet',
+ BookletPane => 'Booklet Pane',
+ Card => 'Card',
+ Coil => 'Coil',
+ Envelope => 'Envelope',
+ FirstDayCover => 'First Day Cover',
+ Sheet => 'Sheet',
+ Single => 'Single',
+
+ Heliogravure => 'Heliogravure',
+ Lithography => 'Lithography',
+ Offset => 'Offset',
+ Photogravure => 'Photogravure',
+ RecessPrinting => 'Recess printing',
+ Typography => 'Typography',
+
+ OriginalGum => 'Original gum',
+ Ungummed => 'Ungummed',
+ Regummed => 'Regummed',
+
+ Chalky => 'Chalky',
+ ChinaPaper => 'China paper',
+ Coarsed => 'Coarsed',
+ Glossy => 'Glossy',
+ Granite => 'Granite',
+ Laid => 'Laid',
+ Manila => 'Manila',
+ Native => 'Native',
+ Pelure => 'Pelure',
+ Quadrille => 'Quadrille',
+ Ribbed => 'Ribbed',
+ Rice => 'Rice',
+ Silk => 'Silk',
+ Smoothed => 'Smoothed',
+ Thick => 'Thick',
+ Thin => 'Thin',
+ Wove => 'Wove',
+
+ CoarsedPerforation => 'Coarsed perforation',
+ CombPerforation => 'Comb perforation',
+ CompoundPerforation => 'Compound perforation',
+ DamagedPerforation => 'Damaged perforation',
+ DoublePerforation => 'Double perforation',
+ HarrowPerforation => 'Harrow perforation',
+ LinePerforation => 'Line perforation',
+ NoPerforation => 'No perforation',
+
+ CancellationToOrder => 'Cancellation To Order',
+ FancyCancellation => 'Fancy cancellation',
+ FirstDayCancellation => 'First Day cancellation',
+ NumeralCancellation => 'Numeral cancellation',
+ PenMarked => 'Pen-Marked',
+ RailroadCancellation => 'Railroad cancellation',
+ SpecialCancellation => 'Special cancellation',
+
+ Superb => 'Superb',
+ ExtraFine => 'Extra-Fine',
+ VeryFine => 'Very fine',
+ FineVeryFine => 'Fine/Very fine',
+ Fine => 'Fine',
+ Average => 'Average',
+ Poor => 'Poor',
+
+ Owned => 'Owned',
+ Ordered => 'Ordered',
+ Sold => 'Sold',
+ ToSell => 'To sell',
+ Wanted => 'Wanted',
+
+ LightCancellation => 'Light cancellation',
+ HeavyCancellation => 'Heavy cancellation',
+ ModerateCancellation => 'Moderate cancellation',
+
+ MintNeverHinged => 'Mint never hinged',
+ MintLightHinged => 'Mint light hinged',
+ HingedRemnant => 'Hinged remnant',
+ HeavilyHinged => 'Heavily hinged',
+ LargePartOriginalGum => 'Large part original gum',
+ SmallPartOriginalGum => 'Small part original gum',
+ NoGum => 'No gum',
+
+ Perfect => 'Perfect',
+ VeryNice => 'Very nice',
+ Nice => 'Nice',
+ Incomplete => 'Incomplete',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCModels/GCwines.pm b/lib/gcstar/GCLang/IT/GCModels/GCwines.pm
new file mode 100644
index 0000000..ced6664
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCModels/GCwines.pm
@@ -0,0 +1,73 @@
+{
+ package GCLang::IT::GCModels::GCwines;
+
+ use utf8;
+
+# Copyright 2007 Yves Martin
+
+#######################################################
+#
+# v2.0.12 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Enoteca',
+ Items => {0 => 'Vini',
+ 1 => 'Vini',
+ X => 'Vini'},
+ NewItem => 'Nuovo vino',
+
+ Name => 'Nome',
+ Designation => 'Designazione',
+ Vintage => 'Annata',
+ Vineyard => 'Vigna',
+ Type => 'Tipo',
+ Grapes => 'Uve',
+ Soil => 'Suolo',
+ Producer => 'Produttore',
+ Country => 'Nazione',
+ Volume => 'Capacita\' (ml)',
+ Alcohol => 'Gradazione alc. (%)',
+ Medal => 'Premi',
+
+ Storage => 'Conservazione',
+ Location => 'Localizzazione',
+ ShelfIndex => 'Indice',
+ Quantity => 'Quantita\'',
+ Acquisition => 'Acquisizione',
+ PurchaseDate => 'Data acquisto',
+ PurchasePrice => 'Prezzo',
+ Gift => 'Omaggio',
+ BottleLabel => 'Etichetta',
+ Website => 'Riferimento sul web',
+
+ Tasted => 'Assaggiato',
+ Comments => 'Commenti',
+ Serving => 'Da servire',
+ TastingField => 'Note',
+
+ General => 'Generali',
+ Details => 'Detttagli',
+ Tasting => 'Assaggio',
+
+ TastedNo => 'Non assaggiato',
+ TastedYes => 'Assaggiato',
+
+ FilterRange => 'Campo',
+ FilterTastedNo => '_Non ancora assaggiato',
+ FilterTastedYes => 'Gia\' assaggia_to',
+ FilterRatingSelect => 'Valutato a_lmeno...'
+
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/IT/GCstar.pm b/lib/gcstar/GCLang/IT/GCstar.pm
new file mode 100644
index 0000000..fade2d1
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/GCstar.pm
@@ -0,0 +1,678 @@
+{
+ package GCLang::IT;
+
+ 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
+#
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+#
+# 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' => 'Italiano',
+
+ 'Separator' => ': ',
+
+ 'Warning' => '<b>Attenzione</b>:
+
+Le informazioni scaricate dai siti Internet (con i plugin di ricerca) sono previste
+<b>esclusivamente per l\'uso personale</b>.
+
+La loro redistributione senza l\'esplicita autorizzazione scritta dei siti web e\'
+<b>severamente vietata!</b> e viene penalmente perseguita!
+
+Per determinare il sito web proprietario delle informazioni consultare l\'etichetta <b>[dettagli]</b>.',
+
+ 'AllItemsFiltered' => 'Nessun articolo soddisfa ai criteri di filtro selezionati', # Accepts model codes
+
+#Installation
+ 'InstallDirInfo' => 'Installazione in ',
+ 'InstallMandatory' => 'Componenti obbligatorie',
+ 'InstallOptional' => 'Componenti opzionali',
+ 'InstallErrorMissing' => 'Errore : Occorre installare le seguenti componenti Perl: ',
+ 'InstallPrompt' => 'Directory radice d\'installazione [es. /usr/local]: ',
+ 'InstallEnd' => 'Installazione terminata',
+ 'InstallNoError' => 'Nessun errore',
+ 'InstallLaunch' => 'Per utilizzare questa applicazione si puo\' lanciare ',
+ 'InstallDirectory' => 'Directory radice',
+ 'InstallTitle' => 'Installazione di GCstar',
+ 'InstallDependencies' => 'Dipendenze',
+ 'InstallPath' => 'Percorso',
+ 'InstallOptions' => 'Opzioni',
+ 'InstallSelectDirectory' => 'Selezionare la directory radice per l\'installazione',
+ 'InstallWithClean' => 'Rimuovere i file trovati nella directory di installazione',
+ 'InstallWithMenu' => 'Aggiungere GCstar al menu\' Applicazioni',
+ 'InstallNoPermission' => 'Errore: Diritti di scrittura mancanti per la directory selezionata',
+ 'InstallMissingMandatory' => 'Alcune dipendenze necessarie sono mancanti. Non e\' possibile installare GCstar sinche\' esse non sono presenti nel sistema.',
+ 'InstallMissingOptional' => 'Mancano alcune dipendenze opzionali, elencate qui sotto. GCstar verra\' installato ma alcune funzioni non saranno disponibili.',
+ 'InstallMissingNone' => 'Tutte le dipendenze sono soddisfatte. Continuare con l\'installazione di GCstar.',
+ 'InstallOK' => 'OK',
+ 'InstallMissing' => 'Mancante',
+ 'InstallMissingFor' => 'Mancante per',
+ 'InstallCleanDirectory' => 'Rimozione dei file di GCStar dalla directory: ',
+ 'InstallCopyDirectory' => 'Copia dei file nella directory: ',
+ 'InstallCopyDesktop' => 'Copia dei file di desktop in: ',
+
+#Update
+ 'UpdateUseProxy' => 'Proxy (premere Invio se nessuno): ',
+ 'UpdateNoPermission' => 'Diritti di scrittura negati per questa directory: ',
+ 'UpdateNone' => 'Non e\' stato trovato alcun aggiornamento',
+ 'UpdateFileNotFound' => 'File non trovato',
+
+#Splash
+ 'SplashInit' => 'Inizializzazione',
+ 'SplashLoad' => 'Caricamento Collezione',
+ 'SplashDisplay' => 'Visualizzazione Collezione',
+ 'SplashSort' => 'Ordinamento Collezione',
+ 'SplashDone' => 'Finito!',
+
+#Import from GCfilms
+ 'GCfilmsImportQuestion' => 'Sono stati individuati elementi di GCfilms. Cosa si vuole importare di GCfilms in GCstar? (e\' comunque possibile continuare ad utilizzare GCfilms in parallelo)',
+ 'GCfilmsImportOptions' => 'Impostazioni',
+ 'GCfilmsImportData' => 'Collezione film',
+
+#Menus
+ 'MenuFile' => 'File',
+ 'MenuNewList' => '_Nuova collezione',
+ 'MenuStats' => 'Statistiche',
+ 'MenuHistory' => 'Ultime collezioni aperte',
+ 'MenuLend' => 'Visualizza articoli prestati', # Accepts model codes
+ 'MenuImport' => '_Importa',
+ 'MenuExport' => '_Esporta',
+ 'MenuAddItem' => '_Aggiungi articolo', # Accepts model codes
+
+ 'MenuEdit' => 'Modifica',
+ 'MenuDuplicate' => '_Duplica articolo', # Accepts model codes
+ 'MenuDuplicatePlural' => 'Du_plica articoli', # Accepts model codes
+ 'MenuEditSelectAllItems' => 'Seleziona tutti gli articoli', # Accepts model codes
+ 'MenuEditDeleteCurrent' => '_Rimuovi articolo corrente',, # Accepts model codes
+ 'MenuEditDeleteCurrentPlural' => '_Rimuovi articolo', # Accepts model codes
+ 'MenuEditFields' => '_Cambia campi della collezione',
+ 'MenuEditLockItems' => 'B_locca la collezione',
+
+ 'MenuDisplay' => 'F_iltri',
+ 'MenuSavedSearches' => 'Ricerche salvate',
+ 'MenuSavedSearchesSave' => 'Salva ricerca corrente',
+ 'MenuSavedSearchesEdit' => 'Modifica ricerche salvate',
+ 'MenuAdvancedSearch' => 'Ricerca Avanzata',
+ 'MenuViewAllItems' => 'Mostr_a tutti gli articoli', # Accepts model codes
+ 'MenuNoFilter' => 'Tutti',
+
+ 'MenuConfiguration' => 'Configurazione',
+ 'MenuDisplayMenu' => 'Display',
+ 'MenuDisplayFullScreen' => 'Full screen',
+ 'MenuDisplayMenuBar' => 'Menus',
+ 'MenuDisplayToolBar' => 'Toolbar',
+ 'MenuDisplayStatusBar' => 'Bottom bar',
+ 'MenuDisplayOptions' => 'Visualizzazione articoli',
+ 'MenuBorrowers' => 'Gestione prestiti',
+ 'MenuToolbarConfiguration' => 'Configura _Toolbar',
+ 'MenuDefaultValues' => 'Default values for new item', # Accepts model codes
+ 'MenuGenresConversion' => '_Conversione di Genere',
+
+ 'MenuBookmarks' => '_Collezioni',
+ 'MenuBookmarksAdd' => '_Aggiungi collezione corrente',
+ 'MenuBookmarksEdit' => '_Edita collezioni selezionate',
+
+ 'MenuHelp' => '?',
+ 'MenuHelpContent' => 'Contenuti',
+ 'MenuAllPlugins' => 'Mostra _plugin',
+ 'MenuBugReport' => 'Segnala un _bug',
+ 'MenuAbout' => 'Su GCstar',
+
+ 'MenuNewWindow' => 'Visulizza articoli in una nuova finestra', # Accepts model codes
+ 'MenuNewWindowPlural' => 'Visulizza articoli in una nuova finestra', # Accepts model codes
+
+ 'ContextExpandAll' => 'Espandi tutti',
+ 'ContextCollapseAll' => 'Collassa tutti',
+ 'ContextChooseImage' => 'Scegli _Immagine',
+ 'ContextOpenWith' => 'Apri con ...',
+ 'ContextImageEditor' => 'Modifica Immagine',
+ 'ContextImgFront' => 'Fronte',
+ 'ContextImgBack' => 'Retro',
+ 'ContextChooseFile' => 'Scegli file',
+ 'ContextChooseFolder' => 'Scegli cartella',
+
+ 'DialogEnterNumber' => 'Immettere valore',
+
+ 'RemoveConfirm' => 'Desideri davvero rimuovere questo articolo?', # Accepts model codes
+ 'RemoveConfirmPlural' => 'Desideri davvero rimuovere questi articoli?', # Accepts model codes
+ 'DefaultNewItem' => 'Nuovo articolo', # Accepts model codes
+ 'NewItemTooltip' => 'Aggiungi un nuovo articolo', # Accepts model codes
+ 'NoItemFound' => 'Nessun articolo trovato. Effettuare una ricerca su un altro sito?',
+ 'OpenList' => 'Scegliere collezione',
+ 'SaveList' => 'Scegli il nome e dove salvare la collezione',
+ 'SaveListTooltip' => 'Salva collezione corrente',
+ 'SaveUnsavedChanges' => 'Ci sono modifiche alla collezione non ancora salvate. Salvarle?',
+ 'SaveDontSave' => 'Non salvare',
+ 'PreferencesTooltip' => 'Impostazione preferenze',
+ 'ViewTooltip' => 'Cambia visualizzazione',
+ 'PlayTooltip' => 'Mostra il video associato all\'articolo', # Accepts model codes
+ 'PlayFileNotFound' => 'Il file da riprodurre non è stato trovato nella posizione:',
+ 'PlayRetry' => 'Riprova',
+
+ 'StatusSave' => 'Salvataggio...',
+ 'StatusLoad' => 'Caricamento...',
+ 'StatusSearch' => 'Ricerca in atto...',
+ 'StatusGetInfo' => 'Recupero informazioni...',
+ 'StatusGetImage' => 'Recupero immagine...',
+
+ 'SaveError' => 'Impossibile salvare la collezione! Controllare i diritti di accesso e lo spazio libero sul disco.',
+ 'OpenError' => 'Impossibile caricare la collezione! Controllare i diritti di accesso.',
+ 'OpenFormatError' => 'Impossibile interpretare la collezione! Formato probabilmente scorretto.',
+ 'OpenVersionWarning' => 'La collezione e\' stata creata con una versione piu\' recente di GCStar. Salvandola, potresti perdere dei dati.',
+ 'OpenVersionQuestion' => 'Sei sicuro di voler continuare?',
+ 'ImageError' => 'Directory non corretta! Selezionarne un\'altra.',
+ 'OptionsCreationError'=> 'Generazione file opzioni impossibile: ',
+ 'OptionsOpenError'=> 'Caricamento file opzioni impossibile: ',
+ 'OptionsSaveError'=> 'Salvataggio file opzioni impossibile: ',
+ 'ErrorModelNotFound' => 'Modello non trovato: ',
+ 'ErrorModelUserDir' => 'I modelli definiti dagli utenti sono in: ',
+
+ 'RandomTooltip' => 'Articoli non visti',
+ 'RandomError'=> 'Non ci sono articoli non visti', # Accepts model codes
+ 'RandomEnd'=> 'Non ci sono piu\' articoli', # Accepts model codes
+ 'RandomNextTip'=> 'Prossimo suggerimento',
+ 'RandomOkTip'=> 'Accetto questo articolo',
+
+ 'AboutTitle' => 'Su GCstar',
+ 'AboutDesc' => 'Manager di collezioni',
+ 'AboutVersion' => 'Versione',
+ 'AboutTeam' => 'Team',
+ 'AboutWho' => 'Christian Jodar (Tian) : Project Manager, Programmatore
+Nyall Dawson (Zombiepig) : Programmatore
+TPF : Programmatore
+Adolfo González : Programmatore
+',
+ 'AboutLicense' => 'Distribuito nei i termini della GNU GPL
+Logo Copyright le Spektre',
+ 'AboutTranslation' => 'Traduzione italiana v1.0.2 - 2006-05-04 di:
+Andreas Troschka - <swsolutions@om.it.eu.org>',
+ 'AboutDesign' => 'Łukasz Kowalczk (Qoolman): Skin Designer
+Logo e webdesign di le Spektre',
+
+ 'ToolbarRandom' => 'Non visti',
+
+ 'UnsavedCollection' => 'Collezione non salvata',
+ 'ModelsSelect' => 'Selezionare un modello/collezione',
+ 'ModelsPersonal' => 'Personali',
+ 'ModelsDefault' => 'Predefiniti',
+ 'ModelsList' => 'Definizione collezione',
+ 'ModelSettings' => 'Impostazioni della collezione',
+ 'ModelNewType' => 'Nuovo modello di collezione',
+ 'ModelName' => 'Nome modello di collezione:',
+ 'ModelFields' => 'Campi',
+ 'ModelOptions' => 'Opzioni',
+ 'ModelFilters' => 'Filtri',
+ 'ModelNewField' => 'Nuovo campo',
+ 'ModelFieldInformation' => 'Informazioni',
+ 'ModelFieldName' => 'Etichetta:',
+ 'ModelFieldType' => 'Tipo:',
+ 'ModelFieldGroup' => 'Gruppo:',
+ 'ModelFieldValues' => 'Valori',
+ 'ModelFieldInit' => 'Predefiniti:',
+ 'ModelFieldMin' => 'Minimo:',
+ 'ModelFieldMax' => 'Massimo:',
+ 'ModelFieldList' => 'Lista valori:',
+ 'ModelFieldListLegend' => '<i>separati da virgole</i>',
+ 'ModelFieldDisplayAs' => 'Mostra come:',
+ 'ModelFieldDisplayAsText' => 'Testo',
+ 'ModelFieldDisplayAsGraphical' => 'Rating Control',
+ 'ModelFieldTypeShortText' => 'Testo corto',
+ 'ModelFieldTypeLongText' => 'Testo lungo',
+ 'ModelFieldTypeYesNo' => 'Si/No',
+ 'ModelFieldTypeNumber' => 'Numero',
+ 'ModelFieldTypeDate' => 'Data',
+ 'ModelFieldTypeOptions' => 'Lista valori predefiniti',
+ 'ModelFieldTypeImage' => 'Immagine',
+ 'ModelFieldTypeSingleList' => 'Lista semplice',
+ 'ModelFieldTypeFile' => 'File',
+ 'ModelFieldTypeFormatted' => 'Dipendente da altri campi',
+ 'ModelFieldParameters' => 'Parametri',
+ 'ModelFieldHasHistory' => 'Utilizza la cronologia',
+ 'ModelFieldFlat' => 'Visualizza su una riga',
+ 'ModelFieldStep' => 'Passi di incremento:',
+ 'ModelFieldFileFormat' => 'Formato file:',
+ 'ModelFieldFileFile' => 'File semplice',
+ 'ModelFieldFileImage' => 'Immagine',
+ 'ModelFieldFileVideo' => 'Video',
+ 'ModelFieldFileAudio' => 'Audio',
+ 'ModelFieldFileProgram' => 'Programma',
+ 'ModelFieldFileUrl' => 'URL',
+ 'ModelFieldFileEbook' => 'Ebook',
+ 'ModelOptionsFields' => 'Campi da utilizzare',
+ 'ModelOptionsFieldsAuto' => 'Automatico',
+ 'ModelOptionsFieldsNone' => 'Nessuno',
+ 'ModelOptionsFieldsTitle' => 'Come titolo',
+ 'ModelOptionsFieldsId' => 'Come identificatore',
+ 'ModelOptionsFieldsCover' => 'Come copertina',
+ 'ModelOptionsFieldsPlay' => 'Per pulsante Play',
+ 'ModelCollectionSettings' => 'Impostazioni collezione',
+ 'ModelCollectionSettingsLending' => 'Prestabile',
+ 'ModelCollectionSettingsTagging' => 'Etichettabile',
+ 'ModelFilterActivated' => 'Nel box di ricerca',
+ 'ModelFilterComparison' => 'Comparazione',
+ 'ModelFilterContain' => 'Contiene',
+ 'ModelFilterDoesNotContain' => 'Non contiene',
+ 'ModelFilterRegexp' => 'Espressione regolare',
+ 'ModelFilterRange' => 'Campo',
+ 'ModelFilterNumeric' => 'Comparazione numerica',
+ 'ModelFilterQuick' => 'Creazione filtro veloce',
+ 'ModelTooltipName' => 'Specifica un nome per riutilizzare questo modello in altre collezioni. In caso di nome nullo le impostazioni verranno registrate dentro il file della collezione stessa, ma non saranno piu\' disponibili per altre collezioni.',
+ 'ModelTooltipLabel' => 'Il nome del campo cosi\' come deve essere visualizzato',
+ 'ModelTooltipGroup' => 'Utilizzato per raggruppare campi. Articoli con valore nullo verranno inseriti in un gruppo predefinito',
+ 'ModelTooltipHistory' => 'I valori precedentemente inseriti devono essere salvati in una lista associata al campo?',
+ 'ModelTooltipFormat' => 'Questo formato viene utilizzato per determinare l\'azione necessaria per aprire il file mediante il tasto Play',
+ 'ModelTooltipLending' => 'Aggiunge alcuni campi per la gestione dei prestiti',
+ 'ModelTooltipTagging' => 'Aggiunge alcuni campi per la gestione delle etichette (tags)',
+ 'ModelTooltipNumeric' => 'Nella comparazione i valori sono considerati numeri',
+ 'ModelTooltipQuick' => 'Aggiunge una voce di submenu\' nel menu\' filtri',
+
+ 'ResultsTitle' => 'Seleziona un articolo', # Accepts model codes
+ 'ResultsNextTip' => 'Cerca nel prossimo sito',
+ 'ResultsPreview' => 'Anteprima',
+ 'ResultsInfo' => 'Puoi utilizzare più risultati selezionandoli, tenendo premuto il tasto Ctrl o Shift', # Accepts model codes
+
+ 'OptionsTitle' => 'Preferenze',
+ 'OptionsExpertMode' => 'Modalita\' per esperti',
+ 'OptionsPrograms' => 'Specifica le applicazioni da utilizzare per i differenti media, lasciare vuoto per utilizzare quelle di sistema',
+ 'OptionsBrowser' => 'Web browser',
+ 'OptionsPlayer' => 'Video player',
+ 'OptionsAudio' => 'Audio player',
+ 'OptionsImageEditor' => 'Editor di immagini',
+ 'OptionsCdDevice' => 'Unita\' CD',
+ 'OptionsImages' => 'Indice di immagini',
+ 'OptionsUseRelativePaths' => 'Utilizza percorsi relativi per le immagini',
+ 'OptionsLayout' => 'Maschera',
+ 'OptionsStatus' => 'Visualizza la barra di stato in fondo alla finestra',
+ 'OptionsUseStars' => 'Usa stelle per mostrare l\'indice di gradimento',
+ 'OptionsWarning' => 'Attenzione: Le modifiche eventualmente appportate in questo pannello avranno effetto solo dopo il riavvio dell\' applicazione GCstar!!!',
+ 'OptionsRemoveConfirm' => 'Chiedi conferma prima di rimuovere un articolo dalla collezione',
+ 'OptionsAutoSave' => 'Salva automaticamente la collezione',
+ 'OptionsAutoLoad' => 'All\'avvio carica l\'ultima collezione trattata',
+ 'OptionsSplash' => 'Mostra splashscreen',
+ 'OptionsTearoffMenus' => 'Abilita il tear-off menu\'',
+ 'OptionsSpellCheck' => 'Use spelling checker for long text fields',
+ 'OptionsProgramTitle' => 'Seleziona il programma per essere usato',
+ 'OptionsPlugins' => 'Siti da utilizzare per le informazioni degli articoli',
+ 'OptionsAskPlugins' => 'Chiedi (Tutti i siti)',
+ 'OptionsPluginsMulti' => 'Diversi siti',
+ 'OptionsPluginsMultiAsk' => 'Chiedi (Diversi siti)',
+ 'OptionsPluginsMultiPerField' => 'Diversi siti (configurazione campi)',
+ 'OptionsPluginsMultiPerFieldWindowTitle' => 'Diversi siti (configurazione campi)',
+ 'OptionsPluginsMultiPerFieldDesc' => 'Per ciascun campo selezionato verra\' ritornata la prima informazione non vuota partendo da sinistra',
+ 'OptionsPluginsMultiPerFieldFirst' => 'Primo',
+ 'OptionsPluginsMultiPerFieldLast' => 'Ultimo',
+ 'OptionsPluginsMultiPerFieldRemove' => 'Rimuovi',
+ 'OptionsPluginsMultiPerFieldClearSelected' => 'Pulisci campi selezionati',
+ 'OptionsPluginsList' => 'Configura la lista',
+ 'OptionsAskImport' => 'Seleziona i campi da importare',
+ 'OptionsProxy' => 'Usa un proxy',
+ 'OptionsCookieJar' => 'Use questo cookie jar file',
+ 'OptionsLang' => 'Lingua',
+ 'OptionsMain' => 'Principale',
+ 'OptionsPaths' => 'Percorsi',
+ 'OptionsInternet' => 'Internet',
+ 'OptionsConveniences' =>'Strumenti',
+ 'OptionsDisplay' => 'Visualizzazione',
+ 'OptionsToolbar' => 'Toolbar',
+ 'OptionsToolbars' => {0 => 'Nessuno', 1 => 'Piccolo', 2 => 'Grande', 3 => 'System setting'},
+ 'OptionsToolbarPosition' => 'Posizione',
+ 'OptionsToolbarPositions' => {0 => 'In alto', 1 => 'In basso', 2 => 'A sinistra', 3 => 'A destra'},
+ 'OptionsExpandersMode' => 'Informazioni troppo lunghe',
+ 'OptionsExpandersModes' => {'asis' => 'Non fare niente', 'cut' => 'Taglia', 'wrap' => 'A capo automatico'},
+ 'OptionsDateFormat' => 'Date Format',
+ 'OptionsDateFormatTooltip' => 'Il formato è quello utilizzato dalla funzione strftime(3). Il valore di default è %d/%m/%Y',
+ 'OptionsView' => 'Visualizzazione articoli',
+ 'OptionsViews' => {0 => 'Testo', 1 => 'Immagine', 2 => 'Dettagli'},
+ 'OptionsColumns' => 'Colonne',
+ 'OptionsMailer' => 'Metodo di invio',
+ 'OptionsSMTP' => 'Server',
+ 'OptionsFrom' => 'Mittente e-mail',
+ 'OptionsTransform' => 'Mettere gli articoli alla fine dei titoli',
+ 'OptionsArticles' => 'Articoli (separare mediante virgola)',
+ 'OptionsSearchStop' => 'L\'utente può arrestare una ricerca',
+ 'OptionsBigPics' => 'Usa immagini grandi quando disponibili',
+ 'OptionsAlwaysOriginal' => 'Utilizza il titolo principale come originale in mancanza di uno specificato',
+ 'OptionsRestoreAccelerators' => 'Abilita combinazioni di tasti',
+ 'OptionsHistory' => 'Dimensione della cronologia',
+ 'OptionsClearHistory' => 'Cancella cronologia',
+ 'OptionsStyle' => 'Skin',
+ 'OptionsDontAsk' => 'Non chiedere piu\'',
+ 'OptionsPathProgramsGroup' => 'Applicazioni',
+ 'OptionsProgramsSystem' => 'Utilizza i programmi definiti dal sistema',
+ 'OptionsProgramsUser' => 'Utilizza i programmi specificati',
+ 'OptionsProgramsSet' => 'Impostazione programmi',
+ 'OptionsPathImagesGroup' => 'Immagini',
+ 'OptionsInternetDataGroup' => 'Importazione dati',
+ 'OptionsInternetSettingsGroup' => 'Impostazioni',
+ 'OptionsDisplayInformationGroup' => 'Informazioni',
+ 'OptionsDisplayArticlesGroup' => 'Articoli',
+ 'OptionsImagesDisplayGroup' => 'Display',
+ 'OptionsImagesStyleGroup' => 'Stile',
+ 'OptionsDetailedPreferencesGroup' => 'Preferenze',
+ 'OptionsFeaturesConveniencesGroup' => 'Conveniences',
+ 'OptionsPicturesFormat' => 'Prefisso per le immagini:',
+ 'OptionsPicturesFormatInternal' => 'gcstar__',
+ 'OptionsPicturesFormatTitle' => 'Titolo o nome dell\'articolo associato',
+ 'OptionsPicturesWorkingDir' => '%WORKING_DIR% o . verra\' rimpiazzato dal nome della directory della collezione (utilizza solo all\'inizio del percorso)',
+ 'OptionsPicturesFileBase' => '%FILE_BASE% verra\' rimpiazzato dal nome della collezione senza il suffisso (.gcs)',
+ 'OptionsPicturesWorkingDirError' => '%WORKING_DIR% puo\' essere utilizzato solo all\'inizio del percorso che punta alle immagini',
+ 'OptionsConfigureMailers' => 'Configura programmi di posta',
+
+ 'ImagesOptionsButton' => 'Impostazioni',
+ 'ImagesOptionsTitle' => 'Impostazioni della lista delle immagini',
+ 'ImagesOptionsSelectColor' => 'Seleziona un colore',
+ 'ImagesOptionsUseOverlays' => 'Use image overlays',
+ 'ImagesOptionsBg' => 'Sfondo',
+ 'ImagesOptionsBgPicture' => 'Usa un\'immagine come sfondo',
+ 'ImagesOptionsFg'=> 'Selezione',
+ 'ImagesOptionsBgTooltip' => 'Cambia colore di sfondo',
+ 'ImagesOptionsFgTooltip'=> 'Cambia il colore di selezione',
+ 'ImagesOptionsResizeImgList' => 'Cambia automaticamente il numero di colonne',
+ 'ImagesOptionsAnimateImgList' => 'Use animations',
+ 'ImagesOptionsSizeLabel' => 'Dimensione',
+ 'ImagesOptionsSizeList' => {0 => 'Ultra piccola', 1 => 'Piccola', 2 => 'Media', 3 => 'Grande', 4 => 'Extra Grande'},
+ 'ImagesOptionsSizeTooltip' => 'Seleziona dimensioni immagine',
+
+ 'DetailedOptionsTitle' => 'Impostazioni lista dettagliata',
+ 'DetailedOptionsImageSize' => 'Dimensioni immagine',
+ 'DetailedOptionsGroupItems' => 'Raggruppa gli articoli per',
+ 'DetailedOptionsSecondarySort' => 'Ordina gli articoli per',
+ 'DetailedOptionsFields' => 'Scegli i campi da visualizzare',
+ 'DetailedOptionsGroupedFirst' => 'Raggruppa insieme gli articoli orfani',
+ 'DetailedOptionsAddCount' => 'Aggiungi il numero di elementi alle categorie',
+
+ 'ExtractButton' => 'Informazioni',
+ 'ExtractTitle' => 'Informazioni file',
+ 'ExtractImport' => 'Utilizza i valori',
+
+ 'FieldsListOpen' => 'Caricare un elenco di campi da un file',
+ 'FieldsListSave' => 'Salvare un elenco di campi in un file',
+ 'FieldsListError' => 'L\'elenco di campi non puo\' essere utilizzato con questo modello di collezione',
+ 'FieldsListIgnore' => '--- Ignora',
+
+ 'ExportTitle' => 'Gestione elenco campi da esportare',
+ 'ExportFilter' => 'Esportare solo i campi visualizzati',
+ 'ExportFieldsTitle' => 'Campi da esportare',
+ 'ExportFieldsTip' => 'Campi prescelti per l\'esportazione',
+ 'ExportWithPictures' => 'Copiare le immagini in una sottodirectory',
+ 'ExportSortBy' => 'Ordina per',
+ 'ExportOrder' => 'Ordine',
+
+ 'ImportListTitle' => 'Importazione della collezione:',
+ 'ImportExportData' => 'Dati',
+ 'ImportExportFile' => 'Elenco',
+ 'ImportExportFieldsUnused' => 'Campi non selezionati',
+ 'ImportExportFieldsUsed' => 'Campi selezionati',
+ 'ImportExportFieldsFill' => 'Tutti i campi',
+ 'ImportExportFieldsClear' => 'Nessun campo',
+ 'ImportExportFieldsEmpty' => 'Occorre selezionare almeno un campo',
+ 'ImportExportFileEmpty' => 'Specificare un nome per il file',
+ 'ImportFieldsTitle' => 'Campi da importare',
+ 'ImportFieldsTip' => 'Scegliere i campi da importare',
+ 'ImportNewList' => 'Creare una nuova collezione',
+ 'ImportCurrentList' => 'Aggiungere alla collezione corrente',
+ 'ImportDropError' => 'Si e\' verificato un errore durante l\'apertura di almeno un file. Viene ricaricata la precedente collezione!',
+ 'ImportGenerateId' => 'Generare identificatore per ogni articolo',
+
+ 'FileChooserOpenFile' => 'Selezionare l\'elenco',
+ 'FileChooserDirectory' => 'Directory',
+ 'FileChooserOpenDirectory' => 'Seleziona un indice',
+ 'FileChooserOverwrite' => 'Questa collezione esiste gia\', sovrascriverla?',
+ 'FileAllFiles' => 'Tutti i file',
+ 'FileVideoFiles' => 'Video File',
+ 'FileEbookFiles' => 'Ebook File',
+ 'FileAudioFiles' => 'Audio File',
+ 'FileGCstarFiles' => 'Collezioni GCStar',
+
+ 'PanelCompact' => 'Compattare',
+ 'PanelReadOnly' => 'Sola lettura',
+ 'PanelForm' => 'Etichette',
+
+ 'PanelSearchButton' => 'Recupera informazioni',
+ 'PanelSearchTip' => 'Cerca informazioni secondo il titolo dell\'articolo inserito',
+ 'PanelSearchContextChooseOne' => 'Scegli un sito ...',
+ 'PanelSearchContextMultiSite' => 'Use "Diversi siti"',
+ 'PanelSearchContextMultiSitePerField' => 'Use "Diversi siti (configurazione campi)"',
+ 'PanelSearchContextOptions' => 'Cambia opzioni ...',
+ 'PanelImageTipOpen' => 'Clicca sull\'immagine per sceglierne un\'altra.',
+ 'PanelImageTipView' => 'Clicca sull\'immagine per visualizzare in grandezza naturale.',
+ 'PanelImageTipMenu' => 'Clicca tasto destro per piu\' opzioni.',
+ 'PanelImageTitle' => 'Scegliere un\'immagine',
+ 'PanelImageNoImage' => 'Nessuna immagine',
+ 'PanelSelectFileTitle' => 'Seleziona un file',
+ 'PanelLaunch' => 'Launch',
+ 'PanelRestoreDefault' => 'Ripristina predefiniti',
+ 'PanelRefresh' => 'Aggiorna',
+ 'PanelRefreshTip' => 'Aggiorna le informazioni dal web',
+
+ 'PanelFrom' =>'Da',
+ 'PanelTo' =>'A',
+
+ 'PanelWeb' => 'Leggi informazioni dell\'articolo',
+ 'PanelWebTip' => 'Leggi informazioni su questo articolo e disponibili sul web', # Accepts model codes
+ 'PanelRemoveTip' => 'Rimuovi l\'articolo corrente', # Accepts model codes
+
+ 'PanelDateSelect' => 'Scegli una data',
+ 'PanelNobody' => 'Nessuno',
+ 'PanelUnknown' => 'Sconosciuta',
+ 'PanelAdded' => 'Aggiungi data',
+ 'PanelRating' => 'Valutazione',
+ 'PanelPressRating' => 'Press ratings',
+ 'PanelLocation' => 'Luogo',
+
+ 'PanelLending' => 'Prestiti',
+ 'PanelBorrower' => 'Prestiti',
+ 'PanelLendDate' => 'Data',
+ 'PanelHistory' => 'Cronologia',
+ 'PanelReturned' => 'Articolo restituito', # Accepts model codes
+ 'PanelReturnDate' => 'Data restituzione',
+ 'PanelLendedYes' => 'Prestato',
+ 'PanelLendedNo' => 'Disponibile',
+
+ 'PanelTags' => 'Etichette (Tags)',
+ 'PanelFavourite' => 'Preferiti',
+ 'TagsAssigned' => 'Etichette assegnate',
+
+ 'PanelUser' => 'Campi utente',
+
+ 'CheckUndef' => 'Nessun problema',
+ 'CheckYes' => 'Sì',
+ 'CheckNo' => 'No',
+
+ 'ToolbarAll' => 'Mostra tutto',
+ 'ToolbarAllTooltip' => 'Visualizza tutti gli articoli',
+ 'ToolbarGroupBy' => 'Raggruppa per',
+ 'ToolbarGroupByTooltip' => 'Selezionare il campo da utilizzare per raggruppare gli articoli della collezione',
+ 'ToolbarQuickSearch' => 'Ricerca rapida',
+ 'ToolbarQuickSearchLabel' => 'Ricerca',
+ 'ToolbarQuickSearchTooltip' => 'Seleziona il campo in cui ricercare. Inserisci le parole da ricercare e premi Invio',
+ 'ToolbarSeparator' => ' Separatore',
+
+ 'PluginsTitle' => 'Cerca un articolo',
+ 'PluginsQuery' => 'Query',
+ 'PluginsFrame' => 'Cerca un sito',
+ 'PluginsLogo' => 'Logo',
+ 'PluginsName' => 'Nome',
+ 'PluginsSearchFields' => 'Cerca campi',
+ 'PluginsAuthor' => 'Autore',
+ 'PluginsLang' => 'Lingua',
+ 'PluginsUseSite' => 'Utilizza il sito selezionato per ricerche future',
+ 'PluginsPreferredTooltip' => 'Sito raccomandato da GCstar',
+ 'PluginDisabled' => 'Disabilitato',
+
+ 'BorrowersTitle' => 'Configurazione prestiti',
+ 'BorrowersList' => 'Beneficiari dei prestiti',
+ 'BorrowersName' => 'Nome',
+ 'BorrowersEmail' => 'E-mail',
+ 'BorrowersAdd' => 'Aggiungi',
+ 'BorrowersRemove' => 'Elimina',
+ 'BorrowersEdit' => 'Modifica',
+ 'BorrowersTemplate' => 'Modello mail',
+ 'BorrowersSubject' => 'Oggetto',
+ 'BorrowersNotice1' => '%1 inserisce il nome di chi beneficia del prestito',
+ 'BorrowersNotice2' => '%2 inserisce il nome dell\'articolo',
+ 'BorrowersNotice3' => '%3 inserisce la data del prestito',
+
+ 'BorrowersImportTitle' => 'Importa informazioni beneficiari di prestito',
+ 'BorrowersImportType' => 'Formato file:',
+ 'BorrowersImportFile' => 'File:',
+
+ 'BorrowedTitle' => 'Articoli prestati', # Accepts model codes
+ 'BorrowedDate' => 'Il',
+ 'BorrowedDisplayInPanel' => 'Mostra articolo nella schermata principale', # Accepts model codes
+
+ 'MailTitle' => 'Manda una e-mail',
+ 'MailFrom' => 'Da: ',
+ 'MailTo' => 'A: ',
+ 'MailSubject' => 'Oggetto: ',
+ 'MailSmtpError' => 'Problema di connessione al server SMTP',
+ 'MailSendmailError' => 'Problema nell\'inviare l\'e-mail',
+
+ 'SearchTooltip' => 'Cerca nella collezione', # Accepts model codes
+ 'SearchTitle' => 'Cerca', # Accepts model codes
+ 'SearchNoField' => 'Nessun campo è stato selezionato nel box di ricerca.
+Aggiungine uno o più nella scheda Filtri, nelle impostazioni per la collezione.',
+
+ 'QueryReplaceField' => 'Campo da sostituire',
+ 'QueryReplaceOld' => 'Nome corrente',
+ 'QueryReplaceNew' => 'Nuovo nome',
+ 'QueryReplaceLaunch' => 'Sostituisci',
+
+ 'ImportWindowTitle' => 'Scegli i campi da importare',
+ 'ImportViewPicture' => 'Visualizza immagine',
+ 'ImportSelectAll' => 'Aggiungi tutti',
+ 'ImportSelectNone' => 'Rimuovi tutti',
+
+ 'MultiSiteTitle' => 'Siti da interrogare per le ricerche',
+ 'MultiSiteUnused' => 'Plugin inutilizzati',
+ 'MultiSiteUsed' => 'Plugin da utilizzare',
+ 'MultiSiteLang' => 'Riempi la lista con il plugin inglese',
+ 'MultiSiteEmptyError' => 'Hai una lista di siti vuota',
+ 'MultiSiteClear' => 'Pulisci la lista',
+
+ 'DisplayOptionsTitle' => 'Articoli da visualizzare',
+ 'DisplayOptionsAll' => 'Scegli tutto',
+ 'DisplayOptionsSearch' => 'Pulsante ricerche',
+
+ 'GenresTitle' => 'Conversione di genere',
+ 'GenresCategoryName' => 'Genere da utilizzare',
+ 'GenresCategoryMembers' => 'Genere da sostituire',
+ 'GenresLoad' => 'Carica lista',
+ 'GenresExport' => 'Salva lista in un file',
+ 'GenresModify' => 'Modifica conversione',
+
+ 'PropertiesName' => 'Nome collezione',
+ 'PropertiesLang' => 'Codice lingua',
+ 'PropertiesOwner' => 'Proprietario',
+ 'PropertiesEmail' => 'e-mail',
+ 'PropertiesDescription' => 'Descrizione',
+ 'PropertiesFile' => 'Informazione file',
+ 'PropertiesFilePath' => 'Percorso completo',
+ 'PropertiesItemsNumber' => 'Numero di articoli', # Accepts model codes
+ 'PropertiesFileSize' => 'Dimensione',
+ 'PropertiesFileSizeSymbols' => ['Byte', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
+ 'PropertiesCollection' => 'Proprieta\' collezione',
+ 'PropertiesDefaultPicture' => 'Default picture',
+
+ 'MailProgramsTitle' => 'Programmi per spedizione e-mail',
+ 'MailProgramsName' => 'Nome',
+ 'MailProgramsCommand' => 'Linea di comando',
+ 'MailProgramsRestore' => 'Riproponi predefiniti',
+ 'MailProgramsAdd' => 'Aggiungi programma',
+ 'MailProgramsInstructions' => 'Nella command-line:
+ %f inserisce l\'indirizzo di e-mail del mittente.
+ %t inserisce l\'indirizzo di e-mail del destinatario.
+ %s inserisce il soggetto del messaggio.
+ %b inserisce il testo del messaggio.',
+
+ 'BookmarksBookmarks' => 'Bookmarks',
+ 'BookmarksFolder' => 'Directory',
+ 'BookmarksLabel' => 'Etichetta',
+ 'BookmarksPath' => 'Percorso',
+ 'BookmarksNewFolder' => 'Nuova cartella',
+
+ 'AdvancedSearchType' => 'Tipo di ricerca',
+ 'AdvancedSearchTypeAnd' => 'Articoli soddisfacenti tutti i criteri (AND)', # Accepts model codes
+ 'AdvancedSearchTypeOr' => 'Articoli soddisfacenti almeno un criterio (OR)', # Accepts model codes
+ 'AdvancedSearchCriteria' => 'Criteri',
+ 'AdvancedSearchAnyField' => 'Qualsiasi campo',
+ 'AdvancedSearchSaveTitle' => 'Salva ricerca',
+ 'AdvancedSearchSaveName' => 'Nome',
+ 'AdvancedSearchSaveOverwrite' => 'Una ricerca salvata esiste già con questo nome. Utilizzare un nome differente.',
+ 'AdvancedSearchUseCase' => 'Distinzione maiuscole/minuscole',
+ 'AdvancedSearchIgnoreDiacritics' => 'Ignora accenti ed altri caratteri speciali',
+
+ 'BugReportSubject' => 'Bug report generato da GCstar',
+ 'BugReportVersion' => 'Versione',
+ 'BugReportPlatform' => 'Sistema operativo',
+ 'BugReportMessage' => 'Messaggio d\'errore',
+ 'BugReportInformation' => 'Informazioni addizionali',
+
+#Statistics
+ 'StatsFieldToUse' => 'Campi da usare',
+ 'StatsSortByNumber' => 'Ordina per numero di {lowercaseX}',
+ 'StatsGenerate' => 'Genera',
+ 'StatsKindOfGraph' => 'Tipo di grafico',
+ 'StatsBars' => 'Barre',
+ 'StatsPie' => 'Torta',
+ 'Stats3DPie' => 'Torta 3D',
+ 'StatsArea' => 'Aree',
+ 'StatsHistory' => 'History',
+ 'StatsWidth' => 'Lunghezza',
+ 'StatsHeight' => 'Altezza',
+ 'StatsFontSize' => 'Dimensione carattere',
+ 'StatsDisplayNumber' => 'Mostra numeri',
+ 'StatsSave' => 'Salva statistiche su file',
+ 'StatsAccumulate' => 'Accumula valori',
+ 'StatsShowAllDates' => 'Mostra tutte le date',
+
+ 'DefaultValuesTip' => 'Values set in this window will be used as the default values when creating a new {lowercase1}',
+ );
+}
+1;
diff --git a/lib/gcstar/GCLang/IT/README.txt b/lib/gcstar/GCLang/IT/README.txt
new file mode 100644
index 0000000..0679b6d
--- /dev/null
+++ b/lib/gcstar/GCLang/IT/README.txt
@@ -0,0 +1,9 @@
+#######################################################
+#
+# v1.0.2 - Italian localization by Andreas Troschka
+#
+# for GCstar v1.1.1
+#
+#######################################################
+
+