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/GL/GCExport/GCExportCSV.pm | 40 ++ lib/gcstar/GCLang/GL/GCExport/GCExportExternal.pm | 38 ++ lib/gcstar/GCLang/GL/GCExport/GCExportHTML.pm | 64 ++ lib/gcstar/GCLang/GL/GCExport/GCExportPDB.pm | 38 ++ lib/gcstar/GCLang/GL/GCExport/GCExportSQL.pm | 40 ++ lib/gcstar/GCLang/GL/GCExport/GCExportTarGz.pm | 37 ++ lib/gcstar/GCLang/GL/GCExport/GCExportXML.pm | 41 ++ .../GCLang/GL/GCImport/GCImportAlexandria.pm | 39 ++ lib/gcstar/GCLang/GL/GCImport/GCImportCSV.pm | 42 ++ lib/gcstar/GCLang/GL/GCImport/GCImportFolder.pm | 68 +++ lib/gcstar/GCLang/GL/GCImport/GCImportGCstar.pm | 37 ++ lib/gcstar/GCLang/GL/GCImport/GCImportList.pm | 42 ++ lib/gcstar/GCLang/GL/GCImport/GCImportScanner.pm | 50 ++ lib/gcstar/GCLang/GL/GCImport/GCImportTellico.pm | 37 ++ lib/gcstar/GCLang/GL/GCModels/GCTVepisodes.pm | 46 ++ lib/gcstar/GCLang/GL/GCModels/GCTVseries.pm | 50 ++ lib/gcstar/GCLang/GL/GCModels/GCboardgames.pm | 86 +++ lib/gcstar/GCLang/GL/GCModels/GCbooks.pm | 70 +++ lib/gcstar/GCLang/GL/GCModels/GCcoins.pm | 104 ++++ lib/gcstar/GCLang/GL/GCModels/GCcomics.pm | 73 +++ lib/gcstar/GCLang/GL/GCModels/GCfilms.pm | 93 +++ lib/gcstar/GCLang/GL/GCModels/GCgames.pm | 82 +++ lib/gcstar/GCLang/GL/GCModels/GCgeneric.pm | 42 ++ lib/gcstar/GCLang/GL/GCModels/GCminicars.pm | 182 ++++++ lib/gcstar/GCLang/GL/GCModels/GCmusics.pm | 68 +++ lib/gcstar/GCLang/GL/GCModels/GCperiodicals.pm | 52 ++ lib/gcstar/GCLang/GL/GCModels/GCsmartcards.pm | 108 ++++ lib/gcstar/GCLang/GL/GCModels/GCsoftware.pm | 84 +++ lib/gcstar/GCLang/GL/GCModels/GCstamps.pm | 189 ++++++ lib/gcstar/GCLang/GL/GCModels/GCwines.pm | 65 ++ lib/gcstar/GCLang/GL/GCstar.pm | 674 +++++++++++++++++++++ 31 files changed, 2681 insertions(+) create mode 100644 lib/gcstar/GCLang/GL/GCExport/GCExportCSV.pm create mode 100644 lib/gcstar/GCLang/GL/GCExport/GCExportExternal.pm create mode 100644 lib/gcstar/GCLang/GL/GCExport/GCExportHTML.pm create mode 100644 lib/gcstar/GCLang/GL/GCExport/GCExportPDB.pm create mode 100644 lib/gcstar/GCLang/GL/GCExport/GCExportSQL.pm create mode 100644 lib/gcstar/GCLang/GL/GCExport/GCExportTarGz.pm create mode 100644 lib/gcstar/GCLang/GL/GCExport/GCExportXML.pm create mode 100644 lib/gcstar/GCLang/GL/GCImport/GCImportAlexandria.pm create mode 100644 lib/gcstar/GCLang/GL/GCImport/GCImportCSV.pm create mode 100644 lib/gcstar/GCLang/GL/GCImport/GCImportFolder.pm create mode 100644 lib/gcstar/GCLang/GL/GCImport/GCImportGCstar.pm create mode 100644 lib/gcstar/GCLang/GL/GCImport/GCImportList.pm create mode 100644 lib/gcstar/GCLang/GL/GCImport/GCImportScanner.pm create mode 100644 lib/gcstar/GCLang/GL/GCImport/GCImportTellico.pm create mode 100644 lib/gcstar/GCLang/GL/GCModels/GCTVepisodes.pm create mode 100644 lib/gcstar/GCLang/GL/GCModels/GCTVseries.pm create mode 100644 lib/gcstar/GCLang/GL/GCModels/GCboardgames.pm create mode 100644 lib/gcstar/GCLang/GL/GCModels/GCbooks.pm create mode 100644 lib/gcstar/GCLang/GL/GCModels/GCcoins.pm create mode 100644 lib/gcstar/GCLang/GL/GCModels/GCcomics.pm create mode 100644 lib/gcstar/GCLang/GL/GCModels/GCfilms.pm create mode 100644 lib/gcstar/GCLang/GL/GCModels/GCgames.pm create mode 100644 lib/gcstar/GCLang/GL/GCModels/GCgeneric.pm create mode 100644 lib/gcstar/GCLang/GL/GCModels/GCminicars.pm create mode 100644 lib/gcstar/GCLang/GL/GCModels/GCmusics.pm create mode 100644 lib/gcstar/GCLang/GL/GCModels/GCperiodicals.pm create mode 100644 lib/gcstar/GCLang/GL/GCModels/GCsmartcards.pm create mode 100644 lib/gcstar/GCLang/GL/GCModels/GCsoftware.pm create mode 100644 lib/gcstar/GCLang/GL/GCModels/GCstamps.pm create mode 100644 lib/gcstar/GCLang/GL/GCModels/GCwines.pm create mode 100644 lib/gcstar/GCLang/GL/GCstar.pm (limited to 'lib/gcstar/GCLang/GL') diff --git a/lib/gcstar/GCLang/GL/GCExport/GCExportCSV.pm b/lib/gcstar/GCLang/GL/GCExport/GCExportCSV.pm new file mode 100644 index 0000000..71e9b3f --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCExport/GCExportCSV.pm @@ -0,0 +1,40 @@ +{ + package GCLang::GL::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' => 'Incluír os campos dos nomes na parte de arriba', + 'Separator' => 'Separador', + 'Replacement' => 'Reemprazar o separador con', + 'Charset' => 'Conxunto de caracteres', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCExport/GCExportExternal.pm b/lib/gcstar/GCLang/GL/GCExport/GCExportExternal.pm new file mode 100644 index 0000000..93066e2 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCExport/GCExportExternal.pm @@ -0,0 +1,38 @@ +{ + package GCLang::GL::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/GL/GCExport/GCExportHTML.pm b/lib/gcstar/GCLang/GL/GCExport/GCExportHTML.pm new file mode 100644 index 0000000..5e99774 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCExport/GCExportHTML.pm @@ -0,0 +1,64 @@ +{ + package GCLang::GL::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' => 'O ficheiro de modelo non é válido', + 'UseFile' => 'Usar o ficheiro seguinte', + 'WithJS' => 'Usar Javascript', + 'FileTemplate' => 'Modelo', + 'Preview' => 'Previsualización', + 'NoPreview' => 'Non hai unha previsualización dispoñible', + 'TemplateExternalFile' => 'Ficheiro de modelo', + 'Title' => 'Título da páxina', + 'InfoFile' => 'A listaxe de Filmes está neste ficheiro: ', + 'InfoDir' => 'As imaxes están en: ', + 'HeightImg' => 'Altura (en pixels) da imaxe a exportar', + 'OpenFileInBrowser' => 'Abrir o ficheiro xerado no navegador', + 'Note' => 'Listaxe xerada por GCstar', + 'InputTitle' => 'Introduza o texto da busca', + 'SearchType1' => 'Só o título', + 'SearchType2' => 'Información completa', + 'SearchButton' => 'Procura', + 'SearchTitle' => 'Amosar só os filmes que cumpren os criterior previos', + 'AllButton' => 'Todos', + 'AllTitle' => 'Amosar todos os filmes', + 'Expand' => 'Expandir todo', + 'ExpandTitle' => 'Amosar información de todos os filmes', + 'Collapse' => 'Contraer todo', + 'CollapseTitle' => 'Contraer a información de todas os filmes', + 'Borrowed' => 'Prestado por: ', + 'NotBorrowed' => 'Dispoñible', + 'Top' => 'Arriba', + 'Bottom' => 'Bottom', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCExport/GCExportPDB.pm b/lib/gcstar/GCLang/GL/GCExport/GCExportPDB.pm new file mode 100644 index 0000000..97770d5 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCExport/GCExportPDB.pm @@ -0,0 +1,38 @@ +{ + package GCLang::GL::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/GL/GCExport/GCExportSQL.pm b/lib/gcstar/GCLang/GL/GCExport/GCExportSQL.pm new file mode 100644 index 0000000..1bffe98 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCExport/GCExportSQL.pm @@ -0,0 +1,40 @@ +{ + package GCLang::GL::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' => 'Incluír instrucción DROP', + 'WithCreate' => 'Incluír instrucción CREATE', + 'TableName' => 'Nome da táboa', + 'InfoFile' => 'Ficheiro SQL: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCExport/GCExportTarGz.pm b/lib/gcstar/GCLang/GL/GCExport/GCExportTarGz.pm new file mode 100644 index 0000000..4613d9e --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCExport/GCExportTarGz.pm @@ -0,0 +1,37 @@ +{ + package GCLang::GL::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' => 'O archivo está no ficheiro: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCExport/GCExportXML.pm b/lib/gcstar/GCLang/GL/GCExport/GCExportXML.pm new file mode 100644 index 0000000..5381c5e --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCExport/GCExportXML.pm @@ -0,0 +1,41 @@ +{ + package GCLang::GL::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' => 'Ficheiro do modelo', + 'ModelText' => 'Texto do modelo', + 'Models' => 'Modelo a utilizar', + 'UseFile' => 'Usar ficheiro', + 'UseModel' => 'Usar area de texto', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCImport/GCImportAlexandria.pm b/lib/gcstar/GCLang/GL/GCImport/GCImportAlexandria.pm new file mode 100644 index 0000000..4faa4f8 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCImport/GCImportAlexandria.pm @@ -0,0 +1,39 @@ +{ + package GCLang::GL::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' => 'Onde debería buscarse', + 'Default' => 'Directorio predeterminado de Alexandria', + 'Specified' => 'Directorio especificado a continuación', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCImport/GCImportCSV.pm b/lib/gcstar/GCLang/GL/GCImport/GCImportCSV.pm new file mode 100644 index 0000000..d0adab7 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCImport/GCImportCSV.pm @@ -0,0 +1,42 @@ +{ + package GCLang::GL::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' => 'Conxunto de caracteres', + 'Header' => 'Ignorar a primeira liña', + 'Separator' => 'Separador', + 'Plugin' => 'Utilizar o sitio web', + 'UseFirst' => 'Seleccionar o primeiro dos resultados', + 'SearchField' => 'Search for items using', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCImport/GCImportFolder.pm b/lib/gcstar/GCLang/GL/GCImport/GCImportFolder.pm new file mode 100644 index 0000000..6578395 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCImport/GCImportFolder.pm @@ -0,0 +1,68 @@ +{ + package GCLang::GL::GCImport::GCImportFolder; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + use GCLang::GCLangUtils; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Name' => 'Folder', + 'Recursive' => 'Browse sub-folders', + 'Suffixes' => 'Suffixes or extensions of the files', + 'SuffixesTooltip' => 'A comma-separated list of suffixes or extensions of files to consider', + 'Remove' => 'To be removed from names', + 'RemoveTooltip' => 'A comma-seperated list of words that should be removed from file names to create the fetched names', + 'Ask'=> 'Ask', + 'AskEnd'=> 'Ask all at end', + 'AddWithoutInfo'=> 'Add without infos', + 'DontAdd'=> 'Do not add', + 'TakeFirst' => 'Select first', + 'MultipleResult'=> 'Multiple results', + 'MultipleResultTooltip'=> 'What do we do when more than 1 result is return by the plugin', + 'RemoveWholeWord' => 'Remove only whole words', + 'NoResult'=> 'No results', + 'NoResultTooltip'=> 'What do we do when no search results is return by the plugin', + 'RemoveTooltipWholeWord' => 'Words will be removed only if they appear as an entire word', + 'RemoveRegularExpr' => 'Regular expression', + 'RemoveTooltipRegularExpr' => 'Consider that \'To be removed from names\' is a perl regular expression', + 'SkipFileAlreadyInCollection' => 'Add new files only', + 'SkipFileAlreadyInCollectionTooltip' => 'Add only files not already in the collection', + 'SkipFileNo' => 'No', + 'SkipFileFullPath' => 'based on full path', + 'SkipFileFileName' => 'based on file name', + 'SkipFileFileNameAndUpdate' => 'based on file name (but update path in collection)', + 'InfoFromFileNameRegExp' => 'Parse file name with this regular expression', + 'InfoFromFileNameRegExpTooltip' => 'Use this to retrieve infos from filename (applied after removing extension).\nLeave empty if not needed.\nKnown fields : \n$T:Title, $A:Alphabetised title, $Y:Release date, $S:Season, $E:Episode, $N:Alphabetised serie name, $x:Part number, $y: Total part number', + + ); + + # As this plugin shares some values with ImportList, it adds them from it + importTranslation('List'); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCImport/GCImportGCstar.pm b/lib/gcstar/GCLang/GL/GCImport/GCImportGCstar.pm new file mode 100644 index 0000000..1a2c163 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCImport/GCImportGCstar.pm @@ -0,0 +1,37 @@ +{ + package GCLang::GL::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 imaxes', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCImport/GCImportList.pm b/lib/gcstar/GCLang/GL/GCImport/GCImportList.pm new file mode 100644 index 0000000..912879e --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCImport/GCImportList.pm @@ -0,0 +1,42 @@ +{ + package GCLang::GL::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' => 'Listaxe de nomes', + 'Plugin' => 'Utilizar o sitio web', + 'UseFirst' => 'Seleccionar o primeiro dos resultados', + 'CommentAuto' => 'Elemento importado automáticamente.', + 'CommentSite' => 'Sitio web: ', + 'CommentTitle' => 'Título: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCImport/GCImportScanner.pm b/lib/gcstar/GCLang/GL/GCImport/GCImportScanner.pm new file mode 100644 index 0000000..20c3eef --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCImport/GCImportScanner.pm @@ -0,0 +1,50 @@ +{ + package GCLang::GL::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/GL/GCImport/GCImportTellico.pm b/lib/gcstar/GCLang/GL/GCImport/GCImportTellico.pm new file mode 100644 index 0000000..dc625c9 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCImport/GCImportTellico.pm @@ -0,0 +1,37 @@ +{ + package GCLang::GL::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' => 'O ficheiro non é unha colección Tellico soportada', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCModels/GCTVepisodes.pm b/lib/gcstar/GCLang/GL/GCModels/GCTVepisodes.pm new file mode 100644 index 0000000..a6f7316 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCModels/GCTVepisodes.pm @@ -0,0 +1,46 @@ +{ + package GCLang::GL::GCModels::GCTVepisodes; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use GCLang::GCLangUtils; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'TV Shows (episodes) collection', + Items => 'Episodes', + NewItem => 'New episode', + NewSeries => 'New series', + Episode => 'Episode', + ); + # Both of them are required as importTranslation doesn't recurse + importTranslation('films'); + importTranslation('TVseries'); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCModels/GCTVseries.pm b/lib/gcstar/GCLang/GL/GCModels/GCTVseries.pm new file mode 100644 index 0000000..16a0ccb --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCModels/GCTVseries.pm @@ -0,0 +1,50 @@ +{ + package GCLang::GL::GCModels::GCTVseries; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use GCLang::GCLangUtils; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'TV Shows (series) collection', + Items => 'Series', + NewItem => 'New series', + Name => 'Name', + Season => 'Season', + Part => 'Part', + Episodes => 'Episodes', + FirstAired => 'First Aired', + Time => 'Ep. Length', + Producer => 'Producer', + Music => 'Music', + ); + importTranslation('Films'); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCModels/GCboardgames.pm b/lib/gcstar/GCLang/GL/GCModels/GCboardgames.pm new file mode 100644 index 0000000..c061c0c --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCModels/GCboardgames.pm @@ -0,0 +1,86 @@ +{ + package GCLang::GL::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 Xogos de Mesa', + Items => {0 => 'Xogo', + 1 => 'Xogo', + X => 'Xogos'}, + NewItem => 'Novo xogo', + + Id => 'Id', + Name => 'Nome', + Original => 'Nome Orixinal', + Box => 'Imaxe da caixa', + DesignedBy => 'Deseñado por', + PublishedBy => 'Publicado por', + Players => 'Número de xogadores', + PlayingTime => 'Tempo de xogo', + SuggestedAge => 'Idade suxerida', + Released => 'Publicado', + Description => 'Descripción', + Category => 'Categoría', + Mechanics => 'Mecanismos', + ExpandedBy => 'Expandido por', + ExpansionFor => 'Expandido para', + GameFamily => 'Familia do xogo', + IllustratedBy => 'Ilustrado por', + Url => 'Páxina web', + TimesPlayed => 'Veces xogado', + CompleteContents => 'Contidos completos', + Copies => 'Nº de copias', + Condition => 'Condición', + Photos => 'Fotos', + Photo1 => 'Primeira imaxe', + Photo2 => 'Segunda imaxe', + Photo3 => 'Terceira imaxe', + Photo4 => 'Cuarta imaxe', + Comments => 'Comentarios', + + Perfect => 'Perfecto', + Good => 'Bo', + Average => 'Avanzado', + Poor => 'Pobre', + + CompleteYes => 'Contidos completos', + CompleteNo => 'Pezas perdidas', + + General => 'Xeral', + Details => 'Detalles', + Personal => 'Persoal', + Information => 'Información', + + FilterRatingSelect => 'Puntuado polo menos...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCModels/GCbooks.pm b/lib/gcstar/GCLang/GL/GCModels/GCbooks.pm new file mode 100644 index 0000000..78f9e28 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCModels/GCbooks.pm @@ -0,0 +1,70 @@ +{ + package GCLang::GL::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', + X => 'Libros'}, + NewItem => 'Novo libro', + + Isbn => 'ISBN', + Title => 'Título', + Cover => 'Cuberta', + Authors => 'Autores', + Publisher => 'Editorial', + Publication => 'Data de publicación', + Language => 'Lingua', + Genre => 'Xénero', + Serie => 'Serie', + Rank => 'Puntuación', + Bookdescription => 'Descripción', + Pages => 'Páxinas', + Read => 'Lido', + Acquisition => 'Data de adquisición', + Edition => 'Edición', + Format => 'Formato', + Comments => 'Comentarios', + Url => 'Páxina web', + Translator => 'Traductor/a', + Artist => 'Artista', + DigitalFile => 'Digital version', + + General => 'Xeral', + Details => 'Detalles', + + ReadNo => 'Non lido', + ReadYes => 'Lido', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCModels/GCcoins.pm b/lib/gcstar/GCLang/GL/GCModels/GCcoins.pm new file mode 100644 index 0000000..66f5d4a --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCModels/GCcoins.pm @@ -0,0 +1,104 @@ +{ + package GCLang::GL::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 => 'Moeda', + 1 => 'Moeda', + X => 'Moedas'}, + NewItem => 'Nova moeda', + + Name => 'Nome', + Country => 'País', + Year => 'Ano', + Currency => 'Divisa', + Value => 'Valor', + Picture => 'Imaxe principal', + Diameter => 'Diametro', + 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 => 'Sitio web', + Estimate => 'Estimación', + References => 'Referencias', + Type => 'Tipo', + Coin => 'Moeda', + Banknote => 'Billete', + + Main => 'Principal', + Description => 'Descripción', + Other => 'Outra información', + Pictures => 'Imaxes', + + 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/GL/GCModels/GCcomics.pm b/lib/gcstar/GCLang/GL/GCModels/GCcomics.pm new file mode 100644 index 0000000..757df7a --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCModels/GCcomics.pm @@ -0,0 +1,73 @@ +{ + package GCLang::GL::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 Comics', + Items => {0 => 'Comics', + 1 => 'Comic', + X => 'Comics'}, + NewItem => 'Novo comic', + + + Id => 'Id', + Name => 'Nome', + Series => 'Serie', + Volume => 'Volume', + Title => 'Título', + Writer => 'Guión', + Illustrator => 'Ilustracións', + Colourist => 'Cor', + Publisher => 'Editorial', + Synopsis => 'Resumo', + Collection => 'Colección', + PublishDate => 'Data de publicación', + PrintingDate => 'Data de impresión', + ISBN => 'ISBN', + Type => 'Tipo', + Category => 'Category', + Format => 'Formato', + NumberBoards => 'Número de planchas', + Signing => 'Signing', + Cost => 'Prezo', + Rating => 'Puntuación', + Comment => 'Comentarios', + Url => 'Sitio web', + + FilterRatingSelect => 'Puntuado polo menos...', + + Main => 'Elementos principais', + General => 'Xeral', + Details => 'Detalles', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCModels/GCfilms.pm b/lib/gcstar/GCLang/GL/GCModels/GCfilms.pm new file mode 100644 index 0000000..7c40ab0 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCModels/GCfilms.pm @@ -0,0 +1,93 @@ +{ + package GCLang::GL::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 filmes', + Items => {0 => 'Filme', + 1 => 'Filme', + X => 'Filmes'}, + NewItem => 'Novo filme', + + + Id => 'Id', + Title => 'Título', + Date => 'Data', + Time => 'Duración', + Director => 'Dirección', + Country => 'País', + MinimumAge => 'Idade mínima', + Genre => 'Xénero', + Image => 'Imaxe', + Original => 'Título orixinal', + Actors => 'Reparto', + Actor => 'Actor/Actriz', + Role => 'Papel', + Comment => 'Comentarios', + Synopsis => 'Resumo', + Seen => 'Vista', + Number => '# de media', + Format => 'Medio', + Region => 'Region', + Identifier => 'Identificador', + Url => 'Páxina web', + Audio => 'Audio', + Video => 'Formato de Video', + Trailer => 'Ficheiro de video', + Serie => 'Serie', + Rank => 'Puntuación', + Subtitles => 'Subtítulos', + + SeenYes => 'Visto', + SeenNo => 'Non visto', + + AgeUnrated => 'Sen puntuación', + AgeAll => 'Para todas as idades', + AgeParent => 'Guía adulta', + + Main => 'Elementos principais', + General => 'Xeral', + Details => 'Detalles', + + Information => 'Información', + Languages => 'Linguas', + Encoding => 'Codificación', + + FilterAudienceAge => 'Idade da audiencia', + FilterSeenNo => '_Non vista polo momento', + FilterSeenYes => 'X_a vista', + FilterRatingSelect => 'Puntuada polo menos...', + + ExtractSize => 'Tamaño', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCModels/GCgames.pm b/lib/gcstar/GCLang/GL/GCModels/GCgames.pm new file mode 100644 index 0000000..b5a84ca --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCModels/GCgames.pm @@ -0,0 +1,82 @@ +{ + package GCLang::GL::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 Videoxogos', + Items => {0 => 'Xogo', + 1 => 'Xogo', + X => 'Xogos'}, + NewItem => 'Novo Xogo', + + Id => 'Id', + Ean => 'EAN', + Name => 'Nome', + Platform => 'Plataforma', + Players => 'Numero de xogadores', + Released => 'Data de lanzamento', + Editor => 'Editora', + Developer => 'Desenvolvemento', + Genre => 'Xénero', + Box => 'Imaxe da caixa', + Case => 'Caso', + Manual => 'Manual de instruccións', + Completion => 'Completo (%)', + Executable => 'Executable', + Description => 'Descrición', + Codes => 'Códigos', + Code => 'Código', + Effect => 'Efecto', + Secrets => 'Segredos', + Screenshots => 'Capturas de pantalla', + Screenshot1 => 'Primeira captura', + Screenshot2 => 'Segunda captura', + Comments => 'Comentarios', + Url => 'Páxina web', + Unlockables => 'Non bloqueables', + Unlockable => 'Non bloqueable', + Howto => 'Como desbloquear', + Exclusive => 'Exclusive', + Resolutions => 'Display resolutions', + InstallationSize => 'Size', + Region => 'Region', + SerialNumber => 'Serial Number', + + General => 'Xeral', + Details => 'Detalles', + Tips => 'Consello', + Information => 'Información', + + FilterRatingSelect => 'Puntuado polo menos...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCModels/GCgeneric.pm b/lib/gcstar/GCLang/GL/GCModels/GCgeneric.pm new file mode 100644 index 0000000..4ea1535 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCModels/GCgeneric.pm @@ -0,0 +1,42 @@ +{ + package GCLang::GL::GCModels::GCgeneric; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + Items => {0 => 'Item', + 1 => 'Item', + X => 'Items' + }, + NewItem => 'New item', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCModels/GCminicars.pm b/lib/gcstar/GCLang/GL/GCModels/GCminicars.pm new file mode 100644 index 0000000..0f7c128 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCModels/GCminicars.pm @@ -0,0 +1,182 @@ +{ + package GCLang::GL::GCModels::GCminicars; + + use utf8; +################################################### +# +# Copyright 2005-2007 Tian +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Mini vehicles collection', + Items => {0 => 'Vehicle', + 1 => 'Vehicle', + X => 'Vehicles', + lowercase1 => 'vehicle', + lowercaseX => 'vehicles' + }, + NewItem => 'New vehicle', + Currency => 'Currency', + +# Main fields + + Main => 'Main information', + + Name => 'Name', + Exchange => 'To be sold or exchanged', + Wanted => 'Wanted', + Rating1 => 'Main rating', + Picture1 => 'Main picture', + Scale => 'Scale', + Manufacturer => 'Manufacturer', + Constructor => 'Constructor', + Type1 => 'Type', + Modele => 'Model', + Version => 'Version', + Color => 'Model color', + Pub => 'Advertisement', + Year => 'Year', + Reference => 'Reference', + Kit => 'In kit form', + Transformation => 'Personal transformation', + Comments1 => 'Comments', + +# Details fields + + Details => 'Details', + + MiscCharacteristics => 'Miscellaneous characteristics', + Material => 'Material', + Molding => 'Molding', + Condition => 'Condition', + Edition => 'Edition', + Collectiontype => 'Collection name', + Serial => 'Series', + Serialnumber => 'Serial number', + Designed => 'Design date', + Madein => 'Manufacture date', + Box1 => 'Kind of box', + Box2 => 'Box description', + Containbox => 'Box contet', + Rating2 => 'Realism', + Rating3 => 'Finish', + Acquisition => 'Acquisition date', + Location => 'Acquisition place', + Buyprice => 'Acquisition price', + Estimate => 'Estimation', + Comments2 => 'Comments', + Decorationset => 'Decoration set', + Characters => 'Characters', + CarFromFilm => 'Movie car', + Filmcar => 'Movie related to the vehicle', + Filmpart => 'Movie part/episode', + Parts => 'Number of parts', + VehiculeDetails => 'Vehicule details', + Detailsparts => 'Details parts', + Detailsdecorations => 'Kind of decorations', + Decorations => 'Number of decorations', + Lwh => 'Length / Width / Height', + Weight => 'Weight', + Framecar => 'Chassis', + Bodycar => 'Bodywork', + Colormirror => 'Model color', + Interior => 'Interior', + Wheels => 'Wheels', + Registrationnumber1 => 'Front registration number', + Registrationnumber2 => 'Back registration number', + RacingCar => 'Racing car', + Course => 'Race', + Courselocation => 'Race place', + Courseyear => 'Race date', + Team => 'Team', + Pilots => 'Pilot(s)', + Copilots => 'Copilot(s)', + Carnumber => 'Vehicle number', + Pub2 => 'Advertisers', + Finishline => 'Finish ranking', + Steeringwheel => 'Position of steering wheel', + + +# Catalogs fields + + Catalogs => 'Catalogs', + + OfficialPicture => 'Official picture', + Barcode => 'Barcode', + Referencemirror => 'Reference', + Year3 => 'Availability date', + CatalogCoverPicture => 'Cover', + CatalogPagePicture => 'Page', + Catalogyear => 'Catalog year', + Catalogedition => 'Catalog edition', + Catalogpage => 'Catalog page', + Catalogprice => 'Catalog price', + Personalref => 'Personal reference', + Websitem => 'Mini vehicle\'s manufacturer website', + Websitec => 'Actual vehicle\'s manufacturer website', + Websiteo => 'Useful link', + Comments3 => 'Comments', + +# Pictures fields + + Pictures => 'Pictures', + + OthersComments => 'General remarks', + OthersDetails => 'Other details', + Top1 => 'Above', + Back1 => 'Below', + AVG => 'Front Left', + AV => 'Front', + AVD => 'Front Right', + G => 'Left', + BOX => 'Box', + D => 'Right', + ARG => 'Back Left', + AR => 'Back', + ARD => 'Back Right', + Others => 'Misc', + +# PanelLending fields + + LendingExplanation => 'Useful exchanges during temporary exhibitions', + PanelLending => 'Lendings (for exhibitions)', + Comments4 => 'Comments', + +# Realmodel fields + + Realmodel => 'Actual vehicle', + + Difference => 'Differences with miniature', + Front2 => 'Front', + Back2 => 'Back', + Comments5 => 'Comments', + + References => 'References', + + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCModels/GCmusics.pm b/lib/gcstar/GCLang/GL/GCModels/GCmusics.pm new file mode 100644 index 0000000..f8d1ce8 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCModels/GCmusics.pm @@ -0,0 +1,68 @@ +{ + package GCLang::GL::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 => 'Album', + 1 => 'Album', + X => 'Albumes'}, + NewItem => 'Novo album', + + Unique => 'ISRC/EAN', + Title => 'Título', + Cover => 'Cuberta', + Artist => 'Artista', + Format => 'Formato', + Running => 'Duración', + Release => 'Data de lanzamento', + Genre => 'Xénero', + Origin => 'Origin', + +#For tracks list + Tracks => 'Lista de pistas', + Number => 'Número', + Track => 'Título', + Time => 'Tempo', + + Composer => 'Composición', + Producer => 'Producción', + Playlist => 'Lista de reproducción', + Comments => 'Comentarios', + Label => 'Etiqueta', + Url => 'Páxina web', + + General => 'Xeral', + Details => 'Detalles', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCModels/GCperiodicals.pm b/lib/gcstar/GCLang/GL/GCModels/GCperiodicals.pm new file mode 100644 index 0000000..f3bd3df --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCModels/GCperiodicals.pm @@ -0,0 +1,52 @@ +{ + package GCLang::GL::GCModels::GCperiodicals; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Periodicals collection', + Items => {0 => 'Periodical', + 1 => 'Periodical', + X => 'Periodicals'}, + NewItem => 'New periodical', + + Title => 'Title', + Cover => 'Cover', + Periodical => 'Periodical', + Number => 'Number', + Date => 'Date', + Subject => 'Subject', + Articles => 'Articles', + + General => 'General', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCModels/GCsmartcards.pm b/lib/gcstar/GCLang/GL/GCModels/GCsmartcards.pm new file mode 100644 index 0000000..2e8f73b --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCModels/GCsmartcards.pm @@ -0,0 +1,108 @@ +{ + package GCLang::GL::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/GL/GCModels/GCsoftware.pm b/lib/gcstar/GCLang/GL/GCModels/GCsoftware.pm new file mode 100644 index 0000000..4be564e --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCModels/GCsoftware.pm @@ -0,0 +1,84 @@ +{ + package GCLang::GL::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/GL/GCModels/GCstamps.pm b/lib/gcstar/GCLang/GL/GCModels/GCstamps.pm new file mode 100644 index 0000000..b492568 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCModels/GCstamps.pm @@ -0,0 +1,189 @@ +{ + package GCLang::GL::GCModels::GCstamps; + + use utf8; +################################################### +# +# Copyright 2005-2007 Tian +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Stamp collection', + Items => {0 => 'Stamps', + 1 => 'Stamp', + X => 'Stamps'}, + NewItem => 'New stamp', + + General => 'General', + Detail => 'Detail', + Value => 'Value', + Notes => 'Notes', + Views => 'Views', + + Name => 'Name', + Country => 'Country', + Year => 'Year', + Catalog => 'Catalog', + Number => 'Number', + Topic => 'Topic', + Serie => 'Serie', + Designer => 'Designer', + Engraver => 'Engraver', + Type => 'Type', + Format => 'Format', + Description => 'Description', + Color => 'Color', + Gum => 'Gum', + Paper => 'Paper', + Perforation => 'Perforation', + PerforationSize => 'Perforation size', + CancellationType => 'Cancellation type', + Comments => 'Comments', + PrintingVariety => 'Printing variety', + IssueDate => 'Issue date', + EndOfIssue => 'End of issue', + Issue => 'Issue', + Grade => 'Grade', + Status => 'Status', + Adjusted => 'Adjusted', + Cancellation => 'Cancellation', + CancellationCondition => 'Cancellation condition', + GumCondition => 'Gum condition', + PerforationCondition => 'Perforation condition', + ConditionNotes => 'Condition notes', + Error => 'Error', + ErrorNotes => 'Error notes', + FaceValue => 'Face value', + MintValue => 'Mint value', + UsedValue => 'Used value', + PurchasedDate => 'Purchased date', + Quantity => 'Quantity', + History => 'History', + Picture1 => 'Picture 1', + Picture2 => 'Picture 2', + Picture3 => 'Picture 3', + + AirMail => 'Air mail', + MilitaryStamp => 'Military stamp', + Official => 'Official', + PostageDue => 'Postage due', + Regular => 'Regular', + Revenue => 'Revenue', + SpecialDelivery => 'Special delivery', + StrikeStamp => 'Strike stamp', + TelegraphStamp => 'Telegraph stamp', + WarStamp => 'War stamp', + WarTaxStamp => 'War tax stamp', + + Booklet => 'Booklet', + BookletPane => 'Booklet Pane', + Card => 'Card', + Coil => 'Coil', + Envelope => 'Envelope', + FirstDayCover => 'First Day Cover', + Sheet => 'Sheet', + Single => 'Single', + + Heliogravure => 'Heliogravure', + Lithography => 'Lithography', + Offset => 'Offset', + Photogravure => 'Photogravure', + RecessPrinting => 'Recess printing', + Typography => 'Typography', + + OriginalGum => 'Original gum', + Ungummed => 'Ungummed', + Regummed => 'Regummed', + + Chalky => 'Chalky', + ChinaPaper => 'China paper', + Coarsed => 'Coarsed', + Glossy => 'Glossy', + Granite => 'Granite', + Laid => 'Laid', + Manila => 'Manila', + Native => 'Native', + Pelure => 'Pelure', + Quadrille => 'Quadrille', + Ribbed => 'Ribbed', + Rice => 'Rice', + Silk => 'Silk', + Smoothed => 'Smoothed', + Thick => 'Thick', + Thin => 'Thin', + Wove => 'Wove', + + CoarsedPerforation => 'Coarsed perforation', + CombPerforation => 'Comb perforation', + CompoundPerforation => 'Compound perforation', + DamagedPerforation => 'Damaged perforation', + DoublePerforation => 'Double perforation', + HarrowPerforation => 'Harrow perforation', + LinePerforation => 'Line perforation', + NoPerforation => 'No perforation', + + CancellationToOrder => 'Cancellation To Order', + FancyCancellation => 'Fancy cancellation', + FirstDayCancellation => 'First Day cancellation', + NumeralCancellation => 'Numeral cancellation', + PenMarked => 'Pen-Marked', + RailroadCancellation => 'Railroad cancellation', + SpecialCancellation => 'Special cancellation', + + Superb => 'Superb', + ExtraFine => 'Extra-Fine', + VeryFine => 'Very fine', + FineVeryFine => 'Fine/Very fine', + Fine => 'Fine', + Average => 'Average', + Poor => 'Poor', + + Owned => 'Owned', + Ordered => 'Ordered', + Sold => 'Sold', + ToSell => 'To sell', + Wanted => 'Wanted', + + LightCancellation => 'Light cancellation', + HeavyCancellation => 'Heavy cancellation', + ModerateCancellation => 'Moderate cancellation', + + MintNeverHinged => 'Mint never hinged', + MintLightHinged => 'Mint light hinged', + HingedRemnant => 'Hinged remnant', + HeavilyHinged => 'Heavily hinged', + LargePartOriginalGum => 'Large part original gum', + SmallPartOriginalGum => 'Small part original gum', + NoGum => 'No gum', + + Perfect => 'Perfect', + VeryNice => 'Very nice', + Nice => 'Nice', + Incomplete => 'Incomplete', + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCModels/GCwines.pm b/lib/gcstar/GCLang/GL/GCModels/GCwines.pm new file mode 100644 index 0000000..03a36f7 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCModels/GCwines.pm @@ -0,0 +1,65 @@ +{ + package GCLang::GL::GCModels::GCwines; + + use utf8; + +# Copyright 2007 Yves Martin + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Colección de viños', + Items => {0 => 'Viño', + 1 => 'Viño', + X => 'Viños'}, + NewItem => 'Novo Viño', + + Name => 'Nome', + Designation => 'Denominación', + Vintage => 'Colleita', + Vineyard => 'Viñedo', + Type => 'Tipo', + Grapes => 'Uva', + Soil => 'Terra', + Producer => 'Producción', + Country => 'País', + Volume => 'Volume (ml)', + Alcohol => 'Alcol (%)', + Medal => 'Medalla', + + Storage => 'Almacenamento', + Location => 'Localización', + ShelfIndex => 'Índice', + Quantity => 'Cantidade', + Acquisition => 'Adquisición', + PurchaseDate => 'Data de compra', + PurchasePrice => 'Prezo de compra', + Gift => 'Regalo', + BottleLabel => 'Etiqueta da botella', + Website => 'Referencias na web', + + Tasted => 'Catado', + Comments => 'Comentarios', + Serving => 'Dose', + TastingField => 'Notas da cata', + + General => 'Xeral', + Details => 'Detalles', + Tasting => 'Cata', + + TastedNo => 'Sen catar', + TastedYes => 'Catado', + + FilterRange => 'Rango', + FilterTastedNo => '_Non foi catado', + FilterTastedYes => 'Xa foi catado', + FilterRatingSelect => 'Puntuado polo menos...' + + ); +} + +1; diff --git a/lib/gcstar/GCLang/GL/GCstar.pm b/lib/gcstar/GCLang/GL/GCstar.pm new file mode 100644 index 0000000..8f76d22 --- /dev/null +++ b/lib/gcstar/GCLang/GL/GCstar.pm @@ -0,0 +1,674 @@ +{ + package GCLang::GL; + + 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' => 'Galego', + + 'Separator' => ': ', + + 'Warning' => 'Aviso: + +A información descargada de sitios web (a través dos +complementos de procura) é só para uso persoal. + +Calquera redistribución está prohibida sen a +autorización explícita do sitio. + +Para determinar a que web pertence a información, debe +utilizar o botón situado debaixo dos detalles do elemento.', + + 'AllItemsFiltered' => 'Non hai elementos cumpran os criterios de filtrado', # Accepts model codes + +#Installation + 'InstallDirInfo' => 'Instalar en ', + 'InstallMandatory' => 'Compoñentes obrigatorios', + 'InstallOptional' => 'Compoñentes opcionais', + 'InstallErrorMissing' => 'Erro : ten que instalar os seguintes compoñentes Perl: ', + 'InstallPrompt' => 'Directorio base para a instalación [/usr/local]: ', + 'InstallEnd' => 'Fin da instalación', + 'InstallNoError' => 'Ningún erro', + 'InstallLaunch' => 'Para usar a aplicación, execútea ', + 'InstallDirectory' => 'Directorio Base', + 'InstallTitle' => 'Instalación de GCstar', + 'InstallDependencies' => 'Dependencias', + 'InstallPath' => 'Ruta', + 'InstallOptions' => 'Opcións', + 'InstallSelectDirectory' => 'Seleccionar o directorio base para a instalación', + 'InstallWithClean' => 'Eliminar ficheiros que se atopen no directorio de instalación', + 'InstallWithMenu' => 'Engadir GCstar ao menú de Aplicacións', + 'InstallNoPermission' => 'Erro: Non ten permiso para escribir no directorio seleccionado', + 'InstallMissingMandatory' => 'Non se cumpren algunhas dependencias obrigatorias-. Non pode instalar GCstar até que se cumpran as dependencias.', + 'InstallMissingOptional' => 'Algunhas dependencias opcionais non se cumpren. Pode ver unha listaxe máis abaixo. GCstar pode instalarse pero algunhas características non estarán dispoñibles.', + 'InstallMissingNone' => 'Cúmprense todas as dependencias. Pode continuar a instalación de GCstar.', + 'InstallOK' => 'OK', + 'InstallMissing' => 'Non dispoñible', + 'InstallMissingFor' => 'Non dispoñible por', + 'InstallCleanDirectory' => 'Eliminando ficheiros de GCstar no directorio: ', + 'InstallCopyDirectory' => 'A copiar ficheiros no directorio: ', + 'InstallCopyDesktop' => 'A copiar o ficheiro de escritorio en: ', + +#Update + 'UpdateUseProxy' => 'Usar Proxy (premer enter se non se usa ningún): ', + 'UpdateNoPermission' => 'Denegouse o permiso de escritura neste directorio: ', + 'UpdateNone' => 'Non se atoparon actualizacións', + 'UpdateFileNotFound' => 'Non se atopou o ficheiro', + +#Splash + 'SplashInit' => 'Inicialización', + 'SplashLoad' => 'A cargar a colección', + 'SplashDisplay' => 'A mostrar a colección', + 'SplashSort' => 'A ordear a colección', + 'SplashDone' => 'Listo', + +#Import from GCfilms + 'GCfilmsImportQuestion' => 'Semella que estivo a utilizar GCfilms con anterioridade. Que quere importar desde GCfilms para GCstar (isto non afectará aos ficheiros de GCfilms se quere seguilos usando)?', + 'GCfilmsImportOptions' => 'Preferencias', + 'GCfilmsImportData' => 'Listaxe de Filmes', + +#Menus + 'MenuFile' => '_Ficheiro', + 'MenuNewList' => '_Nova Colección', + 'MenuStats' => 'Statistics', + 'MenuHistory' => 'Coleccións _Recentes', + 'MenuLend' => 'Amosar Elementos _Prestados', # Accepts model codes + 'MenuImport' => '_Importar', + 'MenuExport' => '_Exportar', + 'MenuAddItem' => '_Add Items', # Accepts model codes + + 'MenuEdit' => '_Editar', + 'MenuDuplicate' => 'Du_plicar elemento', # Accepts model codes + 'MenuDuplicatePlural' => 'Du_plicate Items', # Accepts model codes + 'MenuEditSelectAllItems' => 'Select _All Items', # Accepts model codes + 'MenuEditDeleteCurrent' => 'Elimina_r Elemento', # Accepts model codes + 'MenuEditDeleteCurrentPlural' => '_Remove Items', # Accepts model codes + 'MenuEditFields' => '_Cambiar campos da colección', + 'MenuEditLockItems' => '_Bloquear Colección', + + 'MenuDisplay' => 'F_iltros', + 'MenuSavedSearches' => 'Saved searches', + 'MenuSavedSearchesSave' => 'Save current search', + 'MenuSavedSearchesEdit' => 'Modify saved searches', + 'MenuAdvancedSearch' => 'Procura A_vanzada ', + 'MenuViewAllItems' => '_Amosar todos os elementos', # Accepts model codes + 'MenuNoFilter' => '_Calquera', + + 'MenuConfiguration' => '_Configuración', + 'MenuDisplayMenu' => 'Display', + 'MenuDisplayFullScreen' => 'Full screen', + 'MenuDisplayMenuBar' => 'Menus', + 'MenuDisplayToolBar' => 'Toolbar', + 'MenuDisplayStatusBar' => 'Bottom bar', + 'MenuDisplayOptions' => '_Información amosada', + 'MenuBorrowers' => '_Prestatarios', + 'MenuToolbarConfiguration' => '_Toolbar controls', + 'MenuDefaultValues' => 'Default values for new item', # Accepts model codes + 'MenuGenresConversion' => '_Conversión de Xéneros', + + 'MenuBookmarks' => 'As miñas _Coleccións', + 'MenuBookmarksAdd' => 'Engadir colección _actual', + 'MenuBookmarksEdit' => '_Editar coleccións favoritas', + + 'MenuHelp' => '_Axuda', + 'MenuHelpContent' => '_Contido', + 'MenuAllPlugins' => 'Ver com_plementos', + 'MenuBugReport' => 'Comunicar un problema', + 'MenuAbout' => '_Acerca de GCstar', + + 'MenuNewWindow' => 'Amosar elemento nunha _Nova Xanela', # Accepts model codes + 'MenuNewWindowPlural' => 'Show Items in _New Window', # Accepts model codes + + 'ContextExpandAll' => 'Expandir todo', + 'ContextCollapseAll' => 'Contraer todo', + 'ContextChooseImage' => 'Choose _Image', + 'ContextOpenWith' => 'Open Wit_h', + 'ContextImageEditor' => 'Image Editor', + 'ContextImgFront' => 'Front', + 'ContextImgBack' => 'Back', + 'ContextChooseFile' => 'Choose a File', + 'ContextChooseFolder' => 'Choose a Folder', + + 'DialogEnterNumber' => 'Introduza un valor', + + 'RemoveConfirm' => 'Está seguro de que quere eliminar este elemento?', # Accepts model codes + 'RemoveConfirmPlural' => 'Do you really want to remove these items?', # Accepts model codes + + 'DefaultNewItem' => 'Novo elemento', # Accepts model codes + 'NewItemTooltip' => 'Engadir un novo elemento', # Accepts model codes + 'NoItemFound' => 'Non se atopou nada. Gustaríalle buscar en outra páxina web?', + 'OpenList' => 'Seleccine unha colección', + 'SaveList' => 'Escolla onde gardar a colección', + 'SaveListTooltip' => 'Gardar a colección actual', + 'SaveUnsavedChanges' => 'Hai cambios na colección que non se gardaron todavía. Quere gardalos?', + 'SaveDontSave' => 'Non gardar', + 'PreferencesTooltip' => 'Aplicar as súas configuracións', + 'ViewTooltip' => 'Cambiar o tipo de visualización', + 'PlayTooltip' => 'Reproducir un video asociado ao elemento', # Accepts model codes + 'PlayFileNotFound' => 'File to launch was not found in this location:', + 'PlayRetry' => 'Retry', + + 'StatusSave' => 'Gardando...', + 'StatusLoad' => 'Cargando...', + 'StatusSearch' => 'Procurando...', + 'StatusGetInfo' => 'Obtendo información...', + 'StatusGetImage' => 'Obtendo a imaxe...', + + 'SaveError' => 'Non se pode gardar a listaxe. Comprobe os permisos de acceso e se hai suficiente espazo libre en disco..', + 'OpenError' => 'Non se pode abrir a listaxe. Comprobe os permisos de acceso.', + 'OpenFormatError' => 'Non se pode abrir a listaxe. Pode que o formato sexa incorrecto.', + 'OpenVersionWarning' => 'Collection was created with a more recent version of GCstar. If you save it, you may loose some data.', + 'OpenVersionQuestion' => 'Do you still want to continue?', + 'ImageError' => 'O directorio seleccionado para gardar as imaxes non é correcto. Seleccione outro..', + 'OptionsCreationError'=> 'Non se pode crear o ficheiro de opcións: ', + 'OptionsOpenError'=> 'Non se pode abrir o ficheiro de opcións: ', + 'OptionsSaveError'=> 'Non se pode gardar o ficheiro de opcións: ', + 'ErrorModelNotFound' => 'Model not found: ', + 'ErrorModelUserDir' => 'User defined models are in: ', + + 'RandomTooltip' => 'Que pode ver esta noite ?', + 'RandomError'=> 'Non pode seleccionar ningún elemento', # Accepts model codes + 'RandomEnd'=> 'Non hai máis elementos', # Accepts model codes + 'RandomNextTip'=> 'Seguinte suxerencia', + 'RandomOkTip'=> 'Aceptar este elemento', + + 'AboutTitle' => 'Acerca de GCstar', + 'AboutDesc' => 'Xestor Persoal de coleccións', + 'AboutVersion' => 'Versión', + 'AboutTeam' => 'Equipo', + 'AboutWho' => 'Christian Jodar (Tian): Gestión do proxecto, Programador +Nyall Dawson (Zombiepig): Programador +TPF: Programador +Adolfo González: Programador +', + 'AboutLicense' => 'Distribuido baixo os termos de GNU GPL +Logos Copyright le Spektre', + 'AboutTranslation' => 'Traducción ao Galego por Daniel Espiñeira', + 'AboutDesign' => 'Łukasz Kowalczk (Qoolman): Skin Designer +Logo e deseño web por le Spektre', + + 'ToolbarRandom' => 'Esta noite', + + 'UnsavedCollection' => 'Unsaved Collection', + 'ModelsSelect' => 'Seleccionar un tipo de colección', + 'ModelsPersonal' => 'Modelos persoais', + 'ModelsDefault' => 'Modelos predeterminados', + 'ModelsList' => 'Definición da colección', + 'ModelSettings' => 'Preferencias da colección', + 'ModelNewType' => 'Novo tipo de colección', + 'ModelName' => 'Nome do tipo de colección:', + 'ModelFields' => 'Campos', + 'ModelOptions' => 'Opcións', + 'ModelFilters' => 'Filtros', + 'ModelNewField' => 'Novo campo', + 'ModelFieldInformation' => 'Información', + 'ModelFieldName' => 'Etiqueta:', + 'ModelFieldType' => 'Tipo:', + 'ModelFieldGroup' => 'Grupo:', + 'ModelFieldValues' => 'Valores', + 'ModelFieldInit' => 'Predeterminado:', + 'ModelFieldMin' => 'Mínimo:', + 'ModelFieldMax' => 'Máximo:', + 'ModelFieldList' => 'Listaxe de valores:', + 'ModelFieldListLegend' => 'Separado por comas', + 'ModelFieldDisplayAs' => 'Display as:', + 'ModelFieldDisplayAsText' => 'Text', + 'ModelFieldDisplayAsGraphical' => 'Rating Control', + 'ModelFieldTypeShortText' => 'Texto curto', + 'ModelFieldTypeLongText' => 'Texto longo', + 'ModelFieldTypeYesNo' => 'Si/Non', + 'ModelFieldTypeNumber' => 'Número', + 'ModelFieldTypeDate' => 'Data', + 'ModelFieldTypeOptions' => 'Listaxe de valores predefinidos', + 'ModelFieldTypeImage' => 'Imaxe', + 'ModelFieldTypeSingleList' => 'Listaxe simple', + 'ModelFieldTypeFile' => 'Campo', + 'ModelFieldTypeFormatted' => 'Dependente doutros campos', + 'ModelFieldParameters' => 'Parámetros', + 'ModelFieldHasHistory' => 'Usar un historial', + 'ModelFieldFlat' => 'Amosar nunha sóa liña', + 'ModelFieldStep' => 'Paso incremental:', + 'ModelFieldFileFormat' => 'Formato do ficheiro:', + 'ModelFieldFileFile' => 'Ficheiro simple', + 'ModelFieldFileImage' => 'Imaxe', + 'ModelFieldFileVideo' => 'Video', + 'ModelFieldFileAudio' => 'Audio', + 'ModelFieldFileProgram' => 'Programa', + 'ModelFieldFileUrl' => 'URL', + 'ModelFieldFileEbook' => 'Ebook', + 'ModelOptionsFields' => 'Usar campos', + 'ModelOptionsFieldsAuto' => 'Automático', + 'ModelOptionsFieldsNone' => 'Ningún', + 'ModelOptionsFieldsTitle' => 'Como título', + 'ModelOptionsFieldsId' => 'Como identificador', + 'ModelOptionsFieldsCover' => 'Como cuberta', + 'ModelOptionsFieldsPlay' => 'Para botón Play', + 'ModelCollectionSettings' => 'Preferencias da colección', + 'ModelCollectionSettingsLending' => 'Os elementos pódense prestar', + 'ModelCollectionSettingsTagging' => 'Os elementos pódense etiquetar', + 'ModelFilterActivated' => 'Debería ser nunha caixa de procura', + 'ModelFilterComparison' => 'Comparación', + 'ModelFilterContain' => 'Contén', + 'ModelFilterDoesNotContain' => 'Does not contain', + 'ModelFilterRegexp' => 'Regular expression', + 'ModelFilterRange' => 'Rango', + 'ModelFilterNumeric' => 'Comparación numérica', + 'ModelFilterQuick' => 'Crear un filtro rápido', + 'ModelTooltipName' => 'Utilice un nome para reutilizar este modelo para outras coleccións. Se o deixa baleiro, as preferencias gardaranse directamente na propia colección.', + 'ModelTooltipLabel' => 'O nome do campo tal e como será amosado', + 'ModelTooltipGroup' => 'Usado para agrupar campos. Os elementos sen valor aquí estarán en un grupo predeterminado', + 'ModelTooltipHistory' => 'Deben gardarse os valores introducidos nunha lista asociada ao campo?', + 'ModelTooltipFormat' => 'Este formato úsase para determinar a acción que ten o botón Play ao abrir o ficheiro', + 'ModelTooltipLending' => 'Isto engadirá algúns campos para manexar os préstamos', + 'ModelTooltipTagging' => 'Isto engadirá algúns campos para manexar as etiquetas', + 'ModelTooltipNumeric' => 'Deben considerarse os valores como número na comparación?', + 'ModelTooltipQuick' => 'Isto engadirá un submenú no menú de Filtros', + + 'ResultsTitle' => 'Seleccionar un elemento', # Accepts model codes + 'ResultsNextTip' => 'Procurarr na seguinte Web', + 'ResultsPreview' => 'Previsualizar', + 'ResultsInfo' => 'Pode engadir varios elementos á colección seleccionandoos mentres preme Ctrl ou Shift', # Accepts model codes + + 'OptionsTitle' => 'Preferencias', + 'OptionsExpertMode' => 'Expert Mode', + 'OptionsPrograms' => 'Specify applications to use for different media, leave blank to use system defaults', + 'OptionsBrowser' => 'Navegador Web', + 'OptionsPlayer' => 'Reprodutor de Video', + 'OptionsAudio' => 'Reprodutor de Audio', + 'OptionsImageEditor' => 'Image editor', + 'OptionsCdDevice' => 'CD device', + 'OptionsImages' => 'Directorio de Imaxes', + 'OptionsUseRelativePaths' => 'Utilizar rutas relativas para as imaxes', + 'OptionsLayout' => 'Disposición', + 'OptionsStatus' => 'Amosar barra de estado', + 'OptionsUseStars' => 'Use stars to display ratings', + 'OptionsWarning' => 'Atención: Os cambios nesta pestana non terán efecto até que reinicie a aplicación.', + 'OptionsRemoveConfirm' => 'Pedir confirmación antes de eliminar un elemento', + 'OptionsAutoSave' => 'Gardar automáticamente a colección', + 'OptionsAutoLoad' => 'Cargar a colección anterior ao inicio', + 'OptionsSplash' => 'Amosar pantalla de inicio', + 'OptionsTearoffMenus' => 'Enable tear-off menus', + 'OptionsSpellCheck' => 'Utilizar corrector ortográfico para os campos de texto longos', + 'OptionsProgramTitle' => 'Seleccione que programa se utilizará', + 'OptionsPlugins' => 'Sitio web do que recuperar os datos', + 'OptionsAskPlugins' => 'Preguntar (Todos os sitios web)', + 'OptionsPluginsMulti' => 'Algúns sitios', + 'OptionsPluginsMultiAsk' => 'Preguntar (Algúns sitios web)', + 'OptionsPluginsMultiPerField' => 'Algúns 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 a listaxe', + 'OptionsAskImport' => 'Seleccione os campos para importar', + 'OptionsProxy' => 'Usar un proxy', + 'OptionsCookieJar' => 'Utilizar este ficheiro cookie jar', + 'OptionsLang' => 'Linguaxe', + 'OptionsMain' => 'Principal', + 'OptionsPaths' => 'Rutas', + 'OptionsInternet' => 'Internet', + 'OptionsConveniences' => 'Características', + 'OptionsDisplay' => 'Visualización', + 'OptionsToolbar' => 'Barra de ferramentas', + 'OptionsToolbars' => {0 => 'Ningún', 1 => 'Pequeno', 2 => 'Grande', 3 => 'Predeterminado do Sistema'}, + 'OptionsToolbarPosition' => 'Posición', + 'OptionsToolbarPositions' => {0 => 'Arriba', 1 => 'Abaixo', 2 => 'Esquerda', 3 => 'Derecha'}, + 'OptionsExpandersMode' => 'Extensores demasiado longos', + 'OptionsExpandersModes' => {'asis' => 'Non facer nada', 'cut' => 'Cortar', 'wrap' => 'Axuste de liña'}, + 'OptionsDateFormat' => 'Formato da data', + 'OptionsDateFormatTooltip' => 'O formato é o utilizado por strftime(3). Por defecto é %d/%m/%Y', + 'OptionsView' => 'Listaxe de elementos', + 'OptionsViews' => {0 => 'Texto', 1 => 'Imaxe', 2 => 'Detallado'}, + 'OptionsColumns' => 'Columnas', + 'OptionsMailer' => 'Método de envío', + 'OptionsSMTP' => 'Servidor', + 'OptionsFrom' => 'O seu enderezo de correo electrónico', + 'OptionsTransform' => 'Poñer os artigos ao final dos títulos', + 'OptionsArticles' => 'Artigos (Separados por comas)', + 'OptionsSearchStop' => 'Permitir cancelar a procura', + 'OptionsBigPics' => 'Use big pictures when available', + 'OptionsAlwaysOriginal' => 'Utilizar título principal se non está o título orixinal', + 'OptionsRestoreAccelerators' => 'Restaurar aceleradores', + 'OptionsHistory' => 'Tamaño do historial', + 'OptionsClearHistory' => 'Limpar historial', + 'OptionsStyle' => 'Pel', + 'OptionsDontAsk' => 'Non preguntar de novo', + 'OptionsPathProgramsGroup' => 'Aplicacións', + 'OptionsProgramsSystem' => 'Utilizar programas definidos polo sistema', + 'OptionsProgramsUser' => 'Utilizar programas especificados', + 'OptionsProgramsSet' => 'Definir programas', + 'OptionsPathImagesGroup' => 'Imaxes', + 'OptionsInternetDataGroup' => 'Importar datos', + 'OptionsInternetSettingsGroup' => 'Preferencias', + 'OptionsDisplayInformationGroup' => 'Amosar información', + 'OptionsDisplayArticlesGroup' => 'Artigos', + 'OptionsImagesDisplayGroup' => 'Visualización', + 'OptionsImagesStyleGroup' => 'Estilo', + 'OptionsDetailedPreferencesGroup' => 'Preferencias', + 'OptionsFeaturesConveniencesGroup' => 'Conveniencias', + 'OptionsPicturesFormat' => 'Prefixo para utilizar coas imaxes:', + 'OptionsPicturesFormatInternal' => 'gcstar__', + 'OptionsPicturesFormatTitle' => 'Título ou nome do elemento asociado', + 'OptionsPicturesWorkingDir' => '%WORKING_DIR% ou . reemprazarase có directorio da colección (utilizar só ao comezo da ruta)', + 'OptionsPicturesFileBase' => '%FILE_BASE% reemprazarase polo nome do ficheiro da colección sen o sufixo (.gcs)', + 'OptionsPicturesWorkingDirError' => '%WORKING_DIR% debería ser utilizado só ao inicio da ruta para as imaxes', + 'OptionsConfigureMailers' => 'Configurar programas de correo', + + 'ImagesOptionsButton' => 'Preferencias', + 'ImagesOptionsTitle' => 'Preferencias para a listaxe de imaxes', + 'ImagesOptionsSelectColor' => 'Seleccionar unha cor', + 'ImagesOptionsUseOverlays' => 'Usar superposición de imaxes', + 'ImagesOptionsBg' => 'Fondo', + 'ImagesOptionsBgPicture' => 'Utilizar unha imaxe de fondo', + 'ImagesOptionsFg'=> 'Selección', + 'ImagesOptionsBgTooltip' => 'Cambiar a cor de fondo', + 'ImagesOptionsFgTooltip'=> 'Cambiar a selección de cor', + 'ImagesOptionsResizeImgList' => 'Automatically change number of columns', + 'ImagesOptionsAnimateImgList' => 'Use animations', + 'ImagesOptionsSizeLabel' => 'Tamaño', + 'ImagesOptionsSizeList' => {0 => 'Moi pequeno', 1 => 'Pequeno', 2 => 'Medio', 3 => 'Grande', 4 => 'Moi grande'}, + 'ImagesOptionsSizeTooltip' => 'Seleccionar o tamaño da imaxe', + + 'DetailedOptionsTitle' => 'Preferencias para a listaxe detallada', + 'DetailedOptionsImageSize' => 'Tamaño das imaxes', + 'DetailedOptionsGroupItems' => 'Agrupar elementos por', + 'DetailedOptionsSecondarySort' => 'Ordenar campos segundo descendencia', + 'DetailedOptionsFields' => 'Seleccionar campos a amosar', + 'DetailedOptionsGroupedFirst' => 'Manter xuntos elementos orfos', + 'DetailedOptionsAddCount' => 'Engadir número de elementos ás categorías', + + 'ExtractButton' => 'Información', + 'ExtractTitle' => 'Información do ficheiro', + 'ExtractImport' => 'Utilizar valores', + + 'FieldsListOpen' => 'Cargar unha listaxe de ficheiros desde un ficheiro', + 'FieldsListSave' => 'Gardar listaxe de cmapos a un ficheiro', + 'FieldsListError' => 'Esta listaxe de ficheiros non pode utilizase con este tipo de colección', + 'FieldsListIgnore' => '--- Ignorar', + + 'ExportTitle' => 'Exportar listaxe de elementos', + 'ExportFilter' => 'Exportar só os elementos amosados', + 'ExportFieldsTitle' => 'Ficheiros a exportar', + 'ExportFieldsTip' => 'Seleccione os ficheiros que quere exportar', + 'ExportWithPictures' => 'Copiar imaxes nun sub-directorio', + 'ExportSortBy' => 'Ordear por', + 'ExportOrder' => 'Order', + + 'ImportListTitle' => 'Importar outra listaxe de elementos', + 'ImportExportData' => 'Datos', + 'ImportExportFile' => 'Ficheiro', + 'ImportExportFieldsUnused' => 'Campos sen utilizar', + 'ImportExportFieldsUsed' => 'Campos utilizados', + 'ImportExportFieldsFill' => 'Engadir todo', + 'ImportExportFieldsClear' => 'Eliminar todos', + 'ImportExportFieldsEmpty' => 'Ten que escolles polo menos un campo', + 'ImportExportFileEmpty' => 'Ten que especificar un nome de campo', + 'ImportFieldsTitle' => 'Campos a importar', + 'ImportFieldsTip' => 'Seleccione os campos que quere importar', + 'ImportNewList' => 'Crear unha nova colección', + 'ImportCurrentList' => 'Engadir á colección actual', + 'ImportDropError' => 'Houbo un erro abrindo algúns dos ficheiros. Cargarase a listaxe anterior.', + 'ImportGenerateId' => 'Xerar identificador para cada elemento', + + 'FileChooserOpenFile' => 'Selecione o ficheiro', + 'FileChooserDirectory' => 'Directory', + 'FileChooserOpenDirectory' => 'Seleccione un directorio', + 'FileChooserOverwrite' => 'Este ficheiro xa existe. Quere sobreescribilo?', + 'FileAllFiles' => 'All Files', + 'FileVideoFiles' => 'Video Files', + 'FileEbookFiles' => 'Ebook Files', + 'FileAudioFiles' => 'Audio Files', + 'FileGCstarFiles' => 'GCstar Collections', + + #Some default panels + 'PanelCompact' => 'Compacto', + 'PanelReadOnly' => 'Só Lectura', + 'PanelForm' => 'Pestanas', + + 'PanelSearchButton' => 'Buscar información', + 'PanelSearchTip' => 'Buscar na web información sobre este nome', + 'PanelSearchContextChooseOne' => 'Choose a site ...', + 'PanelSearchContextMultiSite' => 'Use "Many sites"', + 'PanelSearchContextMultiSitePerField' => 'Use "Many sites per field"', + 'PanelSearchContextOptions' => 'Change options ...', + 'PanelImageTipOpen' => 'Preme na imaxe para seleccionar unha diferente.', + 'PanelImageTipView' => 'Preme na imaxe para vela no seu tamaño real.', + 'PanelImageTipMenu' => ' Botón dereito para máis opcións.', + 'PanelImageTitle' => 'Seleccione una imaxe', + 'PanelImageNoImage' => 'Sen imaxe', + 'PanelSelectFileTitle' => 'Seleccione un ficheiro', + 'PanelLaunch' => 'Launch', + 'PanelRestoreDefault' => 'Restaurar predeterminado', + 'PanelRefresh' => 'Update', + 'PanelRefreshTip' => 'Update information from web', + + 'PanelFrom' =>'Desde', + 'PanelTo' =>'A', + + 'PanelWeb' => 'Ver información', + 'PanelWebTip' => 'Ver información na web acerca deste elemento', # Accepts model codes + 'PanelRemoveTip' => 'Eliminar elemento actual', # Accepts model codes + + 'PanelDateSelect' => 'Seleccionar', + 'PanelNobody' => 'Ninguén', + 'PanelUnknown' => 'Descoñecido', + 'PanelAdded' => 'Engadir data', + 'PanelRating' => 'Puntuación', + 'PanelPressRating' => 'Press Rating', + 'PanelLocation' => 'Localidade', + + 'PanelLending' => 'Prestamo', + 'PanelBorrower' => 'Prestatario', + 'PanelLendDate' => 'Fora desde', + 'PanelHistory' => 'Historial de préstamo', + 'PanelReturned' => 'Elemento devolto', # Accepts model codes + 'PanelReturnDate' => 'Data de devolución', + 'PanelLendedYes' => 'Prestado', + 'PanelLendedNo' => 'Dispoñible', + + 'PanelTags' => 'Etiquetas', + 'PanelFavourite' => 'Favorito', + 'TagsAssigned' => 'Etiquetas asignadas', + + 'PanelUser' => 'User fields', + + 'CheckUndef' => 'Calquera', + 'CheckYes' => 'Si', + 'CheckNo' => 'Non', + + 'ToolbarAll' => 'Ver todo', + 'ToolbarAllTooltip' => 'Ver todos os elementos', + 'ToolbarGroupBy' => 'Agrupar por', + 'ToolbarGroupByTooltip' => 'Seleccionar o campo para agrupar os elementos da lista', + 'ToolbarQuickSearch' => 'Quick search', + 'ToolbarQuickSearchLabel' => 'Search', + 'ToolbarQuickSearchTooltip' => 'Select the field to search in. Enter the search terms and press Enter', + 'ToolbarSeparator' => ' Separator', + + 'PluginsTitle' => 'Procurar un elemento', + 'PluginsQuery' => 'Procura', + 'PluginsFrame' => 'Sitio Web de búsqueda', + 'PluginsLogo' => 'Logo', + 'PluginsName' => 'Nome', + 'PluginsSearchFields' => 'Campos de búsqueda', + 'PluginsAuthor' => 'Autor', + 'PluginsLang' => 'Linguaxe', + 'PluginsUseSite' => 'Utilizar sitio web seleccionado para outras procuras no futuro', + 'PluginsPreferredTooltip' => 'Site recommended by GCstar', + 'PluginDisabled' => 'Disabled', + + 'BorrowersTitle' => 'Configuración do prestatario', + 'BorrowersList' => 'Prestatarios', + 'BorrowersName' => 'Nome', + 'BorrowersEmail' => 'e-mail', + 'BorrowersAdd' => 'Engadir', + 'BorrowersRemove' => 'Eliminar', + 'BorrowersEdit' => 'Editar', + 'BorrowersTemplate' => 'Plantilla de correo', + 'BorrowersSubject' => 'Asunto do correo', + 'BorrowersNotice1' => '%1 reemprazarase có nome do prestatario/a', + 'BorrowersNotice2' => '%2 reemprazarase có título do elemento', + 'BorrowersNotice3' => '%3 reemprazarase coa data do préstamo', + + 'BorrowersImportTitle' => 'Importar información dos prestatarios', + 'BorrowersImportType' => 'Formato do ficheiro:', + 'BorrowersImportFile' => 'Ficheiro:', + + 'BorrowedTitle' => 'Elementos prestados', # Accepts model codes + 'BorrowedDate' => 'Desde', + 'BorrowedDisplayInPanel' => 'Show item in main window', # Accepts model codes + + 'MailTitle' => 'Enviar un correo electrónico', + 'MailFrom' => 'Desde: ', + 'MailTo' => 'A: ', + 'MailSubject' => 'Asunto: ', + 'MailSmtpError' => 'Houbo un problema conectando có servidor SMTP', + 'MailSendmailError' => 'Houbo un problema ao lanzar sendmail', + + 'SearchTooltip' => 'Procurar todos os elementos', # Accepts model codes + 'SearchTitle' => 'Procura de elementos', # 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 reemprazar', + 'QueryReplaceOld' => 'Valor actual', + 'QueryReplaceNew' => 'Novo valor', + 'QueryReplaceLaunch' => 'Reemprazar', + + 'ImportWindowTitle' => 'Seleccione os campos para importar', + 'ImportViewPicture' => 'Ver imaxe', + 'ImportSelectAll' => 'Seleccionar todo', + 'ImportSelectNone' => 'Non seleccionar ningún', + + 'MultiSiteTitle' => 'Sitios web para as procuras', + 'MultiSiteUnused' => 'Complementos sen usar', + 'MultiSiteUsed' => 'Complementos para usar', + 'MultiSiteLang' => 'Encher a listaxe con plugins en galego', + 'MultiSiteEmptyError' => 'Ten una listaxe de sitios baleira', + 'MultiSiteClear' => 'Limpar listaxe', + + 'DisplayOptionsTitle' => 'Elementos para amosar', + 'DisplayOptionsAll' => 'Seleccionar todos', + 'DisplayOptionsSearch' => 'Botón de procura', + + 'GenresTitle' => 'Conversión de xénero', + 'GenresCategoryName' => 'Xénero a utilizar', + 'GenresCategoryMembers' => 'Xérnero para reemprazar', + 'GenresLoad' => 'Cargar unha listaxe', + 'GenresExport' => 'Gardar listaxe a un ficheiro', + 'GenresModify' => 'Editar conversión', + + 'PropertiesName' => 'Nome da colección', + 'PropertiesLang' => 'Language code', + 'PropertiesOwner' => 'Propietario/a', + 'PropertiesEmail' => 'Correo electrónico', + 'PropertiesDescription' => 'Descripción', + 'PropertiesFile' => 'Información de ficheiro', + 'PropertiesFilePath' => 'Ruta completa', + 'PropertiesItemsNumber' => 'Número de elementos', # Accepts model codes + 'PropertiesFileSize' => 'Tamaño', + 'PropertiesFileSizeSymbols' => ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'], + 'PropertiesCollection' => 'Propiedades da colección', + 'PropertiesDefaultPicture' => 'Default picture', + + 'MailProgramsTitle' => 'Programas de envío de correo', + 'MailProgramsName' => 'Nome', + 'MailProgramsCommand' => 'Liña de comandos', + 'MailProgramsRestore' => 'Restaurar valores predeterminados', + 'MailProgramsAdd' => 'Engadir un programa', + 'MailProgramsInstructions' => 'Na liña de comandos, fanse algunhas substitucións: + %f reemprázase có enderezo de correo electrónico do/a usuario/a. + %t reemprázase có enderezo do destinatario/a. + %s reemprázase có asunto da mensaxe. + %b reemprázase có corpo da mensaxe.', + + 'BookmarksBookmarks' => 'Favoritos', + 'BookmarksFolder' => 'Cartafois', + 'BookmarksLabel' => 'Etiqueta', + 'BookmarksPath' => 'Ruta', + 'BookmarksNewFolder' => 'Novo cartafol', + + 'AdvancedSearchType' => 'Tipo de procura', + 'AdvancedSearchTypeAnd' => 'Elementos que cumpren todos os criterios de procura', # Accepts model codes + 'AdvancedSearchTypeOr' => 'Elementos que cumpren polo menos un criterio', # Accepts model codes + 'AdvancedSearchCriteria' => 'Criterios', + 'AdvancedSearchAnyField' => 'Calquer campo', + 'AdvancedSearchSaveTitle' => 'Save search', + 'AdvancedSearchSaveName' => 'Name', + 'AdvancedSearchSaveOverwrite' => 'A saved search already exists with that name. Please use a different one.', + 'AdvancedSearchUseCase' => 'Case sensitive', + 'AdvancedSearchIgnoreDiacritics' => 'Ignore accents and other diacritics', + + 'BugReportSubject' => 'Reporte de erro xerado por GCstar', + 'BugReportVersion' => 'Versión', + 'BugReportPlatform' => 'Sistema Operativo', + 'BugReportMessage' => 'Mensaxe de erro', + '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; -- cgit v1.2.3