summaryrefslogtreecommitdiff
path: root/lib/gcstar/GCLang/PT
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gcstar/GCLang/PT')
-rw-r--r--lib/gcstar/GCLang/PT/GCExport/GCExportCSV.pm40
-rw-r--r--lib/gcstar/GCLang/PT/GCExport/GCExportExternal.pm38
-rw-r--r--lib/gcstar/GCLang/PT/GCExport/GCExportHTML.pm64
-rw-r--r--lib/gcstar/GCLang/PT/GCExport/GCExportPDB.pm38
-rw-r--r--lib/gcstar/GCLang/PT/GCExport/GCExportSQL.pm40
-rw-r--r--lib/gcstar/GCLang/PT/GCExport/GCExportTarGz.pm37
-rw-r--r--lib/gcstar/GCLang/PT/GCExport/GCExportXML.pm41
-rw-r--r--lib/gcstar/GCLang/PT/GCImport/GCImportAlexandria.pm39
-rw-r--r--lib/gcstar/GCLang/PT/GCImport/GCImportCSV.pm42
-rw-r--r--lib/gcstar/GCLang/PT/GCImport/GCImportFolder.pm68
-rw-r--r--lib/gcstar/GCLang/PT/GCImport/GCImportGCstar.pm37
-rw-r--r--lib/gcstar/GCLang/PT/GCImport/GCImportList.pm42
-rw-r--r--lib/gcstar/GCLang/PT/GCImport/GCImportScanner.pm50
-rw-r--r--lib/gcstar/GCLang/PT/GCImport/GCImportTellico.pm37
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCTVepisodes.pm46
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCTVseries.pm50
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCboardgames.pm86
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCbooks.pm68
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCcoins.pm102
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCcomics.pm73
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCfilms.pm92
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCgames.pm80
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCgeneric.pm42
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCminicars.pm182
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCmusics.pm66
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCperiodicals.pm52
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCsmartcards.pm108
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCsoftware.pm84
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCstamps.pm189
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCwines.pm65
-rw-r--r--lib/gcstar/GCLang/PT/GCstar.pm673
31 files changed, 2671 insertions, 0 deletions
diff --git a/lib/gcstar/GCLang/PT/GCExport/GCExportCSV.pm b/lib/gcstar/GCLang/PT/GCExport/GCExportCSV.pm
new file mode 100644
index 0000000..baa74c3
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCExport/GCExportCSV.pm
@@ -0,0 +1,40 @@
+{
+ package GCLang::PT::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' => 'Incluir nomes de campo no topo',
+ 'Separator' => 'Separador',
+ 'Replacement' => 'Substitua o separador por',
+ 'Charset' => 'Charset',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCExport/GCExportExternal.pm b/lib/gcstar/GCLang/PT/GCExport/GCExportExternal.pm
new file mode 100644
index 0000000..beaa61d
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCExport/GCExportExternal.pm
@@ -0,0 +1,38 @@
+{
+ package GCLang::PT::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/PT/GCExport/GCExportHTML.pm b/lib/gcstar/GCLang/PT/GCExport/GCExportHTML.pm
new file mode 100644
index 0000000..3664f14
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCExport/GCExportHTML.pm
@@ -0,0 +1,64 @@
+{
+ package GCLang::PT::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' => 'Invalid template file',
+ 'UseFile' => 'Use file specified below',
+ 'TemplateExternalFile' => 'Template file',
+ 'WithJS' => 'Usar Javascript',
+ 'FileTemplate' => 'Modelo:',
+ 'Preview' => 'Prévia',
+ 'NoPreview' => 'Nenhuma prévia disponível',
+ 'Title' => 'Título da página',
+ 'InfoFile' => 'Arquivo de lista de filmes: ',
+ 'InfoDir' => 'Pasta de imagens: ',
+ 'HeightImg' => 'Altura (em pixels) da imagem exportada: ',
+ 'OpenFileInBrowser' => 'Abrir arquivo gerado no navegador',
+ 'Note' => 'Lista generada por <a href="http://www.gcstar.org/">GCstar</a>',
+ 'InputTitle' => 'Introduza texto de busca',
+ 'SearchType1' => 'Apenas título',
+ 'SearchType2' => 'Toda informação',
+ 'SearchButton' => 'Procurar',
+ 'SearchTitle' => 'Mostrar apenas filmes coincidentes com o critérios anteriores',
+ 'AllButton' => 'Todos',
+ 'AllTitle' => 'Mostrar todos os filmes',
+ 'Expand' => 'Expandir tudo',
+ 'ExpandTitle' => 'Motrar informação de todos os filmes',
+ 'Collapse' => 'Contrair tudo',
+ 'CollapseTitle' => 'Ocultar a informação de todos os filmes',
+ 'Borrowed' => 'Emprestado por: ',
+ 'NotBorrowed' => 'Disponível',
+ 'Top' => 'Topo',
+ 'Bottom' => 'Bottom',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCExport/GCExportPDB.pm b/lib/gcstar/GCLang/PT/GCExport/GCExportPDB.pm
new file mode 100644
index 0000000..b77aba3
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCExport/GCExportPDB.pm
@@ -0,0 +1,38 @@
+{
+ package GCLang::PT::GCExport::GCExportPDB;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Name' => 'Palm PDB',
+ 'DatabaseName' => 'Database name',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCExport/GCExportSQL.pm b/lib/gcstar/GCLang/PT/GCExport/GCExportSQL.pm
new file mode 100644
index 0000000..615cde3
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCExport/GCExportSQL.pm
@@ -0,0 +1,40 @@
+{
+ package GCLang::PT::GCExport::GCExportSQL;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'WithDrop' => 'Incluir uma instrução DROP',
+ 'WithCreate' => 'Incluir uma instrução CREATE',
+ 'TableName' => 'Nome da tabela',
+ 'InfoFile' => 'Arquivo SQL: ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCExport/GCExportTarGz.pm b/lib/gcstar/GCLang/PT/GCExport/GCExportTarGz.pm
new file mode 100644
index 0000000..2743c46
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCExport/GCExportTarGz.pm
@@ -0,0 +1,37 @@
+{
+ package GCLang::PT::GCExport::GCExportTarGz;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Info' => 'O arquivo .tar.gz se encontra em: ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCExport/GCExportXML.pm b/lib/gcstar/GCLang/PT/GCExport/GCExportXML.pm
new file mode 100644
index 0000000..0d5493b
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCExport/GCExportXML.pm
@@ -0,0 +1,41 @@
+{
+ package GCLang::PT::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' => 'Modelo do arquivo',
+ 'ModelText' => 'Modelo do texto',
+ 'Models' => 'Usar modelo: ',
+ 'UseFile' => 'Usar arquivo',
+ 'UseModel' => 'Usar área de texto',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCImport/GCImportAlexandria.pm b/lib/gcstar/GCLang/PT/GCImport/GCImportAlexandria.pm
new file mode 100644
index 0000000..8db0227
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCImport/GCImportAlexandria.pm
@@ -0,0 +1,39 @@
+{
+ package GCLang::PT::GCImport::GCImportAlexandria;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Where' => 'Onde deve-se efetuar a busca',
+ 'Default' => 'Diretório padrão do Alexandria',
+ 'Specified' => 'Diretório especificado abaixo',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCImport/GCImportCSV.pm b/lib/gcstar/GCLang/PT/GCImport/GCImportCSV.pm
new file mode 100644
index 0000000..8620e98
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCImport/GCImportCSV.pm
@@ -0,0 +1,42 @@
+{
+ package GCLang::PT::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' => 'Charset',
+ 'Header' => 'Ignorar primeira linha',
+ 'Separator' => 'Separador',
+ 'Plugin' => 'Utilizar o site',
+ 'UseFirst' => 'Selecionar o primeiro se houver muitos resultados',
+ 'SearchField' => 'Search for items using',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCImport/GCImportFolder.pm b/lib/gcstar/GCLang/PT/GCImport/GCImportFolder.pm
new file mode 100644
index 0000000..8924a5b
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCImport/GCImportFolder.pm
@@ -0,0 +1,68 @@
+{
+ package GCLang::PT::GCImport::GCImportFolder;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+ use GCLang::GCLangUtils;
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Name' => 'Folder',
+ 'Recursive' => 'Browse sub-folders',
+ 'Suffixes' => 'Suffixes or extensions of the files',
+ 'SuffixesTooltip' => 'A comma-separated list of suffixes or extensions of files to consider',
+ 'Remove' => 'To be removed from names',
+ 'RemoveTooltip' => 'A comma-seperated list of words that should be removed from file names to create the fetched names',
+ 'Ask'=> 'Ask',
+ 'AskEnd'=> 'Ask all at end',
+ 'AddWithoutInfo'=> 'Add without infos',
+ 'DontAdd'=> 'Do not add',
+ 'TakeFirst' => 'Select first',
+ 'MultipleResult'=> 'Multiple results',
+ 'MultipleResultTooltip'=> 'What do we do when more than 1 result is return by the plugin',
+ 'RemoveWholeWord' => 'Remove only whole words',
+ 'NoResult'=> 'No results',
+ 'NoResultTooltip'=> 'What do we do when no search results is return by the plugin',
+ 'RemoveTooltipWholeWord' => 'Words will be removed only if they appear as an entire word',
+ 'RemoveRegularExpr' => 'Regular expression',
+ 'RemoveTooltipRegularExpr' => 'Consider that \'To be removed from names\' is a perl regular expression',
+ 'SkipFileAlreadyInCollection' => 'Add new files only',
+ 'SkipFileAlreadyInCollectionTooltip' => 'Add only files not already in the collection',
+ 'SkipFileNo' => 'No',
+ 'SkipFileFullPath' => 'based on full path',
+ 'SkipFileFileName' => 'based on file name',
+ 'SkipFileFileNameAndUpdate' => 'based on file name (but update path in collection)',
+ 'InfoFromFileNameRegExp' => 'Parse file name with this regular expression',
+ 'InfoFromFileNameRegExpTooltip' => 'Use this to retrieve infos from filename (applied after removing extension).\nLeave empty if not needed.\nKnown fields : \n$T:Title, $A:Alphabetised title, $Y:Release date, $S:Season, $E:Episode, $N:Alphabetised serie name, $x:Part number, $y: Total part number',
+
+ );
+
+ # As this plugin shares some values with ImportList, it adds them from it
+ importTranslation('List');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCImport/GCImportGCstar.pm b/lib/gcstar/GCLang/PT/GCImport/GCImportGCstar.pm
new file mode 100644
index 0000000..c472253
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCImport/GCImportGCstar.pm
@@ -0,0 +1,37 @@
+{
+ package GCLang::PT::GCImport::GCImportGCstar;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'CopyPictures' => 'Copiar imagens',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCImport/GCImportList.pm b/lib/gcstar/GCLang/PT/GCImport/GCImportList.pm
new file mode 100644
index 0000000..d0c28c1
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCImport/GCImportList.pm
@@ -0,0 +1,42 @@
+{
+ package GCLang::PT::GCImport::GCImportList;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'Name' => 'Lista de títulos',
+ 'Plugin' => 'Utilizar o site',
+ 'UseFirst' => 'Selecionar o primeiro se houver muitos resultados',
+ 'CommentAuto' => 'Item importado automaticamente.',
+ 'CommentSite' => 'Website: ',
+ 'CommentTitle' => 'Título: ',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCImport/GCImportScanner.pm b/lib/gcstar/GCLang/PT/GCImport/GCImportScanner.pm
new file mode 100644
index 0000000..2eb7aba
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCImport/GCImportScanner.pm
@@ -0,0 +1,50 @@
+{
+ package GCLang::PT::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/PT/GCImport/GCImportTellico.pm b/lib/gcstar/GCLang/PT/GCImport/GCImportTellico.pm
new file mode 100644
index 0000000..5b5c67e
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCImport/GCImportTellico.pm
@@ -0,0 +1,37 @@
+{
+ package GCLang::PT::GCImport::GCImportTellico;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+ 'NotSupported' => 'O arquivo não é uma coleção Tellico válida',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCModels/GCTVepisodes.pm b/lib/gcstar/GCLang/PT/GCModels/GCTVepisodes.pm
new file mode 100644
index 0000000..beaa947
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCTVepisodes.pm
@@ -0,0 +1,46 @@
+{
+ package GCLang::PT::GCModels::GCTVepisodes;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use GCLang::GCLangUtils;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'TV Shows (episodes) collection',
+ Items => 'Episodes',
+ NewItem => 'New episode',
+ NewSeries => 'New series',
+ Episode => 'Episode',
+ );
+ # Both of them are required as importTranslation doesn't recurse
+ importTranslation('films');
+ importTranslation('TVseries');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCModels/GCTVseries.pm b/lib/gcstar/GCLang/PT/GCModels/GCTVseries.pm
new file mode 100644
index 0000000..31f5e57
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCTVseries.pm
@@ -0,0 +1,50 @@
+{
+ package GCLang::PT::GCModels::GCTVseries;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use GCLang::GCLangUtils;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'TV Shows (series) collection',
+ Items => 'Series',
+ NewItem => 'New series',
+ Name => 'Name',
+ Season => 'Season',
+ Part => 'Part',
+ Episodes => 'Episodes',
+ FirstAired => 'First Aired',
+ Time => 'Ep. Length',
+ Producer => 'Producer',
+ Music => 'Music',
+ );
+ importTranslation('Films');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCModels/GCboardgames.pm b/lib/gcstar/GCLang/PT/GCModels/GCboardgames.pm
new file mode 100644
index 0000000..e488fb9
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCboardgames.pm
@@ -0,0 +1,86 @@
+{
+ package GCLang::PT::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/PT/GCModels/GCbooks.pm b/lib/gcstar/GCLang/PT/GCModels/GCbooks.pm
new file mode 100644
index 0000000..caedcae
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCbooks.pm
@@ -0,0 +1,68 @@
+{
+ package GCLang::PT::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 => 'Coleção de livros',
+ Items => 'Livros',
+ NewItem => 'Novo livro',
+
+ Isbn => 'ISBN',
+ Title => 'Título',
+ Cover => 'Capa',
+ Authors => 'Autores',
+ Publisher => 'Editora',
+ Publication => 'Data de publicação',
+ Language => 'Língua',
+ Genre => 'Gênero',
+ Serie => 'Série',
+ Rank => 'Ranking',
+ Bookdescription => 'Descrição',
+ Pages => 'Páginas',
+ Read => 'Lido',
+ Acquisition => 'Data de aquisição',
+ Edition => 'Edição',
+ Format => 'Formato',
+ Comments => 'Comentários',
+ Url => 'Página da web',
+ Translator => 'Tradutor',
+ Artist => 'Artista',
+ DigitalFile => 'Digital version',
+
+ General => 'Geral',
+ Details => 'Detalhes',
+
+ ReadNo => 'Não lido',
+ ReadYes => 'Lido',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCModels/GCcoins.pm b/lib/gcstar/GCLang/PT/GCModels/GCcoins.pm
new file mode 100644
index 0000000..bb6188a
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCcoins.pm
@@ -0,0 +1,102 @@
+{
+ package GCLang::PT::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 => 'Coleção numismatica',
+ Items => 'Moedas',
+ NewItem => 'Nova moeda',
+
+ Name => 'Nome',
+ Country => 'País',
+ Year => 'Ano',
+ Currency => 'Moeda corrente',
+ Value => 'Valor',
+ Picture => 'Figura principal',
+ Diameter => 'Diametro',
+ Metal => 'Metal',
+ Edge => 'Borda',
+ Edge1 => 'Borda 1',
+ Edge2 => 'Borda 2',
+ Edge3 => 'Borda 3',
+ Edge4 => 'Borda 4',
+ Head => 'Cara',
+ Tail => 'Coroa',
+ Comments => 'Comentários',
+ History => 'História',
+ Website => 'Página da web',
+ Estimate => 'Estimativa',
+ References => 'Referências',
+ Type => 'Tipo',
+ Coin => 'Moeda',
+ Banknote => 'Nota do banco',
+
+ Main => 'Principal',
+ Description => 'Descrição',
+ Other => 'Outras informações',
+ Pictures => 'Imagens',
+
+ Condition => 'Condição (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/PT/GCModels/GCcomics.pm b/lib/gcstar/GCLang/PT/GCModels/GCcomics.pm
new file mode 100644
index 0000000..f436260
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCcomics.pm
@@ -0,0 +1,73 @@
+{
+ package GCLang::PT::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/PT/GCModels/GCfilms.pm b/lib/gcstar/GCLang/PT/GCModels/GCfilms.pm
new file mode 100644
index 0000000..699434e
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCfilms.pm
@@ -0,0 +1,92 @@
+{
+ package GCLang::PT::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 => 'Coleção de filmes',
+ Items => 'Filmes',
+ NewItem => 'Novo filme',
+
+
+ Id => 'Id',
+ Title => 'Título',
+ Date => 'Data',
+ Time => 'Duração',
+ Director => 'Diretor',
+ Country => 'País',
+ MinimumAge => 'Censura',
+ Genre => 'Gênero',
+ Image => 'Imagem',
+ Original => 'Título original',
+ Actors => 'Elenco',
+ Actor => 'Actor',
+ Role => 'Role',
+ Comment => 'Comentários',
+ Synopsis => 'Sinopse',
+ Seen => 'Visto',
+ Number => 'N° da mídia',
+ Format => 'Formato',
+ Region => 'Region',
+ Identifier => 'Identifier',
+ Url => 'Página da Web',
+ Audio => 'Áudio',
+ Video => 'Formato do vídeo',
+ Trailer => 'Arquivo de vídeo',
+ Serie => 'Série',
+ Rank => 'Ranking',
+ Subtitles => 'Lengendas',
+
+ SeenYes => 'Visto',
+ SeenNo => 'Não visto',
+
+ AgeUnrated => 'Desconhecida',
+ AgeAll => 'Livre',
+ AgeParent => 'Controle dos pais',
+
+ Main => 'Itens principais',
+ General => 'Geral',
+ Details => 'Detalhes',
+ Lending => 'Empréstimo',
+
+ Information => 'Informação',
+ Languages => 'Línguas',
+ Encoding => 'Codificação',
+
+ FilterAudienceAge => 'Idade mínima',
+ FilterSeenNo => '_Não visto ainda',
+ FilterSeenYes => '_Já visto',
+ FilterRatingSelect => 'Nota _mínima...',
+
+ ExtractSize => 'Tamanho',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCModels/GCgames.pm b/lib/gcstar/GCLang/PT/GCModels/GCgames.pm
new file mode 100644
index 0000000..5f359e8
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCgames.pm
@@ -0,0 +1,80 @@
+{
+ package GCLang::PT::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 => 'Coleção de jogos',
+ Items => 'Jogos',
+ NewItem => 'Novo jogo',
+
+ Id => 'Id',
+ Ean => 'EAN',
+ Name => 'Nome',
+ Platform => 'Plataforma',
+ Players => 'Número de jogadores',
+ Released => 'Data de lançamento',
+ Editor => 'Editor',
+ Developer => 'Desenvolvedor',
+ Genre => 'Gênero',
+ Box => 'Imagem da capa',
+ Case => 'Capa',
+ Manual => 'Manual de instruções',
+ Completion => 'Completado (%)',
+ Executable => 'Executable',
+ Description => 'Descrição',
+ Codes => 'Códigos',
+ Code => 'Código',
+ Effect => 'Efeito',
+ Secrets => 'Segredos',
+ Screenshots => 'Screenshots',
+ Screenshot1 => 'Primeiro screenshot',
+ Screenshot2 => 'Segundo screenshot',
+ Comments => 'Comentários',
+ Url => 'Página da web',
+ Unlockables => 'Desbloqueados',
+ Unlockable => 'Desbloqueado',
+ Howto => 'Como desbloquear',
+ Exclusive => 'Exclusive',
+ Resolutions => 'Display resolutions',
+ InstallationSize => 'Size',
+ Region => 'Region',
+ SerialNumber => 'Serial Number',
+
+ General => 'Geral',
+ Details => 'Detalhes',
+ Tips => 'Tipos',
+ Information => 'Informação',
+
+ FilterRatingSelect => 'Nota _mínima...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCModels/GCgeneric.pm b/lib/gcstar/GCLang/PT/GCModels/GCgeneric.pm
new file mode 100644
index 0000000..757f21f
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCgeneric.pm
@@ -0,0 +1,42 @@
+{
+ package GCLang::PT::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/PT/GCModels/GCminicars.pm b/lib/gcstar/GCLang/PT/GCModels/GCminicars.pm
new file mode 100644
index 0000000..07b9617
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCminicars.pm
@@ -0,0 +1,182 @@
+{
+ package GCLang::PT::GCModels::GCminicars;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2007 Tian
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Mini vehicles collection',
+ Items => {0 => 'Vehicle',
+ 1 => 'Vehicle',
+ X => 'Vehicles',
+ lowercase1 => 'vehicle',
+ lowercaseX => 'vehicles'
+ },
+ NewItem => 'New vehicle',
+ Currency => 'Currency',
+
+# Main fields
+
+ Main => 'Main information',
+
+ Name => 'Name',
+ Exchange => 'To be sold or exchanged',
+ Wanted => 'Wanted',
+ Rating1 => 'Main rating',
+ Picture1 => 'Main picture',
+ Scale => 'Scale',
+ Manufacturer => 'Manufacturer',
+ Constructor => 'Constructor',
+ Type1 => 'Type',
+ Modele => 'Model',
+ Version => 'Version',
+ Color => 'Model color',
+ Pub => 'Advertisement',
+ Year => 'Year',
+ Reference => 'Reference',
+ Kit => 'In kit form',
+ Transformation => 'Personal transformation',
+ Comments1 => 'Comments',
+
+# Details fields
+
+ Details => 'Details',
+
+ MiscCharacteristics => 'Miscellaneous characteristics',
+ Material => 'Material',
+ Molding => 'Molding',
+ Condition => 'Condition',
+ Edition => 'Edition',
+ Collectiontype => 'Collection name',
+ Serial => 'Series',
+ Serialnumber => 'Serial number',
+ Designed => 'Design date',
+ Madein => 'Manufacture date',
+ Box1 => 'Kind of box',
+ Box2 => 'Box description',
+ Containbox => 'Box contet',
+ Rating2 => 'Realism',
+ Rating3 => 'Finish',
+ Acquisition => 'Acquisition date',
+ Location => 'Acquisition place',
+ Buyprice => 'Acquisition price',
+ Estimate => 'Estimation',
+ Comments2 => 'Comments',
+ Decorationset => 'Decoration set',
+ Characters => 'Characters',
+ CarFromFilm => 'Movie car',
+ Filmcar => 'Movie related to the vehicle',
+ Filmpart => 'Movie part/episode',
+ Parts => 'Number of parts',
+ VehiculeDetails => 'Vehicule details',
+ Detailsparts => 'Details parts',
+ Detailsdecorations => 'Kind of decorations',
+ Decorations => 'Number of decorations',
+ Lwh => 'Length / Width / Height',
+ Weight => 'Weight',
+ Framecar => 'Chassis',
+ Bodycar => 'Bodywork',
+ Colormirror => 'Model color',
+ Interior => 'Interior',
+ Wheels => 'Wheels',
+ Registrationnumber1 => 'Front registration number',
+ Registrationnumber2 => 'Back registration number',
+ RacingCar => 'Racing car',
+ Course => 'Race',
+ Courselocation => 'Race place',
+ Courseyear => 'Race date',
+ Team => 'Team',
+ Pilots => 'Pilot(s)',
+ Copilots => 'Copilot(s)',
+ Carnumber => 'Vehicle number',
+ Pub2 => 'Advertisers',
+ Finishline => 'Finish ranking',
+ Steeringwheel => 'Position of steering wheel',
+
+
+# Catalogs fields
+
+ Catalogs => 'Catalogs',
+
+ OfficialPicture => 'Official picture',
+ Barcode => 'Barcode',
+ Referencemirror => 'Reference',
+ Year3 => 'Availability date',
+ CatalogCoverPicture => 'Cover',
+ CatalogPagePicture => 'Page',
+ Catalogyear => 'Catalog year',
+ Catalogedition => 'Catalog edition',
+ Catalogpage => 'Catalog page',
+ Catalogprice => 'Catalog price',
+ Personalref => 'Personal reference',
+ Websitem => 'Mini vehicle\'s manufacturer website',
+ Websitec => 'Actual vehicle\'s manufacturer website',
+ Websiteo => 'Useful link',
+ Comments3 => 'Comments',
+
+# Pictures fields
+
+ Pictures => 'Pictures',
+
+ OthersComments => 'General remarks',
+ OthersDetails => 'Other details',
+ Top1 => 'Above',
+ Back1 => 'Below',
+ AVG => 'Front Left',
+ AV => 'Front',
+ AVD => 'Front Right',
+ G => 'Left',
+ BOX => 'Box',
+ D => 'Right',
+ ARG => 'Back Left',
+ AR => 'Back',
+ ARD => 'Back Right',
+ Others => 'Misc',
+
+# PanelLending fields
+
+ LendingExplanation => 'Useful exchanges during temporary exhibitions',
+ PanelLending => 'Lendings (for exhibitions)',
+ Comments4 => 'Comments',
+
+# Realmodel fields
+
+ Realmodel => 'Actual vehicle',
+
+ Difference => 'Differences with miniature',
+ Front2 => 'Front',
+ Back2 => 'Back',
+ Comments5 => 'Comments',
+
+ References => 'References',
+
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCModels/GCmusics.pm b/lib/gcstar/GCLang/PT/GCModels/GCmusics.pm
new file mode 100644
index 0000000..309582e
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCmusics.pm
@@ -0,0 +1,66 @@
+{
+ package GCLang::PT::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 => 'Coleção de músicas',
+ Items => 'Albuns',
+ NewItem => 'Novo album',
+
+ Unique => 'ISRC/EAN',
+ Title => 'Título',
+ Cover => 'Capa',
+ Artist => 'Artista',
+ Format => 'Formato',
+ Running => 'Tempo de execução',
+ Release => 'Data de lançamento',
+ Genre => 'Gênero',
+ Origin => 'Origin',
+
+#For tracks list
+ Tracks => 'Faixas',
+ Number => 'Número',
+ Track => 'Título',
+ Time => 'Tempo',
+
+ Composer => 'Compositor',
+ Producer => 'Produtor',
+ Playlist => 'Lista de reprodução',
+ Comments => 'Comentários',
+ Label => 'Nome',
+ Url => 'Página da web',
+
+ General => 'Geral',
+ Details => 'Detalhes',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCModels/GCperiodicals.pm b/lib/gcstar/GCLang/PT/GCModels/GCperiodicals.pm
new file mode 100644
index 0000000..2386b93
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCperiodicals.pm
@@ -0,0 +1,52 @@
+{
+ package GCLang::PT::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/PT/GCModels/GCsmartcards.pm b/lib/gcstar/GCLang/PT/GCModels/GCsmartcards.pm
new file mode 100644
index 0000000..1fa815f
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCsmartcards.pm
@@ -0,0 +1,108 @@
+{
+ package GCLang::PT::GCModels::GCsmartcards;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Tian
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Smart card collection',
+ Items => {0 => 'Smart card',
+ 1 => 'Smart card',
+ X => 'Smart cards'},
+ NewItem => 'New smart card',
+ Currency => 'Currency',
+
+ Help => 'Help for fields',
+ Help1 => 'Help',
+
+# Traduction des Champs "Main"
+
+ Main => 'The smart card',
+
+ Cover => 'Picture',
+
+ Name => 'Name',
+ Exchange => 'To be exchanged or sold',
+ Wanted => 'Wanted',
+ Rating1 => 'Global rating',
+ TheSmartCard => 'The smart card, front/back',
+
+ Country => 'Country',
+ Color => 'Color',
+ Type1 => 'Card type',
+ Type2 => 'Chip type',
+ Dimension => 'Length / Width / Thickness',
+
+ Box => 'Box',
+ Chip => 'Chip',
+ Year1 => 'Edition year',
+ Year2 => 'Validity year',
+ Condition => 'Condition',
+ Charge => 'Rechargeable card',
+ Variety => 'Variety',
+
+ Edition => 'Number of exemplars',
+ Serial => 'Serial number',
+ Theme => 'Theme',
+
+ Acquisition => 'Acquired on',
+
+ Catalog0 => 'Catalog',
+ Catalog1 => 'Phonecote / Infopuce (YT)',
+ Catalog2 => 'La Cote en Poche',
+
+ Reference0 => 'Reference',
+ Reference1 => 'Reference Phonecote / Infopuce (YT)',
+ Reference2 => 'Reference La Cote en Poche',
+ Reference3 => 'Other reference',
+
+ Quotationnew00 => 'Quotation for new card',
+ Quotationnew10 => 'Quotation Phonecote / Infopuce (YT)',
+ Quotationnew20 => 'Quotation La Cote en Poche',
+ Quotationnew30 => 'Cotation Autre',
+ Quotationold00 => 'Quotation for used card',
+ Quotationold10 => 'Quotation Phonecote / Infopuce (YT)',
+ Quotationold20 => 'Quotation La Cote en Poche',
+ Quotationold30 => 'Other quotation',
+
+ Title1 => 'Title',
+
+ Unit => 'Units / Minutes number',
+
+ Pressed => 'Impression type',
+ Location => 'Impression place',
+
+ Comments1 => 'Comments',
+
+ Others => 'Misc.',
+ Weight => 'Weight',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCModels/GCsoftware.pm b/lib/gcstar/GCLang/PT/GCModels/GCsoftware.pm
new file mode 100644
index 0000000..9067f04
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCsoftware.pm
@@ -0,0 +1,84 @@
+{
+ package GCLang::PT::GCModels::GCsoftware;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2009 Tian
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Computer software collection',
+ Items => {0 => 'Application',
+ 1 => 'Application',
+ X => 'Applications',
+ lowercase1 => 'application',
+ lowercaseX => 'applications'},
+ NewItem => 'New application',
+
+ Id => 'Id',
+ Ean => 'EAN',
+ Name => 'Name',
+ Platform => 'Platform',
+ Released => 'Release date',
+ Homepage => 'Homepage',
+ Editor => 'Editor',
+ Developer => 'Developer',
+ Category => 'Category',
+ NumberOfCopies => 'Copies',
+ Price => 'Price',
+ Box => 'Box picture',
+ Case => 'Case',
+ Manual => 'Instruction manual',
+ Executable => 'Executable',
+ Description => 'Description',
+ License => 'License',
+ Commercial => 'Commercial',
+ FreewareNoncommercial => 'Freeware (non-commercial use)',
+ OtherOpenSource => 'Other Open Source',
+ PublicDomain => 'Public Domain',
+ OtherLicense => 'Other',
+ Registration => 'Registration',
+ RegistrationInfo => 'Registration Info',
+ RegInfo => 'Registration Info',
+ RegistrationName => 'Username',
+ RegistrationNumber => 'Registration Number',
+ PanelRegistration => 'Registration Info',
+ RegistrationComments => 'Additional info or comments',
+ Screenshots => 'Screenshots',
+ Screenshot1 => 'First screenshot',
+ Screenshot2 => 'Second screenshot',
+ Comments => 'Comments',
+ Url => 'Web page',
+ General => 'General',
+ Details => 'Details',
+ Information => 'Information',
+
+ FilterRatingSelect => 'Rating At _Least...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCModels/GCstamps.pm b/lib/gcstar/GCLang/PT/GCModels/GCstamps.pm
new file mode 100644
index 0000000..79c8da4
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCstamps.pm
@@ -0,0 +1,189 @@
+{
+ package GCLang::PT::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/PT/GCModels/GCwines.pm b/lib/gcstar/GCLang/PT/GCModels/GCwines.pm
new file mode 100644
index 0000000..a60fe81
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCwines.pm
@@ -0,0 +1,65 @@
+{
+ package GCLang::PT::GCModels::GCwines;
+
+ use utf8;
+
+# Copyright 2007 Yves Martin
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Wines collection',
+ Items => {0 => 'Wine',
+ 1 => 'Wine',
+ X => 'Wines'},
+ NewItem => 'New wine',
+
+ Name => 'Name',
+ Designation => 'Designation',
+ Vintage => 'Vintage',
+ Vineyard => 'Vineyard',
+ Type => 'Type',
+ Grapes => 'Grapes',
+ Soil => 'Soil',
+ Producer => 'Producer',
+ Country => 'Country',
+ Volume => 'Volume (ml)',
+ Alcohol => 'Alcohol (%)',
+ Medal => 'Medal/Honour',
+
+ Storage => 'Storage',
+ Location => 'Location',
+ ShelfIndex => 'Index',
+ Quantity => 'Quantity',
+ Acquisition => 'Acquisition',
+ PurchaseDate => 'Purchase date',
+ PurchasePrice => 'Purchase price',
+ Gift => 'Gift',
+ BottleLabel => 'Bottle label',
+ Website => 'Reference on the web',
+
+ Tasted => 'Tasted',
+ Comments => 'Comments',
+ Serving => 'Serving',
+ TastingField => 'Testing notes',
+
+ General => 'General',
+ Details => 'Details',
+ Tasting => 'Tasting',
+
+ TastedNo => 'Non tasted',
+ TastedYes => 'Tasted',
+
+ FilterRange => 'Range',
+ FilterTastedNo => '_Not yet tasted',
+ FilterTastedYes => 'Already _tasted',
+ FilterRatingSelect => 'Rating at _least...'
+
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/PT/GCstar.pm b/lib/gcstar/GCLang/PT/GCstar.pm
new file mode 100644
index 0000000..0a5ec94
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCstar.pm
@@ -0,0 +1,673 @@
+{
+ package GCLang::PT;
+
+ 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' => 'Português',
+
+ 'Separator' => ': ',
+
+ 'Warning' => '<b>Aviso</b>:
+
+A informação baixada de sites da internet (através
+dos plugins de busca) é para <b>uso pessoal apenas</b>.
+
+Qualquer redistribuição é proibida <b>permissão explicita</b>
+do site.
+
+Para escolher em qual site deseja buscar a informação, você
+pode usar o <b>botão abaixo dos detalhes do item</b>.',
+
+ 'AllItemsFiltered' => 'Nenhum item cumpre com os critérios do filtro', # Accepts model codes
+
+#Installation
+ 'InstallDirInfo' => 'Instalar em ',
+ 'InstallMandatory' => 'Componente obrigatórios',
+ 'InstallOptional' => 'Componentes opcionais',
+ 'InstallErrorMissing' => 'Error: os componentes seguintes devem ser instalados: ',
+ 'InstallPrompt' => 'Pasta predeterminado para a instalação [/usr/local]: ',
+ 'InstallEnd' => 'Fim da instalação',
+ 'InstallNoError' => 'Nenhum erro',
+ 'InstallLaunch' => 'Para utilizar a aplicação, execute ',
+ 'InstallDirectory' => 'Pasta de instalação',
+ 'InstallTitle' => 'Instalação do GCstar',
+ 'InstallDependencies' => 'Dependências',
+ 'InstallPath' => 'Caminho',
+ 'InstallOptions' => 'Opções',
+ 'InstallSelectDirectory' => 'Escolha a pasta para instalação',
+ 'InstallWithClean' => 'Apagar arquivos das pastas de instalação.',
+ 'InstallWithMenu' => 'Adicionar GCstar ao menu de Aplicações',
+ 'InstallNoPermission' => 'Error : Você não tem permissões para instalar na pasta selecionada',
+ 'InstallMissingMandatory' => 'Algumas dependências obrigatórias não estão disponíveis. Não poderá instalar GCstar até que se instalem no sistema.',
+ 'InstallMissingOptional' => 'Algumas dependências opcionais não estão disponíveis (lista abaixo). GCstar será instalado com algumas funções desabilitadas.',
+ 'InstallMissingNone' => 'Dependências satisfeitas. Pode continuar e instalar GCstar.',
+ 'InstallOK' => 'OK',
+ 'InstallMissing' => 'Não disponível',
+ 'InstallMissingFor' => 'Não disponível por',
+ 'InstallCleanDirectory' => 'Apagar arquivos de GCstar na pasta: ',
+ 'InstallCopyDirectory' => 'Copiando arquivos na pasta: ',
+ 'InstallCopyDesktop' => 'Copiando os arquivos da área de trabalho em: ',
+
+#Update
+ 'UpdateUseProxy' => 'Usar o Proxy (se não usa nenhum pressione Enter): ',
+ 'UpdateNoPermission' => 'Permissão de escrita negada para esta pasta: ',
+ 'UpdateNone' => 'Nenhuma atualização encontrada',
+ 'UpdateFileNotFound' => 'Arquivo não encontrado',
+
+#Splash
+ 'SplashInit' => 'Inicialização',
+ 'SplashLoad' => 'Carregando coleção',
+ 'SplashDisplay' => 'Mostrando Coleção',
+ 'SplashSort' => 'Sorting Collection',
+ 'SplashDone' => 'Pronto',
+
+#Import from GCfilms
+ 'GCfilmsImportQuestion' => 'Parece que você usava GCfilms antes. Quer importar do GCfilms para o GCstar? (Não afetará o GCfilms, se você quiser seguir usando-o)',
+ 'GCfilmsImportOptions' => 'Preferências',
+ 'GCfilmsImportData' => 'Lista de filmes',
+
+#Menus
+ 'MenuFile' => '_Arquivo',
+ 'MenuNewList' => '_Nova coleção',
+ 'MenuStats' => 'Statistics',
+ 'MenuHistory' => 'Coleções _recentes',
+ 'MenuLend' => '_Ver itens emprestados', # Accepts model codes
+ 'MenuImport' => '_Importar',
+ 'MenuExport' => '_Exportar',
+ 'MenuAddItem' => '_Add Items', # Accepts model codes
+
+ 'MenuEdit' => '_Editar',
+ 'MenuDuplicate' => '_Duplicar item', # Accepts model codes
+ 'MenuDuplicatePlural' => 'Du_plicate Items', # Accepts model codes
+ 'MenuEditSelectAllItems' => 'Select _All Items', # Accepts model codes
+ 'MenuEditDeleteCurrent' => '_Apagar item', # Accepts model codes
+ 'MenuEditDeleteCurrentPlural' => '_Remove Items', # Accepts model codes
+ 'MenuEditFields' => '_Trocar campos da coleção',
+ 'MenuEditLockItems' => '_Bloquear coleção',
+
+ 'MenuDisplay' => '_Filtros',
+ 'MenuSavedSearches' => 'Saved searches',
+ 'MenuSavedSearchesSave' => 'Save current search',
+ 'MenuSavedSearchesEdit' => 'Modify saved searches',
+ 'MenuAdvancedSearch' => 'Busca _avançada',
+ 'MenuViewAllItems' => '_Ver todos os itens', # Accepts model codes
+ 'MenuNoFilter' => '_Todos',
+
+ 'MenuConfiguration' => '_Configurações',
+ 'MenuDisplayMenu' => 'Display',
+ 'MenuDisplayFullScreen' => 'Full screen',
+ 'MenuDisplayMenuBar' => 'Menus',
+ 'MenuDisplayToolBar' => 'Toolbar',
+ 'MenuDisplayStatusBar' => 'Bottom bar',
+ 'MenuDisplayOptions' => '_Informações exibidas',
+ 'MenuBorrowers' => '_Devedores',
+ 'MenuToolbarConfiguration' => '_Toolbar controls',
+ 'MenuDefaultValues' => 'Default values for new item', # Accepts model codes
+ 'MenuGenresConversion' => 'Conversão de _gêneros',
+
+ 'MenuBookmarks' => 'Minhas _Coleções',
+ 'MenuBookmarksAdd' => '_Adicionar coleção atual',
+ 'MenuBookmarksEdit' => '_Editar coleções favoritas',
+
+ 'MenuHelp' => 'Aj_uda?',
+ 'MenuHelpContent' => '_Conteúdo?',
+ 'MenuAllPlugins' => 'Ver _plugins',
+ 'MenuBugReport' => '_Reportar um problema',
+ 'MenuAbout' => '_Sobre',
+
+ 'MenuNewWindow' => 'Mostrar item em uma nova janela', # Accepts model codes
+ 'MenuNewWindowPlural' => 'Show Items in _New Window', # Accepts model codes
+
+ 'ContextExpandAll' => 'Expandir tudo',
+ 'ContextCollapseAll' => 'Contrair todo',
+ 'ContextChooseImage' => 'Choose _Image',
+ 'ContextOpenWith' => 'Open Wit_h',
+ 'ContextImageEditor' => 'Image Editor',
+ 'ContextImgFront' => 'Front',
+ 'ContextImgBack' => 'Back',
+ 'ContextChooseFile' => 'Choose a File',
+ 'ContextChooseFolder' => 'Choose a Folder',
+
+ 'DialogEnterNumber' => 'Por favor, introduza um valor',
+
+ 'RemoveConfirm' => 'Tem certeza que quer apagar este item?', # Accepts model codes
+ 'RemoveConfirmPlural' => 'Do you really want to remove these items?', # Accepts model codes
+ 'DefaultNewItem' => 'Novo item', # Accepts model codes
+ 'NewItemTooltip' => 'Adicionar um novo item', # Accepts model codes
+ 'NoItemFound' => 'Nada foi encontrado. Deseja tentar a busca em outro site?',
+ 'OpenList' => 'Por favor, selecione uma coleção',
+ 'SaveList' => 'Selecione onde deseja salvar a coleção',
+ 'SaveListTooltip' => 'Salvar coleção atual',
+ 'SaveUnsavedChanges' => 'Existe mudanças na coleção atual. Deseja salvá-las',
+ 'SaveDontSave' => 'Não salvar',
+ 'PreferencesTooltip' => 'Selecionar preferências',
+ 'ViewTooltip' => 'Trocar o tipo de coleção',
+ 'PlayTooltip' => 'Reproduzir arquivo de vídeo associado ao item', # Accepts model codes
+ 'PlayFileNotFound' => 'File to launch was not found in this location:',
+ 'PlayRetry' => 'Retry',
+
+ 'StatusSave' => 'Salvando...',
+ 'StatusLoad' => 'Carregando...',
+ 'StatusSearch' => 'Busca em progresso...',
+ 'StatusGetInfo' => 'Baixando a informação...',
+ 'StatusGetImage' => 'Baixando imagem...',
+
+ 'SaveError' => 'Impossível salvar a coleção. Por favor, verifique as permissões de acesso e o espaço livre.',
+ 'OpenError' => 'Impossível abrir a coleção. Por favor, verifique as permissões de acesso.',
+ 'OpenFormatError' => 'Impossível abrir a coleção. O formato pode estar incorreto',
+ 'OpenVersionWarning' => 'Collection was created with a more recent version of GCstar. If you save it, you may loose some data.',
+ 'OpenVersionQuestion' => 'Do you still want to continue?',
+ 'ImageError' => 'O diretório de imagens está incorreto. Por favor, selecione outro.',
+ 'OptionsCreationError'=> 'Impossível criar um arquivo de opções: ',
+ 'OptionsOpenError'=> 'Impossível abrir um arquivo de opções: ',
+ 'OptionsSaveError'=> 'Impossível salvar um arquivo de opções: ',
+ 'ErrorModelNotFound' => 'Model not found: ',
+ 'ErrorModelUserDir' => 'User defined models are in: ',
+
+ 'RandomTooltip' => 'O que quer ver esta noite?',
+ 'RandomError'=> 'Você não possui itens selecionáveis', # Accepts model codes
+ 'RandomEnd'=> 'Não tem mais itens', # Accepts model codes
+ 'RandomNextTip'=> 'Segunda sugestão',
+ 'RandomOkTip'=> 'Aceitar este item',
+
+ 'AboutTitle' => 'Sobre GCstar',
+ 'AboutDesc' => 'Gerenciador de coleções',
+ 'AboutVersion' => 'Versão',
+ 'AboutTeam' => 'Equipe',
+ 'AboutWho' => 'Christian Jodar (Tian) : Gerente de projeto, Programador
+Nyall Dawson (Zombiepig) : Programador
+TPF : Programador
+Adolfo González : Programador
+',
+ 'AboutLicense' => 'Distribuído segundo os termos da GNU GPL
+Logos Copyright le Spektre',
+ 'AboutTranslation' => 'Tradução para português (Brasil): Daniel Valença',
+ 'AboutDesign' => 'Łukasz Kowalczk (Qoolman): Skin Designer
+Logo e webdesign por le Spektre',
+
+ 'ToolbarRandom' => 'Esta noite',
+
+ 'UnsavedCollection' => 'Unsaved Collection',
+ 'ModelsSelect' => 'Selecionar um tipo de coleção',
+ 'ModelsPersonal' => 'Modelos pessoais',
+ 'ModelsDefault' => 'Modelos padrões',
+ 'ModelsList' => 'Definições da coleção',
+ 'ModelSettings' => 'Configurações da coleção',
+ 'ModelNewType' => 'Novo tipo de coleção',
+ 'ModelName' => 'Nome do tipo de coleção:',
+ 'ModelFields' => 'Campos',
+ 'ModelOptions' => 'Opções',
+ 'ModelFilters' => 'Filtros',
+ 'ModelNewField' => 'Novo campo',
+ 'ModelFieldInformation' => 'Informação',
+ 'ModelFieldName' => 'Nome:',
+ 'ModelFieldType' => 'Tipo:',
+ 'ModelFieldGroup' => 'Grupo:',
+ 'ModelFieldValues' => 'Valores',
+ 'ModelFieldInit' => 'Padrões:',
+ 'ModelFieldMin' => 'Mínimo:',
+ 'ModelFieldMax' => 'Máximo:',
+ 'ModelFieldList' => 'Lista de valores:',
+ 'ModelFieldListLegend' => '<i>Separados por vírgulas</i>',
+ 'ModelFieldDisplayAs' => 'Display as:',
+ 'ModelFieldDisplayAsText' => 'Text',
+ 'ModelFieldDisplayAsGraphical' => 'Rating Control',
+ 'ModelFieldTypeShortText' => 'Texto curto',
+ 'ModelFieldTypeLongText' => 'Texto longo',
+ 'ModelFieldTypeYesNo' => 'Sim/Não',
+ 'ModelFieldTypeNumber' => 'Número',
+ 'ModelFieldTypeDate' => 'Data',
+ 'ModelFieldTypeOptions' => 'Lista de valores predefinidos',
+ 'ModelFieldTypeImage' => 'Imagem',
+ 'ModelFieldTypeSingleList' => 'Lista simples',
+ 'ModelFieldTypeFile' => 'Arquivo',
+ 'ModelFieldTypeFormatted' => 'Dependente em outros campos',
+ 'ModelFieldParameters' => 'Parâmetros',
+ 'ModelFieldHasHistory' => 'Usar um histórico',
+ 'ModelFieldFlat' => 'Exibir uma linha',
+ 'ModelFieldStep' => 'Tamanho do incremento:',
+ 'ModelFieldFileFormat' => 'Formato do arquivo:',
+ 'ModelFieldFileFile' => 'Arquivo simples',
+ 'ModelFieldFileImage' => 'Imagem',
+ 'ModelFieldFileVideo' => 'Vídeo',
+ 'ModelFieldFileAudio' => 'Áudio',
+ 'ModelFieldFileProgram' => 'Programa',
+ 'ModelFieldFileUrl' => 'URL',
+ 'ModelFieldFileEbook' => 'Ebook',
+ 'ModelOptionsFields' => 'Campos a usar',
+ 'ModelOptionsFieldsAuto' => 'Automático',
+ 'ModelOptionsFieldsNone' => 'Nenhum',
+ 'ModelOptionsFieldsTitle' => 'Como título',
+ 'ModelOptionsFieldsId' => 'Como identificador',
+ 'ModelOptionsFieldsCover' => 'Como capa',
+ 'ModelOptionsFieldsPlay' => 'Como botão de Reproduzir',
+ 'ModelCollectionSettings' => 'Preferências da coleção',
+ 'ModelCollectionSettingsLending' => 'Elementos que podem ser emprestados',
+ 'ModelCollectionSettingsTagging' => 'Items can be tagged',
+ 'ModelFilterActivated' => 'Deve aparecer na caixa de busca',
+ 'ModelFilterComparison' => 'Comparação',
+ 'ModelFilterContain' => 'Contém',
+ 'ModelFilterDoesNotContain' => 'Does not contain',
+ 'ModelFilterRegexp' => 'Regular expression',
+ 'ModelFilterRange' => 'Escopo',
+ 'ModelFilterNumeric' => 'Comparação numérica',
+ 'ModelFilterQuick' => 'Criar um filtro rápido',
+ 'ModelTooltipName' => 'Usar um nome para reutilizar este modelo para outras coleções. Se vazio, as preferências serão salvas na própria coleção',
+ 'ModelTooltipLabel' => 'Nome do campo como será mostrado',
+ 'ModelTooltipGroup' => 'Usado para agrupar os campos. Itens sem valor serão atribuídos ao grupo padrão',
+ 'ModelTooltipHistory' => 'Os valores introduzidos anteriormente devem ser armazenados em uma lista associada ao campo?',
+ 'ModelTooltipFormat' => 'O formato se usa para determinar a ação para abrir o arquivo com o botão Reproduzir',
+ 'ModelTooltipLending' => 'Isto irá adicionar campos para o gerenciamento dos empréstimos',
+ 'ModelTooltipTagging' => 'This will add some fields to manage tags',
+ 'ModelTooltipNumeric' => 'Os valores devem ser considerados como números para comparação?',
+ 'ModelTooltipQuick' => 'Isto irá adicionar um sub-menu dentro do menu de Filtros',
+
+ 'ResultsTitle' => 'Selecione um item', # Accepts model codes
+ 'ResultsNextTip' => 'Buscar no próximo site',
+ 'ResultsPreview' => 'Prévia',
+ 'ResultsInfo' => 'You can add multiple items to the collection by holding down the Ctrl or the Shift key and selecting them', # Accepts model codes
+
+ 'OptionsTitle' => 'Preferências',
+ 'OptionsExpertMode' => 'Expert Mode',
+ 'OptionsPrograms' => 'Specify applications to use for different media, leave blank to use system defaults',
+ 'OptionsBrowser' => 'Navegador de Internet',
+ 'OptionsPlayer' => 'Reprodutor de vídeo',
+ 'OptionsAudio' => 'Reprodutor de áudio',
+ 'OptionsImageEditor' => 'Image editor',
+ 'OptionsCdDevice' => 'CD device',
+ 'OptionsImages' => 'Pasta de imagens',
+ 'OptionsUseRelativePaths' => 'Usar rotas relativas para as imagens',
+ 'OptionsLayout' => 'Disposição',
+ 'OptionsStatus' => 'Barra de status',
+ 'OptionsUseStars' => 'Use stars to display ratings',
+ 'OptionsWarning' => 'Atenção: As mudanças efetuadas nesta aba não terão efeito até que o aplicativo seja reiniciado.',
+ 'OptionsRemoveConfirm' => 'Pedir confirmação antes de apagar',
+ 'OptionsAutoSave' => 'Salvar coleção automaticamente',
+ 'OptionsAutoLoad' => 'Carregar a coleção anterior ao início',
+ 'OptionsSplash' => 'Exibir tela de início',
+ 'OptionsTearoffMenus' => 'Enable tear-off menus',
+ 'OptionsSpellCheck' => 'Use spelling checker for long text fields',
+ 'OptionsProgramTitle' => 'Escolha que programa a utilizar',
+ 'OptionsPlugins' => 'Site para baixar informações',
+ 'OptionsAskPlugins' => 'Perguntar (Todos os sites)',
+ 'OptionsPluginsMulti' => 'Vários sites',
+ 'OptionsPluginsMultiAsk' => 'Perguntar (Alguns sites)',
+ 'OptionsPluginsMultiPerField' => 'Vários sites (per field)',
+ 'OptionsPluginsMultiPerFieldWindowTitle' => 'Many sites per field order selection',
+ 'OptionsPluginsMultiPerFieldDesc' => 'For each selected field we will return the first non empty information beginning from left',
+ 'OptionsPluginsMultiPerFieldFirst' => 'First',
+ 'OptionsPluginsMultiPerFieldLast' => 'Last',
+ 'OptionsPluginsMultiPerFieldRemove' => 'Remove',
+ 'OptionsPluginsMultiPerFieldClearSelected' => 'Empty selected field list',
+ 'OptionsPluginsList' => 'Definir lista',
+ 'OptionsAskImport' => 'Escolher os campos a importar',
+ 'OptionsProxy' => 'Utilizar um proxy',
+ 'OptionsCookieJar' => 'Use this cookie jar file',
+ 'OptionsMain' => 'Principal',
+ 'OptionsLang' => 'Idioma',
+ 'OptionsPaths' => 'Pastas',
+ 'OptionsInternet' => 'Internet',
+ 'OptionsConveniences' => 'Opções',
+ 'OptionsDisplay' => 'Visualização',
+ 'OptionsToolbar' => 'Barra de ferramentas',
+ 'OptionsToolbars' => {0 => 'Nenhuma', 1 => 'Pequena', 2 => 'Grande', 3 => 'System setting'},
+ 'OptionsToolbarPosition' => 'Posição',
+ 'OptionsToolbarPositions' => {0 => 'Acima', 1 => 'Abaixo', 2 => 'Esquerda', 3 => 'Direita'},
+ 'OptionsExpandersMode' => 'Expanders too long',
+ 'OptionsExpandersModes' => {'asis' => 'Do nothing', 'cut' => 'Cut', 'wrap' => 'Line wrap'},
+ 'OptionsDateFormat' => 'Date Format',
+ 'OptionsDateFormatTooltip' => 'Format is the one used by strftime(3). Default is %d/%m/%Y',
+ 'OptionsView' => 'Tipo de coleção',
+ 'OptionsViews' => {0 => 'Texto', 1 => 'Imagem', 2 => 'Detalhada'},
+ 'OptionsColumns' => 'Colunas',
+ 'OptionsMailer' => 'Método de envio',
+ 'OptionsSMTP' => 'Servidor',
+ 'OptionsFrom' => 'Seu e-mail',
+ 'OptionsTransform' => 'Colocar artigos ao final dos títulos',
+ 'OptionsArticles' => 'Artigos (separados por vírgula)',
+ 'OptionsSearchStop' => 'O usuário pode cancelar a busca',
+ 'OptionsBigPics' => 'Use big pictures when available',
+ 'OptionsAlwaysOriginal' => 'Usar título principal como o original se não encontrar nenhum',
+ 'OptionsRestoreAccelerators' => 'Restore accelerators',
+ 'OptionsHistory' => 'Tamanho do histórico',
+ 'OptionsClearHistory' => 'Limpar histórico',
+ 'OptionsStyle' => 'Skin',
+ 'OptionsDontAsk' => 'Não perguntar mais',
+ 'OptionsPathProgramsGroup' => 'Aplicações',
+ 'OptionsProgramsSystem' => 'Usar programas definidos pelo sistema',
+ 'OptionsProgramsUser' => 'Usar programas especificados',
+ 'OptionsProgramsSet' => 'Escolher programas',
+ 'OptionsPathImagesGroup' => 'Imagens',
+ 'OptionsInternetDataGroup' => 'Importar dados',
+ 'OptionsInternetSettingsGroup' => 'Configurações',
+ 'OptionsDisplayInformationGroup' => 'Mostrar informação',
+ 'OptionsDisplayArticlesGroup' => 'Artigos',
+ 'OptionsImagesDisplayGroup' => 'Exibir',
+ 'OptionsImagesStyleGroup' => 'Estilo',
+ 'OptionsDetailedPreferencesGroup' => 'Preferências',
+ 'OptionsFeaturesConveniencesGroup' => 'Conveniências',
+ 'OptionsPicturesFormat' => 'Prefixo para usar nas imagens:',
+ 'OptionsPicturesFormatInternal' => 'gcstar__',
+ 'OptionsPicturesFormatTitle' => 'Título ou nome do item associado',
+ 'OptionsPicturesWorkingDir' => '%WORKING_DIR% ou . será substituído com a pasta da coleção (usar apenas no começo da pasta)',
+ 'OptionsPicturesFileBase' => '%FILE_BASE% será substituído pelo nome do arquivo da coleção sem o sufixo (.gcs)',
+ 'OptionsPicturesWorkingDirError' => '%WORKING_DIR% pode ser usado apenas no começo da pasta de imagens',
+ 'OptionsConfigureMailers' => 'Configurar programas de e-mail',
+
+ 'ImagesOptionsButton' => 'Configurações',
+ 'ImagesOptionsTitle' => 'Configurações para lista de imagens',
+ 'ImagesOptionsSelectColor' => 'Escolha uma cor',
+ 'ImagesOptionsUseOverlays' => 'Use image overlays',
+ 'ImagesOptionsBg' => 'Fundo',
+ 'ImagesOptionsBgPicture' => 'Usar uma imagem de fundo',
+ 'ImagesOptionsFg'=> 'Seleção',
+ 'ImagesOptionsBgTooltip' => 'Trocar cor de fundo',
+ 'ImagesOptionsFgTooltip'=> 'Trocar cor de seleção',
+ 'ImagesOptionsResizeImgList' => 'Automatically change number of columns',
+ 'ImagesOptionsAnimateImgList' => 'Use animations',
+ 'ImagesOptionsSizeLabel' => 'Tamanho',
+ 'ImagesOptionsSizeList' => {0 => 'Muito Pequeno', 1 => 'Pequeno', 2 => 'Médio', 3 => 'Grande', 4 => 'Muito Grande'},
+ 'ImagesOptionsSizeTooltip' => 'Selecione um tamanho de imagem',
+
+ 'DetailedOptionsTitle' => 'Configuração para lista detalhada',
+ 'DetailedOptionsImageSize' => 'Tamanho da imagem',
+ 'DetailedOptionsGroupItems' => 'Agrupar itens por',
+ 'DetailedOptionsSecondarySort' => 'Sort field for children',
+ 'DetailedOptionsFields' => 'Selecione os campos a exibir',
+ 'DetailedOptionsGroupedFirst' => 'Keep together orphaned items',
+ 'DetailedOptionsAddCount' => 'Add number of elements on categories',
+
+ 'ExtractButton' => 'Informação',
+ 'ExtractTitle' => 'Informação do arquivo',
+ 'ExtractImport' => 'Usar valores',
+
+ 'FieldsListOpen' => 'Ler os campos da lista de um arquivo',
+ 'FieldsListSave' => 'Salvar os campos da lista em outro arquivo',
+ 'FieldsListError' => 'Estes campos não podem ser usados com este tipo de coleção',
+ 'FieldsListIgnore' => '--- Ignore',
+
+ 'ExportTitle' => 'Exportar itens',
+ 'ExportFilter' => 'Exportar apenas itens exibidos',
+ 'ExportFieldsTitle' => 'Campos a exportar',
+ 'ExportFieldsTip' => 'Escolha os campos para exportar',
+ 'ExportWithPictures' => 'Copiar as imagens de uma sub-pasta',
+ 'ExportSortBy' => 'Sort by',
+ 'ExportOrder' => 'Order',
+
+ 'ImportListTitle' => 'Importar outra lista de itens',
+ 'ImportExportData' => 'Informação',
+ 'ImportExportFile' => 'Arquivo',
+ 'ImportExportFieldsUnused' => 'Campos inutilizados',
+ 'ImportExportFieldsUsed' => 'Campos utilizados',
+ 'ImportExportFieldsFill' => 'Todos os campos',
+ 'ImportExportFieldsClear' => 'Nenhum campo',
+ 'ImportExportFieldsEmpty' => 'Deve assinalar ao menos um campo',
+ 'ImportExportFileEmpty' => 'Especifique um nome para o arquivo',
+ 'ImportFieldsTitle' => 'Campos a importar',
+ 'ImportFieldsTip' => 'Escolha os campos para importar',
+ 'ImportNewList' => 'Criar uma nova coleção',
+ 'ImportCurrentList' => 'Adicionar para coleção atual',
+ 'ImportDropError' => 'Ocorreu um erro ao abrir em pelo menos um arquivo. A lista anterior será recarregada.',
+ 'ImportGenerateId' => 'Gerar identificador para cada item',
+
+ 'FileChooserOpenFile' => 'Por favor, selecione um arquivo',
+ 'FileChooserDirectory' => 'Directory',
+ 'FileChooserOpenDirectory' => 'Escolha uma pasta',
+ 'FileChooserOverwrite' => 'Este arquivo já existe. Deseja sobrescrevê-lo?',
+ 'FileAllFiles' => 'All Files',
+ 'FileVideoFiles' => 'Video Files',
+ 'FileEbookFiles' => 'Ebook Files',
+ 'FileAudioFiles' => 'Audio Files',
+ 'FileGCstarFiles' => 'GCstar Collections',
+
+ #Some default panels
+ 'PanelCompact' => 'Compacto',
+ 'PanelReadOnly' => 'Somente leitura',
+ 'PanelForm' => 'Abas',
+
+ 'PanelSearchButton' => 'Baixar informação',
+ 'PanelSearchTip' => 'Buscar informação na Internet para este nome',
+ 'PanelSearchContextChooseOne' => 'Choose a site ...',
+ 'PanelSearchContextMultiSite' => 'Use "Many sites"',
+ 'PanelSearchContextMultiSitePerField' => 'Use "Many sites per field"',
+ 'PanelSearchContextOptions' => 'Change options ...',
+ 'PanelImageTipOpen' => 'Click na imagem para selecionar outra',
+ 'PanelImageTipView' => 'Click na imagem para vê-la em tamanho real...',
+ 'PanelImageTipMenu' => 'Click com o botão direito para mais opções.',
+ 'PanelImageTitle' => 'Selecionar uma imagem',
+ 'PanelImageNoImage' => 'Sem imagem',
+ 'PanelSelectFileTitle' => 'Selecione um arquivo',
+ 'PanelLaunch' => 'Launch',
+ 'PanelRestoreDefault' => 'Restaurar padrões',
+ 'PanelRefresh' => 'Update',
+ 'PanelRefreshTip' => 'Update information from web',
+
+ 'PanelFrom' =>'De',
+ 'PanelTo' =>'Para',
+
+ 'PanelWeb' => 'Ver informação',
+ 'PanelWebTip' => 'Ver informação na Internet sobre este item', # Accepts model codes
+ 'PanelRemoveTip' => 'Apagar item atual', # Accepts model codes
+
+ 'PanelDateSelect' => 'Selecionar',
+ 'PanelNobody' => 'Ninguém',
+ 'PanelUnknown' => 'Desconhecido',
+ 'PanelAdded' => 'Adicionar data',
+ 'PanelRating' => 'Nota',
+ 'PanelPressRating' => 'Press Rating',
+ 'PanelLocation' => 'Localidade',
+
+ 'PanelLending' => 'Emprestar',
+ 'PanelBorrower' => 'Devedor',
+ 'PanelLendDate' => 'Fora desde',
+ 'PanelHistory' => 'Histórico',
+ 'PanelReturned' => 'Item devolvido', # Accepts model codes
+ 'PanelReturnDate' => 'Data de devolução',
+ 'PanelLendedYes' => 'Emprestada',
+ 'PanelLendedNo' => 'Disponível',
+
+ 'PanelTags' => 'Tags',
+ 'PanelFavourite' => 'Favourite',
+ 'TagsAssigned' => 'Assigned Tags',
+
+ 'PanelUser' => 'User fields',
+
+ 'CheckUndef' => 'Qualquer',
+ 'CheckYes' => 'Sim',
+ 'CheckNo' => 'Não',
+
+ 'ToolbarAll' => 'Ver todas',
+ 'ToolbarAllTooltip' => 'Ver todos os itens',
+ 'ToolbarGroupBy' => 'Agrupar por',
+ 'ToolbarGroupByTooltip' => 'Selecionar o campo para usar nos itens agrupados na lista',
+ 'ToolbarQuickSearch' => 'Quick search',
+ 'ToolbarQuickSearchLabel' => 'Search',
+ 'ToolbarQuickSearchTooltip' => 'Select the field to search in. Enter the search terms and press Enter',
+ 'ToolbarSeparator' => ' Separator',
+
+ 'PluginsTitle' => 'Buscar um item',
+ 'PluginsQuery' => 'Pergunta',
+ 'PluginsFrame' => 'Site de busca',
+ 'PluginsLogo' => 'Logo',
+ 'PluginsName' => 'Nome',
+ 'PluginsSearchFields' => 'Campos de busca',
+ 'PluginsAuthor' => 'Autor',
+ 'PluginsLang' => 'Idioma',
+ 'PluginsUseSite' => 'Usar site selecionado para futuras buscas',
+ 'PluginsPreferredTooltip' => 'Site recommended by GCstar',
+ 'PluginDisabled' => 'Disabled',
+
+ 'BorrowersTitle' => 'Configuração dos devedores',
+ 'BorrowersList' => 'Devedores',
+ 'BorrowersName' => 'Nome',
+ 'BorrowersEmail' => 'E-mail',
+ 'BorrowersAdd' => 'Adicionar',
+ 'BorrowersRemove' => 'Apagar',
+ 'BorrowersEdit' => 'Modificar',
+ 'BorrowersTemplate' => 'Modelo do e-mail',
+ 'BorrowersSubject' => 'Assunto do e-mail',
+ 'BorrowersNotice1' => '%1 será substituído pelo nome do devedor',
+ 'BorrowersNotice2' => '%2 será substituído pelo título do item',
+ 'BorrowersNotice3' => '%3 será substituído pela data do empréstimo',
+
+ 'BorrowersImportTitle' => 'Importar informação dos devedores',
+ 'BorrowersImportType' => 'Formato do arquivo:',
+ 'BorrowersImportFile' => 'Arquivo:',
+
+ 'BorrowedTitle' => 'Itens emprestados', # Accepts model codes
+ 'BorrowedDate' => 'Desde',
+ 'BorrowedDisplayInPanel' => 'Show item in main window', # Accepts model codes
+
+ 'MailTitle' => 'Enviar um e-mail',
+ 'MailFrom' => 'De: ',
+ 'MailTo' => 'Para: ',
+ 'MailSubject' => 'Assunto: ',
+ 'MailSmtpError' => 'Problema de conexão com o servidor SMTP',
+ 'MailSendmailError' => 'Problema na execução do sendmail',
+
+ 'SearchTooltip' => 'Buscar em todos itens', # Accepts model codes
+ 'SearchTitle' => 'Busca de itens', # Accepts model codes
+ 'SearchNoField' => 'No field have been selected for the search box.
+Add some of them in the Filters tab of the collection settings.',
+
+ 'QueryReplaceField' => 'Campo para substituição',
+ 'QueryReplaceOld' => 'Nome atual',
+ 'QueryReplaceNew' => 'Novo nome',
+ 'QueryReplaceLaunch' => 'Substituir',
+
+ 'ImportWindowTitle' => 'Escolher os campos para importar',
+ 'ImportViewPicture' => 'Ver a imagem',
+ 'ImportSelectAll' => 'Selecionar todos',
+ 'ImportSelectNone' => 'Selecionar nenhum',
+
+ 'MultiSiteTitle' => 'Sites de busca',
+ 'MultiSiteUnused' => 'Plugins inutilizados',
+ 'MultiSiteUsed' => 'Plugins para usar',
+ 'MultiSiteLang' => 'Selecionar plugins em português',
+ 'MultiSiteEmptyError' => 'A lista de sites está vazia',
+ 'MultiSiteClear' => 'Limpar lista',
+
+ 'DisplayOptionsTitle' => 'Elementos a exibir',
+ 'DisplayOptionsAll' => 'Selecionar todos',
+ 'DisplayOptionsSearch' => 'Buscar',
+
+ 'GenresTitle' => 'Conversão de Gêneros',
+ 'GenresCategoryName' => 'Gênero a usar',
+ 'GenresCategoryMembers' => 'Gêneros a substituir',
+ 'GenresLoad' => 'Carregar uma lista',
+ 'GenresExport' => 'Exportar lista para arquivo',
+ 'GenresModify' => 'Editar conversão',
+
+ 'PropertiesName' => 'Nome da coleção',
+ 'PropertiesLang' => 'Language code',
+ 'PropertiesOwner' => 'Dono',
+ 'PropertiesEmail' => 'E-mail',
+ 'PropertiesDescription' => 'Descrição',
+ 'PropertiesFile' => 'Informação do arquivo',
+ 'PropertiesFilePath' => 'Caminho completo',
+ 'PropertiesItemsNumber' => 'Número de itens', # Accepts model codes
+ 'PropertiesFileSize' => 'Tamanho',
+ 'PropertiesFileSizeSymbols' => ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
+ 'PropertiesCollection' => 'Propriedades da coleção',
+ 'PropertiesDefaultPicture' => 'Default picture',
+
+ 'MailProgramsTitle' => 'Programas para enviar e-mails',
+ 'MailProgramsName' => 'Nome',
+ 'MailProgramsCommand' => 'Linha de comando',
+ 'MailProgramsRestore' => 'Restaurar padrões',
+ 'MailProgramsAdd' => 'Adicionar um programa',
+ 'MailProgramsInstructions' => 'Na linha de comandos, algumas substituições são feitas:
+ %f será sustituído pelo e-mail do usuário.
+ %t será sustituído pelo e-mail do destinatario.
+ %s será sustituído pelo assunto da mensagem.
+ %b será sustituído pelo corpo da mensagem.',
+
+ 'BookmarksBookmarks' => 'Favoritos',
+ 'BookmarksFolder' => 'Pastas',
+ 'BookmarksLabel' => 'Nome',
+ 'BookmarksPath' => 'Caminho',
+ 'BookmarksNewFolder' => 'Nova pasta',
+
+ 'AdvancedSearchType' => 'Tipo de busca',
+ 'AdvancedSearchTypeAnd' => 'Itens que cumpram todos os critérios', # Accepts model codes
+ 'AdvancedSearchTypeOr' => 'Itens que cumpram pelo menos um critério', # Accepts model codes
+ 'AdvancedSearchCriteria' => 'Critério',
+ 'AdvancedSearchAnyField' => 'Any field',
+ 'AdvancedSearchSaveTitle' => 'Save search',
+ 'AdvancedSearchSaveName' => 'Name',
+ 'AdvancedSearchSaveOverwrite' => 'A saved search already exists with that name. Please use a different one.',
+ 'AdvancedSearchUseCase' => 'Case sensitive',
+ 'AdvancedSearchIgnoreDiacritics' => 'Ignore accents and other diacritics',
+
+ 'BugReportSubject' => 'Bug report generated from GCstar',
+ 'BugReportVersion' => 'Version',
+ 'BugReportPlatform' => 'Operating system',
+ 'BugReportMessage' => 'Error message',
+ 'BugReportInformation' => 'Additional information',
+
+#Statistics
+ 'StatsFieldToUse' => 'Field to use',
+ 'StatsSortByNumber' => 'Sort by number of {lowercaseX}',
+ 'StatsGenerate' => 'Generate',
+ 'StatsKindOfGraph' => 'Kind of graphic',
+ 'StatsBars' => 'Bars',
+ 'StatsPie' => 'Pie',
+ 'Stats3DPie' => '3D Pie',
+ 'StatsArea' => 'Areas',
+ 'StatsHistory' => 'History',
+ 'StatsWidth' => 'Width',
+ 'StatsHeight' => 'Height',
+ 'StatsFontSize' => 'Font size',
+ 'StatsDisplayNumber' => 'Show numbers',
+ 'StatsSave' => 'Save statistics image to a file',
+ 'StatsAccumulate' => 'Accumulate values',
+ 'StatsShowAllDates' => 'Show all dates',
+
+ 'DefaultValuesTip' => 'Values set in this window will be used as the default values when creating a new {lowercase1}',
+ );
+}
+1;