From 126bb8cb6b93240bb4d3a2b816b74c286c3d422b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 6 Jul 2014 15:20:38 +0200 Subject: Imported Upstream version 1.7.0 --- lib/gcstar/GCLang/ZH/GCExport/GCExportCSV.pm | 40 ++ lib/gcstar/GCLang/ZH/GCExport/GCExportExternal.pm | 38 ++ lib/gcstar/GCLang/ZH/GCExport/GCExportHTML.pm | 64 ++ lib/gcstar/GCLang/ZH/GCExport/GCExportPDB.pm | 38 ++ lib/gcstar/GCLang/ZH/GCExport/GCExportSQL.pm | 40 ++ lib/gcstar/GCLang/ZH/GCExport/GCExportTarGz.pm | 37 ++ lib/gcstar/GCLang/ZH/GCExport/GCExportXML.pm | 41 ++ .../GCLang/ZH/GCImport/GCImportAlexandria.pm | 39 ++ lib/gcstar/GCLang/ZH/GCImport/GCImportCSV.pm | 42 ++ lib/gcstar/GCLang/ZH/GCImport/GCImportFolder.pm | 70 +++ lib/gcstar/GCLang/ZH/GCImport/GCImportGCstar.pm | 37 ++ lib/gcstar/GCLang/ZH/GCImport/GCImportList.pm | 42 ++ lib/gcstar/GCLang/ZH/GCImport/GCImportScanner.pm | 50 ++ lib/gcstar/GCLang/ZH/GCImport/GCImportTellico.pm | 37 ++ lib/gcstar/GCLang/ZH/GCModels/GCTVepisodes.pm | 46 ++ lib/gcstar/GCLang/ZH/GCModels/GCTVseries.pm | 50 ++ lib/gcstar/GCLang/ZH/GCModels/GCboardgames.pm | 86 +++ lib/gcstar/GCLang/ZH/GCModels/GCbooks.pm | 70 +++ lib/gcstar/GCLang/ZH/GCModels/GCcoins.pm | 104 ++++ lib/gcstar/GCLang/ZH/GCModels/GCcomics.pm | 73 +++ lib/gcstar/GCLang/ZH/GCModels/GCfilms.pm | 93 +++ lib/gcstar/GCLang/ZH/GCModels/GCgames.pm | 82 +++ lib/gcstar/GCLang/ZH/GCModels/GCgeneric.pm | 44 ++ lib/gcstar/GCLang/ZH/GCModels/GCminicars.pm | 182 ++++++ lib/gcstar/GCLang/ZH/GCModels/GCmusics.pm | 68 +++ lib/gcstar/GCLang/ZH/GCModels/GCperiodicals.pm | 55 ++ lib/gcstar/GCLang/ZH/GCModels/GCsmartcards.pm | 108 ++++ lib/gcstar/GCLang/ZH/GCModels/GCsoftware.pm | 84 +++ lib/gcstar/GCLang/ZH/GCModels/GCstamps.pm | 192 ++++++ lib/gcstar/GCLang/ZH/GCModels/GCwines.pm | 65 ++ lib/gcstar/GCLang/ZH/GCstar.pm | 654 +++++++++++++++++++++ 31 files changed, 2671 insertions(+) create mode 100644 lib/gcstar/GCLang/ZH/GCExport/GCExportCSV.pm create mode 100644 lib/gcstar/GCLang/ZH/GCExport/GCExportExternal.pm create mode 100644 lib/gcstar/GCLang/ZH/GCExport/GCExportHTML.pm create mode 100644 lib/gcstar/GCLang/ZH/GCExport/GCExportPDB.pm create mode 100644 lib/gcstar/GCLang/ZH/GCExport/GCExportSQL.pm create mode 100644 lib/gcstar/GCLang/ZH/GCExport/GCExportTarGz.pm create mode 100644 lib/gcstar/GCLang/ZH/GCExport/GCExportXML.pm create mode 100644 lib/gcstar/GCLang/ZH/GCImport/GCImportAlexandria.pm create mode 100644 lib/gcstar/GCLang/ZH/GCImport/GCImportCSV.pm create mode 100644 lib/gcstar/GCLang/ZH/GCImport/GCImportFolder.pm create mode 100644 lib/gcstar/GCLang/ZH/GCImport/GCImportGCstar.pm create mode 100644 lib/gcstar/GCLang/ZH/GCImport/GCImportList.pm create mode 100644 lib/gcstar/GCLang/ZH/GCImport/GCImportScanner.pm create mode 100644 lib/gcstar/GCLang/ZH/GCImport/GCImportTellico.pm create mode 100644 lib/gcstar/GCLang/ZH/GCModels/GCTVepisodes.pm create mode 100644 lib/gcstar/GCLang/ZH/GCModels/GCTVseries.pm create mode 100644 lib/gcstar/GCLang/ZH/GCModels/GCboardgames.pm create mode 100644 lib/gcstar/GCLang/ZH/GCModels/GCbooks.pm create mode 100644 lib/gcstar/GCLang/ZH/GCModels/GCcoins.pm create mode 100644 lib/gcstar/GCLang/ZH/GCModels/GCcomics.pm create mode 100644 lib/gcstar/GCLang/ZH/GCModels/GCfilms.pm create mode 100644 lib/gcstar/GCLang/ZH/GCModels/GCgames.pm create mode 100644 lib/gcstar/GCLang/ZH/GCModels/GCgeneric.pm create mode 100644 lib/gcstar/GCLang/ZH/GCModels/GCminicars.pm create mode 100644 lib/gcstar/GCLang/ZH/GCModels/GCmusics.pm create mode 100644 lib/gcstar/GCLang/ZH/GCModels/GCperiodicals.pm create mode 100644 lib/gcstar/GCLang/ZH/GCModels/GCsmartcards.pm create mode 100644 lib/gcstar/GCLang/ZH/GCModels/GCsoftware.pm create mode 100644 lib/gcstar/GCLang/ZH/GCModels/GCstamps.pm create mode 100644 lib/gcstar/GCLang/ZH/GCModels/GCwines.pm create mode 100644 lib/gcstar/GCLang/ZH/GCstar.pm (limited to 'lib/gcstar/GCLang/ZH') diff --git a/lib/gcstar/GCLang/ZH/GCExport/GCExportCSV.pm b/lib/gcstar/GCLang/ZH/GCExport/GCExportCSV.pm new file mode 100644 index 0000000..46ac08a --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCExport/GCExportCSV.pm @@ -0,0 +1,40 @@ +{ + package GCLang::ZH::GCExport::GCExportCSV; + + 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 = ( + 'Header' => '包含頂端的欄位名稱', + 'Separator' => '分隔符號', + 'Replacement' => '用來取代分隔符號', + 'Charset' => '字元集', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCExport/GCExportExternal.pm b/lib/gcstar/GCLang/ZH/GCExport/GCExportExternal.pm new file mode 100644 index 0000000..76b6bce --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCExport/GCExportExternal.pm @@ -0,0 +1,38 @@ +{ + package GCLang::ZH::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/ZH/GCExport/GCExportHTML.pm b/lib/gcstar/GCLang/ZH/GCExport/GCExportHTML.pm new file mode 100644 index 0000000..50fe454 --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCExport/GCExportHTML.pm @@ -0,0 +1,64 @@ +{ + package GCLang::ZH::GCExport::GCExportHTML; + + 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 = ( + 'ModelNotFound' => '無效的模板檔', + 'UseFile' => '使用下方指定的檔案', + 'WithJS' => '使用Javascript', + 'FileTemplate' => '模板', + 'Preview' => '預覽', + 'NoPreview' => '沒有預覽可用', + 'TemplateExternalFile' => '模板檔案', + 'Title' => '頁面標題', + 'InfoFile' => '檔案中的電影列表:', + 'InfoDir' => '圖片在:', + 'HeightImg' => '匯出圖片的高度(像素)', + 'OpenFileInBrowser' => '在瀏覽器打開產生的檔案', + 'Note' => '本列表由GCstar產生', + 'InputTitle' => '輸入搜尋字串', + 'SearchType1' => '只有標題', + 'SearchType2' => '全部資訊', + 'SearchButton' => '搜尋', + 'SearchTitle' => '只顯示匹配條件的電影', + 'AllButton' => '全部', + 'AllTitle' => '顯示全部電影', + 'Expand' => '展開全部', + 'ExpandTitle' => '顯示所有電影訊息', + 'Collapse' => '褶疊全部', + 'CollapseTitle' => '褶疊全部電影資訊', + 'Borrowed' => '被誰借走:', + 'NotBorrowed' => '可用', + 'Top' => '頂端', + 'Bottom' => '底部', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCExport/GCExportPDB.pm b/lib/gcstar/GCLang/ZH/GCExport/GCExportPDB.pm new file mode 100644 index 0000000..9c995c2 --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCExport/GCExportPDB.pm @@ -0,0 +1,38 @@ +{ + package GCLang::ZH::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/ZH/GCExport/GCExportSQL.pm b/lib/gcstar/GCLang/ZH/GCExport/GCExportSQL.pm new file mode 100644 index 0000000..7a9192b --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCExport/GCExportSQL.pm @@ -0,0 +1,40 @@ +{ + package GCLang::ZH::GCExport::GCExportSQL; + + 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 = ( + 'WithDrop' => '包含DROP指引', + 'WithCreate' => '包含CREATE指引', + 'TableName' => '表格名稱', + 'InfoFile' => 'SQL檔案: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCExport/GCExportTarGz.pm b/lib/gcstar/GCLang/ZH/GCExport/GCExportTarGz.pm new file mode 100644 index 0000000..5bbad15 --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCExport/GCExportTarGz.pm @@ -0,0 +1,37 @@ +{ + package GCLang::ZH::GCExport::GCExportTarGz; + + 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 = ( + 'Info' => '檔案中有壓縮檔:', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCExport/GCExportXML.pm b/lib/gcstar/GCLang/ZH/GCExport/GCExportXML.pm new file mode 100644 index 0000000..04c42fb --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCExport/GCExportXML.pm @@ -0,0 +1,41 @@ +{ + package GCLang::ZH::GCExport::GCExportXML; + + 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 = ( + 'ModelFile' => '模板檔案', + 'ModelText' => '模板文字', + 'Models' => '模板使用', + 'UseFile' => '使用檔案', + 'UseModel' => '使用文字區域', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCImport/GCImportAlexandria.pm b/lib/gcstar/GCLang/ZH/GCImport/GCImportAlexandria.pm new file mode 100644 index 0000000..3acc812 --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCImport/GCImportAlexandria.pm @@ -0,0 +1,39 @@ +{ + package GCLang::ZH::GCImport::GCImportAlexandria; + + 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 = ( + 'Where' => '要搜尋哪個位置', + 'Default' => '預設的Alexandria資料夾', + 'Specified' => '在下面指定資料夾', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCImport/GCImportCSV.pm b/lib/gcstar/GCLang/ZH/GCImport/GCImportCSV.pm new file mode 100644 index 0000000..dbcde26 --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCImport/GCImportCSV.pm @@ -0,0 +1,42 @@ +{ + package GCLang::ZH::GCImport::GCImportCSV; + + 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 = ( + 'Charset' => '字元集', + 'Header' => '忽略第一行', + 'Separator' => '分隔符號', + 'Plugin' => '被使用的站點', + 'UseFirst' => '當回傳太多結果時使用第一個', + 'SearchField' => 'Search for items using', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCImport/GCImportFolder.pm b/lib/gcstar/GCLang/ZH/GCImport/GCImportFolder.pm new file mode 100644 index 0000000..5869ab7 --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCImport/GCImportFolder.pm @@ -0,0 +1,70 @@ +{ + package GCLang::ZH::GCImport::GCImportFolder; + + 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'; + use GCLang::GCLangUtils; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Name' => '資料夾', + 'Recursive' => '遞迴掃描子目錄', + 'Suffixes' => '後綴或副檔名', + 'SuffixesTooltip' => '用逗點分隔打算處理的後綴或副檔名列表', + 'Remove' => 'To be removed from names', + 'RemoveTooltip' => 'A comma-seperated list of words that should be removed from file names to create the fetched names', + 'Ask'=> 'Ask', + 'AskEnd'=> 'Ask all at end', + 'AddWithoutInfo'=> 'Add without infos', + 'DontAdd'=> 'Do not add', + 'TakeFirst' => 'Select first', + 'MultipleResult'=> 'Multiple results', + 'MultipleResultTooltip'=> 'What do we do when more than 1 result is return by the plugin', + 'RemoveWholeWord' => 'Remove only whole words', + 'NoResult'=> 'No results', + 'NoResultTooltip'=> 'What do we do when no search results is return by the plugin', + 'RemoveTooltipWholeWord' => 'Words will be removed only if they appear as an entire word', + 'RemoveRegularExpr' => 'Regular expression', + 'RemoveTooltipRegularExpr' => 'Consider that \'To be removed from names\' is a perl regular expression', + 'SkipFileAlreadyInCollection' => 'Add new files only', + 'SkipFileAlreadyInCollectionTooltip' => 'Add only files not already in the collection', + 'SkipFileNo' => 'No', + 'SkipFileFullPath' => 'based on full path', + 'SkipFileFileName' => 'based on file name', + 'SkipFileFileNameAndUpdate' => 'based on file name (but update path in collection)', + 'InfoFromFileNameRegExp' => 'Parse file name with this regular expression', + 'InfoFromFileNameRegExpTooltip' => 'Use this to retrieve infos from filename (applied after removing extension).\nLeave empty if not needed.\nKnown fields : \n$T:Title, $A:Alphabetised title, $Y:Release date, $S:Season, $E:Episode, $N:Alphabetised serie name, $x:Part number, $y: Total part number', + + 'InfoFromFileNameRegExp' => 'Parse file name with this regular expression', + 'InfoFromFileNameRegExpTooltip' => 'Use this to retrieve infos from filename (applied before removing anything).\nLeave empty if not needed.\nKnown fields : $T:Title, $A:Article, $Y:Year, $S:Season, $E:Episode, $N:Serie Name' + ); + + # As this plugin shares some values with ImportList, it adds them from it + importTranslation('List'); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCImport/GCImportGCstar.pm b/lib/gcstar/GCLang/ZH/GCImport/GCImportGCstar.pm new file mode 100644 index 0000000..8629dce --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCImport/GCImportGCstar.pm @@ -0,0 +1,37 @@ +{ + package GCLang::ZH::GCImport::GCImportGCstar; + + 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 = ( + 'CopyPictures' => '複製圖片', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCImport/GCImportList.pm b/lib/gcstar/GCLang/ZH/GCImport/GCImportList.pm new file mode 100644 index 0000000..84b082c --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCImport/GCImportList.pm @@ -0,0 +1,42 @@ +{ + package GCLang::ZH::GCImport::GCImportList; + + 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 = ( + 'Name' => '名稱列表', + 'Plugin' => '被使用的站點', + 'UseFirst' => '當回傳太多結果時使用第一個', + 'CommentAuto' => '項目自動匯入', + 'CommentSite' => '網站:', + 'CommentTitle' => '標題:', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCImport/GCImportScanner.pm b/lib/gcstar/GCLang/ZH/GCImport/GCImportScanner.pm new file mode 100644 index 0000000..833e085 --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCImport/GCImportScanner.pm @@ -0,0 +1,50 @@ +{ + package GCLang::ZH::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/ZH/GCImport/GCImportTellico.pm b/lib/gcstar/GCLang/ZH/GCImport/GCImportTellico.pm new file mode 100644 index 0000000..79ea6ad --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCImport/GCImportTellico.pm @@ -0,0 +1,37 @@ +{ + package GCLang::ZH::GCImport::GCImportTellico; + + 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 = ( + 'NotSupported' => '檔案不是個被支援的Tellico收藏集', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCModels/GCTVepisodes.pm b/lib/gcstar/GCLang/ZH/GCModels/GCTVepisodes.pm new file mode 100644 index 0000000..018ef7e --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCModels/GCTVepisodes.pm @@ -0,0 +1,46 @@ +{ + package GCLang::ZH::GCModels::GCTVepisodes; + + 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 => '電視劇(集)收藏集', + Items => '集', + NewItem => '新章節', + NewSeries => '新系列', + Episode => '集', + ); + # Both of them are required as importTranslation doesn't recurse + importTranslation('films'); + importTranslation('TVseries'); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCModels/GCTVseries.pm b/lib/gcstar/GCLang/ZH/GCModels/GCTVseries.pm new file mode 100644 index 0000000..7c80048 --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCModels/GCTVseries.pm @@ -0,0 +1,50 @@ +{ + package GCLang::ZH::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 => '電視劇(系列)收藏集', + Items => '個系列', + NewItem => '新系列', + Name => '系列名稱', + Season => '季', + Part => 'Part', + Episodes => '集', + FirstAired => '首播', + Time => '每集長度', + Producer => '製片商', + Music => '音樂', + ); + importTranslation('Films'); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCModels/GCboardgames.pm b/lib/gcstar/GCLang/ZH/GCModels/GCboardgames.pm new file mode 100644 index 0000000..78af50d --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCModels/GCboardgames.pm @@ -0,0 +1,86 @@ +{ + package GCLang::ZH::GCModels::GCboardgames; + + 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 => '桌上遊戲收藏集', + Items => {0 => '份遊戲', + 1 => '份遊戲', + X => '份遊戲'}, + NewItem => '新遊戲', + + Id => 'Id', + Name => '名稱', + Original => '原名', + Box => '遊戲盒圖片', + DesignedBy => '設計者', + PublishedBy => '出版商', + Players => '遊玩者人數', + PlayingTime => '遊戲時間', + SuggestedAge => '建議年齡', + Released => '釋出', + Description => '描述', + Category => '分類', + Mechanics => '遊戲機制', + ExpandedBy => '有哪些擴充', + ExpansionFor => '擴充對象', + GameFamily => '遊戲家族', + IllustratedBy => '繪師', + Url => '網頁', + TimesPlayed => '遊玩次數', + CompleteContents => '內容完整', + Copies => 'No. of copies', + Condition => '保存狀態', + Photos => '照片', + Photo1 => '第一張圖片', + Photo2 => '第二張圖片', + Photo3 => '第三張圖片', + Photo4 => '第四張圖片', + Comments => '評論', + + Perfect => '完美', + Good => '良好', + Average => '普通', + Poor => '糟糕', + + CompleteYes => '內容完整', + CompleteNo => '遺失一部份', + + General => '一般', + Details => '項目細節', + Personal => '個人', + Information => '資訊', + + FilterRatingSelect => '評價至少到(_L)...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCModels/GCbooks.pm b/lib/gcstar/GCLang/ZH/GCModels/GCbooks.pm new file mode 100644 index 0000000..3ff732f --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCModels/GCbooks.pm @@ -0,0 +1,70 @@ +{ + package GCLang::ZH::GCModels::GCbooks; + + 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 => '書本收藏集', + Items => {0 => '本書', + 1 => '本書', + X => '本書'}, + NewItem => '新書', + + Isbn => 'ISBN', + Title => '標題', + Cover => '封皮', + Authors => '作者', + Publisher => '出版商', + Publication => '出版日期', + Language => '語言', + Genre => '類型', + Serie => '系列', + Rank => '等級', + Bookdescription => '書籍描述', + Pages => '頁數', + Read => '已讀', + Acquisition => '取得日期', + Edition => '版本', + Format => '格式', + Comments => '評論', + Url => '網頁', + Translator => '譯者', + Artist => '插畫家', + DigitalFile => 'Digital version', + + General => '一般', + Details => '書籍細節', + + ReadNo => '未讀', + ReadYes => '已讀', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCModels/GCcoins.pm b/lib/gcstar/GCLang/ZH/GCModels/GCcoins.pm new file mode 100644 index 0000000..7f611ac --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCModels/GCcoins.pm @@ -0,0 +1,104 @@ +{ + package GCLang::ZH::GCModels::GCcoins; + + 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 => '錢幣收藏集', + Items => {0 => '份錢幣', + 1 => '份錢幣', + X => '份錢幣'}, + NewItem => '新錢幣', + + Name => '名稱', + Country => '國家', + Year => '年份', + Currency => '貨幣', + Value => '價值', + Picture => '主要圖片', + Diameter => '直徑', + Metal => '金屬', + Edge => '邊緣', + Edge1 => '邊緣 1', + Edge2 => '邊緣 2', + Edge3 => '邊緣 3', + Edge4 => '邊緣 4', + Head => '正面(人頭)', + Tail => '反面', + Comments => '評論', + History => '歷史', + Website => '網站', + Estimate => '估價', + References => '參考資料', + Type => '類型', + Coin => '硬幣', + Banknote => '鈔票', + + Main => '主要', + Description => '描述', + Other => '其他訊息', + Pictures => '圖片', + + Condition => '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/ZH/GCModels/GCcomics.pm b/lib/gcstar/GCLang/ZH/GCModels/GCcomics.pm new file mode 100644 index 0000000..0ae5766 --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCModels/GCcomics.pm @@ -0,0 +1,73 @@ +{ + package GCLang::ZH::GCModels::GCcomics; + + 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 => '漫畫收藏集', + Items => {0 => '本漫畫', + 1 => '本漫畫', + X => '本漫畫'}, + NewItem => '新漫畫', + + + Id => 'Id', + Name => '名稱', + Series => '書名', + Volume => '卷號', + Title => '標題', + Writer => '腳本作者', + Illustrator => '繪師', + Colourist => '著色師', + Publisher => '出版商', + Synopsis => '故事提要', + Collection => '收藏', + PublishDate => '出版日期', + PrintingDate => '印刷日期', + ISBN => 'ISBN', + Type => '印刷版本', + Category => '分類', + Format => '格式', + NumberBoards => '印刷批號', + Signing => '簽名', + Cost => '售價', + Rating => '評價', + Comment => '意見', + Url => '網頁', + + FilterRatingSelect => '評價至少到(_L)...', + + Main => '主項目', + General => '一般資訊', + Details => '細節', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCModels/GCfilms.pm b/lib/gcstar/GCLang/ZH/GCModels/GCfilms.pm new file mode 100644 index 0000000..0feb400 --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCModels/GCfilms.pm @@ -0,0 +1,93 @@ +{ + package GCLang::ZH::GCModels::GCfilms; + + 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 => '電影收藏集', + Items => {0 => '部電影', + 1 => '部電影', + X => '部電影'}, + NewItem => '新電影', + + + Id => 'Id', + Title => '名稱', + Date => '日期', + Time => '片長', + Director => '導演', + Country => '國家', + MinimumAge => '最小年齡限制', + Genre => '類型', + Image => '圖片', + Original => '原名', + Actors => '演員', + Actor => '演員', + Role => '角色', + Comment => '評論', + Synopsis => '故事概覽', + Seen => '已觀賞', + Number => '媒體數量', + Format => '媒體格式', + Region => '地區', + Identifier => 'Identifier', + Url => '網頁', + Audio => '聲音', + Video => '影片格式', + Trailer => '預告片', + Serie => '系列', + Rank => '等級', + Subtitles => '字幕', + + SeenYes => '已觀賞', + SeenNo => '還沒看', + + AgeUnrated => '未評級', + AgeAll => '全年齡', + AgeParent => '需要家長陪同', + + Main => '主項目', + General => '一般', + Details => '細節', + + Information => '資訊', + Languages => '語言', + Encoding => '編碼', + + FilterAudienceAge => '觀眾年齡', + FilterSeenNo => '還沒看過(_N)', + FilterSeenYes => '已觀賞(_A)', + FilterRatingSelect => '評價至少到(_L)...', + + ExtractSize => '尺寸', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCModels/GCgames.pm b/lib/gcstar/GCLang/ZH/GCModels/GCgames.pm new file mode 100644 index 0000000..5077a47 --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCModels/GCgames.pm @@ -0,0 +1,82 @@ +{ + package GCLang::ZH::GCModels::GCgames; + + 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 => '電子遊戲收藏集', + Items => {0 => '個遊戲', + 1 => '個遊戲', + X => '個遊戲'}, + NewItem => '新遊戲', + + Id => 'Id', + Ean => 'EAN', + Name => '名稱', + Platform => '平台', + Players => '遊戲人數', + Released => '釋出日期', + Editor => '編輯者', + Developer => '開發者', + Genre => '類型', + Box => '遊戲盒圖片', + Case => '遊戲盒', + Manual => '說明手冊', + Completion => '完成度(%)', + Executable => '可執行檔', + Description => '說明', + Codes => '秘技', + Code => '秘技', + Effect => '效果', + Secrets => '遊戲中的秘密', + Screenshots => '畫面截圖', + Screenshot1 => '第一張截圖', + Screenshot2 => '第二張截圖', + Comments => '評論', + Url => '網頁', + Unlockables => '可被解鎖的隱藏項目', + Unlockable => '項目', + Howto => '作法', + Exclusive => 'Exclusive', + Resolutions => 'Display resolutions', + InstallationSize => 'Size', + Region => 'Region', + SerialNumber => 'Serial Number', + + General => '一般', + Details => '遊戲細節', + Tips => '小技巧', + Information => '訊息', + + FilterRatingSelect => '評價至少到(_L)...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCModels/GCgeneric.pm b/lib/gcstar/GCLang/ZH/GCModels/GCgeneric.pm new file mode 100644 index 0000000..752e883 --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCModels/GCgeneric.pm @@ -0,0 +1,44 @@ +{ + package GCLang::ZH::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', + lowercase1 => 'item', + lowercaseX => 'items' + }, + NewItem => 'New item', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCModels/GCminicars.pm b/lib/gcstar/GCLang/ZH/GCModels/GCminicars.pm new file mode 100644 index 0000000..dd61624 --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCModels/GCminicars.pm @@ -0,0 +1,182 @@ +{ + package GCLang::ZH::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 => 'Nunmber of decorations', + Lwh => 'Length / Width / Height', + Weight => 'Weight', + Framecar => 'Chassis', + Bodycar => 'Bodywork', + Colormirror => 'Model color', + Interior => 'Interior', + Wheels => 'Wheels', + Registrationnumber1 => 'Front registration number', + Registrationnumber2 => 'Back registration number', + RacingCar => 'Racing car', + Course => 'Race', + Courselocation => 'Race place', + Courseyear => 'Race date', + Team => 'Team', + Pilots => 'Pilot(s)', + Copilots => 'Copilot(s)', + Carnumber => 'Vehicle number', + Pub2 => 'Advertisers', + Finishline => 'Finish ranking', + Steeringwheel => 'Position of steering wheel', + + +# Catalogs fields + + Catalogs => 'Catalogs', + + OfficialPicture => 'Official picture', + Barcode => 'Barcode', + Referencemirror => 'Reference', + Year3 => 'Availability date', + CatalogCoverPicture => 'Cover', + CatalogPagePicture => 'Page', + Catalogyear => 'Catalog year', + Catalogedition => 'Catalog edition', + Catalogpage => 'Catalog page', + Catalogprice => 'Catalog price', + Personalref => 'Personal reference', + Websitem => 'Mini vehicle\'s manufacturer website', + Websitec => 'Actual vehicle\'s manufacturer website', + Websiteo => 'Useful link', + Comments3 => 'Comments', + +# Pictures fields + + Pictures => 'Pictures', + + OthersComments => 'General remarks', + OthersDetails => 'Other details', + Top1 => 'Above', + Back1 => 'Below', + AVG => 'Front Left', + AV => 'Front', + AVD => 'Front Right', + G => 'Left', + BOX => 'Box', + D => 'Right', + ARG => 'Back Left', + AR => 'Back', + ARD => 'Back Right', + Others => 'Misc', + +# PanelLending fields + + LendingExplanation => 'Useful exchanges during temporary exhibitions', + PanelLending => 'Lendings (for exhibitions)', + Comments4 => 'Comments', + +# Realmodel fields + + Realmodel => 'Actual vehicle', + + Difference => 'Differences with miniature', + Front2 => 'Front', + Back2 => 'Back', + Comments5 => 'Comments', + + References => 'References', + + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCModels/GCmusics.pm b/lib/gcstar/GCLang/ZH/GCModels/GCmusics.pm new file mode 100644 index 0000000..cae9575 --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCModels/GCmusics.pm @@ -0,0 +1,68 @@ +{ + package GCLang::ZH::GCModels::GCmusics; + + 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 => '音樂收藏集', + Items => {0 => '張專輯', + 1 => '張專輯', + X => '張專輯'}, + NewItem => '新專輯', + + Unique => 'ISRC/EAN', + Title => '標題', + Cover => '封面', + Artist => '藝術家', + Format => '格式', + Running => '播放時間', + Release => '釋出日期', + Genre => '類型', + Origin => '原始作品', + +#For tracks list + Tracks => '曲目列表', + Number => '編號', + Track => '標題', + Time => '時間', + + Composer => '作曲家', + Producer => '製片人', + Playlist => '播放列表', + Comments => '評論', + Label => '標籤', + Url => '網頁', + + General => '一般', + Details => '專輯細節', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCModels/GCperiodicals.pm b/lib/gcstar/GCLang/ZH/GCModels/GCperiodicals.pm new file mode 100644 index 0000000..ea87fcd --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCModels/GCperiodicals.pm @@ -0,0 +1,55 @@ +{ + package GCLang::ZH::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', + lowercase1 => 'periodical', + lowercaseX => '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/ZH/GCModels/GCsmartcards.pm b/lib/gcstar/GCLang/ZH/GCModels/GCsmartcards.pm new file mode 100644 index 0000000..87e449b --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCModels/GCsmartcards.pm @@ -0,0 +1,108 @@ +{ + package GCLang::ZH::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/ZH/GCModels/GCsoftware.pm b/lib/gcstar/GCLang/ZH/GCModels/GCsoftware.pm new file mode 100644 index 0000000..001abfd --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCModels/GCsoftware.pm @@ -0,0 +1,84 @@ +{ + package GCLang::ZH::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/ZH/GCModels/GCstamps.pm b/lib/gcstar/GCLang/ZH/GCModels/GCstamps.pm new file mode 100644 index 0000000..85a9974 --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCModels/GCstamps.pm @@ -0,0 +1,192 @@ +{ + package GCLang::ZH::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', + lowercase1 => 'stamp', + lowercaseX => '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/ZH/GCModels/GCwines.pm b/lib/gcstar/GCLang/ZH/GCModels/GCwines.pm new file mode 100644 index 0000000..cc6e9df --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCModels/GCwines.pm @@ -0,0 +1,65 @@ +{ + package GCLang::ZH::GCModels::GCwines; + + use utf8; + +# Copyright 2007 Yves Martin + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => '葡萄酒收藏', + Items => {0 => '葡萄酒', + 1 => '葡萄酒', + X => '葡萄酒'}, + NewItem => '新的葡萄酒', + + Name => '名稱', + Designation => '稱呼', + Vintage => '製造年份', + Vineyard => '釀造地', + Type => '種類', + Grapes => '葡萄品種', + Soil => '土壤類型', + Producer => '製造者', + Country => '國家', + Volume => '容量(毫升)', + Alcohol => '酒精濃度(%)', + Medal => '獎章', + + Storage => '儲存', + Location => '位置', + ShelfIndex => '架上索引', + Quantity => '數量', + Acquisition => 'Acquisition', + PurchaseDate => '進貨日期', + PurchasePrice => '進貨價格', + Gift => '贈品', + BottleLabel => '瓶上的標籤', + Website => '網路上的參考資料', + + Tasted => '已品嘗', + Comments => '評論', + Serving => '服務', + TastingField => '賞味筆記', + + General => '一般', + Details => '細節', + Tasting => '賞味', + + TastedNo => '未品嘗過', + TastedYes => '已品嘗', + + FilterRange => '範圍', + FilterTastedNo => '還沒品嘗(_N)', + FilterTastedYes => '已經品嘗過了(_t)', + FilterRatingSelect => '評價至少到(_l)...' + + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH/GCstar.pm b/lib/gcstar/GCLang/ZH/GCstar.pm new file mode 100644 index 0000000..93a2ac1 --- /dev/null +++ b/lib/gcstar/GCLang/ZH/GCstar.pm @@ -0,0 +1,654 @@ +{ + package GCLang::ZH; + + 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 = ( + + 'LangName' => '中文(繁體)', + + 'Separator' => ': ', + + 'Warning' => '警告: + +透過插件從網站上下載的資訊僅限於個人使用。 + +沒有獲取額外授權的任何二次轉發行為都是非法的。 + +若想確認哪個網站擁有這些資訊,你可以使用項目細節下的按鈕。', + + 'AllItemsFiltered' => '沒有項目匹配過濾器要求', + +#Installation + 'InstallDirInfo' => '安裝到', + 'InstallMandatory' => '必要元件', + 'InstallOptional' => '選擇元件', + 'InstallErrorMissing' => '錯誤:以下Perl組件必須被安裝:', + 'InstallPrompt' => '安裝的基礎資料夾 [/usr/local]: ', + 'InstallEnd' => '安裝完畢', + 'InstallNoError' => '沒有錯誤', + 'InstallLaunch' => '想使用這個應用程式,請點擊一下', + 'InstallDirectory' => '基礎資料夾', + 'InstallTitle' => 'GCstar 安裝程式', + 'InstallDependencies' => '相依元件', + 'InstallPath' => '路徑', + 'InstallOptions' => '選項', + 'InstallSelectDirectory' => '選擇安裝用的基礎資料夾', + 'InstallWithClean' => '移除安裝資料夾中的檔案', + 'InstallWithMenu' => '將GCstar加入應用程式選單', + 'InstallNoPermission' => '錯誤:你沒有寫入指定資料夾的權限', + 'InstallMissingMandatory' => '必要相依元件不存在。在獲取這些元件前,你不能夠安裝GCstar。', + 'InstallMissingOptional' => '部份選擇相依元件不存在。詳細列表顯示於下。 GCstar或許可以安裝,但部份功能將會失效。', + 'InstallMissingNone' => '沒有任何相依問題,你可以繼續並安裝GCstar', + 'InstallOK' => '完成', + 'InstallMissing' => '不存在', + 'InstallMissingFor' => '不存在', + 'InstallCleanDirectory' => '移除資料夾中的GCstar檔案:', + 'InstallCopyDirectory' => '將檔案拷貝到資料夾:', + 'InstallCopyDesktop' => '複製桌面文件:', + +#Update + 'UpdateUseProxy' => '使用代理(如果沒有使用代理直接按下ENTER):', + 'UpdateNoPermission' => '這個資料夾沒有寫入權限:', + 'UpdateNone' => '沒有發現更新', + 'UpdateFileNotFound' => '檔案不存在', + +#Splash + 'SplashInit' => '初始化', + 'SplashLoad' => '載入收藏集', + 'SplashDisplay' => '正在顯示收藏集', + 'SplashSort' => '排序收藏集', + 'SplashDone' => '準備完成', + +#Import from GCfilms + 'GCfilmsImportQuestion' => '你似乎先前用過GCfilms,你想要匯入GCfilms資料到GCstar中嗎(這不會損傷你的GCfilms資料)?', + 'GCfilmsImportOptions' => '設定', + 'GCfilmsImportData' => '電影列表', + +#Menus + 'MenuFile' => '檔案(_F)', + 'MenuNewList' => '新收藏集(_N)', + 'MenuStats' => 'Statistics', + 'MenuHistory' => '最近使用的收藏集(_R)', + 'MenuLend' => '顯示被借走的東西(_B)', + 'MenuImport' => '匯入(_I)', + 'MenuExport' => '匯出(_E)', + 'MenuAddItem' => '_Add {1}', # Accepts model codes + + 'MenuEdit' => '編輯(_E)', + 'MenuDuplicate' => '複製項目(_p)', + 'MenuDuplicatePlural' => '複製項目(_p)', + 'MenuEditSelectAllItems' => 'Select _All {X}', # Accepts model codes + 'MenuEditDeleteCurrent' => '移除項目(_R)', + 'MenuEditDeleteCurrentPlural' => '移除項目(_R)', + 'MenuEditFields' => '變更收藏集欄位(_C)', + 'MenuEditLockItems' => '鎖定收藏集(_L)', + + 'MenuDisplay' => '過濾器(_i)', + 'MenuSavedSearches' => '儲存搜尋', + 'MenuSavedSearchesSave' => '儲存當前搜尋', + 'MenuSavedSearchesEdit' => '變更已經儲存的搜尋', + 'MenuAdvancedSearch' => '進階搜尋(_d)', + 'MenuViewAllItems' => '顯示全部項目(_A)', + 'MenuNoFilter' => '全部(_A)', + + 'MenuConfiguration' => '設定(_S)', + 'MenuDisplayMenu' => 'Display', + 'MenuDisplayFullScreen' => 'Full screen', + 'MenuDisplayMenuBar' => 'Menus', + 'MenuDisplayToolBar' => 'Toolbar', + 'MenuDisplayStatusBar' => 'Bottom bar', + 'MenuDisplayOptions' => '顯示資訊(_D)', + 'MenuBorrowers' => '出借對象(_B)', + 'MenuToolbarConfiguration' => '工具列控制(_T)', + 'MenuDefaultValues' => 'Default values for new item', # Accepts model codes + 'MenuGenresConversion' => '類型轉換(_C)', + + 'MenuBookmarks' => '我的收藏集(_C)', + 'MenuBookmarksAdd' => '加入當前收藏集(_A)', + 'MenuBookmarksEdit' => '編輯被書籤的收藏集(_E)', + + 'MenuHelp' => '幫助(_H)', + 'MenuHelpContent' => '內容(_C)', + 'MenuAllPlugins' => '檢視插件(_P)', + 'MenuBugReport' => '回報問題', + 'MenuAbout' => '關於GCstar(_A)', + + 'MenuNewWindow' => '在新視窗中顯示項目(_N)', + 'MenuNewWindowPlural' => '在新視窗中顯示項目(_N)', + + 'ContextExpandAll' => '展開全部', + 'ContextCollapseAll' => '收合全部', + 'ContextChooseImage' => '選擇圖片(_I)', + 'ContextOpenWith' => '以指定程式開啟(_h)...', + 'ContextImageEditor' => 'Image Editor', + 'ContextImgFront' => '封面', + 'ContextImgBack' => '封底', + 'ContextChooseFile' => '請選擇要使用的檔案', + 'ContextChooseFolder' => '選擇一個資料夾', + + 'DialogEnterNumber' => '請輸入數值', + + 'RemoveConfirm' => '你確定要移除這個項目?', + 'RemoveConfirmPlural' => '你確定要移除這個項目?', + 'DefaultNewItem' => '新項目', + 'NewItemTooltip' => '加入一個新項目', + 'NoItemFound' => '沒有發現,想要搜尋其他站點嗎?', + 'OpenList' => '請選擇收藏集', + 'SaveList' => '請選擇要將這個收藏集保存在哪裡?', + 'SaveListTooltip' => '保存當前的收藏集', + 'SaveUnsavedChanges' => '你收藏集中的變更還未儲存,現在儲存嗎?', + 'SaveDontSave' => '不儲存', + 'PreferencesTooltip' => '設定偏好', + 'ViewTooltip' => '改變收藏集顯示', + 'PlayTooltip' => '針對項目啟動檔案關聯(通常是播放的意思)', + 'PlayFileNotFound' => '在指定位置上沒有發現目標檔案:', + 'PlayRetry' => '重試', + + 'StatusSave' => '儲存中...', + 'StatusLoad' => '載入中...', + 'StatusSearch' => '搜尋正在進行...', + 'StatusGetInfo' => '取得資訊...', + 'StatusGetImage' => '取得圖片...', + + 'SaveError' => '不能儲存項目列表,請檢查檔案存取權限與剩餘磁碟空間。', + 'OpenError' => '不能開啟項目列表,請檢查檔案存取權限。', + 'OpenFormatError' => '不能開啟項目列表,因為檔案格式不正確。', + 'OpenVersionWarning' => '本收藏集由更新版本的GCstar建立。如果你儲存,你可能會失去某些訊息。', + 'OpenVersionQuestion' => '你依然想繼續嗎?', + 'ImageError' => '選擇儲存圖片的資料夾不正確,請選擇另一個。', + 'OptionsCreationError'=> '不能建立設定檔。', + 'OptionsOpenError'=> '不能打開設定檔:', + 'OptionsSaveError'=> '不能儲存設定檔:', + 'ErrorModelNotFound' => '未發現模組:', + 'ErrorModelUserDir' => '使用者定義模組在:', + + 'RandomTooltip' => 'What to see this evening ?', + 'RandomError'=> '沒有項目可供選擇', + 'RandomEnd'=> '沒有更多項目', + 'RandomNextTip'=> '下一個建議', + 'RandomOkTip'=> '接受這個項目', + + 'AboutTitle' => '關於GCstar', + 'AboutDesc' => '個人收藏品管理器', + 'AboutVersion' => '版本', + 'AboutTeam' => '團隊', + 'AboutWho' => 'Christian Jodar (Tian): Project manager, Programmer +Nyall Dawson (Zombiepig): Programmer +TPF: Programmer +Adolfo González: Programmer +', + 'AboutLicense' => '以GNU GPL授權發佈 +Logos Copyright le Spektre', + 'AboutTranslation' => '中文翻譯由林雪凡製作 +http://wfst.blogspot.com', + 'AboutDesign' => 'Łukasz Kowalczk (Qoolman): Skin Designer +Logo和網路設計: le Spektre', + + 'UnsavedCollection' => '未儲存的收藏集', + 'ModelsSelect' => '選擇一個收藏集類型', + 'ModelsPersonal' => '個人模組', + 'ModelsDefault' => '預設模組', + 'ModelsList' => '收藏集定義', + 'ModelSettings' => '收藏集設定', + 'ModelNewType' => '新的收藏集類型', + 'ModelName' => '收藏集類型的名字:', + 'ModelFields' => '欄位', + 'ModelOptions' => '選項', + 'ModelFilters' => '過濾器', + 'ModelNewField' => '新欄位', + 'ModelFieldInformation' => '資訊', + 'ModelFieldName' => '欄位名稱:', + 'ModelFieldType' => '類型:', + 'ModelFieldGroup' => '組別:', + 'ModelFieldValues' => '值', + 'ModelFieldInit' => '預設:', + 'ModelFieldMin' => '最小:', + 'ModelFieldMax' => '最大:', + 'ModelFieldList' => '列表:', + 'ModelFieldListLegend' => '用半形逗號分隔', + 'ModelFieldDisplayAs' => '顯示成:', + 'ModelFieldDisplayAsText' => '文字', + 'ModelFieldDisplayAsGraphical' => '評分條', + 'ModelFieldTypeShortText' => '短文字', + 'ModelFieldTypeLongText' => '長文字', + 'ModelFieldTypeYesNo' => '布林值', + 'ModelFieldTypeNumber' => '數字', + 'ModelFieldTypeDate' => '日期', + 'ModelFieldTypeOptions' => '預定義選擇列表', + 'ModelFieldTypeImage' => '圖片', + 'ModelFieldTypeSingleList' => '簡表', + 'ModelFieldTypeFile' => '檔案', + 'ModelFieldTypeFormatted' => '依賴其他欄位', + 'ModelFieldParameters' => '變數', + 'ModelFieldHasHistory' => '使用歷史資訊', + 'ModelFieldFlat' => '單行顯示', + 'ModelFieldStep' => '累進增加:', + 'ModelFieldFileFormat' => '檔案格式:', + 'ModelFieldFileFile' => '一般檔案', + 'ModelFieldFileImage' => '圖片', + 'ModelFieldFileVideo' => '影片', + 'ModelFieldFileAudio' => '音訊', + 'ModelFieldFileProgram' => '程式', + 'ModelFieldFileUrl' => '統一資源定義符(URL)', + 'ModelFieldFileEbook' => 'Ebook', + 'ModelOptionsFields' => '使用欄位', + 'ModelOptionsFieldsAuto' => '自動', + 'ModelOptionsFieldsNone' => '無', + 'ModelOptionsFieldsTitle' => '作為標題', + 'ModelOptionsFieldsId' => '作為ID', + 'ModelOptionsFieldsCover' => '作為封面', + 'ModelOptionsFieldsPlay' => '連給播放按鈕', + 'ModelCollectionSettings' => '收藏集設定', + 'ModelCollectionSettingsLending' => '可被借出', + 'ModelCollectionSettingsTagging' => '可加標籤', + 'ModelFilterActivated' => '收錄進搜尋盒內', + 'ModelFilterComparison' => '比較', + 'ModelFilterContain' => '含有', + 'ModelFilterDoesNotContain' => '未含有', + 'ModelFilterRegexp' => '正則表示式', + 'ModelFilterRange' => '範圍', + 'ModelFilterNumeric' => '以數字比較', + 'ModelFilterQuick' => '建立一個快速過濾器', + 'ModelTooltipName' => '建立名字以供其他收藏集使用。如果空白,相關設定會直接儲存在收藏集裡面。', + 'ModelTooltipLabel' => '用來顯示的欄位名稱', + 'ModelTooltipGroup' => '供欄位的分組使用,不設定會將欄位歸入預設分組', + 'ModelTooltipHistory' => '過去的輸入值將會被建成列表供選擇', + 'ModelTooltipFormat' => '格式將會決定播放按鈕關聯到什麼程式', + 'ModelTooltipLending' => '這會在收藏集裡加入一些欄位來管理借出資訊', + 'ModelTooltipTagging' => '這會加入一些欄位來管理標籤', + 'ModelTooltipNumeric' => '這個值將會被當作數字來比較', + 'ModelTooltipQuick' => 'This will add a submenu in the Filters one', + + 'ResultsTitle' => '選擇一個項目', + 'ResultsNextTip' => '搜尋下一個網站', + 'ResultsPreview' => '預覽', + 'ResultsInfo' => '藉由按住Ctrl或shift鍵,你可以加入多個項目到收藏集中', + + 'OptionsTitle' => '偏好設定', + 'OptionsExpertMode' => '專家模式', + 'OptionsPrograms' => '對不同類型的檔案用不同的程式開啟,若留白則使用系統預設值', + 'OptionsBrowser' => '網頁瀏覽器', + 'OptionsPlayer' => '影片播放器', + 'OptionsAudio' => '音訊播放器', + 'OptionsImageEditor' => '影像編輯器', + 'OptionsCdDevice' => 'CD裝置', + 'OptionsImages' => '圖片資料夾', + 'OptionsUseRelativePaths' => '對圖片使用相對路徑', + 'OptionsLayout' => '視窗佈局方式', + 'OptionsStatus' => '顯示狀態條', + 'OptionsUseStars' => '使用星號來顯示評分', + 'OptionsWarning' => '警告:改變這個標籤頁後必須要重啟程式才會生效。', + 'OptionsRemoveConfirm' => '在項目刪除前要求確認', + 'OptionsAutoSave' => '自動儲存收藏集', + 'OptionsAutoLoad' => '在啟動時載入先前的收藏集', + 'OptionsSplash' => '顯示啟動畫面', + 'OptionsTearoffMenus' => '允許撕開選單', + 'OptionsSpellCheck' => '在長文字欄位使用語法檢查', + 'OptionsProgramTitle' => '選擇使用的程式', + 'OptionsPlugins' => '從哪些網站取得項目資料', + 'OptionsAskPlugins' => '詢問 (全部網站)', + 'OptionsPluginsMulti' => '多數網站', + 'OptionsPluginsMultiAsk' => '詢問 (多數網站)', + 'OptionsPluginsMultiPerField' => 'Many sites (per field)', + 'OptionsPluginsMultiPerFieldWindowTitle' => 'Many sites per field order selection', + 'OptionsPluginsMultiPerFieldDesc' => 'For each field we will fill the field with the first non empty information beginning from left', + 'OptionsPluginsMultiPerFieldFirst' => 'First', + 'OptionsPluginsMultiPerFieldLast' => 'Last', + 'OptionsPluginsMultiPerFieldRemove' => 'Remove', + 'OptionsPluginsMultiPerFieldClearSelected' => 'Empty selected field list', + 'OptionsPluginsList' => '設定列表', + 'OptionsAskImport' => '選擇欄位來匯入', + 'OptionsProxy' => '使用代理', + 'OptionsCookieJar' => '使用cookie jar檔案', + 'OptionsLang' => '語言', + 'OptionsMain' => '主要', + 'OptionsPaths' => '路徑', + 'OptionsInternet' => '網際網路', + 'OptionsConveniences' => '其他特徵', + 'OptionsDisplay' => '顯示', + 'OptionsToolbar' => '工具列', + 'OptionsToolbars' => {0 => '無', 1 => '小', 2 => '大', 3 => '系統設定'}, + 'OptionsToolbarPosition' => '位置', + 'OptionsToolbarPositions' => {0 => '上', 1 => '下', 2 => '左', 3 => '右'}, + 'OptionsExpandersMode' => '過長的文字', + 'OptionsExpandersModes' => {'asis' => '不管它', 'cut' => '切斷', 'wrap' => '自動換行'}, + 'OptionsDateFormat' => '日期格式', + 'OptionsDateFormatTooltip' => '使用strftime(3)格式,預設值為%d/%m/%Y', + 'OptionsView' => '項目列表', + 'OptionsViews' => {0 => '文字', 1 => '圖片', 2 => '細節'}, + 'OptionsColumns' => '欄', + 'OptionsMailer' => '寄件程式', + 'OptionsSMTP' => '伺服器', + 'OptionsFrom' => '你的e-mail', + 'OptionsTransform' => 'Place articles at the end of titles', + 'OptionsArticles' => 'Articles (用逗點分開)', + 'OptionsSearchStop' => '允許搜尋被放棄', + 'OptionsBigPics' => '在可以的狀況下使用大圖片', + 'OptionsAlwaysOriginal' => 'Use main title as the original title if none present', + 'OptionsRestoreAccelerators' => 'Restore accelerators', + 'OptionsHistory' => '歷史大小', + 'OptionsClearHistory' => '清除歷史', + 'OptionsStyle' => '面板', + 'OptionsDontAsk' => '別再詢問', + 'OptionsPathProgramsGroup' => 'Applications', + 'OptionsProgramsSystem' => '使用系統定義的程式', + 'OptionsProgramsUser' => '複寫預設的程式', + 'OptionsProgramsSet' => '設定程式', + 'OptionsPathImagesGroup' => '圖片', + 'OptionsInternetDataGroup' => '資料匯入', + 'OptionsInternetSettingsGroup' => '設定', + 'OptionsDisplayInformationGroup' => '訊息顯示方式', + 'OptionsDisplayArticlesGroup' => 'Articles', + 'OptionsImagesDisplayGroup' => '顯示', + 'OptionsImagesStyleGroup' => '風格', + 'OptionsDetailedPreferencesGroup' => '偏好設定', + 'OptionsFeaturesConveniencesGroup' => 'Conveniences', + 'OptionsPicturesFormat' => '圖片前綴:', + 'OptionsPicturesFormatInternal' => 'gcstar__', + 'OptionsPicturesFormatTitle' => '關聯項目的標題或名字', + 'OptionsPicturesWorkingDir' => '%WORKING_DIR% 或 . 被用來代指收藏集資料夾(在路徑的開始處)', + 'OptionsPicturesFileBase' => '%FILE_BASE% 被用來代指沒有後綴的收藏集檔名(.gcs)', + 'OptionsPicturesWorkingDirError' => '%WORKING_DIR% 只能被用在圖片路徑的開頭', + 'OptionsConfigureMailers' => '設定郵件程式', + + 'ImagesOptionsButton' => '設定', + 'ImagesOptionsTitle' => '設定圖片列表', + 'ImagesOptionsSelectColor' => '選擇一個顏色', + 'ImagesOptionsUseOverlays' => '使用圖像層疊', + 'ImagesOptionsBg' => '背景', + 'ImagesOptionsBgPicture' => '使用背景圖片', + 'ImagesOptionsFg'=> '選擇', + 'ImagesOptionsBgTooltip' => '改變背景色', + 'ImagesOptionsFgTooltip'=> '改變選擇顏色', + 'ImagesOptionsResizeImgList' => '自動改變欄的數字', + 'ImagesOptionsAnimateImgList' => 'Use animations', + 'ImagesOptionsSizeLabel' => '尺寸', + 'ImagesOptionsSizeList' => {0 => '極小', 1 => '小', 2 => '中', 3 => '大', 4 => '極大'}, + 'ImagesOptionsSizeTooltip' => '選擇圖片尺寸', + + 'DetailedOptionsTitle' => '設定細節列表', + 'DetailedOptionsImageSize' => '圖片尺寸', + 'DetailedOptionsGroupItems' => '項目分組依據', + 'DetailedOptionsSecondarySort' => 'Sort field for children', + 'DetailedOptionsFields' => 'Select fields to display', + 'DetailedOptionsGroupedFirst' => 'Keep together orphaned items', + 'DetailedOptionsAddCount' => 'Add number of elements on categories', + + 'ExtractButton' => '訊息', + 'ExtractTitle' => '檔案訊息', + 'ExtractImport' => '使用值', + + 'FieldsListOpen' => '從檔案載入欄位列表', + 'FieldsListSave' => '儲存欄位列表到檔案', + 'FieldsListError' => '這個欄位列表不能被用在這個類型的收藏集上', + 'FieldsListIgnore' => '--- 忽略', + + 'ExportTitle' => '匯出項目列表', + 'ExportFilter' => '僅匯出顯示的項目', + 'ExportFieldsTitle' => '欄位被匯出', + 'ExportFieldsTip' => '選擇你想匯出的欄位', + 'ExportWithPictures' => '複製子目錄中的圖片', + 'ExportSortBy' => '排序依據', + 'ExportOrder' => 'Order', + + 'ImportListTitle' => '匯入另一個項目列表', + 'ImportExportData' => '資料', + 'ImportExportFile' => '檔案', + 'ImportExportFieldsUnused' => '未使用欄位', + 'ImportExportFieldsUsed' => '使用欄位', + 'ImportExportFieldsFill' => '添加全部', + 'ImportExportFieldsClear' => '移除全部', + 'ImportExportFieldsEmpty' => '你至少必須選擇一個欄位', + 'ImportExportFileEmpty' => '你必須指定一個檔案名稱', + 'ImportFieldsTitle' => '要導入的欄位', + 'ImportFieldsTip' => '選擇你想匯入的欄位', + 'ImportNewList' => '建立一個新的收藏集', + 'ImportCurrentList' => '加入當前的收藏集', + 'ImportDropError' => 'There was an error opening at least one file. Previous list will be reloaded.', + 'ImportGenerateId' => '對每個項目產生ID', + + 'FileChooserOpenFile' => '請選擇要使用的檔案', + 'FileChooserDirectory' => '資料夾', + 'FileChooserOpenDirectory' => '選擇一個資料夾', + 'FileChooserOverwrite' => '這個檔案已經存在,你要複寫它嗎?', + 'FileAllFiles' => 'All Files', + 'FileVideoFiles' => 'Video Files', + 'FileEbookFiles' => 'Ebook Files', + 'FileAudioFiles' => 'Audio Files', + 'FileGCstarFiles' => 'GCstar Collections', + + #Some default panels + 'PanelCompact' => '緊密', + 'PanelReadOnly' => '唯讀', + 'PanelForm' => '分頁', + + 'PanelSearchButton' => '獲取資訊', + 'PanelSearchTip' => '搜尋網路上關於這個名字的資訊', + 'PanelSearchContextChooseOne' => 'Choose a site ...', + 'PanelSearchContextMultiSite' => 'Use "Many sites"', + 'PanelSearchContextMultiSitePerField' => 'Use "Many sites per field"', + 'PanelSearchContextOptions' => 'Change options ...', + 'PanelImageTipOpen' => '點擊圖片以選擇另一個。', + 'PanelImageTipView' => '點擊圖片瀏覽真實尺寸。', + 'PanelImageTipMenu' => ' 更多選擇請按右鍵', + 'PanelImageTitle' => '選擇一張圖片', + 'PanelImageNoImage' => '沒有圖片', + 'PanelSelectFileTitle' => '選擇一個檔案', + 'PanelLaunch' => 'Launch', + 'PanelRestoreDefault' => '復原到預設值', + 'PanelRefresh' => 'Update', + 'PanelRefreshTip' => 'Update information from web', + + 'PanelFrom' =>'From', + 'PanelTo' =>'To', + + 'PanelWeb' => '瀏覽資訊', + 'PanelWebTip' => '瀏覽網路上關於這個項目的資訊', + 'PanelRemoveTip' => '移除當前項目', + + 'PanelDateSelect' => '選擇', + 'PanelNobody' => '沒有人', + 'PanelUnknown' => '未知', + 'PanelAdded' => '加入日期', + 'PanelRating' => '評價', + 'PanelPressRating' => 'Press Rating', + 'PanelLocation' => '位置', + + 'PanelLending' => '出借狀況', + 'PanelBorrower' => '借出對象', + 'PanelLendDate' => '出借日期', + 'PanelHistory' => '出借記錄', + 'PanelReturned' => '物品歸還', + 'PanelReturnDate' => '歸還日期', + 'PanelLendedYes' => '出借中', + 'PanelLendedNo' => '可用', + + 'PanelTags' => '標籤', + 'PanelFavourite' => '最愛', + 'TagsAssigned' => '標籤', + + 'PanelUser' => '使用者欄位', + + 'CheckUndef' => '未定義', + 'CheckYes' => '是', + 'CheckNo' => '不是', + + 'ToolbarRandom' => 'Tonight', + 'ToolbarAll' => '瀏覽全部', + 'ToolbarAllTooltip' => '瀏覽全部項目', + 'ToolbarGroupBy' => '分組依據', + 'ToolbarGroupByTooltip' => '選擇一個欄位給項目列表分組', + 'ToolbarQuickSearch' => '快速搜尋', + 'ToolbarQuickSearchLabel' => '搜尋', + 'ToolbarQuickSearchTooltip' => '選擇這個欄位來搜尋,輸入要搜尋的字串後按ENTER。', + 'ToolbarSeparator' => '分隔', + + 'PluginsTitle' => '搜尋一個項目', + 'PluginsQuery' => '查詢', + 'PluginsFrame' => '搜尋站點', + 'PluginsLogo' => 'Logo', + 'PluginsName' => '名字', + 'PluginsSearchFields' => '搜尋欄位', + 'PluginsAuthor' => '作者', + 'PluginsLang' => '語言', + 'PluginsUseSite' => '使用被選擇的站點供未來搜尋', + 'PluginsPreferredTooltip' => 'Site recommended by GCstar', + 'PluginDisabled' => 'Disabled', + + 'BorrowersTitle' => '出借對象設定', + 'BorrowersList' => '出借對象', + 'BorrowersName' => '名字', + 'BorrowersEmail' => 'E-mail', + 'BorrowersAdd' => '加入', + 'BorrowersRemove' => '移除', + 'BorrowersEdit' => '編輯', + 'BorrowersTemplate' => '郵件模板', + 'BorrowersSubject' => '郵件主題', + 'BorrowersNotice1' => '%1 將會被取代為出借對象的名字', + 'BorrowersNotice2' => '%2 將會被取代為物品名稱', + 'BorrowersNotice3' => '%3 將會被取代為出借日期', + + 'BorrowersImportTitle' => '匯入出借對象的資訊', + 'BorrowersImportType' => '檔案格式:', + 'BorrowersImportFile' => '檔案:', + + 'BorrowedTitle' => '被借走的東西', + 'BorrowedDate' => '從', + 'BorrowedDisplayInPanel' => '在主視窗顯示物品', + + 'MailTitle' => '發一封e-mail', + 'MailFrom' => '寄件人:', + 'MailTo' => '收件人:', + 'MailSubject' => '主旨:', + 'MailSmtpError' => '連線到SMTP伺服器時出現問題', + 'MailSendmailError' => '寄送信件時出現問題', + + 'SearchTooltip' => '搜尋所有項目', + 'SearchTitle' => '項目搜尋', + 'SearchNoField' => 'No field have been selected for the search box. +Add some of them in the Filters tab of the collection settings.', + + 'QueryReplaceField' => '欄位取代', + 'QueryReplaceOld' => '當前值', + 'QueryReplaceNew' => '新值', + 'QueryReplaceLaunch' => '取代', + + 'ImportWindowTitle' => '選擇要匯入的欄位', + 'ImportViewPicture' => '瀏覽圖片', + 'ImportSelectAll' => '全選', + 'ImportSelectNone' => '全部不選', + + 'MultiSiteTitle' => '用來搜尋的網站', + 'MultiSiteUnused' => '未使用的插件', + 'MultiSiteUsed' => '被使用的插件', + 'MultiSiteLang' => 'Fill list with English plugins', + 'MultiSiteEmptyError' => '你的站點列表為空', + 'MultiSiteClear' => '清除列表', + + 'DisplayOptionsTitle' => 'Items to display', + 'DisplayOptionsAll' => '全選', + 'DisplayOptionsSearch' => '選擇鈕', + + 'GenresTitle' => 'Genre Conversion', + 'GenresCategoryName' => 'Genre to use', + 'GenresCategoryMembers' => 'Genre to replace', + 'GenresLoad' => '讀取一個列表', + 'GenresExport' => '將列表存到檔案', + 'GenresModify' => '編輯轉換', + + 'PropertiesName' => '收藏集名稱', + 'PropertiesLang' => '語言編碼', + 'PropertiesOwner' => '擁有者', + 'PropertiesEmail' => 'Email', + 'PropertiesDescription' => '描述', + 'PropertiesFile' => '檔案訊息', + 'PropertiesFilePath' => '完整路徑', + 'PropertiesItemsNumber' => '項目數目', + 'PropertiesFileSize' => '大小', + 'PropertiesFileSizeSymbols' => ['位元組', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'], + 'PropertiesCollection' => '收藏集屬性', + 'PropertiesDefaultPicture' => '預設圖片', + + 'MailProgramsTitle' => '寄件軟體', + 'MailProgramsName' => '名字', + 'MailProgramsCommand' => '指令行', + 'MailProgramsRestore' => '回復預設值', + 'MailProgramsAdd' => '加入一個程式', + 'MailProgramsInstructions' => '在指令行中,你可以用下面的變數來替換: + %f 可被替換為使用者的電子郵件地址。 + %t 可被替換為接收地址。 + %s 可被替換為郵件主題。 + %b 可被替換為郵件訊息。', + + 'BookmarksBookmarks' => '書籤', + 'BookmarksFolder' => '資料夾', + 'BookmarksLabel' => '書籤名', + 'BookmarksPath' => '路徑', + 'BookmarksNewFolder' => '新資料夾', + + 'AdvancedSearchType' => '搜尋類型', + 'AdvancedSearchTypeAnd' => '項目匹配所有條件', + 'AdvancedSearchTypeOr' => '項目匹配至少一個條件', + 'AdvancedSearchCriteria' => '條件', + 'AdvancedSearchAnyField' => '所有欄位', + 'AdvancedSearchSaveTitle' => '儲存搜尋', + 'AdvancedSearchSaveName' => '名稱', + 'AdvancedSearchSaveOverwrite' => '一個使用相同名字的搜尋已經存在,請使用另一個名字。', + 'AdvancedSearchUseCase' => '大小寫敏感', + 'AdvancedSearchIgnoreDiacritics' => '忽略重音等發音記號', + + 'BugReportSubject' => 'GCstar產生錯誤回報', + 'BugReportVersion' => '版本', + 'BugReportPlatform' => '作業系統', + 'BugReportMessage' => '錯誤訊息', + 'BugReportInformation' => '附加資訊', + +#Statistics + 'StatsFieldToUse' => 'Field to use', + 'StatsSortByNumber' => 'Sort by number of {lowercaseX}', + 'StatsGenerate' => 'Generate', + 'StatsKindOfGraph' => 'Kind of graphic', + 'StatsBars' => 'Bars', + 'StatsPie' => 'Pie', + 'Stats3DPie' => '3D Pie', + 'StatsArea' => 'Areas', + 'StatsHistory' => 'History', + 'StatsWidth' => 'Width', + 'StatsHeight' => 'Height', + 'StatsFontSize' => 'Font size', + 'StatsDisplayNumber' => 'Show numbers', + 'StatsSave' => 'Save statistics image to a file', + 'StatsAccumulate' => 'Accumulate values', + 'StatsShowAllDates' => 'Show all dates', + + 'DefaultValuesTip' => 'Values set in this window will be used as the default values when creating a new {lowercase1}', + ); +} +1; -- cgit v1.2.3