From 126bb8cb6b93240bb4d3a2b816b74c286c3d422b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 6 Jul 2014 15:20:38 +0200 Subject: Imported Upstream version 1.7.0 --- lib/gcstar/GCLang/ES/GCModels/GCTVepisodes.pm | 65 ++++++++ lib/gcstar/GCLang/ES/GCModels/GCTVseries.pm | 69 +++++++++ lib/gcstar/GCLang/ES/GCModels/GCboardgames.pm | 103 +++++++++++++ lib/gcstar/GCLang/ES/GCModels/GCbooks.pm | 88 +++++++++++ lib/gcstar/GCLang/ES/GCModels/GCcoins.pm | 126 +++++++++++++++ lib/gcstar/GCLang/ES/GCModels/GCcomics.pm | 90 +++++++++++ lib/gcstar/GCLang/ES/GCModels/GCfilms.pm | 112 ++++++++++++++ lib/gcstar/GCLang/ES/GCModels/GCgames.pm | 99 ++++++++++++ lib/gcstar/GCLang/ES/GCModels/GCgeneric.pm | 59 +++++++ lib/gcstar/GCLang/ES/GCModels/GCminicars.pm | 195 +++++++++++++++++++++++ lib/gcstar/GCLang/ES/GCModels/GCmusics.pm | 85 ++++++++++ lib/gcstar/GCLang/ES/GCModels/GCperiodicals.pm | 70 +++++++++ lib/gcstar/GCLang/ES/GCModels/GCsmartcards.pm | 108 +++++++++++++ lib/gcstar/GCLang/ES/GCModels/GCsoftware.pm | 84 ++++++++++ lib/gcstar/GCLang/ES/GCModels/GCstamps.pm | 206 +++++++++++++++++++++++++ lib/gcstar/GCLang/ES/GCModels/GCwines.pm | 82 ++++++++++ 16 files changed, 1641 insertions(+) create mode 100644 lib/gcstar/GCLang/ES/GCModels/GCTVepisodes.pm create mode 100644 lib/gcstar/GCLang/ES/GCModels/GCTVseries.pm create mode 100644 lib/gcstar/GCLang/ES/GCModels/GCboardgames.pm create mode 100644 lib/gcstar/GCLang/ES/GCModels/GCbooks.pm create mode 100644 lib/gcstar/GCLang/ES/GCModels/GCcoins.pm create mode 100644 lib/gcstar/GCLang/ES/GCModels/GCcomics.pm create mode 100644 lib/gcstar/GCLang/ES/GCModels/GCfilms.pm create mode 100644 lib/gcstar/GCLang/ES/GCModels/GCgames.pm create mode 100644 lib/gcstar/GCLang/ES/GCModels/GCgeneric.pm create mode 100644 lib/gcstar/GCLang/ES/GCModels/GCminicars.pm create mode 100644 lib/gcstar/GCLang/ES/GCModels/GCmusics.pm create mode 100644 lib/gcstar/GCLang/ES/GCModels/GCperiodicals.pm create mode 100644 lib/gcstar/GCLang/ES/GCModels/GCsmartcards.pm create mode 100644 lib/gcstar/GCLang/ES/GCModels/GCsoftware.pm create mode 100644 lib/gcstar/GCLang/ES/GCModels/GCstamps.pm create mode 100644 lib/gcstar/GCLang/ES/GCModels/GCwines.pm (limited to 'lib/gcstar/GCLang/ES/GCModels') 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; -- cgit v1.2.3