summaryrefslogtreecommitdiff
path: root/lib/gcstar/GCLang/ES
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gcstar/GCLang/ES')
-rw-r--r--lib/gcstar/GCLang/ES/GCExport/GCExportCSV.pm40
-rw-r--r--lib/gcstar/GCLang/ES/GCExport/GCExportExternal.pm38
-rw-r--r--lib/gcstar/GCLang/ES/GCExport/GCExportHTML.pm64
-rw-r--r--lib/gcstar/GCLang/ES/GCExport/GCExportPDB.pm38
-rw-r--r--lib/gcstar/GCLang/ES/GCExport/GCExportSQL.pm40
-rw-r--r--lib/gcstar/GCLang/ES/GCExport/GCExportTarGz.pm37
-rw-r--r--lib/gcstar/GCLang/ES/GCExport/GCExportXML.pm41
-rw-r--r--lib/gcstar/GCLang/ES/GCImport/GCImportAlexandria.pm39
-rw-r--r--lib/gcstar/GCLang/ES/GCImport/GCImportCSV.pm42
-rw-r--r--lib/gcstar/GCLang/ES/GCImport/GCImportFolder.pm68
-rw-r--r--lib/gcstar/GCLang/ES/GCImport/GCImportGCstar.pm37
-rw-r--r--lib/gcstar/GCLang/ES/GCImport/GCImportList.pm42
-rw-r--r--lib/gcstar/GCLang/ES/GCImport/GCImportScanner.pm50
-rw-r--r--lib/gcstar/GCLang/ES/GCImport/GCImportTellico.pm37
-rw-r--r--lib/gcstar/GCLang/ES/GCModels/GCTVepisodes.pm65
-rw-r--r--lib/gcstar/GCLang/ES/GCModels/GCTVseries.pm69
-rw-r--r--lib/gcstar/GCLang/ES/GCModels/GCboardgames.pm103
-rw-r--r--lib/gcstar/GCLang/ES/GCModels/GCbooks.pm88
-rw-r--r--lib/gcstar/GCLang/ES/GCModels/GCcoins.pm126
-rw-r--r--lib/gcstar/GCLang/ES/GCModels/GCcomics.pm90
-rw-r--r--lib/gcstar/GCLang/ES/GCModels/GCfilms.pm112
-rw-r--r--lib/gcstar/GCLang/ES/GCModels/GCgames.pm99
-rw-r--r--lib/gcstar/GCLang/ES/GCModels/GCgeneric.pm59
-rw-r--r--lib/gcstar/GCLang/ES/GCModels/GCminicars.pm195
-rw-r--r--lib/gcstar/GCLang/ES/GCModels/GCmusics.pm85
-rw-r--r--lib/gcstar/GCLang/ES/GCModels/GCperiodicals.pm70
-rw-r--r--lib/gcstar/GCLang/ES/GCModels/GCsmartcards.pm108
-rw-r--r--lib/gcstar/GCLang/ES/GCModels/GCsoftware.pm84
-rw-r--r--lib/gcstar/GCLang/ES/GCModels/GCstamps.pm206
-rw-r--r--lib/gcstar/GCLang/ES/GCModels/GCwines.pm82
-rw-r--r--lib/gcstar/GCLang/ES/GCstar.pm673
31 files changed, 2927 insertions, 0 deletions
diff --git a/lib/gcstar/GCLang/ES/GCExport/GCExportCSV.pm b/lib/gcstar/GCLang/ES/GCExport/GCExportCSV.pm
new file mode 100644
index 0000000..f0badd4
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCExport/GCExportCSV.pm
@@ -0,0 +1,40 @@
+{
+ package GCLang::ES::GCExport::GCExportCSV;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Header' => 'Añadir títulos de columnas',
+ 'Separator' => 'Delimitador',
+ 'Replacement' => 'Reemplazar delimitador con',
+ 'Charset' => 'Codificación de caracteres',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCExport/GCExportExternal.pm b/lib/gcstar/GCLang/ES/GCExport/GCExportExternal.pm
new file mode 100644
index 0000000..7c3e8c4
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCExport/GCExportExternal.pm
@@ -0,0 +1,38 @@
+{
+ package GCLang::ES::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/ES/GCExport/GCExportHTML.pm b/lib/gcstar/GCLang/ES/GCExport/GCExportHTML.pm
new file mode 100644
index 0000000..786d63f
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCExport/GCExportHTML.pm
@@ -0,0 +1,64 @@
+{
+ package GCLang::ES::GCExport::GCExportHTML;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'ModelNotFound' => 'Fichero de plantilla inválido',
+ 'UseFile' => 'Usar el fichero especificado abajo',
+ 'TemplateExternalFile' => 'Fichero de plantilla',
+ 'WithJS' => 'Utilizar Javascript',
+ 'FileTemplate' => 'Plantilla :',
+ 'Preview' => 'Vista previa',
+ 'NoPreview' => 'Vista previa no disponible',
+ 'Title' => 'Título de la página',
+ 'InfoFile' => 'El listado se encuentra en el archivo : ',
+ 'InfoDir' => 'Las imágenes se encuentran en : ',
+ 'HeightImg' => 'Altura en pixels de las imágenes a exportar : ',
+ 'OpenFileInBrowser' => 'Abrir el fichero generado en el navegador web',
+ 'Note' => 'Listado generado con <a href="http://www.gcstar.org/">GCstar</a>',
+ 'InputTitle' => 'Introduzca el texto a buscar',
+ 'SearchType1' => 'Sólo el Título',
+ 'SearchType2' => 'Toda la información',
+ 'SearchButton' => 'Buscar',
+ 'SearchTitle' => 'Mostrar sólo las películas coincidentes con los criterios anteriores',
+ 'AllButton' => 'Todas',
+ 'AllTitle' => 'Mostrar todas las películas',
+ 'Expand' => 'Todos desplegados',
+ 'ExpandTitle' => 'Mostrar la información de todas las películas',
+ 'Collapse' => 'Todos plegados',
+ 'CollapseTitle' => 'Ocultar la información de todas las películas',
+ 'Borrowed' => 'Prestatario : ',
+ 'NotBorrowed' => 'Disponible',
+ 'Top' => 'Arriba',
+ 'Bottom' => 'Abajo',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCExport/GCExportPDB.pm b/lib/gcstar/GCLang/ES/GCExport/GCExportPDB.pm
new file mode 100644
index 0000000..d2716d4
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCExport/GCExportPDB.pm
@@ -0,0 +1,38 @@
+{
+ package GCLang::ES::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/ES/GCExport/GCExportSQL.pm b/lib/gcstar/GCLang/ES/GCExport/GCExportSQL.pm
new file mode 100644
index 0000000..bb1c0b3
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCExport/GCExportSQL.pm
@@ -0,0 +1,40 @@
+{
+ package GCLang::ES::GCExport::GCExportSQL;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'WithDrop' => 'Incluir una instrucción DROP',
+ 'WithCreate' => 'Incluir una instrucción CREATE',
+ 'TableName' => 'Nombre de la tabla',
+ 'InfoFile' => 'Fichero SQL : ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCExport/GCExportTarGz.pm b/lib/gcstar/GCLang/ES/GCExport/GCExportTarGz.pm
new file mode 100644
index 0000000..5b42298
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCExport/GCExportTarGz.pm
@@ -0,0 +1,37 @@
+{
+ package GCLang::ES::GCExport::GCExportTarGz;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Info' => 'El archivo .tar.gz se encuentra en : ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCExport/GCExportXML.pm b/lib/gcstar/GCLang/ES/GCExport/GCExportXML.pm
new file mode 100644
index 0000000..f2ff186
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCExport/GCExportXML.pm
@@ -0,0 +1,41 @@
+{
+ package GCLang::ES::GCExport::GCExportXML;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'ModelFile' => 'Fichero modelo',
+ 'ModelText' => 'Texto de modelo',
+ 'Models' => 'Modelo a utilizar',
+ 'UseFile' => 'Especificar con un fichero',
+ 'UseModel' => 'Especificar en la zona de texto',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCImport/GCImportAlexandria.pm b/lib/gcstar/GCLang/ES/GCImport/GCImportAlexandria.pm
new file mode 100644
index 0000000..0706bb3
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCImport/GCImportAlexandria.pm
@@ -0,0 +1,39 @@
+{
+ package GCLang::ES::GCImport::GCImportAlexandria;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Where' => 'Donde se debería buscar',
+ 'Default' => 'Directorio predeterminado de Alexandria',
+ 'Specified' => 'Directorio especificado abajo',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCImport/GCImportCSV.pm b/lib/gcstar/GCLang/ES/GCImport/GCImportCSV.pm
new file mode 100644
index 0000000..72e761e
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCImport/GCImportCSV.pm
@@ -0,0 +1,42 @@
+{
+ package GCLang::ES::GCImport::GCImportCSV;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Charset' => 'Codificación de caracteres',
+ 'Header' => 'Ignorar primera linea',
+ 'Separator' => 'Delimitador',
+ 'Plugin' => 'Sitio a usar',
+ 'UseFirst' => 'Seleccionar el primero si hay muchos resultados',
+ 'SearchField' => 'Search for items using',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCImport/GCImportFolder.pm b/lib/gcstar/GCLang/ES/GCImport/GCImportFolder.pm
new file mode 100644
index 0000000..6037227
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCImport/GCImportFolder.pm
@@ -0,0 +1,68 @@
+{
+ package GCLang::ES::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' => 'Carpeta',
+ 'Recursive' => 'Navegar sub-carpetas',
+ 'Suffixes' => 'Sufijos o extensiones de los ficheros',
+ 'SuffixesTooltip' => 'Una lista separada por comas de sufijos o extensiones a tener en cuenta',
+ 'Remove' => 'Para eliminar de los nombres',
+ 'RemoveTooltip' => 'Una lista separada por comas de palabras que se deberían elimnar de los nombres de los ficheros para crear los nombres nuevos',
+ '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/ES/GCImport/GCImportGCstar.pm b/lib/gcstar/GCLang/ES/GCImport/GCImportGCstar.pm
new file mode 100644
index 0000000..9c155c5
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCImport/GCImportGCstar.pm
@@ -0,0 +1,37 @@
+{
+ package GCLang::ES::GCImport::GCImportGCstar;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'CopyPictures' => 'Copiar imágenes',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCImport/GCImportList.pm b/lib/gcstar/GCLang/ES/GCImport/GCImportList.pm
new file mode 100644
index 0000000..df81bae
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCImport/GCImportList.pm
@@ -0,0 +1,42 @@
+{
+ package GCLang::ES::GCImport::GCImportList;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Name' => 'Lista de títulos',
+ 'Plugin' => 'Sitio a usar',
+ 'UseFirst' => 'Seleccionar el primero si hay muchos resultados',
+ 'CommentAuto' => 'Película importada automáticamente.',
+ 'CommentSite' => 'Sitio web : ',
+ 'CommentTitle' => 'Título : ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCImport/GCImportScanner.pm b/lib/gcstar/GCLang/ES/GCImport/GCImportScanner.pm
new file mode 100644
index 0000000..3dc9f6a
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCImport/GCImportScanner.pm
@@ -0,0 +1,50 @@
+{
+ package GCLang::ES::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/ES/GCImport/GCImportTellico.pm b/lib/gcstar/GCLang/ES/GCImport/GCImportTellico.pm
new file mode 100644
index 0000000..2560252
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCImport/GCImportTellico.pm
@@ -0,0 +1,37 @@
+{
+ package GCLang::ES::GCImport::GCImportTellico;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'NotSupported' => 'El fichero no es una colección de video Tellico',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCModels/GCTVepisodes.pm b/lib/gcstar/GCLang/ES/GCModels/GCTVepisodes.pm
new file mode 100644
index 0000000..87ed536
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCModels/GCTVepisodes.pm
@@ -0,0 +1,65 @@
+{
+ package GCLang::ES::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 => 'Colección de series de televisión (episodios)',
+ Items => {0 => 'Episodio',
+ 1 => 'Episodio',
+ lowercase1 => 'episodio',
+ X => 'Episodios',
+ lowercaseX => 'episodios',
+ P1 => 'El Episodio',
+ lowercaseP1 => 'el episodio',
+ U1 => 'Un Episodio',
+ lowercaseU1 => 'un episodio',
+ AP1 => 'Al Episodio',
+ lowercaseAP1 => 'al episodio',
+ DP1 => 'Del Episodio',
+ lowercaseDP1 => 'del episodio',
+ PX => 'Los Episodios',
+ lowercasePX => 'los episodios',
+ E1 => 'Este Episodio',
+ lowercaseE1 => 'este episodio',
+ EX => 'Estos Episodios',
+ lowercaseEX => 'estos episodios'
+ },
+ NewItem => 'Episodio nuevo',
+ NewSeries => 'Nueva serie',
+ Episode => 'Episodio',
+ );
+ # Both of them are required as importTranslation doesn't recurse
+ importTranslation('films');
+ importTranslation('TVseries');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCModels/GCTVseries.pm b/lib/gcstar/GCLang/ES/GCModels/GCTVseries.pm
new file mode 100644
index 0000000..f7dfd9f
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCModels/GCTVseries.pm
@@ -0,0 +1,69 @@
+{
+ package GCLang::ES::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 => 'Colección de series de television (series)',
+ Items => {0 => 'Serie',
+ 1 => 'Serie',
+ lowercase1 => 'serie',
+ X => 'Series',
+ lowercaseX => 'series',
+ P1 => 'La Serie',
+ lowercaseP1 => 'la serie',
+ U1 => 'Una Serie',
+ lowercaseU1 => 'una serie',
+ AP1 => 'A La Serie',
+ lowercaseAP1 => 'a la serie',
+ DP1 => 'De la Serie',
+ lowercaseDP1 => 'de la serie',
+ PX => 'Las Series',
+ lowercasePX => 'las series',
+ E1 => 'Esta Serie',
+ lowercaseE1 => 'esta serie',
+ EX => 'Estas Series',
+ lowercaseEX => 'estas series'
+ },
+ NewItem => 'Nueva serie',
+ Name => 'Nombre',
+ Season => 'Temporada',
+ Part => 'Parte',
+ Episodes => 'Episodios',
+ FirstAired => 'Inicio de emisión',
+ Time => 'Duración de episidio',
+ Producer => 'Productor',
+ Music => 'Música',
+ );
+ importTranslation('Films');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCModels/GCboardgames.pm b/lib/gcstar/GCLang/ES/GCModels/GCboardgames.pm
new file mode 100644
index 0000000..f688abb
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCModels/GCboardgames.pm
@@ -0,0 +1,103 @@
+{
+ package GCLang::ES::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 => 'Colección de juegos de mesa',
+ Items => {0 => 'Juego',
+ 1 => 'Juego',
+ lowercase1 => 'juego',
+ X => 'Juegos',
+ lowercaseX => 'juegos',
+ P1 => 'El Juego',
+ lowercaseP1 => 'el juego',
+ U1 => 'Un Juego',
+ lowercaseU1 => 'un juego',
+ AP1 => 'Al Juego',
+ lowercaseAP1 => 'al juego',
+ DP1 => 'Del Juego',
+ lowercaseDP1 => 'del juego',
+ PX => 'Los Juegos',
+ lowercasePX => 'los juegos',
+ E1 => 'Este Juego',
+ lowercaseE1 => 'este juego',
+ EX => 'Estos Juegos',
+ lowercaseEX => 'estos juegos'
+ },
+ NewItem => 'Nuevo juego',
+
+ Id => 'Id',
+ Name => 'Nombre',
+ Original => 'Nombre original',
+ Box => 'Foto de la caja',
+ DesignedBy => 'Diseñado por',
+ PublishedBy => 'Publicado por',
+ Players => 'Número de jugadores',
+ PlayingTime => 'Duración del juego',
+ SuggestedAge => 'Edades sugeridas',
+ Released => 'Fecha de publicación',
+ Description => 'Descripción',
+ Category => 'Categoría',
+ Mechanics => 'Mecánica',
+ ExpandedBy => 'Expandido por',
+ ExpansionFor => 'Expansión para',
+ GameFamily => 'Familia del juego',
+ IllustratedBy => 'Ilustrado por',
+ Url => 'Página web',
+ TimesPlayed => 'Veces jugado',
+ CompleteContents => 'Contenido completo',
+ Copies => 'Número de copias',
+ Condition => 'Condición',
+ Photos => 'Fotos',
+ Photo1 => 'Primera foto',
+ Photo2 => 'Segunda foto',
+ Photo3 => 'Tercera foto',
+ Photo4 => 'Cuarta foto',
+ Comments => 'Comentarios',
+
+ Perfect => 'Perfecto',
+ Good => 'Bien',
+ Average => 'Normal',
+ Poor => 'Mal',
+
+ CompleteYes => 'Contenido completo',
+ CompleteNo => 'Faltan piezas',
+
+ General => 'General',
+ Details => 'Detalles',
+ Personal => 'Personal',
+ Information => 'Información',
+
+ FilterRatingSelect => 'Puntuación al _menos...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCModels/GCbooks.pm b/lib/gcstar/GCLang/ES/GCModels/GCbooks.pm
new file mode 100644
index 0000000..64845fa
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCModels/GCbooks.pm
@@ -0,0 +1,88 @@
+{
+ package GCLang::ES::GCModels::GCbooks;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Colección de libros',
+ Items => {0 => 'Libro',
+ 1 => 'Libro',
+ lowercase1 => 'libro',
+ X => 'Libros',
+ lowercaseX => 'libros',
+ P1 => 'El Libro',
+ lowercaseP1 => 'el libro',
+ U1 => 'Un Libro',
+ lowercaseU1 => 'un libro',
+ AP1 => 'Al Libro',
+ lowercaseAP1 => 'al libro',
+ DP1 => 'Del Libro',
+ lowercaseDP1 => 'del libro',
+ PX => 'Los Libros',
+ lowercasePX => 'los libros',
+ E1 => 'Este Libro',
+ lowercaseE1 => 'este libro',
+ EX => 'Estos Libros',
+ lowercaseEX => 'estos libros'
+ },
+
+ NewItem => 'Nuevo libro',
+
+ Isbn => 'ISBN',
+ Title => 'Título',
+ Cover => 'Portada',
+ Authors => 'Autores',
+ Publisher => 'Editor',
+ Publication => 'Fecha de edición',
+ Language => 'Idioma',
+ Genre => 'Género',
+ Serie => 'Serie',
+ Rank => 'Capítulo',
+ Bookdescription => 'Descripción',
+ Pages => 'Páginas',
+ Read => 'Leído',
+ Acquisition => 'Fecha de adquisición',
+ Edition => 'Edición',
+ Format => 'Formato',
+ Comments => 'Comentarios',
+ Url => 'Página web',
+ Translator => 'Traductor',
+ Artist => 'Artista',
+ DigitalFile => 'Digital version',
+
+ General => 'General',
+ Details => 'Detalles',
+
+ ReadNo => 'No leído',
+ ReadYes => 'Leído',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCModels/GCcoins.pm b/lib/gcstar/GCLang/ES/GCModels/GCcoins.pm
new file mode 100644
index 0000000..52a2fe4
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCModels/GCcoins.pm
@@ -0,0 +1,126 @@
+{
+ package GCLang::ES::GCModels::GCcoins;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Colección numismática',
+ Items => {0 => 'Moneda',
+ 1 => 'Moneda',
+ lowercase1 => 'moneda',
+ X => 'Monedas',
+ lowercaseX => 'monedas',
+ P1 => 'La Moneda',
+ lowercaseP1 => 'la moneda',
+ U1 => 'Una Moneda',
+ lowercaseU1 => 'una moneda',
+ AP1 => 'A La Moneda',
+ lowercaseAP1 => 'a la moneda',
+ DP1 => 'De La Moneda',
+ lowercaseDP1 => 'de la moneda',
+ PX => 'Las Monedas',
+ lowercasePX => 'Las Monedas',
+ E1 => 'Esta Moneda',
+ lowercaseE1 => 'esta moneda',
+ EX => 'Estas Monedas',
+ lowercaseEX => 'estas monedas'
+ },
+
+ NewItem => 'Nueva moneda',
+
+ Name => 'Nombre',
+ Country => 'País',
+ Year => 'Año',
+ Currency => 'Divisa',
+ Value => 'Valor',
+ Picture => 'Imágen principal',
+ Diameter => 'Diámetro',
+ Metal => 'Metal',
+ Edge => 'Borde',
+ Edge1 => 'Borde 1',
+ Edge2 => 'Borde 2',
+ Edge3 => 'Borde 3',
+ Edge4 => 'Borde 4',
+ Head => 'Cara',
+ Tail => 'Cruz',
+ Comments => 'Comentarios',
+ History => 'Historia',
+ Website => 'Página web',
+ Estimate => 'Estimación',
+ References => 'Referencias',
+ Type => 'Tipo',
+ Coin => 'Moneda',
+ Banknote => 'Billete',
+
+ Main => 'Principal',
+ Description => 'Descripción',
+ Other => 'Otra información',
+ Pictures => 'Imágenes',
+
+ Location => 'Localización',
+ Front => 'Delante',
+ Back => 'Detrás',
+
+ Condition => 'Condición (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/ES/GCModels/GCcomics.pm b/lib/gcstar/GCLang/ES/GCModels/GCcomics.pm
new file mode 100644
index 0000000..5179e57
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCModels/GCcomics.pm
@@ -0,0 +1,90 @@
+{
+ package GCLang::ES::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 => 'Colección de cómics',
+ Items => {0 => 'Cómics',
+ 1 => 'Cómic',
+ lowercase1 => 'cómic',
+ X => 'Cómics',
+ lowercaseX => 'cómics',
+ P1 => 'El Cómic',
+ lowercaseP1 => 'el cómics',
+ U1 => 'Un Cómic',
+ lowercaseU1 => 'un cómic',
+ AP1 => 'Al Cómic',
+ lowercaseAP1 => 'al cómic',
+ DP1 => 'Del Cómic',
+ lowercaseDP1 => 'del cómic',
+ PX => 'Los Cómics',
+ lowercasePX => 'los cómics',
+ E1 => 'Este Cómic',
+ lowercaseE1 => 'este cómic',
+ EX => 'Estos Cómics',
+ lowercaseEX => 'estos cómics'
+ },
+ NewItem => 'Cómic nuevo',
+
+
+ Id => 'Id',
+ Name => 'Nombre',
+ Series => 'Serie',
+ Volume => 'Volumen',
+ Title => 'Título',
+ Writer => 'Escritor',
+ Illustrator => 'Ilustrador',
+ Colourist => 'Colorista',
+ Publisher => 'Publicado por',
+ Synopsis => 'Sinopsis',
+ Collection => 'Colección',
+ PublishDate => 'Fecha de publicación',
+ PrintingDate => 'Fecha de impresión',
+ ISBN => 'ISBN',
+ Type => 'Tipo',
+ Category => 'Categoría',
+ Format => 'Formato',
+ NumberBoards => 'Número de páginas',
+ Signing => 'Dedicado',
+ Cost => 'Coste',
+ Rating => 'Puntuación',
+ Comment => 'Comentarios',
+ Url => 'Página web',
+
+ FilterRatingSelect => 'Puntuación al _menos...',
+
+ Main => 'Elementos principales',
+ General => 'General',
+ Details => 'Detalles',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCModels/GCfilms.pm b/lib/gcstar/GCLang/ES/GCModels/GCfilms.pm
new file mode 100644
index 0000000..25a243c
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCModels/GCfilms.pm
@@ -0,0 +1,112 @@
+{
+ package GCLang::ES::GCModels::GCfilms;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Colección de películas',
+ Items => {0 => 'Película',
+ 1 => 'Película',
+ lowercase1 => 'película',
+ X => 'Películas',
+ lowercaseX => 'películas',
+ P1 => 'La Película',
+ lowercaseP1 => 'la película',
+ U1 => 'Una Película',
+ lowercaseU1 => 'una película',
+ AP1 => 'A la Película',
+ lowercaseAP1 => 'a la película',
+ DP1 => 'De la Película',
+ lowercaseDP1 => 'de la película',
+ PX => 'Las Películas',
+ lowercasePX => 'las películas',
+ E1 => 'Esta Película',
+ lowercaseE1 => 'esta película',
+ EX => 'Estas Películas',
+ lowercaseEX => 'estas películas'
+ },
+
+ NewItem => 'Nueva película',
+
+
+ Id => 'Id',
+ Title => 'Título',
+ Date => 'Fecha de salida',
+ Time => 'Duración',
+ Director => 'Director',
+ Country => 'Nacionalidad',
+ MinimumAge => 'Edad mínima',
+ Genre => 'Géneros',
+ Image => 'Imagen',
+ Original => 'Título original',
+ Actors => 'Actores',
+ Actor => 'Actor',
+ Role => 'Papel',
+ Comment => 'Comentarios',
+ Synopsis => 'Sinopsis',
+ Seen => 'Ya vista',
+ Number => 'Número',
+ Format => 'Soporte',
+ Region => 'Región',
+ Identifier => 'Identificador',
+ Url => 'URL',
+ Audio => 'Audio',
+ Video => 'Formato de video',
+ Trailer => 'Fichero de video',
+ Serie => 'Serie',
+ Rank => 'Capítulo',
+ Subtitles => 'Subtítulos',
+
+ SeenYes => 'Película ya vista',
+ SeenNo => 'Película no vista',
+
+ AgeUnrated => 'Desconocida',
+ AgeAll => 'Ninguna',
+ AgeParent => 'Control paterno',
+
+ Main => 'Elementos principales',
+ General => 'Ficha de la película',
+ Details => 'Información personal',
+ Lending => 'Préstamo',
+
+ Information => 'Informacion',
+ Languages => 'Idiomas',
+ Encoding => 'Codificación',
+
+ FilterAudienceAge => 'Edad mínima',
+ FilterSeenNo => 'Películas no vistas',
+ FilterSeenYes => '_Ya vista',
+ FilterRatingSelect => 'Puntuación al _menos...',
+
+ ExtractSize => 'Tamaño',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCModels/GCgames.pm b/lib/gcstar/GCLang/ES/GCModels/GCgames.pm
new file mode 100644
index 0000000..51c8485
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCModels/GCgames.pm
@@ -0,0 +1,99 @@
+{
+ package GCLang::ES::GCModels::GCgames;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Colección de video juegos',
+ Items => {0 => 'Juego',
+ 1 => 'Juego',
+ lowercase1 => 'juego',
+ X => 'Juegos',
+ lowercaseX => 'juegos',
+ P1 => 'El Juego',
+ lowercaseP1 => 'el juego',
+ U1 => 'Un Juego',
+ lowercaseU1 => 'un juego',
+ AP1 => 'Al Juego',
+ lowercaseAP1 => 'al juego',
+ DP1 => 'Del Juego',
+ lowercaseDP1 => 'del juego',
+ PX => 'Los Juegos',
+ lowercasePX => 'los juegos',
+ E1 => 'Este Juego',
+ lowercaseE1 => 'este juego',
+ EX => 'Estos Juegos',
+ lowercaseEX => 'estos juegos'
+ },
+ NewItem => 'Nuevo juego',
+
+ Id => 'Id',
+ Ean => 'EAN',
+ Name => 'Nombre',
+ Platform => 'Plataforma',
+ Players => 'Número de jugadores',
+ Released => 'Fecha de publicación',
+ Editor => 'Editor',
+ Developer => 'Developer',
+ Genre => 'Género',
+ Box => 'Portada de la caja',
+ Case => 'Case',
+ Manual => 'Instructions manual',
+ Completion => 'Completado (%)',
+ Executable => 'Ejecutable',
+ Description => 'Descripción',
+ Codes => 'Códigos',
+ Code => 'Código',
+ Effect => 'Efecto',
+ Secrets => 'Secretos',
+ Screenshots => 'Capturas de pantallas',
+ Screenshot1 => 'Primera captura',
+ Screenshot2 => 'Seguna captura',
+ Comments => 'Comentarios',
+ Url => 'Página web',
+ Unlockables => 'Desbloqueables',
+ Unlockable => 'Desbloqueable',
+ Howto => 'Cómo desbloquear',
+ Exclusive => 'Exclusive',
+ Resolutions => 'Display resolutions',
+ InstallationSize => 'Size',
+ Region => 'Region',
+ SerialNumber => 'Serial Number',
+
+ General => 'General',
+ Details => 'Detalles',
+ Tips => 'Consejos',
+ Information => 'Información',
+
+ FilterRatingSelect => 'Puntuación al _menos...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCModels/GCgeneric.pm b/lib/gcstar/GCLang/ES/GCModels/GCgeneric.pm
new file mode 100644
index 0000000..e0519bd
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCModels/GCgeneric.pm
@@ -0,0 +1,59 @@
+{
+ package GCLang::ES::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 => 'Artículo',
+ 1 => 'Artículo',
+ lowercase1 => 'artículo',
+ X => 'Artículos',
+ lowercaseX => 'artículos',
+ P1 => 'el artículo',
+ lowercaseP1 => 'el artículo',
+ U1 => 'Un Artículo',
+ lowercaseU1 => 'un artículo',
+ AP1 => 'Al Artículo',
+ lowercaseAP1 => 'al artículo',
+ DP1 => 'Del Artículo',
+ lowercaseDP1 => 'del artículo',
+ PX => 'Los Artículos',
+ lowercasePX => 'los artículos',
+ E1 => 'Este Artículos',
+ lowercaseE1 => 'este artículo',
+ EX => 'Estos Artículos',
+ lowercaseEX => 'estos artículos'
+ },
+
+ NewItem => 'Nuevo artículo',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCModels/GCminicars.pm b/lib/gcstar/GCLang/ES/GCModels/GCminicars.pm
new file mode 100644
index 0000000..6d582c7
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCModels/GCminicars.pm
@@ -0,0 +1,195 @@
+{
+ package GCLang::ES::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 => 'Vehículo',
+ 1 => 'Vehículo',
+ X => 'Vehículos',
+ lowercaseX => 'vehículos',
+ P1 => 'El Vehículo',
+ lowercaseP1 => 'el vehículo',
+ U1 => 'Un Vehículo',
+ lowercaseU1 => 'un vehículo',
+ AP1 => 'Al Vehículo',
+ lowercaseAP1 => 'al vehículo',
+ DP1 => 'Del Vehículo',
+ lowercaseDP1 => 'del vehículo',
+ PX => 'Los Vehículos',
+ lowercasePX => 'los vehículos',
+ E1 => 'Este Vehículo',
+ lowercaseE1 => 'este vehículo',
+ EX => 'Estos Vehículos',
+ lowercaseEX => 'estos vehículos'
+ },
+ NewItem => 'Nuevo vehículo',
+ 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 => 'Designe date',
+ Madein => 'Manufacture date',
+ Box1 => 'Kind of box',
+ Box2 => 'Box description',
+ Containbox => 'Box contet',
+ Rating2 => 'Réalism',
+ 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 => 'Nunmber 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/ES/GCModels/GCmusics.pm b/lib/gcstar/GCLang/ES/GCModels/GCmusics.pm
new file mode 100644
index 0000000..184a9e9
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCModels/GCmusics.pm
@@ -0,0 +1,85 @@
+{
+ package GCLang::ES::GCModels::GCmusics;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Colección de música',
+ Items => {0 => 'Álbum',
+ 1 => 'Álbum',
+ lowercase1 => 'Álbum',
+ X => 'Álbumes',
+ lowercaseX => 'álbumes',
+ P1 => 'El Álbum',
+ lowercaseP1 => 'el álbum',
+ U1 => 'Un Álbum',
+ lowercaseU1 => 'un álbum',
+ AP1 => 'Al Álbum',
+ lowercaseAP1 => 'al álbum',
+ DP1 => 'Del Álbum',
+ lowercaseDP1 => 'del álbum',
+ PX => 'Los Álbumes',
+ lowercasePX => 'los álbumes',
+ E1 => 'Este Álbum',
+ lowercaseE1 => 'este álbum ',
+ EX => 'Estos Álbumes',
+ lowercaseEX => 'estos álbumes'
+ },
+ NewItem => 'Álbum nuevo',
+
+ Unique => 'ISRC/EAN',
+ Title => 'Título',
+ Cover => 'Portada',
+ Artist => 'Artista',
+ Format => 'Formato',
+ Running => 'Duración',
+ Release => 'Fecha de publicación',
+ Genre => 'Género',
+ Origin => 'Origen',
+
+#For tracks list
+ Tracks => 'Lista de canciones',
+ Number => 'Número',
+ Track => 'Título',
+ Time => 'Duración',
+
+ Composer => 'Compositor',
+ Producer => 'Productor',
+ Playlist => 'Lista de reproducción',
+ Comments => 'Comentarios',
+ Label => 'Discográfica',
+ Url => 'Página web',
+
+ General => 'General',
+ Details => 'Detalles',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCModels/GCperiodicals.pm b/lib/gcstar/GCLang/ES/GCModels/GCperiodicals.pm
new file mode 100644
index 0000000..e4684b1
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCModels/GCperiodicals.pm
@@ -0,0 +1,70 @@
+{
+ package GCLang::ES::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 => 'Revista',
+ 1 => 'Revista',
+ lowercase1 => 'revista',
+ X => 'Revistas',
+ lowercaseX => 'revistas',
+ P1 => 'La Revista',
+ lowercaseP1 => 'la revista',
+ U1 => 'Una Revista',
+ lowercaseU1 => 'una revista',
+ AP1 => 'A la Revista',
+ lowercaseAP1 => 'a la revista',
+ DP1 => 'De la Revista',
+ lowercaseDP1 => 'de la revista',
+ PX => 'Las Revistas',
+ lowercasePX => 'las revistas',
+ E1 => 'Esta Revista',
+ lowercaseE1 => 'esta revista',
+ EX => 'Estas Revistas',
+ lowercaseEX => 'estas revistas'
+ },
+
+ NewItem => 'Nueva revista',
+
+ Title => 'Title',
+ Cover => 'Cover',
+ Periodical => 'Periodical',
+ Number => 'Number',
+ Date => 'Date',
+ Subject => 'Subject',
+ Articles => 'Articles',
+
+ General => 'General',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCModels/GCsmartcards.pm b/lib/gcstar/GCLang/ES/GCModels/GCsmartcards.pm
new file mode 100644
index 0000000..7026e66
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCModels/GCsmartcards.pm
@@ -0,0 +1,108 @@
+{
+ package GCLang::ES::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/ES/GCModels/GCsoftware.pm b/lib/gcstar/GCLang/ES/GCModels/GCsoftware.pm
new file mode 100644
index 0000000..0eb009e
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCModels/GCsoftware.pm
@@ -0,0 +1,84 @@
+{
+ package GCLang::ES::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/ES/GCModels/GCstamps.pm b/lib/gcstar/GCLang/ES/GCModels/GCstamps.pm
new file mode 100644
index 0000000..ffcb30d
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCModels/GCstamps.pm
@@ -0,0 +1,206 @@
+{
+ package GCLang::ES::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 => 'Sello',
+ 1 => 'Sello',
+ lowercase1 => 'sello',
+ X => 'Sellos',
+ lowercaseX => 'sellos',
+ P1 => 'El Sello',
+ lowercaseP1 => 'el sello',
+ U1 => 'Un Sello',
+ lowercaseU1 => 'un sello',
+ AP1 => 'Al Sello',
+ lowercaseAP1 => 'al sello',
+ DP1 => 'Del Sello',
+ lowercaseDP1 => 'del sello',
+ PX => 'Los Sellos',
+ lowercasePX => 'los sellos',
+ E1 => 'Este Sello',
+ lowercaseE1 => 'este sello',
+ EX => 'Estos Sellos',
+ lowercaseEX => 'estos sellos'
+ },
+ NewItem => 'Nuevo sello',
+
+ 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/ES/GCModels/GCwines.pm b/lib/gcstar/GCLang/ES/GCModels/GCwines.pm
new file mode 100644
index 0000000..faf0002
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCModels/GCwines.pm
@@ -0,0 +1,82 @@
+{
+ package GCLang::ES::GCModels::GCwines;
+
+ use utf8;
+
+# Copyright 2007 Yves Martin
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Colección de vinos',
+ Items => {0 => 'Vino',
+ 1 => 'Vino',
+ lowercase1 => 'vino',
+ X => 'Vinos',
+ lowercaseX => 'vinos',
+ P1 => 'El Vino',
+ lowercaseP1 => 'el vino',
+ U1 => 'Un Vino',
+ lowercaseU1 => 'un vino',
+ AP1 => 'Al Vino',
+ lowercaseAP1 => 'al vino',
+ DP1 => 'Del Vino',
+ lowercaseDP1 => 'del vino',
+ PX => 'Los Vinos',
+ lowercasePX => 'los vinos',
+ E1 => 'Este Vino',
+ lowercaseE1 => 'este vino',
+ EX => 'Estos Vinos',
+ lowercaseEX => 'estos vinos'
+ },
+ NewItem => 'Nuevo vino',
+
+ Name => 'Nombre',
+ Designation => 'Designación',
+ Vintage => 'Cosecha',
+ Vineyard => 'Viñedo',
+ Type => 'Tipo',
+ Grapes => 'Uvas',
+ Soil => 'Suelo',
+ Producer => 'Productor',
+ Country => 'País',
+ Volume => 'Volumen (ml)',
+ Alcohol => 'Alcohol (%)',
+ Medal => 'Medalla/Honores',
+
+ Storage => 'Almacenamiento',
+ Location => 'Localización',
+ ShelfIndex => 'Índice',
+ Quantity => 'Cantidad',
+ Acquisition => 'Adquisición',
+ PurchaseDate => 'Fecha de compra',
+ PurchasePrice => 'Precio de compra',
+ Gift => 'Regalo',
+ BottleLabel => 'Etiqueta de la botella',
+ Website => 'Referencias en la Web',
+
+ Tasted => 'Catado',
+ Comments => 'Comentarios',
+ Serving => 'Servir',
+ TastingField => 'Notas para cata',
+
+ General => 'General',
+ Details => 'Detalles',
+ Tasting => 'Cata',
+
+ TastedNo => 'No catado',
+ TastedYes => 'Catado',
+
+ FilterRange => 'Rango',
+ FilterTastedNo => '_No catado',
+ FilterTastedYes => 'Ya _catado',
+ FilterRatingSelect => 'Puntuación al _menos...'
+
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ES/GCstar.pm b/lib/gcstar/GCLang/ES/GCstar.pm
new file mode 100644
index 0000000..66966b4
--- /dev/null
+++ b/lib/gcstar/GCLang/ES/GCstar.pm
@@ -0,0 +1,673 @@
+{
+ package GCLang::ES;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+#
+# MODEL-SPECIFIC CODES
+#
+# Some strings are modified to include the model-specific item type. Inside these strings,
+# any strings contained in {}'s will be replaced by the corresponding string from
+# the Item collection in the model language file. For example:
+#
+# {lowercase1} = {Items}->{lowercase1} (item type, singular, all lowercase). EG: game, movie, book
+# {1} = {Items}->{1} (item type, singular, with first letter uppercase). EG: Game, Movie, Book
+# {lowercaseX} = {Items}->{lowercaseX} (item type, multiple, lowercase). EG: games, movies, books
+# {X} = {Items}->{X} (item type, multiple, with first letter uppercase). EG Games, Movies, Books
+#
+# GCstar will automatically convert these codes to the relevant translated string. You can
+# use these codes in any string marked by a "Accepts model codes" comment.
+#
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ 'LangName' => 'Español',
+
+ 'Separator' => ' : ',
+
+ 'Warning' => '<b>Aviso</b> :
+
+La información descargada desde Internet (gracias a
+los plugins de búsqueda) es sólo para <b>uso personal</b>
+
+Cualquier redistribución queda prohibida <b> sin la
+explícita autorización de las respectivas webs</b>.
+
+Para saber cual es la web a la que pertenece la información,
+puede usar <b>el botón situado debajo de los detalles de la película</b>.',
+
+ 'AllItemsFiltered' => 'Ninguna {lowercaseX} cumple con los criterios de filtrado', # Accepts model codes
+
+#Installation
+ 'InstallDirInfo' => 'Instalar en ',
+ 'InstallMandatory' => 'Componentes obligatorios',
+ 'InstallOptional' => 'Componentes opcionales',
+ 'InstallErrorMissing' => 'Error: los componentes siguientes deben instalarse: ',
+ 'InstallPrompt' => 'Directorio predeterminado para la instalación [/usr/local]: ',
+ 'InstallEnd' => 'Fin de la instalación',
+ 'InstallNoError' => 'Ningún error',
+ 'InstallLaunch' => 'Para utilizar la aplicación, ejecute ',
+ 'InstallDirectory' => 'Repertorio básico',
+ 'InstallTitle' => 'Instalación de GCstar',
+ 'InstallDependencies' => 'Dependencias',
+ 'InstallPath' => 'Ruta',
+ 'InstallOptions' => 'Opciones',
+ 'InstallSelectDirectory' => 'Elija el directorio para la instalación',
+ 'InstallWithClean' => 'Eliminar archivos del directorio de instalación.',
+ 'InstallWithMenu' => 'Añadir GCstar al menu de Aplicaciones',
+ 'InstallNoPermission' => 'Error : No tiene permisos para instalar en el directorio seleccionado!!',
+ 'InstallMissingMandatory' => 'Algunas dependencias obligatorias no están disponibles. No podrá instalar GCstar hasta que se instalen en el sistema.',
+ 'InstallMissingOptional' => 'Algunas depencias opcionales no están disponibles. Se detallan debajo. GCstar se instalará con algunas funciones deshabilitadas.',
+ 'InstallMissingNone' => 'Dependencias satisfechas. Puede continuar e instalar GCstar.',
+ 'InstallOK' => 'OK',
+ 'InstallMissing' => 'No disponible',
+ 'InstallMissingFor' => 'No disponible por',
+ 'InstallCleanDirectory' => 'Eliminado ficheros de GCstar en el diretorio: ',
+ 'InstallCopyDirectory' => 'Copiando ficheros en el directorio: ',
+ 'InstallCopyDesktop' => 'Copiando el fichero .desktop en: ',
+
+#Update
+ 'UpdateUseProxy' => 'Proxy a usar (si no usa ninguno presione Enter): ',
+ 'UpdateNoPermission' => 'Permiso de escritura denegado en este directorio: ',
+ 'UpdateNone' => 'No se ha encontrado ninguna actualización',
+ 'UpdateFileNotFound' => 'Fichero no encontrado',
+
+#Splash
+ 'SplashInit' => 'Inicialización',
+ 'SplashLoad' => 'Cargando películas',
+ 'SplashDisplay' => 'Mostrando Colección',
+ 'SplashSort' => 'Sorting Collection',
+ 'SplashDone' => 'Listo',
+
+#Import from GCfilms
+ 'GCfilmsImportQuestion' => 'Parece que antes usaba GCfilms. ¿Qué quiere importar desde GCfilms a GCstar? (No afectará a GCfilms, si todavía quiere seguir usándolo)',
+ 'GCfilmsImportOptions' => 'Preferencias',
+ 'GCfilmsImportData' => 'Listado de películas',
+
+#Menus
+ 'MenuFile' => '_Archivo',
+ 'MenuNewList' => '_Nueva lista de películas',
+ 'MenuStats' => 'Statistics',
+ 'MenuHistory' => '_Ficheros abiertos recientemente',
+ 'MenuLend' => '_Ver {lowercaseX} prestadas', # Accepts model codes
+ 'MenuImport' => '_Importar',
+ 'MenuExport' => '_Exportar',
+ 'MenuAddItem' => '_Add {lowercase1}', # Accepts model codes
+
+ 'MenuEdit' => '_Editar',
+ 'MenuDuplicate' => '_Duplicar {lowercase1}', # Accepts model codes
+ 'MenuDuplicatePlural' => '_Duplicar {lowercaseX}', # Accepts model codes
+ 'MenuEditSelectAllItems' => 'Select _all {lowercaseX}', # Accepts model codes
+ 'MenuEditDeleteCurrent' => '_Eliminar {lowercase1} actual',, # Accepts model codes
+ 'MenuEditDeleteCurrentPlural' => '_Eliminar {lowercaseX} actual', # Accepts model codes
+ 'MenuEditFields' => '_Cambiar campos de la colección',
+ 'MenuEditLockItems' => '_Bloquear la información',
+
+ 'MenuDisplay' => '_Visualización',
+ 'MenuSavedSearches' => 'Búsquedas guardadas',
+ 'MenuSavedSearchesSave' => 'Guardar búsqueda actual',
+ 'MenuSavedSearchesEdit' => 'Modificar búsquedas guardadas',
+ 'MenuAdvancedSearch' => 'Búsqueda _avanzada',
+ 'MenuViewAllItems' => '_Ver todas {lowercasePX}', # Accepts model codes
+ 'MenuNoFilter' => '_Todas las películas',
+
+ 'MenuConfiguration' => '_Configuración',
+ 'MenuDisplayMenu' => 'Display',
+ 'MenuDisplayFullScreen' => 'Full screen',
+ 'MenuDisplayMenuBar' => 'Menus',
+ 'MenuDisplayToolBar' => 'Toolbar',
+ 'MenuDisplayStatusBar' => 'Bottom bar',
+ 'MenuDisplayOptions' => '_Información a mostrar',
+ 'MenuBorrowers' => 'Pres_tatarios',
+ 'MenuToolbarConfiguration' => 'Controles de la barra de _herramientas',
+ 'MenuDefaultValues' => 'Default values for new item', # Accepts model codes
+ 'MenuGenresConversion' => 'Conversión de _géneros',
+
+ 'MenuBookmarks' => 'Mis _Colecciones',
+ 'MenuBookmarksAdd' => '_Añadir colección actual',
+ 'MenuBookmarksEdit' => '_Editar colecciones favoritas',
+
+ 'MenuHelp' => '_?',
+ 'MenuHelpContent' => '_?',
+ 'MenuAllPlugins' => 'Ver _complementos',
+ 'MenuBugReport' => 'Comunicar un _fallo',
+ 'MenuAbout' => 'A propósito de _GCstar',
+
+ 'MenuNewWindow' => 'Mostrar {lowercase1} en una nueva ventana', # Accepts model codes
+ 'MenuNewWindowPlural' => 'Mostrar {lowercaseX} en una nueva ventana', # Accepts model codes
+
+ 'ContextExpandAll' => 'Expandir todo',
+ 'ContextCollapseAll' => 'Contraer todo',
+ 'ContextChooseImage' => 'Elegir _Imagen',
+ 'ContextOpenWith' => 'Abrir _Con',
+ 'ContextImageEditor' => 'Editor de Imágenes',
+ 'ContextImgFront' => 'Frontal',
+ 'ContextImgBack' => 'Trasera',
+ 'ContextChooseFile' => 'Choose a File',
+ 'ContextChooseFolder' => 'Choose a Folder',
+
+ 'DialogEnterNumber' => 'Introduzca un valor por favor',
+
+ 'RemoveConfirm' => '¿Realmente quiere eliminar {lowercaseE1}?', # Accepts model codes
+ 'RemoveConfirmPlural' => '¿Realmente quiere eliminar {lowercaseEX}?', # Accepts model codes
+
+ 'DefaultNewItem' => 'Elemento nuevo',
+ 'NewItemTooltip' => 'Añadir una nueva película',
+ 'NoItemFound' => 'Ninguna película encontrada. ¿Quiere intentar una nueva búsqueda en otro sitio?',
+ 'OpenList' => '¿Qué lista de películas abrir?',
+ 'SaveList' => '¿En qué fichero quiere guardar el listado?',
+ 'SaveListTooltip' => 'Guardar el listado actual',
+ 'SaveUnsavedChanges' => 'Hay cambios sin guardar en su colección. ¿Quiere guardarlos?',
+ 'SaveDontSave' => 'No guardar',
+ 'PreferencesTooltip' => 'Cambiar sus preferencias',
+ 'ViewTooltip' => 'Cambiar el tipo de lista',
+ 'PlayTooltip' => 'Reproducir archivo de video asociado {lowercaseAP1}', # Accepts model codes
+ 'PlayFileNotFound' => 'No se encontró el fichero a reproducir:',
+ 'PlayRetry' => 'Reintentar',
+
+ 'StatusSave' => 'Guardando...',
+ 'StatusLoad' => 'Cargando...',
+ 'StatusSearch' => 'Búsqueda en curso...',
+ 'StatusGetInfo' => 'Descargando la información...',
+ 'StatusGetImage' => 'Descarga a distancia de la imagen...',
+
+ 'SaveError' => 'Imposible guardar la lista de películas. Compruebe los permisos y el espacio disponible en el disco.',
+ 'OpenError' => 'Imposible abrir la lista de películas. Compruebe los permisos.',
+ 'OpenFormatError' => 'Imposible abrir la lista de películas.',
+ 'OpenVersionWarning' => 'La colección se creó con una versión mñas erciente de GCstar. Si la guarda, podría perder datos.',
+ 'OpenVersionQuestion' => '¿Todavía quiere continuar?',
+ 'ImageError' => 'El repertorio elegido para salvar las imágenes no es correcto.¿Quiere elegir otro?',
+ 'OptionsCreationError'=> 'Imposible crear el fichero de opciones : ',
+ 'OptionsOpenError'=> 'Imposible abrir el fichero de opciones : ',
+ 'OptionsSaveError'=> 'Imposible guardar el fichero de opciones',
+ 'ErrorModelNotFound' => 'Modelo no encontrado: ',
+ 'ErrorModelUserDir' => 'Los modelos definidos por el usuario están en: ',
+
+ 'RandomTooltip' => '¿Qué quieres ver esta noche?',
+ 'RandomError'=> 'No quedan {lowercaseX} sin ver', # Accepts model codes
+ 'RandomEnd'=> 'No hay mas {lowercaseX}', # Accepts model codes
+ 'RandomNextTip'=> 'Siguiente sugerencia',
+ 'RandomOkTip'=> 'Aceptar {lowercaseE1}',
+
+ 'AboutTitle' => 'A propósito de GCstar',
+ 'AboutDesc' => 'Gestión de Colecciones',
+ 'AboutVersion' => 'Versión',
+ 'AboutTeam' => 'Equipo',
+ 'AboutWho' => 'Christian Jodar (Tian) : Gestión del proyecto, Programación
+Nyall Dawson (Zombiepig) : Programación
+TPF : Programación
+Adolfo González Blázquez : Programación
+',
+ 'AboutLicense' => 'Distribuido según los términos de la GNU GPL
+Logos Copyright le Spektre',
+ 'AboutTranslation' => 'Traducción : Adolfo González Blázquez',
+ 'AboutDesign' => 'Łukasz Kowalczk (Qoolman): Skin Designer
+Logo y diseño web por le Spektre',
+
+ 'ToolbarRandom' => 'Esta noche',
+
+ 'UnsavedCollection' => 'Colección no guardada',
+ 'ModelsSelect' => 'Seleccionar un tipo de colección',
+ 'ModelsPersonal' => 'Modelos personales',
+ 'ModelsDefault' => 'Modelos predefinidos',
+ 'ModelsList' => 'Definición de la colección',
+ 'ModelSettings' => 'Preferencias de la colección',
+ 'ModelNewType' => 'Nuevo tipo de colección',
+ 'ModelName' => 'Nombre del tipo de colección:',
+ 'ModelFields' => 'Fields',
+ 'ModelOptions' => 'Options',
+ 'ModelFilters' => 'Filters',
+ 'ModelNewField' => 'Nuevo campo',
+ 'ModelFieldInformation' => 'Información',
+ 'ModelFieldName' => 'Etiqueta:',
+ 'ModelFieldType' => 'Tipo:',
+ 'ModelFieldGroup' => 'Grupo:',
+ 'ModelFieldValues' => 'Valores',
+ 'ModelFieldInit' => 'Predeterminado:',
+ 'ModelFieldMin' => 'Mínimo:',
+ 'ModelFieldMax' => 'Máximo:',
+ 'ModelFieldList' => 'Lista de valores:',
+ 'ModelFieldListLegend' => '<i>Separados por comas</i>',
+ 'ModelFieldDisplayAs' => 'Mostrar como:',
+ 'ModelFieldDisplayAsText' => 'Texto',
+ 'ModelFieldDisplayAsGraphical' => 'Rating Control',
+ 'ModelFieldTypeShortText' => 'Texto corto',
+ 'ModelFieldTypeLongText' => 'Texto largo',
+ 'ModelFieldTypeYesNo' => 'Si/No',
+ 'ModelFieldTypeNumber' => 'Número',
+ 'ModelFieldTypeDate' => 'Fecha',
+ 'ModelFieldTypeOptions' => 'Lista de valores prefedinidos',
+ 'ModelFieldTypeImage' => 'Imagen',
+ 'ModelFieldTypeSingleList' => 'Lista simple',
+ 'ModelFieldTypeFile' => 'Fichero',
+ 'ModelFieldTypeFormatted' => 'Dependant on other fields',
+ 'ModelFieldParameters' => 'Parámetros',
+ 'ModelFieldHasHistory' => 'Usar historial',
+ 'ModelFieldFlat' => 'Mostrar en una línea',
+ 'ModelFieldStep' => 'Paso de incremento:',
+ 'ModelFieldFileFormat' => 'Formato de fichero:',
+ 'ModelFieldFileFile' => 'Fichero simple',
+ 'ModelFieldFileImage' => 'Imagen',
+ 'ModelFieldFileVideo' => 'Video',
+ 'ModelFieldFileAudio' => 'Audio',
+ 'ModelFieldFileProgram' => 'Programa',
+ 'ModelFieldFileUrl' => 'URL',
+ 'ModelFieldFileEbook' => 'Ebook',
+ 'ModelOptionsFields' => 'Campos a usar',
+ 'ModelOptionsFieldsAuto' => 'Automático',
+ 'ModelOptionsFieldsNone' => 'Ninguno',
+ 'ModelOptionsFieldsTitle' => 'Como título',
+ 'ModelOptionsFieldsId' => 'Como identificador',
+ 'ModelOptionsFieldsCover' => 'Como portada',
+ 'ModelOptionsFieldsPlay' => 'Como botón de Reproducir',
+ 'ModelCollectionSettings' => 'Preferencias de la colección',
+ 'ModelCollectionSettingsLending' => 'Los elementos se pueden prestar',
+ 'ModelCollectionSettingsTagging' => 'Los elementos se pueden etiquetar',
+ 'ModelFilterActivated' => 'Debe aparecer en la caja de búsqueda',
+ 'ModelFilterComparison' => 'Comparación',
+ 'ModelFilterContain' => 'Contiene',
+ 'ModelFilterDoesNotContain' => 'No contiene',
+ 'ModelFilterRegexp' => 'Expresión regular',
+ 'ModelFilterRange' => 'Rango',
+ 'ModelFilterNumeric' => 'Comparación numérica',
+ 'ModelFilterQuick' => 'Crear un filtro rápido',
+ 'ModelTooltipName' => 'Usar un nombre para reutilizar este modelo para otras colecciones. Si lo deja vacío, las preferencias se guardatán en la propia colección',
+ 'ModelTooltipLabel' => 'El nombre del campo como será mostrado',
+ 'ModelTooltipGroup' => 'Usado para agrupar los campos. Los elementos sin calor aparecerán en el grupo por defecto',
+ 'ModelTooltipHistory' => '¿Deberían almacenarse los valores introducidos anteriormente en una lista asociada al campo?',
+ 'ModelTooltipFormat' => 'El formato se usa para determinar la acción para abrir el fichero al pulsar el botón de Reproducir',
+ 'ModelTooltipLending' => 'Se añadirán algunos campos para administrar los préstamos',
+ 'ModelTooltipTagging' => 'Se añadirán algunos campos para administrar las etiquetas',
+ 'ModelTooltipNumeric' => '¿Se deberían considerar los valores como números para las comparaciones?',
+ 'ModelTooltipQuick' => 'Esto añadirá un submenu dentro del menu de Filtros',
+
+ 'ResultsTitle' => 'Elija {lowercaseU1}', # Accepts model codes
+ 'ResultsNextTip' => 'Buscar en el siguiente sitio',
+ 'ResultsPreview' => 'Previsualizar',
+ 'ResultsInfo' => 'Puedes añadir varios elementos a la colección presionando Control ó Mayúsculas y seleccionándolos', # Accepts model codes
+
+ 'OptionsTitle' => 'Preferencias',
+ 'OptionsExpertMode' => 'Modo experto',
+ 'OptionsPrograms' => 'Especifíque que aplicaciones usar para cada tipo de medio, o déjelos en blanco para usar los predeterminados del sistema',
+ 'OptionsBrowser' => 'Navegador de Internet',
+ 'OptionsPlayer' => 'Reproductor de video',
+ 'OptionsAudio' => 'Reproductor de audio',
+ 'OptionsImageEditor' => 'Editor de imágenes',
+ 'OptionsCdDevice' => 'Dispositivo de CD',
+ 'OptionsImages' => 'Directorio de imágenes',
+ 'OptionsUseRelativePaths' => 'Usar rutas relativas para las imágenes',
+ 'OptionsLayout' => 'Disposición',
+ 'OptionsStatus' => 'Barra de estado',
+ 'OptionsUseStars' => 'Usar estrellas para mostrar las puntuaciones',
+ 'OptionsWarning' => 'Cuidado : Los cambios efectuados en este pestaña no se tendrán en cuenta hasta reiniciar la aplicación',
+ 'OptionsRemoveConfirm' => 'Pedir confirmación antes de eliminar',
+ 'OptionsAutoSave' => 'Protección automática de la lista de películas',
+ 'OptionsAutoLoad' => 'Cargar la colección anterior en el inicio',
+ 'OptionsSplash' => 'Mostrar la pantalla de arranque',
+ 'OptionsTearoffMenus' => 'Activar menus desprendibles',
+ 'OptionsSpellCheck' => 'Usar corrector de ortografía en los campos de texto largos',
+ 'OptionsProgramTitle' => 'Elija el programa que debe utilizarse',
+ 'OptionsPlugins' => 'Sitio para descargar las fichas',
+ 'OptionsAskPlugins' => 'Preguntar',
+ 'OptionsPluginsMulti' => 'Varios sitios',
+ 'OptionsPluginsMultiAsk' => 'Preguntar (Algunos sitios)',
+ 'OptionsPluginsMultiPerField' => 'Varios sitios (per field)',
+ 'OptionsPluginsMultiPerFieldWindowTitle' => 'Many sites per field order selection',
+ 'OptionsPluginsMultiPerFieldDesc' => 'For each selected field we will return the first non empty information beginning from left',
+ 'OptionsPluginsMultiPerFieldFirst' => 'First',
+ 'OptionsPluginsMultiPerFieldLast' => 'Last',
+ 'OptionsPluginsMultiPerFieldRemove' => 'Remove',
+ 'OptionsPluginsMultiPerFieldClearSelected' => 'Empty selected field list',
+ 'OptionsPluginsList' => 'Definir la lista',
+ 'OptionsAskImport' => 'Elegir los campos que deben importarse',
+ 'OptionsProxy' => 'Utilizar un proxy',
+ 'OptionsCookieJar' => 'Usar este fichero de cookie jar',
+ 'OptionsMain' => 'Principal',
+ 'OptionsLang' => 'Idioma',
+ 'OptionsPaths' => 'Directorios',
+ 'OptionsInternet' => 'Internet',
+ 'OptionsConveniences' => 'Opciones',
+ 'OptionsDisplay' => 'Visualización',
+ 'OptionsToolbar' => 'Barra de herramientas',
+ 'OptionsToolbars' => {0 => 'Ninguna', 1 => 'Pequeña', 2 => 'Grande', 3 => 'Predeterminado del sistema'},
+ 'OptionsToolbarPosition' => 'Posición',
+ 'OptionsToolbarPositions' => {0 => 'Arriba', 1 => 'Abajo', 2 => 'Izquierda', 3 => 'Derecha'},
+ 'OptionsExpandersMode' => 'Extensores demasiado largos',
+ 'OptionsExpandersModes' => {'asis' => 'No hacer nada', 'cut' => 'Cortar', 'wrap' => 'Dividir las lineas'},
+ 'OptionsDateFormat' => 'Formato de fecha',
+ 'OptionsDateFormatTooltip' => 'El formato usado es el mismo de strftime(3). El predeterminado es %d/%m/%Y',
+ 'OptionsView' => 'Visualización de las películas',
+ 'OptionsViews' => {0 => 'Texto', 1 => 'Imagen', 2 => 'Detallada'},
+ 'OptionsColumns' => 'Columnas',
+ 'OptionsMailer' => 'Método de envío de los correos electrónicos',
+ 'OptionsSMTP' => 'Servidor',
+ 'OptionsFrom' => 'Correo electrónico del remitente',
+ 'OptionsTransform' => 'Poner al final de los títulos los artículos',
+ 'OptionsArticles' => 'Artículos (separados por una coma)',
+ 'OptionsSearchStop' => 'El usuario puede parar las búsquedas',
+ 'OptionsBigPics' => 'Usar imágenes grandes cuando estén disponibles',
+ 'OptionsAlwaysOriginal' => 'Usar título principal como el original si no se encuentra ninguno',
+ 'OptionsRestoreAccelerators' => 'Restaurar aceleradores',
+ 'OptionsHistory' => 'Tamaño del historial',
+ 'OptionsClearHistory' => 'Limpiar el historial',
+ 'OptionsStyle' => 'Piel',
+ 'OptionsDontAsk' => 'No preguntar nunca más',
+ 'OptionsPathProgramsGroup' => 'Aplicaciones',
+ 'OptionsProgramsSystem' => 'Usar programas predefinidos del sistema',
+ 'OptionsProgramsUser' => 'Usar programas definidos por el usuario',
+ 'OptionsProgramsSet' => 'Establecer programas',
+ 'OptionsPathImagesGroup' => 'Imágenes',
+ 'OptionsInternetDataGroup' => 'Importar datos',
+ 'OptionsInternetSettingsGroup' => 'Preferencias',
+ 'OptionsDisplayInformationGroup' => 'Mostrar información',
+ 'OptionsDisplayArticlesGroup' => 'Artículos',
+ 'OptionsImagesDisplayGroup' => 'Mostrar',
+ 'OptionsImagesStyleGroup' => 'Estilo',
+ 'OptionsDetailedPreferencesGroup' => 'Preferencias',
+ 'OptionsFeaturesConveniencesGroup' => 'conveniencias',
+ 'OptionsPicturesFormat' => 'Prefijo para usar en las imágenes:',
+ 'OptionsPicturesFormatInternal' => 'gcstar__',
+ 'OptionsPicturesFormatTitle' => 'Título o nombre del elemento asociado',
+ 'OptionsPicturesWorkingDir' => '%WORKING_DIR% o . se reemplazará con el directorio de la colección (usar sólo al principio de la ruta)',
+ 'OptionsPicturesFileBase' => '%FILE_BASE% se reemplazará por el nombre de la colecciñón si el sufijo (.gcs)',
+ 'OptionsPicturesWorkingDirError' => '%WORKING_DIR% sólo se puede usar al principio de la ruta para imágenes',
+ 'OptionsConfigureMailers' => 'Configurar programas de envío correo',
+
+ 'ImagesOptionsButton' => 'Preferencias',
+ 'ImagesOptionsTitle' => 'Preferencias para el listado de imágenes',
+ 'ImagesOptionsSelectColor' => 'Elija un color',
+ 'ImagesOptionsUseOverlays' => 'Utilizar superposición de imágenes',
+ 'ImagesOptionsBg' => 'Fondo',
+ 'ImagesOptionsBgPicture' => 'Usar una imagen de fondo',
+ 'ImagesOptionsFg'=> 'Selección',
+ 'ImagesOptionsBgTooltip' => 'Cambiar el color de fondo',
+ 'ImagesOptionsFgTooltip'=> 'Cambiar el color de la selección',
+ 'ImagesOptionsResizeImgList' => 'Cambiar automáticamente el número de columnas',
+ 'ImagesOptionsAnimateImgList' => 'Use animations',
+ 'ImagesOptionsSizeLabel' => 'Tamaño',
+ 'ImagesOptionsSizeList' => {0 => 'Muy Pequeño', 1 => 'Pequeño', 2 => 'Mediano', 3 => 'Grande', 4 => 'Extra Grande'},
+ 'ImagesOptionsSizeTooltip' => 'Seleccione el tamaño de imagen',
+
+ 'DetailedOptionsTitle' => 'Preferencias del listado detallado',
+ 'DetailedOptionsImageSize' => 'Tamaño de la imagen',
+ 'DetailedOptionsGroupItems' => 'Agrupar elementos por',
+ 'DetailedOptionsSecondarySort' => 'Ordenar los campos por el hijo',
+ 'DetailedOptionsFields' => 'Seleccione los campos a mostrar',
+ 'DetailedOptionsGroupedFirst' => 'Mantener juntos los elementos huérfanos',
+ 'DetailedOptionsAddCount' => 'Añadir el número de elementos en las categorías',
+
+ 'ExtractButton' => 'Información',
+ 'ExtractTitle' => 'Información del Fichero de Video',
+ 'ExtractImport' => 'Usar valores',
+
+ 'FieldsListOpen' => 'Leer los campos de la lista desde un fichero',
+ 'FieldsListSave' => 'Guardar los campos de la lista a un fichero',
+ 'FieldsListError' => 'Estos campor no se pueden usar con este tipo de colección',
+ 'FieldsListIgnore' => '--- Ignorar',
+
+ 'ExportTitle' => 'Exportar el listado de películas',
+ 'ExportFilter' => 'Exportar sólo las películas mostradas',
+ 'ExportFieldsTitle' => 'Campos a exportar',
+ 'ExportFieldsTip' => 'Elija los campos a exportar',
+ 'ExportWithPictures' => 'Copiar las imágenes a un subdirectorio',
+ 'ExportSortBy' => 'Ordenar por',
+ 'ExportOrder' => 'Orden',
+
+ 'ImportListTitle' => 'Importar otro listado de películas',
+ 'ImportExportData' => 'Datos',
+ 'ImportExportFile' => 'Fichero',
+ 'ImportExportFieldsUnused' => 'Campos sin utilizar',
+ 'ImportExportFieldsUsed' => 'Campos utilizados',
+ 'ImportExportFieldsFill' => 'Todos los campos',
+ 'ImportExportFieldsClear' => 'Ningún campo',
+ 'ImportExportFieldsEmpty' => 'Debe señalar al menos un campo',
+ 'ImportExportFileEmpty' => 'Especifique un nombre para el fichero',
+ 'ImportFieldsTitle' => 'Campos a importar',
+ 'ImportFieldsTip' => 'Elija los campos a importar',
+ 'ImportNewList' => 'Crear un nuevo listado',
+ 'ImportCurrentList' => 'Añadir al listado actual',
+ 'ImportDropError' => 'Hubo un error abriendo al menos un fichero. Se recargará el listado anterior.',
+ 'ImportGenerateId' => 'Generate identifier for each item',
+
+ 'FileChooserOpenFile' => '¿En qué fichero guardar?',
+ 'FileChooserDirectory' => 'Directorio',
+ 'FileChooserOpenDirectory' => 'Elija un directorio',
+ 'FileChooserOverwrite' => 'Este fichero ya existe. ¿Quiere sustituirlo?',
+ 'FileAllFiles' => 'All Files',
+ 'FileVideoFiles' => 'Video Files',
+ 'FileEbookFiles' => 'Ebook Files',
+ 'FileAudioFiles' => 'Audio Files',
+ 'FileGCstarFiles' => 'GCstar Collections',
+
+ 'PanelCompact' => 'Compacto',
+ 'PanelReadOnly' => 'Sólo Lectura',
+ 'PanelForm' => 'Pestañas',
+
+ 'PanelSearchButton' => 'Descargar',
+ 'PanelSearchTip' => 'Buscar información relativa a la película',
+ 'PanelSearchContextChooseOne' => 'Choose a site ...',
+ 'PanelSearchContextMultiSite' => 'Use "Many sites"',
+ 'PanelSearchContextMultiSitePerField' => 'Use "Many sites per field"',
+ 'PanelSearchContextOptions' => 'Change options ...',
+ 'PanelImageTipOpen' => 'Pulse en la imagen para elegir otra.',
+ 'PanelImageTipView' => 'Pulse en la imagen para verla en su tamaño real...',
+ 'PanelImageTipMenu' => 'Click con el botón derecho para mas opciones.',
+ 'PanelImageTitle' => 'Seleccionar una imagen',
+ 'PanelImageNoImage' => 'Sin imagen',
+ 'PanelSelectFileTitle' => 'Seleccione un fichero',
+ 'PanelLaunch' => 'Launch',
+ 'PanelRestoreDefault' => 'Restaurar predeterminado',
+ 'PanelRefresh' => 'Update',
+ 'PanelRefreshTip' => 'Update information from web',
+
+ 'PanelFrom' =>'De',
+ 'PanelTo' =>'Para',
+
+ 'PanelWeb' => 'Ver la ficha en Internet',
+ 'PanelWebTip' => 'Ver la ficha {lowercaseDP1} en Internet', # Accepts model codes
+ 'PanelRemoveTip' => 'Eliminar {lowercaseP1} anteriormente mencionada', # Accepts model codes
+
+ 'PanelDateSelect' => 'Cambiar la fecha',
+ 'PanelNobody' => 'Nadie',
+ 'PanelUnknown' => 'Desconocido',
+ 'PanelAdded' => 'Añadida el (fecha)',
+ 'PanelRating' => 'Nota',
+ 'PanelPressRating' => 'Press Rating',
+ 'PanelLocation' => 'Sitio',
+
+ 'PanelLending' => 'Préstamo',
+ 'PanelBorrower' => 'Prestatario',
+ 'PanelLendDate' => 'Fecha',
+ 'PanelHistory' => 'Historial',
+ 'PanelReturned' => '{1} devuelta', # Accepts model codes
+ 'PanelReturnDate' => 'Fecha de devolución',
+ 'PanelLendedYes' => 'Prestada',
+ 'PanelLendedNo' => 'Disponible',
+
+ 'PanelTags' => 'Etiquetas',
+ 'PanelFavourite' => 'Favorita',
+ 'TagsAssigned' => 'Etiquetas asignadas',
+
+ 'PanelUser' => 'Campos del usuario',
+
+ 'CheckUndef' => 'Cualquiera',
+ 'CheckYes' => 'Si',
+ 'CheckNo' => 'No',
+
+ 'ToolbarAll' => 'Ver todas',
+ 'ToolbarAllTooltip' => 'Ver todas las películas',
+ 'ToolbarGroupBy' => 'Agrupar por',
+ 'ToolbarGroupByTooltip' => 'Seleccionar el campo a usar para agrupos los elementos en la lista',
+ 'ToolbarQuickSearch' => 'Búsqueda rápida',
+ 'ToolbarQuickSearchLabel' => 'Buscar',
+ 'ToolbarQuickSearchTooltip' => 'Seleccione el campo en el que buscar. Introduzca los términos de búsqueda y pulse Enter',
+ 'ToolbarSeparator' => ' Separador',
+
+ 'PluginsTitle' => 'Buscar una película',
+ 'PluginsQuery' => 'Búsqueda',
+ 'PluginsFrame' => 'Sitio donde buscar ',
+ 'PluginsLogo' => 'Logo',
+ 'PluginsName' => 'Nombre',
+ 'PluginsSearchFields' => 'Campos de búsqueda',
+ 'PluginsAuthor' => 'Autor',
+ 'PluginsLang' => 'Idioma',
+ 'PluginsUseSite' => 'Usar sitio seleccionado para futuras búsquedas',
+ 'PluginsPreferredTooltip' => 'Sitio recomendado por GCstar',
+ 'PluginDisabled' => 'Disabled',
+
+ 'BorrowersTitle' => 'Configuración de los prestatarios',
+ 'BorrowersList' => 'Prestatarios',
+ 'BorrowersName' => 'Nombre',
+ 'BorrowersEmail' => 'Correo electrónico',
+ 'BorrowersAdd' => 'Añadir',
+ 'BorrowersRemove' => 'Eliminar',
+ 'BorrowersEdit' => 'Modificar',
+ 'BorrowersTemplate' => 'Modelo de correo electrónico',
+ 'BorrowersSubject' => 'Título del correo electrónico : ',
+ 'BorrowersNotice1' => '%1 se sustituirá por el nombre del prestatario',
+ 'BorrowersNotice2' => '%2 se sustituirá por el título de la película',
+ 'BorrowersNotice3' => '%3 se sustituirá por la fecha del préstamo',
+
+ 'BorrowersImportTitle' => 'Importar información de prestatarios',
+ 'BorrowersImportType' => 'Formato del fichero:',
+ 'BorrowersImportFile' => 'Fichero:',
+
+ 'BorrowedTitle' => '{X} prestadas', # Accepts model codes
+ 'BorrowedDate' => 'Desde el',
+ 'BorrowedDisplayInPanel' => 'Mostrar {lowercase1} en la ventana principal', # Accepts model codes
+
+ 'MailTitle' => 'Enviar un correo electrónico',
+ 'MailFrom' => 'De: ',
+ 'MailTo' => 'Para: ',
+ 'MailSubject' => 'Tema: ',
+ 'MailSmtpError' => 'Problema de conexión con el servidor',
+ 'MailSendmailError' => 'Problema ejecutando sendmail',
+
+ 'SearchTooltip' => 'Buscar en todas {lowercasePX}', # Accepts model codes
+ 'SearchTitle' => 'Búsqueda de {lowercasePX}', # Accepts model codes
+ 'SearchNoField' => 'No field have been selected for the search box.
+Add some of them in the Filters tab of the collection settings.',
+
+ 'QueryReplaceField' => 'Campo a sustituir',
+ 'QueryReplaceOld' => 'Nombre actual',
+ 'QueryReplaceNew' => 'Nuevo nombre',
+ 'QueryReplaceLaunch' => 'Sustituir',
+
+ 'ImportWindowTitle' => 'Elegir los campos que deben importarse',
+ 'ImportViewPicture' => 'Ver la imagen',
+ 'ImportSelectAll' => 'Seleccionarlo todo',
+ 'ImportSelectNone' => 'No seleccionar nada',
+
+ 'MultiSiteTitle' => 'Sitios donde buscar',
+ 'MultiSiteUnused' => 'Módulos no usados',
+ 'MultiSiteUsed' => 'Módulos a usar',
+ 'MultiSiteLang' => 'Usar todos los módulos españoles',
+ 'MultiSiteEmptyError' => 'La lista de sitios está vacía',
+ 'MultiSiteClear' => 'Vaciar la lista',
+
+ 'DisplayOptionsTitle' => 'Elementos a mostrar',
+ 'DisplayOptionsAll' => 'Seleccionarlo todo',
+ 'DisplayOptionsSearch' => 'Buscar',
+
+ 'GenresTitle' => 'Conversión de Géneros',
+ 'GenresCategoryName' => 'Género a usar',
+ 'GenresCategoryMembers' => 'Géneros a reemplazar',
+ 'GenresLoad' => 'Cargar una lista predefinida',
+ 'GenresExport' => 'Exportar listado a un fichero',
+ 'GenresModify' => 'Editar conversión',
+
+ 'PropertiesName' => 'Nombre de la colección',
+ 'PropertiesLang' => 'Código de idioma',
+ 'PropertiesOwner' => 'Dueño',
+ 'PropertiesEmail' => 'Email',
+ 'PropertiesDescription' => 'Descripción',
+ 'PropertiesFile' => 'Información del fichero',
+ 'PropertiesFilePath' => 'Ruta completa',
+ 'PropertiesItemsNumber' => 'Número de {lowercaseX}', # Accepts model codes
+ 'PropertiesFileSize' => 'Tamaño',
+ 'PropertiesFileSizeSymbols' => ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
+ 'PropertiesCollection' => 'Propiedades de la colección',
+ 'PropertiesDefaultPicture' => 'Imagen predeterminada',
+
+ 'MailProgramsTitle' => 'Programas para enviar correos',
+ 'MailProgramsName' => 'Nombre',
+ 'MailProgramsCommand' => 'Linea de comandos',
+ 'MailProgramsRestore' => 'Usar predeterminados',
+ 'MailProgramsAdd' => 'Añadir un programa',
+ 'MailProgramsInstructions' => 'En la linea de comandos se hacen algunas sustituciones:
+ %f se sustituirá por la dirección de e-mail del usuario.
+ %t se sustituirá por la dirección del destinatario.
+ %s se sustituirá por el asunto del mensaje.
+ %b se sustituirá por el cuerpo del mensaje.',
+
+ 'BookmarksBookmarks' => 'Marcadores',
+ 'BookmarksFolder' => 'Directorio',
+ 'BookmarksLabel' => 'Etiqueta',
+ 'BookmarksPath' => 'Ruta',
+ 'BookmarksNewFolder' => 'Nueva carpeta',
+
+ 'AdvancedSearchType' => 'Tipo de búsqueda',
+ 'AdvancedSearchTypeAnd' => '{X} que cumplan todos los criterios', # Accepts model codes
+ 'AdvancedSearchTypeOr' => '{X} que cunplan al menos un criterio', # Accepts model codes
+ 'AdvancedSearchCriteria' => 'Critero',
+ 'AdvancedSearchAnyField' => 'Cualquier campo',
+ 'AdvancedSearchSaveTitle' => 'Guardar búsqueda',
+ 'AdvancedSearchSaveName' => 'Nombre',
+ 'AdvancedSearchSaveOverwrite' => 'Ya esixte una búsqueda guardada con el mismo nombre. Por favor, use uno diferente.',
+ 'AdvancedSearchUseCase' => 'Sensible a mayúsculas',
+ 'AdvancedSearchIgnoreDiacritics' => 'Ignorar acentos y otros diacríticos',
+
+ 'BugReportSubject' => 'Informe de error generado por GCstar',
+ 'BugReportVersion' => 'Versión',
+ 'BugReportPlatform' => 'Sistema operativo',
+ 'BugReportMessage' => 'Mensaje de error',
+ 'BugReportInformation' => 'Información adicional',
+
+#Statistics
+ 'StatsFieldToUse' => 'Field to use',
+ 'StatsSortByNumber' => 'Sort by number of {lowercaseX}',
+ 'StatsGenerate' => 'Generate',
+ 'StatsKindOfGraph' => 'Kind of graphic',
+ 'StatsBars' => 'Bars',
+ 'StatsPie' => 'Pie',
+ 'Stats3DPie' => '3D Pie',
+ 'StatsArea' => 'Areas',
+ 'StatsHistory' => 'History',
+ 'StatsWidth' => 'Width',
+ 'StatsHeight' => 'Height',
+ 'StatsFontSize' => 'Font size',
+ 'StatsDisplayNumber' => 'Show numbers',
+ 'StatsSave' => 'Save statistics image to a file',
+ 'StatsAccumulate' => 'Accumulate values',
+ 'StatsShowAllDates' => 'Show all dates',
+
+ 'DefaultValuesTip' => 'Values set in this window will be used as the default values when creating a new {lowercase1}',
+ );
+}
+1;