summaryrefslogtreecommitdiff
path: root/lib/gcstar/GCLang/ZH_CN/GCModels
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gcstar/GCLang/ZH_CN/GCModels')
-rw-r--r--lib/gcstar/GCLang/ZH_CN/GCModels/GCTVepisodes.pm46
-rw-r--r--lib/gcstar/GCLang/ZH_CN/GCModels/GCTVseries.pm50
-rw-r--r--lib/gcstar/GCLang/ZH_CN/GCModels/GCboardgames.pm86
-rw-r--r--lib/gcstar/GCLang/ZH_CN/GCModels/GCbooks.pm70
-rw-r--r--lib/gcstar/GCLang/ZH_CN/GCModels/GCcoins.pm104
-rw-r--r--lib/gcstar/GCLang/ZH_CN/GCModels/GCcomics.pm73
-rw-r--r--lib/gcstar/GCLang/ZH_CN/GCModels/GCfilms.pm93
-rw-r--r--lib/gcstar/GCLang/ZH_CN/GCModels/GCgames.pm82
-rw-r--r--lib/gcstar/GCLang/ZH_CN/GCModels/GCgeneric.pm44
-rw-r--r--lib/gcstar/GCLang/ZH_CN/GCModels/GCminicars.pm182
-rw-r--r--lib/gcstar/GCLang/ZH_CN/GCModels/GCmusics.pm68
-rw-r--r--lib/gcstar/GCLang/ZH_CN/GCModels/GCperiodicals.pm55
-rw-r--r--lib/gcstar/GCLang/ZH_CN/GCModels/GCsmartcards.pm108
-rw-r--r--lib/gcstar/GCLang/ZH_CN/GCModels/GCsoftware.pm84
-rw-r--r--lib/gcstar/GCLang/ZH_CN/GCModels/GCstamps.pm192
-rw-r--r--lib/gcstar/GCLang/ZH_CN/GCModels/GCwines.pm65
16 files changed, 1402 insertions, 0 deletions
diff --git a/lib/gcstar/GCLang/ZH_CN/GCModels/GCTVepisodes.pm b/lib/gcstar/GCLang/ZH_CN/GCModels/GCTVepisodes.pm
new file mode 100644
index 0000000..ae58678
--- /dev/null
+++ b/lib/gcstar/GCLang/ZH_CN/GCModels/GCTVepisodes.pm
@@ -0,0 +1,46 @@
+{
+ package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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_CN/GCModels/GCTVseries.pm b/lib/gcstar/GCLang/ZH_CN/GCModels/GCTVseries.pm
new file mode 100644
index 0000000..f90605b
--- /dev/null
+++ b/lib/gcstar/GCLang/ZH_CN/GCModels/GCTVseries.pm
@@ -0,0 +1,50 @@
+{
+ package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+###################################################
+
+ use strict;
+ use GCLang::GCLangUtils;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => '电视剧(系列)收藏',
+ Items => '个系列',
+ NewItem => '新系列',
+ Name => '系列名称',
+ Season => '季',
+ Part => '部',
+ Episodes => '集',
+ FirstAired => '首播',
+ Time => '每集长度',
+ Producer => '制片商',
+ Music => '音乐',
+ );
+ importTranslation('Films');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ZH_CN/GCModels/GCboardgames.pm b/lib/gcstar/GCLang/ZH_CN/GCModels/GCboardgames.pm
new file mode 100644
index 0000000..8a3fd8d
--- /dev/null
+++ b/lib/gcstar/GCLang/ZH_CN/GCModels/GCboardgames.pm
@@ -0,0 +1,86 @@
+{
+ package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 => '序列号',
+ 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_CN/GCModels/GCbooks.pm b/lib/gcstar/GCLang/ZH_CN/GCModels/GCbooks.pm
new file mode 100644
index 0000000..63860c8
--- /dev/null
+++ b/lib/gcstar/GCLang/ZH_CN/GCModels/GCbooks.pm
@@ -0,0 +1,70 @@
+{
+ package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 => '电子版',
+
+ General => '一般',
+ Details => '详细',
+
+ ReadNo => '未读',
+ ReadYes => '已读',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ZH_CN/GCModels/GCcoins.pm b/lib/gcstar/GCLang/ZH_CN/GCModels/GCcoins.pm
new file mode 100644
index 0000000..01ad245
--- /dev/null
+++ b/lib/gcstar/GCLang/ZH_CN/GCModels/GCcoins.pm
@@ -0,0 +1,104 @@
+{
+ package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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_CN/GCModels/GCcomics.pm b/lib/gcstar/GCLang/ZH_CN/GCModels/GCcomics.pm
new file mode 100644
index 0000000..e224388
--- /dev/null
+++ b/lib/gcstar/GCLang/ZH_CN/GCModels/GCcomics.pm
@@ -0,0 +1,73 @@
+{
+ package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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_CN/GCModels/GCfilms.pm b/lib/gcstar/GCLang/ZH_CN/GCModels/GCfilms.pm
new file mode 100644
index 0000000..3ce30ab
--- /dev/null
+++ b/lib/gcstar/GCLang/ZH_CN/GCModels/GCfilms.pm
@@ -0,0 +1,93 @@
+{
+ package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 => 'ID',
+ 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_CN/GCModels/GCgames.pm b/lib/gcstar/GCLang/ZH_CN/GCModels/GCgames.pm
new file mode 100644
index 0000000..0fb790a
--- /dev/null
+++ b/lib/gcstar/GCLang/ZH_CN/GCModels/GCgames.pm
@@ -0,0 +1,82 @@
+{
+ package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 => '精选',
+ Resolutions => '显示分辨率',
+ InstallationSize => '大小',
+ Region => '地区',
+ SerialNumber => '序列号',
+
+ General => '概况',
+ Details => '游戏细节',
+ Tips => '小技巧',
+ Information => '信息',
+
+ FilterRatingSelect => '评价至少到(_L)...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ZH_CN/GCModels/GCgeneric.pm b/lib/gcstar/GCLang/ZH_CN/GCModels/GCgeneric.pm
new file mode 100644
index 0000000..299e46e
--- /dev/null
+++ b/lib/gcstar/GCLang/ZH_CN/GCModels/GCgeneric.pm
@@ -0,0 +1,44 @@
+{
+ package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ Items => {0 => '项',
+ 1 => '项',
+ X => '项目',
+ lowercase1 => '项',
+ lowercaseX => '项'
+ },
+ NewItem => '新项',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ZH_CN/GCModels/GCminicars.pm b/lib/gcstar/GCLang/ZH_CN/GCModels/GCminicars.pm
new file mode 100644
index 0000000..3fabc3c
--- /dev/null
+++ b/lib/gcstar/GCLang/ZH_CN/GCModels/GCminicars.pm
@@ -0,0 +1,182 @@
+{
+ package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => '小车收藏',
+ Items => {0 => '辆汽车',
+ 1 => '辆汽车',
+ X => '汽车',
+ lowercase1 => '辆汽车',
+ lowercaseX => '汽车'
+ },
+ NewItem => '新汽车',
+ Currency => '通用性',
+
+# Main fields
+
+ Main => '主要信息',
+
+ Name => '名称',
+ Exchange => '待售或待换',
+ Wanted => '需要',
+ Rating1 => '主评价',
+ Picture1 => '主图片',
+ Scale => '尺寸',
+ Manufacturer => '制造商',
+ Constructor => '设计师',
+ Type1 => '类型',
+ Modele => '型号',
+ Version => '版本',
+ Color => '型号颜色',
+ Pub => '广告',
+ Year => '年份',
+ Reference => '参考',
+ Kit => '工具列表',
+ Transformation => '个性变化',
+ Comments1 => '注释',
+
+# Details fields
+
+ Details => '详细',
+
+ MiscCharacteristics => '多方面特性',
+ Material => '材料',
+ Molding => '模制',
+ Condition => '状态',
+ Edition => '版本',
+ Collectiontype => '收集名称',
+ Serial => '系列',
+ Serialnumber => '序列号',
+ Designed => '设计日期',
+ Madein => '制造日期',
+ Box1 => 'Box种类',
+ Box2 => 'Box描述',
+ Containbox => 'Box内容',
+ Rating2 => '实用',
+ Rating3 => '完美',
+ Acquisition => '获得日期',
+ Location => '获得地点',
+ Buyprice => '获得价格',
+ Estimate => '估价',
+ Comments2 => '评论',
+ Decorationset => '装饰',
+ Characters => '性质',
+ CarFromFilm => '电影汽车',
+ Filmcar => '与汽车相关电影',
+ Filmpart => '电影部/集',
+ Parts => '数目',
+ VehiculeDetails => '详细',
+ Detailsparts => '细节部分',
+ Detailsdecorations => '装饰种类',
+ Decorations => '装饰数量',
+ Lwh => '长/宽/高',
+ Weight => '重量',
+ Framecar => '底盘',
+ Bodycar => '车身',
+ Colormirror => '型号颜色',
+ Interior => '内部',
+ Wheels => '车轮',
+ Registrationnumber1 => '前方注册号',
+ Registrationnumber2 => '后部注册号',
+ RacingCar => '赛车',
+ Course => '比赛',
+ Courselocation => '比赛地点',
+ Courseyear => '比赛日期',
+ Team => '团队',
+ Pilots => '赛车手',
+ Copilots => '副驾',
+ Carnumber => '车号',
+ Pub2 => '广告商',
+ Finishline => '完美等级',
+ Steeringwheel => '方向盘位置',
+
+
+# Catalogs fields
+
+ Catalogs => '目录',
+
+ OfficialPicture => '官方图片',
+ Barcode => '条形码',
+ Referencemirror => '参考',
+ Year3 => '可得日期',
+ CatalogCoverPicture => '封面',
+ CatalogPagePicture => '页数',
+ Catalogyear => '目录年份',
+ Catalogedition => '目录版本',
+ Catalogpage => '目录页数',
+ Catalogprice => '目录价格',
+ Personalref => '个人参考',
+ Websitem => '汽车制造商网站',
+ Websitec => '实际制造商网站',
+ Websiteo => '有用链接',
+ Comments3 => '注释',
+
+# Pictures fields
+
+ Pictures => '图片',
+
+ OthersComments => '总评分',
+ OthersDetails => '其它细节',
+ Top1 => '上',
+ Back1 => '下',
+ AVG => '左前',
+ AV => '前',
+ AVD => '右前',
+ G => '左',
+ BOX => 'Box',
+ D => '右',
+ ARG => '左后',
+ AR => '后',
+ ARD => '右后',
+ Others => '杂项',
+
+# PanelLending fields
+
+ LendingExplanation => '临时展览中的有用交换',
+ PanelLending => '租借(展览用)',
+ Comments4 => '注释',
+
+# Realmodel fields
+
+ Realmodel => '真实汽车',
+
+ Difference => '与小图的不同',
+ Front2 => '前',
+ Back2 => '后',
+ Comments5 => '注释',
+
+ References => '参考',
+
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ZH_CN/GCModels/GCmusics.pm b/lib/gcstar/GCLang/ZH_CN/GCModels/GCmusics.pm
new file mode 100644
index 0000000..f6f67ff
--- /dev/null
+++ b/lib/gcstar/GCLang/ZH_CN/GCModels/GCmusics.pm
@@ -0,0 +1,68 @@
+{
+ package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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_CN/GCModels/GCperiodicals.pm b/lib/gcstar/GCLang/ZH_CN/GCModels/GCperiodicals.pm
new file mode 100644
index 0000000..4397183
--- /dev/null
+++ b/lib/gcstar/GCLang/ZH_CN/GCModels/GCperiodicals.pm
@@ -0,0 +1,55 @@
+{
+ package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => '期刊收藏',
+ Items => {0 => '期刊',
+ 1 => '本期刊',
+ X => '期刊',
+ lowercase1 => '本期刊',
+ lowercaseX => '期刊'
+ },
+ NewItem => '新期刊',
+
+ Title => '名称',
+ Cover => '封面',
+ Periodical => '周期',
+ Number => '数',
+ Date => '日期',
+ Subject => '主题',
+ Articles => '文章',
+
+ General => '一般',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ZH_CN/GCModels/GCsmartcards.pm b/lib/gcstar/GCLang/ZH_CN/GCModels/GCsmartcards.pm
new file mode 100644
index 0000000..f46b0e8
--- /dev/null
+++ b/lib/gcstar/GCLang/ZH_CN/GCModels/GCsmartcards.pm
@@ -0,0 +1,108 @@
+{
+ package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => '智能卡收藏',
+ Items => {0 => '张智能卡',
+ 1 => '张智能卡',
+ X => '智能卡'},
+ NewItem => '新智能卡',
+ Currency => '通用',
+
+ Help => '字段帮助',
+ Help1 => '帮助',
+
+# Traduction des Champs "Main"
+
+ Main => '智能卡',
+
+ Cover => '图片',
+
+ Name => '名称',
+ Exchange => '将卖出或交换',
+ Wanted => '需要',
+ Rating1 => '总体需求',
+ TheSmartCard => '智能卡,前/后',
+
+ Country => '国家',
+ Color => '颜色',
+ Type1 => '卡类型',
+ Type2 => '芯片类型',
+ Dimension => '长/宽/厚',
+
+ Box => '盒',
+ Chip => '芯片',
+ Year1 => '版本年份',
+ Year2 => '有效年份',
+ Condition => '状态',
+ Charge => '可充电卡',
+ Variety => '变种',
+
+ Edition => '样品数目',
+ Serial => '序列号',
+ Theme => '主题',
+
+ Acquisition => '获得',
+
+ Catalog0 => '目录',
+ Catalog1 => 'Phonecote / Infopuce (YT)',
+ Catalog2 => 'La Cote en Poche',
+
+ Reference0 => '参考',
+ Reference1 => 'Phonecote / Infopuce (YT)参考',
+ Reference2 => 'La Cote en Poche参考',
+ Reference3 => '其它参考',
+
+ Quotationnew00 => '新卡报价',
+ Quotationnew10 => 'Phonecote / Infopuce (YT)报价',
+ Quotationnew20 => 'La Cote en Poche报价',
+ Quotationnew30 => 'Cotation Autre',
+ Quotationold00 => '二手卡报价',
+ Quotationold10 => 'Phonecote / Infopuce (YT)报价',
+ Quotationold20 => 'La Cote en Poche报价',
+ Quotationold30 => '其它报价',
+
+ Title1 => '名称',
+
+ Unit => '单元/微粒数',
+
+ Pressed => '压模类型',
+ Location => '压模地点',
+
+ Comments1 => '注释',
+
+ Others => '杂项',
+ Weight => '重量',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ZH_CN/GCModels/GCsoftware.pm b/lib/gcstar/GCLang/ZH_CN/GCModels/GCsoftware.pm
new file mode 100644
index 0000000..6302fd4
--- /dev/null
+++ b/lib/gcstar/GCLang/ZH_CN/GCModels/GCsoftware.pm
@@ -0,0 +1,84 @@
+{
+ package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => '计算机软件收藏',
+ Items => {0 => '个软件',
+ 1 => '个软件',
+ X => '软件',
+ lowercase1 => '个软件',
+ lowercaseX => '软件'},
+ NewItem => '新软件',
+
+ Id => 'Id',
+ Ean => 'EAN',
+ Name => '名称',
+ Platform => '平台',
+ Released => '发布日期',
+ Homepage => '主页',
+ Editor => '编辑',
+ Developer => '开发人员',
+ Category => '类型',
+ NumberOfCopies => '个数',
+ Price => '价格',
+ Box => '盒装图片',
+ Case => '例子',
+ Manual => '操作指南',
+ Executable => '可执行',
+ Description => '描述',
+ License => '版权',
+ Commercial => '商业软件',
+ FreewareNoncommercial => '免费软件',
+ OtherOpenSource => '其它开源软件',
+ PublicDomain => '公共软件',
+ OtherLicense => '其它',
+ Registration => '注册',
+ RegistrationInfo => '注册信息',
+ RegInfo => '注册信息',
+ RegistrationName => '用户名',
+ RegistrationNumber => '注册号',
+ PanelRegistration => '注册信息',
+ RegistrationComments => '添加信息或注释',
+ Screenshots => '截图',
+ Screenshot1 => '截图1',
+ Screenshot2 => '截图2',
+ Comments => '注释',
+ Url => '网页',
+ General => '一般',
+ Details => '详细',
+ Information => '信息',
+
+ FilterRatingSelect => '评价至少(_L)...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ZH_CN/GCModels/GCstamps.pm b/lib/gcstar/GCLang/ZH_CN/GCModels/GCstamps.pm
new file mode 100644
index 0000000..294adac
--- /dev/null
+++ b/lib/gcstar/GCLang/ZH_CN/GCModels/GCstamps.pm
@@ -0,0 +1,192 @@
+{
+ package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => '邮票收藏',
+ Items => {0 => '邮票',
+ 1 => '张邮票',
+ X => '邮票',
+ lowercase1 => '张邮票',
+ lowercaseX => '邮票'
+ },
+ NewItem => '新邮票',
+
+ General => '一般',
+ Detail => '详细',
+ Value => '价值',
+ Notes => '笔记',
+ Views => '观察',
+
+ Name => '名称',
+ Country => '国家',
+ Year => '年份',
+ Catalog => '类型',
+ Number => '数目',
+ Topic => '主题',
+ Serie => '系列',
+ Designer => '设计者',
+ Engraver => '雕刻师',
+ Type => '类型',
+ Format => '形式',
+ Description => '描述',
+ Color => '颜色',
+ Gum => '背胶',
+ Paper => '纸张',
+ Perforation => '穿孔',
+ PerforationSize => '穿孔大小',
+ CancellationType => '注销戳类型',
+ Comments => '注释',
+ PrintingVariety => '印刷变种',
+ IssueDate => '发行日期',
+ EndOfIssue => '结束发行',
+ Issue => '发行',
+ Grade => '分级',
+ Status => '状态',
+ Adjusted => '调整',
+ Cancellation => '注销戳',
+ CancellationCondition => '注销戳情况',
+ GumCondition => '背胶情况',
+ PerforationCondition => '穿孔情况',
+ ConditionNotes => '状态笔记',
+ Error => '错误',
+ ErrorNotes => '错误记录',
+ FaceValue => '面值',
+ MintValue => '制造值',
+ UsedValue => '使用值',
+ PurchasedDate => '购买日期',
+ Quantity => '数量',
+ History => '历史',
+ Picture1 => '图片1',
+ Picture2 => '图片2',
+ Picture3 => '图片3',
+
+ AirMail => '航空邮件',
+ MilitaryStamp => '军邮',
+ Official => '公务邮件',
+ PostageDue => '应付邮资类',
+ Regular => '常规',
+ Revenue => '税收',
+ SpecialDelivery => '特别投递',
+ StrikeStamp => '罢工邮票',
+ TelegraphStamp => '电报邮票',
+ WarStamp => '战争邮票',
+ WarTaxStamp => '战争税邮票',
+
+ Booklet => '小型张',
+ BookletPane => '单张小型张',
+ Card => '明信片',
+ Coil => '卷状',
+ Envelope => '信封',
+ FirstDayCover => '首日封',
+ Sheet => '联张',
+ Single => '单张',
+
+ Heliogravure => '凹版照相',
+ Lithography => '平版',
+ Offset => '胶印',
+ Photogravure => '凹版印刷',
+ RecessPrinting => '凹口印刷',
+ Typography => '凸版印刷',
+
+ OriginalGum => '原始背胶',
+ Ungummed => '无胶',
+ Regummed => '后加背胶',
+
+ Chalky => '粉笔状',
+ ChinaPaper => '瓷器般的',
+ Coarsed => '粗糙',
+ Glossy => '有光泽的',
+ Granite => '花岗岩状',
+ Laid => 'Laid纸',
+ Manila => '马尼拉纸',
+ Native => '本地纸',
+ Pelure => 'Pelure纸',
+ Quadrille => 'Quadrille纸',
+ Ribbed => '棱纹纸',
+ Rice => '宣纸',
+ Silk => '丝纸',
+ Smoothed => '光滑的',
+ Thick => '厚',
+ Thin => '薄',
+ Wove => '布纹纸',
+
+ CoarsedPerforation => '粗糙穿孔',
+ CombPerforation => '梳状穿孔',
+ CompoundPerforation => '混合穿孔',
+ DamagedPerforation => '破坏了的穿孔',
+ DoublePerforation => '双孔',
+ HarrowPerforation => '耙状孔',
+ LinePerforation => '线孔',
+ NoPerforation => '无孔',
+
+ CancellationToOrder => '整理注销戳',
+ FancyCancellation => '精致注销戳',
+ FirstDayCancellation => '首日戳',
+ NumeralCancellation => '数字戳',
+ PenMarked => '笔戳',
+ RailroadCancellation => '铁路戳',
+ SpecialCancellation => '特殊戳',
+
+ Superb => '华丽',
+ ExtraFine => '极精致',
+ VeryFine => '非常精致',
+ FineVeryFine => '精致/很精致',
+ Fine => '精致',
+ Average => '一般',
+ Poor => '差',
+
+ Owned => '持有者',
+ Ordered => '已排序',
+ Sold => '已售',
+ ToSell => '待售',
+ Wanted => '需要',
+
+ LightCancellation => '轻戳',
+ HeavyCancellation => '重戳',
+ ModerateCancellation => '中等戳',
+
+ MintNeverHinged => '未铰',
+ MintLightHinged => '轻铰',
+ HingedRemnant => '残余铰',
+ HeavilyHinged => '重铰',
+ LargePartOriginalGum => '大面积原始胶',
+ SmallPartOriginalGum => '小面积原始胶',
+ NoGum => '无胶',
+
+ Perfect => '完美',
+ VeryNice => '非常好',
+ Nice => '好',
+ Incomplete => '不完整',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/ZH_CN/GCModels/GCwines.pm b/lib/gcstar/GCLang/ZH_CN/GCModels/GCwines.pm
new file mode 100644
index 0000000..536c543
--- /dev/null
+++ b/lib/gcstar/GCLang/ZH_CN/GCModels/GCwines.pm
@@ -0,0 +1,65 @@
+{
+ package GCLang::ZH_CN::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 => '获得',
+ PurchaseDate => '进货日期',
+ PurchasePrice => '进货价格',
+ Gift => '赠品',
+ BottleLabel => '瓶上的标签',
+ Website => '网路上的参考资料',
+
+ Tasted => '已品尝',
+ Comments => '评论',
+ Serving => '服务',
+ TastingField => '赏味笔记',
+
+ General => '一般',
+ Details => '细节',
+ Tasting => '赏味',
+
+ TastedNo => '未品尝过',
+ TastedYes => '已品尝',
+
+ FilterRange => '范围',
+ FilterTastedNo => '还没品尝(_N)',
+ FilterTastedYes => '已经品尝过了(_t)',
+ FilterRatingSelect => '评价至少到(_l)...'
+
+ );
+}
+
+1;