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 --- .../GCLang/ZH_CN/GCImport/GCImportAlexandria.pm | 39 ++++++++++++ lib/gcstar/GCLang/ZH_CN/GCImport/GCImportCSV.pm | 42 +++++++++++++ lib/gcstar/GCLang/ZH_CN/GCImport/GCImportFolder.pm | 70 ++++++++++++++++++++++ lib/gcstar/GCLang/ZH_CN/GCImport/GCImportGCstar.pm | 37 ++++++++++++ lib/gcstar/GCLang/ZH_CN/GCImport/GCImportList.pm | 42 +++++++++++++ .../GCLang/ZH_CN/GCImport/GCImportScanner.pm | 50 ++++++++++++++++ .../GCLang/ZH_CN/GCImport/GCImportTellico.pm | 37 ++++++++++++ 7 files changed, 317 insertions(+) create mode 100644 lib/gcstar/GCLang/ZH_CN/GCImport/GCImportAlexandria.pm create mode 100644 lib/gcstar/GCLang/ZH_CN/GCImport/GCImportCSV.pm create mode 100644 lib/gcstar/GCLang/ZH_CN/GCImport/GCImportFolder.pm create mode 100644 lib/gcstar/GCLang/ZH_CN/GCImport/GCImportGCstar.pm create mode 100644 lib/gcstar/GCLang/ZH_CN/GCImport/GCImportList.pm create mode 100644 lib/gcstar/GCLang/ZH_CN/GCImport/GCImportScanner.pm create mode 100644 lib/gcstar/GCLang/ZH_CN/GCImport/GCImportTellico.pm (limited to 'lib/gcstar/GCLang/ZH_CN/GCImport') diff --git a/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportAlexandria.pm b/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportAlexandria.pm new file mode 100644 index 0000000..3ac70f4 --- /dev/null +++ b/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportAlexandria.pm @@ -0,0 +1,39 @@ +{ + package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Where' => '要搜索哪個位置', + 'Default' => '默认的Alexandria目录', + 'Specified' => '指定目录', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportCSV.pm b/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportCSV.pm new file mode 100644 index 0000000..6850d92 --- /dev/null +++ b/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportCSV.pm @@ -0,0 +1,42 @@ +{ + package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Charset' => '编码', + 'Header' => '忽略第一行', + 'Separator' => '分隔符', + 'Plugin' => '使用网站', + 'UseFirst' => '当结果太多时使用第一个', + 'SearchField' => '搜索项目时使用', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportFolder.pm b/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportFolder.pm new file mode 100644 index 0000000..33040c1 --- /dev/null +++ b/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportFolder.pm @@ -0,0 +1,70 @@ +{ + package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +################################################### + + use strict; + use base 'Exporter'; + use GCLang::GCLangUtils; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Name' => '目录', + 'Recursive' => '递归搜索子目录', + 'Suffixes' => '后缀名', + 'SuffixesTooltip' => '用逗号分隔打算处理的后缀列表', + 'Remove' => '从名称中删除', + 'RemoveTooltip' => '用逗号分隔要从名称中删除的文字列表', + 'Ask'=> '询问', + 'AskEnd'=> '最后一起询问', + 'AddWithoutInfo'=> '添加,不包括信息', + 'DontAdd'=> '不添加', + 'TakeFirst' => '优先选择', + 'MultipleResult'=> '多个结果', + 'MultipleResultTooltip'=> '当插件有多个返回结果时怎么办?', + 'RemoveWholeWord' => '只有一个单词时删除', + 'NoResult'=> '没有结果', + 'NoResultTooltip'=> '当插件没有返回结果时怎么办?', + 'RemoveTooltipWholeWord' => '只有当只出现一个单词时删除单词', + 'RemoveRegularExpr' => '正则表达式', + 'RemoveTooltipRegularExpr' => '将\'从名称中删除\'作为perl正则表达式', + 'SkipFileAlreadyInCollection' => '只添加新文件', + 'SkipFileAlreadyInCollectionTooltip' => '只添加没有在收藏中的文件', + 'SkipFileNo' => '否', + 'SkipFileFullPath' => '基于完整路径', + 'SkipFileFileName' => '基于文件名', + 'SkipFileFileNameAndUpdate' => '基于文件名(但更新收藏中的路径)', + 'InfoFromFileNameRegExp' => '用正则表达式分析文件名', + 'InfoFromFileNameRegExpTooltip' => '从文件名(删除后缀名)中提取提取信息.\n如不需要留空.\n已知字段:\n$T:标题,$A:字母表示标题, $Y:发行日期,$S:季,$E:集,$N:字母表示系列名称,$x:部,$y:总部数', + + 'InfoFromFileNameRegExp' => '用正则表达式分析文件名', + 'InfoFromFileNameRegExpTooltip' => '从文件名(删除后缀名)中提取提取信息.\n如不需要留空.\n已知字段:\n$T:标题,$A:文章, $Y:年份, $S:季, $E:期, $N:卷名' + ); + + # As this plugin shares some values with ImportList, it adds them from it + importTranslation('List'); +} + +1; diff --git a/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportGCstar.pm b/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportGCstar.pm new file mode 100644 index 0000000..276df8b --- /dev/null +++ b/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportGCstar.pm @@ -0,0 +1,37 @@ +{ + package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'CopyPictures' => '复制图片', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportList.pm b/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportList.pm new file mode 100644 index 0000000..cce54b6 --- /dev/null +++ b/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportList.pm @@ -0,0 +1,42 @@ +{ + package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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_CN/GCImport/GCImportScanner.pm b/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportScanner.pm new file mode 100644 index 0000000..fb5a870 --- /dev/null +++ b/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportScanner.pm @@ -0,0 +1,50 @@ +{ + package GCLang::ZH_CN::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_CN/GCImport/GCImportTellico.pm b/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportTellico.pm new file mode 100644 index 0000000..46d1f61 --- /dev/null +++ b/lib/gcstar/GCLang/ZH_CN/GCImport/GCImportTellico.pm @@ -0,0 +1,37 @@ +{ + package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'NotSupported' => '不是所支持的Tellico收藏', + ); +} + +1; -- cgit v1.2.3