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/CA/GCExport/GCExportCSV.pm | 40 ++ lib/gcstar/GCLang/CA/GCExport/GCExportExternal.pm | 38 ++ lib/gcstar/GCLang/CA/GCExport/GCExportHTML.pm | 64 ++ lib/gcstar/GCLang/CA/GCExport/GCExportPDB.pm | 38 ++ lib/gcstar/GCLang/CA/GCExport/GCExportSQL.pm | 40 ++ lib/gcstar/GCLang/CA/GCExport/GCExportTarGz.pm | 37 ++ lib/gcstar/GCLang/CA/GCExport/GCExportXML.pm | 41 ++ .../GCLang/CA/GCImport/GCImportAlexandria.pm | 39 ++ lib/gcstar/GCLang/CA/GCImport/GCImportCSV.pm | 43 ++ lib/gcstar/GCLang/CA/GCImport/GCImportFolder.pm | 68 +++ lib/gcstar/GCLang/CA/GCImport/GCImportGCstar.pm | 37 ++ lib/gcstar/GCLang/CA/GCImport/GCImportList.pm | 42 ++ lib/gcstar/GCLang/CA/GCImport/GCImportScanner.pm | 50 ++ lib/gcstar/GCLang/CA/GCImport/GCImportTellico.pm | 37 ++ lib/gcstar/GCLang/CA/GCModels/GCTVepisodes.pm | 45 ++ lib/gcstar/GCLang/CA/GCModels/GCTVseries.pm | 55 ++ lib/gcstar/GCLang/CA/GCModels/GCboardgames.pm | 86 +++ lib/gcstar/GCLang/CA/GCModels/GCbooks.pm | 68 +++ lib/gcstar/GCLang/CA/GCModels/GCcoins.pm | 102 ++++ lib/gcstar/GCLang/CA/GCModels/GCcomics.pm | 73 +++ lib/gcstar/GCLang/CA/GCModels/GCfilms.pm | 93 +++ lib/gcstar/GCLang/CA/GCModels/GCgames.pm | 83 +++ lib/gcstar/GCLang/CA/GCModels/GCgeneric.pm | 42 ++ lib/gcstar/GCLang/CA/GCModels/GCminicars.pm | 182 ++++++ lib/gcstar/GCLang/CA/GCModels/GCmusics.pm | 66 ++ lib/gcstar/GCLang/CA/GCModels/GCperiodicals.pm | 52 ++ lib/gcstar/GCLang/CA/GCModels/GCsmartcards.pm | 108 ++++ lib/gcstar/GCLang/CA/GCModels/GCsoftware.pm | 84 +++ lib/gcstar/GCLang/CA/GCModels/GCstamps.pm | 189 ++++++ lib/gcstar/GCLang/CA/GCModels/GCwines.pm | 63 ++ lib/gcstar/GCLang/CA/GCstar.pm | 674 +++++++++++++++++++++ 31 files changed, 2679 insertions(+) create mode 100644 lib/gcstar/GCLang/CA/GCExport/GCExportCSV.pm create mode 100644 lib/gcstar/GCLang/CA/GCExport/GCExportExternal.pm create mode 100644 lib/gcstar/GCLang/CA/GCExport/GCExportHTML.pm create mode 100644 lib/gcstar/GCLang/CA/GCExport/GCExportPDB.pm create mode 100644 lib/gcstar/GCLang/CA/GCExport/GCExportSQL.pm create mode 100644 lib/gcstar/GCLang/CA/GCExport/GCExportTarGz.pm create mode 100644 lib/gcstar/GCLang/CA/GCExport/GCExportXML.pm create mode 100644 lib/gcstar/GCLang/CA/GCImport/GCImportAlexandria.pm create mode 100644 lib/gcstar/GCLang/CA/GCImport/GCImportCSV.pm create mode 100644 lib/gcstar/GCLang/CA/GCImport/GCImportFolder.pm create mode 100644 lib/gcstar/GCLang/CA/GCImport/GCImportGCstar.pm create mode 100644 lib/gcstar/GCLang/CA/GCImport/GCImportList.pm create mode 100644 lib/gcstar/GCLang/CA/GCImport/GCImportScanner.pm create mode 100644 lib/gcstar/GCLang/CA/GCImport/GCImportTellico.pm create mode 100644 lib/gcstar/GCLang/CA/GCModels/GCTVepisodes.pm create mode 100644 lib/gcstar/GCLang/CA/GCModels/GCTVseries.pm create mode 100644 lib/gcstar/GCLang/CA/GCModels/GCboardgames.pm create mode 100644 lib/gcstar/GCLang/CA/GCModels/GCbooks.pm create mode 100644 lib/gcstar/GCLang/CA/GCModels/GCcoins.pm create mode 100644 lib/gcstar/GCLang/CA/GCModels/GCcomics.pm create mode 100644 lib/gcstar/GCLang/CA/GCModels/GCfilms.pm create mode 100644 lib/gcstar/GCLang/CA/GCModels/GCgames.pm create mode 100644 lib/gcstar/GCLang/CA/GCModels/GCgeneric.pm create mode 100644 lib/gcstar/GCLang/CA/GCModels/GCminicars.pm create mode 100644 lib/gcstar/GCLang/CA/GCModels/GCmusics.pm create mode 100644 lib/gcstar/GCLang/CA/GCModels/GCperiodicals.pm create mode 100644 lib/gcstar/GCLang/CA/GCModels/GCsmartcards.pm create mode 100644 lib/gcstar/GCLang/CA/GCModels/GCsoftware.pm create mode 100644 lib/gcstar/GCLang/CA/GCModels/GCstamps.pm create mode 100644 lib/gcstar/GCLang/CA/GCModels/GCwines.pm create mode 100644 lib/gcstar/GCLang/CA/GCstar.pm (limited to 'lib/gcstar/GCLang/CA') diff --git a/lib/gcstar/GCLang/CA/GCExport/GCExportCSV.pm b/lib/gcstar/GCLang/CA/GCExport/GCExportCSV.pm new file mode 100644 index 0000000..5fff8e4 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCExport/GCExportCSV.pm @@ -0,0 +1,40 @@ +{ + package GCLang::CA::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' => 'Inclou els noms dels camps a sobre', + 'Separator' => 'Delimitador', + 'Replacement' => 'Substitueix el delimitador amb', + 'Charset' => 'Joc de caràcters', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCExport/GCExportExternal.pm b/lib/gcstar/GCLang/CA/GCExport/GCExportExternal.pm new file mode 100644 index 0000000..d91a1fd --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCExport/GCExportExternal.pm @@ -0,0 +1,38 @@ +{ + package GCLang::CA::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/CA/GCExport/GCExportHTML.pm b/lib/gcstar/GCLang/CA/GCExport/GCExportHTML.pm new file mode 100644 index 0000000..36a86f5 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCExport/GCExportHTML.pm @@ -0,0 +1,64 @@ +{ + package GCLang::CA::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' => 'Fitxer de plantilla invàlid', + 'UseFile' => 'Utilitza el fitxer especificat abaix', + 'TemplateExternalFile' => 'Fitxer de plantilla', + 'WithJS' => 'Utilitza Javascript', + 'FileTemplate' => 'Plantilla:', + 'Preview' => 'Vista prèvia', + 'NoPreview' => 'Vista prèvia no disponible', + 'Title' => 'Títol de la pàgina', + 'InfoFile' => 'El llistat de les pel·lícules es troba a l\'arxiu: ', + 'InfoDir' => 'Les imatges es troben a: ', + 'HeightImg' => 'Alçada en píxels de les imatges a exportar: ', + 'OpenFileInBrowser' => 'Obri el fitxer generat en el navegador web', + 'Note' => 'Llistat generat amb GCstar', + 'InputTitle' => 'Introduíeu el text a cercar', + 'SearchType1' => 'Només el Títol', + 'SearchType2' => 'Tota la informació', + 'SearchButton' => 'Cerca', + 'SearchTitle' => 'Mostra només les pel·lícules coincidents amb els criteris anteriors', + 'AllButton' => 'Totes', + 'AllTitle' => 'Mostra totes les pel·lícules', + 'Expand' => 'Tots desplegats', + 'ExpandTitle' => 'Mostrar la informació de totes les pel·lícules', + 'Collapse' => 'Tots plegats', + 'CollapseTitle' => 'Oculta la informació de totes les pel·lícules', + 'Borrowed' => 'Prestatari: ', + 'NotBorrowed' => 'Disponible', + 'Top' => 'Amunt', + 'Bottom' => 'Devall', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCExport/GCExportPDB.pm b/lib/gcstar/GCLang/CA/GCExport/GCExportPDB.pm new file mode 100644 index 0000000..8297c90 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCExport/GCExportPDB.pm @@ -0,0 +1,38 @@ +{ + package GCLang::CA::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' => 'Nom de la base de dades', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCExport/GCExportSQL.pm b/lib/gcstar/GCLang/CA/GCExport/GCExportSQL.pm new file mode 100644 index 0000000..e5b7683 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCExport/GCExportSQL.pm @@ -0,0 +1,40 @@ +{ + package GCLang::CA::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' => 'Inclou una instrucció DROP', + 'WithCreate' => 'Inclou una instrucció CREATE', + 'TableName' => 'Nom de la taula', + 'InfoFile' => 'Fitxer SQL: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCExport/GCExportTarGz.pm b/lib/gcstar/GCLang/CA/GCExport/GCExportTarGz.pm new file mode 100644 index 0000000..d907044 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCExport/GCExportTarGz.pm @@ -0,0 +1,37 @@ +{ + package GCLang::CA::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' => 'L\'arxiu .tar.gz es troba a: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCExport/GCExportXML.pm b/lib/gcstar/GCLang/CA/GCExport/GCExportXML.pm new file mode 100644 index 0000000..129377c --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCExport/GCExportXML.pm @@ -0,0 +1,41 @@ +{ + package GCLang::CA::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' => 'Fitxer plantilla', + 'ModelText' => 'Text de plantilla', + 'Models' => 'Plantilla a utilitzar', + 'UseFile' => 'Utilitza el fitxer', + 'UseModel' => 'Utilitza la zona de text', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCImport/GCImportAlexandria.pm b/lib/gcstar/GCLang/CA/GCImport/GCImportAlexandria.pm new file mode 100644 index 0000000..9a14b8f --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCImport/GCImportAlexandria.pm @@ -0,0 +1,39 @@ +{ + package GCLang::CA::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' => 'On l\'hauria de cercar', + 'Default' => 'Directori predeterminat d\'Alexandria', + 'Specified' => 'Directori especificat a sota', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCImport/GCImportCSV.pm b/lib/gcstar/GCLang/CA/GCImport/GCImportCSV.pm new file mode 100644 index 0000000..d85084f --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCImport/GCImportCSV.pm @@ -0,0 +1,43 @@ +{ + package GCLang::CA::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' => 'Joc de caràcters', + 'Header' => 'Ignora la primera línia', + 'Separator' => 'Delimitador', + 'Plugin' => 'Lloc a utilitzar', + 'UseFirst' => 'Selecciona el primer si hi ha molts resultats', + 'SearchField' => 'Cercar articles mitjançant', + + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCImport/GCImportFolder.pm b/lib/gcstar/GCLang/CA/GCImport/GCImportFolder.pm new file mode 100644 index 0000000..5e17dde --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCImport/GCImportFolder.pm @@ -0,0 +1,68 @@ +{ + package GCLang::CA::GCImport::GCImportFolder; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + use GCLang::GCLangUtils; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Name' => 'Carpeta', + 'Recursive' => 'Navega per sub-carpetes', + 'Suffixes' => 'Sufixes o extensions dels fitxers', + 'SuffixesTooltip' => 'Una llista separada per comes de sufixes o extensions de fitxters a considerar', + 'Remove' => 'Per ser borrats dels noms', + 'RemoveTooltip' => 'Una llista separada per comes de paraules que haurien de ser borrades dels noms de fitxers per a crear els noms que es desen', + 'Ask'=> 'Pregunta', + 'AskEnd'=> 'Pregunta al final', + 'AddWithoutInfo'=> 'Afegeix sense informació', + 'DontAdd'=> 'No afegeixis', + 'TakeFirst' => 'Selecciona primer', + 'MultipleResult'=> 'Ignora quan hi ha més d\'un resultat', + 'MultipleResultTooltip'=> 'El fitxer s\'afegirà sense recollir la informació si hi ha més d\'un resutat', + 'RemoveWholeWord' => 'Elimina només paraules senceres', + 'NoResult'=> 'Sense resultats', + 'NoResultTooltip'=> 'Què feim quan no es retorna un resultat', + 'RemoveTooltipWholeWord' => 'Les paraules s\'eliminaran només si apareixen com paraules senceres', + 'RemoveRegularExpr' => 'Expressió regular', + 'RemoveTooltipRegularExpr' => 'Es considera que \'Esser eliminat dels noms\' és una expressió regular', + 'SkipFileAlreadyInCollection' => 'Només afegeix fitxers nous', + 'SkipFileAlreadyInCollectionTooltip' => 'Només afegeix fitxers que encara no estiguin en la col·lecció', + 'SkipFileNo' => 'No', + 'SkipFileFullPath' => 'basat en el camí cencer', + 'SkipFileFileName' => 'basat en el nom del fitxer', + 'SkipFileFileNameAndUpdate' => 'basat en el nom del fitxer (però actualitza el camí a la col·lecció)', + 'InfoFromFileNameRegExp' => 'Analitza el nom de fitxer amb aquesta expressió regular', + 'InfoFromFileNameRegExpTooltip' => 'Utilitza aquest per treure informació del nom de fitxer (després d\'eliminar l\'extensió). Deixa-ho buid si no fa falta. Camps coneguts: $T:Títol, $A:Títol alfabetitzat, $Y:Data de sortida, $S:Temporada, $E:Episodi, $N:Nom alfabetitzat de la sèrie , $x:Número de part, $y: Número total de parts', + + ); + + # As this plugin shares some values with ImportList, it adds them from it + importTranslation('List'); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCImport/GCImportGCstar.pm b/lib/gcstar/GCLang/CA/GCImport/GCImportGCstar.pm new file mode 100644 index 0000000..e1b7eef --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCImport/GCImportGCstar.pm @@ -0,0 +1,37 @@ +{ + package GCLang::CA::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' => 'Copia les imatges', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCImport/GCImportList.pm b/lib/gcstar/GCLang/CA/GCImport/GCImportList.pm new file mode 100644 index 0000000..ad17559 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCImport/GCImportList.pm @@ -0,0 +1,42 @@ +{ + package GCLang::CA::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' => 'Llista de noms', + 'Plugin' => 'Lloc a utilitzar', + 'UseFirst' => 'Selecciona el primer si hi ha molts resultats', + 'CommentAuto' => 'Element importat automàticament.', + 'CommentSite' => 'Lloc web: ', + 'CommentTitle' => 'Títol: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCImport/GCImportScanner.pm b/lib/gcstar/GCLang/CA/GCImport/GCImportScanner.pm new file mode 100644 index 0000000..6fe44a9 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCImport/GCImportScanner.pm @@ -0,0 +1,50 @@ +{ + package GCLang::CA::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/CA/GCImport/GCImportTellico.pm b/lib/gcstar/GCLang/CA/GCImport/GCImportTellico.pm new file mode 100644 index 0000000..0d2469c --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCImport/GCImportTellico.pm @@ -0,0 +1,37 @@ +{ + package GCLang::CA::GCImport::GCImportTellico; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'NotSupported' => 'El fitxer no és una colecció Tellico compatible', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCModels/GCTVepisodes.pm b/lib/gcstar/GCLang/CA/GCModels/GCTVepisodes.pm new file mode 100644 index 0000000..e8893cf --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCModels/GCTVepisodes.pm @@ -0,0 +1,45 @@ +{ + package GCLang::CA::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 => 'Col·lecció de sèries (episodis) de TV', + Items => 'Episodis', + NewItem => 'Nou episodi', + NewSeries => 'Nova sèrie', + Episode => 'Episodi', + ); + # Both of them are required as importTranslation doesn't recurse + importTranslation('films'); + importTranslation('TVseries'); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCModels/GCTVseries.pm b/lib/gcstar/GCLang/CA/GCModels/GCTVseries.pm new file mode 100644 index 0000000..8b80841 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCModels/GCTVseries.pm @@ -0,0 +1,55 @@ +{ + package GCLang::CA::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 => 'Col·lecció de sèries de televisió', + Items => { 0 => 'Sèries', + 1 => 'Sèrie', + X => 'Sèries', + lowercase1 => 'sèrie', + lowercaseX => 'sèries' + }, + NewItem => 'Sèrie nova', + Name => 'Nom', + Season => 'Temporada', + Part => 'Part', + Episodes => 'Episodis', + FirstAired => 'Primera emissió', + Time => 'Durada de l\'episodi', + Producer => 'Productor', + Music => 'Música', + ); + importTranslation('films'); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCModels/GCboardgames.pm b/lib/gcstar/GCLang/CA/GCModels/GCboardgames.pm new file mode 100644 index 0000000..4941aff --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCModels/GCboardgames.pm @@ -0,0 +1,86 @@ +{ + package GCLang::CA::GCModels::GCboardgames; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Board games collection', + Items => {0 => 'Game', + 1 => 'Game', + X => 'Games'}, + NewItem => 'New game', + + Id => 'Id', + Name => 'Name', + Original => 'Original name', + Box => 'Box picture', + DesignedBy => 'Designed by', + PublishedBy => 'Published by', + Players => 'Number of players', + PlayingTime => 'Playing time', + SuggestedAge => 'Suggested age', + Released => 'Released', + Description => 'Description', + Category => 'Category', + Mechanics => 'Mechanics', + ExpandedBy => 'Expanded by', + ExpansionFor => 'Expansion for', + GameFamily => 'Game family', + IllustratedBy => 'Illustrated by', + Url => 'Web page', + TimesPlayed => 'Times played', + CompleteContents => 'Complete contents', + Copies => 'No. of copies', + Condition => 'Condition', + Photos => 'Photos', + Photo1 => 'First picture', + Photo2 => 'Second picture', + Photo3 => 'Third picture', + Photo4 => 'Fourth picture', + Comments => 'Comments', + + Perfect => 'Perfect', + Good => 'Good', + Average => 'Average', + Poor => 'Poor', + + CompleteYes => 'Complete contents', + CompleteNo => 'Missing pieces', + + General => 'General', + Details => 'Details', + Personal => 'Personal', + Information => 'Information', + + FilterRatingSelect => 'Rating At _Least...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCModels/GCbooks.pm b/lib/gcstar/GCLang/CA/GCModels/GCbooks.pm new file mode 100644 index 0000000..364eeed --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCModels/GCbooks.pm @@ -0,0 +1,68 @@ +{ + package GCLang::CA::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 => 'Col·lecció de llibres', + Items => 'Llibres', + NewItem => 'Nou llibre', + + Isbn => 'ISBN', + Title => 'Títol', + Cover => 'Coberta', + Authors => 'Autors', + Publisher => 'Editorial', + Publication => 'Data de publicació', + Language => 'Idioma', + Genre => 'Gènere', + Serie => 'Sèrie', + Rank => 'Capítol', + Bookdescription => 'Descripció', + Pages => 'Pàgines', + Read => 'Llegit', + Acquisition => 'Data d\'adquisició', + Edition => 'Edició', + Format => 'Format', + Comments => 'Comentaris', + Url => 'Pàgina Web', + Translator => 'Translator', + Artist => 'Artist', + DigitalFile => 'Digital version', + + General => 'General', + Details => 'Detalls', + + ReadNo => 'Sense llegir', + ReadYes => 'Llegit', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCModels/GCcoins.pm b/lib/gcstar/GCLang/CA/GCModels/GCcoins.pm new file mode 100644 index 0000000..7b9c148 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCModels/GCcoins.pm @@ -0,0 +1,102 @@ +{ + package GCLang::CA::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 => 'Col·lecció de monedes', + Items => 'Monedes', + NewItem => 'Moneda nova', + + Name => 'Nom', + Country => 'País', + Year => 'Any', + Currency => 'Divisa', + Value => 'Valor', + Picture => 'Imatge principal', + Diameter => 'Diàmetre', + Metal => 'Metall', + Edge => 'Tall', + Edge1 => 'Tall 1', + Edge2 => 'Tall 2', + Edge3 => 'Tall 3', + Edge4 => 'Tall 4', + Head => 'Cara', + Tail => 'Creu', + Comments => 'Comentaris', + History => 'Història', + Website => 'Lloc web', + Estimate => 'Estimat', + References => 'Referències', + Type => 'Tipus', + Coin => 'Moneda', + Banknote => 'Nota del banc', + + Main => 'Principal', + Description => 'Descripció', + Other => 'Altra informació', + Pictures => 'Imatges', + + Condition => 'Condició (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/CA/GCModels/GCcomics.pm b/lib/gcstar/GCLang/CA/GCModels/GCcomics.pm new file mode 100644 index 0000000..87527e5 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCModels/GCcomics.pm @@ -0,0 +1,73 @@ +{ + package GCLang::CA::GCModels::GCcomics; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Comics collection', + Items => {0 => 'Comics', + 1 => 'Comic', + X => 'Comics'}, + NewItem => 'New comic', + + + Id => 'Id', + Name => 'Name', + Series => 'Series', + Volume => 'Volume', + Title => 'Title', + Writer => 'Writer', + Illustrator => 'Illustrator', + Colourist => 'Colourist', + Publisher => 'Publisher', + Synopsis => 'Synopsis', + Collection => 'Collection', + PublishDate => 'Publish Date', + PrintingDate => 'Printing Date', + ISBN => 'ISBN', + Type => 'Type', + Category => 'Category', + Format => 'Format', + NumberBoards => 'Number of Boards', + Signing => 'Signing', + Cost => 'Cost', + Rating => 'Rating', + Comment => 'Comments', + Url => 'Web page', + + FilterRatingSelect => 'Rating At _Least...', + + Main => 'Main items', + General => 'General', + Details => 'Details', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCModels/GCfilms.pm b/lib/gcstar/GCLang/CA/GCModels/GCfilms.pm new file mode 100644 index 0000000..19dd082 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCModels/GCfilms.pm @@ -0,0 +1,93 @@ +{ + package GCLang::CA::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 => 'Col·lecció de pel·lícules', + Items => 'Pel·lícules', + NewItem => 'Nova pel·lícula', + + + Id => 'Id', + Title => 'Títol', + Date => 'Data de sortida', + Time => 'Durada', + Director => 'Director', + Country => 'Nacionalitat', + MinimumAge => 'Edat mínima', + Genre => 'Gèneres', + Image => 'Imatge', + Original => 'Títol original', + Actors => 'Actors', + Actor => 'Actor', + Role => 'Paper', + Comment => 'Comentaris', + Synopsis => 'Sinopsi', + Seen => 'Vista', + Number => 'Número de suport', + Format => 'Suport', + Region => 'Regió', + Identifier => 'Identificador', + Url => 'Pàgina web', + Audio => 'Audio', + Video => 'Format de vídeo', + Trailer => 'Fitxer de vídeo', + Serie => 'Sèrie', + Rank => 'Capítol', + Subtitles => 'Subtítols', + Added => 'Afegida el (data)', + + SeenYes => 'Vista', + SeenNo => 'Sense veure', + + AgeUnrated => 'Desconeguda', + AgeAll => 'Cap', + AgeParent => 'Control patern', + + Main => 'Elements principals', + General => 'General', + Details => 'Detalls', + Lending => 'Préstec', + + Information => 'Informació', + Languages => 'Idiomes', + Encoding => 'Codificació', + + FilterAudienceAge => 'Edat mínima', + FilterSeenNo => '_No vistes', + FilterSeenYes => '_Vistes', + FilterRatingSelect => 'Valoració al _menys igual a...', + + ExtractSize => 'Mida', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCModels/GCgames.pm b/lib/gcstar/GCLang/CA/GCModels/GCgames.pm new file mode 100644 index 0000000..0221755 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCModels/GCgames.pm @@ -0,0 +1,83 @@ +{ + package GCLang::CA::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 => 'Col·lecció de Vídeo jocs', + Items => {0 => 'Joc', + 1 => 'Joc', + X => 'Jocs' + }, + NewItem => 'Joc nou', + + Id => 'Id', + Ean => 'EAN', + Name => 'Nom', + Platform => 'Plataforma', + Players => 'Nombre de jugadors', + Released => 'Data de publicació', + Editor => 'Editorial', + Developer => 'Desenvolupador', + Genre => 'Gènere', + Box => 'Caràtula', + Case => 'Capça', + Manual => 'Manual d\'instruccions', + Completion => 'Completat (%)', + Executable => 'Executable', + Description => 'Descripció', + Codes => 'Codis', + Code => 'Codi', + Effect => 'Efecte', + Secrets => 'Secrets', + Screenshots => 'Captures de pantalla', + Screenshot1 => 'Primera captura de pantalla', + Screenshot2 => 'Segona captura de pantalla', + Comments => 'Comentaris', + Url => 'Pàgina Web', + Unlockables => 'Desbloquejables', + Unlockable => 'Desbloquejable', + Howto => 'Com desbloquejar', + Exclusive => 'Exclusive', + Resolutions => 'Display resolutions', + InstallationSize => 'Size', + Region => 'Regió', + SerialNumber => 'Número de sèrie', + + General => 'General', + Details => 'Detalls', + Tips => 'Consells', + Information => 'Informació', + + FilterRatingSelect => 'Valoració al _menys...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCModels/GCgeneric.pm b/lib/gcstar/GCLang/CA/GCModels/GCgeneric.pm new file mode 100644 index 0000000..284fe36 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCModels/GCgeneric.pm @@ -0,0 +1,42 @@ +{ + package GCLang::CA::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/CA/GCModels/GCminicars.pm b/lib/gcstar/GCLang/CA/GCModels/GCminicars.pm new file mode 100644 index 0000000..84f9484 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCModels/GCminicars.pm @@ -0,0 +1,182 @@ +{ + package GCLang::CA::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 => 'Nou vehicle', + Currency => 'Moneda', + +# Main fields + + Main => 'Informació principal', + + Name => 'Nom', + Exchange => 'Per a vendre o canviar', + Wanted => 'El vull', + Rating1 => 'Classificació principal', + Picture1 => 'Imatge principal', + Scale => 'Escala', + Manufacturer => 'Fabricant', + Constructor => 'Constructor', + Type1 => 'Tipus', + Modele => 'Model', + Version => 'Versió', + Color => 'Color del Model', + Pub => 'Avís', + Year => 'Any', + Reference => 'Referència', + Kit => 'En forma de kit', + Transformation => 'Transformació personal', + Comments1 => 'Comentaris', + +# Details fields + + Details => 'Detalls', + + MiscCharacteristics => 'Característiques diverses', + Material => 'Material', + Molding => 'Motlle', + Condition => 'Condició', + Edition => 'Edició', + Collectiontype => 'Nom de la col·lecció', + Serial => 'Sèrie', + Serialnumber => 'Número de sèrie', + Designed => 'Data de Disseny', + Madein => 'Data de fabricació', + Box1 => 'Tipus de capça', + Box2 => 'Descripció de la capça', + Containbox => 'Contingut de la capça', + Rating2 => 'Realisme', + Rating3 => 'Acabat', + Acquisition => 'Data d\'adquisició', + Location => 'Lloc d\'adquisició', + Buyprice => 'Preu d\'adquisició', + Estimate => 'Estimació', + Comments2 => 'Comentaris', + Decorationset => 'Conjunt de decoració', + Characters => 'Personatges', + CarFromFilm => 'Pel·lícula del cotxe', + Filmcar => 'Pel·lícula relacionada al vehicle', + Filmpart => 'Part de la pel·lícula/episodi', + Parts => 'Nombre de parts', + VehiculeDetails => 'Detalls del vehicle', + Detailsparts => 'Detalls de les parts', + Detailsdecorations => 'Tipus de decoracions', + Decorations => 'Nombre de decoracions', + Lwh => 'Llarg / ample / alt', + Weight => 'Pes', + Framecar => 'Xassís', + Bodycar => 'Carrosseria', + Colormirror => 'Color del model', + Interior => 'Interior', + Wheels => 'Rodes', + Registrationnumber1 => 'Número de registre frontal', + Registrationnumber2 => 'Número de registre posterior', + RacingCar => 'Cotxe de carreres', + Course => 'Carrera', + Courselocation => 'Lloc de la carrera', + Courseyear => 'Data de la carrera', + Team => 'Equip', + Pilots => 'Pilot(s)', + Copilots => 'Copilot(s)', + Carnumber => 'Nombre de vehicle', + Pub2 => 'Publicistes', + Finishline => 'Posició final', + Steeringwheel => 'Posició del volant', + + +# Catalogs fields + + Catalogs => 'Catàlegs', + + OfficialPicture => 'Imatge oficial', + Barcode => 'Codi de barres', + Referencemirror => 'Referència', + Year3 => 'Data de disponibilitat', + CatalogCoverPicture => 'Portada', + CatalogPagePicture => 'Pàgina', + Catalogyear => 'Any del catàleg', + Catalogedition => 'Edició del catàleg', + Catalogpage => 'Pàgina del catàleg', + Catalogprice => 'Preu del catàleg', + Personalref => 'Referència personal', + Websitem => 'Pàgina web del fabricant del vehicle petit', + Websitec => 'Pàgina web del fabricant del vehicle real', + Websiteo => 'Enllaç interesant', + Comments3 => 'Comentaris', + +# Pictures fields + + Pictures => 'Imatges', + + OthersComments => 'Observacions generals', + OthersDetails => 'Altres detalls', + Top1 => 'Amunt', + Back1 => 'Avall', + AVG => 'Frontal esquerra', + AV => 'Davant', + AVD => 'Frontal dreta', + G => 'Esquerra', + BOX => 'Capça', + D => 'Dreta', + ARG => 'Posterior esquerra', + AR => 'Darrera', + ARD => 'Posterior dreta', + Others => 'Altres', + +# PanelLending fields + + LendingExplanation => 'Canvis útils durant les temporades d\'exhibicions', + PanelLending => 'Préstecs (per a exhibicions)', + Comments4 => 'Comentaris', + +# Realmodel fields + + Realmodel => 'Vehicle real', + + Difference => 'Diferències amb la miniatura', + Front2 => 'Davant', + Back2 => 'Darrera', + Comments5 => 'Comentaris', + + References => 'Referències', + + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCModels/GCmusics.pm b/lib/gcstar/GCLang/CA/GCModels/GCmusics.pm new file mode 100644 index 0000000..81f6049 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCModels/GCmusics.pm @@ -0,0 +1,66 @@ +{ + package GCLang::CA::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 => 'Col·lecció de música', + Items => 'Àlbums', + NewItem => 'Nou àlbum', + + Unique => 'ISRC/EAN', + Title => 'Títol', + Cover => 'Portada', + Artist => 'Artista', + Format => 'Format', + Running => 'Durada', + Release => 'Data de publicació', + Genre => 'Gènere', + Origin => 'Origen', + +#For tracks list + Tracks => 'Llista de cançons', + Number => 'Nombre', + Track => 'Títol', + Time => 'Durada', + + Composer => 'Compositor', + Producer => 'Productor', + Playlist => 'Llista de reproducció', + Comments => 'Comentaris', + Label => 'Etiqueta', + Url => 'Pàgina Web', + + General => 'General', + Details => 'Detalls', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCModels/GCperiodicals.pm b/lib/gcstar/GCLang/CA/GCModels/GCperiodicals.pm new file mode 100644 index 0000000..4404abb --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCModels/GCperiodicals.pm @@ -0,0 +1,52 @@ +{ + package GCLang::CA::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/CA/GCModels/GCsmartcards.pm b/lib/gcstar/GCLang/CA/GCModels/GCsmartcards.pm new file mode 100644 index 0000000..9c7c04e --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCModels/GCsmartcards.pm @@ -0,0 +1,108 @@ +{ + package GCLang::CA::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 => 'Col·lecció de targetes intel·ligents', + Items => {0 => 'Targeta intel·ligent', + 1 => 'Targeta intel·ligent', + X => 'Targetes intel·ligents'}, + NewItem => 'Nova targeta intel·ligent', + Currency => 'Moneda', + + Help => 'Ajuda pels camps', + Help1 => 'Ajuda', + +# Traduction des Champs "Main" + + Main => 'La targenta intel·ligent', + + Cover => 'Imatge', + + Name => 'Nom', + Exchange => 'Per a canviar o vendre', + Wanted => 'La vull', + Rating1 => 'Classificació global', + TheSmartCard => 'La targeta intel·ligent, devant, derrera', + + Country => 'País', + Color => 'Color', + Type1 => 'Tipus de targeta', + Type2 => 'Tipus de xip', + Dimension => 'Llarg / Ample / Gruix', + + Box => 'Capça', + Chip => 'Xip', + Year1 => 'Any edició', + Year2 => 'Any de validesa', + Condition => 'Condició', + Charge => 'Targeta recarregable', + Variety => 'Varietat', + + Edition => 'Nombre d\'exemplars', + Serial => 'Número de sèrie', + Theme => 'Tema', + + Acquisition => 'Adquirida en', + + Catalog0 => 'Catàleg', + Catalog1 => 'Phonecote / Infopuce (YT)', + Catalog2 => 'La Cote en Poche', + + Reference0 => 'Referència', + Reference1 => 'Referència Phonecote / Infopuce (YT)', + Reference2 => 'Referència La Cote en Poche', + Reference3 => 'Altra referència', + + Quotationnew00 => 'Quota per a la nova targeta', + Quotationnew10 => 'Quota Phonecote / Infopuce (YT)', + Quotationnew20 => 'Quota La Cote en Poche', + Quotationnew30 => 'Quota altra', + Quotationold00 => 'Quota per a la targeta usada', + Quotationold10 => 'Quota Phonecote / Infopuce (YT)', + Quotationold20 => 'Quota La Cote en Poche', + Quotationold30 => 'Altra quota', + + Title1 => 'Títol', + + Unit => 'Unitats / nombre de minuts', + + Pressed => 'Tipus d\'impressió', + Location => 'Lloc d\'impressió', + + Comments1 => 'Comentaris', + + Others => 'Altres', + Weight => 'Pes', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCModels/GCsoftware.pm b/lib/gcstar/GCLang/CA/GCModels/GCsoftware.pm new file mode 100644 index 0000000..449c3a3 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCModels/GCsoftware.pm @@ -0,0 +1,84 @@ +{ + package GCLang::CA::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 => 'Col·lecció de programari', + Items => {0 => 'Aplicació', + 1 => 'Aplicació', + X => 'Aplicacions', + lowercase1 => 'aplicació', + lowercaseX => 'aplicacions'}, + NewItem => 'Aplicació Nova', + + Id => 'Id', + Ean => 'EAN', + Name => 'Nom', + Platform => 'Plataforma', + Released => 'Data de sortida', + Homepage => 'Pàgina web', + Editor => 'Editor', + Developer => 'Desenvolupador', + Category => 'Categoria', + NumberOfCopies => 'Còpies', + Price => 'Preu', + Box => 'Imatge de la caixa', + Case => 'Cas', + Manual => 'Manual d\'instruccions', + Executable => 'Executable', + Description => 'Descripció', + License => 'Llicència', + Commercial => 'Comercial', + FreewareNoncommercial => 'Freeware (per a us no comercial)', + OtherOpenSource => 'Altre codi obert', + PublicDomain => 'Domini públic', + OtherLicense => 'Altre', + Registration => 'Registre', + RegistrationInfo => 'Informació de registre', + RegInfo => 'Informació de registre', + RegistrationName => 'Nom d\'usuari', + RegistrationNumber => 'Número de registre', + PanelRegistration => 'Informació de registre', + RegistrationComments => 'Informació o cometaris adicionals', + Screenshots => 'Captures de pantalla', + Screenshot1 => 'Captura de la primera pantalla', + Screenshot2 => 'Captura de la segona pantalla', + Comments => 'Comentaris', + Url => 'Pàgina web', + General => 'General', + Details => 'Detalls', + Information => 'Informació', + + FilterRatingSelect => 'Qualificació com a _Mínim...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCModels/GCstamps.pm b/lib/gcstar/GCLang/CA/GCModels/GCstamps.pm new file mode 100644 index 0000000..ae34f19 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCModels/GCstamps.pm @@ -0,0 +1,189 @@ +{ + package GCLang::CA::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/CA/GCModels/GCwines.pm b/lib/gcstar/GCLang/CA/GCModels/GCwines.pm new file mode 100644 index 0000000..a11a2b5 --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCModels/GCwines.pm @@ -0,0 +1,63 @@ +{ + package GCLang::CA::GCModels::GCwines; + + use utf8; + +# Copyright 2007 Yves Martin + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Col·lecció de vins', + Items => 'Vins', + NewItem => 'Nou vi', + + Name => 'Nom', + Designation => 'Designació', + Vintage => 'Vermada', + Vineyard => 'Vinya', + Type => 'Tipus', + Grapes => 'Reïm', + Soil => 'Sol', + Producer => 'Productor', + Country => 'Païs', + Volume => 'Volum (ml)', + Alcohol => 'Alcohol (%)', + Medal => 'Medalles/Premis', + + Storage => 'Celler', + Location => 'Lloc', + ShelfIndex => 'Index', + Quantity => 'Quantitat', + Acquisition => 'Adquisició', + PurchaseDate => 'Data de compra', + PurchasePrice => 'Preu de compra', + Gift => 'Regal', + BottleLabel => 'Etiqueta de la botella', + Website => 'Referències al web', + + Tasted => 'Tastat', + Comments => 'Comentaris', + Serving => 'Porció', + TastingField => 'Notes de degustació', + + General => 'General', + Details => 'Detalls', + Tasting => 'Degustació', + + TastedNo => 'No tastat', + TastedYes => 'Tastat', + + FilterRange => 'Rang', + FilterTastedNo => '_Encara no tastat', + FilterTastedYes => 'Ja _tastat', + FilterRatingSelect => 'Valoració al _menys...' + + ); +} + +1; diff --git a/lib/gcstar/GCLang/CA/GCstar.pm b/lib/gcstar/GCLang/CA/GCstar.pm new file mode 100644 index 0000000..c741c5f --- /dev/null +++ b/lib/gcstar/GCLang/CA/GCstar.pm @@ -0,0 +1,674 @@ +{ + package GCLang::CA; + + 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' => 'Català', + + 'Separator' => ' : ', + + 'Warning' => 'Avís: + +La informació descarregada des d\'Internet (gràcies als +connectors de cerca) és només per a ús personal + +Qualsevol redistribució queda prohibida sense +l\'autorització explícita dels respectius webs. + +Per a saber quin és el web al que pertany la informació, +podeu usar el botó situat devall dels detalls de la pel·lícula.', + + 'AllItemsFiltered' => 'Cap pel·lícula compleix amb els criteris de filtrat', # Accepts model codes + +#Installation + 'InstallDirInfo' => 'Instal·la a ', + 'InstallMandatory' => 'Components obligatoris', + 'InstallOptional' => 'Components opcionals', + 'InstallErrorMissing' => 'Error: els components següents han d\'instal·lar-se: ', + 'InstallPrompt' => 'Directori predeterminat per a la instal·lació [/usr/local]: ', + 'InstallEnd' => 'Fi de la instal·lació', + 'InstallNoError' => 'Cap error', + 'InstallLaunch' => 'Per utilitzar l\'aplicació, executa ', + 'InstallDirectory' => 'Repertori bàsic', + 'InstallTitle' => 'Instal·lació de GCstar', + 'InstallDependencies' => 'Dependències', + 'InstallPath' => 'Camí', + 'InstallOptions' => 'Opcions', + 'InstallSelectDirectory' => 'Trieu el directori per a la instal·lació', + 'InstallWithClean' => 'Elimina arxius del directori d\'instal·lació.', + 'InstallWithMenu' => 'Afegeix GCstar al menú d\'Aplicacions', + 'InstallNoPermission' => 'Error: No teniu permisos per a instal·lar en el directori seleccionat!!', + 'InstallMissingMandatory' => 'Algunes dependències obligatòries no estan disponibles. No podreu instal·lar GCstar fins que s\'instal·lin en el sistema.', + 'InstallMissingOptional' => 'Algunes dependències opcionals no estan disponibles. Es detallen a sota. GCstar s\'instal·larà amb algunes funcions deshabilitades.', + 'InstallMissingNone' => 'Dependències satisfetes. Podeu continuar i instal·lar GCstar.', + 'InstallOK' => 'OK', + 'InstallMissing' => 'No disponible', + 'InstallMissingFor' => 'No disponible per', + 'InstallCleanDirectory' => 'Eliminats els fitxers de GCstar del directori: ', + 'InstallCopyDirectory' => 'Copiant fitxers en el directori: ', + 'InstallCopyDesktop' => 'Copiant el fitxer .desktop a: ', + +#Update + 'UpdateUseProxy' => 'Proxy a utilitzar (si no n\'utilitzeu cap presioneu la tecla de retorn): ', + 'UpdateNoPermission' => 'Permís d\'escriptura denegat en aquest directori: ', + 'UpdateNone' => 'No s\'ha trobat cap actualització', + 'UpdateFileNotFound' => 'Fitxer no trobat', + +#Splash + 'SplashInit' => 'Inicialització', + 'SplashLoad' => 'Carregant pel·lícules', + 'SplashDisplay' => 'Mostrant Col·lecció', + 'SplashSort' => 'Sorting Collection', + 'SplashDone' => 'Fet', + +#Import from GCfilms + 'GCfilmsImportQuestion' => 'Sembla que heu emprat GCfilms abans. Voleu importar des de GCfilms a GCstar (no afectarà a GCfilms si el voleu seguir utilitzant)?', + 'GCfilmsImportOptions' => 'Configuració', + 'GCfilmsImportData' => 'Llista de pel.lícules', + +#Menus + 'MenuFile' => '_Fitxer', + 'MenuNewList' => '_Nova llista de pel·lícules', + 'MenuStats' => 'Estadístiques', + 'MenuHistory' => '_Fitxers oberts recentment', + 'MenuLend' => '_Mostra pel·lícules prestades', # Accepts model codes + 'MenuImport' => '_Importa', + 'MenuExport' => '_Exporta', + 'MenuAddItem' => '_Add Items', # Accepts model codes + + 'MenuEdit' => '_Edita', + 'MenuDuplicate' => '_Duplica pel·lícula', # Accepts model codes + 'MenuDuplicatePlural' => 'Du_plicate Items', # Accepts model codes + 'MenuEditSelectAllItems' => 'Select _All Items', # Accepts model codes + 'MenuEditDeleteCurrent' => '_Esborra pel·lícula actual', # Accepts model codes + 'MenuEditDeleteCurrentPlural' => '_Remove Items', # Accepts model codes + 'MenuEditFields' => '_Canvia camps Col·lecció', + 'MenuEditLockItems' => '_Bloqueja la informació', + + 'MenuDisplay' => '_Visualitza', + 'MenuSavedSearches' => 'Cerques desades', + 'MenuSavedSearchesSave' => 'Desa la cerca actual', + 'MenuSavedSearchesEdit' => 'Modica cerques desades', + 'MenuAdvancedSearch' => '_Cerca avançada', + 'MenuViewAllItems' => '_Mostra tots les elements', # Accepts model codes + 'MenuNoFilter' => '_Tot', + + 'MenuConfiguration' => '_Configura', + 'MenuDisplayMenu' => 'Display', + 'MenuDisplayFullScreen' => 'Full screen', + 'MenuDisplayMenuBar' => 'Menus', + 'MenuDisplayToolBar' => 'Toolbar', + 'MenuDisplayStatusBar' => 'Bottom bar', + 'MenuDisplayOptions' => '_Informació a mostrar', + 'MenuBorrowers' => '_Prestataris', + 'MenuToolbarConfiguration' => '_Controls de la barra d\'eines', + 'MenuDefaultValues' => 'Default values for new item', # Accepts model codes + 'MenuGenresConversion' => '_Conversió de gèneres', + + 'MenuBookmarks' => 'Les _meves Col·leccions', + 'MenuBookmarksAdd' => '_Afegeix Col·lecció actual', + 'MenuBookmarksEdit' => '_Edita Col·leccions marcades', + + 'MenuHelp' => '_?', + 'MenuHelpContent' => '_?', + 'MenuAllPlugins' => 'Mostra _complements', + 'MenuBugReport' => 'Comunica un _error', + 'MenuAbout' => 'A propòsit de _GCstar', + + 'MenuNewWindow' => 'Mostra elements a una nova finestra', # Accepts model codes + 'MenuNewWindowPlural' => 'Show Items in _New Window', # Accepts model codes + + 'ContextExpandAll' => 'Expandeix tots', + 'ContextCollapseAll' => 'Colapsa tots', + 'ContextChooseImage' => 'Tria _Imatge', + 'ContextImageEditor' => 'Obri amb l\'editor d\'imatges', + 'ContextOpenWith' => 'Obri _amb', + 'ContextImgFront' => 'A sobre', + 'ContextImgBack' => 'A sota', + 'ContextChooseFile' => 'Tria un fitxer', + 'ContextChooseFolder' => 'Tria una carpeta', + + 'DialogEnterNumber' => 'Entreu un valor', + + 'RemoveConfirm' => 'Realment voleu eliminar aquesta pel·lícula?', # Accepts model codes + 'RemoveConfirmPlural' => 'Do you really want to remove these items?', # Accepts model codes + + 'DefaultNewItem' => 'Nou element', # Accepts model codes + 'NewItemTooltip' => 'Afegeix un nou element', # Accepts model codes + 'NoItemFound' => 'Cap element trobat. Voleu intentar una nova cerca a un altre lloc?', + 'OpenList' => 'Seleccioneu una col·lecció', + 'SaveList' => 'Seleccioneu on voleu desar la col·lecció', + 'SaveListTooltip' => 'Desa la col·lecció actual', + 'SaveUnsavedChanges' => 'Hi ha canvis no desats a la Col·lecció. Voleu desar-los?', + 'SaveDontSave' => 'No ho guardis', + 'PreferencesTooltip' => 'Canvia les preferències', + 'ViewTooltip' => 'Canvia el tipus de col·lecció', + 'PlayTooltip' => 'Reprodueix el vídeo associat a l\'element', # Accepts model codes + 'PlayFileNotFound' => 'El fitxer a reproduir no s\'ha trobat en aquest lloc:', + 'PlayRetry' => 'Torna-ho a intentar', + + 'StatusSave' => 'Desant...', + 'StatusLoad' => 'Carregant...', + 'StatusSearch' => 'Cercant...', + 'StatusGetInfo' => 'Descarregant la informació...', + 'StatusGetImage' => 'Descarregant la imatge...', + + 'SaveError' => 'Impossible desar la llista d\'elements. Comproveu els permisos i l\'espai disponible en el disc.', + 'OpenError' => 'Impossible obrir la llista d\'elements. Comproveu els permisos.', + 'OpenFormatError' => 'Impossible obrir la llista d\'elements. El format pot ser incorrecte', + 'OpenVersionWarning' => 'La col·lecció s\'ha creat amb una versió més recent de GCstar. Si la deseu, podeu perdre dades.', + 'OpenVersionQuestion' => 'Encara voleu continuar?', + 'ImageError' => 'El directori triat per a desar les imatges no és correcte. Voleu triar-ne un altre?', + 'OptionsCreationError'=> 'Impossible crear el fitxer d\'opcions: ', + 'OptionsOpenError'=> 'Impossible obrir el fitxer d\'opcions: ', + 'OptionsSaveError'=> 'Impossible desar el fitxer d\'opcions: ', + 'ErrorModelNotFound' => 'Model no trobat: ', + 'ErrorModelUserDir' => 'Els models definits per l\'usuari són a: ', + + 'RandomTooltip' => 'Qué voleu veure aquesta nit?', + 'RandomError'=> 'No queden elements per a seleccionar', # Accepts model codes + 'RandomEnd'=> 'No hi ha més elements', # Accepts model codes + 'RandomNextTip'=> 'Següent suggerència', + 'RandomOkTip'=> 'Accepta aquest element', + + 'AboutTitle' => 'A propòsit de GCstar', + 'AboutDesc' => 'Gtk2 Catàleg de pel·lícules', + 'AboutVersion' => 'Versió', + 'AboutTeam' => 'Equip', + 'AboutWho' => 'Christian Jodar (Tian): Gestió del projecte, Programació +Nyall Dawson (Zombiepig): Programació +TPF: Programació +Adolfo González: Programació +', + 'AboutLicense' => 'Distribuït segons els termes de la GNU GPL +Logos Copyright le Spektre', + 'AboutTranslation' => 'Traducció: Ponç J. Llaneras', + 'AboutDesign' => 'Łukasz Kowalczk (Qoolman): Skin Designer +Logo i disseny web per le Spektre', + + 'ToolbarRandom' => 'Aquesta nit', + + 'UnsavedCollection' => 'Col·lecció no desada', + 'ModelsSelect' => 'Seleccioneu un tipus de Col·lecció', + 'ModelsPersonal' => 'Models personals', + 'ModelsDefault' => 'Models predeterminats', + 'ModelsList' => 'Definició de Col·lecció', + 'ModelSettings' => 'Opcions de Col·lecció', + 'ModelNewType' => 'Nou tipus de Col·lecció', + 'ModelName' => 'Nom del tipus de Col·lecció:', + 'ModelFields' => 'Camps', + 'ModelOptions' => 'Opcions', + 'ModelFilters' => 'Filtres', + 'ModelNewField' => 'Nou camp', + 'ModelFieldInformation' => 'Informació', + 'ModelFieldName' => 'Etiqueta:', + 'ModelFieldType' => 'Tipus:', + 'ModelFieldGroup' => 'Grup:', + 'ModelFieldValues' => 'Valors', + 'ModelFieldInit' => 'Predeterminat:', + 'ModelFieldMin' => 'Mínim:', + 'ModelFieldMax' => 'Màxim:', + 'ModelFieldList' => 'Llista de valors:', + 'ModelFieldListLegend' => 'Separat per a coma', + 'ModelFieldDisplayAs' => 'Mostra com:', + 'ModelFieldDisplayAsText' => 'Text', + 'ModelFieldDisplayAsGraphical' => 'Control de rati', + 'ModelFieldTypeShortText' => 'Text curt', + 'ModelFieldTypeLongText' => 'Text llarg', + 'ModelFieldTypeYesNo' => 'Sí/No', + 'ModelFieldTypeNumber' => 'Nombre', + 'ModelFieldTypeDate' => 'Data', + 'ModelFieldTypeOptions' => 'Llista de valors predefinits', + 'ModelFieldTypeImage' => 'Imatge', + 'ModelFieldTypeSingleList' => 'Llista simple', + 'ModelFieldTypeFile' => 'Fitxer', + 'ModelFieldTypeFormatted' => 'Depèn d\'altres camps', + 'ModelFieldParameters' => 'Paràmetres', + 'ModelFieldHasHistory' => 'Utilitza un històric', + 'ModelFieldFlat' => 'Mostra amb una línia', + 'ModelFieldStep' => 'Increment:', + 'ModelFieldFileFormat' => 'Format del fitxer:', + 'ModelFieldFileFile' => 'Fitxer simple', + 'ModelFieldFileImage' => 'Imatge', + 'ModelFieldFileVideo' => 'Vídeo', + 'ModelFieldFileAudio' => 'Audio', + 'ModelFieldFileProgram' => 'Programa', + 'ModelFieldFileUrl' => 'URL', + 'ModelFieldFileEbook' => 'Ebook', + 'ModelOptionsFields' => 'Camps a utilitzar', + 'ModelOptionsFieldsAuto' => 'Automàtic', + 'ModelOptionsFieldsNone' => 'Cap', + 'ModelOptionsFieldsTitle' => 'Com a títol', + 'ModelOptionsFieldsId' => 'Com a identificador', + 'ModelOptionsFieldsCover' => 'Com a coberta', + 'ModelOptionsFieldsPlay' => 'Com a botó de "Play"', + 'ModelCollectionSettings' => 'Opcions de col·lecció', + 'ModelCollectionSettingsLending' => 'Elements que es poden prestar', + 'ModelCollectionSettingsTagging' => 'Els elements es poden etiquetar', + 'ModelFilterActivated' => 'Hauria d\'estar al formulari de cerca', + 'ModelFilterComparison' => 'Comparació', + 'ModelFilterContain' => 'Conté', + 'ModelFilterDoesNotContain' => 'No conté', + 'ModelFilterRegexp' => 'Expressió regular', + 'ModelFilterRange' => 'Rang', + 'ModelFilterNumeric' => 'La comparació és numèrica', + 'ModelFilterQuick' => 'Crea un filtre ràpid', + 'ModelTooltipName' => 'Empra un nom per a reutilitzar aquest model per a moltes Col·leccions. Si està buid, les opcions es desaran directament dins la mateixa col·lecció', + 'ModelTooltipLabel' => 'El camp nom es mostrarà tal qual', + 'ModelTooltipGroup' => 'Utilitzat per agrupar camps. Els elements sense valor aquí estaran al grup predeterminat', + 'ModelTooltipHistory' => 'Els valors entrats anteriorment es desaran a una llista associada al camp', + 'ModelTooltipFormat' => 'Aquest format s\'utilitza per determinar l\'acció per obrir el fitxer amb el botó "Play"', + 'ModelTooltipLending' => 'Aquest afegirà alguns camps per manejar els préstecs', + 'ModelTooltipTagging' => 'Això afegirà alguns camps per manejar les etiquetes', + 'ModelTooltipNumeric' => 'Els valors es consideran com nombres per a la comparació', + 'ModelTooltipQuick' => 'Aquest afegirà un submenú al de filtres', + + 'ResultsTitle' => 'Tria una pel·lícula', # Accepts model codes + 'ResultsNextTip' => 'Cerca en el següent lloc', + 'ResultsPreview' => 'Previsualitza', + 'ResultsInfo' => 'Podeu afegir múltiples elements a la col·lecció pitjant la tecla Ctrl o Majús i seleccionant-los', # Accepts model codes + + 'OptionsTitle' => 'Preferències', + 'OptionsExpertMode' => 'Mode Expert', + 'OptionsPrograms' => 'Especifiqueu els programes a utilitzar pels diferents continguts, deixau-ho en blanc per utilitzar els predeterminats del sistema', + 'OptionsBrowser' => 'Navegador d\'Internet', + 'OptionsPlayer' => 'Reproductor de vídeo', + 'OptionsAudio' => 'Reproductor d\'audio', + 'OptionsImageEditor' => 'Editor d\'imatges', + 'OptionsCdDevice' => 'Dispositiu de CD', + 'OptionsImages' => 'Directori d\'imatges', + 'OptionsUseRelativePaths' => 'Utilitza camins relatius per a les imatges', + 'OptionsLayout' => 'Disposició', + 'OptionsStatus' => 'Mostra la barra d\'estat', + 'OptionsUseStars' => 'Use stars to display ratings', + 'OptionsWarning' => 'Alerteu: Els canvis fets a n\'aquest formulari no es tindran en compte fins reiniciar l\'aplicació', + 'OptionsRemoveConfirm' => 'Demana confirmació abans d\'eliminar', + 'OptionsAutoSave' => 'Desa automàticament la col·lecció', + 'OptionsAutoLoad' => 'Carrega la col·lecció prèvia a l\'inici', + 'OptionsSplash' => 'Mostra la pantalla d\'inici', + 'OptionsTearoffMenus' => 'Activa els menús desplegables', + 'OptionsSpellCheck' => 'Utilitza la correcció ortogràfica pels camps de text llargs', + 'OptionsProgramTitle' => 'Tria el programa que ha d\'utilitzar-se', + 'OptionsPlugins' => 'Lloc per descarregar les fitxes', + 'OptionsAskPlugins' => 'Pregunta', + 'OptionsPluginsMulti' => 'Diversos llocs', + 'OptionsPluginsMultiAsk' => 'Pregunta (Diversos llocs)', + 'OptionsPluginsMultiPerField' => 'Molts llocs (per camp)', + 'OptionsPluginsMultiPerFieldWindowTitle' => 'Molts llocs per ordre de selecció de camp', + 'OptionsPluginsMultiPerFieldDesc' => 'Per a cada camp l\'omplirem amb la primera informació no buida començant per l\'esquerra', + 'OptionsPluginsMultiPerFieldFirst' => 'Primer', + 'OptionsPluginsMultiPerFieldLast' => 'Darrer', + 'OptionsPluginsMultiPerFieldRemove' => 'Elimina', + 'OptionsPluginsMultiPerFieldClearSelected' => 'Llista de camps seleccionats buida', + 'OptionsPluginsList' => 'Defineix la llista', + 'OptionsAskImport' => 'Tria els camps que han d\'importar-se', + 'OptionsProxy' => 'Empra un proxy', + 'OptionsCookieJar' => 'Utilitza aquesta galeta jar', + 'OptionsMain' => 'Principal', + 'OptionsLang' => 'Idioma', + 'OptionsPaths' => 'Directoris', + 'OptionsInternet' => 'Internet', + 'OptionsConveniences' => 'Opcions', + 'OptionsDisplay' => 'Visualitza', + 'OptionsToolbar' => 'Barra d\'eines', + 'OptionsToolbars' => {0 => 'Cap', 1 => 'Petita', 2 => 'Gran', 3 => 'Ajustament per sistema'}, + 'OptionsToolbarPosition' => 'Posició', + 'OptionsToolbarPositions' => {0 => 'Amunt', 1 => 'Avall', 2 => 'Esquerra', 3 => 'Dreta'}, + 'OptionsExpandersMode' => 'Estensors massa llargs', + 'OptionsExpandersModes' => {'asis' => 'No facis res', 'cut' => 'Talla', 'wrap' => 'Divideix les línies'}, + 'OptionsDateFormat' => 'Format de data', + 'OptionsDateFormatTooltip' => 'El format es l\'utilitzat per strftime(3). Per omissió és %d/%m/%Y', + 'OptionsView' => 'Llista dels elements', + 'OptionsViews' => {0 => 'Text', 1 => 'Imatge', 2 => 'Detallada'}, + 'OptionsColumns' => 'Columnes', + 'OptionsMailer' => 'Mètode d\'enviament dels correus electrònics', + 'OptionsSMTP' => 'Servidor', + 'OptionsFrom' => 'El vostre correu electrònic', + 'OptionsTransform' => 'Posar els articles al final dels títols', + 'OptionsArticles' => 'Articles (separats per una coma)', + 'OptionsSearchStop' => 'L\'usuari pot aturar las cerques', + 'OptionsBigPics' => 'Utilitza les imatges grans quan estiguin disponibles', + 'OptionsAlwaysOriginal' => 'Empra el títol principal com l\'original si no se\'n troba cap', + 'OptionsRestoreAccelerators' => 'Restaura acceleradors', + 'OptionsHistory' => 'Mida de l\'historial', + 'OptionsClearHistory' => 'Neteja l\'historial', + 'OptionsStyle' => 'Pell', + 'OptionsDontAsk' => 'No ho demanis mai més', + 'OptionsPathProgramsGroup' => 'Aplicacions', + 'OptionsProgramsSystem' => 'Utilitza els programes definits pel sistema', + 'OptionsProgramsUser' => 'Utilitza els programes especificats', + 'OptionsProgramsSet' => 'Estableix els programes', + 'OptionsPathImagesGroup' => 'Imatges', + 'OptionsInternetDataGroup' => 'Importa dades', + 'OptionsInternetSettingsGroup' => 'Opcions', + 'OptionsDisplayInformationGroup' => 'Mostra informació', + 'OptionsDisplayArticlesGroup' => 'Articles', + 'OptionsImagesDisplayGroup' => 'Mostra', + 'OptionsImagesStyleGroup' => 'Estil', + 'OptionsDetailedPreferencesGroup' => 'Preferències', + 'OptionsFeaturesConveniencesGroup' => 'Conveniències', + 'OptionsPicturesFormat' => 'Prefixe a emprar per a les imatges:', + 'OptionsPicturesFormatInternal' => 'gcstar__', + 'OptionsPicturesFormatTitle' => 'Títol o nom de l\'element associat', + 'OptionsPicturesWorkingDir' => '%WORKING_DIR% o . se substituirà amb el directori de la col·lecció (utilitzeu només en el principi del camí)', + 'OptionsPicturesFileBase' => '%FILE_BASE% se substituirà pel nom de la col·lecció sense el sufixe (.gcs)', + 'OptionsPicturesWorkingDirError' => '%WORKING_DIR% només es pot emprar en el començament del camí per a les imatges', + 'OptionsConfigureMailers' => 'Configura els programes de correu', + + 'ImagesOptionsButton' => 'Preferències', + 'ImagesOptionsTitle' => 'Preferències per al llistat d\'imatges', + 'ImagesOptionsSelectColor' => 'Trieu un color', + 'ImagesOptionsUseOverlays' => 'Utilitza superposició d\'imatges', + 'ImagesOptionsBg' => 'Fons', + 'ImagesOptionsBgPicture' => 'Empra una imatge de fons', + 'ImagesOptionsFg'=> 'Selecció', + 'ImagesOptionsBgTooltip' => 'Canvia el color de fons', + 'ImagesOptionsFgTooltip'=> 'Canvia el color de la selecció', + 'ImagesOptionsResizeImgList' => 'Canvia automàticament el nombre de columnes', + 'ImagesOptionsAnimateImgList' => 'Use animations', + 'ImagesOptionsSizeLabel' => 'Mida', + 'ImagesOptionsSizeList' => {0 => 'Molt Petit', 1 => 'Petit', 2 => 'Mitjà', 3 => 'Gran', 4 => 'Molt Gran'}, + 'ImagesOptionsSizeTooltip' => 'Trieu la mida de la imatge', + + 'DetailedOptionsTitle' => 'Preferències del llistat detallat', + 'DetailedOptionsImageSize' => 'Mida de les imatges', + 'DetailedOptionsGroupItems' => 'Agrupar elements per', + 'DetailedOptionsSecondarySort' => 'Ordena els camps pels nins', + 'DetailedOptionsFields' => 'Trieu els camps a mostrar', + 'DetailedOptionsGroupedFirst' => 'Manté junts els elements orfes', + 'DetailedOptionsAddCount' => 'Afegeix el nombre d\'elements a les categories', + + 'ExtractButton' => 'Informació', + 'ExtractTitle' => 'Informació del fitxer', + 'ExtractImport' => 'Utilitza els valors', + + 'FieldsListOpen' => 'Carrega una llista de camps des d\'un fitxer', + 'FieldsListSave' => 'Desa una llista de camps a un fitxer', + 'FieldsListError' => 'Aquesta llista de camps no es pot utilitzar amb aquesta classe de Col·lecció', + 'FieldsListIgnore' => '--- Ignore', + + 'ExportTitle' => 'Exporta el llistat d\'elements', + 'ExportFilter' => 'Exporta només els elements mostrats', + 'ExportFieldsTitle' => 'Camps a exportar', + 'ExportFieldsTip' => 'Trieu els camps a exportar', + 'ExportWithPictures' => 'Copia les imatges a un subdirectori', + 'ExportSortBy' => 'Ordena per', + 'ExportOrder' => 'Ordre', + + 'ImportListTitle' => 'Importa un altre llistat d\'elements', + 'ImportExportData' => 'Dades', + 'ImportExportFile' => 'fitxer', + 'ImportExportFieldsUnused' => 'Camps sense utilitzar', + 'ImportExportFieldsUsed' => 'Camps utilitzats', + 'ImportExportFieldsFill' => 'Tots els camps', + 'ImportExportFieldsClear' => 'Cap camp', + 'ImportExportFieldsEmpty' => 'Heu de marcar al menys un camp', + 'ImportExportFileEmpty' => 'Especifiqueu un nom per al fitxer', + 'ImportFieldsTitle' => 'Camps a importar', + 'ImportFieldsTip' => 'Trieu els camps a importar', + 'ImportNewList' => 'Crea un nou llistat', + 'ImportCurrentList' => 'Afegeix al llistat actual', + 'ImportDropError' => 'Hi ha hagut un error obrint al menys un fitxer. Es recarregarà el llistat anterior.', + 'ImportGenerateId' => 'Genera un identificador per a cada element', + + 'FileChooserOpenFile' => 'Tria el fitxer a utilitzar', + 'FileChooserDirectory' => 'Directori', + 'FileChooserOpenDirectory' => 'Tria un directori', + 'FileChooserOverwrite' => 'Aquest fitxer ja existeix. Voleu substituir-lo?', + 'FileAllFiles' => 'Tots els fitxers', + 'FileVideoFiles' => 'Fitxers de vídeo', + 'FileEbookFiles' => 'Fitxers de llibres electrònics', + 'FileAudioFiles' => 'Fitxers de so', + 'FileGCstarFiles' => 'Col·leccions GCstar', + + #Some default panels + 'PanelCompact' => 'Compacte', + 'PanelReadOnly' => 'Només de lectura', + 'PanelForm' => 'Pestanyes', + + 'PanelSearchButton' => 'Cerca informació', + 'PanelSearchTip' => 'Cerca informació al web sobre aquest nom', + 'PanelSearchContextChooseOne' => 'Selecciona un lloc...', + 'PanelSearchContextMultiSite' => 'Utilitza "Molts llocs"', + 'PanelSearchContextMultiSitePerField' => 'Utilitza "Molts llocs per camp"', + 'PanelSearchContextOptions' => 'Canvia opcions...', + 'PanelImageTipOpen' => 'Feu clic a la imatge per triar-ne una altre.', + 'PanelImageTipView' => 'Feu clic a la imatge per veure-la a mida real.', + 'PanelImageTipMenu' => 'Feu clic amb el botó dret per a més opcions.', + 'PanelImageTitle' => 'Tria una imatge', + 'PanelImageNoImage' => 'Sense imatge', + 'PanelSelectFileTitle' => 'Tria un fitxer', + 'PanelLaunch' => 'Launch', + 'PanelRestoreDefault' => 'Restaura els valors per defecte', + 'PanelRefresh' => 'Actualitza', + 'PanelRefreshTip' => 'Actualitza la informació des del web', + + 'PanelFrom' =>'De', + 'PanelTo' =>'Per a', + + 'PanelWeb' => 'Veure la fitxa a Internet', + 'PanelWebTip' => 'Veure la fitxa de l\'element a Internet', # Accepts model codes + 'PanelRemoveTip' => 'Elimina l\'element actual', # Accepts model codes + + 'PanelDateSelect' => 'Canvia la data', + 'PanelNobody' => 'Ningú', + 'PanelUnknown' => 'Desconegut', + 'PanelAdded' => 'Afegeix una data', + 'PanelRating' => 'Valoració', + 'PanelPressRating' => 'Valoració de la premsa', + 'PanelLocation' => 'Lloc', + + 'PanelLending' => 'Préstec', + 'PanelBorrower' => 'Prestatari', + 'PanelLendDate' => 'Data', + 'PanelHistory' => 'Historial', + 'PanelReturned' => 'Element retornat', # Accepts model codes + 'PanelReturnDate' => 'Data de devolució', + 'PanelLendedYes' => 'Prestada', + 'PanelLendedNo' => 'Disponible', + + 'PanelTags' => 'Etiquetes', + 'PanelFavourite' => 'Favorit', + 'TagsAssigned' => 'Etiquetes assignades', + + 'PanelUser' => 'Camps d\'usuari', + + 'CheckUndef' => 'Qualsevol', + 'CheckYes' => 'Sí', + 'CheckNo' => 'No', + + 'ToolbarAll' => 'Mostra tots', + 'ToolbarAllTooltip' => 'Mostra tots els elements', + 'ToolbarGroupBy' => 'Agrupa per', + 'ToolbarGroupByTooltip' => 'Tria el camp per agrupar elements a la llista', + 'ToolbarQuickSearch' => 'Cerca ràpida', + 'ToolbarQuickSearchLabel' => 'Cerca', + 'ToolbarQuickSearchTooltip' => 'Seleccioneu el camp per a cercar. Entreu els termes de cerca i premeu Intro', + 'ToolbarSeparator' => ' Separador', + + 'PluginsTitle' => 'Cerca un element', + 'PluginsQuery' => 'Petició', + 'PluginsFrame' => 'Lloc on cercar', + 'PluginsLogo' => 'Logotip', + 'PluginsName' => 'Nom', + 'PluginsSearchFields' => 'Camps de cerca', + 'PluginsAuthor' => 'Autor', + 'PluginsLang' => 'Idioma', + 'PluginsUseSite' => 'Utilitza el lloc seleccionat per a futures cerques', + 'PluginsPreferredTooltip' => 'Lloc recomenat per GCstar', + 'PluginDisabled' => 'Desactivat', + + 'BorrowersTitle' => 'Configuració dels prestataris', + 'BorrowersList' => 'Prestataris', + 'BorrowersName' => 'Nom', + 'BorrowersEmail' => 'Correu electrònic', + 'BorrowersAdd' => 'Afegeix', + 'BorrowersRemove' => 'Elimina', + 'BorrowersEdit' => 'Modifica', + 'BorrowersTemplate' => 'Model de correu electrònic', + 'BorrowersSubject' => 'Títol del correu electrònic', + 'BorrowersNotice1' => '%1 es substituirà pel nom del prestatari', + 'BorrowersNotice2' => '%2 es substituirà pel títol de l\'element', + 'BorrowersNotice3' => '%3 es substituirà per la data del préstec', + + 'BorrowersImportTitle' => 'Importa informació dels prestataris', + 'BorrowersImportType' => 'Format del fitxer:', + 'BorrowersImportFile' => 'Fitxer:', + + 'BorrowedTitle' => 'Elements prestats', # Accepts model codes + 'BorrowedDate' => 'Des del', + 'BorrowedDisplayInPanel' => 'Mostra l\'element a la finestra principal', # Accepts model codes + + 'MailTitle' => 'Envia un correu electrònic', + 'MailFrom' => 'De: ', + 'MailTo' => 'A: ', + 'MailSubject' => 'Tema: ', + 'MailSmtpError' => 'Problema de connexió amb el servidor SMTP', + 'MailSendmailError' => 'Problema executant sendmail', + + 'SearchTooltip' => 'Cerca a tots els elements', # Accepts model codes + 'SearchTitle' => 'Cerca elements', # Accepts model codes + 'SearchNoField' => 'No heu seleccionat cap camp a la finestra de cerca. +Afegiu-ne alguns a la pestanya de filtres de la configuració de col·lecció.', + + 'QueryReplaceField' => 'Camp per canviar', + 'QueryReplaceOld' => 'Nom actual', + 'QueryReplaceNew' => 'Nom nou', + 'QueryReplaceLaunch' => 'Canvia', + + 'ImportWindowTitle' => 'Tria els camps que han d\'importar-se', + 'ImportViewPicture' => 'Mostra la imatge', + 'ImportSelectAll' => 'Selecciona-ho tot', + 'ImportSelectNone' => 'No seleccionis res', + + 'MultiSiteTitle' => 'Llocs on cercar', + 'MultiSiteUnused' => 'Connectors no utilitzats', + 'MultiSiteUsed' => 'Connectors a utilitzar', + 'MultiSiteLang' => 'Utilitza tots els connectors espanyols', + 'MultiSiteEmptyError' => 'La llista de llocs està buida', + 'MultiSiteClear' => 'Buida la llista', + + 'DisplayOptionsTitle' => 'Elements a mostrar', + 'DisplayOptionsAll' => 'Selecciona-ho tot', + 'DisplayOptionsSearch' => 'Cerca', + + 'GenresTitle' => 'Conversió de gèneres', + 'GenresCategoryName' => 'Gènere a utilitzar', + 'GenresCategoryMembers' => 'Gèneres a canviar', + 'GenresLoad' => 'Carrega una llista predefinida', + 'GenresExport' => 'Desa la llista a un fitxer', + 'GenresModify' => 'Edita la conversió', + + 'PropertiesName' => 'Nom de la col·lecció', + 'PropertiesLang' => 'Codi d\'idioma', + 'PropertiesOwner' => 'Propietari', + 'PropertiesEmail' => 'Correu electrònic', + 'PropertiesDescription' => 'Descripció', + 'PropertiesFile' => 'Informació del fitxer', + 'PropertiesFilePath' => 'Cami complet', + 'PropertiesItemsNumber' => 'Nombre d\'elements', # Accepts model codes + 'PropertiesFileSize' => 'Mida', + 'PropertiesFileSizeSymbols' => ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'], + 'PropertiesCollection' => 'Propietats de la col·lecció', + 'PropertiesDefaultPicture' => 'Imatge per omissió', + + 'MailProgramsTitle' => 'Programes per enviar correu', + 'MailProgramsName' => 'Nom', + 'MailProgramsCommand' => 'Línia d\'ordres', + 'MailProgramsRestore' => 'Restaura els valors per defecte', + 'MailProgramsAdd' => 'Afegeix un programa', + 'MailProgramsInstructions' => 'A la línia d\'ordres, es fan algunes substitucions: + %f es substituirà pel correu electrònic de l\'usuari. + %t es substituirà per l\'adreça. + %s es substituirà pel subjecte del missatge. + %b es substituirà pel cos del missatge.', + + 'BookmarksBookmarks' => 'Marques', + 'BookmarksFolder' => 'Directoris', + 'BookmarksLabel' => 'Etiqueta', + 'BookmarksPath' => 'Camí', + 'BookmarksNewFolder' => 'Nova carpeta', + + 'AdvancedSearchType' => 'Tipus de cerca', + 'AdvancedSearchTypeAnd' => 'Elements que compleixen amb tots els criteris', # Accepts model codes + 'AdvancedSearchTypeOr' => 'Elements que compleixen al menys amb un criteri', # Accepts model codes + 'AdvancedSearchCriteria' => 'Criteri', + 'AdvancedSearchAnyField' => 'Any field', + 'AdvancedSearchSaveTitle' => 'Desa la cerca', + 'AdvancedSearchSaveName' => 'Nom', + 'AdvancedSearchSaveOverwrite' => 'Ja existeix una cerca desada amb aquest nom. Trieu-ne un altre.', + 'AdvancedSearchUseCase' => 'Sensible a les majúscules', + 'AdvancedSearchIgnoreDiacritics' => 'Ignora els accents', + + 'BugReportSubject' => 'Informe d\'error generat per GCstar', + 'BugReportVersion' => 'Versió', + 'BugReportPlatform' => 'Sistema Operatiu', + 'BugReportMessage' => 'Missatge d\'error', + 'BugReportInformation' => 'Informació adicional', + +#Statistics + 'Stats3DPie' => 'Pastís 3D', + 'StatsAccumulate' => 'Acumula valors', + 'StatsArea' => 'Àrees', + 'StatsBars' => 'Barres', + 'StatsDisplayNumber' => 'Mostra nombres', + 'StatsFieldToUse' => 'Camp a utilitzar', + 'StatsFontSize' => 'Mida de la font', + 'StatsGenerate' => 'Genera', + 'StatsHeight' => 'Alçada', + 'StatsHistory' => 'Història', + 'StatsKindOfGraph' => 'Tipus de gràfica', + 'StatsPie' => 'Pastís', + 'StatsSave' => 'Desa la imatge de les estadístiques a un fitxer', + 'StatsShowAllDates' => 'Mostra totes les dates', + 'StatsSortByNumber' => 'Ordena pel nombre de {lowercaseX}', + 'StatsWidth' => 'Amplada', + + 'DefaultValuesTip' => 'Values set in this window will be used as the default values when creating a new {lowercase1}', + ); +} +1; -- cgit v1.2.3