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_CN/GCExport/GCExportCSV.pm | 40 ++++++++++++++ .../GCLang/ZH_CN/GCExport/GCExportExternal.pm | 38 +++++++++++++ lib/gcstar/GCLang/ZH_CN/GCExport/GCExportHTML.pm | 64 ++++++++++++++++++++++ lib/gcstar/GCLang/ZH_CN/GCExport/GCExportPDB.pm | 38 +++++++++++++ lib/gcstar/GCLang/ZH_CN/GCExport/GCExportSQL.pm | 40 ++++++++++++++ lib/gcstar/GCLang/ZH_CN/GCExport/GCExportTarGz.pm | 37 +++++++++++++ lib/gcstar/GCLang/ZH_CN/GCExport/GCExportXML.pm | 41 ++++++++++++++ 7 files changed, 298 insertions(+) create mode 100644 lib/gcstar/GCLang/ZH_CN/GCExport/GCExportCSV.pm create mode 100644 lib/gcstar/GCLang/ZH_CN/GCExport/GCExportExternal.pm create mode 100644 lib/gcstar/GCLang/ZH_CN/GCExport/GCExportHTML.pm create mode 100644 lib/gcstar/GCLang/ZH_CN/GCExport/GCExportPDB.pm create mode 100644 lib/gcstar/GCLang/ZH_CN/GCExport/GCExportSQL.pm create mode 100644 lib/gcstar/GCLang/ZH_CN/GCExport/GCExportTarGz.pm create mode 100644 lib/gcstar/GCLang/ZH_CN/GCExport/GCExportXML.pm (limited to 'lib/gcstar/GCLang/ZH_CN/GCExport') diff --git a/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportCSV.pm b/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportCSV.pm new file mode 100644 index 0000000..e4c10d7 --- /dev/null +++ b/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportCSV.pm @@ -0,0 +1,40 @@ +{ + package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Header' => '包含顶部的字段名称', + 'Separator' => '分隔符', + 'Replacement' => '替换分隔符', + 'Charset' => '编码', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportExternal.pm b/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportExternal.pm new file mode 100644 index 0000000..9f2fafc --- /dev/null +++ b/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportExternal.pm @@ -0,0 +1,38 @@ +{ + package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Name' => '外部磁盘', + 'ZipAll' => 'zip压缩(.gcz)', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportHTML.pm b/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportHTML.pm new file mode 100644 index 0000000..c6adb7e --- /dev/null +++ b/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportHTML.pm @@ -0,0 +1,64 @@ +{ + package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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_CN/GCExport/GCExportPDB.pm b/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportPDB.pm new file mode 100644 index 0000000..cf6e0a3 --- /dev/null +++ b/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportPDB.pm @@ -0,0 +1,38 @@ +{ + package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Name' => 'Palm PDB', + 'DatabaseName' => '数据库名称', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportSQL.pm b/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportSQL.pm new file mode 100644 index 0000000..2be7405 --- /dev/null +++ b/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportSQL.pm @@ -0,0 +1,40 @@ +{ + package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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_CN/GCExport/GCExportTarGz.pm b/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportTarGz.pm new file mode 100644 index 0000000..df90790 --- /dev/null +++ b/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportTarGz.pm @@ -0,0 +1,37 @@ +{ + package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Info' => '压缩到文件:', + ); +} + +1; diff --git a/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportXML.pm b/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportXML.pm new file mode 100644 index 0000000..3a590ec --- /dev/null +++ b/lib/gcstar/GCLang/ZH_CN/GCExport/GCExportXML.pm @@ -0,0 +1,41 @@ +{ + package GCLang::ZH_CN::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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'ModelFile' => '模板文件', + 'ModelText' => '模板文字', + 'Models' => '模板使用', + 'UseFile' => '使用文件', + 'UseModel' => '使用文字区域', + ); +} + +1; -- cgit v1.2.3