diff options
Diffstat (limited to 'lib/gcstar/GCLang/HU')
31 files changed, 2680 insertions, 0 deletions
diff --git a/lib/gcstar/GCLang/HU/GCExport/GCExportCSV.pm b/lib/gcstar/GCLang/HU/GCExport/GCExportCSV.pm new file mode 100644 index 0000000..0e08963 --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCExport/GCExportCSV.pm @@ -0,0 +1,40 @@ +{ + package GCLang::HU::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' => 'Mezőnevek beszúrása a fejlécbe', + 'Separator' => 'Elválasztó', + 'Replacement' => 'Az elválasztó cseréje erre', + 'Charset' => 'Karakterkódolás', + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCExport/GCExportExternal.pm b/lib/gcstar/GCLang/HU/GCExport/GCExportExternal.pm new file mode 100644 index 0000000..89afafe --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCExport/GCExportExternal.pm @@ -0,0 +1,38 @@ +{ + package GCLang::HU::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/HU/GCExport/GCExportHTML.pm b/lib/gcstar/GCLang/HU/GCExport/GCExportHTML.pm new file mode 100644 index 0000000..7cc28be --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCExport/GCExportHTML.pm @@ -0,0 +1,64 @@ +{ + package GCLang::HU::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' => 'Érvénytelen sablonfájl', + 'UseFile' => 'Alább megadott fájl használata', + 'WithJS' => 'Javascript használata', + 'FileTemplate' => 'Sablon', + 'Preview' => 'Előnézet', + 'NoPreview' => 'Előnézet nem elérhető', + 'TemplateExternalFile' => 'Sablonfájl', + 'Title' => 'Oldal címe', + 'InfoFile' => 'Filmlista ebben a fájlban: ', + 'InfoDir' => 'Képek itt: ', + 'HeightImg' => 'Az exportálandó képek magassága (pixelekben)', + 'OpenFileInBrowser' => 'A létrehozott fájl megnyitása webböngészőben', + 'Note' => 'A lista létrehozva a következővel <a href="http://www.gcstar.org/">GCstar</a>', + 'InputTitle' => 'Szöveg keresése', + 'SearchType1' => 'Csak cím', + 'SearchType2' => 'Teljes információ', + 'SearchButton' => 'Keresés', + 'SearchTitle' => 'Csak a kritériumoknak megfelelő filmek mutatása', + 'AllButton' => 'Mind', + 'AllTitle' => 'Minden film mutatása', + 'Expand' => 'Több', + 'ExpandTitle' => 'Bővített filminformációk mutatása', + 'Collapse' => 'Kevesebb', + 'CollapseTitle' => 'Összevont filminformációk mutatása', + 'Borrowed' => 'Kölcsönvéve: ', + 'NotBorrowed' => 'Elérhető', + 'Top' => 'Fennt', + 'Bottom' => 'Lennt', + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCExport/GCExportPDB.pm b/lib/gcstar/GCLang/HU/GCExport/GCExportPDB.pm new file mode 100644 index 0000000..84003b2 --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCExport/GCExportPDB.pm @@ -0,0 +1,38 @@ +{ + package GCLang::HU::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/HU/GCExport/GCExportSQL.pm b/lib/gcstar/GCLang/HU/GCExport/GCExportSQL.pm new file mode 100644 index 0000000..8f60cb8 --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCExport/GCExportSQL.pm @@ -0,0 +1,40 @@ +{ + package GCLang::HU::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' => 'DROP utasítás beszúrása', + 'WithCreate' => 'CREATE utasítás beszúrása', + 'TableName' => 'Tábla név', + 'InfoFile' => 'SQL fájl: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCExport/GCExportTarGz.pm b/lib/gcstar/GCLang/HU/GCExport/GCExportTarGz.pm new file mode 100644 index 0000000..0000c41 --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCExport/GCExportTarGz.pm @@ -0,0 +1,37 @@ +{ + package GCLang::HU::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' => 'Archivum a fájban: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCExport/GCExportXML.pm b/lib/gcstar/GCLang/HU/GCExport/GCExportXML.pm new file mode 100644 index 0000000..44007b3 --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCExport/GCExportXML.pm @@ -0,0 +1,41 @@ +{ + package GCLang::HU::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' => 'Sablon fájl', + 'ModelText' => 'Sablon szöveg', + 'Models' => 'Használandó sablon', + 'UseFile' => 'Fájl használata', + 'UseModel' => 'Szöveges terület használata', + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCImport/GCImportAlexandria.pm b/lib/gcstar/GCLang/HU/GCImport/GCImportAlexandria.pm new file mode 100644 index 0000000..9a54275 --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCImport/GCImportAlexandria.pm @@ -0,0 +1,39 @@ +{ + package GCLang::HU::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' => 'Hol keressen', + 'Default' => 'Alapértelmezett Alexandria könyvtár', + 'Specified' => 'Alábbi meghatározott könyvtár', + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCImport/GCImportCSV.pm b/lib/gcstar/GCLang/HU/GCImport/GCImportCSV.pm new file mode 100644 index 0000000..6394977 --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCImport/GCImportCSV.pm @@ -0,0 +1,42 @@ +{ + package GCLang::HU::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' => 'Karakterkódolás', + 'Header' => 'Az első sor mellőzése', + 'Separator' => 'Elválasztó', + 'Plugin' => 'Használandó oldal', + 'UseFirst' => 'Az első kijelölése több talál esetén', + 'SearchField' => 'Search for items using', + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCImport/GCImportFolder.pm b/lib/gcstar/GCLang/HU/GCImport/GCImportFolder.pm new file mode 100644 index 0000000..b89ca00 --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCImport/GCImportFolder.pm @@ -0,0 +1,68 @@ +{ + package GCLang::HU::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' => 'Mappa', + 'Recursive' => 'Almappák böngészése', + 'Suffixes' => 'A fájlok toldalékai, vagy kiterjesztései', + 'SuffixesTooltip' => 'A fájlok toldalékainak, vagy kiterjesztéseinek vesszővel elválasztott listájának megtekintése', + 'Remove' => 'Eltávolítva a nevekből', + 'RemoveTooltip' => 'A vesszővel elválasztott szavak listája, amiket el kellett távolítani a fájlnevekből a rövidített nevekhez', + '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/HU/GCImport/GCImportGCstar.pm b/lib/gcstar/GCLang/HU/GCImport/GCImportGCstar.pm new file mode 100644 index 0000000..a5e43f3 --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCImport/GCImportGCstar.pm @@ -0,0 +1,37 @@ +{ + package GCLang::HU::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' => 'Képek másolása', + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCImport/GCImportList.pm b/lib/gcstar/GCLang/HU/GCImport/GCImportList.pm new file mode 100644 index 0000000..31786de --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCImport/GCImportList.pm @@ -0,0 +1,42 @@ +{ + package GCLang::HU::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' => 'Nevek listája', + 'Plugin' => 'Használandó oldal', + 'UseFirst' => 'Az első kijelölése több talál esetén', + 'CommentAuto' => 'Elem automatikus importálása.', + 'CommentSite' => 'Weboldal: ', + 'CommentTitle' => 'Cím: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCImport/GCImportScanner.pm b/lib/gcstar/GCLang/HU/GCImport/GCImportScanner.pm new file mode 100644 index 0000000..1b070eb --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCImport/GCImportScanner.pm @@ -0,0 +1,50 @@ +{ + package GCLang::HU::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/HU/GCImport/GCImportTellico.pm b/lib/gcstar/GCLang/HU/GCImport/GCImportTellico.pm new file mode 100644 index 0000000..a985c9f --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCImport/GCImportTellico.pm @@ -0,0 +1,37 @@ +{ + package GCLang::HU::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' => 'A fájl nem Tellico gyűjtemény', + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCModels/GCTVepisodes.pm b/lib/gcstar/GCLang/HU/GCModels/GCTVepisodes.pm new file mode 100644 index 0000000..d3af82a --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCModels/GCTVepisodes.pm @@ -0,0 +1,46 @@ +{ + package GCLang::HU::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 Show-k (epizódok) gyűjteménye', + Items => 'Epizódok', + NewItem => 'Új epizód', + NewSeries => 'Új sorozatok', + Episode => 'Epizód', + ); + # Both of them are required as importTranslation doesn't recurse + importTranslation('films'); + importTranslation('TVseries'); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCModels/GCTVseries.pm b/lib/gcstar/GCLang/HU/GCModels/GCTVseries.pm new file mode 100644 index 0000000..99f3e2c --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCModels/GCTVseries.pm @@ -0,0 +1,50 @@ +{ + package GCLang::HU::GCModels::GCTVseries; + + 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 GCLang::GCLangUtils; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'TV Show-k (sorozatok) gyűjteménye', + Items => 'Sorozatok', + NewItem => 'Új sorozatok', + Name => 'Név', + Season => 'Évad', + Part => 'Rész', + Episodes => 'Epizódok', + FirstAired => 'First Aired', + Time => 'Ep. hossza', + Producer => 'Producer', + Music => 'Zene', + ); + importTranslation('Films'); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCModels/GCboardgames.pm b/lib/gcstar/GCLang/HU/GCModels/GCboardgames.pm new file mode 100644 index 0000000..464ee91 --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCModels/GCboardgames.pm @@ -0,0 +1,86 @@ +{ + package GCLang::HU::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 => 'Táblajáték gyűjtemény', + Items => {0 => 'Játék', + 1 => 'Játék', + X => 'Játékok'}, + NewItem => 'Új játék', + + Id => 'Azonosító', + Name => 'Név', + Original => 'Eredeti név', + Box => 'Borító kép', + DesignedBy => 'Tervezte', + PublishedBy => 'Kiadta', + Players => 'Játékosok száma', + PlayingTime => 'Játékidő', + SuggestedAge => 'Ajánlott kor', + Released => 'Kiadás', + Description => 'Leírás', + Category => 'Kategória', + Mechanics => 'Mechanizmusok', + ExpandedBy => 'Fejlesztő', + ExpansionFor => 'Fejlesztés', + GameFamily => 'Játékcsalád', + IllustratedBy => 'Illusztráló', + Url => 'Weboldal', + TimesPlayed => 'Játékok száma', + CompleteContents => 'Teljes részek', + Copies => 'Másolatok száma', + Condition => 'Állapot', + Photos => 'Fényképek', + Photo1 => 'Első kép', + Photo2 => 'Második kép', + Photo3 => 'Harmadik kép', + Photo4 => 'Negyedik kép', + Comments => 'Megjegyzések', + + Perfect => 'Kiváló', + Good => 'Jó', + Average => 'Átlagos', + Poor => 'Szegényes', + + CompleteYes => 'Teljes részek', + CompleteNo => 'Hiányzó részek', + + General => 'Általános', + Details => 'Részletek', + Personal => 'Személyes', + Information => 'Információ', + + FilterRatingSelect => 'Értékelés _legalább...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCModels/GCbooks.pm b/lib/gcstar/GCLang/HU/GCModels/GCbooks.pm new file mode 100644 index 0000000..1225acb --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCModels/GCbooks.pm @@ -0,0 +1,70 @@ +{ + package GCLang::HU::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 => 'Könyvgyűjtemény', + Items => {0 => 'Könyv', + 1 => 'Könyv', + X => 'Könyvek'}, + NewItem => 'Új könyv', + + Isbn => 'ISBN', + Title => 'Cím', + Cover => 'Borító', + Authors => 'Szerzők', + Publisher => 'Kiadó', + Publication => 'Kiadás dátuma', + Language => 'Nyelv', + Genre => 'Jellemzők', + Serie => 'Sorozatok', + Rank => 'Értékelés', + Bookdescription => 'Leírás', + Pages => 'Oldalak', + Read => 'Olvasva', + Acquisition => 'Bekerülés dátuma', + Edition => 'Kiadás', + Format => 'Formátum', + Comments => 'Megjegyzések', + Url => 'Weboldal', + Translator => 'Fordító', + Artist => 'Illusztrátor', + DigitalFile => 'Digital version', + + General => 'Általános', + Details => 'Részletek', + + ReadNo => 'Nem olvasott', + ReadYes => 'Olvasott', + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCModels/GCcoins.pm b/lib/gcstar/GCLang/HU/GCModels/GCcoins.pm new file mode 100644 index 0000000..094fa5a --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCModels/GCcoins.pm @@ -0,0 +1,104 @@ +{ + package GCLang::HU::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 => 'Érmegyűjtemény', + Items => {0 => 'Érme', + 1 => 'Érme', + X => 'Érmék'}, + NewItem => 'Új érme', + + Name => 'Név', + Country => 'Ország', + Year => 'Év', + Currency => 'Pénznem', + Value => 'Érték', + Picture => 'Kép', + Diameter => 'Átmérő', + Metal => 'Fém', + Edge => 'Szegély', + Edge1 => 'Szegély 1', + Edge2 => 'Szegély 2', + Edge3 => 'Szegély 3', + Edge4 => 'Szegély 4', + Head => 'Fej', + Tail => 'Írás', + Comments => 'Megjegyzések', + History => 'Történelem', + Website => 'Weboldal', + Estimate => 'Becslés', + References => 'Referenciák', + Type => 'Típus', + Coin => 'Érme', + Banknote => 'Bankjegy', + + Main => 'Általános', + Description => 'Leírás', + Other => 'Egyéb információk', + Pictures => 'Képek', + + Condition => 'Minőség (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/HU/GCModels/GCcomics.pm b/lib/gcstar/GCLang/HU/GCModels/GCcomics.pm new file mode 100644 index 0000000..d64f233 --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCModels/GCcomics.pm @@ -0,0 +1,73 @@ +{ + package GCLang::HU::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 => 'Képregénygyűjtemény', + Items => {0 => 'Képregények', + 1 => 'Képregény', + X => 'Képregények'}, + NewItem => 'Új képregény', + + + Id => 'Id', + Name => 'Név', + Series => 'Sorozatok', + Volume => 'Kötet', + Title => 'Cím', + Writer => 'Író', + Illustrator => 'Illusztátor', + Colourist => 'Szinező', + Publisher => 'Kiadó', + Synopsis => 'Összegzés', + Collection => 'Gyűjtemény', + PublishDate => 'Kiadás dátuma', + PrintingDate => 'Nyomtatás dátuma', + ISBN => 'ISBN', + Type => 'Típus', + Category => 'Kategória', + Format => 'Formátum', + NumberBoards => 'Táblák száma', + Signing => 'Jelölés', + Cost => 'Ár', + Rating => 'Értékelés', + Comment => 'Megjegyzések', + Url => 'Weboldal', + + FilterRatingSelect => 'Értékelés _legalább...', + + Main => 'Fő elemek', + General => 'Általános', + Details => 'Részletek', + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCModels/GCfilms.pm b/lib/gcstar/GCLang/HU/GCModels/GCfilms.pm new file mode 100644 index 0000000..674e1a0 --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCModels/GCfilms.pm @@ -0,0 +1,93 @@ +{ + package GCLang::HU::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 => 'Filmgyűjtemény', + Items => {0 => 'Film', + 1 => 'Film', + X => 'Filmek'}, + NewItem => 'Új film', + + + Id => 'Azonosító', + Title => 'Cím', + Date => 'Dátum', + Time => 'Hossz', + Director => 'Rendező', + Country => 'Ország', + MinimumAge => 'Ajánlott kor', + Genre => 'Jellemzők', + Image => 'Kép', + Original => 'Eredeti cím', + Actors => 'Szereposztás', + Actor => 'Színész', + Role => 'Szerep', + Comment => 'Megjegyzések', + Synopsis => 'Összegzés', + Seen => 'Megnézve', + Number => '# Média', + Format => 'Média', + Region => 'Régió', + Identifier => 'Azonosító', + Url => 'Weboldal', + Audio => 'Hang', + Video => 'Videó formátum', + Trailer => 'Videó fájl', + Serie => 'Sorozatok', + Rank => 'Értékelés', + Subtitles => 'Alcímek', + + SeenYes => 'Megnézve', + SeenNo => 'Nincs megnézve', + + AgeUnrated => 'Nem értékelt', + AgeAll => 'Korhatár nélkül', + AgeParent => 'Szülői felügyelettel', + + Main => 'Fő elemek', + General => 'Általános', + Details => 'Részletek', + + Information => 'Információ', + Languages => 'Nyelvek', + Encoding => 'Kódolás', + + FilterAudienceAge => 'Néző életkora', + FilterSeenNo => '_Még nem látott', + FilterSeenYes => '_Már látott', + FilterRatingSelect => 'Értékelés _legalább...', + + ExtractSize => 'Méret', + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCModels/GCgames.pm b/lib/gcstar/GCLang/HU/GCModels/GCgames.pm new file mode 100644 index 0000000..99138ed --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCModels/GCgames.pm @@ -0,0 +1,82 @@ +{ + package GCLang::HU::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 => 'Videójáték gyűjtemény', + Items => {0 => 'Játék', + 1 => 'Játék', + X => 'Játékok'}, + NewItem => 'Új játék', + + Id => 'Azonosító', + Ean => 'EAN', + Name => 'Név', + Platform => 'Platform', + Players => 'Játékosok száma', + Released => 'Kiadás dátuma', + Editor => 'Kiadó', + Developer => 'Fejlesztő', + Genre => 'Jellemzők', + Box => 'Doboz képe', + Case => 'Eredeti tok', + Manual => 'Kézikönyv', + Completion => 'Befejezés (%)', + Executable => 'Játszhatóság', + Description => 'Leírás', + Codes => 'Kódok', + Code => 'Kód', + Effect => 'Efektek', + Secrets => 'Titkok', + Screenshots => 'Képernyőképek', + Screenshot1 => 'Első képernyőkép', + Screenshot2 => 'Második képernyőkép', + Comments => 'Megjegyzések', + Url => 'Weboldal', + Unlockables => 'Megoldások', + Unlockable => 'Cél', + Howto => 'Megoldás módja', + Exclusive => 'Exclusive', + Resolutions => 'Display resolutions', + InstallationSize => 'Size', + Region => 'Region', + SerialNumber => 'Serial Number', + + General => 'Általános', + Details => 'Összetevők', + Tips => 'Tippek', + Information => 'Információ', + + FilterRatingSelect => 'Értékelés _Legalább...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCModels/GCgeneric.pm b/lib/gcstar/GCLang/HU/GCModels/GCgeneric.pm new file mode 100644 index 0000000..f2ebc83 --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCModels/GCgeneric.pm @@ -0,0 +1,42 @@ +{ + package GCLang::HU::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/HU/GCModels/GCminicars.pm b/lib/gcstar/GCLang/HU/GCModels/GCminicars.pm new file mode 100644 index 0000000..971e64c --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCModels/GCminicars.pm @@ -0,0 +1,182 @@ +{
+ package GCLang::HU::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/HU/GCModels/GCmusics.pm b/lib/gcstar/GCLang/HU/GCModels/GCmusics.pm new file mode 100644 index 0000000..abf9999 --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCModels/GCmusics.pm @@ -0,0 +1,68 @@ +{ + package GCLang::HU::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 => 'Zenegyűjtemény', + Items => {0 => 'Album', + 1 => 'Album', + X => 'Albumok'}, + NewItem => 'Új album', + + Unique => 'ISRC/EAN', + Title => 'Cím', + Cover => 'Borító', + Artist => 'Előadók', + Format => 'Formátum', + Running => 'Hossz', + Release => 'Kiadás dátuma', + Genre => 'Jellemzők', + Origin => 'Origin', + +#For tracks list + Tracks => 'Track lista', + Number => 'Szám', + Track => 'Cím', + Time => 'Idő', + + Composer => 'Zeneszerző', + Producer => 'Gyártásvezető', + Playlist => 'Lejátszólista', + Comments => 'Megjegyzések', + Label => 'Cimke', + Url => 'Weboldal', + + General => 'Általános', + Details => 'Összetevők', + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCModels/GCperiodicals.pm b/lib/gcstar/GCLang/HU/GCModels/GCperiodicals.pm new file mode 100644 index 0000000..aba734d --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCModels/GCperiodicals.pm @@ -0,0 +1,52 @@ +{ + package GCLang::HU::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/HU/GCModels/GCsmartcards.pm b/lib/gcstar/GCLang/HU/GCModels/GCsmartcards.pm new file mode 100644 index 0000000..b3864cf --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCModels/GCsmartcards.pm @@ -0,0 +1,108 @@ +{
+ package GCLang::HU::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/HU/GCModels/GCsoftware.pm b/lib/gcstar/GCLang/HU/GCModels/GCsoftware.pm new file mode 100644 index 0000000..ab59a34 --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCModels/GCsoftware.pm @@ -0,0 +1,84 @@ +{ + package GCLang::HU::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/HU/GCModels/GCstamps.pm b/lib/gcstar/GCLang/HU/GCModels/GCstamps.pm new file mode 100644 index 0000000..eb0a9bd --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCModels/GCstamps.pm @@ -0,0 +1,189 @@ +{ + package GCLang::HU::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/HU/GCModels/GCwines.pm b/lib/gcstar/GCLang/HU/GCModels/GCwines.pm new file mode 100644 index 0000000..2c1cc56 --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCModels/GCwines.pm @@ -0,0 +1,65 @@ +{ + package GCLang::HU::GCModels::GCwines; + + use utf8; + +# Copyright 2007 Yves Martin + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Borgyűjtemény', + Items => {0 => 'Bor', + 1 => 'Bor', + X => 'Borok'}, + NewItem => 'Új bor', + + Name => 'Név', + Designation => 'Megnevezés', + Vintage => 'Évjárat', + Vineyard => 'Pincészet', + Type => 'Típus', + Grapes => 'Szőlők', + Soil => 'Talaj', + Producer => 'Termelő', + Country => 'Ország', + Volume => 'Űrtartalom (ml)', + Alcohol => 'Alkohol (%)', + Medal => 'Díjak és elismerések', + + Storage => 'Tárolás', + Location => 'Hely', + ShelfIndex => 'Mutató', + Quantity => 'Mennyiség', + Acquisition => 'Beszerzés', + PurchaseDate => 'Beszerzés dátuma', + PurchasePrice => 'Beszerzési ár', + Gift => 'Ajándék', + BottleLabel => 'Palack címke', + Website => 'Referenciák a weben', + + Tasted => 'Megízlelve', + Comments => 'Megjegyzések', + Serving => 'Kínálás', + TastingField => 'Bírálati megjegyzések', + + General => 'Általános', + Details => 'Összetevők', + Tasting => 'Ízlelés', + + TastedNo => 'Nincs megízlelve', + TastedYes => 'Megízlelve', + + FilterRange => 'Érték', + FilterTastedNo => '_Még nem ízlelt', + FilterTastedYes => 'Már _ízlelt', + FilterRatingSelect => 'Értékelés _legalább...' + + ); +} + +1; diff --git a/lib/gcstar/GCLang/HU/GCstar.pm b/lib/gcstar/GCLang/HU/GCstar.pm new file mode 100644 index 0000000..51b0c3e --- /dev/null +++ b/lib/gcstar/GCLang/HU/GCstar.pm @@ -0,0 +1,673 @@ +{ + package GCLang::HU; + + 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' => 'Magyar', + + 'Separator' => ': ', + + 'Warning' => '<b>Figyelmeztetés</b>: + +A weboldalakról letöltött információk (a bővítményeken keresztül) +<b>csak személyes használatra engedélyezettek</b>. + +Bármilyen újraközlés az oldal +<b>külön engedélye</b> nélkül tilos. + +<b>Az elemek alatti gomb</b> megnyomásával nyomonkövethetjük, +hogy melyik oldalról valók az információk.', + + 'AllItemsFiltered' => 'Nincs megfelelő elem a keresési feltételeidhez', # Accepts model codes + +#Installation + 'InstallDirInfo' => 'Telepítés ide', + 'InstallMandatory' => 'Szükséges összetevők', + 'InstallOptional' => 'Választható összetevők', + 'InstallErrorMissing' => 'Hiba : A következő Perl összetevőket telepíteni kell: ', + 'InstallPrompt' => 'A telepítés alapkönyvtára [/usr/local]: ', + 'InstallEnd' => 'A telepítés befejeződött', + 'InstallNoError' => 'Nincs hiba', + 'InstallLaunch' => 'Az alkalmazás használatához indítsd ', + 'InstallDirectory' => 'Alapkönyvtár', + 'InstallTitle' => 'GCstar telepítése', + 'InstallDependencies' => 'Függőségek', + 'InstallPath' => 'Elérési út', + 'InstallOptions' => 'Beállítások', + 'InstallSelectDirectory' => 'Válassz ki egy alapkönyvtárat a telepítéshez', + 'InstallWithClean' => 'A telepítőkönyvtár fájlainak törlése', + 'InstallWithMenu' => 'A GCstar hozzáadása az Alkalmazások menühöz', + 'InstallNoPermission' => 'Hiba: Nincs írásjogod a kiválasztott könyvtárra', + 'InstallMissingMandatory' => 'Szükséges összetevők hiányoznak. Amíg nem telepíted őket, a GCstar nem telepíthető.', + 'InstallMissingOptional' => 'Néhány, alul listázott választható összetevő hiányzik. A GCstar telepíthető, de néhány funkció nem lesz elérhető.', + 'InstallMissingNone' => 'Nincs hiányzó függőség. Folytathatod a GCstar telepítését.', + 'InstallOK' => 'Rendben', + 'InstallMissing' => 'Hiányzik', + 'InstallMissingFor' => 'Hiányzó', + 'InstallCleanDirectory' => 'Eltávolítható GCstar-fájlok ebben a könyvtárban: ', + 'InstallCopyDirectory' => 'Fájlok másolása: ', + 'InstallCopyDesktop' => 'A desktopfájlok másolása ide: ', + +#Update + 'UpdateUseProxy' => 'Proxy használata (üss Entert, ha mégsem): ', + 'UpdateNoPermission' => 'Írási engedély megtagadva a könyvtárban: ', + 'UpdateNone' => 'Nem található frissítés', + 'UpdateFileNotFound' => 'A fájl nem található', + +#Splash + 'SplashInit' => 'Inicializáció', + 'SplashLoad' => 'Gyűjtemény betöltése', + 'SplashDisplay' => 'Gyűjtemény megjelenítése', + 'SplashSort' => 'Gyűjtemény rendezése', + 'SplashDone' => 'Kész', + +#Import from GCfilms + 'GCfilmsImportQuestion' => 'Úgy tűnik, hogy korábban használtad a GCfilms-t. Mit szeretnél a GCfilms-ből a GCstar-ba importálni (ez nem befolyásolja a GCfilms-t, ha használni akarod)?', + 'GCfilmsImportOptions' => 'Beállítások', + 'GCfilmsImportData' => 'Filmlisták', + +#Menus + 'MenuFile' => '_Fájl', + 'MenuNewList' => '_Új gyűjtemény', + 'MenuStats' => 'Statistics', + 'MenuHistory' => 'K_orábbi gyűjtemények', + 'MenuLend' => 'Kölcsönadott _elemek megjelenítése', # Accepts model codes + 'MenuImport' => '_Importálás', + 'MenuExport' => 'E_xportálás', + 'MenuAddItem' => '_Add Items', # Accepts model codes + + 'MenuEdit' => '_Szerkesztés', + 'MenuDuplicate' => 'Elem _kettőzése', # Accepts model codes + 'MenuDuplicatePlural' => 'Du_plicate Items', # Accepts model codes + 'MenuEditSelectAllItems' => 'Select _All Items', # Accepts model codes + 'MenuEditDeleteCurrent' => '_Elem eltávolítása', # Accepts model codes + 'MenuEditDeleteCurrentPlural' => '_Remove Items', # Accepts model codes + 'MenuEditFields' => '_Gyűjtemény mezőinek megváltoztatása', + 'MenuEditLockItems' => 'Gyűjtemény _zárolása', + + 'MenuDisplay' => 'S_zűrő', + 'MenuSavedSearches' => 'Elmentett keresések', + 'MenuSavedSearchesSave' => 'A jelenlegi keresés elmentése', + 'MenuSavedSearchesEdit' => 'Elmentett keresések módosítása', + 'MenuAdvancedSearch' => 'Haladó keresés', + 'MenuViewAllItems' => '_Elemek mutatása', # Accepts model codes + 'MenuNoFilter' => '_Minden', + + 'MenuConfiguration' => '_Beállítások', + 'MenuDisplayMenu' => 'Display', + 'MenuDisplayFullScreen' => 'Full screen', + 'MenuDisplayMenuBar' => 'Menus', + 'MenuDisplayToolBar' => 'Toolbar', + 'MenuDisplayStatusBar' => 'Bottom bar', + 'MenuDisplayOptions' => '_Megjelenítendő elemek', + 'MenuBorrowers' => '_Kölcsönvevők', + 'MenuToolbarConfiguration' => '_Eszköztár beállítása', + 'MenuDefaultValues' => 'Default values for new item', # Accepts model codes + 'MenuGenresConversion' => '_Jellemzők konvertálása', + + 'MenuBookmarks' => 'S_aját gyűjtemények', + 'MenuBookmarksAdd' => '_Jelenlegi gyűjtemény hozzáadása', + 'MenuBookmarksEdit' => 'Gyűjtemények _szerkesztése', + + 'MenuHelp' => 'S_úgó', + 'MenuHelpContent' => '_Tartalom', + 'MenuAllPlugins' => 'Bővítmények _megtekintése', + 'MenuBugReport' => 'Hibajelentés _küldése', + 'MenuAbout' => '_A GCstar-ról', + + 'MenuNewWindow' => 'Megjelenítés új _ablakban', # Accepts model codes + 'MenuNewWindowPlural' => 'Show Items in _New Window', # Accepts model codes + + 'ContextExpandAll' => 'Szálak kibontása', + 'ContextCollapseAll' => 'Szálak összecsukása', + 'ContextChooseImage' => 'Válassz _Képet', + 'ContextOpenWith' => 'Megnyitás ezze_l', + 'ContextImageEditor' => 'Képszerkesztő', + 'ContextImgFront' => 'Borító', + 'ContextImgBack' => 'Hátlap', + 'ContextChooseFile' => 'Choose a File', + 'ContextChooseFolder' => 'Choose a Folder', + + 'DialogEnterNumber' => 'Addj meg egy értéket', + + 'RemoveConfirm' => 'Valóban el akarod távolítani az elemet?', # Accepts model codes + 'RemoveConfirmPlural' => 'Do you really want to remove these items?', # Accepts model codes + 'DefaultNewItem' => 'Új elem', # Accepts model codes + 'NewItemTooltip' => 'Új elem hozzáadása', # Accepts model codes + 'NoItemFound' => 'Nincs találat. Akarsz egy másik oldalon keresni?', + 'OpenList' => 'Jelölj ki egy gyűjteményt', + 'SaveList' => 'Válaszd ki, hogy hova legyen mentve a gyűjtemény!', + 'SaveListTooltip' => 'Jelenlegi gyűjtemény mentése', + 'SaveUnsavedChanges' => 'Nem mentett változások vannak a gyűjteményedben. Akarod őket menteni?', + 'SaveDontSave' => 'Ne mentse', + 'PreferencesTooltip' => 'Beállítások', + 'ViewTooltip' => 'A gyűjtemény megjelenítésének változtatása', + 'PlayTooltip' => 'Az elemhez kapcsolódó videó lejátszása', # Accepts model codes + 'PlayFileNotFound' => 'Ezen a helyen nem található az indítandó fájl:', + 'PlayRetry' => 'Újra', + + 'StatusSave' => 'Mentés...', + 'StatusLoad' => 'Betöltés...', + 'StatusSearch' => 'Haladó keresés...', + 'StatusGetInfo' => 'Információk betöltése...', + 'StatusGetImage' => 'Képek betöltése...', + + 'SaveError' => 'Nem lehet menteni a listát. Ellenőrízd a jogokat és a szabad tárhelyet.', + 'OpenError' => 'Nem lehet megnyitni a listát. Ellenőrízd a jogokat.', + 'OpenFormatError' => 'Nem lehet megnyitni a listát. Hibás formátum.', + 'OpenVersionWarning' => 'A gyűjtemény egy újabb verziójú GCstar-ral készült. Ha elmented, elveszthetsz néhány adatot.', + 'OpenVersionQuestion' => 'Biztosan folytatni akarod?', + 'ImageError' => 'A képek mentéséhez kiválasztott könyvtár helytelen. Válassz egy másikat.', + 'OptionsCreationError'=> 'Nem lehet létrehozni a beállítás-fájlt: ', + 'OptionsOpenError'=> 'Nem lehet megnyitni a beállítás-fájlt: ', + 'OptionsSaveError'=> 'Nem lehet menteni a beállítás-fájlt: ', + 'ErrorModelNotFound' => 'Sablon nem található: ', + 'ErrorModelUserDir' => 'A felhasználó által meghatározott sablonok: ', + + 'RandomTooltip' => 'Mit nézünk ma este ?', + 'RandomError'=> 'Nincs kijelölhető elem', # Accepts model codes + 'RandomEnd'=> 'Nincs több elem', # Accepts model codes + 'RandomNextTip'=> 'Következő javaslat', + 'RandomOkTip'=> 'Elem elfogadása', + + 'AboutTitle' => 'A GCstar-ról', + 'AboutDesc' => 'Személyes gyűjteménykezelő', + 'AboutVersion' => 'Verzió', + 'AboutTeam' => 'Csapat', + 'AboutWho' => 'Christian Jodar (Tian): Project menedzser, Programozó +Nyall Dawson (Zombiepig): Programozó +TPF: Programozó +Adolfo González: Programozó +', + 'AboutLicense' => 'Készült a GNU GPL licensz alapján +Logók Copyright le Spektre', + 'AboutTranslation' => 'Magyar fordítás: Takács László Krisztián tlk at t-online dot hu', + 'AboutDesign' => 'Łukasz Kowalczk (Qoolman): Skin Designer +Logó és webdizájn: le Spektre', + + 'ToolbarRandom' => 'Ma este', + + 'UnsavedCollection' => 'Nem mentett Gyűjtemény', + 'ModelsSelect' => 'A gyűjtemény típusának kiválasztása', + 'ModelsPersonal' => 'Személyes sablonok', + 'ModelsDefault' => 'Alapértelmezett sablonok', + 'ModelsList' => 'Gyűjteménysablon', + 'ModelSettings' => 'Gyűjtemény beállítások', + 'ModelNewType' => 'Új gyűjteménytípus', + 'ModelName' => 'A gyűjteménytípus neve:', + 'ModelFields' => 'Mezők', + 'ModelOptions' => 'Beállítások', + 'ModelFilters' => 'Szűrők', + 'ModelNewField' => 'Új mező', + 'ModelFieldInformation' => 'Információ', + 'ModelFieldName' => 'Címke:', + 'ModelFieldType' => 'Típus:', + 'ModelFieldGroup' => 'Csoport:', + 'ModelFieldValues' => 'Értékek', + 'ModelFieldInit' => 'Alapértelmezett:', + 'ModelFieldMin' => 'Minimális:', + 'ModelFieldMax' => 'Maximális:', + 'ModelFieldList' => 'Értékek listája:', + 'ModelFieldListLegend' => '<i>Vesszővel elválasztva</i>', + 'ModelFieldDisplayAs' => 'Megjelenik mint:', + 'ModelFieldDisplayAsText' => 'Szöveg', + 'ModelFieldDisplayAsGraphical' => 'Kategória Beállítás', + 'ModelFieldTypeShortText' => 'Rövid szöveg', + 'ModelFieldTypeLongText' => 'Hosszú szöveg', + 'ModelFieldTypeYesNo' => 'Igen/Nem', + 'ModelFieldTypeNumber' => 'Szám', + 'ModelFieldTypeDate' => 'Dátum', + 'ModelFieldTypeOptions' => 'Előredefiniált lista', + 'ModelFieldTypeImage' => 'Kép', + 'ModelFieldTypeSingleList' => 'Egyszerű lista', + 'ModelFieldTypeFile' => 'Fájl', + 'ModelFieldTypeFormatted' => 'Más mezőknek alárendelve', + 'ModelFieldParameters' => 'Parametéterek', + 'ModelFieldHasHistory' => 'Előzmények használata', + 'ModelFieldFlat' => 'Kijelzés egy sorban', + 'ModelFieldStep' => 'Növekvő lépés:', + 'ModelFieldFileFormat' => 'Fájl formátum:', + 'ModelFieldFileFile' => 'Egyszerű fájl', + 'ModelFieldFileImage' => 'Kép', + 'ModelFieldFileVideo' => 'Videó', + 'ModelFieldFileAudio' => 'Hang', + 'ModelFieldFileProgram' => 'Program', + 'ModelFieldFileUrl' => 'URL', + 'ModelFieldFileEbook' => 'Ebook', + 'ModelOptionsFields' => 'Mezők használata', + 'ModelOptionsFieldsAuto' => 'Automatikus', + 'ModelOptionsFieldsNone' => 'Semmi', + 'ModelOptionsFieldsTitle' => 'Címként', + 'ModelOptionsFieldsId' => 'Azonosítóként', + 'ModelOptionsFieldsCover' => 'Borítóként', + 'ModelOptionsFieldsPlay' => 'Lejátszógomb', + 'ModelCollectionSettings' => 'Gyűjtemény beállítások', + 'ModelCollectionSettingsLending' => 'Kölcsönadható elemek', + 'ModelCollectionSettingsTagging' => 'Cimkézhető elemek', + 'ModelFilterActivated' => 'A keresősávban kell legyen', + 'ModelFilterComparison' => 'Összehasonlítás', + 'ModelFilterContain' => 'Tartalmazza', + 'ModelFilterDoesNotContain' => 'Nem tartalmazza', + 'ModelFilterRegexp' => 'Pontos kifejezés', + 'ModelFilterRange' => 'Sorozat', + 'ModelFilterNumeric' => 'Számalapú összehasonlítás', + 'ModelFilterQuick' => 'Gyorsszűrő létrehozása', + 'ModelTooltipName' => 'Név a modell használatához a további gyűjteményekben. Ha üresen marad, akkor a beállítások közvetlenül a gyűjteményen belül tárolódnak', + 'ModelTooltipLabel' => 'A mező neve, ahogy az meg fog jelenni', + 'ModelTooltipGroup' => 'Mezők csoportosítása. Az érték nélküli elemek az alapértelmezett csoportba kerülnek', + 'ModelTooltipHistory' => 'Az itt megadott értékek a mezőhöz kapcsolt listába kerülnek elmentésre', + 'ModelTooltipFormat' => 'Ez a formátum használatos a megnyitógomb által elindított eseményhez', + 'ModelTooltipLending' => 'Mezők hozzáadása a kölcsönzés-kezelőhöz', + 'ModelTooltipTagging' => 'Mezők hozzáadása a cimke-kezelőhöz', + 'ModelTooltipNumeric' => 'Az értékek az összehasonlításban számként lesznek jelölve', + 'ModelTooltipQuick' => 'Almenü hozzáadása a szűrőkhöz', + + 'ResultsTitle' => 'Elem kijelölése', # Accepts model codes + 'ResultsNextTip' => 'Keresés a következő oldalon', + 'ResultsPreview' => 'Előnézet', + 'ResultsInfo' => 'Több elem hozzáadása lehetséges a gyűjteményhez. Nyomd le a Crtl vagy a Shift gombot, és válassz', # Accepts model codes + + 'OptionsTitle' => 'Beállítások', + 'OptionsExpertMode' => 'Haladó mód', + 'OptionsPrograms' => 'Bizonyos alkalmazások használata különböző médiákhoz, hagyd üresen az alapbeállítások használatához', + 'OptionsBrowser' => 'Böngésző', + 'OptionsPlayer' => 'Videólejátszó', + 'OptionsAudio' => 'Hanglejátszó', + 'OptionsImageEditor' => 'Képszerkesztő', + 'OptionsCdDevice' => 'CD-eszköz', + 'OptionsImages' => 'Képek', + 'OptionsUseRelativePaths' => 'Relatív elérési utak használata a képekhez', + 'OptionsLayout' => 'Elrendezés', + 'OptionsStatus' => 'Állapotjelző mutatása', + 'OptionsUseStars' => 'Csillagok használata az értékelések kijelzéséhez', + 'OptionsWarning' => 'Figyelem: A beállítások csak a program újraindítása után lépnek életbe.', + 'OptionsRemoveConfirm' => 'Kérjen megerősítést az elem törlése előtt', + 'OptionsAutoSave' => 'Gyűjtemény automatikus mentése', + 'OptionsAutoLoad' => 'Előző gyűjtemény betöltése induláskor', + 'OptionsSplash' => 'Bejelentkező képernyő mutatása', + 'OptionsTearoffMenus' => 'Előjegyzési menük engedélyezése', + 'OptionsSpellCheck' => 'Helyesírásellenőrző használata a hosszú, szöveges mezőkhöz', + 'OptionsProgramTitle' => 'Használandó program kiválasztása', + 'OptionsPlugins' => 'Oldal, ahol adatot keres', + 'OptionsAskPlugins' => 'Keres (Minden oldalon)', + 'OptionsPluginsMulti' => 'Több oldalon', + 'OptionsPluginsMultiAsk' => 'Keres (Több oldalon)', + 'OptionsPluginsMultiPerField' => 'Több oldalon (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' => 'Lista beállítása', + 'OptionsAskImport' => 'Importálandó mezők kiválasztása', + 'OptionsProxy' => 'Proxy használata', + 'OptionsCookieJar' => 'Használja ezt a jar-fájlt a cookie-khoz', + 'OptionsLang' => 'Nyelv', + 'OptionsMain' => 'Általános', + 'OptionsPaths' => 'Útvonalak', + 'OptionsInternet' => 'Internet', + 'OptionsConveniences' => 'Tulajdonságok', + 'OptionsDisplay' => 'Megjelenítés', + 'OptionsToolbar' => 'Eszköztár', + 'OptionsToolbars' => {0 => 'Semmi', 1 => 'Kicsi', 2 => 'Nagy', 3 => 'Rendszer beállítás'}, + 'OptionsToolbarPosition' => 'Pozíció', + 'OptionsToolbarPositions' => {0 => 'Fennt', 1 => 'Lennt', 2 => 'Balra', 3 => 'Jobbra'}, + 'OptionsExpandersMode' => 'Túl hosszú kiterjesztések', + 'OptionsExpandersModes' => {'asis' => 'Úgy hagy', 'cut' => 'Kivág', 'wrap' => 'Tördel'}, + 'OptionsDateFormat' => 'Dátum formátuma', + 'OptionsDateFormatTooltip' => 'A strftime(3) által használt dátum. Alapértelmezett %d/%m/%Y', + 'OptionsView' => 'Elemek listája', + 'OptionsViews' => {0 => 'Szöveg', 1 => 'Kép', 2 => 'Részletes'}, + 'OptionsColumns' => 'Oszlopok', + 'OptionsMailer' => 'E-mail kliens', + 'OptionsSMTP' => 'Szerver', + 'OptionsFrom' => 'E-mail cím', + 'OptionsTransform' => 'Névelők helye a címek végén', + 'OptionsArticles' => 'Névelők (vesszővel elválasztva)', + 'OptionsSearchStop' => 'A keresés leállítható', + 'OptionsBigPics' => 'Nagy képek használata, ha lehetséges', + 'OptionsAlwaysOriginal' => 'A fő cím használata eredeti címként, ha az nem elérhető', + 'OptionsRestoreAccelerators' => 'Gyorsítók visszaállítása', + 'OptionsHistory' => 'Előzmények mérete', + 'OptionsClearHistory' => 'Előzmények törlése', + 'OptionsStyle' => 'Felület', + 'OptionsDontAsk' => 'Ne kérdezzen rá többet', + 'OptionsPathProgramsGroup' => 'Alkalmazások', + 'OptionsProgramsSystem' => 'Rendszer által kínált programok használata', + 'OptionsProgramsUser' => 'Egyéni programok használata', + 'OptionsProgramsSet' => 'Programok beállítása', + 'OptionsPathImagesGroup' => 'Képek', + 'OptionsInternetDataGroup' => 'Adat importálás', + 'OptionsInternetSettingsGroup' => 'Beállítások', + 'OptionsDisplayInformationGroup' => 'Információ megjelenítése', + 'OptionsDisplayArticlesGroup' => 'Névelők', + 'OptionsImagesDisplayGroup' => 'Kijelző', + 'OptionsImagesStyleGroup' => 'Stílus', + 'OptionsDetailedPreferencesGroup' => 'Beállítások', + 'OptionsFeaturesConveniencesGroup' => 'Kényelem', + 'OptionsPicturesFormat' => 'Előtag használata képekhez:', + 'OptionsPicturesFormatInternal' => 'gcstar__', + 'OptionsPicturesFormatTitle' => 'Az összekapcsolt elemek címe vagy neve', + 'OptionsPicturesWorkingDir' => '%WORKING_DIR% vagy . lecserélődik a gyűjtemény könyvtárára (csak az elérési út megadásánál használandó)', + 'OptionsPicturesFileBase' => '%FILE_BASE% lecserélődik a gyűjtemény nevére kiterjesztés nélkül (.gcs)', + 'OptionsPicturesWorkingDirError' => '%WORKING_DIR% csak a képek elérési útjának megadásánál használható', + 'OptionsConfigureMailers' => 'Levelezőprogramok beállítása', + + 'ImagesOptionsButton' => 'Beállítások', + 'ImagesOptionsTitle' => 'Képek listájának beállításai', + 'ImagesOptionsSelectColor' => 'Szín kijelölése', + 'ImagesOptionsUseOverlays' => 'Képrátétek használata', + 'ImagesOptionsBg' => 'Háttér', + 'ImagesOptionsBgPicture' => 'Háttérkép használata', + 'ImagesOptionsFg'=> 'Kiválasztás', + 'ImagesOptionsBgTooltip' => 'Háttérszín változtatása', + 'ImagesOptionsFgTooltip'=> 'Kijelölés színének változtatása', + 'ImagesOptionsResizeImgList' => 'Az oszlopok számának automatikus változtatása', + 'ImagesOptionsAnimateImgList' => 'Use animations', + 'ImagesOptionsSizeLabel' => 'Méret', + 'ImagesOptionsSizeList' => {0 => 'Nagyon kicsi', 1 => 'Kicsi', 2 => 'Közepes', 3 => 'Nagy', 4 => 'Nagyon nagy'}, + 'ImagesOptionsSizeTooltip' => 'Képméret kiválasztása', + + 'DetailedOptionsTitle' => 'A részletes lista beállításai', + 'DetailedOptionsImageSize' => 'Képek mérete', + 'DetailedOptionsGroupItems' => 'Elemek csoportosítása', + 'DetailedOptionsSecondarySort' => 'Mezők csoportosítása gyerekeknek', + 'DetailedOptionsFields' => 'A megjelenítendő mezők kiválasztása', + 'DetailedOptionsGroupedFirst' => 'Árva sorok együttartása', + 'DetailedOptionsAddCount' => 'Elemek számának hozzáadása a kategóriákhoz', + + 'ExtractButton' => 'Információ', + 'ExtractTitle' => 'Fájl információ', + 'ExtractImport' => 'Értékek használata', + + 'FieldsListOpen' => 'Mezők listájának betöltése fájlból', + 'FieldsListSave' => 'Mezők listájának mentése fájlba', + 'FieldsListError' => 'A gyűjtemény ezen típusához ez a mezőlista nem használható', + 'FieldsListIgnore' => '--- Mellőz', + + 'ExportTitle' => 'Elemlista exportálása', + 'ExportFilter' => 'Csak a kijelzett elemek exportálása', + 'ExportFieldsTitle' => 'Mezők exportálva', + 'ExportFieldsTip' => 'Válaszd ki az exportálandó elemeket', + 'ExportWithPictures' => 'Képek másolása az alkönyvtárba', + 'ExportSortBy' => 'Rendezés', + 'ExportOrder' => 'Order', + + 'ImportListTitle' => 'Egyéb elemlista importálása', + 'ImportExportData' => 'Adat', + 'ImportExportFile' => 'Fájl', + 'ImportExportFieldsUnused' => 'Nem használt mezők', + 'ImportExportFieldsUsed' => 'Használt mezők', + 'ImportExportFieldsFill' => 'Mindet hozzáad', + 'ImportExportFieldsClear' => 'Mindet eltávolít', + 'ImportExportFieldsEmpty' => 'Legalább egy mezőt kell választanod', + 'ImportExportFileEmpty' => 'Legalább egy fájlnevet meg kell adnod', + 'ImportFieldsTitle' => 'Mezők importálva', + 'ImportFieldsTip' => 'Jelöld ki az importálandó mezőket', + 'ImportNewList' => 'Új gyűjtemény létrehozása', + 'ImportCurrentList' => 'Hozzáadás a jelenlegi gyűjteményhez', + 'ImportDropError' => 'A fájl betöltésekor hiba történt. Az előző lista vissza lesz töltve.', + 'ImportGenerateId' => 'Azonosító létrehozása minden elemhez', + + 'FileChooserOpenFile' => 'Válaszd ki a használandó fájlt!', + 'FileChooserDirectory' => 'Könyvtár', + 'FileChooserOpenDirectory' => 'Könyvtár kiválasztása', + 'FileChooserOverwrite' => 'A fájl már létezik. Felül akarod írni?', + 'FileAllFiles' => 'All Files', + 'FileVideoFiles' => 'Video Files', + 'FileEbookFiles' => 'Ebook Files', + 'FileAudioFiles' => 'Audio Files', + 'FileGCstarFiles' => 'GCstar Collections', + + #Some default panels + 'PanelCompact' => 'Egyszerű', + 'PanelReadOnly' => 'Csak olvasható', + 'PanelForm' => 'Cimkék', + + 'PanelSearchButton' => 'Internetes keresés', + 'PanelSearchTip' => 'Keresés az interneten erre a névre', + 'PanelSearchContextChooseOne' => 'Choose a site ...', + 'PanelSearchContextMultiSite' => 'Use "Many sites"', + 'PanelSearchContextMultiSitePerField' => 'Use "Many sites per field"', + 'PanelSearchContextOptions' => 'Change options ...', + 'PanelImageTipOpen' => 'Kattins a képre a változtatáshoz.', + 'PanelImageTipView' => 'Eredeti mérethez kattints a képre.', + 'PanelImageTipMenu' => ' Jobb klikk a további beállításokhoz.', + 'PanelImageTitle' => 'Kép kiválasztása', + 'PanelImageNoImage' => 'Nincs kép', + 'PanelSelectFileTitle' => 'Fájl kiválasztása', + 'PanelLaunch' => 'Launch', + 'PanelRestoreDefault' => 'Visszaállítás', + 'PanelRefresh' => 'Update', + 'PanelRefreshTip' => 'Update information from web', + + 'PanelFrom' =>'Feladó', + 'PanelTo' =>'Címzett', + + 'PanelWeb' => 'Információk megtekintése', + 'PanelWebTip' => 'Információ megtekintése az interneten erről az elemről', # Accepts model codes + 'PanelRemoveTip' => 'Jelenlegi elem eltávolítása', # Accepts model codes + + 'PanelDateSelect' => 'Kijelöl', + 'PanelNobody' => 'Senki', + 'PanelUnknown' => 'Ismeretlen', + 'PanelAdded' => 'Dátum hozzáadása', + 'PanelRating' => 'Értékelés', + 'PanelPressRating' => 'Press Rating', + 'PanelLocation' => 'Hely', + + 'PanelLending' => 'Kölcsönzés', + 'PanelBorrower' => 'Kölcsönvevő', + 'PanelLendDate' => 'Kölcsönadás ideje', + 'PanelHistory' => 'Kölcsönzési előzmények', + 'PanelReturned' => 'Visszaadva', # Accepts model codes + 'PanelReturnDate' => 'Visszaadás dátuma', + 'PanelLendedYes' => 'Kölcsönadva', + 'PanelLendedNo' => 'Elérhető', + + 'PanelTags' => 'Cimkék', + 'PanelFavourite' => 'Kedvencek', + 'TagsAssigned' => 'Kijelölt cimkék', + + 'PanelUser' => 'User fields', + + 'CheckUndef' => 'Bármelyik', + 'CheckYes' => 'Igen', + 'CheckNo' => 'Nem', + + 'ToolbarAll' => 'Mindent megtekint', + 'ToolbarAllTooltip' => 'Elemek mutatása', + 'ToolbarGroupBy' => 'Csoportosítás', + 'ToolbarGroupByTooltip' => 'Jelöld ki a lista elemeinek csoportosításához használni kívánt mezőt', + 'ToolbarQuickSearch' => 'Gyorskeresés', + 'ToolbarQuickSearchLabel' => 'Keresés', + 'ToolbarQuickSearchTooltip' => 'Válaszd ki azt a mezőt, amiben keresnél. Üsd be a kifejezéseket és nyomj Entert', + 'ToolbarSeparator' => ' Elválasztó', + + 'PluginsTitle' => 'Elem keresése', + 'PluginsQuery' => 'Kérdés', + 'PluginsFrame' => 'Oldal keresése', + 'PluginsLogo' => 'Logó', + 'PluginsName' => 'Név', + 'PluginsSearchFields' => 'Keresési mezők', + 'PluginsAuthor' => 'Szerző', + 'PluginsLang' => 'Nyelv', + 'PluginsUseSite' => 'A kiválasztott oldal használata további keresésekhez', + 'PluginsPreferredTooltip' => 'Site recommended by GCstar', + 'PluginDisabled' => 'Disabled', + + 'BorrowersTitle' => 'Kölcsönvevők beállításai', + 'BorrowersList' => 'Kölcsönvevők', + 'BorrowersName' => 'Név', + 'BorrowersEmail' => 'E-mail cím', + 'BorrowersAdd' => 'Hozzáadás', + 'BorrowersRemove' => 'Eltávolítás', + 'BorrowersEdit' => 'Szerkesztés', + 'BorrowersTemplate' => 'Levélsablon', + 'BorrowersSubject' => 'Levél tárgya', + 'BorrowersNotice1' => '%1 a kölcsönvevő nevére lesz cserélve', + 'BorrowersNotice2' => '%2 az elem címére lesz cserélve', + 'BorrowersNotice3' => '%3 a kölcsönzés dátumára lesz cserélve', + + 'BorrowersImportTitle' => 'Információk importálása a kölcsönvevőkről', + 'BorrowersImportType' => 'Fájlformátum:', + 'BorrowersImportFile' => 'Fájl:', + + 'BorrowedTitle' => 'Kölcsönadott elemek', # Accepts model codes + 'BorrowedDate' => 'Kölcsönadás ideje', + 'BorrowedDisplayInPanel' => 'Elemek megjelenítése a fő ablakban', # Accepts model codes + + 'MailTitle' => 'E-mail küldése', + 'MailFrom' => 'Feladó: ', + 'MailTo' => 'Címzett: ', + 'MailSubject' => 'Tárgy: ', + 'MailSmtpError' => 'Hiba az SMTP szerverhez való kapcsolódáskor', + 'MailSendmailError' => 'Hiba a sendmail futtatásakor', + + 'SearchTooltip' => 'Elemek keresése', # Accepts model codes + 'SearchTitle' => 'Elem keresése', # 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' => 'Mezőcsere', + 'QueryReplaceOld' => 'Jelenlegi érték', + 'QueryReplaceNew' => 'Új érték', + 'QueryReplaceLaunch' => 'Csere', + + 'ImportWindowTitle' => 'Importálandó mezők kiválasztása', + 'ImportViewPicture' => 'Kép megtekintése', + 'ImportSelectAll' => 'Mindent kijelöl', + 'ImportSelectNone' => 'Kijelölés megszüntetése', + + 'MultiSiteTitle' => 'A kereséshez használt oldalak', + 'MultiSiteUnused' => 'Nem használt bővítmények', + 'MultiSiteUsed' => 'Használt bővítmények', + 'MultiSiteLang' => 'Töltse fel a listát a magyar bővítményekkel', + 'MultiSiteEmptyError' => 'A lista üres', + 'MultiSiteClear' => 'Lista törlése', + + 'DisplayOptionsTitle' => 'Megjelenítendő elemek', + 'DisplayOptionsAll' => 'Mindent kijelöl', + 'DisplayOptionsSearch' => 'Keresőgomb', + + 'GenresTitle' => 'Jellemzők konvertálása', + 'GenresCategoryName' => 'Jellemzők használata', + 'GenresCategoryMembers' => 'Jellemzők cseréje', + 'GenresLoad' => 'Lista betöltése', + 'GenresExport' => 'Lista mentése fájlba', + 'GenresModify' => 'Változások szerkesztése', + + 'PropertiesName' => 'Gyűjtemény neve', + 'PropertiesLang' => 'Nyelv kód', + 'PropertiesOwner' => 'Tulajdonos', + 'PropertiesEmail' => 'E-mail cím', + 'PropertiesDescription' => 'Leírás', + 'PropertiesFile' => 'Fájlinformáció', + 'PropertiesFilePath' => 'Elérési út', + 'PropertiesItemsNumber' => 'Elemek száma', # Accepts model codes + 'PropertiesFileSize' => 'Méret', + 'PropertiesFileSizeSymbols' => ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'], + 'PropertiesCollection' => 'Gyűjtemény tulajdonságai', + 'PropertiesDefaultPicture' => 'Alapértelmezett kép', + + 'MailProgramsTitle' => 'Levelezőprogramok', + 'MailProgramsName' => 'Név', + 'MailProgramsCommand' => 'Parancssor', + 'MailProgramsRestore' => 'Visszaállítás', + 'MailProgramsAdd' => 'Program hozzáadása', + 'MailProgramsInstructions' => 'A parancssorban néhány csere történt: + %f kicserélve a felhasználó e-mail címére. + %t kicserélve a címzett e-mail címére. + %s kicserélve az üzenet tárgyára. + %b kicserélve az üzenet tartalmára.', + + 'BookmarksBookmarks' => 'Könyvjelzők', + 'BookmarksFolder' => 'Könyvtárak', + 'BookmarksLabel' => 'Cimke', + 'BookmarksPath' => 'Elérési út', + 'BookmarksNewFolder' => 'Új könyvtár', + + 'AdvancedSearchType' => 'Keresés típusa', + 'AdvancedSearchTypeAnd' => 'Minden kritériumnak megfelelő elemek', # Accepts model codes + 'AdvancedSearchTypeOr' => 'Legalább egy kritériumnak megfelelő elemek', # Accepts model codes + 'AdvancedSearchCriteria' => 'Kritérium', + 'AdvancedSearchAnyField' => 'Bármely mező', + 'AdvancedSearchSaveTitle' => 'Keresés elmentése', + 'AdvancedSearchSaveName' => 'Név', + 'AdvancedSearchSaveOverwrite' => 'Ezzel a névvel már létezik elmentett keresés. Válassz egy másikat.', + 'AdvancedSearchUseCase' => 'Ügyel a nagybetűs írásmódra', + 'AdvancedSearchIgnoreDiacritics' => 'Különleges karakterek mellőzése', + + 'BugReportSubject' => 'Hibajelentés a GCstar-tól', + 'BugReportVersion' => 'Verzió', + 'BugReportPlatform' => 'Operációsrendszer', + 'BugReportMessage' => 'Hibaüzenet', + 'BugReportInformation' => 'További információk', + +#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; |