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 +++++++++++++++ 7 files changed, 298 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 (limited to 'lib/gcstar/GCLang/ZH/GCExport') 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; -- cgit v1.2.3