From 2b71c3e5ebb65307a6e5cdaa6668489dd0ef50ed Mon Sep 17 00:00:00 2001 From: Brad Droubay Date: Wed, 24 Aug 2016 12:40:48 -0400 Subject: [PATCH] Added translations for traditional and simplified Chinese --- LangCodes.php | 14 +- auth/LangCodes.php | 14 +- auth/locale/zh_CN/LC_MESSAGES/messages.mo | Bin 0 -> 4320 bytes auth/locale/zh_CN/LC_MESSAGES/messages.po | 232 ++ auth/locale/zh_TW/LC_MESSAGES/messages.mo | Bin 0 -> 4361 bytes auth/locale/zh_TW/LC_MESSAGES/messages.po | 232 ++ licensing/LangCodes.php | 14 +- .../locale/zh_CN/LC_MESSAGES/messages.mo | Bin 0 -> 21790 bytes .../locale/zh_CN/LC_MESSAGES/messages.po | 1366 ++++++++ .../locale/zh_TW/LC_MESSAGES/messages.mo | Bin 0 -> 21788 bytes .../locale/zh_TW/LC_MESSAGES/messages.po | 1366 ++++++++ locale/zh_CN/LC_MESSAGES/messages.mo | Bin 0 -> 971 bytes locale/zh_CN/LC_MESSAGES/messages.po | 57 + locale/zh_TW/LC_MESSAGES/messages.mo | Bin 0 -> 972 bytes locale/zh_TW/LC_MESSAGES/messages.po | 57 + management/LangCodes.php | 14 +- .../locale/zh_CN/LC_MESSAGES/messages.mo | Bin 0 -> 19382 bytes .../locale/zh_CN/LC_MESSAGES/messages.po | 1234 +++++++ .../locale/zh_TW/LC_MESSAGES/messages.mo | Bin 0 -> 19405 bytes .../locale/zh_TW/LC_MESSAGES/messages.po | 1234 +++++++ management/templates/header.php | 6 +- organizations/LangCodes.php | 14 +- .../locale/zh_CN/LC_MESSAGES/messages.mo | Bin 0 -> 15331 bytes .../locale/zh_CN/LC_MESSAGES/messages.po | 1101 +++++++ .../locale/zh_TW/LC_MESSAGES/messages.mo | Bin 0 -> 15271 bytes .../locale/zh_TW/LC_MESSAGES/messages.po | 1101 +++++++ organizations/templates/header.php | 4 +- reports/LangCodes.php | 14 +- reports/locale/zh_CN/LC_MESSAGES/messages.mo | Bin 0 -> 6041 bytes reports/locale/zh_CN/LC_MESSAGES/messages.po | 168 + reports/locale/zh_TW/LC_MESSAGES/messages.mo | Bin 0 -> 6095 bytes reports/locale/zh_TW/LC_MESSAGES/messages.po | 168 + resources/LangCodes.php | 14 +- .../locale/zh_CN/LC_MESSAGES/messages.mo | Bin 0 -> 43688 bytes .../locale/zh_CN/LC_MESSAGES/messages.po | 2577 +++++++++++++++ .../locale/zh_TW/LC_MESSAGES/messages.mo | Bin 0 -> 43770 bytes .../locale/zh_TW/LC_MESSAGES/messages.po | 2822 +++++++++++++++++ usage/LangCodes.php | 14 +- usage/locale/zh_CN/LC_MESSAGES/messages.mo | Bin 0 -> 27013 bytes usage/locale/zh_CN/LC_MESSAGES/messages.po | 1596 ++++++++++ usage/locale/zh_TW/LC_MESSAGES/messages.mo | Bin 0 -> 27001 bytes usage/locale/zh_TW/LC_MESSAGES/messages.po | 1596 ++++++++++ 42 files changed, 16967 insertions(+), 62 deletions(-) create mode 100644 auth/locale/zh_CN/LC_MESSAGES/messages.mo create mode 100644 auth/locale/zh_CN/LC_MESSAGES/messages.po create mode 100644 auth/locale/zh_TW/LC_MESSAGES/messages.mo create mode 100644 auth/locale/zh_TW/LC_MESSAGES/messages.po create mode 100644 licensing/locale/zh_CN/LC_MESSAGES/messages.mo create mode 100644 licensing/locale/zh_CN/LC_MESSAGES/messages.po create mode 100644 licensing/locale/zh_TW/LC_MESSAGES/messages.mo create mode 100644 licensing/locale/zh_TW/LC_MESSAGES/messages.po create mode 100644 locale/zh_CN/LC_MESSAGES/messages.mo create mode 100644 locale/zh_CN/LC_MESSAGES/messages.po create mode 100644 locale/zh_TW/LC_MESSAGES/messages.mo create mode 100644 locale/zh_TW/LC_MESSAGES/messages.po create mode 100644 management/locale/zh_CN/LC_MESSAGES/messages.mo create mode 100644 management/locale/zh_CN/LC_MESSAGES/messages.po create mode 100644 management/locale/zh_TW/LC_MESSAGES/messages.mo create mode 100644 management/locale/zh_TW/LC_MESSAGES/messages.po create mode 100644 organizations/locale/zh_CN/LC_MESSAGES/messages.mo create mode 100644 organizations/locale/zh_CN/LC_MESSAGES/messages.po create mode 100644 organizations/locale/zh_TW/LC_MESSAGES/messages.mo create mode 100644 organizations/locale/zh_TW/LC_MESSAGES/messages.po create mode 100644 reports/locale/zh_CN/LC_MESSAGES/messages.mo create mode 100644 reports/locale/zh_CN/LC_MESSAGES/messages.po create mode 100644 reports/locale/zh_TW/LC_MESSAGES/messages.mo create mode 100644 reports/locale/zh_TW/LC_MESSAGES/messages.po create mode 100644 resources/locale/zh_CN/LC_MESSAGES/messages.mo create mode 100644 resources/locale/zh_CN/LC_MESSAGES/messages.po create mode 100644 resources/locale/zh_TW/LC_MESSAGES/messages.mo create mode 100644 resources/locale/zh_TW/LC_MESSAGES/messages.po create mode 100644 usage/locale/zh_CN/LC_MESSAGES/messages.mo create mode 100644 usage/locale/zh_CN/LC_MESSAGES/messages.po create mode 100644 usage/locale/zh_TW/LC_MESSAGES/messages.mo create mode 100644 usage/locale/zh_TW/LC_MESSAGES/messages.po diff --git a/LangCodes.php b/LangCodes.php index 8a2542f0a..552357e00 100644 --- a/LangCodes.php +++ b/LangCodes.php @@ -7,9 +7,9 @@ class LangCodes{ public function getLanguage($code){ $all_lang=array( 'fr_FR'=>'fr_FR', - 'en_US'=>'en_US'//, - //'zh_CN'=>'zh_CN', - //'zh_TW'=>'zh_TW', + 'en_US'=>'en_US', + 'zh_CN'=>'zh_CN', + 'zh_TW'=>'zh_TW'//, //'de_DE'=>'de_DE' ); return array_key_exists($code, $all_lang) ? $all_lang[$code] : "en_US"; @@ -17,12 +17,12 @@ public function getLanguage($code){ public function getNameLang($code_lang){ $name_lang=array( 'fr_FR'=>'Français', - 'en_US'=>'English'//, - //'zh_CN'=>'中文 (中国)', - //'zh_TW'=>'中文 (台灣)', + 'en_US'=>'English', + 'zh_CN'=>'中文 (简体)', + 'zh_TW'=>'中文 (正體)'//, //'de_DE'=>'Deutsch' ); return array_key_exists($code_lang, $name_lang) ? $name_lang[$code_lang] : "English"; } } -?> \ No newline at end of file +?> diff --git a/auth/LangCodes.php b/auth/LangCodes.php index 8a2542f0a..552357e00 100644 --- a/auth/LangCodes.php +++ b/auth/LangCodes.php @@ -7,9 +7,9 @@ class LangCodes{ public function getLanguage($code){ $all_lang=array( 'fr_FR'=>'fr_FR', - 'en_US'=>'en_US'//, - //'zh_CN'=>'zh_CN', - //'zh_TW'=>'zh_TW', + 'en_US'=>'en_US', + 'zh_CN'=>'zh_CN', + 'zh_TW'=>'zh_TW'//, //'de_DE'=>'de_DE' ); return array_key_exists($code, $all_lang) ? $all_lang[$code] : "en_US"; @@ -17,12 +17,12 @@ public function getLanguage($code){ public function getNameLang($code_lang){ $name_lang=array( 'fr_FR'=>'Français', - 'en_US'=>'English'//, - //'zh_CN'=>'中文 (中国)', - //'zh_TW'=>'中文 (台灣)', + 'en_US'=>'English', + 'zh_CN'=>'中文 (简体)', + 'zh_TW'=>'中文 (正體)'//, //'de_DE'=>'Deutsch' ); return array_key_exists($code_lang, $name_lang) ? $name_lang[$code_lang] : "English"; } } -?> \ No newline at end of file +?> diff --git a/auth/locale/zh_CN/LC_MESSAGES/messages.mo b/auth/locale/zh_CN/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..9ee857160f19ac3e2764fcf27195a782b5e81fd5 GIT binary patch literal 4320 zcmaKtZEO_B8ONtdXj3$DGyIdr~W;>*)(9TG8!tT5_b_%J_*?J`;C0>q6Ig-% z-@wmp6e(;OnIQV^V3Z(Ua(Yy(M8~qJX{sFid z#1Oj+M%)YD3vL6~gQVvLknCvzVFLR(NOEo92JlsoID7P06pPz(>G+U={dla3eSk zQheVBDULTl()SOL^n9Yn*TcEH(0>plxs93+X+91@lvRP3k;4dxAN%M_O8(#ASJD4O z^KNWP`#ylz!ywnJ2T3ljxgVswWi_Wj{Mh?=JqX^=;~#_HLw^H;NaI_Jyg%qciB_tLx0NJr|&AX$IvJi6i+&n zNP&zA#gTHn84YE}9!I0IM0HGe%~muzOH_YUtCT;A6+KjQbSKf>Ko8|oKHRii?g*D> z(wkUq)J<3>XSJ~y-z~cMUPsvIq!K1i8y!M@KFjJ1lU8+LRi}~62;OelJY&X0d%_ek z{;KHakF5xi>dz308)k>#NxU=IAj0abOfn{Iidv>AqAqtWe&^Aq`r2k#Zg&bh%<3)P zZDqJEjAXK#cNwN!7!yh13hu@e4$naJS=JCsxXP^t(-k({a-1&9j!74y(i(?bX0n?# znlL*N<4LOn?l;zlId4u1!+|=xn;RWQ!VH&%R@8i^kZT*JlQd+AZ7bu7P3)&er?Dq$ zC(%Q`iL)DY)bt0s$X*-HR=?O=13m)g|D0C5Jzb5GjYR(FJ!! z!i{5bEa511P$Dy(NvAE_h5oi~(rWWI+v-AS!n}2j{z`4eTBTSZ1C%g3Zdu8#G`Zwd zBF@5OO%yNnM%2n5%Dg5VAZ}@}tmYiKe(l4jmaYZUD z#dVJ2MyKFuVW$!ZD{dl0TLx7Lr3|?f)e3oqdZrSmgN=iew7M##DtVBw8;P|EoF14d zoufohjmd<|3r(tp^OQvF7Kc_hky2KMnSoo-M9I+xENYlhkz}G}7q87g3(6rXbHM~% zDJvHM&aBq&xQ3f?7z}~S%(9s+QdXw`+>C89C)1WnxU77aP%*uN`!3WN3%!I8!=4CF z!7yBlPDS&Jt)V)Envx%?H(caxOI7u@P}R0j^;TZJHBwcDZ@eKHY7w0YT7QdRO=!y& zUJa3I2tuyOaNJONyW9k|XwF)B@;Z3!>ckZp-*}$J}*j3xu^jvLyeM`fh zJJ#9eZ1!57n&7(Z=n<4mFrj zD~7~GcuiZvEn5)bzl#5&Zg)j<5*42eJ#X15C&JCN>^eKDw{!KmqiTD_%b{kAauE6n z>N#z=@dyuxH_PAZ+#XzYQBkLiiEw4j%b}gZ6!P3hxKhHa!!_ZWHS2_7N8`=V8mfZc z3g(}k3Ub$rOSw(VKQT~PI?Mc-1@G{0odh%aA2bh0gvN(|oau_bo!!y<)U)I z8yY2Bi;E|N>&LZM-ry8jt+u^>!t1-_uwk^ZwCZGVaJFgk-IH ztn#v_;gfQoBDZF3si(g*F;`f)^naGpy18pi1xADZ6U&j}%0&wC%lO$P_et6L0BZTCp-Spw+>h!tAkfu?D@v#j6XHE=&Y6 z!Dsv00ZIz9M{os@ZA$}c8>Jr}O8u(B`?5OJ2M2=OGJGhzs}igg zBW{Jou^@jAW(L>#{LyQ2;\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Basepath: ../../..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Generator: Poedit 1.8.8\n" +"X-Poedit-SearchPath-0: .\n" + +#: js/admin.js:67 +msgid "Passwords do not match" +msgstr "密码不匹配" + +#: js/admin.js:73 +msgid "Password is required" +msgstr "密码为必填" + +#: js/admin.js:78 +msgid "UserID is required" +msgstr "用户ID为必填" + +#: js/admin.js:89 +msgid "Do you really want to delete this user?" +msgstr "您确认要删除此用户吗?" + +#: js/index.js:40 +msgid "Refreshing Contents..." +msgstr "正在刷新内容..." + +#: admin.php:66 index.php:195 +msgid "JavaScript must be enabled in order for you to use CORAL. However, it seems JavaScript is either disabled or not supported by your browser. To use CORAL, enable JavaScript by changing your browser options, then" +msgstr "必须启用 JavaScript 才能使用 CORAL。但是,或者您已禁用 JavaScript,或者您的浏览器不支持。若要使用 CORAL,则请更改您的浏览器选项以启用 JavaScript,并" + +#: admin.php:66 index.php:195 +msgid "try again" +msgstr "重试" + +#: admin.php:75 index.php:205 +msgid "eRM Authentication" +msgstr "eRM 身份验证" + +#: admin.php:82 +msgid "Users" +msgstr "用户" + +#: admin.php:83 +msgid "Login ID must match the login ID set up in the modules" +msgstr "登录 ID 必须用模块中设置的登录 ID 匹配" + +#: admin.php:89 +msgid "Processing..." +msgstr "正在处理..." + +#: admin.php:93 index.php:226 +msgid "Change language:" +msgstr "更改语言:" + +#: admin.php:109 index.php:242 +msgid "Invalid translation route!" +msgstr "无效的翻译路线!" + +#: admin.php:134 +msgid "Login page" +msgstr "登录页面" + +#: admin/classes/common/DBService.php:39 +msgid "There was a problem with the database: " +msgstr "数据库出现一个问题:" + +#: admin/classes/common/LdapPerson.php:34 +msgid "Could not connect to " +msgstr "无法连接到" + +#: admin/classes/common/Object.php:63 +msgid "Cannot set value for undefined key (" +msgstr "无法为未定义的键设置值 (" + +#: admin/classes/common/Object.php:72 +msgid "Cannot get value for undefined key (" +msgstr "无法为未定义的键获取值 (" + +#: admin/classes/domain/User.php:82 admin/classes/domain/User.php:89 +msgid "Could not connect to LDAP server." +msgstr "无法连接到 LDAP 服务器。" + +#: admin/classes/domain/User.php:97 +msgid "There is a problem with the LDAP configuration, contact your server administrator." +msgstr "LDAP 配置有问题,请与服务器管理员联系。" + +#: ajax_forms.php:43 +msgid "Edit User" +msgstr "编辑用户" + +#: ajax_forms.php:43 +msgid "Add New User" +msgstr "添加新用户" + +#: ajax_forms.php:56 +msgid "Login ID" +msgstr "登录 ID" + +#: ajax_forms.php:58 +msgid "Enter password for changes only" +msgstr "只为更改输入密码" + +#: ajax_forms.php:59 +msgid "New " +msgstr "新" + +#: ajax_forms.php:59 +msgid "Password" +msgstr "密码" + +#: ajax_forms.php:62 +msgid "Reenter Password" +msgstr "重新输入密码" + +#: ajax_forms.php:65 +msgid "Admin?" +msgstr "管理员?" + +#: ajax_forms.php:77 +msgid "submit" +msgstr "提交" + +#: ajax_forms.php:78 +msgid "cancel" +msgstr "取消" + +#: ajax_forms.php:114 ajax_htmldata.php:75 ajax_processing.php:89 +msgid "Action " +msgstr "操作" + +#: ajax_forms.php:114 ajax_htmldata.php:75 ajax_processing.php:89 +msgid " not set up!" +msgstr "未设置!" + +#: ajax_htmldata.php:53 +msgid "edit password or admin status" +msgstr "编辑密码或管理员状态" + +#: ajax_htmldata.php:54 +msgid "remove" +msgstr "移除" + +#: ajax_htmldata.php:60 ajax_htmldata.php:64 +msgid "add new user" +msgstr "添加新用户" + +#: ajax_processing.php:77 +msgid "User successfully deleted." +msgstr "用户已成功删除。" + +#: index.php:55 +msgid "You are successfully logged out of the system." +msgstr "您已成功退出系统。" + +#: index.php:86 +msgid "Invalid login ID. Please try again." +msgstr "无效的登录 ID。请重试。" + +#: index.php:91 +msgid "Invalid password. Please try again." +msgstr "无效的密码。请重试。" + +#: index.php:108 +msgid "You are already logged in as " +msgstr "您已登录为" + +#: index.php:108 +msgid "You may log in as another user below," +msgstr "您可以作为下面一位用户登录," + +#: index.php:108 +msgid "return" +msgstr "返回" + +#: index.php:108 +msgid "or" +msgstr "或" + +#: index.php:108 +msgid "logout" +msgstr "退出" + +#: index.php:129 +msgid "Please enter login credentials to sign in." +msgstr "请输入登录凭据登录。" + +#: index.php:137 +msgid "Your session has timed out." +msgstr "您的会话已超时。" + +#: index.php:146 +msgid "You do not have permission to enter." +msgstr "你没有权限进入。" + +#: index.php:146 +msgid "Please contact an administrator." +msgstr "请与管理员联系。" + +#: index.php:156 +msgid "You must log in before accessing the admin page." +msgstr "您必须先登录再访问管理员页面。" + +#: index.php:211 +msgid "Login ID:" +msgstr "登录 ID:" + +#: index.php:214 +msgid "Password:" +msgstr "密码:" + +#: index.php:218 +msgid "Remember my login ID" +msgstr "记住我的登录 ID" + +#: index.php:221 +msgid "Login" +msgstr "登录" + +#: index.php:267 +msgid "Admin page" +msgstr "管理员页面" diff --git a/auth/locale/zh_TW/LC_MESSAGES/messages.mo b/auth/locale/zh_TW/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..645f025b30c46c0e8f1ee2c3946708e72622f26e GIT binary patch literal 4361 zcmaKtZEO_B8ONt7X{nnwB~4q}^kpDTLQ>yh1EtmxlDM`5t_-n^Ns|w4wZ0qMSMGMN zyL)!rO65#!IIxXLg8@4(U=rYXF*Xpu_zkHa`XQ?L&=;wdswh!zU+zPTs;W|@R&D>! z%zAB5n$^wzc4nS==6RdBcOP0d#PECv?W<_N{}^NSVE@PQ!ZW#yu?N7*;3vWPp#N*I z4E^7Mp8($lzX>`4%kF3FbLg)HzW_c5t^!{Kp8#J0KLwryzX6^HY5h9^?|@%H|6wTq zEw~oM5W5dXEC-i^8^IMI>DdaBJxw4?U_Ss!t_6G;+y#54a4)5J8`Vl(+35>D>*I{18a? zo(Az_7x5yy=7RA*gXGr-LEj7b*MR>3$^UQe)BRw0?sK(0CINHKP{?bGB{FMAsFQhVjD0cKz zpshipSgb&!Gl^8F8U@L>wP=*QOY5tIS_;?Z}#=JBjWFdMM`d z;ksdSOV~V{S;ea3cGA!}t4<{NcG1aqTEavpoz!_oYZL18SyrRzw5koOI1~3i@Xlg`7^^X|sf4sCZs@v*+uSzzhmSVYRyV?O zvqP9sR%`GsBg;*prBYqIQ`6kCXnX!2~YuUU-aG`50DMS&Q!Y-Id!6n}i2>8HjUTCUri1MvQr-0|>9R65B zq%FQg7u*#|yB&)YNlU4N5}E02CS#a3^tW`8R+G1wMkhiO<;_d!v#S?~fUGB|-9HP2x4b`RTT%-C2E-lh6$W6K{i~?&$ zvIKde@r-Gp0Mfh@8I&=Rg${#TlWkcTiCCBO1^ZJjhYI)**OCnCT?Kikk@0mO)iQX-)1#wL)H@o~gv?VB_GVjLveYN**Na zMq(`jrw3+A=O__WV>03LLX&FYJS7pkwL`0&Oe-s+Ov5dxqvU7<7T5H+NHNj0jaO%( z1?3QzxnP2>l!XfbXExAp*_xfT7z}~S%rKcL(nf~>?5wFXE8CJz+AO?FsF;3?`z}(S zh`fjp!=4yV!!TTnR$1c<&5;^}nvx%>)okQ#T}9=_NX5oT<$7MZK2}kIZ@eKHX%Zbt zT7Q>dRb<^dUI`Ie1i1#yvLnsGjbxZH{`4~#Q`c~$S!n4PZ>ZkBWoPx4I{tLsw(9zZ z=c;RKo9cG#c&2Py{kFPABP*j7WkG#Mn!7SE%@(iNYcna_kelerF!3L-d1v$Uk*Y;G z+PGDikvctYB#@XGuWCu!p#?Gi)Ak=Vf4{6Tg^Eu_o;S?272|qFcCF2oo4ESiT(PO_ zrAVVeIf#50^_mmf-<{cR=JX8}=SG=(WYRfxyf}BuJ6!N{z0A8b<{jGW zygpVs*j$<2`-FE{9)nS0Yu8mN>8}KN)H-bx)N}_By?1 zRd^7mdo9Kq+GD<-sVD`&f2HcV}UvTzKdxP@}%SKpOyUvX(ZvK#S;DoAovN@cq zue~Qgi&Jz|uv9sUoCbZRibk>D)fw;FWf_D$1^3D?+|m7h;j%M0;a)sY%3Z;62<9+^ zqQ#{FJ;kX$+z!R59MTcmp>~0{au-<%C^9vw3f(W9hi{?lD&K*6gwY*+)jxL`_WIX* z-C<\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Basepath: ../../..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Generator: Poedit 1.8.8\n" +"X-Poedit-SearchPath-0: .\n" + +#: js/admin.js:67 +msgid "Passwords do not match" +msgstr "密碼不對應" + +#: js/admin.js:73 +msgid "Password is required" +msgstr "密碼是必備欄位。" + +#: js/admin.js:78 +msgid "UserID is required" +msgstr "使用者ID是必備欄位" + +#: js/admin.js:89 +msgid "Do you really want to delete this user?" +msgstr "您真的要刪除這個使用者嗎?" + +#: js/index.js:40 +msgid "Refreshing Contents..." +msgstr "刷新內容..." + +#: admin.php:66 index.php:195 +msgid "JavaScript must be enabled in order for you to use CORAL. However, it seems JavaScript is either disabled or not supported by your browser. To use CORAL, enable JavaScript by changing your browser options, then" +msgstr "先啟用JavaScript以後才能使用COREL。然而,您的瀏覽器似乎停用了JavaScript,不然就是不支援JavaScript。要使用COREL,先到瀏覽器選項內更改為啟用JavaScript,然後" + +#: admin.php:66 index.php:195 +msgid "try again" +msgstr "再試一次" + +#: admin.php:75 index.php:205 +msgid "eRM Authentication" +msgstr "eRM 身份驗證" + +#: admin.php:82 +msgid "Users" +msgstr "使用者" + +#: admin.php:83 +msgid "Login ID must match the login ID set up in the modules" +msgstr "登入 ID 必須與模組中設定的登入 ID 對應" + +#: admin.php:89 +msgid "Processing..." +msgstr "正在處理..." + +#: admin.php:93 index.php:226 +msgid "Change language:" +msgstr "更改語言:" + +#: admin.php:109 index.php:242 +msgid "Invalid translation route!" +msgstr "不正確翻譯路線!" + +#: admin.php:134 +msgid "Login page" +msgstr "登入頁面" + +#: admin/classes/common/DBService.php:39 +msgid "There was a problem with the database: " +msgstr "資料庫出現問題:" + +#: admin/classes/common/LdapPerson.php:34 +msgid "Could not connect to " +msgstr "無法連接到" + +#: admin/classes/common/Object.php:63 +msgid "Cannot set value for undefined key (" +msgstr "無法對未定義鍵設定數值(" + +#: admin/classes/common/Object.php:72 +msgid "Cannot get value for undefined key (" +msgstr "無法從未定義鍵取得數值(" + +#: admin/classes/domain/User.php:82 admin/classes/domain/User.php:89 +msgid "Could not connect to LDAP server." +msgstr "無法連接到 LDAP 伺服器。" + +#: admin/classes/domain/User.php:97 +msgid "There is a problem with the LDAP configuration, contact your server administrator." +msgstr "LDAP 設定有問題,請聯絡伺服器管理員。" + +#: ajax_forms.php:43 +msgid "Edit User" +msgstr "編輯使用者" + +#: ajax_forms.php:43 +msgid "Add New User" +msgstr "新增使用者" + +#: ajax_forms.php:56 +msgid "Login ID" +msgstr "登入ID" + +#: ajax_forms.php:58 +msgid "Enter password for changes only" +msgstr "僅為更改輸入密碼" + +#: ajax_forms.php:59 +msgid "New " +msgstr "新" + +#: ajax_forms.php:59 +msgid "Password" +msgstr "密碼" + +#: ajax_forms.php:62 +msgid "Reenter Password" +msgstr "重新輸入密碼" + +#: ajax_forms.php:65 +msgid "Admin?" +msgstr "管理員?" + +#: ajax_forms.php:77 +msgid "submit" +msgstr "提交" + +#: ajax_forms.php:78 +msgid "cancel" +msgstr "取消" + +#: ajax_forms.php:114 ajax_htmldata.php:75 ajax_processing.php:89 +msgid "Action " +msgstr "動作" + +#: ajax_forms.php:114 ajax_htmldata.php:75 ajax_processing.php:89 +msgid " not set up!" +msgstr "尚未設立!" + +#: ajax_htmldata.php:53 +msgid "edit password or admin status" +msgstr "編輯密碼或管理員狀態" + +#: ajax_htmldata.php:54 +msgid "remove" +msgstr "移除" + +#: ajax_htmldata.php:60 ajax_htmldata.php:64 +msgid "add new user" +msgstr "新增使用者" + +#: ajax_processing.php:77 +msgid "User successfully deleted." +msgstr "使用者已成功刪除。" + +#: index.php:55 +msgid "You are successfully logged out of the system." +msgstr "您已成功登出系統。" + +#: index.php:86 +msgid "Invalid login ID. Please try again." +msgstr "不正確登入識別碼。請重試。" + +#: index.php:91 +msgid "Invalid password. Please try again." +msgstr "不正確密碼。請重試。" + +#: index.php:108 +msgid "You are already logged in as " +msgstr "您已登入為" + +#: index.php:108 +msgid "You may log in as another user below," +msgstr "您可以作為下面一位使用者登入," + +#: index.php:108 +msgid "return" +msgstr "返回" + +#: index.php:108 +msgid "or" +msgstr "或" + +#: index.php:108 +msgid "logout" +msgstr "登出" + +#: index.php:129 +msgid "Please enter login credentials to sign in." +msgstr "請輸入登入憑據登入。" + +#: index.php:137 +msgid "Your session has timed out." +msgstr "您的會話已超時" + +#: index.php:146 +msgid "You do not have permission to enter." +msgstr "您沒有許可權進入。" + +#: index.php:146 +msgid "Please contact an administrator." +msgstr "請聯絡管理員。" + +#: index.php:156 +msgid "You must log in before accessing the admin page." +msgstr "您必須先登入才能訪問管理員頁面。" + +#: index.php:211 +msgid "Login ID:" +msgstr "登入ID:" + +#: index.php:214 +msgid "Password:" +msgstr "密碼:" + +#: index.php:218 +msgid "Remember my login ID" +msgstr "記住我的登入 ID" + +#: index.php:221 +msgid "Login" +msgstr "登入" + +#: index.php:267 +msgid "Admin page" +msgstr "管理員頁面" diff --git a/licensing/LangCodes.php b/licensing/LangCodes.php index 13aa98417..7bff5380f 100644 --- a/licensing/LangCodes.php +++ b/licensing/LangCodes.php @@ -8,9 +8,9 @@ class LangCodes{ public function getLanguage($code){ $all_lang=array( 'fr_FR'=>'fr_FR', - 'en_US'=>'en_US'//, - //'zh_CN'=>'zh_CN', - //'zh_TW'=>'zh_TW', + 'en_US'=>'en_US', + 'zh_CN'=>'zh_CN', + 'zh_TW'=>'zh_TW'//, //'de_DE'=>'de_DE' ); return array_key_exists($code, $all_lang) ? $all_lang[$code] : "en_US"; @@ -18,12 +18,12 @@ public function getLanguage($code){ public function getNameLang($code_lang){ $name_lang=array( 'fr_FR'=>'Français', - 'en_US'=>'English'//, - //'zh_CN'=>'中文 (中国)', - //'zh_TW'=>'中文 (台灣)', + 'en_US'=>'English', + 'zh_CN'=>'中文 (简体)', + 'zh_TW'=>'中文 (正體)'//, //'de_DE'=>'Deutsch' ); return array_key_exists($code_lang, $name_lang) ? $name_lang[$code_lang] : "English"; } } -?> \ No newline at end of file +?> diff --git a/licensing/locale/zh_CN/LC_MESSAGES/messages.mo b/licensing/locale/zh_CN/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..2ce85f3ba9bdc9f1d23d00a5085ff04f00037cb6 GIT binary patch literal 21790 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νow2gyK?U{Ts0CBcE)t)IaY(AMO~BBdBSKf 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\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-Basepath: ../../..\n" +"X-Generator: Poedit 1.8.8\n" +"X-Poedit-SearchPath-0: .\n" + +#: js/admin.js:122 js/admin.js:257 js/admin.js:282 js/admin.js:308 js/admin.js:335 js/index.js:43 +msgid "Processing..." +msgstr "正在处理..." + +#: js/admin.js:255 js/admin.js:333 +msgid "Do you really want to delete this data?" +msgstr "你确认要删除此数据吗?" + +#: js/admin.js:280 +msgid "Do you really want to delete this user?" +msgstr "您确认要删除此用户吗?" + +#: js/admin.js:306 +msgid "Do you really want to delete this expression type? Any associated Qualifiers will be deleted as well." +msgstr "您真的想要删除此表达式类型吗?任何关联的限定符也将被删除。" + +#: js/admin.js:357 js/forms/documentForm.js:188 js/forms/expressionForm.js:78 js/forms/licenseForm.js:172 js/forms/signatureForm.js:115 ajax_forms.php:480 ajax_forms.php:743 +msgid "add" +msgstr "添加" + +#: js/forms/attachmentForm.js:41 js/forms/attachmentForm.js:54 js/forms/documentForm.js:102 +msgid "File name is already being used..." +msgstr "文件名称已正被使用..." + +#: js/forms/attachmentForm.js:46 +msgid "The attachments directory is not writable." +msgstr "该附件目录不可写。" + +#: js/forms/attachmentForm.js:84 js/forms/documentForm.js:134 js/license.js:457 +msgid " successfully uploaded." +msgstr "成功上载。" + +#: js/forms/attachmentForm.js:84 ajax_forms.php:458 ajax_forms.php:728 ajax_forms.php:815 ajax_htmldata.php:142 ajax_htmldata.php:234 ajax_htmldata.php:1150 ajax_htmldata.php:1230 ajax_htmldata.php:1287 +#: ajax_htmldata.php:1335 ajax_htmldata.php:1452 +msgid "remove" +msgstr "移除" + +#: js/forms/attachmentForm.js:101 js/forms/attachmentForm.js:109 +msgid "Do you really want to delete this attachment?" +msgstr "您确认要删除该附件吗?" + +#: js/forms/documentForm.js:38 js/forms/licenseForm.js:34 +msgid "This name is already being used!" +msgstr "该名称已被使用!" + +#: js/forms/documentForm.js:106 +msgid "File name may not contain special characters - ampersand, single quote, double quote or less than/greater than characters" +msgstr "文件名称不能包括特殊字符——&、单引号、双引号或大于号、小于号等字符。" + +#: js/forms/documentForm.js:110 +msgid "The documents directory is not writable." +msgstr "该文档目录不可写。" + +#: js/forms/documentForm.js:176 +msgid "Document Type is required." +msgstr "文档类型是必需的。" + +#: js/forms/documentForm.js:177 +msgid "Short Name is required." +msgstr "短名称是必需的。" + +#: js/forms/documentForm.js:207 +msgid "DocumentType has been added" +msgstr "已添加 DocumentType" + +#: js/forms/expressionForm.js:89 +msgid "ExpressionType has been added" +msgstr "已添加 ExpressionType" + +#: js/forms/licenseForm.js:57 js/forms/licenseForm.js:118 js/onix_import.js:11 js/onix_import.js:68 +msgid "Warning! This organization will be added new." +msgstr "警告!该组织将被添加为新组织。" + +#: js/forms/licenseForm.js:191 +msgid "Consortium has been added" +msgstr "已添加馆际联盟" + +#: js/forms/licenseForm.js:200 +msgid "License Name is required." +msgstr "授权名称为必填。" + +#: js/forms/licenseForm.js:201 +msgid "Provider is required." +msgstr "供应商为必填。" + +#: js/forms/sfxForm.js:59 +msgid "A document must be selected to continue." +msgstr "必须选择一个文档才能继续。" + +#: js/forms/sfxForm.js:60 +msgid "Terms Tool Resource must be entered to continue." +msgstr "必须输入“术语工具资源”才能继续。" + +#: js/forms/signatureForm.js:41 +msgid "No match!" +msgstr "没有匹配!" + +#: js/forms/signatureForm.js:41 +msgid "Selected: " +msgstr "已选:" + +#: js/forms/signatureForm.js:96 +msgid "Do you really want to delete this signature?" +msgstr "您确认要删除此签名吗?" + +#: js/forms/signatureForm.js:126 +msgid "SignatureType has been added" +msgstr "已添加 SignatureType" + +#: js/license.js:103 +msgid "Do you really want to delete this license?" +msgstr "您确认要删除该授权吗?" + +#: js/license.js:159 +msgid "Refreshing Contents..." +msgstr "正在刷新内容..." + +#: js/license.js:279 +msgid " record)" +msgstr "记录)" + +#: js/license.js:281 +msgid " records)" +msgstr "记录)" + +#: js/license.js:314 +msgid "Do you really want to archive this document?" +msgstr "您确认要将该文档存档吗?" + +#: js/license.js:332 +msgid "Do you really want to delete this document?" +msgstr "您确认要删除此文档吗?" + +#: js/license.js:339 +msgid "There was a problem with deleting the document. You may not delete a document if there are associated expressions. Remove all expressions and try again." +msgstr "删除文档时出现问题。您不能删除一个与表达式相关联的文档。移除所有关联的表达式,然后重试。" + +#: js/license.js:353 +msgid "Do you really want to delete this expression?" +msgstr "您确认要删除此表达式吗?" + +#: js/license.js:368 +msgid "Do you really want to delete this attachment? This will also delete all attached files." +msgstr "您确认要删除该附件吗?该操作也会删除所有关联的文件。" + +#: js/license.js:385 +msgid "Do you really want to delete this terms tool resource link?" +msgstr "您确认要删除该术语工具资源链接吗?" + +#: js/license.js:425 js/license.js:455 +msgid "File name is already being used." +msgstr "文件名称已正被使用。" + +#: js/onix_import.js:99 +msgid "Please select a file to upload." +msgstr "请选择要上传的文件。" + +#: js/onix_import.js:105 +msgid "At least one term type must be selected." +msgstr "必须至少选择一个条款类型。" + +#: js/onix_import.js:111 +msgid "The Publisher / Provider field must contain a value." +msgstr "出版商/供应商字段必须包含一个值。" + +#: js/onix_import.js:114 +msgid "" +"Please correct the following form error(s):\n" +"\n" +msgstr "" +"请更正如下表格错误:\n" +"\n" + +#: js/plugins/date.js:30 +msgid "Sunday" +msgstr "星期日" + +#: js/plugins/date.js:30 +msgid "Monday" +msgstr "星期一" + +#: js/plugins/date.js:30 +msgid "Tuesday" +msgstr "星期二" + +#: js/plugins/date.js:30 +msgid "Wednesday" +msgstr "星期三" + +#: js/plugins/date.js:30 +msgid "Thursday" +msgstr "星期四" + +#: js/plugins/date.js:30 +msgid "Friday" +msgstr "星期五" + +#: js/plugins/date.js:30 +msgid "Saturday" +msgstr "星期六" + +#: js/plugins/date.js:42 +msgid "Sun" +msgstr "星期日" + +#: js/plugins/date.js:42 +msgid "Mon" +msgstr "星期一" + +#: js/plugins/date.js:42 +msgid "Tue" +msgstr "星期二" + +#: js/plugins/date.js:42 +msgid "Wed" +msgstr "星期三" + +#: js/plugins/date.js:42 +msgid "Thu" +msgstr "星期四" + +#: js/plugins/date.js:42 +msgid "Fri" +msgstr "星期五" + +#: js/plugins/date.js:42 +msgid "Sat" +msgstr "星期六" + +#: js/plugins/date.js:54 +msgid "January" +msgstr "一月" + +#: js/plugins/date.js:54 +msgid "February" +msgstr "二月" + +#: js/plugins/date.js:54 +msgid "March" +msgstr "三月" + +#: js/plugins/date.js:54 +msgid "April" +msgstr "四月" + +#: js/plugins/date.js:54 js/plugins/date.js:66 +msgid "May" +msgstr "五月" + +#: js/plugins/date.js:54 +msgid "June" +msgstr "六月" + +#: js/plugins/date.js:54 +msgid "July" +msgstr "七月" + +#: js/plugins/date.js:54 +msgid "August" +msgstr "八月" + +#: js/plugins/date.js:54 +msgid "September" +msgstr "九月" + +#: js/plugins/date.js:54 +msgid "October" +msgstr "十月" + +#: js/plugins/date.js:54 +msgid "November" +msgstr "十一月" + +#: js/plugins/date.js:54 +msgid "December" +msgstr "十二月" + +#: js/plugins/date.js:66 +msgid "Jan" +msgstr "一月" + +#: js/plugins/date.js:66 +msgid "Feb" +msgstr "二月" + +#: js/plugins/date.js:66 +msgid "Mar" +msgstr "三月" + +#: js/plugins/date.js:66 +msgid "Apr" +msgstr "四月" + +#: js/plugins/date.js:66 +msgid "Jun" +msgstr "六月" + +#: js/plugins/date.js:66 +msgid "Jul" +msgstr "七月" + +#: js/plugins/date.js:66 +msgid "Aug" +msgstr "八月" + +#: js/plugins/date.js:66 +msgid "Sep" +msgstr "九月" + +#: js/plugins/date.js:66 +msgid "Oct" +msgstr "十月" + +#: js/plugins/date.js:66 +msgid "Nov" +msgstr "十一月" + +#: js/plugins/date.js:66 +msgid "Dec" +msgstr "十二月" + +#: js/plugins/jquery.datePicker.js:1129 +msgid "Previous year" +msgstr "前一年" + +#: js/plugins/jquery.datePicker.js:1130 +msgid "Previous month" +msgstr "上个月" + +#: js/plugins/jquery.datePicker.js:1131 +msgid "Next year" +msgstr "后一年" + +#: js/plugins/jquery.datePicker.js:1132 +msgid "Next month" +msgstr "下个月" + +#: js/plugins/jquery.datePicker.js:1133 ajax_forms.php:490 ajax_forms.php:753 +msgid "Close" +msgstr "关闭" + +#: js/plugins/jquery.datePicker.js:1134 +msgid "Choose date" +msgstr "选择日期" + +#: admin.php:22 +msgid "Administration" +msgstr "管理" + +#: admin.php:35 +msgid "Users" +msgstr "用户" + +#: admin.php:36 +msgid "add new user" +msgstr "添加新用户" + +#: admin.php:39 admin.php:56 admin.php:70 admin.php:83 admin.php:97 admin.php:112 admin.php:132 admin.php:153 admin.php:167 in_progress.php:38 license.php:70 license.php:112 license.php:131 license.php:151 +msgid "Loading..." +msgstr "正在加载..." + +#: admin.php:52 +msgid "Document Types" +msgstr "文档类型" + +#: admin.php:53 +msgid "add new document type" +msgstr "添加新的文档类型" + +#: admin.php:66 +msgid "Expression Types" +msgstr "表达式类型" + +#: admin.php:67 +msgid "add new expression type" +msgstr "添加新的表达式类型" + +#: admin.php:79 +msgid "Qualifiers" +msgstr "限定符" + +#: admin.php:80 +msgid "add new qualifier" +msgstr "添加新的限定符" + +#: admin.php:93 +msgid "Signature Types" +msgstr "签名类型" + +#: admin.php:94 +msgid "add new signature type" +msgstr "添加新的签名类型" + +#: admin.php:108 +msgid "License Statuses" +msgstr "授权状态" + +#: admin.php:109 +msgid "add new license status" +msgstr "添加新的授权状态" + +#: admin.php:129 ajax_forms.php:1035 +msgid "Calendar Settings" +msgstr "日历设置" + +#: admin.php:149 +msgid "Consortia" +msgstr "馆际联盟" + +#: admin.php:150 +msgid "add new consortium" +msgstr "添加新的馆际联盟" + +#: admin.php:163 +msgid "Providers" +msgstr "供应商" + +#: admin.php:164 +msgid "add new provider" +msgstr "添加新的供应商" + +#: admin.php:180 +msgid "You don't have permission to access this page" +msgstr "您没有权限访问此页面" + +#: admin/classes/common/DBService.php:40 +msgid "There was a problem with the database: " +msgstr "数据库出现一个问题:" + +#: admin/classes/common/Object.php:72 +msgid "Cannot get value for undefined key (" +msgstr "无法为未定义的键获取值 (" + +#: ajax_forms.php:47 ajax_htmldata.php:630 +msgid "License" +msgstr "授权许可" + +#: ajax_forms.php:51 +msgid "License Name:" +msgstr "授权名称:" + +#: ajax_forms.php:56 onix_import.php:325 +msgid "Publisher / Provider:" +msgstr "出版商 / 供应商" + +#: ajax_forms.php:66 +msgid "Consortium:" +msgstr "联盟" + +#: ajax_forms.php:94 ajax_htmldata.php:496 index.php:92 +msgid "There was an error processing this request - please verify configuration.ini is set up for organizations correctly and the database and tables have been created." +msgstr "处理该请求时出错——请验证为组织正确配置了 configuration.ini,并创建了数据库和表格。" + +#: ajax_forms.php:106 +msgid "add consortium" +msgstr "添加馆际联盟" + +#: ajax_forms.php:113 ajax_forms.php:270 ajax_forms.php:369 ajax_forms.php:639 ajax_forms.php:831 +msgid "submit" +msgstr "提交" + +#: ajax_forms.php:114 ajax_forms.php:271 ajax_forms.php:370 ajax_forms.php:640 ajax_forms.php:832 ajax_forms.php:965 ajax_forms.php:1011 ajax_forms.php:1119 ajax_forms.php:1173 +msgid "cancel" +msgstr "取消" + +#: ajax_forms.php:164 +msgid "Document Upload" +msgstr "文档上传" + +#: ajax_forms.php:167 +msgid "Effective Date:" +msgstr "生效日期" + +#: ajax_forms.php:174 +msgid "Document Type:" +msgstr "文档类型:" + +#: ajax_forms.php:195 +msgid "add document type" +msgstr "添加文档类型" + +#: ajax_forms.php:203 +msgid "Parent:" +msgstr "父:" + +#: ajax_forms.php:235 +msgid "Name:" +msgstr "名称:" + +#: ajax_forms.php:241 +msgid "File:" +msgstr "文件:" + +#: ajax_forms.php:247 +msgid "replace with new file" +msgstr "替换为新文件" + +#: ajax_forms.php:263 +msgid "Archived:" +msgstr "存档" + +#: ajax_forms.php:297 +msgid "Archive Document Date" +msgstr "存档文档日期" + +#: ajax_forms.php:302 +msgid "Archive Date:" +msgstr "存档日期:" + +#: ajax_forms.php:305 ajax_processing.php:505 ajax_processing.php:517 ajax_processing.php:530 +msgid "Continue" +msgstr "继续" + +#: ajax_forms.php:335 +msgid "Terms Tool Resource Link" +msgstr "术语工具资源链接" + +#: ajax_forms.php:340 ajax_htmldata.php:1079 +msgid "For Document:" +msgstr "文档:" + +#: ajax_forms.php:363 +msgid "Terms Tool Resource:" +msgstr "术语工具资源:" + +#: ajax_forms.php:401 ajax_htmldata.php:773 ajax_htmldata.php:778 ajax_htmldata.php:903 ajax_htmldata.php:908 +msgid "Signatures" +msgstr "签名" + +#: ajax_forms.php:407 +msgid "Signer Name" +msgstr "签名人姓名" + +#: ajax_forms.php:408 ajax_htmldata.php:182 +msgid "Date" +msgstr "日期" + +#: ajax_forms.php:409 ajax_htmldata.php:771 ajax_htmldata.php:776 ajax_htmldata.php:901 ajax_htmldata.php:906 ajax_htmldata.php:1083 +msgid "Type" +msgstr "类型" + +#: ajax_forms.php:444 ajax_forms.php:705 +msgid "commit update" +msgstr "提交更新" + +#: ajax_forms.php:457 ajax_forms.php:727 ajax_htmldata.php:141 ajax_htmldata.php:234 ajax_htmldata.php:1150 ajax_htmldata.php:1229 ajax_htmldata.php:1412 +msgid "edit" +msgstr "编辑" + +#: ajax_forms.php:546 license.php:63 license.php:105 license.php:125 license.php:144 +msgid "Expressions" +msgstr "表达式" + +#: ajax_forms.php:551 +msgid "Document:" +msgstr "文档:" + +#: ajax_forms.php:573 +msgid "Expression Type:" +msgstr "表达式类型" + +#: ajax_forms.php:592 +msgid "add expression" +msgstr "添加表达式" + +#: ajax_forms.php:599 +msgid "Qualifier:" +msgstr "限定符" + +#: ajax_forms.php:635 ajax_htmldata.php:543 +msgid "Document Text:" +msgstr "文档文本:" + +#: ajax_forms.php:673 ajax_forms.php:684 ajax_htmldata.php:631 +msgid "Notes" +msgstr "注释" + +#: ajax_forms.php:674 +msgid "For Document Text:" +msgstr "文档文本:" + +#: ajax_forms.php:789 license.php:65 license.php:107 license.php:127 license.php:146 +msgid "Attachments" +msgstr "附件:" + +#: ajax_forms.php:793 +msgid "Date:" +msgstr "日期:" + +#: ajax_forms.php:800 +msgid "Details:" +msgstr "详细信息:" + +#: ajax_forms.php:806 +msgid "Attachments:" +msgstr "附件:" + +#: ajax_forms.php:860 ajax_forms.php:901 ajax_forms.php:984 ajax_forms.php:1135 +msgid "Update" +msgstr "更新" + +#: ajax_forms.php:865 ajax_htmldata.php:1286 ajax_htmldata.php:1334 ajax_htmldata.php:1451 +msgid "update" +msgstr "更新" + +#: ajax_forms.php:872 +msgid "close" +msgstr "关闭" + +#: ajax_forms.php:904 ajax_forms.php:987 ajax_forms.php:1138 +msgid "Add New" +msgstr "添加新的" + +#: ajax_forms.php:912 +msgid "User" +msgstr "用户" + +#: ajax_forms.php:913 ajax_htmldata.php:1258 +msgid "Login ID" +msgstr "登录 ID:" + +#: ajax_forms.php:914 ajax_htmldata.php:1259 +msgid "First Name" +msgstr "名" + +#: ajax_forms.php:915 ajax_htmldata.php:1260 +msgid "Last Name" +msgstr "姓" + +#: ajax_forms.php:916 ajax_htmldata.php:1261 +msgid "Privilege" +msgstr "特权" + +#: ajax_forms.php:919 ajax_forms.php:922 +msgid "Add/Edit users can add, edit, or remove licenses and associated fields" +msgstr "添加/编辑用户可以添加、编辑或移除授权和关联的字段" + +#: ajax_forms.php:919 ajax_forms.php:922 +msgid "Admin users have access to the Admin page and the SFX tab." +msgstr "管理员用户可以访问管理页面和 SFX 选项卡。" + +#: ajax_forms.php:919 ajax_forms.php:922 +msgid "Restricted users do not have the ability to view documents" +msgstr "受限用户不能查看文档" + +#: ajax_forms.php:919 ajax_forms.php:922 +msgid "View only users can view all license information, including the license pdf" +msgstr "仅可查看用户可以查看所有的授权信息,包括授权 PDF 术语工具电子邮件" + +#: ajax_forms.php:951 +msgid "Terms Tool Email" +msgstr "术语工具电子邮件" + +#: ajax_forms.php:954 +msgid "Enter email address if you wish this user to receive email notifications when the terms tool box is checked on the Expressions tab." +msgstr "如果您希望该用户在“表达式”选项卡上勾选了条款工具框时可以接收电子邮件通知,则请输入电子邮件地址。" + +#: ajax_forms.php:954 +msgid "Leave this field blank if the user shouldn't receive emails." +msgstr "如果用户不应接收电子邮件,则将该字段留空。" + +#: ajax_forms.php:995 ajax_forms.php:996 ajax_htmldata.php:1324 index.php:180 +msgid "Expression Type" +msgstr "表达式类型" + +#: ajax_forms.php:997 ajax_htmldata.php:1325 +msgid "Note Type" +msgstr "注释类型" + +#: ajax_forms.php:1000 +msgid "Internal" +msgstr "内部" + +#: ajax_forms.php:1001 +msgid "Display" +msgstr "显示" + +#: ajax_forms.php:1006 +msgid "Note type of display allows for terms tool use" +msgstr "* 显示的注释类型可允许使用术语工具" + +#: ajax_forms.php:1026 +msgid "Edit" +msgstr "编辑" + +#: ajax_forms.php:1040 ajax_forms.php:1070 ajax_forms.php:1103 +msgid "Variable Name" +msgstr "变量名称" + +#: ajax_forms.php:1043 ajax_forms.php:1073 ajax_forms.php:1104 ajax_htmldata.php:1366 +msgid "Value" +msgstr "值" + +#: ajax_forms.php:1146 ajax_forms.php:1169 ajax_htmldata.php:1086 ajax_htmldata.php:1439 index.php:205 +msgid "Qualifier" +msgstr "限定符" + +#: ajax_forms.php:1148 ajax_htmldata.php:1438 +msgid "For Expression Type" +msgstr "表达式类型" + +#: ajax_forms.php:1196 ajax_htmldata.php:1590 ajax_processing.php:1172 +msgid "Action " +msgstr "操作" + +#: ajax_forms.php:1196 ajax_htmldata.php:1590 ajax_processing.php:1172 +msgid " not set up!" +msgstr "未设置!" + +#: ajax_htmldata.php:50 +msgid "edit license" +msgstr "编辑许可证" + +#: ajax_htmldata.php:50 +msgid "remove license" +msgstr "移除授权" + +#: ajax_htmldata.php:61 +msgid "edit organization" +msgstr "编辑组织" + +#: ajax_htmldata.php:78 +msgid "License Status:" +msgstr "授权状态" + +#: ajax_htmldata.php:131 +msgid "For Document" +msgstr "文档:" + +#: ajax_htmldata.php:132 +msgid "Resource" +msgstr "资源" + +#: ajax_htmldata.php:155 ajax_htmldata.php:245 ajax_htmldata.php:852 ajax_htmldata.php:970 ajax_htmldata.php:1027 ajax_htmldata.php:1196 ajax_htmldata.php:1239 ajax_htmldata.php:1296 ajax_htmldata.php:1344 +#: ajax_htmldata.php:1421 +msgid "(none found)" +msgstr "(未找到)" + +#: ajax_htmldata.php:159 +msgid "add new terms tool resource link" +msgstr "添加新的术语工具资源链接" + +#: ajax_htmldata.php:183 +msgid "Details" +msgstr "详细信息" + +#: ajax_htmldata.php:206 ajax_htmldata.php:675 +msgid "more..." +msgstr "更多" + +#: ajax_htmldata.php:211 ajax_htmldata.php:680 +msgid "less..." +msgstr "更少" + +#: ajax_htmldata.php:223 ajax_htmldata.php:865 ajax_htmldata.php:983 +msgid "(none uploaded)" +msgstr "(无上传)" + +#: ajax_htmldata.php:228 +msgid "view attachment " +msgstr "查看附件" + +#: ajax_htmldata.php:249 +msgid "add new attachment" +msgstr "添加新附件" + +#: ajax_htmldata.php:322 +msgid "Sorry, no licenses fit your query" +msgstr "抱歉,没有符合您的查询的授权" + +#: ajax_htmldata.php:329 +msgid "Displaying " +msgstr "显示" + +#: ajax_htmldata.php:329 +msgid " to " +msgstr "到" + +#: ajax_htmldata.php:329 +msgid " of " +msgstr "之" + +#: ajax_htmldata.php:329 +msgid " License Records" +msgstr "条授权记录" + +#: ajax_htmldata.php:383 ajax_htmldata.php:463 ajax_htmldata.php:770 ajax_htmldata.php:775 ajax_htmldata.php:900 ajax_htmldata.php:905 +msgid "Name" +msgstr "名称" + +#: ajax_htmldata.php:384 ajax_htmldata.php:464 +msgid "Publisher / Provider" +msgstr "出版商 / 供应商" + +#: ajax_htmldata.php:385 ajax_htmldata.php:465 index.php:101 +msgid "Consortium" +msgstr "馆际联盟" + +#: ajax_htmldata.php:386 ajax_htmldata.php:466 index.php:124 +msgid "Status" +msgstr "状态" + +#: ajax_htmldata.php:432 +msgid "records per page" +msgstr "记录/页" + +#: ajax_htmldata.php:535 +msgid "view / edit license" +msgstr "查看/编辑授权" + +#: ajax_htmldata.php:535 +msgid "view / edit " +msgstr "查看/编辑" + +#: ajax_htmldata.php:535 ajax_htmldata.php:1176 +msgid " notes" +msgstr "注释:" + +#: ajax_htmldata.php:535 ajax_htmldata.php:537 ajax_htmldata.php:863 ajax_htmldata.php:981 +msgid "view document" +msgstr "查看文档" + +#: ajax_htmldata.php:537 ajax_htmldata.php:639 +msgid "view license" +msgstr "查看授权" + +#: ajax_htmldata.php:547 ajax_htmldata.php:652 ajax_htmldata.php:1155 ajax_htmldata.php:1157 +msgid " Notes:" +msgstr "注释:" + +#: ajax_htmldata.php:573 +msgid "Qualifiers:" +msgstr "限定符:" + +#: ajax_htmldata.php:632 ajax_htmldata.php:1084 +msgid "Document Text" +msgstr "文档文本:" + +#: ajax_htmldata.php:644 +msgid "(document text not entered)" +msgstr "(未输入文档文本)" + +#: ajax_htmldata.php:692 +msgid "(none for " +msgstr "无" + +#: ajax_htmldata.php:742 +msgid "Archived Documents" +msgstr "已存档文档" + +#: ajax_htmldata.php:742 +msgid "hide archives" +msgstr "隐藏档案" + +#: ajax_htmldata.php:772 ajax_htmldata.php:777 ajax_htmldata.php:902 ajax_htmldata.php:907 +msgid "Effective Date" +msgstr "生效日期" + +#: ajax_htmldata.php:813 ajax_htmldata.php:933 +msgid "archived on: " +msgstr "存档时间:" + +#: ajax_htmldata.php:836 ajax_htmldata.php:954 +msgid "(no date)" +msgstr "(无日期)" + +#: ajax_htmldata.php:847 ajax_htmldata.php:965 +msgid "add/view details" +msgstr "添加/查看详细信息" + +#: ajax_htmldata.php:854 ajax_htmldata.php:972 +msgid "add signatures" +msgstr "添加签名" + +#: ajax_htmldata.php:870 ajax_htmldata.php:987 +msgid "view expressions" +msgstr "查看表达式" + +#: ajax_htmldata.php:876 ajax_htmldata.php:993 +msgid "edit document" +msgstr "编辑文档" + +#: ajax_htmldata.php:876 ajax_htmldata.php:993 +msgid "remove document" +msgstr "移除文档" + +#: ajax_htmldata.php:886 ajax_htmldata.php:888 +msgid "This document has " +msgstr "该文档有" + +#: ajax_htmldata.php:886 ajax_htmldata.php:888 +msgid " children document(s) not displayed." +msgstr "未显示的子文档。" + +#: ajax_htmldata.php:886 ajax_htmldata.php:888 +msgid "show all documents for this parent" +msgstr "为父级显示所有文档" + +#: ajax_htmldata.php:892 ajax_htmldata.php:894 ajax_htmldata.php:1002 ajax_htmldata.php:1004 +msgid "The following " +msgstr "如下" + +#: ajax_htmldata.php:892 ajax_htmldata.php:894 ajax_htmldata.php:1002 ajax_htmldata.php:1004 +msgid " document(s) belong to " +msgstr "文档属于" + +#: ajax_htmldata.php:892 ajax_htmldata.php:894 +msgid "hide children documents for this parent" +msgstr "为父级隐藏子文档" + +#: ajax_htmldata.php:931 +msgid "archive document" +msgstr "存档文档" + +#: ajax_htmldata.php:1031 +msgid " archive(s) available." +msgstr "个有效档案。" + +#: ajax_htmldata.php:1031 +msgid "show archives" +msgstr "显示档案" + +#: ajax_htmldata.php:1037 +msgid "upload new document" +msgstr "上载新文档" + +#: ajax_htmldata.php:1125 +msgid "used in terms tool" +msgstr "在术语工具中使用" + +#: ajax_htmldata.php:1170 index.php:105 +msgid "(none)" +msgstr "(无)" + +#: ajax_htmldata.php:1176 +msgid "add/view " +msgstr "添加/查看" + +#: ajax_htmldata.php:1200 +msgid "add new expression" +msgstr "添加新的表达式" + +#: ajax_htmldata.php:1267 +msgid "Terms Tool Update Email" +msgstr "术语工具更新电子邮件" + +#: ajax_htmldata.php:1365 +msgid "Setting" +msgstr "设置" + +#: ajax_htmldata.php:1488 +msgid "Limit by Qualifier:" +msgstr "按限定符限制:" + +#: ajax_htmldata.php:1572 +msgid "Resources Module" +msgstr "资源模块" + +#: ajax_processing.php:96 +msgid "License successfully deleted." +msgstr "已成功删除授权。" + +#: ajax_processing.php:172 ajax_processing.php:957 +msgid "success uploading!" +msgstr "成功上传!" + +#: ajax_processing.php:175 ajax_processing.php:960 +msgid "There was a problem saving your file to" +msgstr "保存您的文件时出错" + +#: ajax_processing.php:236 +msgid "Document Saved Successfully." +msgstr "已成功保存文档。" + +#: ajax_processing.php:250 +msgid "Signature Deleted Successfully." +msgstr "已成功删除签名。" + +#: ajax_processing.php:312 +msgid "Expression Removed Successfully." +msgstr "已成功移除表达式。" + +#: ajax_processing.php:335 +msgid "An expression in the licensing module has been approved for terms tool use." +msgstr "授权模块中的一个表达式已被批准用于条款工具。" + +#: ajax_processing.php:336 +msgid "License: " +msgstr "授权" + +#: ajax_processing.php:337 +msgid "View License Record: " +msgstr "查看授权记录:" + +#: ajax_processing.php:341 +msgid "Licensing - expression set to production use" +msgstr "授权 - 表达式设置为生产使用" + +#: ajax_processing.php:346 +msgid "Approved for terms tool display." +msgstr "批准用于条款工具显示。" + +#: ajax_processing.php:348 +msgid "Removed from terms tool display." +msgstr "从条款工具显示移除。" + +#: ajax_processing.php:375 +msgid "Expression Note Updated Successfully." +msgstr "成功更新表达式注释。" + +#: ajax_processing.php:391 +msgid "Expression Note Added Successfully." +msgstr "已成功添加表达式注释。" + +#: ajax_processing.php:415 +msgid "Note Removed Successfully." +msgstr "已成功移除注释。" + +#: ajax_processing.php:452 +msgid "Terms Tool Resource Link successfully deleted" +msgstr "已成功删除条款工具资源链接" + +#: ajax_processing.php:468 +msgid "License Updated Successfully." +msgstr "已成功更新授权。" + +#: ajax_processing.php:477 +msgid "License Added Successfully." +msgstr "已成功添加授权。" + +#: ajax_processing.php:477 +msgid "Please continue to upload documents and add expressions or emails." +msgstr "请继续上传文档和添加表达式或电子邮件。" + +#: ajax_processing.php:514 ajax_processing.php:527 +msgid "SQL Insert Failed." +msgstr "SQL 插入失败。" + +#: ajax_processing.php:514 ajax_processing.php:527 +msgid "Please make sure everything is filled out correctly." +msgstr "请确保一切正确填写。" + +#: ajax_processing.php:772 +msgid "Unable to delete - this " +msgstr "无法删除 - 该" + +#: ajax_processing.php:772 +msgid " is in use. Please make sure no licenses are set up with this information." +msgstr "正在使用中。请确保没有使用该信息设置的组织。" + +#: ajax_processing.php:778 +msgid "Unable to delete. Please make sure no licenses are set up with this information." +msgstr "无法删除。请确保没有使用该信息设置的资源。" + +#: ajax_processing.php:1027 +msgid "Attachment successfully deleted" +msgstr "已成功删除附件" + +#: ajax_processing.php:1041 +msgid "Attachment file successfully deleted" +msgstr "已成功删除附件文件" + +#: ajax_processing.php:1062 +msgid "Status has been updated" +msgstr "已更新状态" + +#: calendar.php:21 in_progress.php:23 index.php:23 templates/header.php:181 templates/header.php:236 templates/header.php:284 +msgid "Home" +msgstr "主页" + +#: calendar.php:34 templates/header.php:210 templates/header.php:265 templates/header.php:313 +msgid "Calendar" +msgstr "日历" + +#: calendar.php:41 +msgid "Could not connect to host." +msgstr "无法连接到主机。" + +#: calendar.php:42 +msgid "Could not find License database." +msgstr "无法找到授权数据库。" + +#: calendar.php:43 +msgid "Could not find Resource database." +msgstr "无法找到资源数据库。" + +#: calendar.php:49 +msgid "There was an error with the CalendarSettings Table please verify the table has been created." +msgstr "CalendarSettings 表格出错,请验证已创建该表格。" + +#: calendar.php:90 +msgid "There was an error with the CalendarSettings Configuration." +msgstr "CalendarSettings 配置出错。" + +#: calendar.php:115 calendar.php:152 +msgid "Bad Query Failure" +msgstr "错误的查询失败" + +#: calendar.php:122 +msgid "Upcoming License Renewals" +msgstr "下次授权续期" + +#: calendar.php:210 +msgid "No associated licenses available." +msgstr "无可用的关联授权。" + +#: calendar.php:216 +msgid "Expired " +msgstr "过期于" + +#: calendar.php:216 +msgid " days ago" +msgstr "天前" + +#: calendar.php:218 +msgid "- Expires in " +msgstr "- 将过期于" + +#: calendar.php:221 +msgid " days)" +msgstr "天后)" + +#: calendar.php:223 +msgid " days " +msgstr "天后" + +#: calendar.php:234 +msgid "Participants: " +msgstr "参与者:" + +#: compare.php:22 templates/header.php:202 templates/header.php:257 templates/header.php:305 +msgid "Expression Comparison" +msgstr "表达式比较" + +#: compare.php:39 +msgid "Limit by Expression Type:" +msgstr "按表达式类型限制:" + +#: in_progress.php:33 +msgid "Licenses In Progress" +msgstr "授权在进行中" + +#: in_progress.php:33 +msgid "Browse All" +msgstr "浏览所有" + +#: index.php:48 +msgid "Search" +msgstr "检索" + +#: index.php:49 index.php:238 +msgid "new search" +msgstr "新的检索" + +#: index.php:58 +msgid "Name (contains)" +msgstr "名称(包含)" + +#: index.php:61 +msgid "go!" +msgstr "检索!" + +#: index.php:67 +msgid "Publisher/Provider" +msgstr "出版商 / 供应商" + +#: index.php:78 index.php:104 +msgid "All" +msgstr "所有" + +#: index.php:149 +msgid "Document Type" +msgstr "文档类型:" + +#: index.php:215 +msgid "Starts with" +msgstr "开始字母" + +#: license.php:62 license.php:104 license.php:124 license.php:143 +msgid "Documents" +msgstr "文档" + +#: license.php:64 license.php:106 license.php:126 license.php:145 +msgid "Terms Tool" +msgstr "条款工具" + +#: license.php:79 +msgid "Helpful Links" +msgstr "有用的链接" + +#: license.php:87 +msgid "Send feedback on this resource" +msgstr "发送该资源的反馈" + +#: not_available.php:21 +msgid "Not Available" +msgstr "无有效复本" + +#: not_available.php:66 +msgid "Please contact your Administrator for access to the Licensing Module." +msgstr "请联系您的管理员以访问“授权模块”。" + +#: onix_import.php:14 onix_import.php:17 +msgid "ONIX-PL Import" +msgstr "ONIX-PL 导入" + +#: onix_import.php:28 +msgid "The file has been successfully uploaded." +msgstr "已成功上传该文件。" + +#: onix_import.php:51 +msgid "Unable to create file for license." +msgstr "无法为授权创建文件。" + +#: onix_import.php:284 +msgid " Expression Type(s) Created" +msgstr "已创建表达式类型" + +#: onix_import.php:285 +msgid " Qualifiers Created" +msgstr "已创建限定符" + +#: onix_import.php:289 +msgid "Cannot create XML object" +msgstr "无法创建 XML 对象" + +#: onix_import.php:294 +msgid "Unable to upload the file" +msgstr "无法上传文件" + +#: onix_import.php:298 +msgid "Error: " +msgstr "错误:" + +#: onix_import.php:312 +msgid "File selection" +msgstr "文件选择" + +#: onix_import.php:313 +msgid "XML File" +msgstr "XML 文件" + +#: onix_import.php:317 +msgid "Import options" +msgstr "导入选项" + +#: onix_import.php:319 +msgid "Usage Terms" +msgstr "使用条款" + +#: onix_import.php:320 +msgid "Supply Terms" +msgstr "供应条款" + +#: onix_import.php:321 +msgid "Continuing Access Terms" +msgstr "继续访问条款" + +#: onix_import.php:322 +msgid "Payment Terms" +msgstr "付款条款" + +#: onix_import.php:323 +msgid "General Terms" +msgstr "一般条款" + +#: onix_import.php:334 +msgid "Upload" +msgstr "上传" + +#: templates/header.php:35 +msgid "Both license name and organization must be filled out. Please try again." +msgstr "必须填写授权名称及组织。请再试一次。" + +#: templates/header.php:85 +msgid "JavaScript must be enabled in order for you to use CORAL. However, it seems JavaScript is either disabled or not supported by your browser. To use CORAL, enable JavaScript by changing your browser options, then " +msgstr "必须启用 JavaScript 才能使用 CORAL。但是,或者您已禁用 JavaScript,或者您的浏览器不支持。若要使用 CORAL,则请更改您的浏览器选项以启用 JavaScript,并" + +#: templates/header.php:85 +msgid "try again" +msgstr "重试" + +#: templates/header.php:107 +msgid "Licensing" +msgstr "授权许可" + +#: templates/header.php:108 +msgid "Powered by" +msgstr "技术支持:" + +#: templates/header.php:114 +msgid "Hello" +msgstr "你好" + +#: templates/header.php:124 +msgid "logout" +msgstr "退出" + +#: templates/header.php:124 +msgid "Help" +msgstr "帮助" + +#: templates/header.php:142 +msgid "Invalid translation route!" +msgstr "无效的翻译路线!" + +#: templates/header.php:188 templates/header.php:243 templates/header.php:291 +msgid "New License" +msgstr "新授权" + +#: templates/header.php:195 templates/header.php:250 templates/header.php:298 +msgid "License In Progress" +msgstr "进程中的授权" + +#: templates/header.php:218 templates/header.php:273 templates/header.php:321 +msgid "ONIX-PL File Import" +msgstr "ONIX-PL 文件导入" + +#: templates/header.php:225 +msgid "Admin" +msgstr "管理员" + +#: templates/header.php:342 +msgid "Change Module" +msgstr "更改模块" + +#: templates/header.php:345 +msgid "Main Menu" +msgstr "主菜单" + +#: templates/header.php:350 +msgid "Resources" +msgstr "资源" + +#: templates/header.php:355 +msgid "Organizations" +msgstr "组织" + +#: templates/header.php:360 +msgid "Usage Statistics" +msgstr "使用统计信息" + +#: templates/header.php:365 +msgid "Management" +msgstr "管理" + +#: terms_report.php:22 +msgid "Terms Report" +msgstr "条款报表" diff --git a/licensing/locale/zh_TW/LC_MESSAGES/messages.mo b/licensing/locale/zh_TW/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..ce0ce070f97d6117220f1495270c24e7934b04e4 GIT binary patch literal 21788 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\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-Basepath: ../../..\n" +"X-Generator: Poedit 1.8.8\n" +"X-Poedit-SearchPath-0: .\n" + +#: js/admin.js:122 js/admin.js:257 js/admin.js:282 js/admin.js:308 js/admin.js:335 js/index.js:43 +msgid "Processing..." +msgstr "正在處理..." + +#: js/admin.js:255 js/admin.js:333 +msgid "Do you really want to delete this data?" +msgstr "您真的要刪除這筆資料嗎?" + +#: js/admin.js:280 +msgid "Do you really want to delete this user?" +msgstr "您真的要刪除這個使用者嗎?" + +#: js/admin.js:306 +msgid "Do you really want to delete this expression type? Any associated Qualifiers will be deleted as well." +msgstr "您真的想要刪除此運算式類型嗎?任何關聯的限定詞也將被刪除。" + +#: js/admin.js:357 js/forms/documentForm.js:188 js/forms/expressionForm.js:78 js/forms/licenseForm.js:172 js/forms/signatureForm.js:115 ajax_forms.php:480 ajax_forms.php:743 +msgid "add" +msgstr "添加" + +#: js/forms/attachmentForm.js:41 js/forms/attachmentForm.js:54 js/forms/documentForm.js:102 +msgid "File name is already being used..." +msgstr "文檔名稱已被使用..." + +#: js/forms/attachmentForm.js:46 +msgid "The attachments directory is not writable." +msgstr "該附件目錄不可寫。" + +#: js/forms/attachmentForm.js:84 js/forms/documentForm.js:134 js/license.js:457 +msgid " successfully uploaded." +msgstr "成功上載。" + +#: js/forms/attachmentForm.js:84 ajax_forms.php:458 ajax_forms.php:728 ajax_forms.php:815 ajax_htmldata.php:142 ajax_htmldata.php:234 ajax_htmldata.php:1150 ajax_htmldata.php:1230 ajax_htmldata.php:1287 +#: ajax_htmldata.php:1335 ajax_htmldata.php:1452 +msgid "remove" +msgstr "移除" + +#: js/forms/attachmentForm.js:101 js/forms/attachmentForm.js:109 +msgid "Do you really want to delete this attachment?" +msgstr "您確認要刪除該附件嗎?" + +#: js/forms/documentForm.js:38 js/forms/licenseForm.js:34 +msgid "This name is already being used!" +msgstr "該名稱已被使用!" + +#: js/forms/documentForm.js:106 +msgid "File name may not contain special characters - ampersand, single quote, double quote or less than/greater than characters" +msgstr "檔案名稱不能包括特殊字元——&、單引號、雙引號或大於號、小於號等字元。" + +#: js/forms/documentForm.js:110 +msgid "The documents directory is not writable." +msgstr "該文檔目錄不可寫。" + +#: js/forms/documentForm.js:176 +msgid "Document Type is required." +msgstr "文件類型是必備欄位。" + +#: js/forms/documentForm.js:177 +msgid "Short Name is required." +msgstr "短名稱是必需的。" + +#: js/forms/documentForm.js:207 +msgid "DocumentType has been added" +msgstr "已添加 DocumentType" + +#: js/forms/expressionForm.js:89 +msgid "ExpressionType has been added" +msgstr "已添加 ExpressionType" + +#: js/forms/licenseForm.js:57 js/forms/licenseForm.js:118 js/onix_import.js:11 js/onix_import.js:68 +msgid "Warning! This organization will be added new." +msgstr "提醒!該組織將被添加為新組織。" + +#: js/forms/licenseForm.js:191 +msgid "Consortium has been added" +msgstr "已添加館際聯盟" + +#: js/forms/licenseForm.js:200 +msgid "License Name is required." +msgstr "授權名稱為必填。" + +#: js/forms/licenseForm.js:201 +msgid "Provider is required." +msgstr "供應商為必填。" + +#: js/forms/sfxForm.js:59 +msgid "A document must be selected to continue." +msgstr "必須選擇一個文件才能繼續。" + +#: js/forms/sfxForm.js:60 +msgid "Terms Tool Resource must be entered to continue." +msgstr "必須輸入\"條款工具資源\"才能繼續。" + +#: js/forms/signatureForm.js:41 +msgid "No match!" +msgstr "沒有匹配!" + +#: js/forms/signatureForm.js:41 +msgid "Selected: " +msgstr "已選:" + +#: js/forms/signatureForm.js:96 +msgid "Do you really want to delete this signature?" +msgstr "您確認要刪除此簽名嗎?" + +#: js/forms/signatureForm.js:126 +msgid "SignatureType has been added" +msgstr "已添加 SignatureType" + +#: js/license.js:103 +msgid "Do you really want to delete this license?" +msgstr "您確認要刪除該授權嗎?" + +#: js/license.js:159 +msgid "Refreshing Contents..." +msgstr "正在刷新內容..." + +#: js/license.js:279 +msgid " record)" +msgstr "紀錄)" + +#: js/license.js:281 +msgid " records)" +msgstr "紀錄)" + +#: js/license.js:314 +msgid "Do you really want to archive this document?" +msgstr "您確認要將該文件存檔嗎?" + +#: js/license.js:332 +msgid "Do you really want to delete this document?" +msgstr "您確認要刪除此文件嗎?" + +#: js/license.js:339 +msgid "There was a problem with deleting the document. You may not delete a document if there are associated expressions. Remove all expressions and try again." +msgstr "刪除文件時出現問題。您不能刪除一個與運算式關聯的文件。移除所有關聯的運算式然後重試。" + +#: js/license.js:353 +msgid "Do you really want to delete this expression?" +msgstr "您確認要刪除此運算式嗎?" + +#: js/license.js:368 +msgid "Do you really want to delete this attachment? This will also delete all attached files." +msgstr "您確認要刪除該附件嗎? 該動作也會刪除所有關聯的檔。" + +#: js/license.js:385 +msgid "Do you really want to delete this terms tool resource link?" +msgstr "您確認要刪除該條款工具資源連結嗎?" + +#: js/license.js:425 js/license.js:455 +msgid "File name is already being used." +msgstr "文檔名稱已被使用。" + +#: js/onix_import.js:99 +msgid "Please select a file to upload." +msgstr "請選擇要上載的檔。" + +#: js/onix_import.js:105 +msgid "At least one term type must be selected." +msgstr "必須至少選擇一個條款類型。" + +#: js/onix_import.js:111 +msgid "The Publisher / Provider field must contain a value." +msgstr "出版商/供應商欄位必須包含一個值。" + +#: js/onix_import.js:114 +msgid "" +"Please correct the following form error(s):\n" +"\n" +msgstr "" +"請更正如下表格錯誤:\n" +"\n" + +#: js/plugins/date.js:30 +msgid "Sunday" +msgstr "星期日" + +#: js/plugins/date.js:30 +msgid "Monday" +msgstr "星期一" + +#: js/plugins/date.js:30 +msgid "Tuesday" +msgstr "星期二" + +#: js/plugins/date.js:30 +msgid "Wednesday" +msgstr "星期三" + +#: js/plugins/date.js:30 +msgid "Thursday" +msgstr "星期四" + +#: js/plugins/date.js:30 +msgid "Friday" +msgstr "星期五" + +#: js/plugins/date.js:30 +msgid "Saturday" +msgstr "星期六" + +#: js/plugins/date.js:42 +msgid "Sun" +msgstr "星期日" + +#: js/plugins/date.js:42 +msgid "Mon" +msgstr "星期一" + +#: js/plugins/date.js:42 +msgid "Tue" +msgstr "星期二" + +#: js/plugins/date.js:42 +msgid "Wed" +msgstr "星期三" + +#: js/plugins/date.js:42 +msgid "Thu" +msgstr "星期四" + +#: js/plugins/date.js:42 +msgid "Fri" +msgstr "星期五" + +#: js/plugins/date.js:42 +msgid "Sat" +msgstr "星期六" + +#: js/plugins/date.js:54 +msgid "January" +msgstr "一月" + +#: js/plugins/date.js:54 +msgid "February" +msgstr "二月" + +#: js/plugins/date.js:54 +msgid "March" +msgstr "三月" + +#: js/plugins/date.js:54 +msgid "April" +msgstr "四月" + +#: js/plugins/date.js:54 js/plugins/date.js:66 +msgid "May" +msgstr "五月" + +#: js/plugins/date.js:54 +msgid "June" +msgstr "六月" + +#: js/plugins/date.js:54 +msgid "July" +msgstr "七月" + +#: js/plugins/date.js:54 +msgid "August" +msgstr "八月" + +#: js/plugins/date.js:54 +msgid "September" +msgstr "九月" + +#: js/plugins/date.js:54 +msgid "October" +msgstr "十月" + +#: js/plugins/date.js:54 +msgid "November" +msgstr "十一月" + +#: js/plugins/date.js:54 +msgid "December" +msgstr "十二月" + +#: js/plugins/date.js:66 +msgid "Jan" +msgstr "一月" + +#: js/plugins/date.js:66 +msgid "Feb" +msgstr "二月" + +#: js/plugins/date.js:66 +msgid "Mar" +msgstr "三月" + +#: js/plugins/date.js:66 +msgid "Apr" +msgstr "四月" + +#: js/plugins/date.js:66 +msgid "Jun" +msgstr "六月" + +#: js/plugins/date.js:66 +msgid "Jul" +msgstr "七月" + +#: js/plugins/date.js:66 +msgid "Aug" +msgstr "八月" + +#: js/plugins/date.js:66 +msgid "Sep" +msgstr "九月" + +#: js/plugins/date.js:66 +msgid "Oct" +msgstr "十月" + +#: js/plugins/date.js:66 +msgid "Nov" +msgstr "十一月" + +#: js/plugins/date.js:66 +msgid "Dec" +msgstr "十二月" + +#: js/plugins/jquery.datePicker.js:1129 +msgid "Previous year" +msgstr "前一年" + +#: js/plugins/jquery.datePicker.js:1130 +msgid "Previous month" +msgstr "上個月" + +#: js/plugins/jquery.datePicker.js:1131 +msgid "Next year" +msgstr "後一年" + +#: js/plugins/jquery.datePicker.js:1132 +msgid "Next month" +msgstr "下個月" + +#: js/plugins/jquery.datePicker.js:1133 ajax_forms.php:490 ajax_forms.php:753 +msgid "Close" +msgstr "關閉" + +#: js/plugins/jquery.datePicker.js:1134 +msgid "Choose date" +msgstr "選擇日期" + +#: admin.php:22 +msgid "Administration" +msgstr "管理" + +#: admin.php:35 +msgid "Users" +msgstr "使用者" + +#: admin.php:36 +msgid "add new user" +msgstr "新增使用者" + +#: admin.php:39 admin.php:56 admin.php:70 admin.php:83 admin.php:97 admin.php:112 admin.php:132 admin.php:153 admin.php:167 in_progress.php:38 license.php:70 license.php:112 license.php:131 license.php:151 +msgid "Loading..." +msgstr "正在載入..." + +#: admin.php:52 +msgid "Document Types" +msgstr "文件類型" + +#: admin.php:53 +msgid "add new document type" +msgstr "添加新的文件類型" + +#: admin.php:66 +msgid "Expression Types" +msgstr "運算式類型" + +#: admin.php:67 +msgid "add new expression type" +msgstr "添加新的運算式類型" + +#: admin.php:79 +msgid "Qualifiers" +msgstr "限定詞" + +#: admin.php:80 +msgid "add new qualifier" +msgstr "添加新的限定詞" + +#: admin.php:93 +msgid "Signature Types" +msgstr "簽名類型" + +#: admin.php:94 +msgid "add new signature type" +msgstr "添加新的簽名類型" + +#: admin.php:108 +msgid "License Statuses" +msgstr "授權狀態" + +#: admin.php:109 +msgid "add new license status" +msgstr "添加新的授權狀態" + +#: admin.php:129 ajax_forms.php:1035 +msgid "Calendar Settings" +msgstr "日曆設定" + +#: admin.php:149 +msgid "Consortia" +msgstr "館際聯盟" + +#: admin.php:150 +msgid "add new consortium" +msgstr "添加新的館際聯盟" + +#: admin.php:163 +msgid "Providers" +msgstr "供應商" + +#: admin.php:164 +msgid "add new provider" +msgstr "添加新的供應商" + +#: admin.php:180 +msgid "You don't have permission to access this page" +msgstr "您沒有許可權訪問此頁面" + +#: admin/classes/common/DBService.php:40 +msgid "There was a problem with the database: " +msgstr "資料庫出現問題:" + +#: admin/classes/common/Object.php:72 +msgid "Cannot get value for undefined key (" +msgstr "無法從未定義鍵取得數值(" + +#: ajax_forms.php:47 ajax_htmldata.php:630 +msgid "License" +msgstr "授權" + +#: ajax_forms.php:51 +msgid "License Name:" +msgstr "授權名稱:" + +#: ajax_forms.php:56 onix_import.php:325 +msgid "Publisher / Provider:" +msgstr "出版商 / 供應商︰" + +#: ajax_forms.php:66 +msgid "Consortium:" +msgstr "館際聯盟:" + +#: ajax_forms.php:94 ajax_htmldata.php:496 index.php:92 +msgid "There was an error processing this request - please verify configuration.ini is set up for organizations correctly and the database and tables have been created." +msgstr "處理此請求時出錯 - 請驗證為組織正確設定了 configuration.ini,並建立了資料庫和表格。" + +#: ajax_forms.php:106 +msgid "add consortium" +msgstr "添加館際聯盟" + +#: ajax_forms.php:113 ajax_forms.php:270 ajax_forms.php:369 ajax_forms.php:639 ajax_forms.php:831 +msgid "submit" +msgstr "提交" + +#: ajax_forms.php:114 ajax_forms.php:271 ajax_forms.php:370 ajax_forms.php:640 ajax_forms.php:832 ajax_forms.php:965 ajax_forms.php:1011 ajax_forms.php:1119 ajax_forms.php:1173 +msgid "cancel" +msgstr "取消" + +#: ajax_forms.php:164 +msgid "Document Upload" +msgstr "文件上載" + +#: ajax_forms.php:167 +msgid "Effective Date:" +msgstr "生效日期:" + +#: ajax_forms.php:174 +msgid "Document Type:" +msgstr "文件類型:" + +#: ajax_forms.php:195 +msgid "add document type" +msgstr "添加文件類型" + +#: ajax_forms.php:203 +msgid "Parent:" +msgstr "父:" + +#: ajax_forms.php:235 +msgid "Name:" +msgstr "名稱:" + +#: ajax_forms.php:241 +msgid "File:" +msgstr "檔:" + +#: ajax_forms.php:247 +msgid "replace with new file" +msgstr "替換為新檔" + +#: ajax_forms.php:263 +msgid "Archived:" +msgstr "歸檔:" + +#: ajax_forms.php:297 +msgid "Archive Document Date" +msgstr "存檔檔日期" + +#: ajax_forms.php:302 +msgid "Archive Date:" +msgstr "歸檔日期:" + +#: ajax_forms.php:305 ajax_processing.php:505 ajax_processing.php:517 ajax_processing.php:530 +msgid "Continue" +msgstr "繼續" + +#: ajax_forms.php:335 +msgid "Terms Tool Resource Link" +msgstr "條款工具資源連結" + +#: ajax_forms.php:340 ajax_htmldata.php:1079 +msgid "For Document:" +msgstr "文件:" + +#: ajax_forms.php:363 +msgid "Terms Tool Resource:" +msgstr "條款工具資源:" + +#: ajax_forms.php:401 ajax_htmldata.php:773 ajax_htmldata.php:778 ajax_htmldata.php:903 ajax_htmldata.php:908 +msgid "Signatures" +msgstr "簽名" + +#: ajax_forms.php:407 +msgid "Signer Name" +msgstr "簽名人姓名" + +#: ajax_forms.php:408 ajax_htmldata.php:182 +msgid "Date" +msgstr "日期" + +#: ajax_forms.php:409 ajax_htmldata.php:771 ajax_htmldata.php:776 ajax_htmldata.php:901 ajax_htmldata.php:906 ajax_htmldata.php:1083 +msgid "Type" +msgstr "類型" + +#: ajax_forms.php:444 ajax_forms.php:705 +msgid "commit update" +msgstr "提交更新" + +#: ajax_forms.php:457 ajax_forms.php:727 ajax_htmldata.php:141 ajax_htmldata.php:234 ajax_htmldata.php:1150 ajax_htmldata.php:1229 ajax_htmldata.php:1412 +msgid "edit" +msgstr "編輯" + +#: ajax_forms.php:546 license.php:63 license.php:105 license.php:125 license.php:144 +msgid "Expressions" +msgstr "運算式" + +#: ajax_forms.php:551 +msgid "Document:" +msgstr "文件:" + +#: ajax_forms.php:573 +msgid "Expression Type:" +msgstr "運算式類型:" + +#: ajax_forms.php:592 +msgid "add expression" +msgstr "添加運算式" + +#: ajax_forms.php:599 +msgid "Qualifier:" +msgstr "限定詞:" + +#: ajax_forms.php:635 ajax_htmldata.php:543 +msgid "Document Text:" +msgstr "文件文本:" + +#: ajax_forms.php:673 ajax_forms.php:684 ajax_htmldata.php:631 +msgid "Notes" +msgstr "備註" + +#: ajax_forms.php:674 +msgid "For Document Text:" +msgstr "文件文本:" + +#: ajax_forms.php:789 license.php:65 license.php:107 license.php:127 license.php:146 +msgid "Attachments" +msgstr "附件" + +#: ajax_forms.php:793 +msgid "Date:" +msgstr "日期:" + +#: ajax_forms.php:800 +msgid "Details:" +msgstr "詳細資訊:" + +#: ajax_forms.php:806 +msgid "Attachments:" +msgstr "附件:" + +#: ajax_forms.php:860 ajax_forms.php:901 ajax_forms.php:984 ajax_forms.php:1135 +msgid "Update" +msgstr "更新" + +#: ajax_forms.php:865 ajax_htmldata.php:1286 ajax_htmldata.php:1334 ajax_htmldata.php:1451 +msgid "update" +msgstr "更新" + +#: ajax_forms.php:872 +msgid "close" +msgstr "關閉" + +#: ajax_forms.php:904 ajax_forms.php:987 ajax_forms.php:1138 +msgid "Add New" +msgstr "新增" + +#: ajax_forms.php:912 +msgid "User" +msgstr "使用者" + +#: ajax_forms.php:913 ajax_htmldata.php:1258 +msgid "Login ID" +msgstr "登入ID" + +#: ajax_forms.php:914 ajax_htmldata.php:1259 +msgid "First Name" +msgstr "名" + +#: ajax_forms.php:915 ajax_htmldata.php:1260 +msgid "Last Name" +msgstr "姓" + +#: ajax_forms.php:916 ajax_htmldata.php:1261 +msgid "Privilege" +msgstr "特權" + +#: ajax_forms.php:919 ajax_forms.php:922 +msgid "Add/Edit users can add, edit, or remove licenses and associated fields" +msgstr "添加/編輯使用者可以添加、編輯或移除授權和關聯的欄位" + +#: ajax_forms.php:919 ajax_forms.php:922 +msgid "Admin users have access to the Admin page and the SFX tab." +msgstr "管理員使用者可以訪問管理頁面和 SFX 選項卡。" + +#: ajax_forms.php:919 ajax_forms.php:922 +msgid "Restricted users do not have the ability to view documents" +msgstr "受限使用者不能查看文件" + +#: ajax_forms.php:919 ajax_forms.php:922 +msgid "View only users can view all license information, including the license pdf" +msgstr "僅可查看使用者可以查看所有的授權資訊,包括授權 PDF 條款工具電子郵件" + +#: ajax_forms.php:951 +msgid "Terms Tool Email" +msgstr "條款工具電子郵件" + +#: ajax_forms.php:954 +msgid "Enter email address if you wish this user to receive email notifications when the terms tool box is checked on the Expressions tab." +msgstr "如果您希望該使用者在「運算式」選項卡上勾選了條款工具框時可以接收電子郵件通知,則請輸入電子郵件地址。" + +#: ajax_forms.php:954 +msgid "Leave this field blank if the user shouldn't receive emails." +msgstr "如果使用者不應接收電子郵件,則將該欄位留空。" + +#: ajax_forms.php:995 ajax_forms.php:996 ajax_htmldata.php:1324 index.php:180 +msgid "Expression Type" +msgstr "運算式類型" + +#: ajax_forms.php:997 ajax_htmldata.php:1325 +msgid "Note Type" +msgstr "備註類型" + +#: ajax_forms.php:1000 +msgid "Internal" +msgstr "內部" + +#: ajax_forms.php:1001 +msgid "Display" +msgstr "顯示" + +#: ajax_forms.php:1006 +msgid "Note type of display allows for terms tool use" +msgstr "顯示的備註類型可允許使用條款工具" + +#: ajax_forms.php:1026 +msgid "Edit" +msgstr "編輯" + +#: ajax_forms.php:1040 ajax_forms.php:1070 ajax_forms.php:1103 +msgid "Variable Name" +msgstr "變數名稱" + +#: ajax_forms.php:1043 ajax_forms.php:1073 ajax_forms.php:1104 ajax_htmldata.php:1366 +msgid "Value" +msgstr "值" + +#: ajax_forms.php:1146 ajax_forms.php:1169 ajax_htmldata.php:1086 ajax_htmldata.php:1439 index.php:205 +msgid "Qualifier" +msgstr "限定詞" + +#: ajax_forms.php:1148 ajax_htmldata.php:1438 +msgid "For Expression Type" +msgstr "運算式類型" + +#: ajax_forms.php:1196 ajax_htmldata.php:1590 ajax_processing.php:1172 +msgid "Action " +msgstr "動作" + +#: ajax_forms.php:1196 ajax_htmldata.php:1590 ajax_processing.php:1172 +msgid " not set up!" +msgstr "尚未設立!" + +#: ajax_htmldata.php:50 +msgid "edit license" +msgstr "編輯授權" + +#: ajax_htmldata.php:50 +msgid "remove license" +msgstr "移除授權" + +#: ajax_htmldata.php:61 +msgid "edit organization" +msgstr "編輯組織" + +#: ajax_htmldata.php:78 +msgid "License Status:" +msgstr "授權狀態:" + +#: ajax_htmldata.php:131 +msgid "For Document" +msgstr "文件:" + +#: ajax_htmldata.php:132 +msgid "Resource" +msgstr "資源" + +#: ajax_htmldata.php:155 ajax_htmldata.php:245 ajax_htmldata.php:852 ajax_htmldata.php:970 ajax_htmldata.php:1027 ajax_htmldata.php:1196 ajax_htmldata.php:1239 ajax_htmldata.php:1296 ajax_htmldata.php:1344 +#: ajax_htmldata.php:1421 +msgid "(none found)" +msgstr "(未找到)" + +#: ajax_htmldata.php:159 +msgid "add new terms tool resource link" +msgstr "添加新的條款工具資源連結" + +#: ajax_htmldata.php:183 +msgid "Details" +msgstr "詳細資訊" + +#: ajax_htmldata.php:206 ajax_htmldata.php:675 +msgid "more..." +msgstr "更多..." + +#: ajax_htmldata.php:211 ajax_htmldata.php:680 +msgid "less..." +msgstr "更少..." + +#: ajax_htmldata.php:223 ajax_htmldata.php:865 ajax_htmldata.php:983 +msgid "(none uploaded)" +msgstr "(無上傳)" + +#: ajax_htmldata.php:228 +msgid "view attachment " +msgstr "查看附件" + +#: ajax_htmldata.php:249 +msgid "add new attachment" +msgstr "添加新附件" + +#: ajax_htmldata.php:322 +msgid "Sorry, no licenses fit your query" +msgstr "抱歉,沒有符合您的查詢的授權" + +#: ajax_htmldata.php:329 +msgid "Displaying " +msgstr "顯示" + +#: ajax_htmldata.php:329 +msgid " to " +msgstr "到" + +#: ajax_htmldata.php:329 +msgid " of " +msgstr "之" + +#: ajax_htmldata.php:329 +msgid " License Records" +msgstr "條授權紀錄" + +#: ajax_htmldata.php:383 ajax_htmldata.php:463 ajax_htmldata.php:770 ajax_htmldata.php:775 ajax_htmldata.php:900 ajax_htmldata.php:905 +msgid "Name" +msgstr "名稱" + +#: ajax_htmldata.php:384 ajax_htmldata.php:464 +msgid "Publisher / Provider" +msgstr "出版商 / 供應商︰" + +#: ajax_htmldata.php:385 ajax_htmldata.php:465 index.php:101 +msgid "Consortium" +msgstr "館際聯盟" + +#: ajax_htmldata.php:386 ajax_htmldata.php:466 index.php:124 +msgid "Status" +msgstr "狀態" + +#: ajax_htmldata.php:432 +msgid "records per page" +msgstr "每頁紀錄數" + +#: ajax_htmldata.php:535 +msgid "view / edit license" +msgstr "查看/編輯授權" + +#: ajax_htmldata.php:535 +msgid "view / edit " +msgstr "查看/編輯" + +#: ajax_htmldata.php:535 ajax_htmldata.php:1176 +msgid " notes" +msgstr "備註" + +#: ajax_htmldata.php:535 ajax_htmldata.php:537 ajax_htmldata.php:863 ajax_htmldata.php:981 +msgid "view document" +msgstr "查看文件" + +#: ajax_htmldata.php:537 ajax_htmldata.php:639 +msgid "view license" +msgstr "查看授權" + +#: ajax_htmldata.php:547 ajax_htmldata.php:652 ajax_htmldata.php:1155 ajax_htmldata.php:1157 +msgid " Notes:" +msgstr "備註:" + +#: ajax_htmldata.php:573 +msgid "Qualifiers:" +msgstr "限定詞:" + +#: ajax_htmldata.php:632 ajax_htmldata.php:1084 +msgid "Document Text" +msgstr "文件文本" + +#: ajax_htmldata.php:644 +msgid "(document text not entered)" +msgstr "(未輸入文件文本)" + +#: ajax_htmldata.php:692 +msgid "(none for " +msgstr "(無" + +#: ajax_htmldata.php:742 +msgid "Archived Documents" +msgstr "已歸檔文件" + +#: ajax_htmldata.php:742 +msgid "hide archives" +msgstr "隱藏檔案" + +#: ajax_htmldata.php:772 ajax_htmldata.php:777 ajax_htmldata.php:902 ajax_htmldata.php:907 +msgid "Effective Date" +msgstr "生效日期:" + +#: ajax_htmldata.php:813 ajax_htmldata.php:933 +msgid "archived on: " +msgstr "歸檔時間:" + +#: ajax_htmldata.php:836 ajax_htmldata.php:954 +msgid "(no date)" +msgstr "(無日期)" + +#: ajax_htmldata.php:847 ajax_htmldata.php:965 +msgid "add/view details" +msgstr "添加/查看詳細資訊" + +#: ajax_htmldata.php:854 ajax_htmldata.php:972 +msgid "add signatures" +msgstr "添加簽名" + +#: ajax_htmldata.php:870 ajax_htmldata.php:987 +msgid "view expressions" +msgstr "查看運算式" + +#: ajax_htmldata.php:876 ajax_htmldata.php:993 +msgid "edit document" +msgstr "編輯文件" + +#: ajax_htmldata.php:876 ajax_htmldata.php:993 +msgid "remove document" +msgstr "移除文件" + +#: ajax_htmldata.php:886 ajax_htmldata.php:888 +msgid "This document has " +msgstr "該文件有" + +#: ajax_htmldata.php:886 ajax_htmldata.php:888 +msgid " children document(s) not displayed." +msgstr "未顯示的子文件。" + +#: ajax_htmldata.php:886 ajax_htmldata.php:888 +msgid "show all documents for this parent" +msgstr "為父級顯示所有文件" + +#: ajax_htmldata.php:892 ajax_htmldata.php:894 ajax_htmldata.php:1002 ajax_htmldata.php:1004 +msgid "The following " +msgstr "如下" + +#: ajax_htmldata.php:892 ajax_htmldata.php:894 ajax_htmldata.php:1002 ajax_htmldata.php:1004 +msgid " document(s) belong to " +msgstr "文件屬於" + +#: ajax_htmldata.php:892 ajax_htmldata.php:894 +msgid "hide children documents for this parent" +msgstr "為父級隱藏子文件" + +#: ajax_htmldata.php:931 +msgid "archive document" +msgstr "存檔文件" + +#: ajax_htmldata.php:1031 +msgid " archive(s) available." +msgstr "個有效檔案。" + +#: ajax_htmldata.php:1031 +msgid "show archives" +msgstr "顯示檔案" + +#: ajax_htmldata.php:1037 +msgid "upload new document" +msgstr "上載新文檔" + +#: ajax_htmldata.php:1125 +msgid "used in terms tool" +msgstr "在條款工具中使用" + +#: ajax_htmldata.php:1170 index.php:105 +msgid "(none)" +msgstr "(無)" + +#: ajax_htmldata.php:1176 +msgid "add/view " +msgstr "添加/查看" + +#: ajax_htmldata.php:1200 +msgid "add new expression" +msgstr "添加新的運算式" + +#: ajax_htmldata.php:1267 +msgid "Terms Tool Update Email" +msgstr "條款工具更新電子郵件" + +#: ajax_htmldata.php:1365 +msgid "Setting" +msgstr "設定" + +#: ajax_htmldata.php:1488 +msgid "Limit by Qualifier:" +msgstr "按限定詞限制:" + +#: ajax_htmldata.php:1572 +msgid "Resources Module" +msgstr "資源模組" + +#: ajax_processing.php:96 +msgid "License successfully deleted." +msgstr "已成功刪除授權。" + +#: ajax_processing.php:172 ajax_processing.php:957 +msgid "success uploading!" +msgstr "成功上傳!" + +#: ajax_processing.php:175 ajax_processing.php:960 +msgid "There was a problem saving your file to" +msgstr "保存您的檔時出錯" + +#: ajax_processing.php:236 +msgid "Document Saved Successfully." +msgstr "已成功保存文件。" + +#: ajax_processing.php:250 +msgid "Signature Deleted Successfully." +msgstr "已成功刪除簽名。" + +#: ajax_processing.php:312 +msgid "Expression Removed Successfully." +msgstr "已成功移除運算式。" + +#: ajax_processing.php:335 +msgid "An expression in the licensing module has been approved for terms tool use." +msgstr "授權模組中的一個運算式已被批准用於條款工具。" + +#: ajax_processing.php:336 +msgid "License: " +msgstr "授權:" + +#: ajax_processing.php:337 +msgid "View License Record: " +msgstr "查看授權紀錄:" + +#: ajax_processing.php:341 +msgid "Licensing - expression set to production use" +msgstr "授權 - 運算式設定為生產使用" + +#: ajax_processing.php:346 +msgid "Approved for terms tool display." +msgstr "批准用於條款工具顯示。" + +#: ajax_processing.php:348 +msgid "Removed from terms tool display." +msgstr "從條款工具顯示移除。" + +#: ajax_processing.php:375 +msgid "Expression Note Updated Successfully." +msgstr "已成功更新運算式備註。" + +#: ajax_processing.php:391 +msgid "Expression Note Added Successfully." +msgstr "已成功添加運算式備註。" + +#: ajax_processing.php:415 +msgid "Note Removed Successfully." +msgstr "已成功移除備註。" + +#: ajax_processing.php:452 +msgid "Terms Tool Resource Link successfully deleted" +msgstr "已成功刪除條款工具資源連結" + +#: ajax_processing.php:468 +msgid "License Updated Successfully." +msgstr "已成功更新授權。" + +#: ajax_processing.php:477 +msgid "License Added Successfully." +msgstr "已成功添加授權。" + +#: ajax_processing.php:477 +msgid "Please continue to upload documents and add expressions or emails." +msgstr "請繼續上傳文件和添加運算式或電子郵件。" + +#: ajax_processing.php:514 ajax_processing.php:527 +msgid "SQL Insert Failed." +msgstr "SQL 插入失敗。" + +#: ajax_processing.php:514 ajax_processing.php:527 +msgid "Please make sure everything is filled out correctly." +msgstr "請確保一切正確填寫。" + +#: ajax_processing.php:772 +msgid "Unable to delete - this " +msgstr "無法刪除-這個" + +#: ajax_processing.php:772 +msgid " is in use. Please make sure no licenses are set up with this information." +msgstr "正在使用中。 請確保不要用此資訊設立任何組織。" + +#: ajax_processing.php:778 +msgid "Unable to delete. Please make sure no licenses are set up with this information." +msgstr "無法刪除。 請確保不要用此資訊設立任何授權。" + +#: ajax_processing.php:1027 +msgid "Attachment successfully deleted" +msgstr "已成功刪除附件" + +#: ajax_processing.php:1041 +msgid "Attachment file successfully deleted" +msgstr "已成功刪除附件檔" + +#: ajax_processing.php:1062 +msgid "Status has been updated" +msgstr "已更新狀態" + +#: calendar.php:21 in_progress.php:23 index.php:23 templates/header.php:181 templates/header.php:236 templates/header.php:284 +msgid "Home" +msgstr "主頁" + +#: calendar.php:34 templates/header.php:210 templates/header.php:265 templates/header.php:313 +msgid "Calendar" +msgstr "日曆" + +#: calendar.php:41 +msgid "Could not connect to host." +msgstr "無法連接到主機。" + +#: calendar.php:42 +msgid "Could not find License database." +msgstr "無法找到授權資料庫。" + +#: calendar.php:43 +msgid "Could not find Resource database." +msgstr "無法找到資源資料庫" + +#: calendar.php:49 +msgid "There was an error with the CalendarSettings Table please verify the table has been created." +msgstr "CalendarSettings 表格出錯,請驗證已建立該表格。" + +#: calendar.php:90 +msgid "There was an error with the CalendarSettings Configuration." +msgstr "CalendarSettings 設定出錯。" + +#: calendar.php:115 calendar.php:152 +msgid "Bad Query Failure" +msgstr "錯誤的查詢失敗" + +#: calendar.php:122 +msgid "Upcoming License Renewals" +msgstr "下次授權續期" + +#: calendar.php:210 +msgid "No associated licenses available." +msgstr "無可用的關聯授權。" + +#: calendar.php:216 +msgid "Expired " +msgstr "已過期" + +#: calendar.php:216 +msgid " days ago" +msgstr "天前" + +#: calendar.php:218 +msgid "- Expires in " +msgstr "- 將過期於" + +#: calendar.php:221 +msgid " days)" +msgstr "天後)" + +#: calendar.php:223 +msgid " days " +msgstr "天後" + +#: calendar.php:234 +msgid "Participants: " +msgstr "參與者:" + +#: compare.php:22 templates/header.php:202 templates/header.php:257 templates/header.php:305 +msgid "Expression Comparison" +msgstr "運算式比較" + +#: compare.php:39 +msgid "Limit by Expression Type:" +msgstr "按運算式類型限制:" + +#: in_progress.php:33 +msgid "Licenses In Progress" +msgstr "授權在進行中" + +#: in_progress.php:33 +msgid "Browse All" +msgstr "瀏覽所有" + +#: index.php:48 +msgid "Search" +msgstr "查詢" + +#: index.php:49 index.php:238 +msgid "new search" +msgstr "新查詢" + +#: index.php:58 +msgid "Name (contains)" +msgstr "名稱 (包含)" + +#: index.php:61 +msgid "go!" +msgstr "搜尋!" + +#: index.php:67 +msgid "Publisher/Provider" +msgstr "出版商 / 供應商︰" + +#: index.php:78 index.php:104 +msgid "All" +msgstr "所有" + +#: index.php:149 +msgid "Document Type" +msgstr "文件類型" + +#: index.php:215 +msgid "Starts with" +msgstr "開始字母" + +#: license.php:62 license.php:104 license.php:124 license.php:143 +msgid "Documents" +msgstr "文件" + +#: license.php:64 license.php:106 license.php:126 license.php:145 +msgid "Terms Tool" +msgstr "條款工具" + +#: license.php:79 +msgid "Helpful Links" +msgstr "有用的連結" + +#: license.php:87 +msgid "Send feedback on this resource" +msgstr "發送該資源的回饋" + +#: not_available.php:21 +msgid "Not Available" +msgstr "不可用" + +#: not_available.php:66 +msgid "Please contact your Administrator for access to the Licensing Module." +msgstr "請聯絡您的管理員以訪問「授權模組」。" + +#: onix_import.php:14 onix_import.php:17 +msgid "ONIX-PL Import" +msgstr "ONIX PL 輸入" + +#: onix_import.php:28 +msgid "The file has been successfully uploaded." +msgstr "已成功上傳該檔。" + +#: onix_import.php:51 +msgid "Unable to create file for license." +msgstr "無法為授權建立檔。" + +#: onix_import.php:284 +msgid " Expression Type(s) Created" +msgstr "已建立運算式類型" + +#: onix_import.php:285 +msgid " Qualifiers Created" +msgstr "已建立限定詞" + +#: onix_import.php:289 +msgid "Cannot create XML object" +msgstr "無法建立 XML 物件" + +#: onix_import.php:294 +msgid "Unable to upload the file" +msgstr "無法上傳檔" + +#: onix_import.php:298 +msgid "Error: " +msgstr "錯誤:" + +#: onix_import.php:312 +msgid "File selection" +msgstr "檔選擇" + +#: onix_import.php:313 +msgid "XML File" +msgstr "XML 檔" + +#: onix_import.php:317 +msgid "Import options" +msgstr "輸入選項" + +#: onix_import.php:319 +msgid "Usage Terms" +msgstr "使用條款" + +#: onix_import.php:320 +msgid "Supply Terms" +msgstr "供應條款" + +#: onix_import.php:321 +msgid "Continuing Access Terms" +msgstr "繼續存取條款" + +#: onix_import.php:322 +msgid "Payment Terms" +msgstr "付款條款" + +#: onix_import.php:323 +msgid "General Terms" +msgstr "一般條款" + +#: onix_import.php:334 +msgid "Upload" +msgstr "上傳" + +#: templates/header.php:35 +msgid "Both license name and organization must be filled out. Please try again." +msgstr "必須填寫授權名稱及組織。請再試一次。" + +#: templates/header.php:85 +msgid "JavaScript must be enabled in order for you to use CORAL. However, it seems JavaScript is either disabled or not supported by your browser. To use CORAL, enable JavaScript by changing your browser options, then " +msgstr "先啟用JavaScript以後才能使用COREL。然而,您的瀏覽器似乎停用了JavaScript,不然就是不支援JavaScript。要使用COREL,先到瀏覽器選項內更改為啟用JavaScript,然後" + +#: templates/header.php:85 +msgid "try again" +msgstr "再試一次" + +#: templates/header.php:107 +msgid "Licensing" +msgstr "授權" + +#: templates/header.php:108 +msgid "Powered by" +msgstr "技術支持:" + +#: templates/header.php:114 +msgid "Hello" +msgstr "你好" + +#: templates/header.php:124 +msgid "logout" +msgstr "登出" + +#: templates/header.php:124 +msgid "Help" +msgstr "説明" + +#: templates/header.php:142 +msgid "Invalid translation route!" +msgstr "不正確翻譯路線 !" + +#: templates/header.php:188 templates/header.php:243 templates/header.php:291 +msgid "New License" +msgstr "新授權" + +#: templates/header.php:195 templates/header.php:250 templates/header.php:298 +msgid "License In Progress" +msgstr "進程中的授權" + +#: templates/header.php:218 templates/header.php:273 templates/header.php:321 +msgid "ONIX-PL File Import" +msgstr "ONIX-PL 檔輸入" + +#: templates/header.php:225 +msgid "Admin" +msgstr "管理" + +#: templates/header.php:342 +msgid "Change Module" +msgstr "更改模組" + +#: templates/header.php:345 +msgid "Main Menu" +msgstr "主菜單" + +#: templates/header.php:350 +msgid "Resources" +msgstr "資源" + +#: templates/header.php:355 +msgid "Organizations" +msgstr "組織" + +#: templates/header.php:360 +msgid "Usage Statistics" +msgstr "使用統計資訊" + +#: templates/header.php:365 +msgid "Management" +msgstr "管理" + +#: terms_report.php:22 +msgid "Terms Report" +msgstr "條款報表" diff --git a/locale/zh_CN/LC_MESSAGES/messages.mo b/locale/zh_CN/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..26c7a625e28504add1e8c5ed491de27eb57dfb14 GIT binary patch literal 971 zcmY+C&rcIU6vs!!Usaz#ho!KzPu$m+u0hWVg(FIcL)w%!0 zc{PX>sa0UO1iw{UU;E$bNg#lA zu;^d}UxErrvfe>$Zs37Ic-OfJl4Z1P;6!*NHWrRW@jx^gjwc?4hlbM8OlHuRj3=Wf zP3nHl7qKk~H$t-06=+SeSF*QKqNdf4b4AJplcBNfFbSUc)W**kCs8YB=iyon9Go=e zaR&yTDL#pe_)?`RrzJ9M^Rh6oRcWUpr1#^_Fr@YSCP>O=c~g?dRImz_MFac&z3t~@ zF4O)V@WoX#2JUn-L1N5eoJw{6P7$p8gZ|*Db&T>{F$GnL26cVN`LylSezY2!t&Q2E zpKHkZ_|;ima@Q8z{bsB2q4mAt?(HA_oI}pLCFje0YisxLeFM2$b$4YExy=Q)`35=5 yv(D#+Q)@VH=Twc>&VsYIf)0M|yR{9sx!&5UAMDqixkmfn;?{N!H&;3yug+gda~;h9 literal 0 HcmV?d00001 diff --git a/locale/zh_CN/LC_MESSAGES/messages.po b/locale/zh_CN/LC_MESSAGES/messages.po new file mode 100644 index 000000000..19c790959 --- /dev/null +++ b/locale/zh_CN/LC_MESSAGES/messages.po @@ -0,0 +1,57 @@ +msgid "" +msgstr "" +"Project-Id-Version: messages\n" +"POT-Creation-Date: 2016-05-11 " +"14:32-06:00\n" +"PO-Revision-Date: 2016-08-22 16:01-0600\n" +"Last-Translator: <>\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Basepath: ../../..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Generator: Poedit 1.8.8\n" +"X-Poedit-SearchPath-0: .\n" + +#: index.php:49 +msgid "eRM" +msgstr "eRM" + +#: index.php:49 +msgid "eResource Management" +msgstr "电子资源管理" + +#: index.php:51 +msgid "Change language:" +msgstr "更改语言:" + +#: index.php:67 +msgid "Invalid translation route!" +msgstr "无效的翻译路线!" + +#: index.php:101 index.php:106 +msgid "Resources" +msgstr "资源" + +#: index.php:116 index.php:121 +msgid "Licensing" +msgstr "授权许可" + +#: index.php:130 index.php:135 +msgid "Organizations" +msgstr "组织" + +#: index.php:144 index.php:149 +msgid "Usage Statistics" +msgstr "使用统计信息" + +#: index.php:158 index.php:163 +msgid "Management" +msgstr "管理" + +#: index.php:170 +msgid "Powered by" +msgstr "技术支持:" diff --git a/locale/zh_TW/LC_MESSAGES/messages.mo b/locale/zh_TW/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..6effbdcfecca466ceec69b2169cc89c74faa03d3 GIT binary patch literal 972 zcmY+CT~8B16oyB|uc}dqHySTS@2BimCCx&K6-v{jm8LDooeb^RuC}|)%oK&h1QLRz zevw#jAklz{X^hwqCCG>25BM9rg5C9szu?(+1)S{LXU@)h&YYR;?~b;22*x?kHIM|g zgMNYBap@Qc*bcl3ya7B53;}(>DDVO><;A1k`eUG*R{@>?&H^t3tH4j751@+>55VFT z;4tt!unar}eCBZm==xrG@glGT;$?cE)1AUEGV z_rGz{o%9u`k!QFFzZIHi8j2a?w5aE>m9`_(-uNHy^RAB(WSB zW?aDD8ZI&6<_lkPFhlw{Ywkq)sbm@sC~6l`ZWC3->MiYNfGAy>qJWd6*tqWI|7Q%6 zKme;?fut_*#i@`a;~muG8t&hr-ba?ujJAvG|>Ee}5{HPWSo} zu|(vsN!73T`b^ih+q CgdR%( literal 0 HcmV?d00001 diff --git a/locale/zh_TW/LC_MESSAGES/messages.po b/locale/zh_TW/LC_MESSAGES/messages.po new file mode 100644 index 000000000..57f032005 --- /dev/null +++ b/locale/zh_TW/LC_MESSAGES/messages.po @@ -0,0 +1,57 @@ +msgid "" +msgstr "" +"Project-Id-Version: messages\n" +"POT-Creation-Date: 2016-05-11 " +"14:32-06:00\n" +"PO-Revision-Date: 2016-08-22 16:06-0600\n" +"Last-Translator: <>\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Basepath: ../../..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Generator: Poedit 1.8.8\n" +"X-Poedit-SearchPath-0: .\n" + +#: index.php:49 +msgid "eRM" +msgstr "eRM" + +#: index.php:49 +msgid "eResource Management" +msgstr "電子資源管理" + +#: index.php:51 +msgid "Change language:" +msgstr "更改語言:" + +#: index.php:67 +msgid "Invalid translation route!" +msgstr "不正確翻譯路線 !" + +#: index.php:101 index.php:106 +msgid "Resources" +msgstr "資源" + +#: index.php:116 index.php:121 +msgid "Licensing" +msgstr "授權許可" + +#: index.php:130 index.php:135 +msgid "Organizations" +msgstr "組織" + +#: index.php:144 index.php:149 +msgid "Usage Statistics" +msgstr "使用統計資訊" + +#: index.php:158 index.php:163 +msgid "Management" +msgstr "管理" + +#: index.php:170 +msgid "Powered by" +msgstr "技術支持:" diff --git a/management/LangCodes.php b/management/LangCodes.php index 13aa98417..7bff5380f 100644 --- a/management/LangCodes.php +++ b/management/LangCodes.php @@ -8,9 +8,9 @@ class LangCodes{ public function getLanguage($code){ $all_lang=array( 'fr_FR'=>'fr_FR', - 'en_US'=>'en_US'//, - //'zh_CN'=>'zh_CN', - //'zh_TW'=>'zh_TW', + 'en_US'=>'en_US', + 'zh_CN'=>'zh_CN', + 'zh_TW'=>'zh_TW'//, //'de_DE'=>'de_DE' ); return array_key_exists($code, $all_lang) ? $all_lang[$code] : "en_US"; @@ -18,12 +18,12 @@ public function getLanguage($code){ public function getNameLang($code_lang){ $name_lang=array( 'fr_FR'=>'Français', - 'en_US'=>'English'//, - //'zh_CN'=>'中文 (中国)', - //'zh_TW'=>'中文 (台灣)', + 'en_US'=>'English', + 'zh_CN'=>'中文 (简体)', + 'zh_TW'=>'中文 (正體)'//, //'de_DE'=>'Deutsch' ); return array_key_exists($code_lang, $name_lang) ? $name_lang[$code_lang] : "English"; } } -?> \ No newline at end of file +?> diff --git a/management/locale/zh_CN/LC_MESSAGES/messages.mo b/management/locale/zh_CN/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..d061d92f842087bd5ea0933bb9e7debb44f03ff6 GIT binary patch literal 19382 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 J*dqGu{V!2^Z\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Basepath: ../../..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Generator: Poedit 1.8.8\n" +"X-Poedit-SearchPath-0: .\n" + +#: js/admin.js:106 js/admin.js:232 js/admin.js:257 js/admin.js:283 js/admin.js:310 js/index.js:43 +msgid "Processing..." +msgstr "正在处理..." + +#: js/admin.js:135 +msgid "That " +msgstr "该" + +#: js/admin.js:135 +msgid " is already in use." +msgstr "正在使用中。" + +#: js/admin.js:230 js/admin.js:308 +msgid "Do you really want to delete this data?" +msgstr "您确认要删除此数据吗?" + +#: js/admin.js:255 +msgid "Do you really want to delete this user?" +msgstr "您确认要删除此用户吗?" + +#: js/admin.js:281 +msgid "Do you really want to delete this expression type? Any associated Qualifiers will be deleted as well." +msgstr "您真的想要删除此表达式类型吗?任何关联的限定符也将被删除。" + +#: js/admin.js:332 js/forms/documentForm.js:189 js/forms/expressionForm.js:78 js/forms/licenseForm.js:196 js/forms/licenseForm.js:270 js/forms/licenseForm.js:306 js/forms/noteForm.js:37 js/forms/signatureForm.js:104 +#: ajax_forms.php:633 ajax_forms.php:895 +msgid "add" +msgstr "添加" + +#: js/forms/attachmentForm.js:41 js/forms/attachmentForm.js:54 js/forms/documentForm.js:102 js/forms/licenseForm.js:358 +msgid "File name is already being used..." +msgstr "文件名称已正被使用..." + +#: js/forms/attachmentForm.js:46 +msgid "The attachments directory is not writable." +msgstr "该附件目录不可写。" + +#: js/forms/attachmentForm.js:84 js/forms/documentForm.js:134 js/forms/licenseForm.js:390 js/license.js:482 +msgid " successfully uploaded." +msgstr "成功上载。" + +#: js/forms/attachmentForm.js:84 ajax_forms.php:611 ajax_forms.php:880 ajax_forms.php:965 ajax_htmldata.php:48 ajax_htmldata.php:157 ajax_htmldata.php:236 ajax_htmldata.php:319 ajax_htmldata.php:1258 +#: ajax_htmldata.php:1329 ajax_htmldata.php:1383 ajax_htmldata.php:1424 ajax_htmldata.php:1467 +msgid "remove" +msgstr "移除" + +#: js/forms/attachmentForm.js:101 js/forms/attachmentForm.js:109 +msgid "Do you really want to delete this attachment?" +msgstr "您确认要删除该附件吗?" + +#: js/forms/documentForm.js:38 js/forms/licenseForm.js:39 +msgid "This name is already being used!" +msgstr "该名称已被使用!" + +#: js/forms/documentForm.js:106 js/forms/licenseForm.js:362 +msgid "File name may not contain special characters - ampersand, single quote, double quote or less than/greater than characters" +msgstr "文件名称不能包括特殊字符——&、单引号、双引号或大于号、小于号等字符。" + +#: js/forms/documentForm.js:110 js/forms/licenseForm.js:366 +msgid "The documents directory is not writable." +msgstr "该文档目录不可写。" + +#: js/forms/documentForm.js:177 +msgid "Document Type is required." +msgstr "文档类型是必填。" + +#: js/forms/documentForm.js:178 +msgid "Short Name is required." +msgstr "短名称是必填。" + +#: js/forms/documentForm.js:216 js/forms/licenseForm.js:260 +msgid "DocumentType has been added" +msgstr "已添加 DocumentType" + +#: js/forms/documentForm.js:219 js/forms/licenseForm.js:263 +msgid "That type is already in use." +msgstr "该类型已在使用。" + +#: js/forms/expressionForm.js:89 +msgid "ExpressionType has been added" +msgstr "已添加 ExpressionType" + +#: js/forms/licenseForm.js:62 js/forms/licenseForm.js:124 +msgid "Warning! This organization will be added new." +msgstr "警告!该组织将被添加为新组织。" + +#: js/forms/licenseForm.js:222 +msgid "Category has been added" +msgstr "已添加类别" + +#: js/forms/licenseForm.js:225 +msgid "That Category is already in use." +msgstr "该类别已在使用。" + +#: js/forms/licenseForm.js:295 js/forms/noteForm.js:62 +msgid "Note Type has been added" +msgstr "已添加注释类型" + +#: js/forms/licenseForm.js:298 js/forms/noteForm.js:65 +msgid "That Note Type is already in use." +msgstr "该注释类型已在使用。" + +#: js/forms/licenseForm.js:322 +msgid "Document Name is required." +msgstr "文档名称为必填。" + +#: js/forms/licenseForm.js:323 +msgid "A Category is required." +msgstr "一个类别为必填。" + +#: js/forms/licenseForm.js:326 +msgid "Edit" +msgstr "编辑" + +#: js/forms/licenseForm.js:327 +msgid "successfully uploaded" +msgstr "成功上载" + +#: js/forms/licenseForm.js:330 +msgid "File is required" +msgstr "文件为必填" + +#: js/forms/sfxForm.js:59 +msgid "A document must be selected to continue." +msgstr "必须选择一个文档才能继续。" + +#: js/forms/sfxForm.js:60 +msgid "Terms Tool Resource must be entered to continue." +msgstr "必须输入“术语工具资源”才能继续。" + +#: js/forms/signatureForm.js:42 +msgid "No match!" +msgstr "没有匹配!" + +#: js/forms/signatureForm.js:42 +msgid "Selected: " +msgstr "已选:" + +#: js/forms/signatureForm.js:85 +msgid "Do you really want to delete this signature?" +msgstr "您确认要删除此签名吗?" + +#: js/forms/signatureForm.js:115 +msgid "SignatureType has been added" +msgstr "已添加 SignatureType" + +#: js/license.js:101 js/license.js:329 +msgid "Do you really want to delete this document?" +msgstr "您确认要删除此文档吗?" + +#: js/license.js:311 +msgid "Do you really want to archive this document?" +msgstr "您确认要将该文档存档吗?" + +#: js/license.js:336 +msgid "There was a problem with deleting the document. You may not delete a document if there are associated expressions. Remove all expressions and try again." +msgstr "删除文档时出现问题。您不能删除一个与表达式相关联的文档。移除所有关联的表达式,然后重试。" + +#: js/license.js:350 +msgid "Do you really want to delete this expression?" +msgstr "您确认要删除此表达式吗?" + +#: js/license.js:365 +msgid "Do you really want to delete this attachment? This will also delete all attached files." +msgstr "您确认要删除该附件吗?该操作也会删除所有关联的文件。" + +#: js/license.js:381 +msgid "Do you really want to delete this note?" +msgstr "您确认要删除该注释吗?" + +#: js/license.js:398 +msgid "Do you really want to delete this terms tool resource link?" +msgstr "您确认要删除该术语工具资源链接吗?" + +#: js/license.js:450 js/license.js:480 +msgid "File name is already being used." +msgstr "文件名称已正被使用。" + +#: js/plugins/date.js:30 +msgid "Sunday" +msgstr "星期日" + +#: js/plugins/date.js:30 +msgid "Monday" +msgstr "星期一" + +#: js/plugins/date.js:30 +msgid "Tuesday" +msgstr "星期二" + +#: js/plugins/date.js:30 +msgid "Wednesday" +msgstr "星期三" + +#: js/plugins/date.js:30 +msgid "Thursday" +msgstr "星期四" + +#: js/plugins/date.js:30 +msgid "Friday" +msgstr "星期五" + +#: js/plugins/date.js:30 +msgid "Saturday" +msgstr "星期六" + +#: js/plugins/date.js:42 +msgid "Sun" +msgstr "星期日" + +#: js/plugins/date.js:42 +msgid "Mon" +msgstr "星期一" + +#: js/plugins/date.js:42 +msgid "Tue" +msgstr "星期二" + +#: js/plugins/date.js:42 +msgid "Wed" +msgstr "星期三" + +#: js/plugins/date.js:42 +msgid "Thu" +msgstr "星期四" + +#: js/plugins/date.js:42 +msgid "Fri" +msgstr "星期五" + +#: js/plugins/date.js:42 +msgid "Sat" +msgstr "星期六" + +#: js/plugins/date.js:54 +msgid "January" +msgstr "一月" + +#: js/plugins/date.js:54 +msgid "February" +msgstr "二月" + +#: js/plugins/date.js:54 +msgid "March" +msgstr "三月" + +#: js/plugins/date.js:54 +msgid "April" +msgstr "四月" + +#: js/plugins/date.js:54 js/plugins/date.js:66 +msgid "May" +msgstr "五月" + +#: js/plugins/date.js:54 +msgid "June" +msgstr "六月" + +#: js/plugins/date.js:54 +msgid "July" +msgstr "七月" + +#: js/plugins/date.js:54 +msgid "August" +msgstr "八月" + +#: js/plugins/date.js:54 +msgid "September" +msgstr "九月" + +#: js/plugins/date.js:54 +msgid "October" +msgstr "十月" + +#: js/plugins/date.js:54 +msgid "November" +msgstr "十一月" + +#: js/plugins/date.js:54 +msgid "December" +msgstr "十二月" + +#: js/plugins/date.js:66 +msgid "Jan" +msgstr "一月" + +#: js/plugins/date.js:66 +msgid "Feb" +msgstr "二月" + +#: js/plugins/date.js:66 +msgid "Mar" +msgstr "三月" + +#: js/plugins/date.js:66 +msgid "Apr" +msgstr "四月" + +#: js/plugins/date.js:66 +msgid "Jun" +msgstr "六月" + +#: js/plugins/date.js:66 +msgid "Jul" +msgstr "七月" + +#: js/plugins/date.js:66 +msgid "Aug" +msgstr "八月" + +#: js/plugins/date.js:66 +msgid "Sep" +msgstr "九月" + +#: js/plugins/date.js:66 +msgid "Oct" +msgstr "十月" + +#: js/plugins/date.js:66 +msgid "Nov" +msgstr "十一月" + +#: js/plugins/date.js:66 +msgid "Dec" +msgstr "十二月" + +#: js/plugins/jquery.datePicker.js:1129 +msgid "Previous year" +msgstr "前一年" + +#: js/plugins/jquery.datePicker.js:1130 +msgid "Previous month" +msgstr "上个月" + +#: js/plugins/jquery.datePicker.js:1131 +msgid "Next year" +msgstr "后一年" + +#: js/plugins/jquery.datePicker.js:1132 +msgid "Next month" +msgstr "下个月" + +#: js/plugins/jquery.datePicker.js:1133 ajax_forms.php:643 ajax_forms.php:905 +msgid "Close" +msgstr "关闭" + +#: js/plugins/jquery.datePicker.js:1134 +msgid "Choose date" +msgstr "选择日期" + +#: admin.php:22 +msgid "Administration" +msgstr "管理" + +#: admin.php:35 +msgid "Users" +msgstr "用户" + +#: admin.php:36 +msgid "add new user" +msgstr "添加新用户" + +#: admin.php:39 admin.php:53 admin.php:67 admin.php:155 in_progress.php:38 license.php:68 license.php:93 license.php:112 license.php:131 +msgid "Loading..." +msgstr "正在加载..." + +#: admin.php:49 +msgid "Document Types" +msgstr "文档类型" + +#: admin.php:50 +msgid "add new document type" +msgstr "添加新的文档类型" + +#: admin.php:63 +msgid "Note Types" +msgstr "注释类型" + +#: admin.php:64 +msgid "add new note type" +msgstr "添加新的注释类型" + +#: admin.php:151 +msgid "Categories" +msgstr "类别" + +#: admin.php:152 +msgid "add new category" +msgstr "添加新类别" + +#: admin.php:182 +msgid "You don't have permission to access this page" +msgstr "您没有权限访问此页面" + +#: admin/classes/common/DBService.php:40 +msgid "There was a problem with the database: " +msgstr "数据库出现一个问题:" + +#: admin/classes/common/Object.php:63 admin/classes/common/Object.php:72 +msgid "Cannot set value for undefined key (" +msgstr "无法为未定义的键设置值 (" + +#: ajax_forms.php:59 +msgid "Edit " +msgstr "编辑" + +#: ajax_forms.php:59 +msgid "New " +msgstr "新" + +#: ajax_forms.php:59 ajax_htmldata.php:200 +msgid "Document" +msgstr "文档" + +#: ajax_forms.php:65 ajax_forms.php:377 +msgid "Name:" +msgstr "名称:" + +#: ajax_forms.php:72 +msgid "Description:" +msgstr "说明:" + +#: ajax_forms.php:95 +msgid "Type:" +msgstr "类型:" + +#: ajax_forms.php:114 +msgid "add type" +msgstr "停借类型" + +#: ajax_forms.php:120 ajax_forms.php:306 +msgid "Last Document Revision:" +msgstr "上次文档修改:" + +#: ajax_forms.php:135 ajax_htmldata.php:60 ajax_htmldata.php:73 +msgid "Categories:" +msgstr "类别:" + +#: ajax_forms.php:162 ajax_htmldata.php:591 index.php:95 +msgid "There was an error processing this request - please verify configuration.ini is set up for organizations correctly and the database and tables have been created." +msgstr "处理该请求时出错——请验证为组织正确配置了 configuration.ini,并创建了数据库和表格。" + +#: ajax_forms.php:174 +msgid "add category" +msgstr "添加类别" + +#: ajax_forms.php:191 ajax_forms.php:383 +msgid "File:" +msgstr "文件:" + +#: ajax_forms.php:201 ajax_forms.php:405 +msgid "Archived:" +msgstr "已存档:" + +#: ajax_forms.php:210 +msgid "Add Optional Note" +msgstr "添加可选的注释" + +#: ajax_forms.php:220 ajax_forms.php:1020 +msgid "Note:" +msgstr "注释:" + +#: ajax_forms.php:225 ajax_forms.php:1024 +msgid "Note Type:" +msgstr "注释类型:" + +#: ajax_forms.php:237 ajax_forms.php:1040 +msgid "add note type" +msgstr "添加注释类型" + +#: ajax_forms.php:251 ajax_forms.php:424 ajax_forms.php:522 ajax_forms.php:792 ajax_forms.php:981 ajax_forms.php:1063 +msgid "submit" +msgstr "提交" + +#: ajax_forms.php:252 ajax_forms.php:425 ajax_forms.php:523 ajax_forms.php:793 ajax_forms.php:982 ajax_forms.php:1064 ajax_forms.php:1199 ajax_forms.php:1245 ajax_forms.php:1301 +msgid "cancel" +msgstr "取消" + +#: ajax_forms.php:303 +msgid "Document Upload" +msgstr "文档上传" + +#: ajax_forms.php:314 +msgid "Document Type:" +msgstr "文档类型:" + +#: ajax_forms.php:335 +msgid "add document type" +msgstr "添加文档类型" + +#: ajax_forms.php:389 +msgid "replace with new file" +msgstr "替换为新文件" + +#: ajax_forms.php:451 +msgid "Archive Document Date" +msgstr "存档文档日期" + +#: ajax_forms.php:456 +msgid "Archive Date:" +msgstr "存档日期:" + +#: ajax_forms.php:459 ajax_processing.php:561 ajax_processing.php:573 ajax_processing.php:586 +msgid "Continue" +msgstr "继续" + +#: ajax_forms.php:489 +msgid "Terms Tool Resource Link" +msgstr "术语工具资源链接" + +#: ajax_forms.php:494 ajax_htmldata.php:1187 +msgid "For Document:" +msgstr "文档:" + +#: ajax_forms.php:517 +msgid "Terms Tool Resource:" +msgstr "术语工具资源:" + +#: ajax_forms.php:554 ajax_htmldata.php:1004 ajax_htmldata.php:1009 +msgid "Signatures" +msgstr "签名" + +#: ajax_forms.php:560 +msgid "Signer Name" +msgstr "签名人姓名" + +#: ajax_forms.php:561 ajax_htmldata.php:198 ajax_htmldata.php:267 +msgid "Date" +msgstr "日期" + +#: ajax_forms.php:562 ajax_htmldata.php:480 ajax_htmldata.php:866 ajax_htmldata.php:871 ajax_htmldata.php:1002 ajax_htmldata.php:1007 ajax_htmldata.php:1191 +msgid "Type" +msgstr "类型" + +#: ajax_forms.php:597 ajax_forms.php:857 +msgid "commit update" +msgstr "提交更新" + +#: ajax_forms.php:610 ajax_forms.php:879 ajax_htmldata.php:48 ajax_htmldata.php:156 ajax_htmldata.php:236 ajax_htmldata.php:319 ajax_htmldata.php:1258 ajax_htmldata.php:1328 +msgid "edit" +msgstr "编辑" + +#: ajax_forms.php:699 license.php:87 license.php:106 +msgid "Expressions" +msgstr "表达式" + +#: ajax_forms.php:704 ajax_forms.php:1047 +msgid "Document:" +msgstr "文档:" + +#: ajax_forms.php:726 +msgid "Expression Type:" +msgstr "表达式类型:" + +#: ajax_forms.php:745 +msgid "add expression type" +msgstr "添加表达式类型" + +#: ajax_forms.php:752 +msgid "Qualifier:" +msgstr "限定符:" + +#: ajax_forms.php:788 ajax_htmldata.php:638 +msgid "Document Text:" +msgstr "文档文本:" + +#: ajax_forms.php:826 ajax_forms.php:836 ajax_forms.php:1017 ajax_htmldata.php:186 +msgid "Notes" +msgstr "注释" + +#: ajax_forms.php:827 +msgid "For Document Text:" +msgstr "文档文本:" + +#: ajax_forms.php:941 license.php:64 license.php:89 license.php:108 license.php:127 +msgid "Attachments" +msgstr "附件" + +#: ajax_forms.php:945 +msgid "Date:" +msgstr "日期:" + +#: ajax_forms.php:952 +msgid "Details:" +msgstr "详细信息:" + +#: ajax_forms.php:956 +msgid "Attachments:" +msgstr "附件:" + +#: ajax_forms.php:1050 +msgid "All Documents" +msgstr "所有文档" + +#: ajax_forms.php:1092 ajax_forms.php:1135 ajax_forms.php:1218 ajax_forms.php:1263 +msgid "Update" +msgstr "更新" + +#: ajax_forms.php:1101 ajax_htmldata.php:1382 ajax_htmldata.php:1423 ajax_htmldata.php:1466 +msgid "update" +msgstr "更新" + +#: ajax_forms.php:1106 +msgid "close" +msgstr "关闭" + +#: ajax_forms.php:1138 ajax_forms.php:1221 ajax_forms.php:1266 +msgid "Add New" +msgstr "添加新的" + +#: ajax_forms.php:1146 +msgid "User" +msgstr "用户" + +#: ajax_forms.php:1147 ajax_htmldata.php:1356 +msgid "Login ID" +msgstr "登录 ID" + +#: ajax_forms.php:1148 ajax_htmldata.php:1357 +msgid "First Name" +msgstr "名" + +#: ajax_forms.php:1149 ajax_htmldata.php:1358 +msgid "Last Name" +msgstr "姓" + +#: ajax_forms.php:1150 ajax_htmldata.php:1359 +msgid "Privilege" +msgstr "特权" + +#: ajax_forms.php:1153 ajax_forms.php:1156 +msgid "Add/Edit users can add, edit, or remove licenses and associated fields" +msgstr "添加/编辑用户可以添加、编辑或移除授权和关联的字段" + +#: ajax_forms.php:1153 ajax_forms.php:1156 +msgid "Admin users have access to the Admin page and the SFX tab." +msgstr "管理员用户可以访问管理页面和 SFX 选项卡。" + +#: ajax_forms.php:1153 ajax_forms.php:1156 +msgid "View only users can view all license information, including the license pdf" +msgstr "仅可查看用户可以查看所有的授权信息,包括授权 PDF 术语工具电子邮件" + +#: ajax_forms.php:1185 +msgid "Terms Tool Email" +msgstr "术语工具电子邮件" + +#: ajax_forms.php:1188 +msgid "Enter email address if you wish this user to receive email notifications when the terms tool box is checked on the Expressions tab." +msgstr "如果您希望该用户在“表达式”选项卡上勾选了条款工具框时可以接收电子邮件通知,则请输入电子邮件地址。" + +#: ajax_forms.php:1188 +msgid "Leave this field blank if the user shouldn't receive emails." +msgstr "如果用户不应接收电子邮件,则将该字段留空。" + +#: ajax_forms.php:1229 ajax_forms.php:1230 ajax_htmldata.php:1413 +msgid "Expression Type" +msgstr "表达式类型" + +#: ajax_forms.php:1231 ajax_htmldata.php:201 ajax_htmldata.php:1414 +msgid "Note Type" +msgstr "注释类型" + +#: ajax_forms.php:1234 +msgid "Internal" +msgstr "内部" + +#: ajax_forms.php:1235 +msgid "Display" +msgstr "显示" + +#: ajax_forms.php:1240 +msgid "* Note type of display allows for terms tool use" +msgstr "* 显示的注释类型可允许使用术语工具" + +#: ajax_forms.php:1274 +msgid " Qualifier" +msgstr "限定符" + +#: ajax_forms.php:1276 ajax_htmldata.php:1453 +msgid "For Expression Type" +msgstr "表达式类型" + +#: ajax_forms.php:1297 ajax_htmldata.php:1194 ajax_htmldata.php:1454 index.php:213 +msgid "Qualifier" +msgstr "限定符" + +#: ajax_forms.php:1324 ajax_htmldata.php:1570 ajax_processing.php:1330 +msgid "Action " +msgstr "操作" + +#: ajax_forms.php:1324 ajax_htmldata.php:1570 ajax_processing.php:1330 +msgid " not set up!" +msgstr "未设置!" + +#: ajax_htmldata.php:59 ajax_htmldata.php:72 +msgid "Description: " +msgstr "说明:" + +#: ajax_htmldata.php:85 +msgid "Creation Date: " +msgstr "创建日期:" + +#: ajax_htmldata.php:86 +msgid "Last Update: " +msgstr "最后更新:" + +#: ajax_htmldata.php:93 +msgid "License Status:" +msgstr "授权状态:" + +#: ajax_htmldata.php:146 +msgid "For Document" +msgstr "文档:" + +#: ajax_htmldata.php:147 +msgid "Resource" +msgstr "资源" + +#: ajax_htmldata.php:170 ajax_htmldata.php:247 ajax_htmldata.php:330 ajax_htmldata.php:1071 ajax_htmldata.php:1128 ajax_htmldata.php:1304 ajax_htmldata.php:1338 ajax_htmldata.php:1392 ajax_htmldata.php:1433 +msgid "(none found)" +msgstr "(未找到)" + +#: ajax_htmldata.php:175 +msgid "add new terms tool resource link" +msgstr "添加新的术语工具资源链接" + +#: ajax_htmldata.php:189 +msgid "add new note" +msgstr "添加新注释" + +#: ajax_htmldata.php:199 +msgid "Note" +msgstr "注释" + +#: ajax_htmldata.php:223 ajax_htmldata.php:291 ajax_htmldata.php:770 +msgid "more" +msgstr "更多" + +#: ajax_htmldata.php:228 ajax_htmldata.php:296 ajax_htmldata.php:775 +msgid "less" +msgstr "更少" + +#: ajax_htmldata.php:268 +msgid "Details" +msgstr "详细信息" + +#: ajax_htmldata.php:308 ajax_htmldata.php:966 ajax_htmldata.php:1084 +msgid "(none uploaded)" +msgstr "(无上传)" + +#: ajax_htmldata.php:313 +msgid "view attachment " +msgstr "查看附件" + +#: ajax_htmldata.php:334 +msgid "add new attachment" +msgstr "添加新附件" + +#: ajax_htmldata.php:418 +msgid "Sorry, no documents fit your query" +msgstr "抱歉,没有符合您的查询的文档" + +#: ajax_htmldata.php:425 +msgid "Displaying " +msgstr "显示" + +#: ajax_htmldata.php:425 +msgid " to " +msgstr "到" + +#: ajax_htmldata.php:425 +msgid " of " +msgstr "之" + +#: ajax_htmldata.php:425 +msgid " Records" +msgstr "条记录" + +#: ajax_htmldata.php:473 index.php:105 +msgid "Category" +msgstr "类别" + +#: ajax_htmldata.php:478 ajax_htmldata.php:558 ajax_htmldata.php:865 ajax_htmldata.php:870 ajax_htmldata.php:1001 ajax_htmldata.php:1006 +msgid "Name" +msgstr "名称" + +#: ajax_htmldata.php:481 ajax_htmldata.php:867 ajax_htmldata.php:872 +msgid "Last Document Revision" +msgstr "上次文档修改" + +#: ajax_htmldata.php:527 +msgid "records per page" +msgstr "记录/页" + +#: ajax_htmldata.php:559 +msgid "Publisher / Provider" +msgstr "出版商 / 供应商" + +#: ajax_htmldata.php:560 +msgid "Consortium" +msgstr "馆际联盟" + +#: ajax_htmldata.php:561 +msgid "Status" +msgstr "状态" + +#: ajax_htmldata.php:630 +msgid "view / edit license" +msgstr "查看/编辑授权" + +#: ajax_htmldata.php:630 +msgid "view / edit " +msgstr "查看/编辑" + +#: ajax_htmldata.php:630 ajax_htmldata.php:1284 +msgid " notes" +msgstr "注释" + +#: ajax_htmldata.php:630 ajax_htmldata.php:632 ajax_htmldata.php:964 ajax_htmldata.php:1082 +msgid "view document" +msgstr "查看文档" + +#: ajax_htmldata.php:632 ajax_htmldata.php:734 +msgid "view license" +msgstr "查看授权" + +#: ajax_htmldata.php:642 +msgid " Notes: " +msgstr "注释:" + +#: ajax_htmldata.php:668 +msgid "Qualifiers:" +msgstr "限定符:" + +#: ajax_htmldata.php:725 +msgid "License" +msgstr "授权" + +#: ajax_htmldata.php:726 +msgid " Notes" +msgstr "注释" + +#: ajax_htmldata.php:727 ajax_htmldata.php:1192 +msgid "Document Text" +msgstr "文档文本" + +#: ajax_htmldata.php:739 +msgid "(document text not entered)" +msgstr "(未输入文档文本)" + +#: ajax_htmldata.php:747 ajax_htmldata.php:1263 ajax_htmldata.php:1265 +msgid " Notes:" +msgstr "注释:" + +#: ajax_htmldata.php:787 +msgid "none for " +msgstr "无" + +#: ajax_htmldata.php:837 +msgid "Archived Documents" +msgstr "已存档文档" + +#: ajax_htmldata.php:837 +msgid "hide archives" +msgstr "隐藏档案" + +#: ajax_htmldata.php:914 ajax_htmldata.php:1034 +msgid "archived on: " +msgstr "存档时间:" + +#: ajax_htmldata.php:971 ajax_htmldata.php:1088 +msgid "view expressions" +msgstr "查看表达式" + +#: ajax_htmldata.php:977 ajax_htmldata.php:1094 +msgid "edit document" +msgstr "编辑文档" + +#: ajax_htmldata.php:977 ajax_htmldata.php:1094 +msgid "remove document" +msgstr "移除文档" + +#: ajax_htmldata.php:987 ajax_htmldata.php:989 +msgid "This document has " +msgstr "该文档有" + +#: ajax_htmldata.php:987 ajax_htmldata.php:989 +msgid " children document(s) not displayed. " +msgstr "未显示的子文档。" + +#: ajax_htmldata.php:987 ajax_htmldata.php:989 +msgid "show all documents for this parent" +msgstr "为父级显示所有文档" + +#: ajax_htmldata.php:993 ajax_htmldata.php:995 ajax_htmldata.php:1103 ajax_htmldata.php:1105 +msgid "The following " +msgstr "如下" + +#: ajax_htmldata.php:993 ajax_htmldata.php:995 ajax_htmldata.php:1103 ajax_htmldata.php:1105 +msgid " document(s) belong to " +msgstr "文档属于" + +#: ajax_htmldata.php:993 ajax_htmldata.php:995 +msgid "hide children documents for this parent" +msgstr "为父级隐藏子文档" + +#: ajax_htmldata.php:1003 ajax_htmldata.php:1008 +msgid "Effective Date" +msgstr "生效日期" + +#: ajax_htmldata.php:1032 +msgid "archive document" +msgstr "存档文档" + +#: ajax_htmldata.php:1055 +msgid "(no date)" +msgstr "(无日期)" + +#: ajax_htmldata.php:1066 +msgid "add/view details" +msgstr "添加/查看详细信息" + +#: ajax_htmldata.php:1073 +msgid "add signatures" +msgstr "添加签名" + +#: ajax_htmldata.php:1132 +msgid " archive(s) available." +msgstr "个有效档案。" + +#: ajax_htmldata.php:1132 +msgid "show archives" +msgstr "显示档案" + +#: ajax_htmldata.php:1141 +msgid "upload new document" +msgstr "上载新文档" + +#: ajax_htmldata.php:1143 +msgid "Only one active document is allowed." +msgstr "只允许一个活跃文档。" + +#: ajax_htmldata.php:1143 +msgid "upload archived document" +msgstr "上载已存档文档" + +#: ajax_htmldata.php:1233 +msgid "used in terms tool" +msgstr "在术语工具中使用" + +#: ajax_htmldata.php:1278 index.php:109 +msgid "(none)" +msgstr "(无)" + +#: ajax_htmldata.php:1284 +msgid "add/view " +msgstr "添加/查看" + +#: ajax_htmldata.php:1308 +msgid "add new expression" +msgstr "添加新的表达式" + +#: ajax_htmldata.php:1363 +msgid "Terms Tool Update Email" +msgstr "术语工具更新电子邮件" + +#: ajax_htmldata.php:1503 compare.php:73 +msgid "Limit by Qualifier:" +msgstr "按限定符限制:" + +#: ajax_processing.php:101 +msgid "License successfully deleted." +msgstr "已成功删除授权。" + +#: ajax_processing.php:177 +msgid "success uploading!" +msgstr "成功上传!" + +#: ajax_processing.php:180 ajax_processing.php:1078 +msgid "There was a problem saving your file to " +msgstr "保存您的文件时出错" + +#: ajax_processing.php:241 +msgid "Document Saved Successfully." +msgstr "已成功保存文档。" + +#: ajax_processing.php:255 +msgid "Signature Deleted Successfully." +msgstr "已成功删除签名。" + +#: ajax_processing.php:317 +msgid "Expression Removed Successfully." +msgstr "已成功移除表达式。" + +#: ajax_processing.php:340 +msgid "An expression in the licensing module has been approved for terms tool use." +msgstr "授权模块中的一个表达式已被批准用于条款工具。" + +#: ajax_processing.php:341 +msgid "License: " +msgstr "授权:" + +#: ajax_processing.php:342 +msgid "View License Record: " +msgstr "查看授权记录:" + +#: ajax_processing.php:346 +msgid "Licensing - expression set to production use" +msgstr "授权 - 表达式设置为生产使用" + +#: ajax_processing.php:351 +msgid "Approved for terms tool display." +msgstr "批准用于条款工具显示。" + +#: ajax_processing.php:353 +msgid "Removed from terms tool display." +msgstr "从条款工具显示移除。" + +#: ajax_processing.php:380 +msgid "Expression Note Updated Successfully." +msgstr "已成功更新表达式注释。" + +#: ajax_processing.php:396 +msgid "Expression Note Added Successfully." +msgstr "已成功添加表达式注释。" + +#: ajax_processing.php:420 +msgid "Note Removed Successfully." +msgstr "已成功移除注释。" + +#: ajax_processing.php:457 +msgid "Terms Tool Resource Link successfully deleted" +msgstr "已成功删除条款工具资源链接" + +#: ajax_processing.php:472 +msgid "Document Updated Successfully." +msgstr "已成功更新文档。" + +#: ajax_processing.php:482 +msgid "Document Added Successfully." +msgstr "已成功添加文档。" + +#: ajax_processing.php:570 ajax_processing.php:583 +msgid "SQL Insert Failed." +msgstr "SQL 插入失败。" + +#: ajax_processing.php:570 ajax_processing.php:583 +msgid " Please make sure everything is filled out correctly." +msgstr "请确保一切正确填写。" + +#: ajax_processing.php:911 +msgid "Unable to delete - this " +msgstr "无法删除 - 该" + +#: ajax_processing.php:911 +msgid " is in use. Please make sure no documents are set up with this information." +msgstr "正在使用中。请确保没有使用该信息设置的文档。" + +#: ajax_processing.php:917 +msgid "Unable to delete. Please make sure no documents are set up with this information." +msgstr "无法删除。请确保没有使用该信息设置的文档。" + +#: ajax_processing.php:1145 +msgid "Attachment successfully deleted" +msgstr "已成功删除附件" + +#: ajax_processing.php:1159 +msgid "Attachment file successfully deleted" +msgstr "已成功删除附件文件" + +#: ajax_processing.php:1172 +msgid "Note successfully deleted" +msgstr "已成功删除注释" + +#: ajax_processing.php:1220 +msgid "Status has been updated" +msgstr "已更新状态" + +#: compare.php:22 +msgid "Expression Comparison" +msgstr "表达式比较" + +#: compare.php:39 terms_report.php:35 +msgid "Limit by Expression Type:" +msgstr "按表达式类型限制:" + +#: in_progress.php:23 index.php:23 templates/header.php:210 templates/header.php:233 templates/header.php:249 +msgid "Home" +msgstr "主页" + +#: in_progress.php:33 +msgid "Licenses In Progress" +msgstr "授权在进行中" + +#: in_progress.php:33 +msgid "Browse All" +msgstr "浏览所有" + +#: index.php:48 +msgid "Search" +msgstr "检索" + +#: index.php:49 index.php:246 +msgid "new search" +msgstr "新的检索" + +#: index.php:58 +msgid "Name (contains)" +msgstr "名称(包含)" + +#: index.php:61 +msgid "go!" +msgstr "检索!" + +#: index.php:108 +msgid "All" +msgstr "所有" + +#: index.php:158 +msgid "Document Type" +msgstr "文档类型" + +#: index.php:223 +msgid "Starts with" +msgstr "开始字母" + +#: license.php:61 license.php:86 license.php:105 license.php:124 +msgid "Documents" +msgstr "文档" + +#: license.php:63 license.php:88 license.php:107 license.php:126 +msgid "Terms Tool" +msgstr "条款工具" + +#: not_available.php:21 +msgid "Not Available" +msgstr "不可用" + +#: not_available.php:29 +msgid "Management Module" +msgstr "管理模块" + +#: not_available.php:55 +msgid "Please contact your Administrator for access to the Management Module." +msgstr "请联系您的管理员以访问“管理模块”。" + +#: templates/header.php:34 +msgid "Both license name and organization must be filled out. Please try again." +msgstr "必须填写授权名称及组织。请再试一次。" + +#: templates/header.php:84 +msgid "JavaScript must be enabled in order for you to use CORAL. However, it seems JavaScript is either disabled or not supported by your browser. To use CORAL, enable JavaScript by changing your browser options, then " +msgstr "必须启用 JavaScript 才能使用 CORAL。但是,或者您已禁用 JavaScript,或者您的浏览器不支持。若要使用 CORAL,则请更改您的浏览器选项以启用 JavaScript,并" + +#: templates/header.php:84 +msgid "try again" +msgstr "重试" + +#: templates/header.php:104 +msgid "Management" +msgstr "管理" + +#: templates/header.php:105 +msgid "Powered by" +msgstr "技术支持:" + +#: templates/header.php:111 +msgid "Hello" +msgstr "你好" + +#: templates/header.php:121 +msgid "logout" +msgstr "退出" + +#: templates/header.php:121 +msgid "Help" +msgstr "帮助" + +#: templates/header.php:139 +msgid "Invalid translation route!" +msgstr "无效的翻译路线!" + +#: templates/header.php:217 templates/header.php:240 templates/header.php:256 +msgid "New Document" +msgstr "新文档" + +#: templates/header.php:224 +msgid "Admin" +msgstr "管理员" + +#: templates/header.php:277 +msgid "Change Module" +msgstr "更改模块" + +#: templates/header.php:280 +msgid "Main Menu" +msgstr "主菜单" + +#: templates/header.php:285 +msgid "Resources" +msgstr "资源" + +#: templates/header.php:290 +msgid "Organizations" +msgstr "组织" + +#: templates/header.php:295 +msgid "Licensing" +msgstr "授权许可" + +#: templates/header.php:300 +msgid "Usage Statistics" +msgstr "使用统计信息" + +#: terms_report.php:22 +msgid "Terms Report" +msgstr "条款报表" diff --git a/management/locale/zh_TW/LC_MESSAGES/messages.mo b/management/locale/zh_TW/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..c967d1478807f1838bcb8bcff74ed2182a11f0fc GIT binary patch literal 19405 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 literal 0 HcmV?d00001 diff --git a/management/locale/zh_TW/LC_MESSAGES/messages.po b/management/locale/zh_TW/LC_MESSAGES/messages.po new file mode 100644 index 000000000..ef2f292c1 --- /dev/null +++ b/management/locale/zh_TW/LC_MESSAGES/messages.po @@ -0,0 +1,1234 @@ +msgid "" +msgstr "" +"Project-Id-Version: messages\n" +"POT-Creation-Date: 2016-06-27 7:03-06:00\n" +"PO-Revision-Date: 2016-08-22 16:06-0600\n" +"Last-Translator: <>\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Basepath: ../../..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Generator: Poedit 1.8.8\n" +"X-Poedit-SearchPath-0: .\n" + +#: js/admin.js:106 js/admin.js:232 js/admin.js:257 js/admin.js:283 js/admin.js:310 js/index.js:43 +msgid "Processing..." +msgstr "正在處理..." + +#: js/admin.js:135 +msgid "That " +msgstr "該" + +#: js/admin.js:135 +msgid " is already in use." +msgstr "正在使用中。" + +#: js/admin.js:230 js/admin.js:308 +msgid "Do you really want to delete this data?" +msgstr "您確認要刪除這筆資料嗎?" + +#: js/admin.js:255 +msgid "Do you really want to delete this user?" +msgstr "您確認要刪除這個使用者嗎?" + +#: js/admin.js:281 +msgid "Do you really want to delete this expression type? Any associated Qualifiers will be deleted as well." +msgstr "您確認想要刪除此運算式類型嗎?任何關聯的限定詞也將被刪除。" + +#: js/admin.js:332 js/forms/documentForm.js:189 js/forms/expressionForm.js:78 js/forms/licenseForm.js:196 js/forms/licenseForm.js:270 js/forms/licenseForm.js:306 js/forms/noteForm.js:37 js/forms/signatureForm.js:104 +#: ajax_forms.php:633 ajax_forms.php:895 +msgid "add" +msgstr "添加" + +#: js/forms/attachmentForm.js:41 js/forms/attachmentForm.js:54 js/forms/documentForm.js:102 js/forms/licenseForm.js:358 +msgid "File name is already being used..." +msgstr "文檔名稱已被使用..." + +#: js/forms/attachmentForm.js:46 +msgid "The attachments directory is not writable." +msgstr "該附件目錄不可寫。" + +#: js/forms/attachmentForm.js:84 js/forms/documentForm.js:134 js/forms/licenseForm.js:390 js/license.js:482 +msgid " successfully uploaded." +msgstr "成功上載。" + +#: js/forms/attachmentForm.js:84 ajax_forms.php:611 ajax_forms.php:880 ajax_forms.php:965 ajax_htmldata.php:48 ajax_htmldata.php:157 ajax_htmldata.php:236 ajax_htmldata.php:319 ajax_htmldata.php:1258 +#: ajax_htmldata.php:1329 ajax_htmldata.php:1383 ajax_htmldata.php:1424 ajax_htmldata.php:1467 +msgid "remove" +msgstr "移除" + +#: js/forms/attachmentForm.js:101 js/forms/attachmentForm.js:109 +msgid "Do you really want to delete this attachment?" +msgstr "您確認要刪除該附件嗎?" + +#: js/forms/documentForm.js:38 js/forms/licenseForm.js:39 +msgid "This name is already being used!" +msgstr "該名稱已被使用!" + +#: js/forms/documentForm.js:106 js/forms/licenseForm.js:362 +msgid "File name may not contain special characters - ampersand, single quote, double quote or less than/greater than characters" +msgstr "檔案名稱不能包括特殊字元——&、單引號、雙引號或大於號、小於號等字元。" + +#: js/forms/documentForm.js:110 js/forms/licenseForm.js:366 +msgid "The documents directory is not writable." +msgstr "該文檔目錄不可寫。" + +#: js/forms/documentForm.js:177 +msgid "Document Type is required." +msgstr "文件類型是必備欄位。" + +#: js/forms/documentForm.js:178 +msgid "Short Name is required." +msgstr "短名稱是必需的。" + +#: js/forms/documentForm.js:216 js/forms/licenseForm.js:260 +msgid "DocumentType has been added" +msgstr "已添加 DocumentType" + +#: js/forms/documentForm.js:219 js/forms/licenseForm.js:263 +msgid "That type is already in use." +msgstr "該類型已在使用。" + +#: js/forms/expressionForm.js:89 +msgid "ExpressionType has been added" +msgstr "已添加 ExpressionType" + +#: js/forms/licenseForm.js:62 js/forms/licenseForm.js:124 +msgid "Warning! This organization will be added new." +msgstr "提醒!該組織將被添加為新組織。" + +#: js/forms/licenseForm.js:222 +msgid "Category has been added" +msgstr "已添加類別" + +#: js/forms/licenseForm.js:225 +msgid "That Category is already in use." +msgstr "該類別已在使用。" + +#: js/forms/licenseForm.js:295 js/forms/noteForm.js:62 +msgid "Note Type has been added" +msgstr "已添加備註類型" + +#: js/forms/licenseForm.js:298 js/forms/noteForm.js:65 +msgid "That Note Type is already in use." +msgstr "該備註類型已在使用。" + +#: js/forms/licenseForm.js:322 +msgid "Document Name is required." +msgstr "文檔名稱是必備欄位。" + +#: js/forms/licenseForm.js:323 +msgid "A Category is required." +msgstr "一個類別是必需的。" + +#: js/forms/licenseForm.js:326 +msgid "Edit" +msgstr "編輯" + +#: js/forms/licenseForm.js:327 +msgid "successfully uploaded" +msgstr "成功上載" + +#: js/forms/licenseForm.js:330 +msgid "File is required" +msgstr "檔是必需的" + +#: js/forms/sfxForm.js:59 +msgid "A document must be selected to continue." +msgstr "必須選擇一個文件才能繼續。" + +#: js/forms/sfxForm.js:60 +msgid "Terms Tool Resource must be entered to continue." +msgstr "必須輸入\"條款工具資源\"才能繼續。" + +#: js/forms/signatureForm.js:42 +msgid "No match!" +msgstr "沒有對應!" + +#: js/forms/signatureForm.js:42 +msgid "Selected: " +msgstr "已選:" + +#: js/forms/signatureForm.js:85 +msgid "Do you really want to delete this signature?" +msgstr "您確認要刪除此簽名嗎?" + +#: js/forms/signatureForm.js:115 +msgid "SignatureType has been added" +msgstr "已添加 SignatureType" + +#: js/license.js:101 js/license.js:329 +msgid "Do you really want to delete this document?" +msgstr "您確認要刪除此文件嗎?" + +#: js/license.js:311 +msgid "Do you really want to archive this document?" +msgstr "您確認要將該文件存檔嗎?" + +#: js/license.js:336 +msgid "There was a problem with deleting the document. You may not delete a document if there are associated expressions. Remove all expressions and try again." +msgstr "刪除文件時出現問題。您不能刪除一個與運算式關聯的文件。移除所有關聯的運算式然後重試。" + +#: js/license.js:350 +msgid "Do you really want to delete this expression?" +msgstr "您確認要刪除此運算式嗎?" + +#: js/license.js:365 +msgid "Do you really want to delete this attachment? This will also delete all attached files." +msgstr "您確認要刪除該附件嗎? 該動作也會刪除所有關聯的檔。" + +#: js/license.js:381 +msgid "Do you really want to delete this note?" +msgstr "您確認要刪除該備註嗎?" + +#: js/license.js:398 +msgid "Do you really want to delete this terms tool resource link?" +msgstr "您確認要刪除該條款工具資源連結嗎?" + +#: js/license.js:450 js/license.js:480 +msgid "File name is already being used." +msgstr "文檔名稱已被使用。" + +#: js/plugins/date.js:30 +msgid "Sunday" +msgstr "星期日" + +#: js/plugins/date.js:30 +msgid "Monday" +msgstr "星期一" + +#: js/plugins/date.js:30 +msgid "Tuesday" +msgstr "星期二" + +#: js/plugins/date.js:30 +msgid "Wednesday" +msgstr "星期三" + +#: js/plugins/date.js:30 +msgid "Thursday" +msgstr "星期四" + +#: js/plugins/date.js:30 +msgid "Friday" +msgstr "星期五" + +#: js/plugins/date.js:30 +msgid "Saturday" +msgstr "星期六" + +#: js/plugins/date.js:42 +msgid "Sun" +msgstr "星期日" + +#: js/plugins/date.js:42 +msgid "Mon" +msgstr "星期一" + +#: js/plugins/date.js:42 +msgid "Tue" +msgstr "星期二" + +#: js/plugins/date.js:42 +msgid "Wed" +msgstr "星期三" + +#: js/plugins/date.js:42 +msgid "Thu" +msgstr "星期四" + +#: js/plugins/date.js:42 +msgid "Fri" +msgstr "星期五" + +#: js/plugins/date.js:42 +msgid "Sat" +msgstr "星期六" + +#: js/plugins/date.js:54 +msgid "January" +msgstr "一月" + +#: js/plugins/date.js:54 +msgid "February" +msgstr "二月" + +#: js/plugins/date.js:54 +msgid "March" +msgstr "三月" + +#: js/plugins/date.js:54 +msgid "April" +msgstr "四月" + +#: js/plugins/date.js:54 js/plugins/date.js:66 +msgid "May" +msgstr "五月" + +#: js/plugins/date.js:54 +msgid "June" +msgstr "六月" + +#: js/plugins/date.js:54 +msgid "July" +msgstr "七月" + +#: js/plugins/date.js:54 +msgid "August" +msgstr "八月" + +#: js/plugins/date.js:54 +msgid "September" +msgstr "九月" + +#: js/plugins/date.js:54 +msgid "October" +msgstr "十月" + +#: js/plugins/date.js:54 +msgid "November" +msgstr "十一月" + +#: js/plugins/date.js:54 +msgid "December" +msgstr "十二月" + +#: js/plugins/date.js:66 +msgid "Jan" +msgstr "一月" + +#: js/plugins/date.js:66 +msgid "Feb" +msgstr "二月" + +#: js/plugins/date.js:66 +msgid "Mar" +msgstr "三月" + +#: js/plugins/date.js:66 +msgid "Apr" +msgstr "四月" + +#: js/plugins/date.js:66 +msgid "Jun" +msgstr "六月" + +#: js/plugins/date.js:66 +msgid "Jul" +msgstr "七月" + +#: js/plugins/date.js:66 +msgid "Aug" +msgstr "八月" + +#: js/plugins/date.js:66 +msgid "Sep" +msgstr "九月" + +#: js/plugins/date.js:66 +msgid "Oct" +msgstr "十月" + +#: js/plugins/date.js:66 +msgid "Nov" +msgstr "十一月" + +#: js/plugins/date.js:66 +msgid "Dec" +msgstr "十二月" + +#: js/plugins/jquery.datePicker.js:1129 +msgid "Previous year" +msgstr "前一年" + +#: js/plugins/jquery.datePicker.js:1130 +msgid "Previous month" +msgstr "上個月" + +#: js/plugins/jquery.datePicker.js:1131 +msgid "Next year" +msgstr "後一年" + +#: js/plugins/jquery.datePicker.js:1132 +msgid "Next month" +msgstr "下個月" + +#: js/plugins/jquery.datePicker.js:1133 ajax_forms.php:643 ajax_forms.php:905 +msgid "Close" +msgstr "關閉" + +#: js/plugins/jquery.datePicker.js:1134 +msgid "Choose date" +msgstr "選擇日期" + +#: admin.php:22 +msgid "Administration" +msgstr "管理" + +#: admin.php:35 +msgid "Users" +msgstr "使用者" + +#: admin.php:36 +msgid "add new user" +msgstr "新增使用者" + +#: admin.php:39 admin.php:53 admin.php:67 admin.php:155 in_progress.php:38 license.php:68 license.php:93 license.php:112 license.php:131 +msgid "Loading..." +msgstr "正在載入 ..." + +#: admin.php:49 +msgid "Document Types" +msgstr "文件類型" + +#: admin.php:50 +msgid "add new document type" +msgstr "添加新的文件類型" + +#: admin.php:63 +msgid "Note Types" +msgstr "備註類型" + +#: admin.php:64 +msgid "add new note type" +msgstr "添加新的備註類型" + +#: admin.php:151 +msgid "Categories" +msgstr "類別" + +#: admin.php:152 +msgid "add new category" +msgstr "添加新的類別" + +#: admin.php:182 +msgid "You don't have permission to access this page" +msgstr "您沒有許可權訪問此頁面" + +#: admin/classes/common/DBService.php:40 +msgid "There was a problem with the database: " +msgstr "資料庫出現問題:" + +#: admin/classes/common/Object.php:63 admin/classes/common/Object.php:72 +msgid "Cannot set value for undefined key (" +msgstr "無法對未定義鍵設定數值(" + +#: ajax_forms.php:59 +msgid "Edit " +msgstr "編輯" + +#: ajax_forms.php:59 +msgid "New " +msgstr "新" + +#: ajax_forms.php:59 ajax_htmldata.php:200 +msgid "Document" +msgstr "文件" + +#: ajax_forms.php:65 ajax_forms.php:377 +msgid "Name:" +msgstr "名稱:" + +#: ajax_forms.php:72 +msgid "Description:" +msgstr "說明:" + +#: ajax_forms.php:95 +msgid "Type:" +msgstr "類型:" + +#: ajax_forms.php:114 +msgid "add type" +msgstr "添加類型" + +#: ajax_forms.php:120 ajax_forms.php:306 +msgid "Last Document Revision:" +msgstr "上次文件修改:" + +#: ajax_forms.php:135 ajax_htmldata.php:60 ajax_htmldata.php:73 +msgid "Categories:" +msgstr "類別:" + +#: ajax_forms.php:162 ajax_htmldata.php:591 index.php:95 +msgid "There was an error processing this request - please verify configuration.ini is set up for organizations correctly and the database and tables have been created." +msgstr "處理此請求時出錯 - 請驗證為組織正確設定了 configuration.ini,並建立了資料庫和表格。" + +#: ajax_forms.php:174 +msgid "add category" +msgstr "添加類別" + +#: ajax_forms.php:191 ajax_forms.php:383 +msgid "File:" +msgstr "檔:" + +#: ajax_forms.php:201 ajax_forms.php:405 +msgid "Archived:" +msgstr "已存檔:" + +#: ajax_forms.php:210 +msgid "Add Optional Note" +msgstr "添加可選的備註" + +#: ajax_forms.php:220 ajax_forms.php:1020 +msgid "Note:" +msgstr "備註:" + +#: ajax_forms.php:225 ajax_forms.php:1024 +msgid "Note Type:" +msgstr "備註類型:" + +#: ajax_forms.php:237 ajax_forms.php:1040 +msgid "add note type" +msgstr "添加備註類型" + +#: ajax_forms.php:251 ajax_forms.php:424 ajax_forms.php:522 ajax_forms.php:792 ajax_forms.php:981 ajax_forms.php:1063 +msgid "submit" +msgstr "提交" + +#: ajax_forms.php:252 ajax_forms.php:425 ajax_forms.php:523 ajax_forms.php:793 ajax_forms.php:982 ajax_forms.php:1064 ajax_forms.php:1199 ajax_forms.php:1245 ajax_forms.php:1301 +msgid "cancel" +msgstr "取消" + +#: ajax_forms.php:303 +msgid "Document Upload" +msgstr "文件上載" + +#: ajax_forms.php:314 +msgid "Document Type:" +msgstr "文件類型:" + +#: ajax_forms.php:335 +msgid "add document type" +msgstr "添加文件類型" + +#: ajax_forms.php:389 +msgid "replace with new file" +msgstr "替換為新檔" + +#: ajax_forms.php:451 +msgid "Archive Document Date" +msgstr "歸檔文件日期" + +#: ajax_forms.php:456 +msgid "Archive Date:" +msgstr "歸檔日期:" + +#: ajax_forms.php:459 ajax_processing.php:561 ajax_processing.php:573 ajax_processing.php:586 +msgid "Continue" +msgstr "繼續" + +#: ajax_forms.php:489 +msgid "Terms Tool Resource Link" +msgstr "條款工具資源連結" + +#: ajax_forms.php:494 ajax_htmldata.php:1187 +msgid "For Document:" +msgstr "文件:" + +#: ajax_forms.php:517 +msgid "Terms Tool Resource:" +msgstr "條款工具資源:" + +#: ajax_forms.php:554 ajax_htmldata.php:1004 ajax_htmldata.php:1009 +msgid "Signatures" +msgstr "簽名" + +#: ajax_forms.php:560 +msgid "Signer Name" +msgstr "簽名人姓名" + +#: ajax_forms.php:561 ajax_htmldata.php:198 ajax_htmldata.php:267 +msgid "Date" +msgstr "日期" + +#: ajax_forms.php:562 ajax_htmldata.php:480 ajax_htmldata.php:866 ajax_htmldata.php:871 ajax_htmldata.php:1002 ajax_htmldata.php:1007 ajax_htmldata.php:1191 +msgid "Type" +msgstr "類型" + +#: ajax_forms.php:597 ajax_forms.php:857 +msgid "commit update" +msgstr "提交更新" + +#: ajax_forms.php:610 ajax_forms.php:879 ajax_htmldata.php:48 ajax_htmldata.php:156 ajax_htmldata.php:236 ajax_htmldata.php:319 ajax_htmldata.php:1258 ajax_htmldata.php:1328 +msgid "edit" +msgstr "編輯" + +#: ajax_forms.php:699 license.php:87 license.php:106 +msgid "Expressions" +msgstr "運算式" + +#: ajax_forms.php:704 ajax_forms.php:1047 +msgid "Document:" +msgstr "文件:" + +#: ajax_forms.php:726 +msgid "Expression Type:" +msgstr "運算式類型:" + +#: ajax_forms.php:745 +msgid "add expression type" +msgstr "添加運算式類型" + +#: ajax_forms.php:752 +msgid "Qualifier:" +msgstr "限定詞:" + +#: ajax_forms.php:788 ajax_htmldata.php:638 +msgid "Document Text:" +msgstr "文件文本:" + +#: ajax_forms.php:826 ajax_forms.php:836 ajax_forms.php:1017 ajax_htmldata.php:186 +msgid "Notes" +msgstr "備註" + +#: ajax_forms.php:827 +msgid "For Document Text:" +msgstr "文件文本:" + +#: ajax_forms.php:941 license.php:64 license.php:89 license.php:108 license.php:127 +msgid "Attachments" +msgstr "附件" + +#: ajax_forms.php:945 +msgid "Date:" +msgstr "日期:" + +#: ajax_forms.php:952 +msgid "Details:" +msgstr "詳細資訊:" + +#: ajax_forms.php:956 +msgid "Attachments:" +msgstr "附件:" + +#: ajax_forms.php:1050 +msgid "All Documents" +msgstr "所有文件" + +#: ajax_forms.php:1092 ajax_forms.php:1135 ajax_forms.php:1218 ajax_forms.php:1263 +msgid "Update" +msgstr "更新" + +#: ajax_forms.php:1101 ajax_htmldata.php:1382 ajax_htmldata.php:1423 ajax_htmldata.php:1466 +msgid "update" +msgstr "更新" + +#: ajax_forms.php:1106 +msgid "close" +msgstr "關閉" + +#: ajax_forms.php:1138 ajax_forms.php:1221 ajax_forms.php:1266 +msgid "Add New" +msgstr "新增" + +#: ajax_forms.php:1146 +msgid "User" +msgstr "使用者" + +#: ajax_forms.php:1147 ajax_htmldata.php:1356 +msgid "Login ID" +msgstr "登入ID" + +#: ajax_forms.php:1148 ajax_htmldata.php:1357 +msgid "First Name" +msgstr "名" + +#: ajax_forms.php:1149 ajax_htmldata.php:1358 +msgid "Last Name" +msgstr "姓" + +#: ajax_forms.php:1150 ajax_htmldata.php:1359 +msgid "Privilege" +msgstr "特權" + +#: ajax_forms.php:1153 ajax_forms.php:1156 +msgid "Add/Edit users can add, edit, or remove licenses and associated fields" +msgstr "添加/編輯使用者可以添加、編輯或移除授權和關聯的欄位" + +#: ajax_forms.php:1153 ajax_forms.php:1156 +msgid "Admin users have access to the Admin page and the SFX tab." +msgstr "管理員使用者可以訪問管理頁面和 SFX 選項卡。" + +#: ajax_forms.php:1153 ajax_forms.php:1156 +msgid "View only users can view all license information, including the license pdf" +msgstr "僅可查看使用者可以查看所有的授權資訊,包括授權 PDF 條款工具電子郵件" + +#: ajax_forms.php:1185 +msgid "Terms Tool Email" +msgstr "條款工具電子郵件" + +#: ajax_forms.php:1188 +msgid "Enter email address if you wish this user to receive email notifications when the terms tool box is checked on the Expressions tab." +msgstr "如果您希望該使用者在「運算式」選項卡上勾選了條款工具框時可以接收電子郵件通知,則請輸入電子郵件地址。" + +#: ajax_forms.php:1188 +msgid "Leave this field blank if the user shouldn't receive emails." +msgstr "如果使用者不應接收電子郵件,則將該欄位留空。" + +#: ajax_forms.php:1229 ajax_forms.php:1230 ajax_htmldata.php:1413 +msgid "Expression Type" +msgstr "運算式類型" + +#: ajax_forms.php:1231 ajax_htmldata.php:201 ajax_htmldata.php:1414 +msgid "Note Type" +msgstr "備註類型" + +#: ajax_forms.php:1234 +msgid "Internal" +msgstr "內部" + +#: ajax_forms.php:1235 +msgid "Display" +msgstr "顯示" + +#: ajax_forms.php:1240 +msgid "* Note type of display allows for terms tool use" +msgstr "顯示的備註類型可允許使用條款工具" + +#: ajax_forms.php:1274 +msgid " Qualifier" +msgstr "限定詞" + +#: ajax_forms.php:1276 ajax_htmldata.php:1453 +msgid "For Expression Type" +msgstr "運算式類型" + +#: ajax_forms.php:1297 ajax_htmldata.php:1194 ajax_htmldata.php:1454 index.php:213 +msgid "Qualifier" +msgstr "限定詞" + +#: ajax_forms.php:1324 ajax_htmldata.php:1570 ajax_processing.php:1330 +msgid "Action " +msgstr "動作" + +#: ajax_forms.php:1324 ajax_htmldata.php:1570 ajax_processing.php:1330 +msgid " not set up!" +msgstr "尚未設立!" + +#: ajax_htmldata.php:59 ajax_htmldata.php:72 +msgid "Description: " +msgstr "說明:" + +#: ajax_htmldata.php:85 +msgid "Creation Date: " +msgstr "建立日期:" + +#: ajax_htmldata.php:86 +msgid "Last Update: " +msgstr "最後更新:" + +#: ajax_htmldata.php:93 +msgid "License Status:" +msgstr "授權狀態:" + +#: ajax_htmldata.php:146 +msgid "For Document" +msgstr "文件:" + +#: ajax_htmldata.php:147 +msgid "Resource" +msgstr "資源" + +#: ajax_htmldata.php:170 ajax_htmldata.php:247 ajax_htmldata.php:330 ajax_htmldata.php:1071 ajax_htmldata.php:1128 ajax_htmldata.php:1304 ajax_htmldata.php:1338 ajax_htmldata.php:1392 ajax_htmldata.php:1433 +msgid "(none found)" +msgstr "(未找到)" + +#: ajax_htmldata.php:175 +msgid "add new terms tool resource link" +msgstr "添加新的條款工具資源連結" + +#: ajax_htmldata.php:189 +msgid "add new note" +msgstr "添加新備註" + +#: ajax_htmldata.php:199 +msgid "Note" +msgstr "注釋" + +#: ajax_htmldata.php:223 ajax_htmldata.php:291 ajax_htmldata.php:770 +msgid "more" +msgstr "更多" + +#: ajax_htmldata.php:228 ajax_htmldata.php:296 ajax_htmldata.php:775 +msgid "less" +msgstr "更少" + +#: ajax_htmldata.php:268 +msgid "Details" +msgstr "詳細資訊" + +#: ajax_htmldata.php:308 ajax_htmldata.php:966 ajax_htmldata.php:1084 +msgid "(none uploaded)" +msgstr "(無上傳)" + +#: ajax_htmldata.php:313 +msgid "view attachment " +msgstr "查看附件" + +#: ajax_htmldata.php:334 +msgid "add new attachment" +msgstr "添加新附件" + +#: ajax_htmldata.php:418 +msgid "Sorry, no documents fit your query" +msgstr "抱歉,沒有符合您的查詢的文件" + +#: ajax_htmldata.php:425 +msgid "Displaying " +msgstr "顯示" + +#: ajax_htmldata.php:425 +msgid " to " +msgstr "到" + +#: ajax_htmldata.php:425 +msgid " of " +msgstr "之" + +#: ajax_htmldata.php:425 +msgid " Records" +msgstr "紀錄" + +#: ajax_htmldata.php:473 index.php:105 +msgid "Category" +msgstr "類別" + +#: ajax_htmldata.php:478 ajax_htmldata.php:558 ajax_htmldata.php:865 ajax_htmldata.php:870 ajax_htmldata.php:1001 ajax_htmldata.php:1006 +msgid "Name" +msgstr "名稱" + +#: ajax_htmldata.php:481 ajax_htmldata.php:867 ajax_htmldata.php:872 +msgid "Last Document Revision" +msgstr "上次文件修改" + +#: ajax_htmldata.php:527 +msgid "records per page" +msgstr "每頁紀錄數" + +#: ajax_htmldata.php:559 +msgid "Publisher / Provider" +msgstr "出版商 / 供應商" + +#: ajax_htmldata.php:560 +msgid "Consortium" +msgstr "館際聯盟" + +#: ajax_htmldata.php:561 +msgid "Status" +msgstr "狀態" + +#: ajax_htmldata.php:630 +msgid "view / edit license" +msgstr "查看/編輯授權" + +#: ajax_htmldata.php:630 +msgid "view / edit " +msgstr "查看/編輯" + +#: ajax_htmldata.php:630 ajax_htmldata.php:1284 +msgid " notes" +msgstr "備註" + +#: ajax_htmldata.php:630 ajax_htmldata.php:632 ajax_htmldata.php:964 ajax_htmldata.php:1082 +msgid "view document" +msgstr "查看文件" + +#: ajax_htmldata.php:632 ajax_htmldata.php:734 +msgid "view license" +msgstr "查看授權" + +#: ajax_htmldata.php:642 +msgid " Notes: " +msgstr "備註:" + +#: ajax_htmldata.php:668 +msgid "Qualifiers:" +msgstr "限定詞:" + +#: ajax_htmldata.php:725 +msgid "License" +msgstr "授權" + +#: ajax_htmldata.php:726 +msgid " Notes" +msgstr "備註" + +#: ajax_htmldata.php:727 ajax_htmldata.php:1192 +msgid "Document Text" +msgstr "文件文本" + +#: ajax_htmldata.php:739 +msgid "(document text not entered)" +msgstr "(未輸入文件文本)" + +#: ajax_htmldata.php:747 ajax_htmldata.php:1263 ajax_htmldata.php:1265 +msgid " Notes:" +msgstr "備註:" + +#: ajax_htmldata.php:787 +msgid "none for " +msgstr "無" + +#: ajax_htmldata.php:837 +msgid "Archived Documents" +msgstr "已歸檔文件" + +#: ajax_htmldata.php:837 +msgid "hide archives" +msgstr "隱藏檔案" + +#: ajax_htmldata.php:914 ajax_htmldata.php:1034 +msgid "archived on: " +msgstr "歸檔時間:" + +#: ajax_htmldata.php:971 ajax_htmldata.php:1088 +msgid "view expressions" +msgstr "查看運算式" + +#: ajax_htmldata.php:977 ajax_htmldata.php:1094 +msgid "edit document" +msgstr "編輯文件" + +#: ajax_htmldata.php:977 ajax_htmldata.php:1094 +msgid "remove document" +msgstr "移除文件" + +#: ajax_htmldata.php:987 ajax_htmldata.php:989 +msgid "This document has " +msgstr "該文件有" + +#: ajax_htmldata.php:987 ajax_htmldata.php:989 +msgid " children document(s) not displayed. " +msgstr "未顯示的子文件。" + +#: ajax_htmldata.php:987 ajax_htmldata.php:989 +msgid "show all documents for this parent" +msgstr "為父級顯示所有文件" + +#: ajax_htmldata.php:993 ajax_htmldata.php:995 ajax_htmldata.php:1103 ajax_htmldata.php:1105 +msgid "The following " +msgstr "如下" + +#: ajax_htmldata.php:993 ajax_htmldata.php:995 ajax_htmldata.php:1103 ajax_htmldata.php:1105 +msgid " document(s) belong to " +msgstr "文件屬於" + +#: ajax_htmldata.php:993 ajax_htmldata.php:995 +msgid "hide children documents for this parent" +msgstr "為父級隱藏子文件" + +#: ajax_htmldata.php:1003 ajax_htmldata.php:1008 +msgid "Effective Date" +msgstr "生效日期" + +#: ajax_htmldata.php:1032 +msgid "archive document" +msgstr "歸檔文件" + +#: ajax_htmldata.php:1055 +msgid "(no date)" +msgstr "(無日期)" + +#: ajax_htmldata.php:1066 +msgid "add/view details" +msgstr "添加/查看詳細資訊" + +#: ajax_htmldata.php:1073 +msgid "add signatures" +msgstr "添加簽名" + +#: ajax_htmldata.php:1132 +msgid " archive(s) available." +msgstr "個有效檔案。" + +#: ajax_htmldata.php:1132 +msgid "show archives" +msgstr "顯示檔案" + +#: ajax_htmldata.php:1141 +msgid "upload new document" +msgstr "上載新文件" + +#: ajax_htmldata.php:1143 +msgid "Only one active document is allowed." +msgstr "只允許一個活躍文件。" + +#: ajax_htmldata.php:1143 +msgid "upload archived document" +msgstr "上載已歸檔文件" + +#: ajax_htmldata.php:1233 +msgid "used in terms tool" +msgstr "在條款工具中使用" + +#: ajax_htmldata.php:1278 index.php:109 +msgid "(none)" +msgstr "(無)" + +#: ajax_htmldata.php:1284 +msgid "add/view " +msgstr "添加/查看" + +#: ajax_htmldata.php:1308 +msgid "add new expression" +msgstr "添加新的運算式" + +#: ajax_htmldata.php:1363 +msgid "Terms Tool Update Email" +msgstr "條款工具更新電子郵件" + +#: ajax_htmldata.php:1503 compare.php:73 +msgid "Limit by Qualifier:" +msgstr "按限定詞限制:" + +#: ajax_processing.php:101 +msgid "License successfully deleted." +msgstr "已成功刪除授權。" + +#: ajax_processing.php:177 +msgid "success uploading!" +msgstr "成功上傳!" + +#: ajax_processing.php:180 ajax_processing.php:1078 +msgid "There was a problem saving your file to " +msgstr "保存您的檔時出錯" + +#: ajax_processing.php:241 +msgid "Document Saved Successfully." +msgstr "已成功保存文件。" + +#: ajax_processing.php:255 +msgid "Signature Deleted Successfully." +msgstr "已成功刪除簽名。" + +#: ajax_processing.php:317 +msgid "Expression Removed Successfully." +msgstr "已成功移除運算式。" + +#: ajax_processing.php:340 +msgid "An expression in the licensing module has been approved for terms tool use." +msgstr "授權模組中的一個運算式已被批准用於條款工具。" + +#: ajax_processing.php:341 +msgid "License: " +msgstr "授權:" + +#: ajax_processing.php:342 +msgid "View License Record: " +msgstr "查看授權紀錄:" + +#: ajax_processing.php:346 +msgid "Licensing - expression set to production use" +msgstr "授權 - 運算式設定為生產使用" + +#: ajax_processing.php:351 +msgid "Approved for terms tool display." +msgstr "批准用於條款工具顯示。" + +#: ajax_processing.php:353 +msgid "Removed from terms tool display." +msgstr "從條款工具顯示移除。" + +#: ajax_processing.php:380 +msgid "Expression Note Updated Successfully." +msgstr "已成功更新運算式備註。" + +#: ajax_processing.php:396 +msgid "Expression Note Added Successfully." +msgstr "已成功添加運算式備註。" + +#: ajax_processing.php:420 +msgid "Note Removed Successfully." +msgstr "已成功移除備註。" + +#: ajax_processing.php:457 +msgid "Terms Tool Resource Link successfully deleted" +msgstr "已成功刪除條款工具資源連結" + +#: ajax_processing.php:472 +msgid "Document Updated Successfully." +msgstr "已成功更新文件。" + +#: ajax_processing.php:482 +msgid "Document Added Successfully." +msgstr "已成功添加文件。" + +#: ajax_processing.php:570 ajax_processing.php:583 +msgid "SQL Insert Failed." +msgstr "SQL 插入失敗。" + +#: ajax_processing.php:570 ajax_processing.php:583 +msgid " Please make sure everything is filled out correctly." +msgstr "請確保一切正確填寫。" + +#: ajax_processing.php:911 +msgid "Unable to delete - this " +msgstr "無法刪除-這個" + +#: ajax_processing.php:911 +msgid " is in use. Please make sure no documents are set up with this information." +msgstr "正在使用中。請確保不要用此資訊設定任何文件。" + +#: ajax_processing.php:917 +msgid "Unable to delete. Please make sure no documents are set up with this information." +msgstr "無法刪除。請確保不要用此資訊設立任何文件。" + +#: ajax_processing.php:1145 +msgid "Attachment successfully deleted" +msgstr "已成功刪除附件" + +#: ajax_processing.php:1159 +msgid "Attachment file successfully deleted" +msgstr "已成功刪除附件檔" + +#: ajax_processing.php:1172 +msgid "Note successfully deleted" +msgstr "已成功刪除的備註" + +#: ajax_processing.php:1220 +msgid "Status has been updated" +msgstr "已更新狀態" + +#: compare.php:22 +msgid "Expression Comparison" +msgstr "運算式比較" + +#: compare.php:39 terms_report.php:35 +msgid "Limit by Expression Type:" +msgstr "按運算式類型限制:" + +#: in_progress.php:23 index.php:23 templates/header.php:210 templates/header.php:233 templates/header.php:249 +msgid "Home" +msgstr "主頁" + +#: in_progress.php:33 +msgid "Licenses In Progress" +msgstr "授權在進行中" + +#: in_progress.php:33 +msgid "Browse All" +msgstr "瀏覽所有" + +#: index.php:48 +msgid "Search" +msgstr "查詢" + +#: index.php:49 index.php:246 +msgid "new search" +msgstr "新的查詢" + +#: index.php:58 +msgid "Name (contains)" +msgstr "名稱 (包含)" + +#: index.php:61 +msgid "go!" +msgstr "搜尋!" + +#: index.php:108 +msgid "All" +msgstr "所有" + +#: index.php:158 +msgid "Document Type" +msgstr "文件類型" + +#: index.php:223 +msgid "Starts with" +msgstr "開始字母" + +#: license.php:61 license.php:86 license.php:105 license.php:124 +msgid "Documents" +msgstr "文件" + +#: license.php:63 license.php:88 license.php:107 license.php:126 +msgid "Terms Tool" +msgstr "條款工具" + +#: not_available.php:21 +msgid "Not Available" +msgstr "無有效複本" + +#: not_available.php:29 +msgid "Management Module" +msgstr "管理模組" + +#: not_available.php:55 +msgid "Please contact your Administrator for access to the Management Module." +msgstr "請聯絡您的管理員以訪問「管理模組」。" + +#: templates/header.php:34 +msgid "Both license name and organization must be filled out. Please try again." +msgstr "必須填寫授權名稱及組織。請再試一次。" + +#: templates/header.php:84 +msgid "JavaScript must be enabled in order for you to use CORAL. However, it seems JavaScript is either disabled or not supported by your browser. To use CORAL, enable JavaScript by changing your browser options, then " +msgstr "先啟用JavaScript以後才能使用COREL。然而,您的瀏覽器似乎停用了JavaScript,不然就是不支援JavaScript。要使用COREL,先到瀏覽器選項內更改為啟用JavaScript,然後" + +#: templates/header.php:84 +msgid "try again" +msgstr "再試一次" + +#: templates/header.php:104 +msgid "Management" +msgstr "管理" + +#: templates/header.php:105 +msgid "Powered by" +msgstr "技術支持:" + +#: templates/header.php:111 +msgid "Hello" +msgstr "你好" + +#: templates/header.php:121 +msgid "logout" +msgstr "登出" + +#: templates/header.php:121 +msgid "Help" +msgstr "説明" + +#: templates/header.php:139 +msgid "Invalid translation route!" +msgstr "不正確翻譯路線 !" + +#: templates/header.php:217 templates/header.php:240 templates/header.php:256 +msgid "New Document" +msgstr "新文件" + +#: templates/header.php:224 +msgid "Admin" +msgstr "管理" + +#: templates/header.php:277 +msgid "Change Module" +msgstr "更改模組" + +#: templates/header.php:280 +msgid "Main Menu" +msgstr "主菜單" + +#: templates/header.php:285 +msgid "Resources" +msgstr "資源" + +#: templates/header.php:290 +msgid "Organizations" +msgstr "組織" + +#: templates/header.php:295 +msgid "Licensing" +msgstr "授權" + +#: templates/header.php:300 +msgid "Usage Statistics" +msgstr "使用統計資訊" + +#: terms_report.php:22 +msgid "Terms Report" +msgstr "條款報表" diff --git a/management/templates/header.php b/management/templates/header.php index 86275f4fa..8768f79b4 100644 --- a/management/templates/header.php +++ b/management/templates/header.php @@ -268,7 +268,7 @@ //only show the 'Change Module' if there are other modules installed or if there is an index to the main CORAL page $config = new Configuration(); -if ((file_exists($util->getCORALPath() . "index.php")) || ($config->settings->organizationsModule == 'Y') || ($config->settings->resourcesModule == 'Y') || ($config->settings->licensingModule == 'Y') || ($config->settings->usageModule == 'Y')) { +if ((file_exists($util->getCORALPath() . "index.php")) || ($config->settings->organizationsModuleInstalled == 'Y') || ($config->settings->resourcesModule == 'Y') || ($config->settings->licensingModule == 'Y') || ($config->settings->usageModule == 'Y')) { ?> @@ -285,7 +285,7 @@
  • settings->organizationsModule == 'Y') { + if ($config->settings->organizationsModuleInstalled == 'Y') { ?>
  • - \ No newline at end of file + diff --git a/organizations/LangCodes.php b/organizations/LangCodes.php index 13aa98417..7bff5380f 100644 --- a/organizations/LangCodes.php +++ b/organizations/LangCodes.php @@ -8,9 +8,9 @@ class LangCodes{ public function getLanguage($code){ $all_lang=array( 'fr_FR'=>'fr_FR', - 'en_US'=>'en_US'//, - //'zh_CN'=>'zh_CN', - //'zh_TW'=>'zh_TW', + 'en_US'=>'en_US', + 'zh_CN'=>'zh_CN', + 'zh_TW'=>'zh_TW'//, //'de_DE'=>'de_DE' ); return array_key_exists($code, $all_lang) ? $all_lang[$code] : "en_US"; @@ -18,12 +18,12 @@ public function getLanguage($code){ public function getNameLang($code_lang){ $name_lang=array( 'fr_FR'=>'Français', - 'en_US'=>'English'//, - //'zh_CN'=>'中文 (中国)', - //'zh_TW'=>'中文 (台灣)', + 'en_US'=>'English', + 'zh_CN'=>'中文 (简体)', + 'zh_TW'=>'中文 (正體)'//, //'de_DE'=>'Deutsch' ); return array_key_exists($code_lang, $name_lang) ? $name_lang[$code_lang] : "English"; } } -?> \ No newline at end of file +?> diff --git a/organizations/locale/zh_CN/LC_MESSAGES/messages.mo b/organizations/locale/zh_CN/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..e3bc5f3b7296a24417edf719e71ef993782df2a5 GIT binary patch literal 15331 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\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Basepath: ../../..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Generator: Poedit 1.8.8\n" +"X-Poedit-SearchPath-0: .\n" + +#: js/admin.js:81 js/admin.js:133 js/admin.js:159 js/admin.js:200 js/index.js:46 +msgid "Processing..." +msgstr "正在处理..." + +#: js/admin.js:131 +msgid "Do you really want to delete this data?" +msgstr "您确认要删除此数据吗?" + +#: js/admin.js:157 +msgid "Do you really want to delete this user?" +msgstr "您确认要删除此用户吗?" + +#: js/admin.js:181 +msgid "add" +msgstr "添加" + +#: js/common.js:71 +msgid "No match!" +msgstr "没有匹配!" + +#: js/common.js:71 +msgid "Selected: " +msgstr "已选:" + +#: js/forms/aliasSubmitForm.js:43 js/forms/contactSubmitForm.js:125 js/forms/organizationSubmitForm.js:109 +msgid "Name must be entered to continue." +msgstr "必须输入名称才能继续。" + +#: js/forms/contactSubmitForm.js:117 +msgid "Please choose at least one role." +msgstr "请至少选择一个角色。" + +#: js/forms/organizationSubmitForm.js:33 +msgid "This organization already exists!" +msgstr "该组织已经存在!" + +#: js/orgDetail.js:228 js/orgDetail.js:262 js/orgDetail.js:281 js/orgDetail.js:305 js/orgDetail.js:323 js/orgDetail.js:470 js/orgDetail.js:526 +msgid "Refreshing Contents..." +msgstr "正在刷新内容..." + +#: js/orgDetail.js:544 +msgid "Do you really want to delete this organization?" +msgstr "您确认要删除该组织吗?" + +#: js/orgDetail.js:557 +msgid "This Organization cannot be deleted because it has at least one License Record associated." +msgstr "由于至少有一个关联的“授权记录”而无法删除该“组织”。" + +#: js/orgDetail.js:621 +msgid "Do you really want to delete this alias?" +msgstr "您确认要删除此别名吗?" + +#: js/orgDetail.js:639 +msgid "Do you really want to delete this contact?" +msgstr "您确认要删除此联系人吗?" + +#: js/orgDetail.js:657 +msgid "Do you really want to delete this account?" +msgstr "您确认要删除此帐户吗?" + +#: js/orgDetail.js:676 +msgid "Do you really want to delete this issue?" +msgstr "您确认要删除此问题吗?" + +#: js/plugins/date.js:30 +msgid "Sunday" +msgstr "星期日" + +#: js/plugins/date.js:30 +msgid "Monday" +msgstr "星期一" + +#: js/plugins/date.js:30 +msgid "Tuesday" +msgstr "星期二" + +#: js/plugins/date.js:30 +msgid "Wednesday" +msgstr "星期三" + +#: js/plugins/date.js:30 +msgid "Thursday" +msgstr "星期四" + +#: js/plugins/date.js:30 +msgid "Friday" +msgstr "星期五" + +#: js/plugins/date.js:30 +msgid "Saturday" +msgstr "星期六" + +#: js/plugins/date.js:42 +msgid "Sun" +msgstr "星期日" + +#: js/plugins/date.js:42 +msgid "Mon" +msgstr "星期一" + +#: js/plugins/date.js:42 +msgid "Tue" +msgstr "星期二" + +#: js/plugins/date.js:42 +msgid "Wed" +msgstr "星期三" + +#: js/plugins/date.js:42 +msgid "Thu" +msgstr "星期四" + +#: js/plugins/date.js:42 +msgid "Fri" +msgstr "星期五" + +#: js/plugins/date.js:42 +msgid "Sat" +msgstr "星期六" + +#: js/plugins/date.js:54 +msgid "January" +msgstr "一月" + +#: js/plugins/date.js:54 +msgid "February" +msgstr "二月" + +#: js/plugins/date.js:54 +msgid "March" +msgstr "三月" + +#: js/plugins/date.js:54 +msgid "April" +msgstr "四月" + +#: js/plugins/date.js:54 js/plugins/date.js:66 +msgid "May" +msgstr "五月" + +#: js/plugins/date.js:54 +msgid "June" +msgstr "六月" + +#: js/plugins/date.js:54 +msgid "July" +msgstr "七月" + +#: js/plugins/date.js:54 +msgid "August" +msgstr "八月" + +#: js/plugins/date.js:54 +msgid "September" +msgstr "九月" + +#: js/plugins/date.js:54 +msgid "October" +msgstr "十月" + +#: js/plugins/date.js:54 +msgid "November" +msgstr "十一月" + +#: js/plugins/date.js:54 +msgid "December" +msgstr "十二月" + +#: js/plugins/date.js:66 +msgid "Jan" +msgstr "一月" + +#: js/plugins/date.js:66 +msgid "Feb" +msgstr "二月" + +#: js/plugins/date.js:66 +msgid "Mar" +msgstr "三月" + +#: js/plugins/date.js:66 +msgid "Apr" +msgstr "四月" + +#: js/plugins/date.js:66 +msgid "Jun" +msgstr "六月" + +#: js/plugins/date.js:66 +msgid "Jul" +msgstr "七月" + +#: js/plugins/date.js:66 +msgid "Aug" +msgstr "八月" + +#: js/plugins/date.js:66 +msgid "Sep" +msgstr "九月" + +#: js/plugins/date.js:66 +msgid "Oct" +msgstr "十月" + +#: js/plugins/date.js:66 +msgid "Nov" +msgstr "十一月" + +#: js/plugins/date.js:66 +msgid "Dec" +msgstr "十二月" + +#: js/plugins/jquery.datePicker.js:1129 +msgid "Previous year" +msgstr "前一年" + +#: js/plugins/jquery.datePicker.js:1130 +msgid "Previous month" +msgstr "上个月" + +#: js/plugins/jquery.datePicker.js:1131 +msgid "Next year" +msgstr "后一年" + +#: js/plugins/jquery.datePicker.js:1132 +msgid "Next month" +msgstr "下个月" + +#: js/plugins/jquery.datePicker.js:1133 +msgid "Close" +msgstr "关闭" + +#: js/plugins/jquery.datePicker.js:1134 +msgid "Choose date" +msgstr "选择日期" + +#: admin.php:22 +msgid "Administration" +msgstr "管理" + +#: admin.php:33 +msgid "Users" +msgstr "用户" + +#: admin.php:34 +msgid "add new user" +msgstr "添加新用户" + +#: admin.php:37 admin.php:52 admin.php:66 admin.php:81 admin.php:95 admin.php:106 +msgid "Loading..." +msgstr "正在加载..." + +#: admin.php:48 +msgid "Organization Role" +msgstr "组织角色" + +#: admin.php:49 +msgid "add new organization role" +msgstr "添加新的组织角色" + +#: admin.php:62 +msgid "Contact Role" +msgstr "联系人角色" + +#: admin.php:63 +msgid "add new contact role" +msgstr "添加新的联系人角色" + +#: admin.php:77 ajax_forms.php:202 ajax_htmldata.php:323 +msgid "Alias Type" +msgstr "别名类型" + +#: admin.php:78 +msgid "add new alias type" +msgstr "添加新的别名类型" + +#: admin.php:91 +msgid "External Login Type" +msgstr "外部登录类型" + +#: admin.php:92 +msgid "add new external login type" +msgstr "添加新的外部登录类型" + +#: admin.php:102 +msgid "Issue Type" +msgstr "问题类型" + +#: admin.php:103 +msgid "add new issue type" +msgstr "添加新的问题类型" + +#: admin.php:118 +msgid "You do not have permissions to access this screen." +msgstr "您没有权限访问此屏幕。" + +#: admin/classes/common/DBService.php:39 +msgid "There was a problem with the database: " +msgstr "数据库出现一个问题:" + +#: admin/classes/common/Object.php:63 +msgid "Cannot set value for undefined key (" +msgstr "无法为未定义的键设置值 (" + +#: admin/classes/common/Object.php:72 +msgid "Cannot get value for undefined key (" +msgstr "无法为未定义的键获取值 (" + +#: ajax_forms.php:67 +msgid "Update Organization" +msgstr "更新组织" + +#: ajax_forms.php:67 +msgid "Add New Organization" +msgstr "添加新的组织" + +#: ajax_forms.php:72 ajax_forms.php:322 +msgid "Name:" +msgstr "名称:" + +#: ajax_forms.php:78 ajax_forms.php:92 +msgid "Parent:" +msgstr "父:" + +#: ajax_forms.php:101 ajax_htmldata.php:226 summary.php:161 +msgid "Company URL:" +msgstr "公司 URL:" + +#: ajax_forms.php:107 ajax_forms.php:379 ajax_htmldata.php:234 summary.php:169 +msgid "Role(s):" +msgstr "角色:" + +#: ajax_forms.php:139 ajax_htmldata.php:242 summary.php:177 +msgid "Account Details:" +msgstr "帐户详细信息:" + +#: ajax_forms.php:144 ajax_forms.php:416 ajax_forms.php:519 ajax_forms.php:855 ajax_htmldata.php:250 ajax_htmldata.php:487 ajax_htmldata.php:609 summary.php:185 summary.php:393 summary.php:497 +msgid "Notes:" +msgstr "注释:" + +#: ajax_forms.php:154 ajax_forms.php:231 ajax_forms.php:425 ajax_forms.php:529 ajax_forms.php:688 ajax_forms.php:777 ajax_forms.php:864 +msgid "submit" +msgstr "提交" + +#: ajax_forms.php:155 ajax_forms.php:232 ajax_forms.php:426 ajax_forms.php:530 ajax_forms.php:689 ajax_forms.php:778 ajax_forms.php:865 ajax_forms.php:1075 +msgid "cancel" +msgstr "取消" + +#: ajax_forms.php:196 +msgid "Update Alias" +msgstr "更新别名" + +#: ajax_forms.php:196 +msgid "Add Alias" +msgstr "添加别名" + +#: ajax_forms.php:219 +msgid "Name" +msgstr "名称" + +#: ajax_forms.php:316 +msgid "Update Contact" +msgstr "更新联系人" + +#: ajax_forms.php:316 +msgid "Add Contact" +msgstr "添加联系人" + +#: ajax_forms.php:329 ajax_htmldata.php:439 summary.php:345 +msgid "Title:" +msgstr "题名:" + +#: ajax_forms.php:336 ajax_htmldata.php:455 summary.php:361 +msgid "Phone:" +msgstr "电话:" + +#: ajax_forms.php:343 ajax_htmldata.php:463 summary.php:369 +msgid "Alt Phone:" +msgstr "备用电话︰" + +#: ajax_forms.php:350 ajax_htmldata.php:471 summary.php:377 +msgid "Fax:" +msgstr "传真:" + +#: ajax_forms.php:357 ajax_htmldata.php:479 summary.php:385 +msgid "Email:" +msgstr "电子邮件:" + +#: ajax_forms.php:364 +msgid "Archived:" +msgstr "存档:" + +#: ajax_forms.php:372 ajax_htmldata.php:447 summary.php:353 +msgid "Address:" +msgstr "地址:" + +#: ajax_forms.php:468 +msgid "Update Login" +msgstr "更新登录" + +#: ajax_forms.php:468 +msgid "Add Login" +msgstr "添加登录" + +#: ajax_forms.php:474 +msgid "Login Type:" +msgstr "登录类型︰" + +#: ajax_forms.php:491 +msgid "URL:" +msgstr "URL:" + +#: ajax_forms.php:498 +msgid "Local Account Email:" +msgstr "本地帐户电子邮件:" + +#: ajax_forms.php:505 +msgid "Username:" +msgstr "用户名:" + +#: ajax_forms.php:512 ajax_htmldata.php:593 summary.php:481 +msgid "Password:" +msgstr "密码:" + +#: ajax_forms.php:591 +msgid "Report New Problem" +msgstr "报告新问题" + +#: ajax_forms.php:592 +msgid "* required fields" +msgstr "*必填字段" + +#: ajax_forms.php:596 +msgid "Organization:" +msgstr "组织:" + +#: ajax_forms.php:603 +msgid "Contact:" +msgstr "联系人:" + +#: ajax_forms.php:620 orgDetail.php:206 +msgid "add contact" +msgstr "添加联系人" + +#: ajax_forms.php:625 +msgid "CC myself:" +msgstr "密送给我:" + +#: ajax_forms.php:632 +msgid "CC:" +msgstr "密送:" + +#: ajax_forms.php:635 +msgid "Add" +msgstr "添加" + +#: ajax_forms.php:637 +msgid "Current CCs: " +msgstr "当前密送:" + +#: ajax_forms.php:644 +msgid "Subject:" +msgstr "主题:" + +#: ajax_forms.php:651 +msgid "Body:" +msgstr "正文:" + +#: ajax_forms.php:658 +msgid "Applies to:" +msgstr "应用至︰" + +#: ajax_forms.php:661 +msgid "Applies to all " +msgstr "应用至所有" + +#: ajax_forms.php:661 ajax_forms.php:664 +msgid "resources" +msgstr "资源" + +#: ajax_forms.php:664 +msgid "Applies to selected " +msgstr "应用至已选" + +#: ajax_forms.php:680 +msgid "Send me a reminder every" +msgstr "发送提醒频率为每" + +#: ajax_forms.php:683 +msgid "day(s)" +msgstr "天" + +#: ajax_forms.php:719 +msgid "Resource Downtime Report" +msgstr "资源停机时间报表" + +#: ajax_forms.php:723 +msgid "Downtime Start:" +msgstr "停机开始时间:" + +#: ajax_forms.php:730 +msgid "Downtime Resolution:" +msgstr "停机解决方案:" + +#: ajax_forms.php:737 +msgid "Problem Type:" +msgstr "问题类型:" + +#: ajax_forms.php:752 +msgid "Link to open issue:" +msgstr "开放问题的链接:" + +#: ajax_forms.php:768 +msgid "Note:" +msgstr "注意:" + +#: ajax_forms.php:816 +msgid "Update Issue" +msgstr "更新问题" + +#: ajax_forms.php:816 +msgid "Add Issue" +msgstr "添加问题" + +#: ajax_forms.php:822 +msgid "Type:" +msgstr "类型:" + +#: ajax_forms.php:840 +msgid "Start date:" +msgstr "开始日期:" + +#: ajax_forms.php:847 +msgid "End date:" +msgstr "结束日期:" + +#: ajax_forms.php:905 ajax_htmldata.php:188 ajax_htmldata.php:332 ajax_htmldata.php:420 ajax_htmldata.php:555 ajax_htmldata.php:788 +msgid "edit" +msgstr "编辑" + +#: ajax_forms.php:906 ajax_forms.php:1012 +msgid "remove" +msgstr "移除" + +#: ajax_forms.php:915 ajax_forms.php:1021 +msgid "(none found)" +msgstr "(未找到)" + +#: ajax_forms.php:933 ajax_forms.php:1032 +msgid "Update" +msgstr "更新" + +#: ajax_forms.php:943 ajax_forms.php:1011 +msgid "update" +msgstr "更新" + +#: ajax_forms.php:949 +msgid "close" +msgstr "关闭" + +#: ajax_forms.php:996 +msgid "Login ID" +msgstr "登录 ID" + +#: ajax_forms.php:997 ajax_forms.php:1050 +msgid "First Name" +msgstr "名" + +#: ajax_forms.php:998 ajax_forms.php:1051 +msgid "Last Name" +msgstr "姓" + +#: ajax_forms.php:999 ajax_forms.php:1052 +msgid "Privilege" +msgstr "特权" + +#: ajax_forms.php:1034 +msgid "Add New" +msgstr "添加新的" + +#: ajax_forms.php:1048 +msgid "User" +msgstr "用户" + +#: ajax_forms.php:1090 ajax_htmldata.php:1073 ajax_processing.php:534 +msgid "Action " +msgstr "操作" + +#: ajax_forms.php:1090 ajax_htmldata.php:1073 ajax_processing.php:534 +msgid " not set up!" +msgstr "未设置!" + +#: ajax_htmldata.php:188 +msgid "edit resource" +msgstr "编辑资源" + +#: ajax_htmldata.php:188 +msgid "remove resource" +msgstr "移除资源" + +#: ajax_htmldata.php:194 summary.php:129 +msgid "Parent Organization:" +msgstr "父组织:" + +#: ajax_htmldata.php:199 summary.php:134 summary.php:150 +msgid "view organization" +msgstr "查看组织" + +#: ajax_htmldata.php:199 summary.php:134 summary.php:150 +msgid "View" +msgstr "查看" + +#: ajax_htmldata.php:210 summary.php:145 +msgid "Child Organizations:" +msgstr "子组织:" + +#: ajax_htmldata.php:261 +msgid "Created:" +msgstr "创建于:" + +#: ajax_htmldata.php:266 ajax_htmldata.php:280 summary.php:205 summary.php:221 +msgid " by " +msgstr "由" + +#: ajax_htmldata.php:280 +msgid "Last Update:" +msgstr "最后更新:" + +#: ajax_htmldata.php:322 ajax_htmldata.php:960 +msgid "Alias" +msgstr "别名" + +#: ajax_htmldata.php:332 +msgid "edit alias" +msgstr "编辑别名" + +#: ajax_htmldata.php:333 +msgid "remove alias" +msgstr "移除别名" + +#: ajax_htmldata.php:344 summary.php:261 +msgid "No aliases defined" +msgstr "无定义的别名" + +#: ajax_htmldata.php:350 +msgid "add a new alias" +msgstr "添加一个新的别名" + +#: ajax_htmldata.php:378 summary.php:283 +msgid "The following are archived contacts:" +msgstr "如下是被存档的联系人:" + +#: ajax_htmldata.php:420 +msgid "edit contact" +msgstr "编辑联系人" + +#: ajax_htmldata.php:421 +msgid "remove contact" +msgstr "移除联系人" + +#: ajax_htmldata.php:431 summary.php:337 +msgid "No longer valid:" +msgstr "不再有效:" + +#: ajax_htmldata.php:495 ajax_htmldata.php:601 summary.php:401 summary.php:489 +msgid "Last Updated:" +msgstr "最后一次更新:" + +#: ajax_htmldata.php:508 summary.php:412 +msgid "No unarchived contacts" +msgstr "没有未存档的联系人" + +#: ajax_htmldata.php:513 +msgid " archived contact(s) available. " +msgstr "可用的已存档联系人。" + +#: ajax_htmldata.php:513 +msgid "show archived contacts" +msgstr "显示已存档联系人" + +#: ajax_htmldata.php:517 +msgid "hide archived contacts" +msgstr "隐藏已存档联系人" + +#: ajax_htmldata.php:555 +msgid "edit external login" +msgstr "编辑外部登录" + +#: ajax_htmldata.php:556 +msgid "remove external login" +msgstr "移除外部登录" + +#: ajax_htmldata.php:565 summary.php:453 +msgid "Login URL:" +msgstr "登录 URL:" + +#: ajax_htmldata.php:570 summary.php:458 +msgid "Visit Login URL" +msgstr "访问登录 URL" + +#: ajax_htmldata.php:577 summary.php:465 +msgid "Local email on account:" +msgstr "帐户中的本地电子邮件:" + +#: ajax_htmldata.php:585 summary.php:473 +msgid "User Name:" +msgstr "用户名:" + +#: ajax_htmldata.php:622 summary.php:507 +msgid "No external logins added" +msgstr "没有添加的外部登录" + +#: ajax_htmldata.php:627 +msgid "add new external login" +msgstr "添加新的外部登录" + +#: ajax_htmldata.php:644 +msgid "Issues/Problems" +msgstr "问题" + +#: ajax_htmldata.php:647 +msgid "report new issue" +msgstr "报告新问题" + +#: ajax_htmldata.php:651 +msgid "view open issues" +msgstr "查看开放的问题" + +#: ajax_htmldata.php:658 +msgid "view archived issues" +msgstr "查看存档的问题" + +#: ajax_htmldata.php:667 +msgid "Downtime" +msgstr "停机时间" + +#: ajax_htmldata.php:670 +msgid "report new Downtime" +msgstr "报告新的停机时间" + +#: ajax_htmldata.php:674 +msgid "view current/upcoming downtime" +msgstr "查看当前和即将的停机时间" + +#: ajax_htmldata.php:681 +msgid "view archived downtime" +msgstr "查看已存档的停机时间" + +#: ajax_htmldata.php:700 +msgid "There are no organization level issues." +msgstr "没有组织层级的问题。" + +#: ajax_htmldata.php:715 +msgid "There are no organization level downtimes." +msgstr "没有组织层级的停机时间。" + +#: ajax_htmldata.php:753 +msgid "Added" +msgstr "已添加" + +#: ajax_htmldata.php:754 +msgid "Date" +msgstr "日期" + +#: ajax_htmldata.php:755 +msgid "Type" +msgstr "类型" + +#: ajax_htmldata.php:756 summary.php:551 +msgid "Notes" +msgstr "注释" + +#: ajax_htmldata.php:773 summary.php:562 +msgid "by " +msgstr "由" + +#: ajax_htmldata.php:776 ajax_htmldata.php:907 +msgid " to " +msgstr "到" + +#: ajax_htmldata.php:778 +msgid "start: " +msgstr "开始:" + +#: ajax_htmldata.php:780 +msgid "end: " +msgstr "结束:" + +#: ajax_htmldata.php:788 +msgid "edit issue" +msgstr "编辑问题" + +#: ajax_htmldata.php:789 +msgid "remove issue" +msgstr "移除问题" + +#: ajax_htmldata.php:800 summary.php:571 +msgid "No issues reported" +msgstr "没有报告的问题" + +#: ajax_htmldata.php:805 +msgid "add new issue" +msgstr "添加新的问题" + +#: ajax_htmldata.php:809 +msgid "export these issues" +msgstr "输出这些问题" + +#: ajax_htmldata.php:809 +msgid "export all issues" +msgstr "输出所有问题" + +#: ajax_htmldata.php:836 +msgid "License" +msgstr "授权许可" + +#: ajax_htmldata.php:837 summary.php:598 +msgid "Consortium" +msgstr "馆际联盟" + +#: ajax_htmldata.php:838 summary.php:599 +msgid "Status" +msgstr "状态" + +#: ajax_htmldata.php:857 summary.php:618 +msgid "No licenses set up for this organization" +msgstr "没有为此组织设置授权" + +#: ajax_htmldata.php:861 summary.php:624 +msgid "Unable to access the licensing database. Make sure the configuration.ini is pointing to the correct place and that the database and associated tables have been set up." +msgstr "无法访问授权数据库。请确保 configuration.ini 指向正确的位置,并且已设置该数据库和相关联的表格。" + +#: ajax_htmldata.php:903 +msgid "Sorry, no requests fit your query" +msgstr "抱歉,没有符合您的查询的请求" + +#: ajax_htmldata.php:907 +msgid "Displaying " +msgstr "显示" + +#: ajax_htmldata.php:907 +msgid " of " +msgstr "之" + +#: ajax_htmldata.php:907 +msgid " Organization Records" +msgstr "条组织记录" + +#: ajax_htmldata.php:952 +msgid "Contact Name(s)" +msgstr "联系人姓名" + +#: ajax_htmldata.php:953 +msgid "Contact Role(s)" +msgstr "联系人角色" + +#: ajax_htmldata.php:954 ajax_htmldata.php:959 +msgid "Organization Name" +msgstr "组织名称" + +#: ajax_htmldata.php:955 ajax_htmldata.php:961 +msgid "Parent Organization" +msgstr "父组织" + +#: ajax_htmldata.php:956 +msgid "Organization Role(s)" +msgstr "组织角色" + +#: ajax_htmldata.php:962 +msgid "Role(s)" +msgstr "角色" + +#: ajax_htmldata.php:1051 +msgid "records per page" +msgstr "条记录/页" + +#: ajax_processing.php:403 +msgid "Unable to delete - this " +msgstr "无法删除 - 该" + +#: ajax_processing.php:403 +msgid " is in use. Please make sure no organizations are set up with this information." +msgstr "正在使用中。请确保没有使用该信息设置的组织。" + +#: ajax_processing.php:409 +msgid "Unable to delete. Please make sure no organizations are set up with this information." +msgstr "无法删除。请确保没有使用该信息设置的组织。" + +#: ajax_processing.php:422 +msgid "Organization successfully deleted." +msgstr "组织已成功删除。" + +#: ajax_processing.php:466 +msgid "User successfully saved." +msgstr "用户已成功保存。" + +#: index.php:26 templates/header.php:173 templates/header.php:197 templates/header.php:213 +msgid "Home" +msgstr "主页" + +#: index.php:47 +msgid "Search" +msgstr "检索" + +#: index.php:48 index.php:124 +msgid "new search" +msgstr "新的检索" + +#: index.php:57 +msgid "Name (contains)" +msgstr "名称(包含)" + +#: index.php:60 index.php:94 +msgid "go!" +msgstr "检索!" + +#: index.php:66 +msgid "Role" +msgstr "角色" + +#: index.php:69 +msgid "All" +msgstr "所有" + +#: index.php:91 +msgid "Contact Name (contains)" +msgstr "联系人姓名(包含)" + +#: index.php:100 +msgid "Starts with" +msgstr "开始字母" + +#: orgDetail.php:66 +msgid "Organization Search" +msgstr "组织检索" + +#: orgDetail.php:80 +msgid "Helpful Links" +msgstr "有用的链接" + +#: orgDetail.php:81 +msgid "Print View" +msgstr "打印视图" + +#: orgDetail.php:92 +msgid " of:" +msgstr "之:" + +#: orgDetail.php:98 +msgid "(archived)" +msgstr "(已存档)" + +#: orgDetail.php:119 orgDetail.php:150 orgDetail.php:187 orgDetail.php:224 orgDetail.php:277 orgDetail.php:303 +msgid "Organization" +msgstr "组织" + +#: orgDetail.php:120 orgDetail.php:151 orgDetail.php:188 orgDetail.php:225 orgDetail.php:278 orgDetail.php:304 summary.php:248 +msgid "Aliases" +msgstr "别名" + +#: orgDetail.php:121 orgDetail.php:152 orgDetail.php:189 orgDetail.php:226 orgDetail.php:279 orgDetail.php:305 summary.php:314 +msgid "Contacts" +msgstr "联系人" + +#: orgDetail.php:122 orgDetail.php:153 orgDetail.php:190 orgDetail.php:227 orgDetail.php:280 orgDetail.php:306 +msgid "Accounts" +msgstr "帐户" + +#: orgDetail.php:125 orgDetail.php:127 orgDetail.php:156 orgDetail.php:158 orgDetail.php:193 orgDetail.php:195 orgDetail.php:230 orgDetail.php:232 orgDetail.php:259 orgDetail.php:281 orgDetail.php:309 orgDetail.php:311 +#: summary.php:540 +msgid "Issues" +msgstr "问题" + +#: orgDetail.php:130 orgDetail.php:161 orgDetail.php:198 orgDetail.php:235 orgDetail.php:282 orgDetail.php:314 summary.php:590 +msgid "Licenses" +msgstr "授权" + +#: orgDetail.php:130 orgDetail.php:161 orgDetail.php:198 orgDetail.php:235 orgDetail.php:282 orgDetail.php:314 +msgid " record" +msgstr "记录" + +#: orgDetail.php:130 orgDetail.php:161 orgDetail.php:198 orgDetail.php:235 orgDetail.php:282 orgDetail.php:314 +msgid " records" +msgstr "记录" + +#: orgDetail.php:337 summary.php:643 +msgid "invalid organization" +msgstr "无效的组织" + +#: setuser.php:41 +msgid "LDAP Connection is not working or has timed out. Please check configuration.ini to verify settings." +msgstr "LDAP 连接不工作或已超时。请检查 configuration.ini 以验证设置。" + +#: summary.php:202 +msgid "Created: " +msgstr "创建于:" + +#: summary.php:221 +msgid "Last Update: " +msgstr "最后更新:" + +#: summary.php:438 +msgid "External Logins" +msgstr "外部登录" + +#: summary.php:549 +msgid "Date Added" +msgstr "添加日期" + +#: summary.php:550 +msgid "Issue Date" +msgstr "发行日期" + +#: templates/header.php:79 +msgid "JavaScript must be enabled in order for you to use CORAL. However, it seems JavaScript is either disabled or not supported by your browser. To use CORAL, enable JavaScript by changing your browser options, then " +msgstr "必须启用 JavaScript 才能使用 CORAL。但是,或者您已禁用 JavaScript,或者您的浏览器不支持。若要使用 CORAL,则请更改您的浏览器选项以启用 JavaScript,并" + +#: templates/header.php:79 +msgid "try again" +msgstr "重试" + +#: templates/header.php:99 +msgid "Organizations" +msgstr "组织" + +#: templates/header.php:100 +msgid "Powered by" +msgstr "技术支持:" + +#: templates/header.php:106 +msgid "Hello" +msgstr "你好" + +#: templates/header.php:116 +msgid "logout" +msgstr "退出" + +#: templates/header.php:116 +msgid "Help" +msgstr "帮助" + +#: templates/header.php:134 +msgid "Invalid translation route!" +msgstr "无效的翻译路线!" + +#: templates/header.php:180 templates/header.php:204 templates/header.php:220 +msgid "New Organization" +msgstr "新的组织" + +#: templates/header.php:188 templates/header.php:228 +msgid "Admin" +msgstr "管理员" + +#: templates/header.php:246 +msgid "Change Module" +msgstr "更改模块" + +#: templates/header.php:249 +msgid "Main Menu" +msgstr "主菜单" + +#: templates/header.php:254 +msgid "Licensing" +msgstr "授权许可" + +#: templates/header.php:259 +msgid "Resources" +msgstr "资源" + +#: templates/header.php:264 +msgid "Cancel" +msgstr "取消" + +#: templates/header.php:269 +msgid "Usage Statistics" +msgstr "使用统计信息" + +#: templates/header.php:274 +msgid "Management" +msgstr "管理" + +#: user.php:107 +msgid "Login is not working. Check the .htaccess file and the remoteAuthVariableName specified in /admin/configuration.ini" +msgstr "登录不工作。请检查 /admin/configuration.ini 中指定的 .htaccess 文件和 remoteAuthVariableName" diff --git a/organizations/locale/zh_TW/LC_MESSAGES/messages.mo b/organizations/locale/zh_TW/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..ac5285bcb5e5938bf6fefae1a4d344a9e9e34e94 GIT binary patch literal 15271 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 F{a?WqDj)y= literal 0 HcmV?d00001 diff --git a/organizations/locale/zh_TW/LC_MESSAGES/messages.po b/organizations/locale/zh_TW/LC_MESSAGES/messages.po new file mode 100644 index 000000000..63b292fb2 --- /dev/null +++ b/organizations/locale/zh_TW/LC_MESSAGES/messages.po @@ -0,0 +1,1101 @@ +msgid "" +msgstr "" +"Project-Id-Version: messages\n" +"POT-Creation-Date: 2016-06-13 12:54-06:00\n" +"PO-Revision-Date: 2016-08-22 16:07-0600\n" +"Last-Translator: <>\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Basepath: ../../..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Generator: Poedit 1.8.8\n" +"X-Poedit-SearchPath-0: .\n" + +#: js/admin.js:81 js/admin.js:133 js/admin.js:159 js/admin.js:200 js/index.js:46 +msgid "Processing..." +msgstr "正在處理..." + +#: js/admin.js:131 +msgid "Do you really want to delete this data?" +msgstr "您確認要刪除這筆資料嗎?" + +#: js/admin.js:157 +msgid "Do you really want to delete this user?" +msgstr "你確認要刪除該使用者嗎?" + +#: js/admin.js:181 +msgid "add" +msgstr "添加" + +#: js/common.js:71 +msgid "No match!" +msgstr "沒有匹配!" + +#: js/common.js:71 +msgid "Selected: " +msgstr "已選:" + +#: js/forms/aliasSubmitForm.js:43 js/forms/contactSubmitForm.js:125 js/forms/organizationSubmitForm.js:109 +msgid "Name must be entered to continue." +msgstr "必須輸入名稱繼續。" + +#: js/forms/contactSubmitForm.js:117 +msgid "Please choose at least one role." +msgstr "請選擇至少一個角色。" + +#: js/forms/organizationSubmitForm.js:33 +msgid "This organization already exists!" +msgstr "這個組織已經存在!" + +#: js/orgDetail.js:228 js/orgDetail.js:262 js/orgDetail.js:281 js/orgDetail.js:305 js/orgDetail.js:323 js/orgDetail.js:470 js/orgDetail.js:526 +msgid "Refreshing Contents..." +msgstr "正在刷新內容......" + +#: js/orgDetail.js:544 +msgid "Do you really want to delete this organization?" +msgstr "您確認要刪除這個組織嗎?" + +#: js/orgDetail.js:557 +msgid "This Organization cannot be deleted because it has at least one License Record associated." +msgstr "本組織無法刪除,因為它有至少一個相關授權紀錄。" + +#: js/orgDetail.js:621 +msgid "Do you really want to delete this alias?" +msgstr "您確認要刪除此別名嗎?" + +#: js/orgDetail.js:639 +msgid "Do you really want to delete this contact?" +msgstr "您確認要刪除此連絡人嗎?" + +#: js/orgDetail.js:657 +msgid "Do you really want to delete this account?" +msgstr "您確認想要刪除此帳戶嗎?" + +#: js/orgDetail.js:676 +msgid "Do you really want to delete this issue?" +msgstr "您確認要刪除這個問題嗎?" + +#: js/plugins/date.js:30 +msgid "Sunday" +msgstr "星期日" + +#: js/plugins/date.js:30 +msgid "Monday" +msgstr "星期一" + +#: js/plugins/date.js:30 +msgid "Tuesday" +msgstr "星期二" + +#: js/plugins/date.js:30 +msgid "Wednesday" +msgstr "星期三" + +#: js/plugins/date.js:30 +msgid "Thursday" +msgstr "星期四" + +#: js/plugins/date.js:30 +msgid "Friday" +msgstr "星期五" + +#: js/plugins/date.js:30 +msgid "Saturday" +msgstr "星期六" + +#: js/plugins/date.js:42 +msgid "Sun" +msgstr "星期日" + +#: js/plugins/date.js:42 +msgid "Mon" +msgstr "星期一" + +#: js/plugins/date.js:42 +msgid "Tue" +msgstr "星期二" + +#: js/plugins/date.js:42 +msgid "Wed" +msgstr "星期三" + +#: js/plugins/date.js:42 +msgid "Thu" +msgstr "星期四" + +#: js/plugins/date.js:42 +msgid "Fri" +msgstr "星期五" + +#: js/plugins/date.js:42 +msgid "Sat" +msgstr "星期六" + +#: js/plugins/date.js:54 +msgid "January" +msgstr "一月" + +#: js/plugins/date.js:54 +msgid "February" +msgstr "二月" + +#: js/plugins/date.js:54 +msgid "March" +msgstr "三月" + +#: js/plugins/date.js:54 +msgid "April" +msgstr "四月" + +#: js/plugins/date.js:54 js/plugins/date.js:66 +msgid "May" +msgstr "五月" + +#: js/plugins/date.js:54 +msgid "June" +msgstr "六月" + +#: js/plugins/date.js:54 +msgid "July" +msgstr "七月" + +#: js/plugins/date.js:54 +msgid "August" +msgstr "八月" + +#: js/plugins/date.js:54 +msgid "September" +msgstr "九月" + +#: js/plugins/date.js:54 +msgid "October" +msgstr "十月" + +#: js/plugins/date.js:54 +msgid "November" +msgstr "十一月" + +#: js/plugins/date.js:54 +msgid "December" +msgstr "十二月" + +#: js/plugins/date.js:66 +msgid "Jan" +msgstr "一月" + +#: js/plugins/date.js:66 +msgid "Feb" +msgstr "二月" + +#: js/plugins/date.js:66 +msgid "Mar" +msgstr "三月" + +#: js/plugins/date.js:66 +msgid "Apr" +msgstr "四月" + +#: js/plugins/date.js:66 +msgid "Jun" +msgstr "六月" + +#: js/plugins/date.js:66 +msgid "Jul" +msgstr "七月" + +#: js/plugins/date.js:66 +msgid "Aug" +msgstr "八月" + +#: js/plugins/date.js:66 +msgid "Sep" +msgstr "九月" + +#: js/plugins/date.js:66 +msgid "Oct" +msgstr "十月" + +#: js/plugins/date.js:66 +msgid "Nov" +msgstr "十一月" + +#: js/plugins/date.js:66 +msgid "Dec" +msgstr "十二月" + +#: js/plugins/jquery.datePicker.js:1129 +msgid "Previous year" +msgstr "前一年" + +#: js/plugins/jquery.datePicker.js:1130 +msgid "Previous month" +msgstr "上個月" + +#: js/plugins/jquery.datePicker.js:1131 +msgid "Next year" +msgstr "後一年" + +#: js/plugins/jquery.datePicker.js:1132 +msgid "Next month" +msgstr "下個月" + +#: js/plugins/jquery.datePicker.js:1133 +msgid "Close" +msgstr "關閉" + +#: js/plugins/jquery.datePicker.js:1134 +msgid "Choose date" +msgstr "選擇日期" + +#: admin.php:22 +msgid "Administration" +msgstr "管理" + +#: admin.php:33 +msgid "Users" +msgstr "使用者" + +#: admin.php:34 +msgid "add new user" +msgstr "新增使用者" + +#: admin.php:37 admin.php:52 admin.php:66 admin.php:81 admin.php:95 admin.php:106 +msgid "Loading..." +msgstr "正在載入 ..." + +#: admin.php:48 +msgid "Organization Role" +msgstr "組織角色" + +#: admin.php:49 +msgid "add new organization role" +msgstr "新增組織角色" + +#: admin.php:62 +msgid "Contact Role" +msgstr "聯絡人角色" + +#: admin.php:63 +msgid "add new contact role" +msgstr "新增聯絡人角色" + +#: admin.php:77 ajax_forms.php:202 ajax_htmldata.php:323 +msgid "Alias Type" +msgstr "別名類型" + +#: admin.php:78 +msgid "add new alias type" +msgstr "新增別名類型" + +#: admin.php:91 +msgid "External Login Type" +msgstr "外部登入類型" + +#: admin.php:92 +msgid "add new external login type" +msgstr "新增外部登入類型" + +#: admin.php:102 +msgid "Issue Type" +msgstr "問題類型" + +#: admin.php:103 +msgid "add new issue type" +msgstr "新增問題類型" + +#: admin.php:118 +msgid "You do not have permissions to access this screen." +msgstr "您沒有訪用此頁面之授權。" + +#: admin/classes/common/DBService.php:39 +msgid "There was a problem with the database: " +msgstr "資料庫出現問題:" + +#: admin/classes/common/Object.php:63 +msgid "Cannot set value for undefined key (" +msgstr "無法對未定義鍵設定數值(" + +#: admin/classes/common/Object.php:72 +msgid "Cannot get value for undefined key (" +msgstr "無法從未定義鍵取得數值(" + +#: ajax_forms.php:67 +msgid "Update Organization" +msgstr "更新組織" + +#: ajax_forms.php:67 +msgid "Add New Organization" +msgstr "新增組織" + +#: ajax_forms.php:72 ajax_forms.php:322 +msgid "Name:" +msgstr "名稱:" + +#: ajax_forms.php:78 ajax_forms.php:92 +msgid "Parent:" +msgstr "父:" + +#: ajax_forms.php:101 ajax_htmldata.php:226 summary.php:161 +msgid "Company URL:" +msgstr "公司網址︰" + +#: ajax_forms.php:107 ajax_forms.php:379 ajax_htmldata.php:234 summary.php:169 +msgid "Role(s):" +msgstr "角色:" + +#: ajax_forms.php:139 ajax_htmldata.php:242 summary.php:177 +msgid "Account Details:" +msgstr "帳戶詳細資訊︰" + +#: ajax_forms.php:144 ajax_forms.php:416 ajax_forms.php:519 ajax_forms.php:855 ajax_htmldata.php:250 ajax_htmldata.php:487 ajax_htmldata.php:609 summary.php:185 summary.php:393 summary.php:497 +msgid "Notes:" +msgstr "備註:" + +#: ajax_forms.php:154 ajax_forms.php:231 ajax_forms.php:425 ajax_forms.php:529 ajax_forms.php:688 ajax_forms.php:777 ajax_forms.php:864 +msgid "submit" +msgstr "提交" + +#: ajax_forms.php:155 ajax_forms.php:232 ajax_forms.php:426 ajax_forms.php:530 ajax_forms.php:689 ajax_forms.php:778 ajax_forms.php:865 ajax_forms.php:1075 +msgid "cancel" +msgstr "取消" + +#: ajax_forms.php:196 +msgid "Update Alias" +msgstr "更新別名" + +#: ajax_forms.php:196 +msgid "Add Alias" +msgstr "添加別名" + +#: ajax_forms.php:219 +msgid "Name" +msgstr "名稱" + +#: ajax_forms.php:316 +msgid "Update Contact" +msgstr "更新連絡人" + +#: ajax_forms.php:316 +msgid "Add Contact" +msgstr "添加連絡人" + +#: ajax_forms.php:329 ajax_htmldata.php:439 summary.php:345 +msgid "Title:" +msgstr "題名:" + +#: ajax_forms.php:336 ajax_htmldata.php:455 summary.php:361 +msgid "Phone:" +msgstr "電話:" + +#: ajax_forms.php:343 ajax_htmldata.php:463 summary.php:369 +msgid "Alt Phone:" +msgstr "備用電話:" + +#: ajax_forms.php:350 ajax_htmldata.php:471 summary.php:377 +msgid "Fax:" +msgstr "傳真:" + +#: ajax_forms.php:357 ajax_htmldata.php:479 summary.php:385 +msgid "Email:" +msgstr "電子郵件:" + +#: ajax_forms.php:364 +msgid "Archived:" +msgstr "存檔:" + +#: ajax_forms.php:372 ajax_htmldata.php:447 summary.php:353 +msgid "Address:" +msgstr "地址:" + +#: ajax_forms.php:468 +msgid "Update Login" +msgstr "更新登入" + +#: ajax_forms.php:468 +msgid "Add Login" +msgstr "增加登入" + +#: ajax_forms.php:474 +msgid "Login Type:" +msgstr "登入類型:" + +#: ajax_forms.php:491 +msgid "URL:" +msgstr "網址:" + +#: ajax_forms.php:498 +msgid "Local Account Email:" +msgstr "本地帳戶電子郵件:" + +#: ajax_forms.php:505 +msgid "Username:" +msgstr "使用者名:" + +#: ajax_forms.php:512 ajax_htmldata.php:593 summary.php:481 +msgid "Password:" +msgstr "密碼:" + +#: ajax_forms.php:591 +msgid "Report New Problem" +msgstr "報告新問題" + +#: ajax_forms.php:592 +msgid "* required fields" +msgstr "* 必備欄位" + +#: ajax_forms.php:596 +msgid "Organization:" +msgstr "組織:" + +#: ajax_forms.php:603 +msgid "Contact:" +msgstr "連絡人:" + +#: ajax_forms.php:620 orgDetail.php:206 +msgid "add contact" +msgstr "添加連絡人" + +#: ajax_forms.php:625 +msgid "CC myself:" +msgstr "密送給我:" + +#: ajax_forms.php:632 +msgid "CC:" +msgstr "密送:" + +#: ajax_forms.php:635 +msgid "Add" +msgstr "添加" + +#: ajax_forms.php:637 +msgid "Current CCs: " +msgstr "當前密送:" + +#: ajax_forms.php:644 +msgid "Subject:" +msgstr "主題:" + +#: ajax_forms.php:651 +msgid "Body:" +msgstr "正文:" + +#: ajax_forms.php:658 +msgid "Applies to:" +msgstr "應用至:" + +#: ajax_forms.php:661 +msgid "Applies to all " +msgstr "應用至所有" + +#: ajax_forms.php:661 ajax_forms.php:664 +msgid "resources" +msgstr "資源" + +#: ajax_forms.php:664 +msgid "Applies to selected " +msgstr "應用至已選" + +#: ajax_forms.php:680 +msgid "Send me a reminder every" +msgstr "發送提醒頻率為每" + +#: ajax_forms.php:683 +msgid "day(s)" +msgstr "天" + +#: ajax_forms.php:719 +msgid "Resource Downtime Report" +msgstr "資源停機時間報表" + +#: ajax_forms.php:723 +msgid "Downtime Start:" +msgstr "停機開始時間:" + +#: ajax_forms.php:730 +msgid "Downtime Resolution:" +msgstr "停機解決方案:" + +#: ajax_forms.php:737 +msgid "Problem Type:" +msgstr "問題類型:" + +#: ajax_forms.php:752 +msgid "Link to open issue:" +msgstr "開放問題的連結:" + +#: ajax_forms.php:768 +msgid "Note:" +msgstr "備註:" + +#: ajax_forms.php:816 +msgid "Update Issue" +msgstr "更新問題" + +#: ajax_forms.php:816 +msgid "Add Issue" +msgstr "添加問題" + +#: ajax_forms.php:822 +msgid "Type:" +msgstr "類型:" + +#: ajax_forms.php:840 +msgid "Start date:" +msgstr "開始日期:" + +#: ajax_forms.php:847 +msgid "End date:" +msgstr "結束日期:" + +#: ajax_forms.php:905 ajax_htmldata.php:188 ajax_htmldata.php:332 ajax_htmldata.php:420 ajax_htmldata.php:555 ajax_htmldata.php:788 +msgid "edit" +msgstr "編輯" + +#: ajax_forms.php:906 ajax_forms.php:1012 +msgid "remove" +msgstr "移除" + +#: ajax_forms.php:915 ajax_forms.php:1021 +msgid "(none found)" +msgstr "(未找到)" + +#: ajax_forms.php:933 ajax_forms.php:1032 +msgid "Update" +msgstr "更新" + +#: ajax_forms.php:943 ajax_forms.php:1011 +msgid "update" +msgstr "更新" + +#: ajax_forms.php:949 +msgid "close" +msgstr "關閉" + +#: ajax_forms.php:996 +msgid "Login ID" +msgstr "登入ID" + +#: ajax_forms.php:997 ajax_forms.php:1050 +msgid "First Name" +msgstr "名" + +#: ajax_forms.php:998 ajax_forms.php:1051 +msgid "Last Name" +msgstr "姓" + +#: ajax_forms.php:999 ajax_forms.php:1052 +msgid "Privilege" +msgstr "特權" + +#: ajax_forms.php:1034 +msgid "Add New" +msgstr "新增" + +#: ajax_forms.php:1048 +msgid "User" +msgstr "使用者" + +#: ajax_forms.php:1090 ajax_htmldata.php:1073 ajax_processing.php:534 +msgid "Action " +msgstr "動作" + +#: ajax_forms.php:1090 ajax_htmldata.php:1073 ajax_processing.php:534 +msgid " not set up!" +msgstr "尚未設立!" + +#: ajax_htmldata.php:188 +msgid "edit resource" +msgstr "編輯資源" + +#: ajax_htmldata.php:188 +msgid "remove resource" +msgstr "移除資源" + +#: ajax_htmldata.php:194 summary.php:129 +msgid "Parent Organization:" +msgstr "父組織:" + +#: ajax_htmldata.php:199 summary.php:134 summary.php:150 +msgid "view organization" +msgstr "查看組織" + +#: ajax_htmldata.php:199 summary.php:134 summary.php:150 +msgid "View" +msgstr "查看" + +#: ajax_htmldata.php:210 summary.php:145 +msgid "Child Organizations:" +msgstr "子組織:" + +#: ajax_htmldata.php:261 +msgid "Created:" +msgstr "建立:" + +#: ajax_htmldata.php:266 ajax_htmldata.php:280 summary.php:205 summary.php:221 +msgid " by " +msgstr "由" + +#: ajax_htmldata.php:280 +msgid "Last Update:" +msgstr "最後更新:" + +#: ajax_htmldata.php:322 ajax_htmldata.php:960 +msgid "Alias" +msgstr "別名" + +#: ajax_htmldata.php:332 +msgid "edit alias" +msgstr "編輯別名" + +#: ajax_htmldata.php:333 +msgid "remove alias" +msgstr "移除別名" + +#: ajax_htmldata.php:344 summary.php:261 +msgid "No aliases defined" +msgstr "沒有定義別名" + +#: ajax_htmldata.php:350 +msgid "add a new alias" +msgstr "新增別名" + +#: ajax_htmldata.php:378 summary.php:283 +msgid "The following are archived contacts:" +msgstr "以下是已歸檔的連絡人:" + +#: ajax_htmldata.php:420 +msgid "edit contact" +msgstr "編輯連絡人" + +#: ajax_htmldata.php:421 +msgid "remove contact" +msgstr "移除連絡人" + +#: ajax_htmldata.php:431 summary.php:337 +msgid "No longer valid:" +msgstr "不再有效:" + +#: ajax_htmldata.php:495 ajax_htmldata.php:601 summary.php:401 summary.php:489 +msgid "Last Updated:" +msgstr "最後更新:" + +#: ajax_htmldata.php:508 summary.php:412 +msgid "No unarchived contacts" +msgstr "沒有未歸檔的連絡人" + +#: ajax_htmldata.php:513 +msgid " archived contact(s) available. " +msgstr "可用的已存檔連絡人。" + +#: ajax_htmldata.php:513 +msgid "show archived contacts" +msgstr "顯示已歸檔的連絡人" + +#: ajax_htmldata.php:517 +msgid "hide archived contacts" +msgstr "隱藏已歸檔的連絡人" + +#: ajax_htmldata.php:555 +msgid "edit external login" +msgstr "編輯外部登入" + +#: ajax_htmldata.php:556 +msgid "remove external login" +msgstr "移除外部登入" + +#: ajax_htmldata.php:565 summary.php:453 +msgid "Login URL:" +msgstr "登入網址:" + +#: ajax_htmldata.php:570 summary.php:458 +msgid "Visit Login URL" +msgstr "造訪登入 URL" + +#: ajax_htmldata.php:577 summary.php:465 +msgid "Local email on account:" +msgstr "帳戶的本地電子郵件:" + +#: ajax_htmldata.php:585 summary.php:473 +msgid "User Name:" +msgstr "使用者名稱:" + +#: ajax_htmldata.php:622 summary.php:507 +msgid "No external logins added" +msgstr "沒有添加外部登入" + +#: ajax_htmldata.php:627 +msgid "add new external login" +msgstr "新增外部登入" + +#: ajax_htmldata.php:644 +msgid "Issues/Problems" +msgstr "問題" + +#: ajax_htmldata.php:647 +msgid "report new issue" +msgstr "報告新問題" + +#: ajax_htmldata.php:651 +msgid "view open issues" +msgstr "查看開放的問題" + +#: ajax_htmldata.php:658 +msgid "view archived issues" +msgstr "查看存檔的問題" + +#: ajax_htmldata.php:667 +msgid "Downtime" +msgstr "停機時間" + +#: ajax_htmldata.php:670 +msgid "report new Downtime" +msgstr "報告新的停機時間" + +#: ajax_htmldata.php:674 +msgid "view current/upcoming downtime" +msgstr "查看當前和即將的停機時間" + +#: ajax_htmldata.php:681 +msgid "view archived downtime" +msgstr "查看已歸檔的停機時間" + +#: ajax_htmldata.php:700 +msgid "There are no organization level issues." +msgstr "沒有組織層級的問題。" + +#: ajax_htmldata.php:715 +msgid "There are no organization level downtimes." +msgstr "沒有組織層級的停機時間。" + +#: ajax_htmldata.php:753 +msgid "Added" +msgstr "已添加" + +#: ajax_htmldata.php:754 +msgid "Date" +msgstr "日期" + +#: ajax_htmldata.php:755 +msgid "Type" +msgstr "類型" + +#: ajax_htmldata.php:756 summary.php:551 +msgid "Notes" +msgstr "備註" + +#: ajax_htmldata.php:773 summary.php:562 +msgid "by " +msgstr "由" + +#: ajax_htmldata.php:776 ajax_htmldata.php:907 +msgid " to " +msgstr "到" + +#: ajax_htmldata.php:778 +msgid "start: " +msgstr "開始:" + +#: ajax_htmldata.php:780 +msgid "end: " +msgstr "結束:" + +#: ajax_htmldata.php:788 +msgid "edit issue" +msgstr "編輯問題" + +#: ajax_htmldata.php:789 +msgid "remove issue" +msgstr "移除問題" + +#: ajax_htmldata.php:800 summary.php:571 +msgid "No issues reported" +msgstr "沒有任何問題報告過" + +#: ajax_htmldata.php:805 +msgid "add new issue" +msgstr "新增問題" + +#: ajax_htmldata.php:809 +msgid "export these issues" +msgstr "輸出這些問題" + +#: ajax_htmldata.php:809 +msgid "export all issues" +msgstr "輸出所有問題" + +#: ajax_htmldata.php:836 +msgid "License" +msgstr "授權" + +#: ajax_htmldata.php:837 summary.php:598 +msgid "Consortium" +msgstr "館際聯盟" + +#: ajax_htmldata.php:838 summary.php:599 +msgid "Status" +msgstr "狀態" + +#: ajax_htmldata.php:857 summary.php:618 +msgid "No licenses set up for this organization" +msgstr "此組織尚未設定授權" + +#: ajax_htmldata.php:861 summary.php:624 +msgid "Unable to access the licensing database. Make sure the configuration.ini is pointing to the correct place and that the database and associated tables have been set up." +msgstr "無法訪用授權資料庫。請確定 configuration.ini 是指向正確的位置,並且資料庫和相關圖表皆已設立。" + +#: ajax_htmldata.php:903 +msgid "Sorry, no requests fit your query" +msgstr "抱歉,沒有符合您查詢的請求" + +#: ajax_htmldata.php:907 +msgid "Displaying " +msgstr "顯示" + +#: ajax_htmldata.php:907 +msgid " of " +msgstr "之" + +#: ajax_htmldata.php:907 +msgid " Organization Records" +msgstr "條組織紀錄" + +#: ajax_htmldata.php:952 +msgid "Contact Name(s)" +msgstr "連絡人姓名" + +#: ajax_htmldata.php:953 +msgid "Contact Role(s)" +msgstr "連絡人角色" + +#: ajax_htmldata.php:954 ajax_htmldata.php:959 +msgid "Organization Name" +msgstr "組織名稱" + +#: ajax_htmldata.php:955 ajax_htmldata.php:961 +msgid "Parent Organization" +msgstr "父組織" + +#: ajax_htmldata.php:956 +msgid "Organization Role(s)" +msgstr "組織角色" + +#: ajax_htmldata.php:962 +msgid "Role(s)" +msgstr "角色" + +#: ajax_htmldata.php:1051 +msgid "records per page" +msgstr "條紀錄/頁" + +#: ajax_processing.php:403 +msgid "Unable to delete - this " +msgstr "無法刪除-這個" + +#: ajax_processing.php:403 +msgid " is in use. Please make sure no organizations are set up with this information." +msgstr "正在使用中。請確保不要用此資訊設立任何組織。" + +#: ajax_processing.php:409 +msgid "Unable to delete. Please make sure no organizations are set up with this information." +msgstr "無法刪除。請確保不要用此資訊設立任何組織。" + +#: ajax_processing.php:422 +msgid "Organization successfully deleted." +msgstr "已成功刪除組織。" + +#: ajax_processing.php:466 +msgid "User successfully saved." +msgstr "使用者已成功存檔。" + +#: index.php:26 templates/header.php:173 templates/header.php:197 templates/header.php:213 +msgid "Home" +msgstr "主頁" + +#: index.php:47 +msgid "Search" +msgstr "查詢" + +#: index.php:48 index.php:124 +msgid "new search" +msgstr "新的查詢" + +#: index.php:57 +msgid "Name (contains)" +msgstr "名稱 (包含)" + +#: index.php:60 index.php:94 +msgid "go!" +msgstr "搜尋!" + +#: index.php:66 +msgid "Role" +msgstr "角色" + +#: index.php:69 +msgid "All" +msgstr "所有" + +#: index.php:91 +msgid "Contact Name (contains)" +msgstr "連絡人的姓名 (包含)" + +#: index.php:100 +msgid "Starts with" +msgstr "開始字母" + +#: orgDetail.php:66 +msgid "Organization Search" +msgstr "組織搜尋" + +#: orgDetail.php:80 +msgid "Helpful Links" +msgstr "有用的連結" + +#: orgDetail.php:81 +msgid "Print View" +msgstr "列印檢視" + +#: orgDetail.php:92 +msgid " of:" +msgstr "之:" + +#: orgDetail.php:98 +msgid "(archived)" +msgstr "(已歸檔)" + +#: orgDetail.php:119 orgDetail.php:150 orgDetail.php:187 orgDetail.php:224 orgDetail.php:277 orgDetail.php:303 +msgid "Organization" +msgstr "組織" + +#: orgDetail.php:120 orgDetail.php:151 orgDetail.php:188 orgDetail.php:225 orgDetail.php:278 orgDetail.php:304 summary.php:248 +msgid "Aliases" +msgstr "別名" + +#: orgDetail.php:121 orgDetail.php:152 orgDetail.php:189 orgDetail.php:226 orgDetail.php:279 orgDetail.php:305 summary.php:314 +msgid "Contacts" +msgstr "連絡人" + +#: orgDetail.php:122 orgDetail.php:153 orgDetail.php:190 orgDetail.php:227 orgDetail.php:280 orgDetail.php:306 +msgid "Accounts" +msgstr "帳戶" + +#: orgDetail.php:125 orgDetail.php:127 orgDetail.php:156 orgDetail.php:158 orgDetail.php:193 orgDetail.php:195 orgDetail.php:230 orgDetail.php:232 orgDetail.php:259 orgDetail.php:281 orgDetail.php:309 orgDetail.php:311 +#: summary.php:540 +msgid "Issues" +msgstr "問題" + +#: orgDetail.php:130 orgDetail.php:161 orgDetail.php:198 orgDetail.php:235 orgDetail.php:282 orgDetail.php:314 summary.php:590 +msgid "Licenses" +msgstr "授權" + +#: orgDetail.php:130 orgDetail.php:161 orgDetail.php:198 orgDetail.php:235 orgDetail.php:282 orgDetail.php:314 +msgid " record" +msgstr "紀錄" + +#: orgDetail.php:130 orgDetail.php:161 orgDetail.php:198 orgDetail.php:235 orgDetail.php:282 orgDetail.php:314 +msgid " records" +msgstr "紀錄" + +#: orgDetail.php:337 summary.php:643 +msgid "invalid organization" +msgstr "不正確組織" + +#: setuser.php:41 +msgid "LDAP Connection is not working or has timed out. Please check configuration.ini to verify settings." +msgstr "LDAP 連線故障或已逾時。請檢查 configuration.ini 驗證設定。" + +#: summary.php:202 +msgid "Created: " +msgstr "创建於:" + +#: summary.php:221 +msgid "Last Update: " +msgstr "最後更新:" + +#: summary.php:438 +msgid "External Logins" +msgstr "外部登入" + +#: summary.php:549 +msgid "Date Added" +msgstr "添加日期" + +#: summary.php:550 +msgid "Issue Date" +msgstr "問題日期" + +#: templates/header.php:79 +msgid "JavaScript must be enabled in order for you to use CORAL. However, it seems JavaScript is either disabled or not supported by your browser. To use CORAL, enable JavaScript by changing your browser options, then " +msgstr "先啟用JavaScript以後才能使用COREL。然而,您的瀏覽器似乎停用了JavaScript,不然就是不支援JavaScript。要使用COREL,先到瀏覽器選項內更改為啟用JavaScript,然後" + +#: templates/header.php:79 +msgid "try again" +msgstr "再試一次" + +#: templates/header.php:99 +msgid "Organizations" +msgstr "組織" + +#: templates/header.php:100 +msgid "Powered by" +msgstr "技術支持:" + +#: templates/header.php:106 +msgid "Hello" +msgstr "你好" + +#: templates/header.php:116 +msgid "logout" +msgstr "登出" + +#: templates/header.php:116 +msgid "Help" +msgstr "説明" + +#: templates/header.php:134 +msgid "Invalid translation route!" +msgstr "不正確翻譯路線 !" + +#: templates/header.php:180 templates/header.php:204 templates/header.php:220 +msgid "New Organization" +msgstr "新的組織" + +#: templates/header.php:188 templates/header.php:228 +msgid "Admin" +msgstr "管理" + +#: templates/header.php:246 +msgid "Change Module" +msgstr "更改模組" + +#: templates/header.php:249 +msgid "Main Menu" +msgstr "主菜單" + +#: templates/header.php:254 +msgid "Licensing" +msgstr "授權" + +#: templates/header.php:259 +msgid "Resources" +msgstr "資源" + +#: templates/header.php:264 +msgid "Cancel" +msgstr "取消" + +#: templates/header.php:269 +msgid "Usage Statistics" +msgstr "使用統計資訊" + +#: templates/header.php:274 +msgid "Management" +msgstr "管理" + +#: user.php:107 +msgid "Login is not working. Check the .htaccess file and the remoteAuthVariableName specified in /admin/configuration.ini" +msgstr "登錄無法使用。請檢查.htaccess 檔,以及在 /admin/configuration.ini 中指定的 remoteAuthVariableName" diff --git a/organizations/templates/header.php b/organizations/templates/header.php index 7982ff4d3..f30518f9e 100644 --- a/organizations/templates/header.php +++ b/organizations/templates/header.php @@ -51,11 +51,9 @@ - - + - 'fr_FR', - 'en_US'=>'en_US'//, - //'zh_CN'=>'zh_CN', - //'zh_TW'=>'zh_TW', + 'en_US'=>'en_US', + 'zh_CN'=>'zh_CN', + 'zh_TW'=>'zh_TW'//, //'de_DE'=>'de_DE' ); return array_key_exists($code, $all_lang) ? $all_lang[$code] : "en_US"; @@ -18,12 +18,12 @@ public function getLanguage($code){ public function getNameLang($code_lang){ $name_lang=array( 'fr_FR'=>'Français', - 'en_US'=>'English'//, - //'zh_CN'=>'中文 (中国)', - //'zh_TW'=>'中文 (台灣)', + 'en_US'=>'English', + 'zh_CN'=>'中文 (简体)', + 'zh_TW'=>'中文 (正體)'//, //'de_DE'=>'Deutsch' ); return array_key_exists($code_lang, $name_lang) ? $name_lang[$code_lang] : "English"; } } -?> \ No newline at end of file +?> diff --git a/reports/locale/zh_CN/LC_MESSAGES/messages.mo b/reports/locale/zh_CN/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..493d9fa6af0a55a1308c8150d363a0a93f88fb01 GIT binary patch literal 6041 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 literal 0 HcmV?d00001 diff --git a/reports/locale/zh_CN/LC_MESSAGES/messages.po b/reports/locale/zh_CN/LC_MESSAGES/messages.po new file mode 100644 index 000000000..65d8a60b2 --- /dev/null +++ b/reports/locale/zh_CN/LC_MESSAGES/messages.po @@ -0,0 +1,168 @@ +msgid "" +msgstr "" +"Project-Id-Version: messages\n" +"POT-Creation-Date: 2016-06-27 7:00-06:00\n" +"PO-Revision-Date: 2016-08-22 16:02-0600\n" +"Last-Translator: <>\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Basepath: ../../..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Generator: Poedit 1.8.8\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: js/plugins/jquery.js\n" + +#: js/index.js:21 +msgid "Refreshing Contents..." +msgstr "正在刷新内容..." + +#: admin/classes/domain/ReportNotes.php:53 +msgid "Platform Interface Notes (if available)" +msgstr "平台接口注释(如果有)" + +#: admin/classes/domain/ReportNotes.php:54 +msgid "Publisher Notes (if available)" +msgstr "出版商注释(如果有)" + +#: admin/classes/domain/ReportTable.php:109 +msgid "Sorry, no rows were returned." +msgstr "抱歉,没有返回任何行。" + +#: admin/classes/domain/ReportTable.php:183 admin/classes/domain/ReportTable.php:185 +msgid "view related titles" +msgstr "查看相关的题名" + +#: admin/classes/domain/ReportTable.php:190 +msgid "view in link resolver" +msgstr "在链接解析器中查看" + +#: index.php:38 report.php:117 +msgid "Usage Reports" +msgstr "使用报表" + +#: index.php:41 report.php:120 +msgid "Powered by" +msgstr "技术支持:" + +#: index.php:60 +msgid "Invalid translation route!" +msgstr "无效的翻译路线!" + +#: index.php:87 +msgid "Help" +msgstr "帮助" + +#: index.php:97 +msgid "Select Report" +msgstr "选择报表" + +#: popup.php:66 +msgid "Frequently Asked Questions" +msgstr "常见问题" + +#: popup.php:67 +msgid "Q. Why isn't the HTML number double the PDF number for interfaces that automatically download HTML?" +msgstr "问:为什么在自动下载 HTML 的界面上,HTML 点击率并不是 PDF 点击率的双倍?" + +#: popup.php:69 +msgid "A. Frequently these sites do NOT automatically download HTML from the Table of Contents browse interface, so even platforms such as ScienceDirect occasionally have higher PDF than HTML counts." +msgstr "答:经常性的,这些站点不会从目录浏览界面自动下载 HTML,因此即便是诸如 ScienceDirect 的平台,也会偶尔有高于 HTML 计数的 PDF。" + +#: popup.php:71 +msgid "Q. I thought COUNTER standards prevented double-counting of article downloads." +msgstr "问:我以为 COUNTER 标准可阻止双计数文章下载。" + +#: popup.php:73 +msgid "A. COUNTER does require that duplicate clicks on HTML or PDF within a short period of time be counted once. But COUNTER specifically does not deny double count of different formats--HTML and PDF. Because some publishers automatically choose HTML for users, and because many users prefer to save and/or print the PDF version, this interface significantly inflates total article usage." +msgstr "答:COUNTER 要求短时间内重复点击 HTML 或 PDF 按一次计算。但是 COUNTER 并不否认不同格式(HTML 和 PDF)的双计数。由于一些供应商自动为用户选择 HTML,且很多用户会选择保存和/或打印 PDF 版本,该界面可显著地增加文章使用总计数。" + +#: popup.php:75 +msgid "Q. Why do some Highwire Press publishers have high HTML ratios to PDFs, but some appear to have a very low ratio?" +msgstr "问:为什么一些 Highwire Press 出版商的 HTML 对 PDF 的点击率比值更高,而另一些则非常低?" + +#: popup.php:77 +msgid "A. Some publishers have automatic HTML display on Highwire, and some do not. This is because the publisher is able to indicate a preferred linking page through the DOI registry. Because this platform includes multiple publishers, the interface impact is not consistent." +msgstr "答:一些出版商让 Highwire 自动显示 HTML,而另一些则不会。这是因为出版商可以通过 DOI 注册表指定一个首选的链接页面。由于平台包括多个出版商,所以对界面的影响是不一致的。" + +#: popup.php:85 +msgid "Invalid type!!" +msgstr "无效的类型!!" + +#: report.php:74 +msgid "CORAL Usage Statistics Reporting" +msgstr "CORAL 使用情况统计报表" + +#: report.php:136 +msgid "Click to show information about this report" +msgstr "单击此处可显示有关本报表的信息" + +#: report.php:142 +msgid "Modify Parameters" +msgstr "修改参数" + +#: report.php:146 +msgid "Create New Report" +msgstr "创建新报表" + +#: report.php:187 +msgid "By Month and Resource" +msgstr "按月和资源" + +#: report.php:190 +msgid "from an Archive" +msgstr "来自一个存档" + +#: report.php:195 +#, php-format +msgid "Number of Successful Full-Text Article Requests %s" +msgstr "成功的全文本文章请求数量 %s" + +#: report.php:240 report.php:297 +msgid "Multiple titles with the same print ISSN (generally multiple parts) have been merged together" +msgstr "已将多件包含相同打印 ISSN 的题名(通常为馆藏的多个部份)和并在一起" + +#: report.php:247 +msgid "Key" +msgstr "密钥" + +#: report.php:252 +msgid "not been adjusted" +msgstr "未作调整" + +#: report.php:252 +msgid "been adjusted manually by Electronic Resources" +msgstr "已由电子资源进行手动调整" + +#: report.php:260 +#, php-format +msgid "Programmatically flagged as outlier based on previous 12 month average. The number has %s" +msgstr "根据之前12个月的平均值,以编程的方式被标记为离群值。该数字有%s" + +#: report.php:273 report.php:340 +#, php-format +msgid "Programmatically flagged as outlier using the following formula: Count is %d over %d% of the previous 12 month average." +msgstr "使用如下公式以编程的方式标记为离群值:计数是%d高于之前12个月平均值的%d%。" + +#: report.php:295 +msgid "Programmatically flagged as outlier based on previous 12 month average. The number has not been adjusted." +msgstr "根据之前12个月的平均值,以编程的方式标记为离群值。该数字尚未被调整。" + +#: report.php:296 +msgid "Programmatically flagged as outlier based on previous 12 month average. The number has been adjusted manually by Electronic Resources." +msgstr "根据之前12个月的平均值,以编程的方式被标记为离群值。该数字已被电子资源手动调整。" + +#: report.php:305 report.php:327 +msgid "Color Background Key" +msgstr "颜色背景键" + +#: templates/header.php:72 +msgid "JavaScript must be enabled in order for you to use CORAL. However, it seems JavaScript is either disabled or not supported by your browser. To use CORAL, enable JavaScript by changing your browser options, then" +msgstr "必须启用 JavaScript 才能使用 CORAL。但是,或者您已禁用 JavaScript,或者您的浏览器不支持。若要使用 CORAL,则请更改您的浏览器选项以启用 JavaScript,并" + +#: templates/header.php:72 +msgid "try again" +msgstr "重试" diff --git a/reports/locale/zh_TW/LC_MESSAGES/messages.mo b/reports/locale/zh_TW/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..c7ac6413dd74ca259734075bd949e815b50dda08 GIT binary patch literal 6095 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\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Basepath: ../../..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Generator: Poedit 1.8.8\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: js/plugins/jquery.js\n" + +#: js/index.js:21 +msgid "Refreshing Contents..." +msgstr "正在刷新內容......" + +#: admin/classes/domain/ReportNotes.php:53 +msgid "Platform Interface Notes (if available)" +msgstr "平臺介面備註(如果有)" + +#: admin/classes/domain/ReportNotes.php:54 +msgid "Publisher Notes (if available)" +msgstr "出版商備註(如果有)" + +#: admin/classes/domain/ReportTable.php:109 +msgid "Sorry, no rows were returned." +msgstr "抱歉,沒有返回任何行。" + +#: admin/classes/domain/ReportTable.php:183 admin/classes/domain/ReportTable.php:185 +msgid "view related titles" +msgstr "查看相關的題名" + +#: admin/classes/domain/ReportTable.php:190 +msgid "view in link resolver" +msgstr "在連結解析器中查看" + +#: index.php:38 report.php:117 +msgid "Usage Reports" +msgstr "使用情況報表" + +#: index.php:41 report.php:120 +msgid "Powered by" +msgstr "技術支持:" + +#: index.php:60 +msgid "Invalid translation route!" +msgstr "不正確翻譯路線 !" + +#: index.php:87 +msgid "Help" +msgstr "説明" + +#: index.php:97 +msgid "Select Report" +msgstr "選擇報表" + +#: popup.php:66 +msgid "Frequently Asked Questions" +msgstr "常見問答" + +#: popup.php:67 +msgid "Q. Why isn't the HTML number double the PDF number for interfaces that automatically download HTML?" +msgstr "問:為什麼在自動下載 HTML 的介面上,HTML 點擊率並不是 PDF 點擊率的雙倍?" + +#: popup.php:69 +msgid "A. Frequently these sites do NOT automatically download HTML from the Table of Contents browse interface, so even platforms such as ScienceDirect occasionally have higher PDF than HTML counts." +msgstr "答:經常性的,這些網站不會從瀏覽目錄介面自動下載 HTML。因此即便是諸如 ScienceDirect 的平臺,也會偶爾有高於 HTML 計數的 PDF。" + +#: popup.php:71 +msgid "Q. I thought COUNTER standards prevented double-counting of article downloads." +msgstr "問:我以為 COUNTER 標準可阻止雙計數文章下載。" + +#: popup.php:73 +msgid "A. COUNTER does require that duplicate clicks on HTML or PDF within a short period of time be counted once. But COUNTER specifically does not deny double count of different formats--HTML and PDF. Because some publishers automatically choose HTML for users, and because many users prefer to save and/or print the PDF version, this interface significantly inflates total article usage." +msgstr "答:COUNTER 要求短時間內重複點擊 HTML 或 PDF 按一次計算。但是 COUNTER 並不否認不同格式(HTML 和 PDF)的雙計數。 由於一些供應商自動為使用者選擇 HTML,且很多使用者會選擇保存和/或列印 PDF 版本,該介面可顯著地增加文章使用總計數。" + +#: popup.php:75 +msgid "Q. Why do some Highwire Press publishers have high HTML ratios to PDFs, but some appear to have a very low ratio?" +msgstr "問:為什麼一些 Highwire Press 出版商的 HTML 對 PDF 的點擊率比值更高,而另一些則非常低?" + +#: popup.php:77 +msgid "A. Some publishers have automatic HTML display on Highwire, and some do not. This is because the publisher is able to indicate a preferred linking page through the DOI registry. Because this platform includes multiple publishers, the interface impact is not consistent." +msgstr "答:一些出版商讓 Highwire 自動顯示 HTML,而另一些則不會。這是因為出版商可以透過 DOI 註冊表指定一個首選的連結頁面。由於平臺包括多個出版商,所以對介面的影響是不一致的。" + +#: popup.php:85 +msgid "Invalid type!!" +msgstr "不正確類型!!" + +#: report.php:74 +msgid "CORAL Usage Statistics Reporting" +msgstr "CORAL 使用情況統計報表" + +#: report.php:136 +msgid "Click to show information about this report" +msgstr "按一下此處可顯示有關本報表的資訊" + +#: report.php:142 +msgid "Modify Parameters" +msgstr "修改參數" + +#: report.php:146 +msgid "Create New Report" +msgstr "建立新報表" + +#: report.php:187 +msgid "By Month and Resource" +msgstr "按月和資源" + +#: report.php:190 +msgid "from an Archive" +msgstr "來自一個存檔" + +#: report.php:195 +#, php-format +msgid "Number of Successful Full-Text Article Requests %s" +msgstr "成功的全文本文章請求數量 %s" + +#: report.php:240 report.php:297 +msgid "Multiple titles with the same print ISSN (generally multiple parts) have been merged together" +msgstr "已將多件包含相同列印 ISSN 的題名(通常為館藏的多個部份)合併在一起" + +#: report.php:247 +msgid "Key" +msgstr "金鑰" + +#: report.php:252 +msgid "not been adjusted" +msgstr "未作調整" + +#: report.php:252 +msgid "been adjusted manually by Electronic Resources" +msgstr "已由電子資源進行手動調整" + +#: report.php:260 +#, php-format +msgid "Programmatically flagged as outlier based on previous 12 month average. The number has %s" +msgstr "根據之前12個月的平均值,以程式設計的方式被標記為離群值。該數位有%s" + +#: report.php:273 report.php:340 +#, php-format +msgid "Programmatically flagged as outlier using the following formula: Count is %d over %d% of the previous 12 month average." +msgstr "使用如下公式以程式設計的方式標記為離群值:計數是%d高於之前12個月平均值的%d%。" + +#: report.php:295 +msgid "Programmatically flagged as outlier based on previous 12 month average. The number has not been adjusted." +msgstr "根據之前12個月的平均值,以程式設計的方式標記為離群值。該數位尚未被調整。" + +#: report.php:296 +msgid "Programmatically flagged as outlier based on previous 12 month average. The number has been adjusted manually by Electronic Resources." +msgstr "根據之前12個月的平均值,以程式設計的方式標記為離群值。該數位已被電子資源手動調整。" + +#: report.php:305 report.php:327 +msgid "Color Background Key" +msgstr "顏色背景鍵" + +#: templates/header.php:72 +msgid "JavaScript must be enabled in order for you to use CORAL. However, it seems JavaScript is either disabled or not supported by your browser. To use CORAL, enable JavaScript by changing your browser options, then" +msgstr "先啟用JavaScript以後才能使用COREL。然而,您的瀏覽器似乎停用了JavaScript,不然就是不支援JavaScript。要使用COREL,先到瀏覽器選項內更改為啟用JavaScript,然後" + +#: templates/header.php:72 +msgid "try again" +msgstr "再試一次" diff --git a/resources/LangCodes.php b/resources/LangCodes.php index 13aa98417..7bff5380f 100644 --- a/resources/LangCodes.php +++ b/resources/LangCodes.php @@ -8,9 +8,9 @@ class LangCodes{ public function getLanguage($code){ $all_lang=array( 'fr_FR'=>'fr_FR', - 'en_US'=>'en_US'//, - //'zh_CN'=>'zh_CN', - //'zh_TW'=>'zh_TW', + 'en_US'=>'en_US', + 'zh_CN'=>'zh_CN', + 'zh_TW'=>'zh_TW'//, //'de_DE'=>'de_DE' ); return array_key_exists($code, $all_lang) ? $all_lang[$code] : "en_US"; @@ -18,12 +18,12 @@ public function getLanguage($code){ public function getNameLang($code_lang){ $name_lang=array( 'fr_FR'=>'Français', - 'en_US'=>'English'//, - //'zh_CN'=>'中文 (中国)', - //'zh_TW'=>'中文 (台灣)', + 'en_US'=>'English', + 'zh_CN'=>'中文 (简体)', + 'zh_TW'=>'中文 (正體)'//, //'de_DE'=>'Deutsch' ); return array_key_exists($code_lang, $name_lang) ? $name_lang[$code_lang] : "English"; } } -?> \ No newline at end of file +?> diff --git a/resources/locale/zh_CN/LC_MESSAGES/messages.mo b/resources/locale/zh_CN/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..6e90e66f58184c02fe3df21939672f6bec3ab0a0 GIT binary patch literal 43688 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\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Basepath: ../../..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Generator: Poedit 1.8.8\n" +"X-Poedit-SearchPath-0: .\n" + +#: js/admin.js:492 +msgid "Number of days must be a number" +msgstr "天数必须是一个数字" + +#: js/admin.js:495 +msgid "Number of days should be between 1 and 365" +msgstr "天数应介于 1 和 365 之间" + +#: js/admin.js:515 +msgid "Do you really want to delete this data?" +msgstr "您确认要删除此数据吗?" + +#: js/admin.js:542 js/admin.js:570 js/admin.js:598 js/admin.js:681 +msgid "Do you really want to remove this data?" +msgstr "您确认要移除此数据吗?" + +#: js/admin.js:626 +msgid "Do you really want to delete this user?" +msgstr "您确认要删除此用户吗?" + +#: js/admin.js:653 +msgid "Do you really want to remove this alert setting?" +msgstr "您确认要移除此提醒设置吗?" + +#: js/admin.js:709 +msgid "Do you really want to delete this currency?" +msgstr "您确认要删除此种货币吗?" + +#: js/common.js:73 +msgid "No match!" +msgstr "没有匹配!" + +#: js/common.js:73 +msgid "Selected: " +msgstr "已选:" + +#: js/forms/acquisitionsForm.js:123 js/forms/costForm.js:285 +msgid "Error - Either amount or fund is required" +msgstr "错误 - 金额或经费之一为必填" + +#: js/forms/acquisitionsForm.js:126 js/forms/costForm.js:290 +msgid "Error - order type is a required field" +msgstr "错误 - 订单类型是必填字段" + +#: js/forms/acquisitionsForm.js:129 js/forms/costForm.js:295 +msgid "Error - price is not numeric" +msgstr "错误 - 价格不是数字" + +#: js/forms/acquisitionsForm.js:147 js/forms/acquisitionsForm.js:148 js/forms/costForm.js:125 +msgid "remove this payment" +msgstr "移除该付款" + +#: js/forms/acquisitionsForm.js:232 +msgid "Error - acquisition type is a required field" +msgstr "错误 - 采访类型是必填字段" + +#: js/forms/attachmentForm.js:94 +msgid "File name is already being used..." +msgstr "文件名称已正被使用..." + +#: js/forms/attachmentForm.js:98 +msgid "File name may not contain special characters - ampersand, single quote, double quote or less than/greater than characters" +msgstr "文件名称不能包括特殊字符——&、单引号、双引号或大于号、小于号等字符。" + +#: js/forms/attachmentForm.js:102 +msgid "The attachments directory is not writable." +msgstr "该附件目录不可写。" + +#: js/forms/attachmentForm.js:124 js/forms/attachmentForm.js:146 +msgid " successfully uploaded." +msgstr "成功上载。" + +#: js/forms/attachmentForm.js:159 js/forms/resourceUpdateForm.js:378 +msgid "Name must be entered to continue." +msgstr "必须输入名称才能继续。" + +#: js/forms/attachmentForm.js:160 +msgid "Attachment Type must be selected to continue." +msgstr "必须选择附件类型才可继续。" + +#: js/forms/attachmentForm.js:178 +msgid "A file must be uploaded" +msgstr "必须上载一个文件" + +#: js/forms/contactForm.js:179 +msgid "Please choose at least one role." +msgstr "请至少选择一个角色。" + +#: js/forms/costForm.js:260 +msgid "Validation Failed" +msgstr "验证失败" + +#: js/forms/detailedSubjectForm.js:60 js/forms/generalSubjectForm.js:59 +msgid "Error - Please enter a value" +msgstr "错误 - 请输入一个值" + +#: js/forms/generalDetailSubjectForm.js:87 +msgid "Error - Detailed Subject is required" +msgstr "错误 - 详细的主题是必需的" + +#: js/forms/generalDetailSubjectForm.js:108 js/forms/generalDetailSubjectForm.js:109 +msgid "Error - Detail Subject Already Added" +msgstr "错误 - 已添加详细的主题" + +#: js/forms/generalDetailSubjectForm.js:133 ajax_forms/getGeneralDetailSubjectForm.php:107 +msgid "remove detailed subject" +msgstr "移除详细的主题" + +#: js/forms/generalDetailSubjectForm.js:175 +msgid "Short Name must be entered to continue." +msgstr "必须输入短名称才能继续。" + +#: js/forms/licenseForm.js:140 js/forms/licenseForm.js:251 +msgid "Error - Please choose a valid license" +msgstr "错误 - 请选择一个有效授权" + +#: js/forms/licenseForm.js:153 +msgid "remove this license" +msgstr "移除该授权" + +#: js/forms/resourceNewForm.js:99 +msgid "Warning: this name already exists." +msgstr "警告:此名称已存在。" + +#: js/forms/resourceNewForm.js:227 +msgid "A title must be entered to continue." +msgstr "必须输入一个名称才能继续。" + +#: js/forms/resourceNewForm.js:232 +msgid "The resource format is required." +msgstr "资源格式为必填。" + +#: js/forms/resourceNewForm.js:237 +msgid "The resource type is required." +msgstr "资源类型为必填。" + +#: js/forms/resourceNoteForm.js:34 +msgid "Note must be entered to continue." +msgstr "必须输入注释才能继续。" + +#: js/forms/resourceUpdateForm.js:90 +msgid "Error - Parent cannot be the same as the child" +msgstr "错误 - 父级不能与子级相同" + +#: js/forms/resourceUpdateForm.js:223 js/forms/resourceUpdateForm.js:307 js/forms/resourceUpdateForm.js:392 js/forms/resourceUpdateForm.js:403 +msgid "Error - Both fields are required" +msgstr "错误 - 两个字段都是必填" + +#: js/forms/resourceUpdateForm.js:236 ajax_forms/getUpdateProductForm.php:400 +msgid "remove this alias" +msgstr "移除该别名" + +#: js/forms/resourceUpdateForm.js:263 ajax_forms/getUpdateProductForm.php:164 +msgid "remove Issn/Isbn" +msgstr "移除 LSSN/ISBN" + +#: js/forms/resourceUpdateForm.js:282 +msgid "Error - Parent is not found. Please use the Autocomplete." +msgstr "错误 - 未找到父级。请使用自动完成。" + +#: js/forms/resourceUpdateForm.js:291 ajax_forms/getUpdateProductForm.php:137 +msgid "remove parent" +msgstr "移除父级" + +#: js/forms/resourceUpdateForm.js:309 +msgid "Error - Organization is not found. Please use the Autocomplete." +msgstr "错误 - 未找到组织。请使用自动完成。" + +#: js/forms/resourceUpdateForm.js:324 +msgid "remove this organization" +msgstr "移除该组织" + +#: js/forms/resourceUpdateForm.js:394 +msgid "Error - Organization is not found. Please use Autocomplete." +msgstr "错误 - 未找到组织。请使用自动完成。" + +#: js/forms/userGroupForm.js:101 +msgid "Error - User is required" +msgstr "错误 - 用户为必填" + +#: js/forms/userGroupForm.js:117 ajax_forms/getAdminUserGroupForm.php:121 +msgid "remove user from group" +msgstr "从组中移除用户" + +#: js/forms/userGroupForm.js:118 +msgid "remove from group" +msgstr "从组中移除" + +#: js/forms/userGroupForm.js:163 +msgid "Group name must be entered to continue." +msgstr "必须输入组名称才能继续。" + +#: js/forms/workflowForm.js:185 +msgid "Error - Step name is required" +msgstr "错误 - 步骤名称为必填" + +#: js/forms/workflowForm.js:201 js/forms/workflowForm.js:202 ajax_forms/getAdminWorkflowForm.php:238 +msgid "remove this step" +msgstr "移除该步骤" + +#: js/forms/workflowForm.js:373 +msgid "Please add at least one step to this workflow." +msgstr "请为该工作流添加至少一个步骤。" + +#: js/forms/workflowForm.js:379 +msgid "Please click the Add button to the first step before submitting this workflow." +msgstr "请在提交此工作流之前为第一步单击“添加”按钮。" + +#: js/index.js:112 +msgid "Processing..." +msgstr "正在处理..." + +#: js/index.js:240 index.php:357 +msgid "more options..." +msgstr "更多选项..." + +#: js/plugins/date.js:30 +msgid "Sunday" +msgstr "星期日" + +#: js/plugins/date.js:30 +msgid "Monday" +msgstr "星期一" + +#: js/plugins/date.js:30 +msgid "Tuesday" +msgstr "星期二" + +#: js/plugins/date.js:30 +msgid "Wednesday" +msgstr "星期三" + +#: js/plugins/date.js:30 +msgid "Thursday" +msgstr "星期四" + +#: js/plugins/date.js:30 +msgid "Friday" +msgstr "星期五" + +#: js/plugins/date.js:30 +msgid "Saturday" +msgstr "星期六" + +#: js/plugins/date.js:42 +msgid "Sun" +msgstr "星期日" + +#: js/plugins/date.js:42 +msgid "Mon" +msgstr "星期一" + +#: js/plugins/date.js:42 +msgid "Tue" +msgstr "星期二" + +#: js/plugins/date.js:42 +msgid "Wed" +msgstr "星期三" + +#: js/plugins/date.js:42 +msgid "Thu" +msgstr "星期四" + +#: js/plugins/date.js:42 +msgid "Fri" +msgstr "星期五" + +#: js/plugins/date.js:42 +msgid "Sat" +msgstr "星期六" + +#: js/plugins/date.js:54 +msgid "January" +msgstr "一月" + +#: js/plugins/date.js:54 +msgid "February" +msgstr "二月" + +#: js/plugins/date.js:54 +msgid "March" +msgstr "三月" + +#: js/plugins/date.js:54 +msgid "April" +msgstr "四月" + +#: js/plugins/date.js:54 js/plugins/date.js:66 +msgid "May" +msgstr "五月" + +#: js/plugins/date.js:54 +msgid "June" +msgstr "六月" + +#: js/plugins/date.js:54 +msgid "July" +msgstr "七月" + +#: js/plugins/date.js:54 +msgid "August" +msgstr "八月" + +#: js/plugins/date.js:54 +msgid "September" +msgstr "九月" + +#: js/plugins/date.js:54 +msgid "October" +msgstr "十月" + +#: js/plugins/date.js:54 +msgid "November" +msgstr "十一月" + +#: js/plugins/date.js:54 +msgid "December" +msgstr "十二月" + +#: js/plugins/date.js:66 +msgid "Jan" +msgstr "一月" + +#: js/plugins/date.js:66 +msgid "Feb" +msgstr "二月" + +#: js/plugins/date.js:66 +msgid "Mar" +msgstr "三月" + +#: js/plugins/date.js:66 +msgid "Apr" +msgstr "四月" + +#: js/plugins/date.js:66 +msgid "Jun" +msgstr "六月" + +#: js/plugins/date.js:66 +msgid "Jul" +msgstr "七月" + +#: js/plugins/date.js:66 +msgid "Aug" +msgstr "八月" + +#: js/plugins/date.js:66 +msgid "Sep" +msgstr "九月" + +#: js/plugins/date.js:66 +msgid "Oct" +msgstr "十月" + +#: js/plugins/date.js:66 +msgid "Nov" +msgstr "十一月" + +#: js/plugins/date.js:66 +msgid "Dec" +msgstr "十二月" + +#: js/plugins/jquery.datePicker.js:1129 +msgid "Previous year" +msgstr "前一年" + +#: js/plugins/jquery.datePicker.js:1130 +msgid "Previous month" +msgstr "上个月" + +#: js/plugins/jquery.datePicker.js:1131 +msgid "Next year" +msgstr "后一年" + +#: js/plugins/jquery.datePicker.js:1132 +msgid "Next month" +msgstr "下个月" + +#: js/plugins/jquery.datePicker.js:1133 +msgid "Close" +msgstr "关闭" + +#: js/plugins/jquery.datePicker.js:1134 +msgid "Choose date" +msgstr "选择日期" + +#: js/queue.js:55 js/queue.js:89 js/queue.js:123 js/queue.js:155 +msgid "Refreshing..." +msgstr "正在刷新..." + +#: js/queue.js:153 +msgid "Do you really want to delete this request?" +msgstr "您确认要删除此请求吗?" + +#: js/queue.js:193 js/queue.js:214 js/queue.js:235 js/resource.js:618 +msgid " record)" +msgstr "记录)" + +#: js/queue.js:195 js/queue.js:216 js/queue.js:237 js/resource.js:620 +msgid " records)" +msgstr "记录)" + +#: js/resource.js:93 js/resource.js:100 +msgid "Must set a date." +msgstr "必须设置一个日期。" + +#: js/resource.js:154 +msgid "New contact must have a name." +msgstr "新的联系人必须有一个名字。" + +#: js/resource.js:161 js/resource.js:203 +msgid "CC must be a valid email." +msgstr "密送必须有一个有效的电子邮件" + +#: js/resource.js:357 js/resource.js:666 +msgid "Refreshing Contents..." +msgstr "正在刷新内容..." + +#: js/resource.js:450 +msgid "Opening an issue requires a resource to be associated with an organization. Please contact your IT department." +msgstr "新建问题需要一个与一个组织相关联的资源。请联系您的 IT 部门。" + +#: js/resource.js:455 +msgid "A contact must be selected to continue." +msgstr "必须选择一个联系人才能继续。" + +#: js/resource.js:460 +msgid "A subject must be entered to continue." +msgstr "必须输入一个主题才能继续。" + +#: js/resource.js:465 +msgid "A body must be entered to continue." +msgstr "必须输入一个正文才能继续。" + +#: js/resource.js:478 +msgid "An issue must be associated with an organization or resource(s)." +msgstr "一个问题必须与一个组织或资源相关联" + +#: js/resource.js:706 +msgid "Do you really want to delete this contact?" +msgstr "您确认要删除此联系人吗?" + +#: js/resource.js:724 +msgid "Do you really want to delete this account?" +msgstr "您确认要删除此帐户吗?" + +#: js/resource.js:742 +msgid "Do you really want to delete this attachment?" +msgstr "您确认要删除该附件吗?" + +#: js/resource.js:762 +msgid "Do you really want to delete this resource?" +msgstr "您确认要删除此资源吗?" + +#: js/resource.js:780 +msgid "Do you really want to delete this resource and all its children?" +msgstr "您确认要删除该资源及其子资源吗?" + +#: js/resource.js:801 +msgid "Do you really want to remove this Subject?" +msgstr "您确认要移除该主题吗?" + +#: js/resource.js:819 +msgid "Do you really want to delete this note?" +msgstr "您确认要删除该注释吗?" + +#: js/resource.js:861 +msgid "Warning! You are about to remove any steps that have been started and completed. Are you sure you wish to continue?" +msgstr "警告!您将要移除任何已开始和已完成的步骤。您确认要继续吗?" + +#: js/resource.js:878 +msgid "Do you really want to mark this resource complete? This action cannot be undone." +msgstr "您确认要将该资源标记为完成吗?该操作无法被撤销。" + +#: js/resource.js:892 +msgid "Do you really want to delete this step? If other steps depended on this one, they will be started upon deletion. This action cannot be undone" +msgstr "您确认要删除该步骤吗?如果其它步骤取决于该步骤,那么将会在删除后重新启动。该操作无法被撤销。" + +#: admin.php:22 admin.php:40 +msgid "Administration" +msgstr "管理" + +#: admin.php:51 ajax_htmldata/getAdminUserDisplay.php:19 ajax_htmldata/getAdminWorkflowDisplay.php:74 +msgid "Users" +msgstr "用户" + +#: admin.php:52 +msgid "Workflow / User Group" +msgstr "工作流 / 用户组" + +#: admin.php:53 +msgid "Access Method" +msgstr "访问方式" + +#: admin.php:54 +msgid "Account Type" +msgstr "帐户类型" + +#: admin.php:55 ajax_forms/getNewResourceForm.php:176 ajax_htmldata/getAdminWorkflowDisplay.php:16 ajax_htmldata/getOutstandingQueue.php:21 ajax_htmldata/getSavedQueue.php:20 ajax_htmldata/getSearchResources.php:118 ajax_htmldata/getSubmittedQueue.php:17 index.php:118 +msgid "Acquisition Type" +msgstr "采访类型" + +#: admin.php:56 index.php:484 +msgid "Administering Site" +msgstr "管理站点" + +#: admin.php:58 ajax_htmldata/getAdminAlertDisplay.php:10 +msgid "Alert Settings" +msgstr "提醒设置" + +#: admin.php:60 ajax_forms/getImportConfigForm.php:57 ajax_forms/getImportConfigForm.php:71 ajax_forms/getImportConfigForm.php:245 +msgid "Alias Type" +msgstr "别名类型" + +#: admin.php:61 +msgid "Attachment Type" +msgstr "附件类型" + +#: admin.php:62 index.php:514 +msgid "Authentication Type" +msgstr "身份验证类型" + +#: admin.php:63 index.php:452 +msgid "Authorized Site" +msgstr "授权站点" + +#: admin.php:64 index.php:544 +msgid "Cataloging Status" +msgstr "编目状态" + +#: admin.php:65 +msgid "CatalogingType" +msgstr "编目类型" + +#: admin.php:66 +msgid "Contact Role" +msgstr "联系人角色" + +#: admin.php:68 ajax_forms/getCostForm.php:76 +msgid "Cost Details" +msgstr "成本详细信息" + +#: admin.php:70 ajax_forms/getCostForm.php:73 ajax_htmldata/getAdminCurrencyDisplay.php:8 +msgid "Currency" +msgstr "货币" + +#: admin.php:71 +msgid "Downtime Types" +msgstr "停机时间类型" + +#: admin.php:72 +msgid "Funds" +msgstr "经费" + +#: admin.php:73 ajax_htmldata/getAdminImportConfigDisplay.php:7 +msgid "Import Configuration" +msgstr "导入配置" + +#: admin.php:74 +msgid "License Status" +msgstr "授权状态" + +#: admin.php:75 ajax_forms/getImportConfigForm.php:147 ajax_forms/getImportConfigForm.php:161 ajax_forms/getImportConfigForm.php:269 index.php:362 +msgid "Note Type" +msgstr "注释类型" + +#: admin.php:76 +msgid "Order Type" +msgstr "订单类型" + +#: admin.php:83 ajax_forms/getImportConfigForm.php:182 ajax_forms/getImportConfigForm.php:194 ajax_forms/getImportConfigForm.php:275 +msgid "Organization Role" +msgstr "组织角色" + +#: admin.php:84 templates/header.php:225 +msgid "Organizations" +msgstr "组织" + +#: admin.php:88 +msgid "Purchasing Site" +msgstr "采购站点" + +#: admin.php:89 ajax_forms/getImportConfigForm.php:49 ajax_htmldata/getAdminWorkflowDisplay.php:17 index.php:204 +msgid "Resource Format" +msgstr "资源格式" + +#: admin.php:90 ajax_forms/getImportConfigForm.php:50 ajax_forms/getNewResourceForm.php:223 ajax_htmldata/getAdminWorkflowDisplay.php:18 index.php:228 +msgid "Resource Type" +msgstr "资源类型" + +#: admin.php:91 +msgid "Storage Location" +msgstr "存储位置" + +#: admin.php:92 ajax_htmldata/getProductDetails.php:301 +msgid "Subjects" +msgstr "主题" + +#: admin.php:93 +msgid "User Limit" +msgstr "用户限制" + +#: admin.php:98 queue.php:59 +msgid "Loading..." +msgstr "正在加载..." + +#: admin.php:121 +msgid "You do not have permissions to access this screen." +msgstr "您没有权限访问此屏幕。" + +#: admin/classes/common/DBService.php:39 +msgid "There was a problem with the database: " +msgstr "数据库出现一个问题:" + +#: admin/classes/common/LdapPerson.php:34 +msgid "Could not connect to " +msgstr "无法连接到" + +#: admin/classes/common/Object.php:63 admin/classes/common/Object.php:72 +msgid "Cannot set value for undefined key (" +msgstr "无法为未定义的键设置值 (" + +#: admin/classes/common/Utility.php:121 +msgid "Error: unexpected fgets() fail" +msgstr "错误:意外 fgets() 失败" + +#: admin/classes/common/Utility.php:133 +msgid "Edit DDW facet/term selections at: " +msgstr "编辑 DDW 分面/条款选择于:" + +#: admin/classes/common/Utility.php:148 +msgid "Email template file not found: " +msgstr "未找到电子邮件模板文件:" + +#: ajax_forms.php:25 +msgid "Form action " +msgstr "表格操作" + +#: ajax_forms.php:25 ajax_htmldata.php:27 ajax_processing.php:27 +msgid " not set up!" +msgstr "未设置!" + +#: ajax_forms/getAccessForm.php:59 +msgid "Edit Access" +msgstr "编辑访问权" + +#: ajax_forms/getAccessForm.php:68 +msgid "Access" +msgstr "访问" + +#: ajax_forms/getAccessForm.php:75 ajax_htmldata/getAccessDetails.php:57 summary.php:632 +msgid "Authentication Type:" +msgstr "身份验证类型:" + +#: ajax_forms/getAccessForm.php:90 ajax_forms/getAccountForm.php:58 +msgid "Username:" +msgstr "用户名:" + +#: ajax_forms/getAccessForm.php:94 ajax_htmldata/getAccessDetails.php:102 summary.php:669 +msgid "Access Method:" +msgstr "访问方式:" + +#: ajax_forms/getAccessForm.php:109 ajax_forms/getAccountForm.php:65 ajax_htmldata/getAccountDetails.php:80 +msgid "Password:" +msgstr "密码:" + +#: ajax_forms/getAccessForm.php:113 ajax_htmldata/getAccessDetails.php:88 summary.php:662 +msgid "Storage Location:" +msgstr "存储位置:" + +#: ajax_forms/getAccessForm.php:128 ajax_htmldata/getAccessDetails.php:72 summary.php:646 +msgid "Simultaneous User Limit:" +msgstr "并发用户限制:" + +#: ajax_forms/getAccessForm.php:145 ajax_htmldata/getAccessDetails.php:95 +msgid "Coverage:" +msgstr "时空范围:" + +#: ajax_forms/getAccessForm.php:163 +msgid "Authorized Site(s)" +msgstr "授权站点" + +#: ajax_forms/getAccessForm.php:208 +msgid "Administering Site(s)" +msgstr "管理站点" + +#: ajax_forms/getAccessForm.php:251 ajax_forms/getAccountForm.php:86 ajax_forms/getAdminAlertDaysForm.php:34 ajax_forms/getAdminAlertEmailForm.php:34 ajax_forms/getAdminCurrencyUpdateForm.php:38 ajax_forms/getAdminFundUpdateForm.php:45 ajax_forms/getAdminImportConfigUpdateForm.php:40 ajax_forms/getAdminUpdateForm.php:44 ajax_forms/getAdminUserGroupForm.php:147 ajax_forms/getAdminUserUpdateForm.php:66 ajax_forms/getAdminWorkflowForm.php:266 ajax_forms/getAttachmentForm.php:89 ajax_forms/getContactForm.php:161 ajax_forms/getCostForm.php:335 ajax_forms/getDetailSubjectUpdateForm.php:38 ajax_forms/getGeneralDetailSubjectForm.php:130 ajax_forms/getGeneralSubjectUpdateForm.php:38 ajax_forms/getLicenseForm.php:191 ajax_forms/getNewDowntimeForm.php:115 ajax_forms/getNewIssueForm.php:132 ajax_forms/getNewResourceForm.php:295 ajax_forms/getNoteForm.php:61 +#: ajax_forms/getOrderForm.php:160 ajax_forms/getResourceStepForm.php:64 ajax_forms/getUpdateProductForm.php:429 resources/cataloging_edit.php:102 +msgid "submit" +msgstr "提交" + +#: ajax_forms/getAccessForm.php:252 ajax_forms/getAccountForm.php:87 ajax_forms/getAdminAlertDaysForm.php:35 ajax_forms/getAdminAlertEmailForm.php:35 ajax_forms/getAdminCurrencyUpdateForm.php:39 ajax_forms/getAdminFundUpdateForm.php:46 ajax_forms/getAdminImportConfigUpdateForm.php:41 ajax_forms/getAdminUpdateForm.php:45 ajax_forms/getAdminUserGroupForm.php:148 ajax_forms/getAdminUserUpdateForm.php:67 ajax_forms/getAdminWorkflowForm.php:267 ajax_forms/getAttachmentForm.php:90 ajax_forms/getContactForm.php:162 ajax_forms/getCostForm.php:336 ajax_forms/getDetailSubjectUpdateForm.php:39 ajax_forms/getGeneralDetailSubjectForm.php:131 ajax_forms/getGeneralSubjectUpdateForm.php:39 ajax_forms/getImportSaveCfgForm.php:28 ajax_forms/getLicenseForm.php:192 ajax_forms/getNewDowntimeForm.php:116 ajax_forms/getNewDowntimeForm.php:125 +#: ajax_forms/getNewIssueForm.php:133 ajax_forms/getNewIssueForm.php:142 ajax_forms/getNewResourceForm.php:296 ajax_forms/getNoteForm.php:62 ajax_forms/getOrderForm.php:161 ajax_forms/getResourceStepForm.php:65 ajax_forms/getResourceSubjectForm.php:48 ajax_forms/getUpdateProductForm.php:430 importFunds.php:64 resources/cataloging_edit.php:103 +msgid "cancel" +msgstr "取消" + +#: ajax_forms/getAccountForm.php:17 +msgid "Edit Account" +msgstr "编辑帐户" + +#: ajax_forms/getAccountForm.php:17 +msgid "Add Account" +msgstr "添加帐户" + +#: ajax_forms/getAccountForm.php:27 +msgid "Login Type:" +msgstr "登录类型︰" + +#: ajax_forms/getAccountForm.php:44 ajax_forms/getNewResourceForm.php:115 ajax_forms/getUpdateProductForm.php:101 summary.php:742 +msgid "URL:" +msgstr "URL:" + +#: ajax_forms/getAccountForm.php:51 ajax_htmldata/getAccountDetails.php:96 +msgid "Registered Email:" +msgstr "注册的电子邮件:" + +#: ajax_forms/getAccountForm.php:72 ajax_forms/getContactForm.php:138 ajax_forms/getNoteForm.php:48 ajax_htmldata/getAccountDetails.php:104 ajax_htmldata/getContactDetails.php:165 +msgid "Notes:" +msgstr "注释:" + +#: ajax_forms/getAdminAlertDaysForm.php:14 +msgid "Edit Alert Days In Advance" +msgstr "编辑提前提醒天数" + +#: ajax_forms/getAdminAlertDaysForm.php:14 +msgid "Add Alert Days In Advance" +msgstr "添加提前提醒天数" + +#: ajax_forms/getAdminAlertEmailForm.php:14 +msgid "Edit Alert Email Address" +msgstr "编辑提醒电子邮件地址" + +#: ajax_forms/getAdminAlertEmailForm.php:14 +msgid "Add Alert Email Address" +msgstr "添加提醒电子邮件地址" + +#: ajax_forms/getAdminCurrencyUpdateForm.php:14 +msgid "Edit Currency" +msgstr "编辑货币" + +#: ajax_forms/getAdminCurrencyUpdateForm.php:14 +msgid "Add Currency" +msgstr "添加货币" + +#: ajax_forms/getAdminCurrencyUpdateForm.php:24 ajax_forms/getAdminFundUpdateForm.php:25 ajax_htmldata/getAdminCurrencyDisplay.php:14 +msgid "Code" +msgstr "代码" + +#: ajax_forms/getAdminCurrencyUpdateForm.php:27 ajax_forms/getAdminFundUpdateForm.php:28 ajax_htmldata/getAdminCurrencyDisplay.php:15 ajax_htmldata/getAdminImportConfigDisplay.php:13 ajax_htmldata/getOutstandingQueue.php:20 ajax_htmldata/getSavedQueue.php:18 ajax_htmldata/getSearchResources.php:115 ajax_htmldata/getSubmittedQueue.php:15 +msgid "Name" +msgstr "名称" + +#: ajax_forms/getAdminFundUpdateForm.php:32 +msgid "Archived" +msgstr "存档" + +#: ajax_forms/getAdminImportConfigUpdateForm.php:22 +msgid "Edit Import Configuration" +msgstr "编辑导入配置" + +#: ajax_forms/getAdminImportConfigUpdateForm.php:24 +msgid "Add Import Configuration" +msgstr "添加导入配置" + +#: ajax_forms/getAdminImportConfigUpdateForm.php:31 +msgid "Configuration Name" +msgstr "配置名称" + +#: ajax_forms/getAdminImportConfigUpdateForm.php:34 +msgid "For each of the resource fields please input the number of the column in your CSV file that corresponds to the resource field. For example, if your import file has a second column called Name that corresponds to the Resource Title, then you would input 2 for the value for the Resource Title field. For columns with multiple values that are character-delimited, indicate the delimiter using the If delimited, delimited by field. For fields with values across multiple columns, add additional sets using the +Add another links. Use the Dedupe on this column option for ISBN/ISSN sets to ignore any duplicate values that might occur across those columns. The Alias Types, Note Types, and Organization Roles that you can assign to your mapped columns can be configured on the Admin page." +msgstr "对于每一个资源字段,请在您的 CSV 文件中输入与资源字段对应的栏数。例如,如果在您的输入文件中与“资源标题”相对应的栏是称作“名称”的第二栏,那么您需要为“资源标题”字段输入值“2”。对于包含多个被字符分隔的值的栏,使用 If 指示分隔符,并按字段分隔。对于包含跨多栏的值的字段,使用“+添加另一个链接”以添加集。为 ISBN/ISSN 集使用该栏选项的“消除重复数据”功能可以忽略任何可能出现在这些栏中的重复值。您可以在“管理员”页面配置可将之分配给您的映射栏的“别名类型”、“注释类型”和“组织角色”。" + +#: ajax_forms/getAdminUpdateForm.php:16 ajax_forms/getDetailSubjectUpdateForm.php:16 ajax_forms/getGeneralSubjectUpdateForm.php:16 +msgid "Edit " +msgstr "编辑" + +#: ajax_forms/getAdminUpdateForm.php:16 ajax_forms/getDetailSubjectUpdateForm.php:16 ajax_forms/getGeneralSubjectUpdateForm.php:16 +msgid "Add " +msgstr "添加" + +#: ajax_forms/getAdminUpdateForm.php:31 +msgid "Show stats button?" +msgstr "显示统计数据按钮吗?" + +#: ajax_forms/getAdminUserGroupForm.php:17 +msgid "Edit User Group" +msgstr "编辑用户组" + +#: ajax_forms/getAdminUserGroupForm.php:17 +msgid "Add User Group" +msgstr "添加用户组" + +#: ajax_forms/getAdminUserGroupForm.php:26 +msgid "User Group" +msgstr "用户组" + +#: ajax_forms/getAdminUserGroupForm.php:34 +msgid "Group Name:" +msgstr "组名称:" + +#: ajax_forms/getAdminUserGroupForm.php:41 +msgid "Email Address:" +msgstr "电子邮件地址:" + +#: ajax_forms/getAdminUserGroupForm.php:58 +msgid "Assigned Users" +msgstr "分配的用户" + +#: ajax_forms/getAdminUserGroupForm.php:82 +msgid "add user" +msgstr "添加用户" + +#: ajax_forms/getAdminUserGroupForm.php:82 ajax_forms/getAdminWorkflowForm.php:155 ajax_forms/getCostForm.php:168 ajax_forms/getGeneralDetailSubjectForm.php:76 ajax_forms/getLicenseForm.php:76 ajax_forms/getNewIssueForm.php:75 ajax_forms/getResourceSubjectForm.php:26 ajax_forms/getResourceSubjectForm.php:33 ajax_forms/getUpdateProductForm.php:124 ajax_forms/getUpdateProductForm.php:153 ajax_forms/getUpdateProductForm.php:266 ajax_forms/getUpdateProductForm.php:359 +msgid "Add" +msgstr "添加" + +#: ajax_forms/getAdminUserUpdateForm.php:21 +msgid "Edit User" +msgstr "编辑用户" + +#: ajax_forms/getAdminUserUpdateForm.php:21 +msgid "Add New User" +msgstr "添加新用户" + +#: ajax_forms/getAdminUserUpdateForm.php:32 ajax_htmldata/getAdminUserDisplay.php:22 +msgid "Login ID" +msgstr "登录 ID" + +#: ajax_forms/getAdminUserUpdateForm.php:33 ajax_htmldata/getAdminUserDisplay.php:23 +msgid "First Name" +msgstr "名" + +#: ajax_forms/getAdminUserUpdateForm.php:34 ajax_htmldata/getAdminUserDisplay.php:24 +msgid "Last Name" +msgstr "姓" + +#: ajax_forms/getAdminUserUpdateForm.php:35 ajax_htmldata/getAdminAlertDisplay.php:16 ajax_htmldata/getAdminUserDisplay.php:27 ajax_htmldata/getAdminWorkflowDisplay.php:73 +msgid "Email Address" +msgstr "电子邮件地址" + +#: ajax_forms/getAdminUserUpdateForm.php:36 ajax_htmldata/getAdminUserDisplay.php:25 +msgid "Privilege" +msgstr "特权" + +#: ajax_forms/getAdminUserUpdateForm.php:54 ajax_htmldata/getAdminUserDisplay.php:26 +msgid "View Accounts" +msgstr "查看帐户" + +#: ajax_forms/getAdminWorkflowForm.php:42 +msgid "Edit Workflow" +msgstr "编辑工作流" + +#: ajax_forms/getAdminWorkflowForm.php:51 +msgid "Resource Entry Requirements" +msgstr "资源条目要求" + +#: ajax_forms/getAdminWorkflowForm.php:58 ajax_forms/getOrderForm.php:46 ajax_htmldata/getAcquisitionsDetails.php:111 summary.php:429 +msgid "Acquisition Type:" +msgstr "采访类型:" + +#: ajax_forms/getAdminWorkflowForm.php:74 ajax_forms/getUpdateProductForm.php:176 +msgid "Format:" +msgstr "格式:" + +#: ajax_forms/getAdminWorkflowForm.php:89 ajax_forms/getAttachmentForm.php:35 ajax_forms/getUpdateProductForm.php:336 ajax_htmldata/getAttachmentDetails.php:47 ajax_htmldata/getDowntimeList.php:17 +msgid "Type:" +msgstr "类型:" + +#: ajax_forms/getAdminWorkflowForm.php:114 +msgid "Workflow Steps" +msgstr "工作流步骤" + +#: ajax_forms/getAdminWorkflowForm.php:123 ajax_forms/getAttachmentForm.php:27 ajax_forms/getContactForm.php:43 ajax_forms/getImportSaveCfgForm.php:16 ajax_forms/getNewResourceForm.php:100 ajax_forms/getUpdateProductForm.php:91 +msgid "Name:" +msgstr "名称:" + +#: ajax_forms/getAdminWorkflowForm.php:124 +msgid "Approval/Notification Group:" +msgstr "批准/通知组:" + +#: ajax_forms/getAdminWorkflowForm.php:125 +msgid "Parent Step" +msgstr "父步骤" + +#: ajax_forms/getAdminWorkflowForm.php:155 +msgid "add step" +msgstr "添加步骤" + +#: ajax_forms/getAttachmentForm.php:16 +msgid "Edit Attachment" +msgstr "编辑附件" + +#: ajax_forms/getAttachmentForm.php:16 +msgid "Add Attachment" +msgstr "添加附件" + +#: ajax_forms/getAttachmentForm.php:55 +msgid "File:" +msgstr "文件:" + +#: ajax_forms/getAttachmentForm.php:61 +msgid "replace with new file" +msgstr "替换为新文件" + +#: ajax_forms/getAttachmentForm.php:76 ajax_htmldata/getAttachmentDetails.php:55 +msgid "Details:" +msgstr "详细信息:" + +#: ajax_forms/getContactForm.php:30 +msgid "Edit Contact" +msgstr "编辑联系人" + +#: ajax_forms/getContactForm.php:30 +msgid "Add Contact" +msgstr "添加联系人" + +#: ajax_forms/getContactForm.php:50 ajax_htmldata/getContactDetails.php:100 +msgid "Title:" +msgstr "称呼:" + +#: ajax_forms/getContactForm.php:57 ajax_htmldata/getContactDetails.php:133 +msgid "Phone:" +msgstr "电话:" + +#: ajax_forms/getContactForm.php:64 ajax_htmldata/getContactDetails.php:141 +msgid "Alt Phone:" +msgstr "备用电话︰" + +#: ajax_forms/getContactForm.php:71 ajax_htmldata/getContactDetails.php:149 +msgid "Fax:" +msgstr "传真:" + +#: ajax_forms/getContactForm.php:78 ajax_htmldata/getContactDetails.php:157 +msgid "Email:" +msgstr "电子邮件:" + +#: ajax_forms/getContactForm.php:85 ajax_htmldata/getContactDetails.php:108 +msgid "Address:" +msgstr "地址:" + +#: ajax_forms/getContactForm.php:92 ajax_forms/getUpdateProductForm.php:214 ajax_htmldata/getProductDetails.php:90 +msgid "Archived:" +msgstr "已存档:" + +#: ajax_forms/getContactForm.php:102 +msgid "Role(s):" +msgstr "角色:" + +#: ajax_forms/getCostForm.php:52 +msgid "Edit Cost Information" +msgstr "编辑成本信息" + +#: ajax_forms/getCostForm.php:59 ajax_htmldata/getAcquisitionsDetails.php:172 summary.php:485 +msgid "Cost History" +msgstr "成本历史记录" + +#: ajax_forms/getCostForm.php:67 ajax_htmldata/getAcquisitionsDetails.php:181 +msgid "Year" +msgstr "年" + +#: ajax_forms/getCostForm.php:68 ajax_htmldata/getAcquisitionsDetails.php:182 +msgid "Sub Start" +msgstr "订阅开始" + +#: ajax_forms/getCostForm.php:69 ajax_htmldata/getAcquisitionsDetails.php:183 +msgid "Sub End" +msgstr "订阅结束" + +#: ajax_forms/getCostForm.php:71 ajax_htmldata/getAcquisitionsDetails.php:185 index.php:90 +msgid "Fund" +msgstr "经费" + +#: ajax_forms/getCostForm.php:72 ajax_htmldata/getAcquisitionsDetails.php:186 +msgid "Payment" +msgstr "付款" + +#: ajax_forms/getCostForm.php:74 ajax_htmldata/getAcquisitionsDetails.php:190 +msgid "Type" +msgstr "类型" + +#: ajax_forms/getCostForm.php:78 ajax_forms/getImportConfigForm.php:146 ajax_forms/getImportConfigForm.php:160 ajax_forms/getImportConfigForm.php:269 +msgid "Note" +msgstr "注释" + +#: ajax_forms/getCostForm.php:80 ajax_htmldata/getAcquisitionsDetails.php:196 +msgid "Invoice" +msgstr "发票" + +#: ajax_forms/getCostForm.php:168 +msgid "add payment" +msgstr "添加付款" + +#: ajax_forms/getGeneralDetailSubjectForm.php:18 +msgid "Add / Edit Subject Relationships" +msgstr "添加/编辑主题关系" + +#: ajax_forms/getGeneralDetailSubjectForm.php:27 ajax_htmldata/getAdminSubjectDisplay.php:98 index.php:269 +msgid "General Subject" +msgstr "一般主题" + +#: ajax_forms/getGeneralDetailSubjectForm.php:53 +msgid "Detailed Subjects" +msgstr "详细主题" + +#: ajax_forms/getGeneralDetailSubjectForm.php:76 +msgid "add detail subject" +msgstr "添加详细主题" + +#: ajax_forms/getGeneralDetailSubjectForm.php:109 ajax_htmldata/getAdminSubjectDisplay.php:30 ajax_htmldata/getAdminSubjectDisplay.php:71 +msgid "subject in use" +msgstr "使用中的主题" + +#: ajax_forms/getImportConfigForm.php:43 +msgid "General Resource Fields" +msgstr "常规资源字段" + +#: ajax_forms/getImportConfigForm.php:45 +msgid "Resource Title" +msgstr "资源标题" + +#: ajax_forms/getImportConfigForm.php:46 +msgid "Description" +msgstr "说明" + +#: ajax_forms/getImportConfigForm.php:47 +msgid "Resource URL" +msgstr "资源 URL" + +#: ajax_forms/getImportConfigForm.php:48 +msgid "Alternate URL" +msgstr "备用 URL" + +#: ajax_forms/getImportConfigForm.php:52 +msgid "Alias Sets" +msgstr "别名集" + +#: ajax_forms/getImportConfigForm.php:56 ajax_forms/getImportConfigForm.php:70 ajax_forms/getImportConfigForm.php:245 +msgid "Alias" +msgstr "别名" + +#: ajax_forms/getImportConfigForm.php:66 ajax_forms/getImportConfigForm.php:76 ajax_forms/getImportConfigForm.php:126 ajax_forms/getImportConfigForm.php:131 ajax_forms/getImportConfigForm.php:156 ajax_forms/getImportConfigForm.php:166 ajax_forms/getImportConfigForm.php:245 ajax_forms/getImportConfigForm.php:263 ajax_forms/getImportConfigForm.php:269 +msgid "If delimited, delimited by" +msgstr "如果分隔,分隔符为" + +#: ajax_forms/getImportConfigForm.php:79 +msgid "+ Add another alias set" +msgstr "+ 添加另一个别名集" + +#: ajax_forms/getImportConfigForm.php:81 +msgid "Resource Parents" +msgstr "资源父级" + +#: ajax_forms/getImportConfigForm.php:85 ajax_forms/getImportConfigForm.php:89 ajax_forms/getImportConfigForm.php:251 +msgid "Parent Resource" +msgstr "父资源" + +#: ajax_forms/getImportConfigForm.php:92 +msgid "+ Add another parent resource" +msgstr "+ 添加另一个父资源" + +#: ajax_forms/getImportConfigForm.php:97 +msgid "ISBN/ISSN Sets" +msgstr "ISBN/ISSN 集" + +#: ajax_forms/getImportConfigForm.php:103 ajax_forms/getImportConfigForm.php:108 ajax_forms/getImportConfigForm.php:257 +msgid "ISBN or ISSN" +msgstr "ISBN 或 ISSN" + +#: ajax_forms/getImportConfigForm.php:104 ajax_forms/getImportConfigForm.php:109 ajax_forms/getImportConfigForm.php:257 +msgid "Dedupe on this column" +msgstr "对此栏消除重复数据" + +#: ajax_forms/getImportConfigForm.php:112 +msgid "+ Add another ISBN or ISSN set" +msgstr "+ 添加另一个 ISBN 或 ISSN 集" + +#: ajax_forms/getImportConfigForm.php:119 +msgid "Subject Sets" +msgstr "主题集" + +#: ajax_forms/getImportConfigForm.php:125 ajax_forms/getImportConfigForm.php:130 ajax_forms/getImportConfigForm.php:263 +msgid "Subject" +msgstr "主题" + +#: ajax_forms/getImportConfigForm.php:134 +msgid "+ Add another subject set" +msgstr "+ 添加另一个主题集" + +#: ajax_forms/getImportConfigForm.php:141 +msgid "Note Sets" +msgstr "注释集" + +#: ajax_forms/getImportConfigForm.php:169 +msgid "+ Add another note set" +msgstr "+ 添加另一个注释集" + +#: ajax_forms/getImportConfigForm.php:178 +msgid "Organization Sets" +msgstr "组织设置" + +#: ajax_forms/getImportConfigForm.php:182 ajax_forms/getImportConfigForm.php:194 ajax_forms/getImportConfigForm.php:275 +msgid "Organization" +msgstr "组织" + +#: ajax_forms/getImportConfigForm.php:201 +msgid "+ Add another organization set" +msgstr "+ 添加另一个组织集" + +#: ajax_forms/getImportConfigForm.php:206 +msgid "Organization Name Mapping" +msgstr "组织名称映射" + +#: ajax_forms/getImportConfigForm.php:207 +msgid "Use these mappings to normalize different variations of an organization’s name to a single value. For example, you could have a publisher with three variations of their name across your import file: PublisherHouse, PublisherH, and PH. You could create a mapping for each one and normalize them all to PublisherHouse, to prevent duplicate organizations from being created. Each column that is added to an Organization set above is checked against the complete list of mappings that you create. " +msgstr "使用这些映射可以将一个组织的不同名称规范化为一个单个值。例如,可能您的导入文件中出现了同一出版商的三个不同的名称:PublisherHouse、PublisherH 和 PH。您可以为每一个名称创建一个映射并将它们全部规范化为 PublisherHouse,以避免创建重复的组织。每一个被添加至一个“组织”集上方的栏都会与您创建的完整映射列表进行比较。" + +#: ajax_forms/getImportConfigForm.php:207 +msgid "PCRE regular expressions" +msgstr "PCRE 正则表达式" + +#: ajax_forms/getImportConfigForm.php:207 +msgid " are supported for these mappings." +msgstr "被这些映射所支持。" + +#: ajax_forms/getImportConfigForm.php:211 +msgid "Organization Name" +msgstr "组织名称" + +#: ajax_forms/getImportConfigForm.php:212 +msgid "Will Be Mapped To" +msgstr "将映射到" + +#: ajax_forms/getImportConfigForm.php:229 +msgid "+ Add another mapping" +msgstr "+ 添加另一个映射" + +#: ajax_forms/getImportSaveCfgForm.php:6 +msgid "Save Import Configuration" +msgstr "保存导入配置" + +#: ajax_forms/getImportSaveCfgForm.php:27 ajax_forms/getNewResourceForm.php:294 +msgid "save" +msgstr "保存" + +#: ajax_forms/getLicenseForm.php:50 +msgid "Edit Licenses" +msgstr "编辑授权" + +#: ajax_forms/getLicenseForm.php:60 +msgid "License Records" +msgstr "授权记录" + +#: ajax_forms/getLicenseForm.php:76 +msgid "add license" +msgstr "添加授权" + +#: ajax_forms/getLicenseForm.php:103 +msgid "remove license link" +msgstr "移除授权链接" + +#: ajax_forms/getLicenseForm.php:103 ajax_forms/getUpdateProductForm.php:306 +msgid "remove " +msgstr "移除" + +#: ajax_forms/getLicenseForm.php:103 +msgid " license" +msgstr "授权" + +#: ajax_forms/getLicenseForm.php:128 +msgid "Licensing Status" +msgstr "授权状态" + +#: ajax_forms/getLicenseForm.php:136 ajax_htmldata/getAcquisitionsDetails.php:273 ajax_htmldata/getProductDetails.php:80 summary.php:212 summary.php:516 +msgid "Status:" +msgstr "状态:" + +#: ajax_forms/getLicenseForm.php:160 +msgid "History:" +msgstr "历史记录:" + +#: ajax_forms/getLicenseForm.php:166 ajax_htmldata/getAccessDetails.php:173 ajax_htmldata/getAcquisitionsDetails.php:279 ajax_htmldata/getAcquisitionsDetails.php:373 ajax_htmldata/getProductDetails.php:99 ajax_htmldata/getProductDetails.php:101 ajax_htmldata/getProductDetails.php:124 ajax_htmldata/getProductDetails.php:126 ajax_htmldata/getProductDetails.php:148 ajax_htmldata/getProductDetails.php:150 ajax_htmldata/getProductDetails.php:422 ajax_htmldata/getRoutingDetails.php:53 ajax_htmldata/getRoutingDetails.php:55 ajax_htmldata/getRoutingDetails.php:88 ajax_htmldata/getRoutingDetails.php:90 resources/cataloging.php:223 summary.php:226 summary.php:252 summary.php:407 summary.php:522 summary.php:597 summary.php:719 summary.php:832 +msgid " by " +msgstr "由" + +#: ajax_forms/getLicenseForm.php:169 ajax_htmldata/getAcquisitionsDetails.php:282 summary.php:525 +msgid "No license status information available." +msgstr "没有可用的授权状态信息。" + +#: ajax_forms/getNewDowntimeForm.php:57 +msgid "Resource Downtime Report" +msgstr "资源停机时间报表" + +#: ajax_forms/getNewDowntimeForm.php:61 ajax_htmldata/getDowntimeList.php:20 +msgid "Downtime Start:" +msgstr "停机开始时间:" + +#: ajax_forms/getNewDowntimeForm.php:68 +msgid "Downtime Resolution:" +msgstr "停机解决方案:" + +#: ajax_forms/getNewDowntimeForm.php:75 +msgid "Problem Type:" +msgstr "问题类型:" + +#: ajax_forms/getNewDowntimeForm.php:90 +msgid "Link to open issue:" +msgstr "开放问题的链接:" + +#: ajax_forms/getNewDowntimeForm.php:106 ajax_htmldata/getDowntimeList.php:34 +msgid "Note:" +msgstr "注释:" + +#: ajax_forms/getNewDowntimeForm.php:124 +msgid "Creating downtime requires an organization or a resource to be associated with an organization." +msgstr "创建停机时间需要一个组织或与一个组织相关联的资源。" + +#: ajax_forms/getNewIssueForm.php:24 +msgid "Report New Problem" +msgstr "报告新问题" + +#: ajax_forms/getNewIssueForm.php:25 +msgid "* required fields" +msgstr "*必填字段" + +#: ajax_forms/getNewIssueForm.php:29 ajax_forms/getUpdateProductForm.php:244 ajax_htmldata/getContactDetails.php:83 +msgid "Organization:" +msgstr "组织:" + +#: ajax_forms/getNewIssueForm.php:36 +msgid "Contact:" +msgstr "联系人:" + +#: ajax_forms/getNewIssueForm.php:57 ajax_htmldata/getContactDetails.php:43 ajax_htmldata/getContactDetails.php:187 ajax_htmldata/getContactDetails.php:197 +msgid "add contact" +msgstr "添加联系人" + +#: ajax_forms/getNewIssueForm.php:65 +msgid "CC myself:" +msgstr "密送给我:" + +#: ajax_forms/getNewIssueForm.php:72 +msgid "CC:" +msgstr "密送:" + +#: ajax_forms/getNewIssueForm.php:77 +msgid "Current CCs:" +msgstr "当前密送:" + +#: ajax_forms/getNewIssueForm.php:84 ajax_htmldata/getIssuesList.php:58 +msgid "Subject:" +msgstr "主题:" + +#: ajax_forms/getNewIssueForm.php:91 ajax_htmldata/getIssuesList.php:61 +msgid "Body:" +msgstr "正文:" + +#: ajax_forms/getNewIssueForm.php:98 ajax_htmldata/getIssuesList.php:47 +msgid "Applies to:" +msgstr "应用至︰" + +#: ajax_forms/getNewIssueForm.php:102 +msgid "Applies only to" +msgstr "仅应用至" + +#: ajax_forms/getNewIssueForm.php:105 +msgid "Applies to all" +msgstr "应用至所有" + +#: ajax_forms/getNewIssueForm.php:108 +msgid "Applies to selected" +msgstr "应用至已选" + +#: ajax_forms/getNewIssueForm.php:124 +msgid "Send me a reminder every" +msgstr "发送提醒频率为每" + +#: ajax_forms/getNewIssueForm.php:127 +msgid "day(s)" +msgstr "天" + +#: ajax_forms/getNewIssueForm.php:141 +msgid "Opening an issue requires a resource to be associated with an organization." +msgstr "新建问题需要一个与一个组织相关联的资源。" + +#: ajax_forms/getNewResourceForm.php:84 +msgid "Edit Saved Resource" +msgstr "编辑已保存的资源" + +#: ajax_forms/getNewResourceForm.php:84 +msgid "Add New Resource" +msgstr "添加新的资源" + +#: ajax_forms/getNewResourceForm.php:85 +msgid "required fields" +msgstr "必填字段" + +#: ajax_forms/getNewResourceForm.php:91 ajax_forms/getUpdateProductForm.php:81 +msgid "Product" +msgstr "产品" + +#: ajax_forms/getNewResourceForm.php:105 ajax_forms/getUpdateProductForm.php:96 ajax_htmldata/getProductDetails.php:265 summary.php:355 +msgid "Description:" +msgstr "说明:" + +#: ajax_forms/getNewResourceForm.php:110 +msgid "Provider:" +msgstr "提供商︰" + +#: ajax_forms/getNewResourceForm.php:120 ajax_forms/getUpdateProductForm.php:106 ajax_htmldata/getProductDetails.php:257 summary.php:347 +msgid "Alt URL:" +msgstr "备用 URL:" + +#: ajax_forms/getNewResourceForm.php:131 +msgid "Format" +msgstr "格式" + +#: ajax_forms/getNewResourceForm.php:269 ajax_htmldata/getAcquisitionsDetails.php:194 +msgid "Notes" +msgstr "注释" + +#: ajax_forms/getNewResourceForm.php:278 +msgid "Include any additional information" +msgstr "包括任何额外的信息" + +#: ajax_forms/getNoteForm.php:18 +msgid "Edit Note" +msgstr "编辑注释" + +#: ajax_forms/getNoteForm.php:18 +msgid "Add Note" +msgstr "添加注释" + +#: ajax_forms/getNoteForm.php:28 +msgid "Note Type:" +msgstr "注释类型:" + +#: ajax_forms/getOrderForm.php:33 +msgid "Edit Acquisitions Information" +msgstr "编辑采访信息" + +#: ajax_forms/getOrderForm.php:40 ajax_htmldata/getAcquisitionsDetails.php:101 summary.php:422 +msgid "Order" +msgstr "订单" + +#: ajax_forms/getOrderForm.php:64 ajax_htmldata/getAcquisitionsDetails.php:118 summary.php:436 +msgid "Order Number:" +msgstr "订单号:" + +#: ajax_forms/getOrderForm.php:69 ajax_htmldata/getAcquisitionsDetails.php:125 summary.php:443 +msgid "System Number:" +msgstr "系统号:" + +#: ajax_forms/getOrderForm.php:74 ajax_htmldata/getAcquisitionsDetails.php:146 summary.php:466 +msgid "Sub Start:" +msgstr "订阅开始:" + +#: ajax_forms/getOrderForm.php:79 summary.php:473 +msgid "Current Sub End:" +msgstr "当前订阅结束:" + +#: ajax_forms/getOrderForm.php:89 +msgid "Enable Alert" +msgstr "启用提醒" + +#: ajax_forms/getOrderForm.php:111 +msgid "Purchasing Site(s)" +msgstr "采购站点" + +#: ajax_forms/getResourceStepForm.php:25 +msgid "Edit Resource Step" +msgstr "编辑资源步骤" + +#: ajax_forms/getResourceStepForm.php:32 +msgid "Reassign Resource Step" +msgstr "重新分配资源步骤" + +#: ajax_forms/getResourceStepForm.php:40 +msgid "Step name: " +msgstr "步骤名称:" + +#: ajax_forms/getResourceStepForm.php:42 +msgid "Group: " +msgstr "组:" + +#: ajax_forms/getResourceStepForm.php:53 +msgid "Apply to all later steps?" +msgstr "应用至后面的所有步骤?" + +#: ajax_forms/getResourceSubjectForm.php:7 +msgid "Add General / Detail Subject Link" +msgstr "添加常规/详细主题链接" + +#: ajax_forms/getResourceSubjectForm.php:14 +msgid "General Subject Name" +msgstr "一般主题名称" + +#: ajax_forms/getResourceSubjectForm.php:15 +msgid "Detail Subject Name" +msgstr "详细主题名称" + +#: ajax_forms/getResourceSubjectForm.php:26 ajax_forms/getResourceSubjectForm.php:33 +msgid "add" +msgstr "添加" + +#: ajax_forms/getResourceSubjectForm.php:44 ajax_htmldata/getAdminAlertDisplay.php:35 ajax_htmldata/getAdminAlertDisplay.php:65 ajax_htmldata/getAdminDisplay.php:35 ajax_htmldata/getAdminSubjectDisplay.php:41 ajax_htmldata/getAdminSubjectDisplay.php:81 ajax_htmldata/getAdminSubjectDisplay.php:123 ajax_htmldata/getAdminUserDisplay.php:58 ajax_htmldata/getAdminWorkflowDisplay.php:49 ajax_htmldata/getAdminWorkflowDisplay.php:100 ajax_htmldata/getGeneralSubjectDisplay.php:35 +msgid "(none found)" +msgstr "(未找到)" + +#: ajax_forms/getUpdateProductForm.php:72 +msgid "Edit Resource" +msgstr "编辑资源" + +#: ajax_forms/getUpdateProductForm.php:118 +msgid "Parents:" +msgstr "父:" + +#: ajax_forms/getUpdateProductForm.php:124 +msgid "add Parent Resource" +msgstr "添加父资源" + +#: ajax_forms/getUpdateProductForm.php:148 ajax_htmldata/getProductDetails.php:197 summary.php:292 +msgid "ISSN / ISBN:" +msgstr "ISSN / ISBN:" + +#: ajax_forms/getUpdateProductForm.php:153 +msgid "add Isbn" +msgstr "添加 ISBN:" + +#: ajax_forms/getUpdateProductForm.php:243 +msgid "Role:" +msgstr "角色:" + +#: ajax_forms/getUpdateProductForm.php:266 +msgid "add organization" +msgstr "添加组织" + +#: ajax_forms/getUpdateProductForm.php:306 +msgid "remove organization" +msgstr "移除组织" + +#: ajax_forms/getUpdateProductForm.php:306 +msgid "organization" +msgstr "组织" + +#: ajax_forms/getUpdateProductForm.php:328 +msgid "Aliases" +msgstr "别名" + +#: ajax_forms/getUpdateProductForm.php:337 +msgid "Alias:" +msgstr "别名:" + +#: ajax_forms/getUpdateProductForm.php:359 +msgid "add alias" +msgstr "添加别名" + +#: ajax_htmldata.php:27 +msgid "Data action " +msgstr "数据操作" + +#: ajax_htmldata/getAccessDetails.php:31 summary.php:611 +msgid "Access Information" +msgstr "访问信息" + +#: ajax_htmldata/getAccessDetails.php:35 ajax_htmldata/getAccessDetails.php:170 ajax_htmldata/getAccountDetails.php:44 ajax_htmldata/getAcquisitionsDetails.php:103 ajax_htmldata/getAcquisitionsDetails.php:174 ajax_htmldata/getAcquisitionsDetails.php:267 ajax_htmldata/getAcquisitionsDetails.php:370 ajax_htmldata/getAdminAlertDisplay.php:25 ajax_htmldata/getAdminAlertDisplay.php:55 ajax_htmldata/getAdminCurrencyDisplay.php:25 ajax_htmldata/getAdminDisplay.php:25 ajax_htmldata/getAdminSubjectDisplay.php:66 ajax_htmldata/getAdminSubjectDisplay.php:114 ajax_htmldata/getAdminUserDisplay.php:47 ajax_htmldata/getAdminWorkflowDisplay.php:39 ajax_htmldata/getAdminWorkflowDisplay.php:90 ajax_htmldata/getAttachmentDetails.php:35 ajax_htmldata/getContactDetails.php:68 ajax_htmldata/getGeneralSubjectDisplay.php:25 ajax_htmldata/getProductDetails.php:69 +#: ajax_htmldata/getProductDetails.php:419 ajax_htmldata/getSavedQueue.php:49 +msgid "edit" +msgstr "编辑" + +#: ajax_htmldata/getAccessDetails.php:35 ajax_htmldata/getAcquisitionsDetails.php:267 ajax_htmldata/getProductDetails.php:69 +msgid "edit resource" +msgstr "编辑资源" + +#: ajax_htmldata/getAccessDetails.php:43 summary.php:625 +msgid "Administering Sites:" +msgstr "管理站点:" + +#: ajax_htmldata/getAccessDetails.php:50 summary.php:458 +msgid "Authorized Sites:" +msgstr "授权站点:" + +#: ajax_htmldata/getAccessDetails.php:65 summary.php:639 +msgid "Username / Password:" +msgstr "用户名/密码:" + +#: ajax_htmldata/getAccessDetails.php:80 summary.php:654 +msgid "Registered IP Address:" +msgstr "注册的 IP 地址:" + +#: ajax_htmldata/getAccessDetails.php:109 +msgid "No access information available" +msgstr "无可用的访问信息" + +#: ajax_htmldata/getAccessDetails.php:116 +msgid "edit access information" +msgstr "编辑访问信息" + +#: ajax_htmldata/getAccessDetails.php:159 ajax_htmldata/getAcquisitionsDetails.php:359 ajax_htmldata/getProductDetails.php:408 resources/cataloging.php:209 +msgid "Additional Notes" +msgstr "附加注释" + +#: ajax_htmldata/getAccessDetails.php:162 ajax_htmldata/getAccessDetails.php:181 ajax_htmldata/getAcquisitionsDetails.php:362 ajax_htmldata/getAcquisitionsDetails.php:381 ajax_htmldata/getProductDetails.php:411 ajax_htmldata/getProductDetails.php:430 resources/cataloging.php:212 resources/cataloging.php:231 +msgid "add new note" +msgstr "添加新注释" + +#: ajax_htmldata/getAccessDetails.php:170 ajax_htmldata/getAcquisitionsDetails.php:370 ajax_htmldata/getProductDetails.php:419 resources/cataloging.php:220 +msgid "edit note" +msgstr "编辑注释" + +#: ajax_htmldata/getAccessDetails.php:170 ajax_htmldata/getAcquisitionsDetails.php:370 ajax_htmldata/getContactDetails.php:69 ajax_htmldata/getProductDetails.php:419 resources/cataloging.php:220 +msgid "remove note" +msgstr "移除注释" + +#: ajax_htmldata/getAccountDetails.php:14 ajax_htmldata/getContactDetails.php:35 +msgid "Resource Specific:" +msgstr "特定于资源:" + +#: ajax_htmldata/getAccountDetails.php:18 +msgid "No Resource Specific Accounts" +msgstr "无特定资源的帐户" + +#: ajax_htmldata/getAccountDetails.php:22 ajax_htmldata/getAccountDetails.php:119 +msgid "add new account" +msgstr "添加新帐户" + +#: ajax_htmldata/getAccountDetails.php:27 ajax_htmldata/getContactDetails.php:48 +msgid "Inherited:" +msgstr "已继承:" + +#: ajax_htmldata/getAccountDetails.php:44 +msgid "edit account" +msgstr "编辑帐户" + +#: ajax_htmldata/getAccountDetails.php:44 +msgid "remove account" +msgstr "移除帐户" + +#: ajax_htmldata/getAccountDetails.php:57 +msgid "Visit Account in Organizations Module" +msgstr "在组织模块中访问帐户" + +#: ajax_htmldata/getAccountDetails.php:65 +msgid "Visit Login URL" +msgstr "访问登录 URL" + +#: ajax_htmldata/getAccountDetails.php:72 +msgid "User Name:" +msgstr "用户名:" + +#: ajax_htmldata/getAccountDetails.php:88 ajax_htmldata/getContactDetails.php:173 +msgid "Last Updated:" +msgstr "最后一次更新:" + +#: ajax_htmldata/getAccountDetails.php:114 +msgid "No accounts available" +msgstr "无可用的帐户" + +#: ajax_htmldata/getAcquisitionsDetails.php:103 ajax_htmldata/getAcquisitionsDetails.php:162 resources/cataloging.php:106 +msgid "edit order information" +msgstr "编辑订单信息" + +#: ajax_htmldata/getAcquisitionsDetails.php:130 +msgid "catalog view" +msgstr "目录视图" + +#: ajax_htmldata/getAcquisitionsDetails.php:139 +msgid "Purchasing Sites:" +msgstr "采购站点:" + +#: ajax_htmldata/getAcquisitionsDetails.php:155 summary.php:475 +msgid "Expiration Alert Enabled" +msgstr "过期提醒已启用" + +#: ajax_htmldata/getAcquisitionsDetails.php:174 ajax_htmldata/getAcquisitionsDetails.php:256 +msgid "edit cost history" +msgstr "编辑成本历史记录" + +#: ajax_htmldata/getAcquisitionsDetails.php:192 +msgid "Details" +msgstr "详细信息" + +#: ajax_htmldata/getAcquisitionsDetails.php:250 +msgid "No payment information available" +msgstr "无可用的付款信息" + +#: ajax_htmldata/getAcquisitionsDetails.php:265 summary.php:511 +msgid "License" +msgstr "授权" + +#: ajax_htmldata/getAcquisitionsDetails.php:279 summary.php:522 +msgid " on " +msgstr "于" + +#: ajax_htmldata/getAcquisitionsDetails.php:292 summary.php:533 +msgid "Licenses:" +msgstr "授权:" + +#: ajax_htmldata/getAcquisitionsDetails.php:298 +msgid "View License" +msgstr "查看授权" + +#: ajax_htmldata/getAcquisitionsDetails.php:301 summary.php:542 +msgid "No associated licenses available." +msgstr "无可用的关联授权。" + +#: ajax_htmldata/getAcquisitionsDetails.php:315 +msgid "edit license and status" +msgstr "编辑授权和状态" + +#: ajax_htmldata/getAcquisitionsDetails.php:317 +msgid "edit license status" +msgstr "编辑授权状态" + +#: ajax_htmldata/getAdminAlertDisplay.php:26 ajax_htmldata/getAdminAlertDisplay.php:56 ajax_htmldata/getAdminCurrencyDisplay.php:26 ajax_htmldata/getAdminDisplay.php:26 ajax_htmldata/getAdminSubjectDisplay.php:28 ajax_htmldata/getAdminSubjectDisplay.php:69 ajax_htmldata/getAdminUserDisplay.php:48 ajax_htmldata/getAdminWorkflowDisplay.php:40 ajax_htmldata/getAdminWorkflowDisplay.php:91 ajax_htmldata/getGeneralSubjectDisplay.php:26 +msgid "remove" +msgstr "移除" + +#: ajax_htmldata/getAdminAlertDisplay.php:38 +msgid "add email address" +msgstr "添加电子邮件地址" + +#: ajax_htmldata/getAdminAlertDisplay.php:46 +msgid "Days in advance of expiration" +msgstr "到期之前天数" + +#: ajax_htmldata/getAdminAlertDisplay.php:71 +msgid "add days" +msgstr "添加天数" + +#: ajax_htmldata/getAdminCurrencyDisplay.php:38 +msgid "add new currency" +msgstr "添加新货币" + +#: ajax_htmldata/getAdminDisplay.php:16 ajax_htmldata/getAdminSubjectDisplay.php:57 ajax_htmldata/getGeneralSubjectDisplay.php:16 +msgid "Value" +msgstr "值" + +#: ajax_htmldata/getAdminDisplay.php:38 ajax_htmldata/getAdminSubjectDisplay.php:44 ajax_htmldata/getAdminSubjectDisplay.php:84 ajax_htmldata/getGeneralSubjectDisplay.php:38 +msgid "add new " +msgstr "新增" + +#: ajax_htmldata/getAdminImportConfigDisplay.php:34 +msgid "add new import configuration" +msgstr "添加新的导入配置" + +#: ajax_htmldata/getAdminSubjectDisplay.php:51 ajax_htmldata/getAdminSubjectDisplay.php:99 index.php:300 +msgid "Detailed Subject" +msgstr "详细的主题" + +#: ajax_htmldata/getAdminSubjectDisplay.php:92 +msgid "Subject Relationships" +msgstr "主题关系" + +#: ajax_htmldata/getAdminUserDisplay.php:47 +msgid "edit user" +msgstr "编辑用户" + +#: ajax_htmldata/getAdminUserDisplay.php:54 ajax_htmldata/getAdminUserDisplay.php:58 +msgid "add new user" +msgstr "添加新用户" + +#: ajax_htmldata/getAdminWorkflowDisplay.php:10 +msgid "Workflow Setup" +msgstr "工作流设置" + +#: ajax_htmldata/getAdminWorkflowDisplay.php:54 +msgid "add workflow" +msgstr "添加工作流" + +#: ajax_htmldata/getAdminWorkflowDisplay.php:56 +msgid "You must set up at least one user group before you can add workflows" +msgstr "在添加工作流之前,您必须设置至少一个用户组" + +#: ajax_htmldata/getAdminWorkflowDisplay.php:66 +msgid "User Group Setup" +msgstr "用户组设置" + +#: ajax_htmldata/getAdminWorkflowDisplay.php:72 +msgid "Group Name" +msgstr "组名称" + +#: ajax_htmldata/getAdminWorkflowDisplay.php:104 +msgid "add user group" +msgstr "添加用户组" + +#: ajax_htmldata/getAttachmentDetails.php:30 +msgid "view attachment" +msgstr "查看附件" + +#: ajax_htmldata/getAttachmentDetails.php:35 +msgid "edit attachment" +msgstr "编辑附件" + +#: ajax_htmldata/getAttachmentDetails.php:35 +msgid "remove this attachment" +msgstr "移除该附件" + +#: ajax_htmldata/getAttachmentDetails.php:67 +msgid "No attachments available" +msgstr "无可用的附件" + +#: ajax_htmldata/getAttachmentDetails.php:72 +msgid "add new attachment" +msgstr "添加新附件" + +#: ajax_htmldata/getContactDetails.php:23 +msgid "The following are archived contacts:" +msgstr "如下是被存档的联系人:" + +#: ajax_htmldata/getContactDetails.php:39 +msgid "No Resource Specific Contacts" +msgstr "无特定资源的联系人" + +#: ajax_htmldata/getContactDetails.php:68 +msgid "edit contact" +msgstr "编辑联系人" + +#: ajax_htmldata/getContactDetails.php:69 +msgid "remove contact" +msgstr "移除联系人" + +#: ajax_htmldata/getContactDetails.php:84 +msgid "Visit Contact in Organizations Module" +msgstr "在组织模块中访问联系人" + +#: ajax_htmldata/getContactDetails.php:92 +msgid "No longer valid:" +msgstr "不再有效:" + +#: ajax_htmldata/getContactDetails.php:116 +msgid "Location:" +msgstr "位置:" + +#: ajax_htmldata/getContactDetails.php:195 +msgid "No contacts available" +msgstr "无可用的联系人" + +#: ajax_htmldata/getContactDetails.php:205 +msgid " archived contact(s) available." +msgstr "可用的已存档联系人。" + +#: ajax_htmldata/getContactDetails.php:205 +msgid "show archived contacts" +msgstr "显示已存档联系人" + +#: ajax_htmldata/getContactDetails.php:209 +msgid "hide archived contacts" +msgstr "隐藏已存档联系人" + +#: ajax_htmldata/getDowntimeList.php:23 +msgid "Downtime Resolved:" +msgstr "停机时间已解决:" + +#: ajax_htmldata/getDowntimeList.php:28 +msgid "Linked issue:" +msgstr "链接的问题:" + +#: ajax_htmldata/getDowntimeList.php:49 ajax_htmldata/getIssuesList.php:72 +msgid "Organizational" +msgstr "组织" + +#: ajax_htmldata/getDowntimeList.php:63 +msgid "There are no organization level downtimes." +msgstr "没有组织层级的停机时间。" + +#: ajax_htmldata/getDowntimeList.php:74 ajax_htmldata/getIssuesList.php:97 templates/header.php:96 +msgid "Resources" +msgstr "资源" + +#: ajax_htmldata/getDowntimeList.php:86 +msgid "There are no resource level downtimes." +msgstr "没有资源层级的停机时间。" + +#: ajax_htmldata/getIssues.php:17 +msgid "Issues/Problems" +msgstr "问题" + +#: ajax_htmldata/getIssues.php:20 +msgid "report new issue" +msgstr "报告新问题" + +#: ajax_htmldata/getIssues.php:24 +msgid "view open issues" +msgstr "查看开放的问题" + +#: ajax_htmldata/getIssues.php:31 +msgid "view archived issues" +msgstr "查看存档的问题" + +#: ajax_htmldata/getIssues.php:40 +msgid "Downtime" +msgstr "停机时间" + +#: ajax_htmldata/getIssues.php:43 +msgid "report new Downtime" +msgstr "报告新的停机时间" + +#: ajax_htmldata/getIssues.php:47 +msgid "view current/upcoming downtime" +msgstr "查看当前和即将的停机时间" + +#: ajax_htmldata/getIssues.php:54 +msgid "view archived downtime" +msgstr "查看已存档的停机时间" + +#: ajax_htmldata/getIssuesList.php:15 +msgid "close" +msgstr "关闭" + +#: ajax_htmldata/getIssuesList.php:17 ajax_htmldata/getIssuesList.php:19 +msgid "downtime" +msgstr "停机时间" + +#: ajax_htmldata/getIssuesList.php:24 +msgid "Date reported:" +msgstr "报告日期:" + +#: ajax_htmldata/getIssuesList.php:28 +msgid "Date closed:" +msgstr "关闭日期:" + +#: ajax_htmldata/getIssuesList.php:34 +msgid "Contact(s):" +msgstr "联系人:" + +#: ajax_htmldata/getIssuesList.php:86 +msgid "There are no organization level issues." +msgstr "没有组织层级的问题。" + +#: ajax_htmldata/getIssuesList.php:109 +msgid "There are no resource level issues." +msgstr "没有资源层级的问题。" + +#: ajax_htmldata/getOutstandingQueue.php:7 queue.php:51 +msgid "Outstanding Tasks" +msgstr "未完成的任务" + +#: ajax_htmldata/getOutstandingQueue.php:12 +msgid "No outstanding requests" +msgstr "没有未完成的请求" + +#: ajax_htmldata/getOutstandingQueue.php:19 ajax_htmldata/getSavedQueue.php:17 ajax_htmldata/getSearchResources.php:114 ajax_htmldata/getSubmittedQueue.php:14 +msgid "ID" +msgstr "ID" + +#: ajax_htmldata/getOutstandingQueue.php:22 index.php:571 +msgid "Routing Step" +msgstr "传递步骤" + +#: ajax_htmldata/getOutstandingQueue.php:23 ajax_htmldata/getRoutingDetails.php:24 +msgid "Start Date" +msgstr "开始日期" + +#: ajax_htmldata/getProductDetails.php:69 +msgid "remove resource" +msgstr "移除资源" + +#: ajax_htmldata/getProductDetails.php:69 +msgid "remove resource and its children" +msgstr "移除资源及其子资源" + +#: ajax_htmldata/getProductDetails.php:75 summary.php:206 +msgid "Record ID:" +msgstr "记录 ID:" + +#: ajax_htmldata/getProductDetails.php:115 summary.php:218 +msgid "Created:" +msgstr "创建于:" + +#: ajax_htmldata/getProductDetails.php:140 summary.php:244 +msgid "Last Update:" +msgstr "最后更新:" + +#: ajax_htmldata/getProductDetails.php:165 summary.php:269 +msgid "Related Products:" +msgstr "相关产品:" + +#: ajax_htmldata/getProductDetails.php:173 ajax_htmldata/getProductDetails.php:181 +msgid "view resource" +msgstr "查看资源" + +#: ajax_htmldata/getProductDetails.php:173 ajax_htmldata/getProductDetails.php:181 ajax_htmldata/getProductDetails.php:235 +msgid "View " +msgstr "查看" + +#: ajax_htmldata/getProductDetails.php:211 summary.php:301 +msgid "Aliases:" +msgstr "别名:" + +#: ajax_htmldata/getProductDetails.php:228 summary.php:318 +msgid "Organizations:" +msgstr "组织:" + +#: ajax_htmldata/getProductDetails.php:249 summary.php:339 +msgid "Resource URL:" +msgstr "资源 URL:" + +#: ajax_htmldata/getProductDetails.php:250 +msgid "Visit Resource URL" +msgstr "访问资源 URL" + +#: ajax_htmldata/getProductDetails.php:258 +msgid "Visit Secondary Resource URL" +msgstr "访问次级资源 URL" + +#: ajax_htmldata/getProductDetails.php:273 +msgid "edit product details" +msgstr "编辑产品详细信息" + +#: ajax_htmldata/getProductDetails.php:340 +msgid "remove subject" +msgstr "移除主题" + +#: ajax_htmldata/getProductDetails.php:361 +msgid "add new subject" +msgstr "添加新主题" + +#: ajax_htmldata/getRightPanel.php:40 +msgid "Print View" +msgstr "打印视图" + +#: ajax_htmldata/getRightPanel.php:42 +msgid "Catalog View" +msgstr "目录视图" + +#: ajax_htmldata/getRightPanel.php:50 +msgid "Parent Record(s)" +msgstr "父记录" + +#: ajax_htmldata/getRightPanel.php:58 +msgid "Child Record(s)" +msgstr "子记录" + +#: ajax_htmldata/getRightPanel.php:77 +msgid "Organizations Module" +msgstr "组织模块" + +#: ajax_htmldata/getRightPanel.php:93 +msgid "Licensing Module" +msgstr "授权模块" + +#: ajax_htmldata/getRightPanel.php:111 +msgid "Usage Statistics Module" +msgstr "使用统计模块" + +#: ajax_htmldata/getRightPanel.php:117 +msgid "Get Statistics" +msgstr "获取统计信息" + +#: ajax_htmldata/getRoutingDetails.php:13 +msgid "No workflow steps have been set up for this resource's combination of Acquisition Type and Resource Format." +msgstr "尚未为该资源的“采访类型”和“资源格式”组合设置工作流步骤。" + +#: ajax_htmldata/getRoutingDetails.php:13 +msgid "If you think this is in error, please contact your workflow administrator." +msgstr "如果您认为这是一个错误,则请联系您的工作流管理员。" + +#: ajax_htmldata/getRoutingDetails.php:15 +msgid "Not entered into workflow." +msgstr "未进入工作流。" + +#: ajax_htmldata/getRoutingDetails.php:21 +msgid "Step" +msgstr "设置" + +#: ajax_htmldata/getRoutingDetails.php:23 +msgid "Group" +msgstr "组" + +#: ajax_htmldata/getRoutingDetails.php:25 +msgid "Complete" +msgstr "完成" + +#: ajax_htmldata/getRoutingDetails.php:26 +msgid "Delete" +msgstr "删除" + +#: ajax_htmldata/getRoutingDetails.php:60 +msgid "mark complete" +msgstr "标记为已完成" + +#: ajax_htmldata/getRoutingDetails.php:88 ajax_htmldata/getRoutingDetails.php:90 +msgid "Workflow completed on " +msgstr "工作流完成于" + +#: ajax_htmldata/getRoutingDetails.php:94 ajax_htmldata/getRoutingDetails.php:96 +msgid "Workflow restarted on " +msgstr "工作流重启于" + +#: ajax_htmldata/getRoutingDetails.php:106 +msgid "restart workflow" +msgstr "重启工作流" + +#: ajax_htmldata/getRoutingDetails.php:107 +msgid "mark entire workflow complete" +msgstr "将整个工作流标记为完成" + +#: ajax_htmldata/getSavedQueue.php:6 queue.php:52 +msgid "Saved Requests" +msgstr "已保存的请求" + +#: ajax_htmldata/getSavedQueue.php:11 +msgid "No saved requests" +msgstr "无已保存的请求" + +#: ajax_htmldata/getSavedQueue.php:19 ajax_htmldata/getSearchResources.php:117 ajax_htmldata/getSubmittedQueue.php:16 +msgid "Date Created" +msgstr "创建日期" + +#: ajax_htmldata/getSavedQueue.php:21 ajax_htmldata/getSearchResources.php:119 ajax_htmldata/getSubmittedQueue.php:18 index.php:141 +msgid "Status" +msgstr "状态" + +#: ajax_htmldata/getSavedQueue.php:49 +msgid "edit request" +msgstr "编辑请求" + +#: ajax_htmldata/getSavedQueue.php:50 +msgid "remove request" +msgstr "移除请求" + +#: ajax_htmldata/getSearchResources.php:38 +msgid "Sorry, no requests fit your query" +msgstr "抱歉,没有符合您的查询的请求" + +#: ajax_htmldata/getSearchResources.php:53 +#, php-format +msgid "Displaying %d to %d of %d Resource Record" +msgid_plural "Displaying %d to %d of %d Resource Records" +msgstr[0] "显示第 %d 到第 %d 条记录,共 %d 条资源记录" + +#: ajax_htmldata/getSearchResources.php:66 ajax_htmldata/getSearchResources.php:163 +msgid "previous page" +msgstr "上一页" + +#: ajax_htmldata/getSearchResources.php:100 ajax_htmldata/getSearchResources.php:197 +msgid "next page" +msgstr "下一页" + +#: ajax_htmldata/getSearchResources.php:116 index.php:172 +msgid "Creator" +msgstr "著者" + +#: ajax_htmldata/getSearchResources.php:214 +msgid "records per page" +msgstr "记录/页" + +#: ajax_htmldata/getSubmittedQueue.php:5 queue.php:53 +msgid "Submitted Requests" +msgstr "提交的请求" + +#: ajax_htmldata/getSubmittedQueue.php:8 +msgid "No submitted requests" +msgstr "无提交的请求" + +#: ajax_processing.php:27 +msgid "Processing action " +msgstr "处理操作" + +#: ajax_processing/deleteDetailedSubject.php:12 ajax_processing/deleteGeneralSubject.php:12 ajax_processing/deleteInstance.php:18 +msgid "Unable to delete. Please make sure no resources are set up with this information." +msgstr "无法删除。请确保没有使用该信息设置的资源。" + +#: ajax_processing/deleteImportConfig.php:7 +msgid "Import configuration successfully deleted." +msgstr "已成功删除导入配置。" + +#: ajax_processing/deleteInstance.php:12 +msgid "Unable to delete - this " +msgstr "无法删除 - 该" + +#: ajax_processing/deleteInstance.php:12 +msgid " is in use. Please make sure no resources are set up with this information." +msgstr "正在使用中。请确保没有使用该信息设置的资源。" + +#: ajax_processing/deleteResource.php:7 ajax_processing/deleteResourceAndChildren.php:8 +msgid "Resource successfully deleted." +msgstr "已成功删除资源。" + +#: ajax_processing/deleteResourceNote.php:7 +msgid "Note successfully deleted." +msgstr "已成功删除注释。" + +#: ajax_processing/removeResourceSubjectRelationship.php:10 +msgid "Subject successfully removed." +msgstr "已成功移除主题。" + +#: ajax_processing/updateDetailedSubject.php:22 ajax_processing/updateGeneralSubject.php:21 +msgid "A duplicate " +msgstr "一个重复的" + +#: ajax_processing/updateDetailedSubject.php:22 ajax_processing/updateGeneralSubject.php:21 +msgid " exists." +msgstr "存在。" + +#: ajax_processing/updateUserData.php:26 +msgid "User successfully saved." +msgstr "已成功保存用户。" + +#: ajax_processing/uploadAttachment.php:29 +msgid "There was a problem saving your file to " +msgstr "保存您的文件时出错" + +#: ajax_processing/uploadAttachment.php:29 +msgid ". Please ensure your attachments directory is writable." +msgstr "。请确保您的附件目录可写。" + +#: import.php:15 +msgid "Resources import" +msgstr "资源导入" + +#: import.php:18 +msgid "Delimited File Import" +msgstr "分隔的文件导入" + +#: import.php:38 importFunds.php:21 +msgid "The file has been successfully uploaded." +msgstr "已成功上传该文件。" + +#: import.php:52 importFunds.php:31 +msgid "Unable to get columns headers from the file" +msgstr "无法从文件获得栏标题" + +#: import.php:58 importFunds.php:34 +msgid "Unable to open the uploaded file" +msgstr "无法打开已上传的文件" + +#: import.php:63 +msgid "Unable to upload the file" +msgstr "无法上传文件" + +#: import.php:67 importFunds.php:37 +msgid "Error: " +msgstr "错误:" + +#: import.php:71 +msgid "If you have not previously created an Import Configuration, then for each of the resource fields please input the number of the column in your CSV file that corresponds to the resource field. For example, if your import file has a second column called Name that corresponds to the Resource Title, then you would input 2 for the value for the Resource Title field. For columns with multiple values that are character-delimited, indicate the delimiter using the If delimited, delimited by field. For fields with values across multiple columns, add additional sets using the +Add another links. Use the Dedupe on this column option for ISBN/ISSN sets to ignore any duplicate values that might occur across those columns. The Alias Types, Note Types, and Organization Roles that you can assign to your mapped columns can be configured on the Admin page." +msgstr "如果您之前尚未创建一个“导入配置”,那么对于每一个资源字段,请在您的 CSV 文件中输入与资源字段对应的栏数。例如,如果在您的输入文件中与“资源标题”相对应的栏是称作“名称”的第二栏,那么您需要为“资源标题”字段输入值“2”。对于包含多个被字符分隔的值的栏,使用 If 指示分隔符,并按字段分隔。对于包含跨多栏的值的字段,使用“+添加另一个链接”以添加集。为 ISBN/ISSN 集使用该栏选项的“消除重复数据”功能可以忽略任何可能出现在这些栏中的重复值。您可以在“管理员”页面配置可将之分配给您的映射栏的“别名类型”、“注释类型”和“组织角色”。" + +#: import.php:72 +msgid "Please select the import configuration to load: " +msgstr "请选择要上传的导入配置:" + +#: import.php:73 +msgid "Select Configuration" +msgstr "选择配置" + +#: import.php:80 +msgid "Please choose columns from your CSV file:" +msgstr "请从您的 CSV 文件选择栏:" + +#: import.php:259 +msgid "Settings" +msgstr "设置" + +#: import.php:260 +msgid "Importing and deduping isbnOrISSN on the following columns: " +msgstr "在下列栏中导入和消除重复数据 isbnOrISSN:" + +#: import.php:509 +msgid "Organization " +msgstr "组织" + +#: import.php:509 +msgid " could not be added." +msgstr "无法被添加。" + +#: import.php:522 import.php:546 +msgid "Error: more than one organization is called " +msgstr "错误:多于一个组织被称为" + +#: import.php:522 +msgid ". Please consider deduping." +msgstr "。请考虑消除重复数据。" + +#: import.php:546 +msgid " Please consider deduping." +msgstr "请考虑消除重复数据。" + +#: import.php:612 importFunds.php:52 +msgid "Results" +msgstr "结果" + +#: import.php:613 +msgid " rows have been processed. " +msgstr "行已被处理。" + +#: import.php:613 +msgid " rows have been inserted." +msgstr "行已被插入。" + +#: import.php:614 +msgid " parents have been created. " +msgstr "父级已被创建。" + +#: import.php:614 +msgid " resources have been attached to an existing parent." +msgstr "个资源已被附加到一个现有父级。" + +#: import.php:615 +msgid " organizations have been created" +msgstr "个组织已被创建" + +#: import.php:625 +msgid " resources have been attached to an existing organization." +msgstr "个资源已被附加到一个现有组织。" + +#: import.php:626 +msgid " resource types have been created" +msgstr "个资源类型已被创建" + +#: import.php:627 +msgid " resource formats have been created" +msgstr "个资源格式已被创建" + +#: import.php:628 +msgid " general subjects have been created" +msgstr "个一般主题已被创建" + +#: import.php:629 +msgid " aliases have been created" +msgstr "个别名已被创建" + +#: import.php:630 +msgid " notes have been created" +msgstr "个注释已被创建" + +#: import.php:636 +msgid "The first line of the CSV file must contain column names, and not data. These names will be used during the import process." +msgstr "CSV 文件的第一行必须包含栏名称而不是数据。这些名称将导入过程中使用。" + +#: import.php:639 +msgid "File selection" +msgstr "文件选择" + +#: import.php:640 +msgid "CSV File" +msgstr "CSV 文件" + +#: import.php:644 +msgid "Import options" +msgstr "导入选项" + +#: import.php:645 +msgid "CSV delimiter" +msgstr "CSV 分隔符" + +#: import.php:647 +msgid "(comma)" +msgstr "(逗号)" + +#: import.php:648 +msgid "(semicolon)" +msgstr "(分号)" + +#: import.php:649 +msgid "(pipe)" +msgstr "(管道符号)" + +#: import.php:652 +msgid "Upload" +msgstr "上传" + +#: importFunds.php:53 +msgid "rows have been processed." +msgstr "行已被处理。" + +#: importFunds.php:63 +msgid "import" +msgstr "导入" + +#: index.php:26 templates/header.php:168 +msgid "Home" +msgstr "主页" + +#: index.php:58 +msgid "Search" +msgstr "检索" + +#: index.php:59 +msgid "new search" +msgstr "新的检索" + +#: index.php:68 +msgid "Name (contains)" +msgstr "名称(包含)" + +#: index.php:72 index.php:83 index.php:264 index.php:396 index.php:413 +msgid "go!" +msgstr "检索!" + +#: index.php:79 +msgid "ISBN/ISSN" +msgstr "ISBN/ISSN" + +#: index.php:96 index.php:98 index.php:236 index.php:238 index.php:277 index.php:279 index.php:308 index.php:310 index.php:369 index.php:371 index.php:427 index.php:429 index.php:459 index.php:461 index.php:491 index.php:493 index.php:521 index.php:523 index.php:550 index.php:552 +msgid "(none)" +msgstr "(无)" + +#: index.php:121 index.php:144 index.php:175 index.php:207 index.php:231 index.php:272 index.php:303 index.php:365 index.php:423 index.php:455 index.php:487 index.php:517 index.php:547 index.php:574 index.php:595 +msgid "All" +msgstr "所有" + +#: index.php:260 +msgid "Record ID" +msgstr "记录 ID" + +#: index.php:331 +msgid "Starts with" +msgstr "开始字母" + +#: index.php:392 +msgid "Note (contains)" +msgstr "注释(包含)" + +#: index.php:404 +msgid "Date Created Between" +msgstr "创建日期介于" + +#: index.php:406 +msgid "and" +msgstr "和" + +#: index.php:420 +msgid "Purchase Site" +msgstr "购买站点" + +#: index.php:596 +msgid "Parent" +msgstr "父级" + +#: index.php:597 +msgid "Child" +msgstr "子级" + +#: queue.php:22 queue.php:40 templates/header.php:183 +msgid "My Queue" +msgstr "我的队列" + +#: resource.php:54 +msgid "Success!" +msgstr "成功!" + +#: resource.php:54 +msgid "New resource added" +msgstr "添加的新资源" + +#: resource.php:241 +msgid "Helpful Links" +msgstr "有用的链接" + +#: resource.php:251 +msgid "Send feedback on this resource" +msgstr "发送该资源的反馈" + +#: resources/cataloging.php:103 summary.php:730 +msgid "Cataloging" +msgstr "编目" + +#: resources/cataloging.php:114 summary.php:736 +msgid "Identifier:" +msgstr "标识符:" + +#: resources/cataloging.php:120 +msgid "Source URL:" +msgstr "源 URL:" + +#: resources/cataloging.php:121 +msgid "Visit Source URL" +msgstr "访问源 URL" + +#: resources/cataloging.php:128 summary.php:750 +msgid "Cataloging Type:" +msgstr "编目类型:" + +#: resources/cataloging.php:136 summary.php:758 +msgid "Cataloging Status:" +msgstr "编目状态:" + +#: resources/cataloging.php:141 +msgid "Number of Records Available" +msgstr "可用的记录数目" + +#: resources/cataloging.php:142 summary.php:764 +msgid "# Records Available:" +msgstr "# 条记录可用:" + +#: resources/cataloging.php:147 +msgid "Number of Records Loaded" +msgstr "上传记录数目" + +#: resources/cataloging.php:148 summary.php:770 +msgid "# Records Loaded:" +msgstr "# 条记录已上传:" + +#: resources/cataloging.php:153 summary.php:776 +msgid "OCLC Holdings:" +msgstr "OCLC 馆藏:" + +#: resources/cataloging.php:154 summary.php:777 +msgid "Yes" +msgstr "是" + +#: resources/cataloging.php:154 summary.php:777 +msgid "No" +msgstr "否" + +#: resources/cataloging.php:159 summary.php:783 +msgid "No cataloging information available." +msgstr "无可用的编目信息。" + +#: resources/cataloging.php:165 +msgid "edit cataloging details" +msgstr "编辑编目详细信息" + +#: resources/cataloging_edit.php:15 +msgid "Edit Cataloging" +msgstr "编辑编目" + +#: resources/cataloging_edit.php:24 +msgid "Record Set" +msgstr "记录集" + +#: resources/cataloging_edit.php:36 +msgid "Identifier" +msgstr "标识符" + +#: resources/cataloging_edit.php:42 +msgid "Source URL" +msgstr "源 URL" + +#: resources/cataloging_edit.php:68 +msgid "# Records Available" +msgstr "# 条记录可用" + +#: resources/cataloging_edit.php:75 +msgid "# Records Loaded" +msgstr "# 条记录已上传" + +#: resources/cataloging_edit.php:82 +msgid "OCLC Holdings" +msgstr "OCLC 馆藏" + +#: sendAlerts.php:74 +msgid "No Resources found fitting alert day criteria" +msgstr "未找到符合提醒日期标准的资源" + +#: sendAlerts.php:96 +msgid "No Issues found fitting alert day criteria" +msgstr "未找到符合提醒日期标准的问题" + +#: sendAlerts.php:99 +msgid "Alerts not enabled in configuration.ini file" +msgstr "未在 configuration.ini 文件中启用提醒" + +#: setuser.php:44 +msgid "LDAP Connection is not working or has timed out. Please check configuration.ini to verify settings." +msgstr "LDAP 连接不工作或已超时。请检查 configuration.ini 以验证设置。" + +#: summary.php:34 +msgid " Summary" +msgstr "摘要" + +#: summary.php:275 +msgid "(Parent)" +msgstr "(父)" + +#: summary.php:402 +msgid "Additional Product Notes" +msgstr "附加产品注释" + +#: summary.php:451 +msgid "Purchasing Site:" +msgstr "采购站点:" + +#: summary.php:501 +msgid "No payment information available." +msgstr "无可用的付款信息。" + +#: summary.php:589 +msgid "Additional Acquisitions Notes" +msgstr "附加采访注释" + +#: summary.php:619 +msgid "No access information available." +msgstr "无可用的访问信息。" + +#: summary.php:714 +msgid "Additional Access Notes" +msgstr "附加访问注释" + +#: summary.php:827 +msgid "Additional Cataloging Notes" +msgstr "附加编目注释" + +#: templates/header.php:76 +msgid "JavaScript must be enabled in order for you to use CORAL. However, it seems JavaScript is either disabled or not supported by your browser. To use CORAL, enable JavaScript by changing your browser options, then " +msgstr "必须启用 JavaScript 才能使用 CORAL。但是,或者您已禁用 JavaScript,或者您的浏览器不支持。若要使用 CORAL,则请更改您的浏览器选项以启用 JavaScript,并" + +#: templates/header.php:76 +msgid "try again" +msgstr "重试" + +#: templates/header.php:97 +msgid "Powered by" +msgstr "技术支持提供方" + +#: templates/header.php:103 +msgid "Hello" +msgstr "你好" + +#: templates/header.php:113 +msgid "logout" +msgstr "退出" + +#: templates/header.php:113 +msgid "Help" +msgstr "帮助" + +#: templates/header.php:131 +msgid "Invalid translation route!" +msgstr "无效的翻译路线!" + +#: templates/header.php:176 +msgid "New Resource" +msgstr "新资源" + +#: templates/header.php:190 +msgid "File Import" +msgstr "文件导入" + +#: templates/header.php:198 +msgid "Admin" +msgstr "管理员" + +#: templates/header.php:217 +msgid "Change Module" +msgstr "更改模块" + +#: templates/header.php:220 +msgid "Main Menu" +msgstr "主菜单" + +#: templates/header.php:230 +msgid "Licensing" +msgstr "授权许可" + +#: templates/header.php:235 +msgid "Usage Statistics" +msgstr "使用统计信息" + +#: templates/header.php:240 +msgid "Management" +msgstr "管理" + +#: user.php:102 +msgid "Login is not working. Check the .htaccess file and the remoteAuthVariableName specified in /admin/configuration.ini" +msgstr "登录不工作。请检查 /admin/configuration.ini 中指定的 .htaccess 文件和 remoteAuthVariableName" diff --git a/resources/locale/zh_TW/LC_MESSAGES/messages.mo b/resources/locale/zh_TW/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..55621b82b16af76693f1f2230b0ecff5b38a483b GIT binary patch literal 43770 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 literal 0 HcmV?d00001 diff --git a/resources/locale/zh_TW/LC_MESSAGES/messages.po b/resources/locale/zh_TW/LC_MESSAGES/messages.po new file mode 100644 index 000000000..0d4d54bce --- /dev/null +++ b/resources/locale/zh_TW/LC_MESSAGES/messages.po @@ -0,0 +1,2822 @@ +msgid "" +msgstr "" +"Project-Id-Version: messages\n" +"POT-Creation-Date: 2016-06-16 16:02-06:00\n" +"PO-Revision-Date: 2016-08-24 10:26-0600\n" +"Last-Translator: <>\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Basepath: ../../..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Generator: Poedit 1.8.8\n" +"X-Poedit-SearchPath-0: .\n" + +#: js/admin.js:492 +msgid "Number of days must be a number" +msgstr "天數必須是一個數位" + +#: js/admin.js:495 +msgid "Number of days should be between 1 and 365" +msgstr "天數應介於 1 和 365 之間" + +#: js/admin.js:515 +msgid "Do you really want to delete this data?" +msgstr "您確認要刪除這筆資料嗎?" + +#: js/admin.js:542 js/admin.js:570 js/admin.js:598 js/admin.js:681 +msgid "Do you really want to remove this data?" +msgstr "您確認要移除這筆資料嗎?" + +#: js/admin.js:626 +msgid "Do you really want to delete this user?" +msgstr "您確認要刪除該使用者嗎?" + +#: js/admin.js:653 +msgid "Do you really want to remove this alert setting?" +msgstr "您確認要移除此提醒設定嗎?" + +#: js/admin.js:709 +msgid "Do you really want to delete this currency?" +msgstr "您確認要刪除此種貨幣嗎?" + +#: js/common.js:73 +msgid "No match!" +msgstr "沒有匹配!" + +#: js/common.js:73 +msgid "Selected: " +msgstr "已選:" + +#: js/forms/acquisitionsForm.js:123 js/forms/costForm.js:285 +msgid "Error - Either amount or fund is required" +msgstr "錯誤 - 金額或經費之一為必填" + +#: js/forms/acquisitionsForm.js:126 js/forms/costForm.js:290 +msgid "Error - order type is a required field" +msgstr "錯誤 - 訂單類型是必備欄位" + +#: js/forms/acquisitionsForm.js:129 js/forms/costForm.js:295 +msgid "Error - price is not numeric" +msgstr "錯誤 - 價格不是數位" + +#: js/forms/acquisitionsForm.js:147 js/forms/acquisitionsForm.js:148 +#: js/forms/costForm.js:125 +msgid "remove this payment" +msgstr "移除該付款" + +#: js/forms/acquisitionsForm.js:232 +msgid "Error - acquisition type is a required field" +msgstr "錯誤 - 採訪類型是必備欄位" + +#: js/forms/attachmentForm.js:94 +msgid "File name is already being used..." +msgstr "文檔名稱已被使用..." + +#: js/forms/attachmentForm.js:98 +msgid "File name may not contain special characters - ampersand, single quote, double quote or less than/greater than characters" +msgstr "檔案名稱不能包括特殊字元——&、單引號、雙引號或大於號、小於號等字元。" + +#: js/forms/attachmentForm.js:102 +msgid "The attachments directory is not writable." +msgstr "該附件目錄不可寫。" + +#: js/forms/attachmentForm.js:124 js/forms/attachmentForm.js:146 +msgid " successfully uploaded." +msgstr "成功上載。" + +#: js/forms/attachmentForm.js:159 js/forms/resourceUpdateForm.js:378 +msgid "Name must be entered to continue." +msgstr "必須輸入名稱才能繼續。" + +#: js/forms/attachmentForm.js:160 +msgid "Attachment Type must be selected to continue." +msgstr "必須選擇附件類型才能繼續。" + +#: js/forms/attachmentForm.js:178 +msgid "A file must be uploaded" +msgstr "必須上載一個檔" + +#: js/forms/contactForm.js:179 +msgid "Please choose at least one role." +msgstr "請至少選擇一個角色。" + +#: js/forms/costForm.js:260 +msgid "Validation Failed" +msgstr "驗證失敗" + +#: js/forms/detailedSubjectForm.js:60 js/forms/generalSubjectForm.js:59 +msgid "Error - Please enter a value" +msgstr "錯誤 - 請輸入一個值" + +#: js/forms/generalDetailSubjectForm.js:87 +msgid "Error - Detailed Subject is required" +msgstr "錯誤 - 詳細的主題是必需的" + +#: js/forms/generalDetailSubjectForm.js:108 +#: js/forms/generalDetailSubjectForm.js:109 +msgid "Error - Detail Subject Already Added" +msgstr "錯誤 - 已添加詳細的主題" + +#: js/forms/generalDetailSubjectForm.js:133 +#: ajax_forms/getGeneralDetailSubjectForm.php:107 +msgid "remove detailed subject" +msgstr "移除詳細的主題" + +#: js/forms/generalDetailSubjectForm.js:175 +msgid "Short Name must be entered to continue." +msgstr "必須輸入短名稱才能繼續。" + +#: js/forms/licenseForm.js:140 js/forms/licenseForm.js:251 +msgid "Error - Please choose a valid license" +msgstr "錯誤 - 請選擇一個有效授權" + +#: js/forms/licenseForm.js:153 +msgid "remove this license" +msgstr "移除該授權" + +#: js/forms/resourceNewForm.js:99 +msgid "Warning: this name already exists." +msgstr "警告:此名稱已存在。" + +#: js/forms/resourceNewForm.js:227 +msgid "A title must be entered to continue." +msgstr "必須輸入一個題名才能繼續。" + +#: js/forms/resourceNewForm.js:232 +msgid "The resource format is required." +msgstr "資源格式為必填。" + +#: js/forms/resourceNewForm.js:237 +msgid "The resource type is required." +msgstr "資源類型為必填。" + +#: js/forms/resourceNoteForm.js:34 +msgid "Note must be entered to continue." +msgstr "必須輸入備註才能繼續。" + +#: js/forms/resourceUpdateForm.js:90 +msgid "Error - Parent cannot be the same as the child" +msgstr "錯誤 - 父級不能與子級相同" + +#: js/forms/resourceUpdateForm.js:223 js/forms/resourceUpdateForm.js:307 +#: js/forms/resourceUpdateForm.js:392 js/forms/resourceUpdateForm.js:403 +msgid "Error - Both fields are required" +msgstr "錯誤 - 兩個欄位都是必填" + +#: js/forms/resourceUpdateForm.js:236 ajax_forms/getUpdateProductForm.php:400 +msgid "remove this alias" +msgstr "移除該別名" + +#: js/forms/resourceUpdateForm.js:263 ajax_forms/getUpdateProductForm.php:164 +msgid "remove Issn/Isbn" +msgstr "移除 LSSN/ISBN" + +#: js/forms/resourceUpdateForm.js:282 +msgid "Error - Parent is not found. Please use the Autocomplete." +msgstr "錯誤 - 未找到父級。請使用自動完成。" + +#: js/forms/resourceUpdateForm.js:291 ajax_forms/getUpdateProductForm.php:137 +msgid "remove parent" +msgstr "移除父級" + +#: js/forms/resourceUpdateForm.js:309 +msgid "Error - Organization is not found. Please use the Autocomplete." +msgstr "錯誤 - 未找到組織。請使用自動完成。" + +#: js/forms/resourceUpdateForm.js:324 +msgid "remove this organization" +msgstr "移除該組織" + +#: js/forms/resourceUpdateForm.js:394 +msgid "Error - Organization is not found. Please use Autocomplete." +msgstr "錯誤 - 未找到組織。請使用自動完成。" + +#: js/forms/userGroupForm.js:101 +msgid "Error - User is required" +msgstr "錯誤 - 使用者為必填" + +#: js/forms/userGroupForm.js:117 ajax_forms/getAdminUserGroupForm.php:121 +msgid "remove user from group" +msgstr "從群組移除使用者" + +#: js/forms/userGroupForm.js:118 +msgid "remove from group" +msgstr "從組中移除" + +#: js/forms/userGroupForm.js:163 +msgid "Group name must be entered to continue." +msgstr "必須輸入組名稱才能繼續。" + +#: js/forms/workflowForm.js:185 +msgid "Error - Step name is required" +msgstr "錯誤 - 步驟名稱為必填" + +#: js/forms/workflowForm.js:201 js/forms/workflowForm.js:202 +#: ajax_forms/getAdminWorkflowForm.php:238 +msgid "remove this step" +msgstr "移除該步驟" + +#: js/forms/workflowForm.js:373 +msgid "Please add at least one step to this workflow." +msgstr "請為該工作流添加至少一個步驟。" + +#: js/forms/workflowForm.js:379 +msgid "Please click the Add button to the first step before submitting this workflow." +msgstr "請在提交此工作流之前為第一步按一下「添加」按鈕。" + +#: js/index.js:112 +msgid "Processing..." +msgstr "正在處理..." + +#: js/index.js:240 index.php:357 +msgid "more options..." +msgstr "更多選項..." + +#: js/plugins/date.js:30 +msgid "Sunday" +msgstr "星期日" + +#: js/plugins/date.js:30 +msgid "Monday" +msgstr "星期一" + +#: js/plugins/date.js:30 +msgid "Tuesday" +msgstr "星期二" + +#: js/plugins/date.js:30 +msgid "Wednesday" +msgstr "星期三" + +#: js/plugins/date.js:30 +msgid "Thursday" +msgstr "星期四" + +#: js/plugins/date.js:30 +msgid "Friday" +msgstr "星期五" + +#: js/plugins/date.js:30 +msgid "Saturday" +msgstr "星期六" + +#: js/plugins/date.js:42 +msgid "Sun" +msgstr "星期日" + +#: js/plugins/date.js:42 +msgid "Mon" +msgstr "星期一" + +#: js/plugins/date.js:42 +msgid "Tue" +msgstr "星期二" + +#: js/plugins/date.js:42 +msgid "Wed" +msgstr "星期三" + +#: js/plugins/date.js:42 +msgid "Thu" +msgstr "星期四" + +#: js/plugins/date.js:42 +msgid "Fri" +msgstr "星期五" + +#: js/plugins/date.js:42 +msgid "Sat" +msgstr "星期六" + +#: js/plugins/date.js:54 +msgid "January" +msgstr "一月" + +#: js/plugins/date.js:54 +msgid "February" +msgstr "二月" + +#: js/plugins/date.js:54 +msgid "March" +msgstr "三月" + +#: js/plugins/date.js:54 +msgid "April" +msgstr "四月" + +#: js/plugins/date.js:54 js/plugins/date.js:66 +msgid "May" +msgstr "五月" + +#: js/plugins/date.js:54 +msgid "June" +msgstr "六月" + +#: js/plugins/date.js:54 +msgid "July" +msgstr "七月" + +#: js/plugins/date.js:54 +msgid "August" +msgstr "八月" + +#: js/plugins/date.js:54 +msgid "September" +msgstr "九月" + +#: js/plugins/date.js:54 +msgid "October" +msgstr "十月" + +#: js/plugins/date.js:54 +msgid "November" +msgstr "十一月" + +#: js/plugins/date.js:54 +msgid "December" +msgstr "十二月" + +#: js/plugins/date.js:66 +msgid "Jan" +msgstr "一月" + +#: js/plugins/date.js:66 +msgid "Feb" +msgstr "二月" + +#: js/plugins/date.js:66 +msgid "Mar" +msgstr "三月" + +#: js/plugins/date.js:66 +msgid "Apr" +msgstr "四月" + +#: js/plugins/date.js:66 +msgid "Jun" +msgstr "六月" + +#: js/plugins/date.js:66 +msgid "Jul" +msgstr "七月" + +#: js/plugins/date.js:66 +msgid "Aug" +msgstr "八月" + +#: js/plugins/date.js:66 +msgid "Sep" +msgstr "九月" + +#: js/plugins/date.js:66 +msgid "Oct" +msgstr "十月" + +#: js/plugins/date.js:66 +msgid "Nov" +msgstr "十一月" + +#: js/plugins/date.js:66 +msgid "Dec" +msgstr "十二月" + +#: js/plugins/jquery.datePicker.js:1129 +msgid "Previous year" +msgstr "前一年" + +#: js/plugins/jquery.datePicker.js:1130 +msgid "Previous month" +msgstr "上個月" + +#: js/plugins/jquery.datePicker.js:1131 +msgid "Next year" +msgstr "後一年" + +#: js/plugins/jquery.datePicker.js:1132 +msgid "Next month" +msgstr "下個月" + +#: js/plugins/jquery.datePicker.js:1133 +msgid "Close" +msgstr "關閉" + +#: js/plugins/jquery.datePicker.js:1134 +msgid "Choose date" +msgstr "選擇日期" + +#: js/queue.js:55 js/queue.js:89 js/queue.js:123 js/queue.js:155 +msgid "Refreshing..." +msgstr "正在刷新..." + +#: js/queue.js:153 +msgid "Do you really want to delete this request?" +msgstr "您確認要刪除此請求嗎?" + +#: js/queue.js:193 js/queue.js:214 js/queue.js:235 js/resource.js:618 +msgid " record)" +msgstr "紀錄)" + +#: js/queue.js:195 js/queue.js:216 js/queue.js:237 js/resource.js:620 +msgid " records)" +msgstr "紀錄)" + +#: js/resource.js:93 js/resource.js:100 +msgid "Must set a date." +msgstr "必須設定一個日期。" + +#: js/resource.js:154 +msgid "New contact must have a name." +msgstr "新的連絡人必須有一個名字。" + +#: js/resource.js:161 js/resource.js:203 +msgid "CC must be a valid email." +msgstr "密送必須有一個有效的電子郵件。" + +#: js/resource.js:357 js/resource.js:666 +msgid "Refreshing Contents..." +msgstr "正在刷新內容......" + +#: js/resource.js:450 +msgid "Opening an issue requires a resource to be associated with an organization. Please contact your IT department." +msgstr "新建問題需要一個與一個組織關聯的資源。請聯絡您的 IT 部門。" + +#: js/resource.js:455 +msgid "A contact must be selected to continue." +msgstr "必須選擇一個連絡人才能繼續。" + +#: js/resource.js:460 +msgid "A subject must be entered to continue." +msgstr "必須輸入一個主題才能繼續。" + +#: js/resource.js:465 +msgid "A body must be entered to continue." +msgstr "必須輸入一個正文才能繼續。" + +#: js/resource.js:478 +msgid "An issue must be associated with an organization or resource(s)." +msgstr "一個問題必須與一個組織或資源關聯" + +#: js/resource.js:706 +msgid "Do you really want to delete this contact?" +msgstr "您確認要刪除此連絡人嗎?" + +#: js/resource.js:724 +msgid "Do you really want to delete this account?" +msgstr "您確認想要刪除此帳戶嗎?" + +#: js/resource.js:742 +msgid "Do you really want to delete this attachment?" +msgstr "您確認要刪除該附件嗎?" + +#: js/resource.js:762 +msgid "Do you really want to delete this resource?" +msgstr "您確認要刪除此資源嗎?" + +#: js/resource.js:780 +msgid "Do you really want to delete this resource and all its children?" +msgstr "您確認要刪除該資源及其子資源嗎?" + +#: js/resource.js:801 +msgid "Do you really want to remove this Subject?" +msgstr "您確認要移除該主題嗎?" + +#: js/resource.js:819 +msgid "Do you really want to delete this note?" +msgstr "您確認要刪除該備註嗎?" + +#: js/resource.js:861 +msgid "Warning! You are about to remove any steps that have been started and completed. Are you sure you wish to continue?" +msgstr "警告!您將要移除任何已開始和已完成的步驟。您確認要繼續嗎?" + +#: js/resource.js:878 +msgid "Do you really want to mark this resource complete? This action cannot be undone." +msgstr "您確認要將該資源標記為完成嗎? 該動作無法被撤銷。" + +#: js/resource.js:892 +msgid "Do you really want to delete this step? If other steps depended on this one, they will be started upon deletion. This action cannot be undone" +msgstr "您確認要刪除該步驟嗎? 如果其它步驟取決於該步驟,那麼將會在刪除後重新開機。該動作無法被撤銷。" + +#: admin.php:22 admin.php:40 +msgid "Administration" +msgstr "管理" + +#: admin.php:51 ajax_htmldata/getAdminUserDisplay.php:19 +#: ajax_htmldata/getAdminWorkflowDisplay.php:74 +msgid "Users" +msgstr "使用者" + +#: admin.php:52 +msgid "Workflow / User Group" +msgstr "工作流 / 使用者組" + +#: admin.php:53 +msgid "Access Method" +msgstr "存取方法" + +#: admin.php:54 +msgid "Account Type" +msgstr "帳戶類型" + +#: admin.php:55 ajax_forms/getNewResourceForm.php:176 +#: ajax_htmldata/getAdminWorkflowDisplay.php:16 +#: ajax_htmldata/getOutstandingQueue.php:21 ajax_htmldata/getSavedQueue.php:20 +#: ajax_htmldata/getSearchResources.php:118 +#: ajax_htmldata/getSubmittedQueue.php:17 index.php:118 +msgid "Acquisition Type" +msgstr "採訪類型" + +#: admin.php:56 index.php:484 +msgid "Administering Site" +msgstr "管理網站" + +#: admin.php:58 ajax_htmldata/getAdminAlertDisplay.php:10 +msgid "Alert Settings" +msgstr "提醒設定" + +#: admin.php:60 ajax_forms/getImportConfigForm.php:57 +#: ajax_forms/getImportConfigForm.php:71 ajax_forms/getImportConfigForm.php:245 +msgid "Alias Type" +msgstr "別名類型" + +#: admin.php:61 +msgid "Attachment Type" +msgstr "附件類型" + +#: admin.php:62 index.php:514 +msgid "Authentication Type" +msgstr "身份驗證類型" + +#: admin.php:63 index.php:452 +msgid "Authorized Site" +msgstr "授權網站" + +#: admin.php:64 index.php:544 +msgid "Cataloging Status" +msgstr "編目狀態" + +#: admin.php:65 +msgid "CatalogingType" +msgstr "CatalogingType" + +#: admin.php:66 +msgid "Contact Role" +msgstr "聯絡人角色" + +#: admin.php:68 ajax_forms/getCostForm.php:76 +msgid "Cost Details" +msgstr "成本詳細資訊" + +#: admin.php:70 ajax_forms/getCostForm.php:73 +#: ajax_htmldata/getAdminCurrencyDisplay.php:8 +msgid "Currency" +msgstr "貨幣" + +#: admin.php:71 +msgid "Downtime Types" +msgstr "停機時間類型" + +#: admin.php:72 +msgid "Funds" +msgstr "經費" + +#: admin.php:73 ajax_htmldata/getAdminImportConfigDisplay.php:7 +msgid "Import Configuration" +msgstr "輸入設定" + +#: admin.php:74 +msgid "License Status" +msgstr "授權狀態" + +#: admin.php:75 ajax_forms/getImportConfigForm.php:147 +#: ajax_forms/getImportConfigForm.php:161 +#: ajax_forms/getImportConfigForm.php:269 index.php:362 +msgid "Note Type" +msgstr "備註類型" + +#: admin.php:76 +msgid "Order Type" +msgstr "訂單類型" + +#: admin.php:83 ajax_forms/getImportConfigForm.php:182 +#: ajax_forms/getImportConfigForm.php:194 +#: ajax_forms/getImportConfigForm.php:275 +msgid "Organization Role" +msgstr "組織角色" + +#: admin.php:84 templates/header.php:225 +msgid "Organizations" +msgstr "組織" + +#: admin.php:88 +msgid "Purchasing Site" +msgstr "採購網站" + +#: admin.php:89 ajax_forms/getImportConfigForm.php:49 +#: ajax_htmldata/getAdminWorkflowDisplay.php:17 index.php:204 +msgid "Resource Format" +msgstr "資源格式" + +#: admin.php:90 ajax_forms/getImportConfigForm.php:50 +#: ajax_forms/getNewResourceForm.php:223 +#: ajax_htmldata/getAdminWorkflowDisplay.php:18 index.php:228 +msgid "Resource Type" +msgstr "資源類型" + +#: admin.php:91 +msgid "Storage Location" +msgstr "存儲位置" + +#: admin.php:92 ajax_htmldata/getProductDetails.php:301 +msgid "Subjects" +msgstr "主題" + +#: admin.php:93 +msgid "User Limit" +msgstr "使用者限制" + +#: admin.php:98 queue.php:59 +msgid "Loading..." +msgstr "正在載入 ..." + +#: admin.php:121 +msgid "You do not have permissions to access this screen." +msgstr "您沒有訪用此頁面之授權。" + +#: admin/classes/common/DBService.php:39 +msgid "There was a problem with the database: " +msgstr "資料庫出現問題:" + +#: admin/classes/common/LdapPerson.php:34 +msgid "Could not connect to " +msgstr "無法連接到" + +#: admin/classes/common/Object.php:63 admin/classes/common/Object.php:72 +msgid "Cannot set value for undefined key (" +msgstr "無法對未定義鍵設定數值(" + +#: admin/classes/common/Utility.php:121 +msgid "Error: unexpected fgets() fail" +msgstr "錯誤:意外 fgets() 失敗" + +#: admin/classes/common/Utility.php:133 +msgid "Edit DDW facet/term selections at: " +msgstr "編輯 DDW 主題層面篩選工具/條款選擇于:" + +#: admin/classes/common/Utility.php:148 +msgid "Email template file not found: " +msgstr "未找到電子郵件範本檔:" + +#: ajax_forms.php:25 +msgid "Form action " +msgstr "表單動作" + +#: ajax_forms.php:25 ajax_htmldata.php:27 ajax_processing.php:27 +msgid " not set up!" +msgstr "尚未設立!" + +#: ajax_forms/getAccessForm.php:59 +msgid "Edit Access" +msgstr "編輯訪問權限" + +#: ajax_forms/getAccessForm.php:68 +msgid "Access" +msgstr "訪問" + +#: ajax_forms/getAccessForm.php:75 ajax_htmldata/getAccessDetails.php:57 +#: summary.php:632 +msgid "Authentication Type:" +msgstr "身份驗證類型:" + +#: ajax_forms/getAccessForm.php:90 ajax_forms/getAccountForm.php:58 +msgid "Username:" +msgstr "使用者名:" + +#: ajax_forms/getAccessForm.php:94 ajax_htmldata/getAccessDetails.php:102 +#: summary.php:669 +msgid "Access Method:" +msgstr "存取方法:" + +#: ajax_forms/getAccessForm.php:109 ajax_forms/getAccountForm.php:65 +#: ajax_htmldata/getAccountDetails.php:80 +msgid "Password:" +msgstr "密碼:" + +#: ajax_forms/getAccessForm.php:113 ajax_htmldata/getAccessDetails.php:88 +#: summary.php:662 +msgid "Storage Location:" +msgstr "存儲位置:" + +#: ajax_forms/getAccessForm.php:128 ajax_htmldata/getAccessDetails.php:72 +#: summary.php:646 +msgid "Simultaneous User Limit:" +msgstr "並發使用者限制:" + +#: ajax_forms/getAccessForm.php:145 ajax_htmldata/getAccessDetails.php:95 +msgid "Coverage:" +msgstr "覆蓋範圍:" + +#: ajax_forms/getAccessForm.php:163 +msgid "Authorized Site(s)" +msgstr "授權網站" + +#: ajax_forms/getAccessForm.php:208 +msgid "Administering Site(s)" +msgstr "管理網站" + +#: ajax_forms/getAccessForm.php:251 ajax_forms/getAccountForm.php:86 +#: ajax_forms/getAdminAlertDaysForm.php:34 +#: ajax_forms/getAdminAlertEmailForm.php:34 +#: ajax_forms/getAdminCurrencyUpdateForm.php:38 +#: ajax_forms/getAdminFundUpdateForm.php:45 +#: ajax_forms/getAdminImportConfigUpdateForm.php:40 +#: ajax_forms/getAdminUpdateForm.php:44 +#: ajax_forms/getAdminUserGroupForm.php:147 +#: ajax_forms/getAdminUserUpdateForm.php:66 +#: ajax_forms/getAdminWorkflowForm.php:266 ajax_forms/getAttachmentForm.php:89 +#: ajax_forms/getContactForm.php:161 ajax_forms/getCostForm.php:335 +#: ajax_forms/getDetailSubjectUpdateForm.php:38 +#: ajax_forms/getGeneralDetailSubjectForm.php:130 +#: ajax_forms/getGeneralSubjectUpdateForm.php:38 +#: ajax_forms/getLicenseForm.php:191 ajax_forms/getNewDowntimeForm.php:115 +#: ajax_forms/getNewIssueForm.php:132 ajax_forms/getNewResourceForm.php:295 +#: ajax_forms/getNoteForm.php:61 ajax_forms/getOrderForm.php:160 +#: ajax_forms/getResourceStepForm.php:64 +#: ajax_forms/getUpdateProductForm.php:429 resources/cataloging_edit.php:102 +msgid "submit" +msgstr "提交" + +#: ajax_forms/getAccessForm.php:252 ajax_forms/getAccountForm.php:87 +#: ajax_forms/getAdminAlertDaysForm.php:35 +#: ajax_forms/getAdminAlertEmailForm.php:35 +#: ajax_forms/getAdminCurrencyUpdateForm.php:39 +#: ajax_forms/getAdminFundUpdateForm.php:46 +#: ajax_forms/getAdminImportConfigUpdateForm.php:41 +#: ajax_forms/getAdminUpdateForm.php:45 +#: ajax_forms/getAdminUserGroupForm.php:148 +#: ajax_forms/getAdminUserUpdateForm.php:67 +#: ajax_forms/getAdminWorkflowForm.php:267 ajax_forms/getAttachmentForm.php:90 +#: ajax_forms/getContactForm.php:162 ajax_forms/getCostForm.php:336 +#: ajax_forms/getDetailSubjectUpdateForm.php:39 +#: ajax_forms/getGeneralDetailSubjectForm.php:131 +#: ajax_forms/getGeneralSubjectUpdateForm.php:39 +#: ajax_forms/getImportSaveCfgForm.php:28 ajax_forms/getLicenseForm.php:192 +#: ajax_forms/getNewDowntimeForm.php:116 ajax_forms/getNewDowntimeForm.php:125 +#: ajax_forms/getNewIssueForm.php:133 ajax_forms/getNewIssueForm.php:142 +#: ajax_forms/getNewResourceForm.php:296 ajax_forms/getNoteForm.php:62 +#: ajax_forms/getOrderForm.php:161 ajax_forms/getResourceStepForm.php:65 +#: ajax_forms/getResourceSubjectForm.php:48 +#: ajax_forms/getUpdateProductForm.php:430 importFunds.php:64 +#: resources/cataloging_edit.php:103 +msgid "cancel" +msgstr "取消" + +#: ajax_forms/getAccountForm.php:17 +msgid "Edit Account" +msgstr "編輯帳戶" + +#: ajax_forms/getAccountForm.php:17 +msgid "Add Account" +msgstr "添加帳戶" + +#: ajax_forms/getAccountForm.php:27 +msgid "Login Type:" +msgstr "登入類型:" + +#: ajax_forms/getAccountForm.php:44 ajax_forms/getNewResourceForm.php:115 +#: ajax_forms/getUpdateProductForm.php:101 summary.php:742 +msgid "URL:" +msgstr "URL:" + +#: ajax_forms/getAccountForm.php:51 ajax_htmldata/getAccountDetails.php:96 +msgid "Registered Email:" +msgstr "註冊電子郵件:" + +#: ajax_forms/getAccountForm.php:72 ajax_forms/getContactForm.php:138 +#: ajax_forms/getNoteForm.php:48 ajax_htmldata/getAccountDetails.php:104 +#: ajax_htmldata/getContactDetails.php:165 +msgid "Notes:" +msgstr "備註:" + +#: ajax_forms/getAdminAlertDaysForm.php:14 +msgid "Edit Alert Days In Advance" +msgstr "編輯提前提醒天數" + +#: ajax_forms/getAdminAlertDaysForm.php:14 +msgid "Add Alert Days In Advance" +msgstr "添加提前提醒天數" + +#: ajax_forms/getAdminAlertEmailForm.php:14 +msgid "Edit Alert Email Address" +msgstr "編輯提醒電子郵件地址" + +#: ajax_forms/getAdminAlertEmailForm.php:14 +msgid "Add Alert Email Address" +msgstr "添加提醒電子郵件地址" + +#: ajax_forms/getAdminCurrencyUpdateForm.php:14 +msgid "Edit Currency" +msgstr "編輯貨幣" + +#: ajax_forms/getAdminCurrencyUpdateForm.php:14 +msgid "Add Currency" +msgstr "添加貨幣" + +#: ajax_forms/getAdminCurrencyUpdateForm.php:24 +#: ajax_forms/getAdminFundUpdateForm.php:25 +#: ajax_htmldata/getAdminCurrencyDisplay.php:14 +msgid "Code" +msgstr "代碼" + +#: ajax_forms/getAdminCurrencyUpdateForm.php:27 +#: ajax_forms/getAdminFundUpdateForm.php:28 +#: ajax_htmldata/getAdminCurrencyDisplay.php:15 +#: ajax_htmldata/getAdminImportConfigDisplay.php:13 +#: ajax_htmldata/getOutstandingQueue.php:20 ajax_htmldata/getSavedQueue.php:18 +#: ajax_htmldata/getSearchResources.php:115 +#: ajax_htmldata/getSubmittedQueue.php:15 +msgid "Name" +msgstr "名稱" + +#: ajax_forms/getAdminFundUpdateForm.php:32 +msgid "Archived" +msgstr "已歸檔" + +#: ajax_forms/getAdminImportConfigUpdateForm.php:22 +msgid "Edit Import Configuration" +msgstr "編輯輸入設定" + +#: ajax_forms/getAdminImportConfigUpdateForm.php:24 +msgid "Add Import Configuration" +msgstr "添加輸入設定" + +#: ajax_forms/getAdminImportConfigUpdateForm.php:31 +msgid "Configuration Name" +msgstr "設定名稱" + +#: ajax_forms/getAdminImportConfigUpdateForm.php:34 +msgid "For each of the resource fields please input the number of the column in your CSV file that corresponds to the resource field. For example, if your import file has a second column called Name that corresponds to the Resource Title, then you would input 2 for the value for the Resource Title field. For columns with multiple values that are character-delimited, indicate the delimiter using the If delimited, delimited by field. For fields with values across multiple columns, add additional sets using the +Add another links. Use the Dedupe on this column option for ISBN/ISSN sets to ignore any duplicate values that might occur across those columns. The Alias Types, Note Types, and Organization Roles that you can assign to your mapped columns can be configured on the Admin page." +msgstr "對於每一個資源欄位,請在您的 CSV 檔中輸入與資源欄位對應的欄數。 例如,如果在您的輸入檔中與「資源標題」相對應的欄是稱作「名稱」的第二欄,那麼您需要為「資源標題」欄位輸入值「2」。對於包含多個被字元分隔的值的欄,使用 If 指示分隔符號,並按欄位分隔。對於包含跨多欄的值的欄位,使用「+添加另一個連結」以添加集。為 ISBN/ISSN 集使用該欄選項的「消除重復資料」功能可以忽略任何可能出現在這些欄中的重複值。您可以在「管理員」頁面設定可將之分配給您的對照列的「別名類型」、「備註類型」和「組織角色」。" + +#: ajax_forms/getAdminUpdateForm.php:16 +#: ajax_forms/getDetailSubjectUpdateForm.php:16 +#: ajax_forms/getGeneralSubjectUpdateForm.php:16 +msgid "Edit " +msgstr "編輯" + +#: ajax_forms/getAdminUpdateForm.php:16 +#: ajax_forms/getDetailSubjectUpdateForm.php:16 +#: ajax_forms/getGeneralSubjectUpdateForm.php:16 +msgid "Add " +msgstr "添加" + +#: ajax_forms/getAdminUpdateForm.php:31 +msgid "Show stats button?" +msgstr "顯示統計資料按鈕嗎?" + +#: ajax_forms/getAdminUserGroupForm.php:17 +msgid "Edit User Group" +msgstr "編輯使用者組" + +#: ajax_forms/getAdminUserGroupForm.php:17 +msgid "Add User Group" +msgstr "添加使用者組" + +#: ajax_forms/getAdminUserGroupForm.php:26 +msgid "User Group" +msgstr "使用者組" + +#: ajax_forms/getAdminUserGroupForm.php:34 +msgid "Group Name:" +msgstr "組名稱:" + +#: ajax_forms/getAdminUserGroupForm.php:41 +msgid "Email Address:" +msgstr "電子郵件地址:" + +#: ajax_forms/getAdminUserGroupForm.php:58 +msgid "Assigned Users" +msgstr "分配的使用者" + +#: ajax_forms/getAdminUserGroupForm.php:82 +msgid "add user" +msgstr "添加使用者" + +#: ajax_forms/getAdminUserGroupForm.php:82 +#: ajax_forms/getAdminWorkflowForm.php:155 ajax_forms/getCostForm.php:168 +#: ajax_forms/getGeneralDetailSubjectForm.php:76 +#: ajax_forms/getLicenseForm.php:76 ajax_forms/getNewIssueForm.php:75 +#: ajax_forms/getResourceSubjectForm.php:26 +#: ajax_forms/getResourceSubjectForm.php:33 +#: ajax_forms/getUpdateProductForm.php:124 +#: ajax_forms/getUpdateProductForm.php:153 +#: ajax_forms/getUpdateProductForm.php:266 +#: ajax_forms/getUpdateProductForm.php:359 +msgid "Add" +msgstr "添加" + +#: ajax_forms/getAdminUserUpdateForm.php:21 +msgid "Edit User" +msgstr "編輯使用者" + +#: ajax_forms/getAdminUserUpdateForm.php:21 +msgid "Add New User" +msgstr "新增使用者" + +#: ajax_forms/getAdminUserUpdateForm.php:32 +#: ajax_htmldata/getAdminUserDisplay.php:22 +msgid "Login ID" +msgstr "登入 ID" + +#: ajax_forms/getAdminUserUpdateForm.php:33 +#: ajax_htmldata/getAdminUserDisplay.php:23 +msgid "First Name" +msgstr "名" + +#: ajax_forms/getAdminUserUpdateForm.php:34 +#: ajax_htmldata/getAdminUserDisplay.php:24 +msgid "Last Name" +msgstr "姓" + +#: ajax_forms/getAdminUserUpdateForm.php:35 +#: ajax_htmldata/getAdminAlertDisplay.php:16 +#: ajax_htmldata/getAdminUserDisplay.php:27 +#: ajax_htmldata/getAdminWorkflowDisplay.php:73 +msgid "Email Address" +msgstr "電子郵件地址" + +#: ajax_forms/getAdminUserUpdateForm.php:36 +#: ajax_htmldata/getAdminUserDisplay.php:25 +msgid "Privilege" +msgstr "特權" + +#: ajax_forms/getAdminUserUpdateForm.php:54 +#: ajax_htmldata/getAdminUserDisplay.php:26 +msgid "View Accounts" +msgstr "查看帳戶" + +#: ajax_forms/getAdminWorkflowForm.php:42 +msgid "Edit Workflow" +msgstr "編輯工作流" + +#: ajax_forms/getAdminWorkflowForm.php:51 +msgid "Resource Entry Requirements" +msgstr "資源條目要求" + +#: ajax_forms/getAdminWorkflowForm.php:58 ajax_forms/getOrderForm.php:46 +#: ajax_htmldata/getAcquisitionsDetails.php:111 summary.php:429 +msgid "Acquisition Type:" +msgstr "採訪類型:" + +#: ajax_forms/getAdminWorkflowForm.php:74 +#: ajax_forms/getUpdateProductForm.php:176 +msgid "Format:" +msgstr "格式:" + +#: ajax_forms/getAdminWorkflowForm.php:89 ajax_forms/getAttachmentForm.php:35 +#: ajax_forms/getUpdateProductForm.php:336 +#: ajax_htmldata/getAttachmentDetails.php:47 +#: ajax_htmldata/getDowntimeList.php:17 +msgid "Type:" +msgstr "類型:" + +#: ajax_forms/getAdminWorkflowForm.php:114 +msgid "Workflow Steps" +msgstr "工作流步驟" + +#: ajax_forms/getAdminWorkflowForm.php:123 ajax_forms/getAttachmentForm.php:27 +#: ajax_forms/getContactForm.php:43 ajax_forms/getImportSaveCfgForm.php:16 +#: ajax_forms/getNewResourceForm.php:100 ajax_forms/getUpdateProductForm.php:91 +msgid "Name:" +msgstr "名稱:" + +#: ajax_forms/getAdminWorkflowForm.php:124 +msgid "Approval/Notification Group:" +msgstr "批准/通知組:" + +#: ajax_forms/getAdminWorkflowForm.php:125 +msgid "Parent Step" +msgstr "父步驟" + +#: ajax_forms/getAdminWorkflowForm.php:155 +msgid "add step" +msgstr "添加步驟" + +#: ajax_forms/getAttachmentForm.php:16 +msgid "Edit Attachment" +msgstr "編輯附件" + +#: ajax_forms/getAttachmentForm.php:16 +msgid "Add Attachment" +msgstr "添加附件" + +#: ajax_forms/getAttachmentForm.php:55 +msgid "File:" +msgstr "檔:" + +#: ajax_forms/getAttachmentForm.php:61 +msgid "replace with new file" +msgstr "替換為新檔" + +#: ajax_forms/getAttachmentForm.php:76 +#: ajax_htmldata/getAttachmentDetails.php:55 +msgid "Details:" +msgstr "詳細資訊:" + +#: ajax_forms/getContactForm.php:30 +msgid "Edit Contact" +msgstr "編輯連絡人" + +#: ajax_forms/getContactForm.php:30 +msgid "Add Contact" +msgstr "添加連絡人" + +#: ajax_forms/getContactForm.php:50 ajax_htmldata/getContactDetails.php:100 +msgid "Title:" +msgstr "稱呼:" + +#: ajax_forms/getContactForm.php:57 ajax_htmldata/getContactDetails.php:133 +msgid "Phone:" +msgstr "电话:" + +#: ajax_forms/getContactForm.php:64 ajax_htmldata/getContactDetails.php:141 +msgid "Alt Phone:" +msgstr "備用電話:" + +#: ajax_forms/getContactForm.php:71 ajax_htmldata/getContactDetails.php:149 +msgid "Fax:" +msgstr "傳真:" + +#: ajax_forms/getContactForm.php:78 ajax_htmldata/getContactDetails.php:157 +msgid "Email:" +msgstr "電子郵件:" + +#: ajax_forms/getContactForm.php:85 ajax_htmldata/getContactDetails.php:108 +msgid "Address:" +msgstr "地址:" + +#: ajax_forms/getContactForm.php:92 ajax_forms/getUpdateProductForm.php:214 +#: ajax_htmldata/getProductDetails.php:90 +msgid "Archived:" +msgstr "已歸檔:" + +#: ajax_forms/getContactForm.php:102 +msgid "Role(s):" +msgstr "角色:" + +#: ajax_forms/getCostForm.php:52 +msgid "Edit Cost Information" +msgstr "編輯成本資訊" + +#: ajax_forms/getCostForm.php:59 ajax_htmldata/getAcquisitionsDetails.php:172 +#: summary.php:485 +msgid "Cost History" +msgstr "成本歷史紀錄" + +#: ajax_forms/getCostForm.php:67 ajax_htmldata/getAcquisitionsDetails.php:181 +msgid "Year" +msgstr "年" + +#: ajax_forms/getCostForm.php:68 ajax_htmldata/getAcquisitionsDetails.php:182 +msgid "Sub Start" +msgstr "訂閱開始" + +#: ajax_forms/getCostForm.php:69 ajax_htmldata/getAcquisitionsDetails.php:183 +msgid "Sub End" +msgstr "訂閱結束" + +#: ajax_forms/getCostForm.php:71 ajax_htmldata/getAcquisitionsDetails.php:185 +#: index.php:90 +msgid "Fund" +msgstr "經費" + +#: ajax_forms/getCostForm.php:72 ajax_htmldata/getAcquisitionsDetails.php:186 +msgid "Payment" +msgstr "付款" + +#: ajax_forms/getCostForm.php:74 ajax_htmldata/getAcquisitionsDetails.php:190 +msgid "Type" +msgstr "類型" + +#: ajax_forms/getCostForm.php:78 ajax_forms/getImportConfigForm.php:146 +#: ajax_forms/getImportConfigForm.php:160 +#: ajax_forms/getImportConfigForm.php:269 +msgid "Note" +msgstr "備註" + +#: ajax_forms/getCostForm.php:80 ajax_htmldata/getAcquisitionsDetails.php:196 +msgid "Invoice" +msgstr "發票" + +#: ajax_forms/getCostForm.php:168 +msgid "add payment" +msgstr "添加付款" + +#: ajax_forms/getGeneralDetailSubjectForm.php:18 +msgid "Add / Edit Subject Relationships" +msgstr "添加/編輯主題關係" + +#: ajax_forms/getGeneralDetailSubjectForm.php:27 +#: ajax_htmldata/getAdminSubjectDisplay.php:98 index.php:269 +msgid "General Subject" +msgstr "一般主題" + +#: ajax_forms/getGeneralDetailSubjectForm.php:53 +msgid "Detailed Subjects" +msgstr "詳細主題" + +#: ajax_forms/getGeneralDetailSubjectForm.php:76 +msgid "add detail subject" +msgstr "添加詳細主題" + +#: ajax_forms/getGeneralDetailSubjectForm.php:109 +#: ajax_htmldata/getAdminSubjectDisplay.php:30 +#: ajax_htmldata/getAdminSubjectDisplay.php:71 +msgid "subject in use" +msgstr "使用中的主題" + +#: ajax_forms/getImportConfigForm.php:43 +msgid "General Resource Fields" +msgstr "一般資源欄位" + +#: ajax_forms/getImportConfigForm.php:45 +msgid "Resource Title" +msgstr "資源標題" + +#: ajax_forms/getImportConfigForm.php:46 +msgid "Description" +msgstr "描述" + +#: ajax_forms/getImportConfigForm.php:47 +msgid "Resource URL" +msgstr "資源 URL" + +#: ajax_forms/getImportConfigForm.php:48 +msgid "Alternate URL" +msgstr "備用 URL" + +#: ajax_forms/getImportConfigForm.php:52 +msgid "Alias Sets" +msgstr "別名集" + +#: ajax_forms/getImportConfigForm.php:56 ajax_forms/getImportConfigForm.php:70 +#: ajax_forms/getImportConfigForm.php:245 +msgid "Alias" +msgstr "別名" + +#: ajax_forms/getImportConfigForm.php:66 ajax_forms/getImportConfigForm.php:76 +#: ajax_forms/getImportConfigForm.php:126 +#: ajax_forms/getImportConfigForm.php:131 +#: ajax_forms/getImportConfigForm.php:156 +#: ajax_forms/getImportConfigForm.php:166 +#: ajax_forms/getImportConfigForm.php:245 +#: ajax_forms/getImportConfigForm.php:263 +#: ajax_forms/getImportConfigForm.php:269 +msgid "If delimited, delimited by" +msgstr "如果分隔,分隔符號為" + +#: ajax_forms/getImportConfigForm.php:79 +msgid "+ Add another alias set" +msgstr "+ 添加另一個別名集" + +#: ajax_forms/getImportConfigForm.php:81 +msgid "Resource Parents" +msgstr "資源父級" + +#: ajax_forms/getImportConfigForm.php:85 ajax_forms/getImportConfigForm.php:89 +#: ajax_forms/getImportConfigForm.php:251 +msgid "Parent Resource" +msgstr "父資源" + +#: ajax_forms/getImportConfigForm.php:92 +msgid "+ Add another parent resource" +msgstr "+ 添加另一個父資源" + +#: ajax_forms/getImportConfigForm.php:97 +msgid "ISBN/ISSN Sets" +msgstr "ISBN/ISSN 集" + +#: ajax_forms/getImportConfigForm.php:103 +#: ajax_forms/getImportConfigForm.php:108 +#: ajax_forms/getImportConfigForm.php:257 +msgid "ISBN or ISSN" +msgstr "ISBN 或 ISSN" + +#: ajax_forms/getImportConfigForm.php:104 +#: ajax_forms/getImportConfigForm.php:109 +#: ajax_forms/getImportConfigForm.php:257 +msgid "Dedupe on this column" +msgstr "對此列消除重復資料" + +#: ajax_forms/getImportConfigForm.php:112 +msgid "+ Add another ISBN or ISSN set" +msgstr "+ 添加另一個 ISBN 或 ISSN 集" + +#: ajax_forms/getImportConfigForm.php:119 +msgid "Subject Sets" +msgstr "主題集" + +#: ajax_forms/getImportConfigForm.php:125 +#: ajax_forms/getImportConfigForm.php:130 +#: ajax_forms/getImportConfigForm.php:263 +msgid "Subject" +msgstr "主題" + +#: ajax_forms/getImportConfigForm.php:134 +msgid "+ Add another subject set" +msgstr "+ 添加另一個主題集" + +#: ajax_forms/getImportConfigForm.php:141 +msgid "Note Sets" +msgstr "備註集" + +#: ajax_forms/getImportConfigForm.php:169 +msgid "+ Add another note set" +msgstr "+ 添加另一個備註集" + +#: ajax_forms/getImportConfigForm.php:178 +msgid "Organization Sets" +msgstr "組織集" + +#: ajax_forms/getImportConfigForm.php:182 +#: ajax_forms/getImportConfigForm.php:194 +#: ajax_forms/getImportConfigForm.php:275 +msgid "Organization" +msgstr "組織" + +#: ajax_forms/getImportConfigForm.php:201 +msgid "+ Add another organization set" +msgstr "+ 添加另一個組織集" + +#: ajax_forms/getImportConfigForm.php:206 +msgid "Organization Name Mapping" +msgstr "組織名稱映射" + +#: ajax_forms/getImportConfigForm.php:207 +msgid "Use these mappings to normalize different variations of an organization’s name to a single value. For example, you could have a publisher with three variations of their name across your import file: PublisherHouse, PublisherH, and PH. You could create a mapping for each one and normalize them all to PublisherHouse, to prevent duplicate organizations from being created. Each column that is added to an Organization set above is checked against the complete list of mappings that you create. " +msgstr "使用這些對照表可以將一個組織的不同名稱規範化為一個單個值。例如,可能您的導入檔中出現了同一出版商的三個不同的名稱:PublisherHouse、PublisherH 和 PH。您可以為每一個名稱建立一個映射並將它們全部規範化為 PublisherHouse,以避免建立重複的組織。每一個被添加至一個「組織」集上方的列都會與您建立的完整對照清單進行比較。" + +#: ajax_forms/getImportConfigForm.php:207 +msgid "PCRE regular expressions" +msgstr "PCRE 正則運算式" + +#: ajax_forms/getImportConfigForm.php:207 +msgid " are supported for these mappings." +msgstr "被這些映射所支援。" + +#: ajax_forms/getImportConfigForm.php:211 +msgid "Organization Name" +msgstr "組織名稱" + +#: ajax_forms/getImportConfigForm.php:212 +msgid "Will Be Mapped To" +msgstr "將對照到" + +#: ajax_forms/getImportConfigForm.php:229 +msgid "+ Add another mapping" +msgstr "+ 添加另一個對照" + +#: ajax_forms/getImportSaveCfgForm.php:6 +msgid "Save Import Configuration" +msgstr "保存輸入設定" + +#: ajax_forms/getImportSaveCfgForm.php:27 ajax_forms/getNewResourceForm.php:294 +msgid "save" +msgstr "保存" + +#: ajax_forms/getLicenseForm.php:50 +msgid "Edit Licenses" +msgstr "編輯授權" + +#: ajax_forms/getLicenseForm.php:60 +msgid "License Records" +msgstr "授權紀錄" + +#: ajax_forms/getLicenseForm.php:76 +msgid "add license" +msgstr "添加授權" + +#: ajax_forms/getLicenseForm.php:103 +msgid "remove license link" +msgstr "移除授權連結" + +#: ajax_forms/getLicenseForm.php:103 ajax_forms/getUpdateProductForm.php:306 +msgid "remove " +msgstr "移除" + +#: ajax_forms/getLicenseForm.php:103 +msgid " license" +msgstr "授權" + +#: ajax_forms/getLicenseForm.php:128 +msgid "Licensing Status" +msgstr "授權狀態" + +#: ajax_forms/getLicenseForm.php:136 +#: ajax_htmldata/getAcquisitionsDetails.php:273 +#: ajax_htmldata/getProductDetails.php:80 summary.php:212 summary.php:516 +msgid "Status:" +msgstr "狀態:" + +#: ajax_forms/getLicenseForm.php:160 +msgid "History:" +msgstr "歷史紀錄" + +#: ajax_forms/getLicenseForm.php:166 ajax_htmldata/getAccessDetails.php:173 +#: ajax_htmldata/getAcquisitionsDetails.php:279 +#: ajax_htmldata/getAcquisitionsDetails.php:373 +#: ajax_htmldata/getProductDetails.php:99 +#: ajax_htmldata/getProductDetails.php:101 +#: ajax_htmldata/getProductDetails.php:124 +#: ajax_htmldata/getProductDetails.php:126 +#: ajax_htmldata/getProductDetails.php:148 +#: ajax_htmldata/getProductDetails.php:150 +#: ajax_htmldata/getProductDetails.php:422 +#: ajax_htmldata/getRoutingDetails.php:53 +#: ajax_htmldata/getRoutingDetails.php:55 +#: ajax_htmldata/getRoutingDetails.php:88 +#: ajax_htmldata/getRoutingDetails.php:90 resources/cataloging.php:223 +#: summary.php:226 summary.php:252 summary.php:407 summary.php:522 +#: summary.php:597 summary.php:719 summary.php:832 +msgid " by " +msgstr "由" + +#: ajax_forms/getLicenseForm.php:169 +#: ajax_htmldata/getAcquisitionsDetails.php:282 summary.php:525 +msgid "No license status information available." +msgstr "沒有可用的授權狀態資訊。" + +#: ajax_forms/getNewDowntimeForm.php:57 +msgid "Resource Downtime Report" +msgstr "資源停機時間報表" + +#: ajax_forms/getNewDowntimeForm.php:61 ajax_htmldata/getDowntimeList.php:20 +msgid "Downtime Start:" +msgstr "停機開始時間:" + +#: ajax_forms/getNewDowntimeForm.php:68 +msgid "Downtime Resolution:" +msgstr "停機解決方案:" + +#: ajax_forms/getNewDowntimeForm.php:75 +msgid "Problem Type:" +msgstr "問題類型:" + +#: ajax_forms/getNewDowntimeForm.php:90 +msgid "Link to open issue:" +msgstr "開放問題的連結:" + +#: ajax_forms/getNewDowntimeForm.php:106 ajax_htmldata/getDowntimeList.php:34 +msgid "Note:" +msgstr "備註:" + +#: ajax_forms/getNewDowntimeForm.php:124 +msgid "Creating downtime requires an organization or a resource to be associated with an organization." +msgstr "建立停機時間需要一個組織或與一個組織關聯的資源。" + +#: ajax_forms/getNewIssueForm.php:24 +msgid "Report New Problem" +msgstr "報告新問題" + +#: ajax_forms/getNewIssueForm.php:25 +msgid "* required fields" +msgstr "* 必備欄位" + +#: ajax_forms/getNewIssueForm.php:29 ajax_forms/getUpdateProductForm.php:244 +#: ajax_htmldata/getContactDetails.php:83 +msgid "Organization:" +msgstr "組織:" + +#: ajax_forms/getNewIssueForm.php:36 +msgid "Contact:" +msgstr "連絡人:" + +#: ajax_forms/getNewIssueForm.php:57 ajax_htmldata/getContactDetails.php:43 +#: ajax_htmldata/getContactDetails.php:187 +#: ajax_htmldata/getContactDetails.php:197 +msgid "add contact" +msgstr "添加連絡人" + +#: ajax_forms/getNewIssueForm.php:65 +msgid "CC myself:" +msgstr "密送給我:" + +#: ajax_forms/getNewIssueForm.php:72 +msgid "CC:" +msgstr "密送:" + +#: ajax_forms/getNewIssueForm.php:77 +msgid "Current CCs:" +msgstr "當前密送:" + +#: ajax_forms/getNewIssueForm.php:84 ajax_htmldata/getIssuesList.php:58 +msgid "Subject:" +msgstr "主題:" + +#: ajax_forms/getNewIssueForm.php:91 ajax_htmldata/getIssuesList.php:61 +msgid "Body:" +msgstr "正文:" + +#: ajax_forms/getNewIssueForm.php:98 ajax_htmldata/getIssuesList.php:47 +msgid "Applies to:" +msgstr "應用至:" + +#: ajax_forms/getNewIssueForm.php:102 +msgid "Applies only to" +msgstr "僅應用至" + +#: ajax_forms/getNewIssueForm.php:105 +msgid "Applies to all" +msgstr "應用至所有" + +#: ajax_forms/getNewIssueForm.php:108 +msgid "Applies to selected" +msgstr "應用至已選" + +#: ajax_forms/getNewIssueForm.php:124 +msgid "Send me a reminder every" +msgstr "發送提醒頻率為每" + +#: ajax_forms/getNewIssueForm.php:127 +msgid "day(s)" +msgstr "天" + +#: ajax_forms/getNewIssueForm.php:141 +msgid "Opening an issue requires a resource to be associated with an organization." +msgstr "新建問題需要一個與一個組織關聯的資源。" + +#: ajax_forms/getNewResourceForm.php:84 +msgid "Edit Saved Resource" +msgstr "編輯已保存的資源" + +#: ajax_forms/getNewResourceForm.php:84 +msgid "Add New Resource" +msgstr "添加新的資源" + +#: ajax_forms/getNewResourceForm.php:85 +msgid "required fields" +msgstr "必備欄位" + +#: ajax_forms/getNewResourceForm.php:91 ajax_forms/getUpdateProductForm.php:81 +msgid "Product" +msgstr "產品" + +#: ajax_forms/getNewResourceForm.php:105 ajax_forms/getUpdateProductForm.php:96 +#: ajax_htmldata/getProductDetails.php:265 summary.php:355 +msgid "Description:" +msgstr "說明:" + +#: ajax_forms/getNewResourceForm.php:110 +msgid "Provider:" +msgstr "供應商︰" + +#: ajax_forms/getNewResourceForm.php:120 +#: ajax_forms/getUpdateProductForm.php:106 +#: ajax_htmldata/getProductDetails.php:257 summary.php:347 +msgid "Alt URL:" +msgstr "備用 URL:" + +#: ajax_forms/getNewResourceForm.php:131 +msgid "Format" +msgstr "格式" + +#: ajax_forms/getNewResourceForm.php:269 +#: ajax_htmldata/getAcquisitionsDetails.php:194 +msgid "Notes" +msgstr "備註" + +#: ajax_forms/getNewResourceForm.php:278 +msgid "Include any additional information" +msgstr "包括任何額外的資訊" + +#: ajax_forms/getNoteForm.php:18 +msgid "Edit Note" +msgstr "編輯備註" + +#: ajax_forms/getNoteForm.php:18 +msgid "Add Note" +msgstr "添加備註" + +#: ajax_forms/getNoteForm.php:28 +msgid "Note Type:" +msgstr "備註類型:" + +#: ajax_forms/getOrderForm.php:33 +msgid "Edit Acquisitions Information" +msgstr "編輯採訪資訊" + +#: ajax_forms/getOrderForm.php:40 ajax_htmldata/getAcquisitionsDetails.php:101 +#: summary.php:422 +msgid "Order" +msgstr "訂單" + +#: ajax_forms/getOrderForm.php:64 ajax_htmldata/getAcquisitionsDetails.php:118 +#: summary.php:436 +msgid "Order Number:" +msgstr "訂單號:" + +#: ajax_forms/getOrderForm.php:69 ajax_htmldata/getAcquisitionsDetails.php:125 +#: summary.php:443 +msgid "System Number:" +msgstr "系統號:" + +#: ajax_forms/getOrderForm.php:74 ajax_htmldata/getAcquisitionsDetails.php:146 +#: summary.php:466 +msgid "Sub Start:" +msgstr "訂閱開始:" + +#: ajax_forms/getOrderForm.php:79 summary.php:473 +msgid "Current Sub End:" +msgstr "當前訂閱結束:" + +#: ajax_forms/getOrderForm.php:89 +msgid "Enable Alert" +msgstr "啟用提醒" + +#: ajax_forms/getOrderForm.php:111 +msgid "Purchasing Site(s)" +msgstr "採購網站" + +#: ajax_forms/getResourceStepForm.php:25 +msgid "Edit Resource Step" +msgstr "編輯資源步驟" + +#: ajax_forms/getResourceStepForm.php:32 +msgid "Reassign Resource Step" +msgstr "重新分配資源步驟" + +#: ajax_forms/getResourceStepForm.php:40 +msgid "Step name: " +msgstr "步驟名稱︰" + +#: ajax_forms/getResourceStepForm.php:42 +msgid "Group: " +msgstr "組:" + +#: ajax_forms/getResourceStepForm.php:53 +msgid "Apply to all later steps?" +msgstr "應用至後面的所有步驟?" + +#: ajax_forms/getResourceSubjectForm.php:7 +msgid "Add General / Detail Subject Link" +msgstr "添加常規/詳細主題連結" + +#: ajax_forms/getResourceSubjectForm.php:14 +msgid "General Subject Name" +msgstr "一般主題名稱" + +#: ajax_forms/getResourceSubjectForm.php:15 +msgid "Detail Subject Name" +msgstr "詳細主題名稱" + +#: ajax_forms/getResourceSubjectForm.php:26 +#: ajax_forms/getResourceSubjectForm.php:33 +msgid "add" +msgstr "添加" + +#: ajax_forms/getResourceSubjectForm.php:44 +#: ajax_htmldata/getAdminAlertDisplay.php:35 +#: ajax_htmldata/getAdminAlertDisplay.php:65 +#: ajax_htmldata/getAdminDisplay.php:35 +#: ajax_htmldata/getAdminSubjectDisplay.php:41 +#: ajax_htmldata/getAdminSubjectDisplay.php:81 +#: ajax_htmldata/getAdminSubjectDisplay.php:123 +#: ajax_htmldata/getAdminUserDisplay.php:58 +#: ajax_htmldata/getAdminWorkflowDisplay.php:49 +#: ajax_htmldata/getAdminWorkflowDisplay.php:100 +#: ajax_htmldata/getGeneralSubjectDisplay.php:35 +msgid "(none found)" +msgstr "(未找到)" + +#: ajax_forms/getUpdateProductForm.php:72 +msgid "Edit Resource" +msgstr "編輯資源" + +#: ajax_forms/getUpdateProductForm.php:118 +msgid "Parents:" +msgstr "父級:" + +#: ajax_forms/getUpdateProductForm.php:124 +msgid "add Parent Resource" +msgstr "添加父資源" + +#: ajax_forms/getUpdateProductForm.php:148 +#: ajax_htmldata/getProductDetails.php:197 summary.php:292 +msgid "ISSN / ISBN:" +msgstr "ISBN / ISSN:" + +#: ajax_forms/getUpdateProductForm.php:153 +msgid "add Isbn" +msgstr "添加 ISBN:" + +#: ajax_forms/getUpdateProductForm.php:243 +msgid "Role:" +msgstr "角色:" + +#: ajax_forms/getUpdateProductForm.php:266 +msgid "add organization" +msgstr "添加組織" + +#: ajax_forms/getUpdateProductForm.php:306 +msgid "remove organization" +msgstr "移除組織" + +#: ajax_forms/getUpdateProductForm.php:306 +msgid "organization" +msgstr "組織" + +#: ajax_forms/getUpdateProductForm.php:328 +msgid "Aliases" +msgstr "別名" + +#: ajax_forms/getUpdateProductForm.php:337 +msgid "Alias:" +msgstr "別名:" + +#: ajax_forms/getUpdateProductForm.php:359 +msgid "add alias" +msgstr "添加別名" + +#: ajax_htmldata.php:27 +msgid "Data action " +msgstr "資料動作" + +#: ajax_htmldata/getAccessDetails.php:31 summary.php:611 +msgid "Access Information" +msgstr "存取資訊" + +#: ajax_htmldata/getAccessDetails.php:35 ajax_htmldata/getAccessDetails.php:170 +#: ajax_htmldata/getAccountDetails.php:44 +#: ajax_htmldata/getAcquisitionsDetails.php:103 +#: ajax_htmldata/getAcquisitionsDetails.php:174 +#: ajax_htmldata/getAcquisitionsDetails.php:267 +#: ajax_htmldata/getAcquisitionsDetails.php:370 +#: ajax_htmldata/getAdminAlertDisplay.php:25 +#: ajax_htmldata/getAdminAlertDisplay.php:55 +#: ajax_htmldata/getAdminCurrencyDisplay.php:25 +#: ajax_htmldata/getAdminDisplay.php:25 +#: ajax_htmldata/getAdminSubjectDisplay.php:66 +#: ajax_htmldata/getAdminSubjectDisplay.php:114 +#: ajax_htmldata/getAdminUserDisplay.php:47 +#: ajax_htmldata/getAdminWorkflowDisplay.php:39 +#: ajax_htmldata/getAdminWorkflowDisplay.php:90 +#: ajax_htmldata/getAttachmentDetails.php:35 +#: ajax_htmldata/getContactDetails.php:68 +#: ajax_htmldata/getGeneralSubjectDisplay.php:25 +#: ajax_htmldata/getProductDetails.php:69 +#: ajax_htmldata/getProductDetails.php:419 ajax_htmldata/getSavedQueue.php:49 +msgid "edit" +msgstr "編輯" + +#: ajax_htmldata/getAccessDetails.php:35 +#: ajax_htmldata/getAcquisitionsDetails.php:267 +#: ajax_htmldata/getProductDetails.php:69 +msgid "edit resource" +msgstr "編輯資源" + +#: ajax_htmldata/getAccessDetails.php:43 summary.php:625 +msgid "Administering Sites:" +msgstr "管理網站:" + +#: ajax_htmldata/getAccessDetails.php:50 summary.php:458 +msgid "Authorized Sites:" +msgstr "授權網站:" + +#: ajax_htmldata/getAccessDetails.php:65 summary.php:639 +msgid "Username / Password:" +msgstr "使用者名 / 密碼︰" + +#: ajax_htmldata/getAccessDetails.php:80 summary.php:654 +msgid "Registered IP Address:" +msgstr "註冊的 IP 地址:" + +#: ajax_htmldata/getAccessDetails.php:109 +msgid "No access information available" +msgstr "沒有可用的存取資訊" + +#: ajax_htmldata/getAccessDetails.php:116 +msgid "edit access information" +msgstr "編輯存取資訊" + +#: ajax_htmldata/getAccessDetails.php:159 +#: ajax_htmldata/getAcquisitionsDetails.php:359 +#: ajax_htmldata/getProductDetails.php:408 resources/cataloging.php:209 +msgid "Additional Notes" +msgstr "附加備註" + +#: ajax_htmldata/getAccessDetails.php:162 +#: ajax_htmldata/getAccessDetails.php:181 +#: ajax_htmldata/getAcquisitionsDetails.php:362 +#: ajax_htmldata/getAcquisitionsDetails.php:381 +#: ajax_htmldata/getProductDetails.php:411 +#: ajax_htmldata/getProductDetails.php:430 resources/cataloging.php:212 +#: resources/cataloging.php:231 +msgid "add new note" +msgstr "添加新備註" + +#: ajax_htmldata/getAccessDetails.php:170 +#: ajax_htmldata/getAcquisitionsDetails.php:370 +#: ajax_htmldata/getProductDetails.php:419 resources/cataloging.php:220 +msgid "edit note" +msgstr "編輯備註" + +#: ajax_htmldata/getAccessDetails.php:170 +#: ajax_htmldata/getAcquisitionsDetails.php:370 +#: ajax_htmldata/getContactDetails.php:69 +#: ajax_htmldata/getProductDetails.php:419 resources/cataloging.php:220 +msgid "remove note" +msgstr "移除備註" + +#: ajax_htmldata/getAccountDetails.php:14 +#: ajax_htmldata/getContactDetails.php:35 +msgid "Resource Specific:" +msgstr "特定于資源:" + +#: ajax_htmldata/getAccountDetails.php:18 +msgid "No Resource Specific Accounts" +msgstr "無特定資源的帳戶" + +#: ajax_htmldata/getAccountDetails.php:22 +#: ajax_htmldata/getAccountDetails.php:119 +msgid "add new account" +msgstr "添加新帳戶" + +#: ajax_htmldata/getAccountDetails.php:27 +#: ajax_htmldata/getContactDetails.php:48 +msgid "Inherited:" +msgstr "已繼承:" + +#: ajax_htmldata/getAccountDetails.php:44 +msgid "edit account" +msgstr "編輯帳戶" + +#: ajax_htmldata/getAccountDetails.php:44 +msgid "remove account" +msgstr "移除帳戶" + +#: ajax_htmldata/getAccountDetails.php:57 +msgid "Visit Account in Organizations Module" +msgstr "在組織模組中存取帳戶" + +#: ajax_htmldata/getAccountDetails.php:65 +msgid "Visit Login URL" +msgstr "造訪登入 URL" + +#: ajax_htmldata/getAccountDetails.php:72 +msgid "User Name:" +msgstr "使用者名稱:" + +#: ajax_htmldata/getAccountDetails.php:88 +#: ajax_htmldata/getContactDetails.php:173 +msgid "Last Updated:" +msgstr "最後更新:" + +#: ajax_htmldata/getAccountDetails.php:114 +msgid "No accounts available" +msgstr "無可用的帳戶" + +#: ajax_htmldata/getAcquisitionsDetails.php:103 +#: ajax_htmldata/getAcquisitionsDetails.php:162 resources/cataloging.php:106 +msgid "edit order information" +msgstr "編輯訂單資訊" + +#: ajax_htmldata/getAcquisitionsDetails.php:130 +msgid "catalog view" +msgstr "目錄檢視" + +#: ajax_htmldata/getAcquisitionsDetails.php:139 +msgid "Purchasing Sites:" +msgstr "採購網站:" + +#: ajax_htmldata/getAcquisitionsDetails.php:155 summary.php:475 +msgid "Expiration Alert Enabled" +msgstr "過期提醒已啟用" + +#: ajax_htmldata/getAcquisitionsDetails.php:174 +#: ajax_htmldata/getAcquisitionsDetails.php:256 +msgid "edit cost history" +msgstr "編輯成本歷史紀錄" + +#: ajax_htmldata/getAcquisitionsDetails.php:192 +msgid "Details" +msgstr "詳細資訊" + +#: ajax_htmldata/getAcquisitionsDetails.php:250 +msgid "No payment information available" +msgstr "無可用的付款資訊" + +#: ajax_htmldata/getAcquisitionsDetails.php:265 summary.php:511 +msgid "License" +msgstr "授權" + +#: ajax_htmldata/getAcquisitionsDetails.php:279 summary.php:522 +msgid " on " +msgstr "于" + +#: ajax_htmldata/getAcquisitionsDetails.php:292 summary.php:533 +msgid "Licenses:" +msgstr "授權:" + +#: ajax_htmldata/getAcquisitionsDetails.php:298 +msgid "View License" +msgstr "查看授權" + +#: ajax_htmldata/getAcquisitionsDetails.php:301 summary.php:542 +msgid "No associated licenses available." +msgstr "無可用的關聯授權。" + +#: ajax_htmldata/getAcquisitionsDetails.php:315 +msgid "edit license and status" +msgstr "編輯授權和狀態" + +#: ajax_htmldata/getAcquisitionsDetails.php:317 +msgid "edit license status" +msgstr "編輯授權狀態" + +#: ajax_htmldata/getAdminAlertDisplay.php:26 +#: ajax_htmldata/getAdminAlertDisplay.php:56 +#: ajax_htmldata/getAdminCurrencyDisplay.php:26 +#: ajax_htmldata/getAdminDisplay.php:26 +#: ajax_htmldata/getAdminSubjectDisplay.php:28 +#: ajax_htmldata/getAdminSubjectDisplay.php:69 +#: ajax_htmldata/getAdminUserDisplay.php:48 +#: ajax_htmldata/getAdminWorkflowDisplay.php:40 +#: ajax_htmldata/getAdminWorkflowDisplay.php:91 +#: ajax_htmldata/getGeneralSubjectDisplay.php:26 +msgid "remove" +msgstr "移除" + +#: ajax_htmldata/getAdminAlertDisplay.php:38 +msgid "add email address" +msgstr "添加電子郵件地址" + +#: ajax_htmldata/getAdminAlertDisplay.php:46 +msgid "Days in advance of expiration" +msgstr "到期之前天數" + +#: ajax_htmldata/getAdminAlertDisplay.php:71 +msgid "add days" +msgstr "添加天數" + +#: ajax_htmldata/getAdminCurrencyDisplay.php:38 +msgid "add new currency" +msgstr "添加新貨幣" + +#: ajax_htmldata/getAdminDisplay.php:16 +#: ajax_htmldata/getAdminSubjectDisplay.php:57 +#: ajax_htmldata/getGeneralSubjectDisplay.php:16 +msgid "Value" +msgstr "值" + +#: ajax_htmldata/getAdminDisplay.php:38 +#: ajax_htmldata/getAdminSubjectDisplay.php:44 +#: ajax_htmldata/getAdminSubjectDisplay.php:84 +#: ajax_htmldata/getGeneralSubjectDisplay.php:38 +msgid "add new " +msgstr "新增" + +#: ajax_htmldata/getAdminImportConfigDisplay.php:34 +msgid "add new import configuration" +msgstr "添加新的輸入設定" + +#: ajax_htmldata/getAdminSubjectDisplay.php:51 +#: ajax_htmldata/getAdminSubjectDisplay.php:99 index.php:300 +msgid "Detailed Subject" +msgstr "詳細的主題" + +#: ajax_htmldata/getAdminSubjectDisplay.php:92 +msgid "Subject Relationships" +msgstr "主題關係" + +#: ajax_htmldata/getAdminUserDisplay.php:47 +msgid "edit user" +msgstr "編輯使用者" + +#: ajax_htmldata/getAdminUserDisplay.php:54 +#: ajax_htmldata/getAdminUserDisplay.php:58 +msgid "add new user" +msgstr "新增使用者" + +#: ajax_htmldata/getAdminWorkflowDisplay.php:10 +msgid "Workflow Setup" +msgstr "工作流設定" + +#: ajax_htmldata/getAdminWorkflowDisplay.php:54 +msgid "add workflow" +msgstr "添加工作流" + +#: ajax_htmldata/getAdminWorkflowDisplay.php:56 +msgid "You must set up at least one user group before you can add workflows" +msgstr "在添加工作流之前,您必須設定至少一個使用者組" + +#: ajax_htmldata/getAdminWorkflowDisplay.php:66 +msgid "User Group Setup" +msgstr "使用者組設定" + +#: ajax_htmldata/getAdminWorkflowDisplay.php:72 +msgid "Group Name" +msgstr "組名稱" + +#: ajax_htmldata/getAdminWorkflowDisplay.php:104 +msgid "add user group" +msgstr "添加使用者組" + +#: ajax_htmldata/getAttachmentDetails.php:30 +msgid "view attachment" +msgstr "查看附件" + +#: ajax_htmldata/getAttachmentDetails.php:35 +msgid "edit attachment" +msgstr "編輯附件" + +#: ajax_htmldata/getAttachmentDetails.php:35 +msgid "remove this attachment" +msgstr "移除該附件" + +#: ajax_htmldata/getAttachmentDetails.php:67 +msgid "No attachments available" +msgstr "無可用的附件" + +#: ajax_htmldata/getAttachmentDetails.php:72 +msgid "add new attachment" +msgstr "添加新附件" + +#: ajax_htmldata/getContactDetails.php:23 +msgid "The following are archived contacts:" +msgstr "以下是已歸檔的連絡人:" + +#: ajax_htmldata/getContactDetails.php:39 +msgid "No Resource Specific Contacts" +msgstr "無特定資源的連絡人" + +#: ajax_htmldata/getContactDetails.php:68 +msgid "edit contact" +msgstr "編輯連絡人" + +#: ajax_htmldata/getContactDetails.php:69 +msgid "remove contact" +msgstr "移除連絡人" + +#: ajax_htmldata/getContactDetails.php:84 +msgid "Visit Contact in Organizations Module" +msgstr "在組織模組中存取連絡人" + +#: ajax_htmldata/getContactDetails.php:92 +msgid "No longer valid:" +msgstr "不再有效:" + +#: ajax_htmldata/getContactDetails.php:116 +msgid "Location:" +msgstr "位置:" + +#: ajax_htmldata/getContactDetails.php:195 +msgid "No contacts available" +msgstr "無可用的連絡人" + +#: ajax_htmldata/getContactDetails.php:205 +msgid " archived contact(s) available." +msgstr "可用的已存檔連絡人。" + +#: ajax_htmldata/getContactDetails.php:205 +msgid "show archived contacts" +msgstr "顯示已歸檔的連絡人" + +#: ajax_htmldata/getContactDetails.php:209 +msgid "hide archived contacts" +msgstr "隱藏已歸檔的連絡人" + +#: ajax_htmldata/getDowntimeList.php:23 +msgid "Downtime Resolved:" +msgstr "停機時間已解決:" + +#: ajax_htmldata/getDowntimeList.php:28 +msgid "Linked issue:" +msgstr "連結的問題:" + +#: ajax_htmldata/getDowntimeList.php:49 ajax_htmldata/getIssuesList.php:72 +msgid "Organizational" +msgstr "組織" + +#: ajax_htmldata/getDowntimeList.php:63 +msgid "There are no organization level downtimes." +msgstr "沒有組織層級的停機時間。" + +#: ajax_htmldata/getDowntimeList.php:74 ajax_htmldata/getIssuesList.php:97 +#: templates/header.php:96 +msgid "Resources" +msgstr "資源" + +#: ajax_htmldata/getDowntimeList.php:86 +msgid "There are no resource level downtimes." +msgstr "沒有資源層級的停機時間。" + +#: ajax_htmldata/getIssues.php:17 +msgid "Issues/Problems" +msgstr "問題" + +#: ajax_htmldata/getIssues.php:20 +msgid "report new issue" +msgstr "報告新問題" + +#: ajax_htmldata/getIssues.php:24 +msgid "view open issues" +msgstr "查看開放的問題" + +#: ajax_htmldata/getIssues.php:31 +msgid "view archived issues" +msgstr "查看已存檔的問題" + +#: ajax_htmldata/getIssues.php:40 +msgid "Downtime" +msgstr "停機時間" + +#: ajax_htmldata/getIssues.php:43 +msgid "report new Downtime" +msgstr "報告新的停機時間" + +#: ajax_htmldata/getIssues.php:47 +msgid "view current/upcoming downtime" +msgstr "查看當前和即將的停機時間" + +#: ajax_htmldata/getIssues.php:54 +msgid "view archived downtime" +msgstr "查看已歸檔的停機時間" + +#: ajax_htmldata/getIssuesList.php:15 +msgid "close" +msgstr "關閉" + +#: ajax_htmldata/getIssuesList.php:17 ajax_htmldata/getIssuesList.php:19 +msgid "downtime" +msgstr "停機時間" + +#: ajax_htmldata/getIssuesList.php:24 +msgid "Date reported:" +msgstr "報告日期:" + +#: ajax_htmldata/getIssuesList.php:28 +msgid "Date closed:" +msgstr "關閉日期:" + +#: ajax_htmldata/getIssuesList.php:34 +msgid "Contact(s):" +msgstr "連絡人:" + +#: ajax_htmldata/getIssuesList.php:86 +msgid "There are no organization level issues." +msgstr "沒有組織層級的問題。" + +#: ajax_htmldata/getIssuesList.php:109 +msgid "There are no resource level issues." +msgstr "沒有資源層級的問題。" + +#: ajax_htmldata/getOutstandingQueue.php:7 queue.php:51 +msgid "Outstanding Tasks" +msgstr "未完成的任務" + +#: ajax_htmldata/getOutstandingQueue.php:12 +msgid "No outstanding requests" +msgstr "沒有未完成的請求" + +#: ajax_htmldata/getOutstandingQueue.php:19 ajax_htmldata/getSavedQueue.php:17 +#: ajax_htmldata/getSearchResources.php:114 +#: ajax_htmldata/getSubmittedQueue.php:14 +msgid "ID" +msgstr "ID" + +#: ajax_htmldata/getOutstandingQueue.php:22 index.php:571 +msgid "Routing Step" +msgstr "傳遞步驟" + +#: ajax_htmldata/getOutstandingQueue.php:23 +#: ajax_htmldata/getRoutingDetails.php:24 +msgid "Start Date" +msgstr "開始日期" + +#: ajax_htmldata/getProductDetails.php:69 +msgid "remove resource" +msgstr "移除資源" + +#: ajax_htmldata/getProductDetails.php:69 +msgid "remove resource and its children" +msgstr "移除資源及其子資源" + +#: ajax_htmldata/getProductDetails.php:75 summary.php:206 +msgid "Record ID:" +msgstr "紀錄 ID:" + +#: ajax_htmldata/getProductDetails.php:115 summary.php:218 +msgid "Created:" +msgstr "建立於:" + +#: ajax_htmldata/getProductDetails.php:140 summary.php:244 +msgid "Last Update:" +msgstr "最後更新:" + +#: ajax_htmldata/getProductDetails.php:165 summary.php:269 +msgid "Related Products:" +msgstr "關聯產品:" + +#: ajax_htmldata/getProductDetails.php:173 +#: ajax_htmldata/getProductDetails.php:181 +msgid "view resource" +msgstr "檢視資源" + +#: ajax_htmldata/getProductDetails.php:173 +#: ajax_htmldata/getProductDetails.php:181 +#: ajax_htmldata/getProductDetails.php:235 +msgid "View " +msgstr "檢視" + +#: ajax_htmldata/getProductDetails.php:211 summary.php:301 +msgid "Aliases:" +msgstr "別名:" + +#: ajax_htmldata/getProductDetails.php:228 summary.php:318 +msgid "Organizations:" +msgstr "組織:" + +#: ajax_htmldata/getProductDetails.php:249 summary.php:339 +msgid "Resource URL:" +msgstr "資源 URL:" + +#: ajax_htmldata/getProductDetails.php:250 +msgid "Visit Resource URL" +msgstr "存取資源 URL" + +#: ajax_htmldata/getProductDetails.php:258 +msgid "Visit Secondary Resource URL" +msgstr "存取次級資源 URL" + +#: ajax_htmldata/getProductDetails.php:273 +msgid "edit product details" +msgstr "編輯產品詳細資訊" + +#: ajax_htmldata/getProductDetails.php:340 +msgid "remove subject" +msgstr "移除主題" + +#: ajax_htmldata/getProductDetails.php:361 +msgid "add new subject" +msgstr "添加新主題" + +#: ajax_htmldata/getRightPanel.php:40 +msgid "Print View" +msgstr "列印檢視" + +#: ajax_htmldata/getRightPanel.php:42 +msgid "Catalog View" +msgstr "目錄檢視" + +#: ajax_htmldata/getRightPanel.php:50 +msgid "Parent Record(s)" +msgstr "父紀錄" + +#: ajax_htmldata/getRightPanel.php:58 +msgid "Child Record(s)" +msgstr "子紀錄" + +#: ajax_htmldata/getRightPanel.php:77 +msgid "Organizations Module" +msgstr "組織模組" + +#: ajax_htmldata/getRightPanel.php:93 +msgid "Licensing Module" +msgstr "授權模組" + +#: ajax_htmldata/getRightPanel.php:111 +msgid "Usage Statistics Module" +msgstr "使用統計資訊模組" + +#: ajax_htmldata/getRightPanel.php:117 +msgid "Get Statistics" +msgstr "取得統計資訊" + +#: ajax_htmldata/getRoutingDetails.php:13 +msgid "No workflow steps have been set up for this resource's combination of Acquisition Type and Resource Format." +msgstr "尚未為該資源的「採訪類型」和「資源格式」組合設定工作流步驟。" + +#: ajax_htmldata/getRoutingDetails.php:13 +msgid "If you think this is in error, please contact your workflow administrator." +msgstr "如果您認為這是一個錯誤,則請聯絡您的工作流管理員。" + +#: ajax_htmldata/getRoutingDetails.php:15 +msgid "Not entered into workflow." +msgstr "未進入工作流。" + +#: ajax_htmldata/getRoutingDetails.php:21 +msgid "Step" +msgstr "步驟" + +#: ajax_htmldata/getRoutingDetails.php:23 +msgid "Group" +msgstr "組" + +#: ajax_htmldata/getRoutingDetails.php:25 +msgid "Complete" +msgstr "完成" + +#: ajax_htmldata/getRoutingDetails.php:26 +msgid "Delete" +msgstr "刪除" + +#: ajax_htmldata/getRoutingDetails.php:60 +msgid "mark complete" +msgstr "標記為已完成" + +#: ajax_htmldata/getRoutingDetails.php:88 +#: ajax_htmldata/getRoutingDetails.php:90 +msgid "Workflow completed on " +msgstr "工作流完成于" + +#: ajax_htmldata/getRoutingDetails.php:94 +#: ajax_htmldata/getRoutingDetails.php:96 +msgid "Workflow restarted on " +msgstr "工作流重新開機于" + +#: ajax_htmldata/getRoutingDetails.php:106 +msgid "restart workflow" +msgstr "重新開機工作流" + +#: ajax_htmldata/getRoutingDetails.php:107 +msgid "mark entire workflow complete" +msgstr "將整個工作流標記為完成" + +#: ajax_htmldata/getSavedQueue.php:6 queue.php:52 +msgid "Saved Requests" +msgstr "已保存的請求" + +#: ajax_htmldata/getSavedQueue.php:11 +msgid "No saved requests" +msgstr "無已保存的請求" + +#: ajax_htmldata/getSavedQueue.php:19 ajax_htmldata/getSearchResources.php:117 +#: ajax_htmldata/getSubmittedQueue.php:16 +msgid "Date Created" +msgstr "建立日期" + +#: ajax_htmldata/getSavedQueue.php:21 ajax_htmldata/getSearchResources.php:119 +#: ajax_htmldata/getSubmittedQueue.php:18 index.php:141 +msgid "Status" +msgstr "狀態" + +#: ajax_htmldata/getSavedQueue.php:49 +msgid "edit request" +msgstr "編輯請求" + +#: ajax_htmldata/getSavedQueue.php:50 +msgid "remove request" +msgstr "移除請求" + +#: ajax_htmldata/getSearchResources.php:38 +msgid "Sorry, no requests fit your query" +msgstr "抱歉,沒有符合您查詢的請求" + +#: ajax_htmldata/getSearchResources.php:53 +#, php-format +msgid "Displaying %d to %d of %d Resource Record" +msgid_plural "Displaying %d to %d of %d Resource Records" +msgstr[0] "顯示第 %d 到第 %d 條紀錄,共 %d 條資源紀錄" + +#: ajax_htmldata/getSearchResources.php:66 +#: ajax_htmldata/getSearchResources.php:163 +msgid "previous page" +msgstr "上一頁" + +#: ajax_htmldata/getSearchResources.php:100 +#: ajax_htmldata/getSearchResources.php:197 +msgid "next page" +msgstr "下一頁" + +#: ajax_htmldata/getSearchResources.php:116 index.php:172 +msgid "Creator" +msgstr "作者" + +#: ajax_htmldata/getSearchResources.php:214 +msgid "records per page" +msgstr "條紀錄/頁" + +#: ajax_htmldata/getSubmittedQueue.php:5 queue.php:53 +msgid "Submitted Requests" +msgstr "提交的請求" + +#: ajax_htmldata/getSubmittedQueue.php:8 +msgid "No submitted requests" +msgstr "無提交的請求" + +#: ajax_processing.php:27 +msgid "Processing action " +msgstr "處理動作" + +#: ajax_processing/deleteDetailedSubject.php:12 +#: ajax_processing/deleteGeneralSubject.php:12 +#: ajax_processing/deleteInstance.php:18 +msgid "Unable to delete. Please make sure no resources are set up with this information." +msgstr "無法刪除。請確保不要用此資訊設立任何資源。" + +#: ajax_processing/deleteImportConfig.php:7 +msgid "Import configuration successfully deleted." +msgstr "已成功刪除輸入設定。" + +#: ajax_processing/deleteInstance.php:12 +msgid "Unable to delete - this " +msgstr "無法刪除-這個" + +#: ajax_processing/deleteInstance.php:12 +msgid " is in use. Please make sure no resources are set up with this information." +msgstr "正在使用中。請確保不要用此資訊設立任何資源。" + +#: ajax_processing/deleteResource.php:7 +#: ajax_processing/deleteResourceAndChildren.php:8 +msgid "Resource successfully deleted." +msgstr "已成功刪除資源。" + +#: ajax_processing/deleteResourceNote.php:7 +msgid "Note successfully deleted." +msgstr "已成功刪除的備註。" + +#: ajax_processing/removeResourceSubjectRelationship.php:10 +msgid "Subject successfully removed." +msgstr "已成功移除主題。" + +#: ajax_processing/updateDetailedSubject.php:22 +#: ajax_processing/updateGeneralSubject.php:21 +msgid "A duplicate " +msgstr "一個重複的" + +#: ajax_processing/updateDetailedSubject.php:22 +#: ajax_processing/updateGeneralSubject.php:21 +msgid " exists." +msgstr "存在。" + +#: ajax_processing/updateUserData.php:26 +msgid "User successfully saved." +msgstr "使用者已成功存檔。" + +#: ajax_processing/uploadAttachment.php:29 +msgid "There was a problem saving your file to " +msgstr "保存您的檔時出錯" + +#: ajax_processing/uploadAttachment.php:29 +msgid ". Please ensure your attachments directory is writable." +msgstr "。請確保您的附件目錄可寫。" + +#: import.php:15 +msgid "Resources import" +msgstr "資源輸入" + +#: import.php:18 +msgid "Delimited File Import" +msgstr "分隔的檔輸入" + +#: import.php:38 importFunds.php:21 +msgid "The file has been successfully uploaded." +msgstr "已成功上傳該檔。" + +#: import.php:52 importFunds.php:31 +msgid "Unable to get columns headers from the file" +msgstr "無法從檔取得欄標題" + +#: import.php:58 importFunds.php:34 +msgid "Unable to open the uploaded file" +msgstr "無法打開已上傳的檔" + +#: import.php:63 +msgid "Unable to upload the file" +msgstr "無法上傳檔" + +#: import.php:67 importFunds.php:37 +msgid "Error: " +msgstr "錯誤:" + +#: import.php:71 +msgid "If you have not previously created an Import Configuration, then for each of the resource fields please input the number of the column in your CSV file that corresponds to the resource field. For example, if your import file has a second column called Name that corresponds to the Resource Title, then you would input 2 for the value for the Resource Title field. For columns with multiple values that are character-delimited, indicate the delimiter using the If delimited, delimited by field. For fields with values across multiple columns, add additional sets using the +Add another links. Use the Dedupe on this column option for ISBN/ISSN sets to ignore any duplicate values that might occur across those columns. The Alias Types, Note Types, and Organization Roles that you can assign to your mapped columns can be configured on the Admin page." +msgstr "如果您之前尚未建立一個「輸入設定」,那麼對於每一個資源欄位,請在您的 CSV 檔中輸入與資源欄位對應的列數。例如,如果在您的輸入檔中與「資源標題」相對應的列是稱作「名稱」的第二列,那麼您需要為「資源標題」欄位輸入值「2」。對於包含多個被字元分隔的值的列,使用 If 指示分隔符號,並按欄位分隔。對於包含跨多列的值的欄位,使用「+添加另一個連結」以添加集。為 ISBN/ISSN 集使用該列選項的「消除重復資料」功能可以忽略任何可能出現在這些列中的重複值。您可以在「管理員」頁面設定可將之分配給您的對照列的「別名類型」、「備註類型」和「組織角色」。" + +#: import.php:72 +msgid "Please select the import configuration to load: " +msgstr "請選擇要上傳的輸入設定:" + +#: import.php:73 +msgid "Select Configuration" +msgstr "選擇設定" + +#: import.php:80 +msgid "Please choose columns from your CSV file:" +msgstr "請從您的 CSV 檔選擇列:" + +#: import.php:259 +msgid "Settings" +msgstr "設定" + +#: import.php:260 +msgid "Importing and deduping isbnOrISSN on the following columns: " +msgstr "在下列列中輸入和消除重復資料 isbnOrISSN:" + +#: import.php:509 +msgid "Organization " +msgstr "組織" + +#: import.php:509 +msgid " could not be added." +msgstr "無法被添加。" + +#: import.php:522 import.php:546 +msgid "Error: more than one organization is called " +msgstr "錯誤:多於一個組織被稱為" + +#: import.php:522 +msgid ". Please consider deduping." +msgstr "。請考慮消除重復資料。" + +#: import.php:546 +msgid " Please consider deduping." +msgstr "請考慮消除重復資料。" + +#: import.php:612 importFunds.php:52 +msgid "Results" +msgstr "結果" + +#: import.php:613 +msgid " rows have been processed. " +msgstr "行已被處理。" + +#: import.php:613 +msgid " rows have been inserted." +msgstr "行已被插入。" + +#: import.php:614 +msgid " parents have been created. " +msgstr "父級已被建立。" + +#: import.php:614 +msgid " resources have been attached to an existing parent." +msgstr "個資源已被附加到一個現有父級。" + +#: import.php:615 +msgid " organizations have been created" +msgstr "個組織已被建立" + +#: import.php:625 +msgid " resources have been attached to an existing organization." +msgstr "個資源已被附加到一個現有組織。" + +#: import.php:626 +msgid " resource types have been created" +msgstr "個資源類型已被建立" + +#: import.php:627 +msgid " resource formats have been created" +msgstr "個資源格式已被建立" + +#: import.php:628 +msgid " general subjects have been created" +msgstr "個一般主題已被建立" + +#: import.php:629 +msgid " aliases have been created" +msgstr "個別名已被建立" + +#: import.php:630 +msgid " notes have been created" +msgstr "個備註已被建立" + +#: import.php:636 +msgid "The first line of the CSV file must contain column names, and not data. These names will be used during the import process." +msgstr "CSV 檔的第一行必須包含列名稱而不是資料。這些名稱將在輸入過程中使用。" + +#: import.php:639 +msgid "File selection" +msgstr "檔選擇" + +#: import.php:640 +msgid "CSV File" +msgstr "CSV 檔" + +#: import.php:644 +msgid "Import options" +msgstr "輸入選項" + +#: import.php:645 +msgid "CSV delimiter" +msgstr "CSV 分隔符號" + +#: import.php:647 +msgid "(comma)" +msgstr "(逗號)" + +#: import.php:648 +msgid "(semicolon)" +msgstr "(分號)" + +#: import.php:649 +msgid "(pipe)" +msgstr "(管道符號)" + +#: import.php:652 +msgid "Upload" +msgstr "上傳" + +#: importFunds.php:53 +msgid "rows have been processed." +msgstr "行已被處理。" + +#: importFunds.php:63 +msgid "import" +msgstr "輸入" + +#: index.php:26 templates/header.php:168 +msgid "Home" +msgstr "主頁" + +#: index.php:58 +msgid "Search" +msgstr "查詢" + +#: index.php:59 +msgid "new search" +msgstr "新的查詢" + +#: index.php:68 +msgid "Name (contains)" +msgstr "名稱 (包含)" + +#: index.php:72 index.php:83 index.php:264 index.php:396 index.php:413 +msgid "go!" +msgstr "搜尋!" + +#: index.php:79 +msgid "ISBN/ISSN" +msgstr "ISBN/ISSN" + +#: index.php:96 index.php:98 index.php:236 index.php:238 index.php:277 +#: index.php:279 index.php:308 index.php:310 index.php:369 index.php:371 +#: index.php:427 index.php:429 index.php:459 index.php:461 index.php:491 +#: index.php:493 index.php:521 index.php:523 index.php:550 index.php:552 +msgid "(none)" +msgstr "(無)" + +#: index.php:121 index.php:144 index.php:175 index.php:207 index.php:231 +#: index.php:272 index.php:303 index.php:365 index.php:423 index.php:455 +#: index.php:487 index.php:517 index.php:547 index.php:574 index.php:595 +msgid "All" +msgstr "所有" + +#: index.php:260 +msgid "Record ID" +msgstr "紀錄 ID" + +#: index.php:331 +msgid "Starts with" +msgstr "開始字母" + +#: index.php:392 +msgid "Note (contains)" +msgstr "注釋(包含)" + +#: index.php:404 +msgid "Date Created Between" +msgstr "建立日期介於" + +#: index.php:406 +msgid "and" +msgstr "和" + +#: index.php:420 +msgid "Purchase Site" +msgstr "購買網站" + +#: index.php:596 +msgid "Parent" +msgstr "父" + +#: index.php:597 +msgid "Child" +msgstr "子" + +#: queue.php:22 queue.php:40 templates/header.php:183 +msgid "My Queue" +msgstr "我的佇列" + +#: resource.php:54 +msgid "Success!" +msgstr "成功!" + +#: resource.php:54 +msgid "New resource added" +msgstr "添加的新資源" + +#: resource.php:241 +msgid "Helpful Links" +msgstr "有用的連結" + +#: resource.php:251 +msgid "Send feedback on this resource" +msgstr "發送該資源的回饋" + +#: resources/cataloging.php:103 summary.php:730 +msgid "Cataloging" +msgstr "編目" + +#: resources/cataloging.php:114 summary.php:736 +msgid "Identifier:" +msgstr "識別碼:" + +#: resources/cataloging.php:120 +msgid "Source URL:" +msgstr "源URL:" + +#: resources/cataloging.php:121 +msgid "Visit Source URL" +msgstr "訪問源 URL" + +#: resources/cataloging.php:128 summary.php:750 +msgid "Cataloging Type:" +msgstr "編目類型:" + +#: resources/cataloging.php:136 summary.php:758 +msgid "Cataloging Status:" +msgstr "編目狀態:" + +#: resources/cataloging.php:141 +msgid "Number of Records Available" +msgstr "可用的紀錄數目" + +#: resources/cataloging.php:142 summary.php:764 +msgid "# Records Available:" +msgstr "# 條紀錄可用:" + +#: resources/cataloging.php:147 +msgid "Number of Records Loaded" +msgstr "上傳紀錄數目" + +#: resources/cataloging.php:148 summary.php:770 +msgid "# Records Loaded:" +msgstr "# 條紀錄已上傳:" + +#: resources/cataloging.php:153 summary.php:776 +msgid "OCLC Holdings:" +msgstr "OCLC 館藏:" + +#: resources/cataloging.php:154 summary.php:777 +msgid "Yes" +msgstr "是" + +#: resources/cataloging.php:154 summary.php:777 +msgid "No" +msgstr "否" + +#: resources/cataloging.php:159 summary.php:783 +msgid "No cataloging information available." +msgstr "無可用的編目資訊。" + +#: resources/cataloging.php:165 +msgid "edit cataloging details" +msgstr "編輯編目詳細資訊" + +#: resources/cataloging_edit.php:15 +msgid "Edit Cataloging" +msgstr "編輯編目" + +#: resources/cataloging_edit.php:24 +msgid "Record Set" +msgstr "紀錄集" + +#: resources/cataloging_edit.php:36 +msgid "Identifier" +msgstr "識別碼" + +#: resources/cataloging_edit.php:42 +msgid "Source URL" +msgstr "源URL" + +#: resources/cataloging_edit.php:68 +msgid "# Records Available" +msgstr "# 條紀錄可用:" + +#: resources/cataloging_edit.php:75 +msgid "# Records Loaded" +msgstr "# 條紀錄已上傳:" + +#: resources/cataloging_edit.php:82 +msgid "OCLC Holdings" +msgstr "OCLC 館藏" + +#: sendAlerts.php:74 +msgid "No Resources found fitting alert day criteria" +msgstr "未找到符合提醒日期標準的資源" + +#: sendAlerts.php:96 +msgid "No Issues found fitting alert day criteria" +msgstr "未找到符合提醒日期標準的問題" + +#: sendAlerts.php:99 +msgid "Alerts not enabled in configuration.ini file" +msgstr "未在 configuration.ini 檔中啟用提醒" + +#: setuser.php:44 +msgid "LDAP Connection is not working or has timed out. Please check configuration.ini to verify settings." +msgstr "LDAP 連線故障或已逾時。 請檢查 configuration.ini 驗證設定。" + +#: summary.php:34 +msgid " Summary" +msgstr "摘要" + +#: summary.php:275 +msgid "(Parent)" +msgstr "(父)" + +#: summary.php:402 +msgid "Additional Product Notes" +msgstr "附加的產品備註" + +#: summary.php:451 +msgid "Purchasing Site:" +msgstr "採購網站:" + +#: summary.php:501 +msgid "No payment information available." +msgstr "無可用的付款資訊" + +#: summary.php:589 +msgid "Additional Acquisitions Notes" +msgstr "附加採訪備註" + +#: summary.php:619 +msgid "No access information available." +msgstr "沒有可用的存取資訊" + +#: summary.php:714 +msgid "Additional Access Notes" +msgstr "附加訪問注釋" + +#: summary.php:827 +msgid "Additional Cataloging Notes" +msgstr "附加編目備註" + +#: templates/header.php:76 +msgid "JavaScript must be enabled in order for you to use CORAL. However, it seems JavaScript is either disabled or not supported by your browser. To use CORAL, enable JavaScript by changing your browser options, then " +msgstr "先啟用JavaScript以後才能使用COREL。然而,您的瀏覽器似乎停用了JavaScript,不然就是不支援JavaScript。要使用COREL,先到瀏覽器選項內更改為啟用JavaScript,然後" + +#: templates/header.php:76 +msgid "try again" +msgstr "再試一次" + +#: templates/header.php:97 +msgid "Powered by" +msgstr "技術支持:" + +#: templates/header.php:103 +msgid "Hello" +msgstr "你好" + +#: templates/header.php:113 +msgid "logout" +msgstr "登出" + +#: templates/header.php:113 +msgid "Help" +msgstr "説明" + +#: templates/header.php:131 +msgid "Invalid translation route!" +msgstr "不正確翻譯路線 !" + +#: templates/header.php:176 +msgid "New Resource" +msgstr "新資源" + +#: templates/header.php:190 +msgid "File Import" +msgstr "檔輸入" + +#: templates/header.php:198 +msgid "Admin" +msgstr "管理員" + +#: templates/header.php:217 +msgid "Change Module" +msgstr "更改模組" + +#: templates/header.php:220 +msgid "Main Menu" +msgstr "主菜單" + +#: templates/header.php:230 +msgid "Licensing" +msgstr "授權" + +#: templates/header.php:235 +msgid "Usage Statistics" +msgstr "使用統計資訊" + +#: templates/header.php:240 +msgid "Management" +msgstr "管理" + +#: user.php:102 +msgid "Login is not working. Check the .htaccess file and the remoteAuthVariableName specified in /admin/configuration.ini" +msgstr "登錄無法使用。請檢查.htaccess 檔,以及在 /admin/configuration.ini 中指定的 remoteAuthVariableName" diff --git a/usage/LangCodes.php b/usage/LangCodes.php index 13aa98417..7bff5380f 100644 --- a/usage/LangCodes.php +++ b/usage/LangCodes.php @@ -8,9 +8,9 @@ class LangCodes{ public function getLanguage($code){ $all_lang=array( 'fr_FR'=>'fr_FR', - 'en_US'=>'en_US'//, - //'zh_CN'=>'zh_CN', - //'zh_TW'=>'zh_TW', + 'en_US'=>'en_US', + 'zh_CN'=>'zh_CN', + 'zh_TW'=>'zh_TW'//, //'de_DE'=>'de_DE' ); return array_key_exists($code, $all_lang) ? $all_lang[$code] : "en_US"; @@ -18,12 +18,12 @@ public function getLanguage($code){ public function getNameLang($code_lang){ $name_lang=array( 'fr_FR'=>'Français', - 'en_US'=>'English'//, - //'zh_CN'=>'中文 (中国)', - //'zh_TW'=>'中文 (台灣)', + 'en_US'=>'English', + 'zh_CN'=>'中文 (简体)', + 'zh_TW'=>'中文 (正體)'//, //'de_DE'=>'Deutsch' ); return array_key_exists($code_lang, $name_lang) ? $name_lang[$code_lang] : "English"; } } -?> \ No newline at end of file +?> diff --git a/usage/locale/zh_CN/LC_MESSAGES/messages.mo b/usage/locale/zh_CN/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..a8bb3425d764082b5976a1e624918220b2c4ed8f GIT binary patch literal 27013 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 literal 0 HcmV?d00001 diff --git a/usage/locale/zh_CN/LC_MESSAGES/messages.po b/usage/locale/zh_CN/LC_MESSAGES/messages.po new file mode 100644 index 000000000..65cc21068 --- /dev/null +++ b/usage/locale/zh_CN/LC_MESSAGES/messages.po @@ -0,0 +1,1596 @@ +msgid "" +msgstr "" +"Project-Id-Version: messages\n" +"POT-Creation-Date: 2016-06-27 7:01-06:00\n" +"PO-Revision-Date: 2016-08-22 16:03-0600\n" +"Last-Translator: <>\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Basepath: ../../..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Generator: Poedit 1.8.8\n" +"X-Poedit-SearchPath-0: .\n" + +#: js/admin.js:62 +msgid "Do you really want to delete this user?" +msgstr "开始字母您确认要删除此用户吗?" + +#: js/admin.js:64 js/index.js:41 js/publisherPlatform.js:81 js/publisherPlatform.js:99 js/publisherPlatform.js:117 js/publisherPlatform.js:136 js/publisherPlatform.js:155 js/publisherPlatform.js:227 js/sushi.js:80 +msgid "Processing..." +msgstr "正在处理..." + +#: js/admin.js:121 js/reporting.js:61 +msgid "Error - Please enter a value." +msgstr "错误 - 请输入一个值。" + +#: js/admin.js:125 +msgid "Error - Please enter a valid email address." +msgstr "错误 - 请输入一个有效的电子邮件地址。" + +#: js/admin.js:135 +msgid "Do you really want to delete this email address?" +msgstr "您确认要删除该电子邮件吗?" + +#: js/admin.js:199 +msgid "Count over must be a number." +msgstr "超过计数必须为一个数字。" + +#: js/admin.js:200 +#, javascript-format +msgid "% over must be a number." +msgstr "% 超过必须为一个数字。" + +#: js/forms/externalLoginSubmitForm.js:54 +msgid "Please enter a username to continue" +msgstr "请输入一个用户名以继续" + +#: js/forms/externalLoginSubmitForm.js:58 +msgid "For security, please enter a password" +msgstr "出于安全原因,请输入一个密码" + +#: js/forms/identifierSubmitForm.js:71 +msgid "Identifier must be valid format." +msgstr "标识符必须是有效的格式。" + +#: js/forms/organizationForm.js:34 +msgid "This organization doesn't exist in the CORAL Organizations module." +msgstr "CORAL “组织”模块中不存在该组织。" + +#: js/forms/organizationForm.js:97 +msgid "This organization doesn't exist in the CORAL Organizations Module." +msgstr "CORAL“组织”模块中不存在该组织." + +#: js/forms/outlierSubmitForm.js:94 +msgid "Count is required. If you wish to remove the count the outlier should be ignored." +msgstr "计数是必需的。如果您希望移除计数,那么异常值应被忽略。" + +#: js/forms/overrideSubmitForm.js:58 +msgid "Count is required." +msgstr "计数是必需的。" + +#: js/forms/platformNoteSubmitForm.js:54 js/forms/publisherNoteSubmitForm.js:55 +msgid "Start Year must be 4 numbers and start with 19 or 20." +msgstr "“开始年份”必须是四位数,并以 19 或 20 开始。" + +#: js/forms/platformNoteSubmitForm.js:55 js/forms/publisherNoteSubmitForm.js:56 +msgid "End Year must be 4 numbers and start with 19 or 20." +msgstr "“结束年份”必须是四位数,并以 19 或 20 开始。" + +#: js/forms/platformNoteSubmitForm.js:56 +msgid "Please choose Yes or No for Counter Compliant." +msgstr "请为遵从 COUNTER 选择“是”或“否”。" + +#: js/forms/platformSubmitForm.js:71 +msgid "Platform must be entered." +msgstr "必须输入平台。" + +#: js/import.js:38 js/publisherPlatform.js:139 admin.php:16 admin.php:31 admin.php:46 +msgid "Loading..." +msgstr "正在加载..." + +#: js/import.js:65 +msgid "Please select a file." +msgstr "请选择一个文件。" + +#: js/index.js:133 ajax_htmldata.php:1541 publisherPlatformList.php:32 reporting.php:41 +msgid "show publisher list" +msgstr "显示出版商列表" + +#: js/index.js:139 +msgid "hide publisher list" +msgstr "隐藏出版商列表" + +#: js/publisherPlatform.js:175 +msgid "Do you really want to remove this interface note?" +msgstr "您确认要移除该界面注释吗?" + +#: js/publisherPlatform.js:193 +msgid "Do you really want to remove this Publisher note?" +msgstr "您确认要移除该出版商注释吗?" + +#: js/publisherPlatform.js:211 +msgid "Do you really want to remove this login information?" +msgstr "您确认要移除该登录信息吗?" + +#: js/publisherPlatform.js:226 +msgid "Do you really want to delete this month?" +msgstr "您确认要删除该月份吗?" + +#: js/publisherPlatform.js:244 +msgid "Do you really want to delete this " +msgstr "您确认要删除该" + +#: js/publisherPlatform.js:263 js/sushi.js:104 +msgid "Running..." +msgstr "正在运行..." + +#: js/publisherPlatformList.js:35 js/reporting.js:35 +msgid "show Publisher list" +msgstr "显示出版商列表" + +#: js/publisherPlatformList.js:39 js/reporting.js:39 +msgid "hide Publisher list" +msgstr "隐藏出版商列表" + +#: js/sushi.js:78 +msgid "Do you really want to delete this import?" +msgstr "您确认要删除该导入吗?" + +#: admin.php:2 +msgid "Administration" +msgstr "管理" + +#: admin.php:12 +msgid "Users" +msgstr "用户" + +#: admin.php:13 +msgid "add new user" +msgstr "添加新用户" + +#: admin.php:27 +msgid "Email addresses for logs" +msgstr "日志的电子邮件地址" + +#: admin.php:28 +msgid "add new email address" +msgstr "添加新的电子邮件地址" + +#: admin.php:43 +msgid "Outlier Parameters" +msgstr "异常值参数" + +#: admin/classes/common/DBService.php:39 +msgid "There was a problem with the database: " +msgstr "数据库出现一个问题:" + +#: admin/classes/common/LdapPerson.php:34 +msgid "Could not connect to " +msgstr "无法连接到" + +#: admin/classes/common/Object.php:63 +msgid "Cannot set value for undefined key (" +msgstr "无法为未定义的键设置值 (" + +#: admin/classes/common/Object.php:72 +msgid "Cannot get value for undefined key (" +msgstr "无法为未定义的键获取值 (" + +#: admin/classes/domain/ImportLog.php:36 +msgid " (via sushi)" +msgstr "(通过SUSHI)" + +#: admin/classes/domain/ImportLog.php:42 +msgid "Failed" +msgstr "失败" + +#: admin/classes/domain/ImportLog.php:44 +msgid "awaiting import" +msgstr "等待导入" + +#: admin/classes/domain/SushiService.php:186 +msgid "At least one report type must be set up!" +msgstr "必须至少设置一个报表类型!" + +#: admin/classes/domain/SushiService.php:188 +msgid "Connection test successful!" +msgstr "连接测试成功!" + +#: admin/classes/domain/SushiService.php:211 +msgid "No report types are set up!" +msgstr "未设置报表类型!" + +#: ajax_forms.php:39 ajax_forms.php:167 ajax_forms.php:256 ajax_forms.php:353 ajax_forms.php:420 ajax_forms.php:485 ajax_forms.php:978 +msgid "Update" +msgstr "更新" + +#: ajax_forms.php:43 ajax_forms.php:256 ajax_forms.php:362 ajax_forms.php:426 ajax_forms.php:489 +msgid "Add" +msgstr "添加" + +#: ajax_forms.php:55 +msgid "Email Address" +msgstr "电子邮件地址" + +#: ajax_forms.php:64 ajax_forms.php:228 +msgid "close" +msgstr "关闭" + +#: ajax_forms.php:105 +msgid "SUSHI Service for" +msgstr "SUSHI 服务" + +#: ajax_forms.php:105 +msgid "Optional Parameters" +msgstr "可选参数" + +#: ajax_forms.php:108 +msgid "Start Date:" +msgstr "开始日期:" + +#: ajax_forms.php:112 +msgid "End Date:" +msgstr "结束日期:" + +#: ajax_forms.php:113 +msgid "(yyyy-mm-dd)" +msgstr "(年年年年-月月-日日)" + +#: ajax_forms.php:118 +msgid "Ensure platform name stays CORAL's Platform Name: " +msgstr "确认平台名称保持为“CORAL 的平台名称”:" + +#: ajax_forms.php:127 +msgid "submit for processing" +msgstr "提交进行处理" + +#: ajax_forms.php:128 ajax_forms.php:168 ajax_forms.php:325 ajax_forms.php:394 ajax_forms.php:461 ajax_forms.php:627 ajax_forms.php:831 ajax_forms.php:885 ajax_forms.php:1023 +msgid "cancel" +msgstr "取消" + +#: ajax_forms.php:141 +msgid "No Sushi Service passed in!" +msgstr "没有通过的 Sushi 服务!" + +#: ajax_forms.php:162 +msgid "Update Outlier" +msgstr "更新异常值" + +#: ajax_forms.php:162 +msgid "Level" +msgstr "级别" + +#: ajax_forms.php:163 +msgid "Count Over" +msgstr "计数超过" + +#: ajax_forms.php:164 +msgid "% Over prior 12 months" +msgstr "% 超过之前的 12 个月" + +#: ajax_forms.php:217 +msgid "Update Report Display Name" +msgstr "更新报表显示名称" + +#: ajax_forms.php:222 ajax_forms.php:771 ajax_forms.php:778 ajax_forms.php:785 ajax_htmldata.php:1013 ajax_htmldata.php:1020 ajax_htmldata.php:1027 ajax_htmldata.php:1418 +msgid "update" +msgstr "更新" + +#: ajax_forms.php:295 ajax_htmldata.php:377 ajax_htmldata.php:398 +msgid "Interface Notes" +msgstr "界面注释" + +#: ajax_forms.php:298 ajax_forms.php:376 +msgid "Start Year:" +msgstr "开始年份:" + +#: ajax_forms.php:302 ajax_forms.php:380 +msgid "End Year:" +msgstr "结束年份:" + +#: ajax_forms.php:306 +msgid "Counter Compliant?" +msgstr "遵从 COUNTER?" + +#: ajax_forms.php:308 +msgid "Yes" +msgstr "是" + +#: ajax_forms.php:309 +msgid "No" +msgstr "否" + +#: ajax_forms.php:315 +msgid "Interface Notes:" +msgstr "界面注释:" + +#: ajax_forms.php:324 ajax_forms.php:393 ajax_forms.php:460 ajax_forms.php:626 ajax_forms.php:830 ajax_forms.php:884 +msgid "submit" +msgstr "提交" + +#: ajax_forms.php:373 ajax_htmldata.php:321 +msgid "Publisher Notes" +msgstr "出版商注释" + +#: ajax_forms.php:384 +msgid "Publisher Notes:" +msgstr "出版商注释:" + +#: ajax_forms.php:437 ajax_htmldata.php:470 +msgid "Login" +msgstr "登录" + +#: ajax_forms.php:440 +msgid "Username:" +msgstr "用户名:" + +#: ajax_forms.php:444 ajax_forms.php:549 +msgid "Password:" +msgstr "密码:" + +#: ajax_forms.php:447 +msgid "URL:" +msgstr "URL:" + +#: ajax_forms.php:451 +msgid "Login Notes:" +msgstr "登录注释:" + +#: ajax_forms.php:499 ajax_htmldata.php:459 +msgid "SUSHI Connection" +msgstr "SUSHI 连接" + +#: ajax_forms.php:502 +msgid "Service/Endpoint URL:" +msgstr "服务/端点 URL:" + +#: ajax_forms.php:504 +msgid "if using COUNTER's WSDL" +msgstr "如果使用 COUNTER 的 WSDL" + +#: ajax_forms.php:508 +msgid "or - WSDL URL:" +msgstr "或 - WSDL URL:" + +#: ajax_forms.php:510 +msgid "if not using COUNTER's WSDL" +msgstr "如果不使用 COUNTER 的 WSDL" + +#: ajax_forms.php:513 +msgid "Report Type(s):" +msgstr "报表类型:" + +#: ajax_forms.php:515 +msgid "separate report types with semi-colon, e.g. JR1;BR1" +msgstr "用分号分隔报表类型,例如 JR1;BR1" + +#: ajax_forms.php:519 +msgid "COUNTER Release:" +msgstr "COUNTER 发布:" + +#: ajax_forms.php:528 +msgid "Requestor ID:" +msgstr "请求人 ID:" + +#: ajax_forms.php:532 +msgid "Customer ID:" +msgstr "客户 ID:" + +#: ajax_forms.php:536 +msgid "Security Type:" +msgstr "安全类型:" + +#: ajax_forms.php:538 ajax_forms.php:544 ajax_forms.php:551 ajax_forms.php:559 +msgid "(optional)" +msgstr "(可选)" + +#: ajax_forms.php:538 +msgid "can be: HTTP Basic, WSSE Authentication" +msgstr "可以是:HTTP 基本、WSSE 身份验证" + +#: ajax_forms.php:542 +msgid "Login:" +msgstr "登录:" + +#: ajax_forms.php:544 ajax_forms.php:551 +msgid "only needed for HTTP or WSSE Authentication" +msgstr "仅 HTTP 或 WSSE 身份验证有需要" + +#: ajax_forms.php:557 +msgid "Service Day:" +msgstr "服务日:" + +#: ajax_forms.php:559 +msgid "number indicating the day of month the service should run" +msgstr "数字表示应运行服务的每月日期" + +#: ajax_forms.php:559 +msgid "(e.g. 27 will run 27th of every month)" +msgstr "(例如 27 表示每月的 27 号运行)" + +#: ajax_forms.php:563 +msgid "Sushi Notes:" +msgstr "Sushi 注释:" + +#: ajax_forms.php:611 +msgid "Link Associated Organization" +msgstr "链接关联的组织" + +#: ajax_forms.php:615 +msgid "Organization:" +msgstr "组织:" + +#: ajax_forms.php:686 ajax_forms.php:762 ajax_htmldata.php:961 +msgid "None currently" +msgstr "当前没有" + +#: ajax_forms.php:693 ajax_htmldata.php:968 +msgid "update override" +msgstr "更新越权" + +#: ajax_forms.php:693 ajax_htmldata.php:969 +msgid "ignore outlier" +msgstr "忽略异常值" + +#: ajax_forms.php:702 ajax_forms.php:796 ajax_forms.php:953 +msgid "Close" +msgstr "关闭" + +#: ajax_forms.php:753 +msgid "(showing only titles for which there were outliers during the year)" +msgstr "(为有异常值的年份仅显示题名)" + +#: ajax_forms.php:768 ajax_htmldata.php:1010 +msgid "Total" +msgstr "总计" + +#: ajax_forms.php:775 ajax_htmldata.php:1017 +msgid "PDF" +msgstr "PDF" + +#: ajax_forms.php:821 +msgid "Add New Platform for SUSHI Connection" +msgstr "为 SUSHI 连接添加新平台" + +#: ajax_forms.php:822 ajax_htmldata.php:1514 +msgid "Platform Name" +msgstr "平台名称" + +#: ajax_forms.php:863 +msgid "Add Identifier" +msgstr "添加标识符" + +#: ajax_forms.php:864 +msgid "Identifier Type" +msgstr "标识符类型" + +#: ajax_forms.php:867 ajax_htmldata.php:720 ajax_htmldata.php:796 spreadsheet.php:86 titles_spreadsheet.php:55 +msgid "ISSN" +msgstr "ISSN" + +#: ajax_forms.php:868 ajax_htmldata.php:721 +msgid "eISSN" +msgstr "eISSN" + +#: ajax_forms.php:869 ajax_htmldata.php:795 spreadsheet.php:85 titles_spreadsheet.php:54 +msgid "ISBN" +msgstr "ISBN" + +#: ajax_forms.php:870 +msgid "eISBN" +msgstr "eISBN" + +#: ajax_forms.php:871 ajax_htmldata.php:719 ajax_htmldata.php:794 spreadsheet.php:63 spreadsheet.php:83 titles_spreadsheet.php:49 titles_spreadsheet.php:53 +msgid "DOI" +msgstr "DOI" + +#: ajax_forms.php:872 spreadsheet.php:64 spreadsheet.php:84 +msgid "Proprietary ID" +msgstr "专有 ID" + +#: ajax_forms.php:876 +msgid "Identifier" +msgstr "标识符" + +#: ajax_forms.php:918 +msgid "Associated Titles and Identifiers" +msgstr "关联的题名和标识符" + +#: ajax_forms.php:981 +msgid "Add New" +msgstr "添加新的" + +#: ajax_forms.php:988 +msgid " User" +msgstr "用户" + +#: ajax_forms.php:989 ajax_htmldata.php:1402 +msgid "Login ID" +msgstr "登录 ID" + +#: ajax_forms.php:990 ajax_htmldata.php:1403 +msgid "First Name" +msgstr "名" + +#: ajax_forms.php:991 ajax_htmldata.php:1404 +msgid "Last Name" +msgstr "姓" + +#: ajax_forms.php:992 ajax_htmldata.php:1405 +msgid "Privilege" +msgstr "特权" + +#: ajax_forms.php:996 +msgid "Add/Edit users have access to everything" +msgstr "添加/编辑有全部访问权限的用户" + +#: ajax_forms.php:996 +msgid "except the Admin tab and admin users" +msgstr "除了“管理”选项卡和管理员用户" + +#: ajax_forms.php:996 +msgid "have access to everything" +msgstr "有全部访问权限" + +#: ajax_forms.php:1042 ajax_htmldata.php:1639 ajax_processing.php:598 +msgid "Function " +msgstr "功能" + +#: ajax_forms.php:1042 ajax_htmldata.php:1639 ajax_processing.php:598 +msgid " not set up!" +msgstr "未设置!" + +#: ajax_htmldata.php:47 +msgid "Import History for " +msgstr "导入历史记录为" + +#: ajax_htmldata.php:62 ajax_htmldata.php:1147 +msgid "Import Date" +msgstr "导入日期" + +#: ajax_htmldata.php:63 ajax_htmldata.php:1148 +msgid "Imported By" +msgstr "导入者" + +#: ajax_htmldata.php:64 ajax_htmldata.php:1149 +msgid "Import Summary" +msgstr "导入摘要" + +#: ajax_htmldata.php:76 ajax_htmldata.php:1168 +msgid "view log" +msgstr "查看日志" + +#: ajax_htmldata.php:77 ajax_htmldata.php:1169 +msgid "view archive" +msgstr "查看存档" + +#: ajax_htmldata.php:82 +msgid "(no imports found)" +msgstr "(未找到导入)" + +#: ajax_htmldata.php:96 +msgid "Publisher Logins" +msgstr "出版商登录" + +#: ajax_htmldata.php:113 ajax_htmldata.php:174 +msgid "Interface Login" +msgstr "界面登录" + +#: ajax_htmldata.php:114 ajax_htmldata.php:175 ajax_htmldata.php:242 ajax_htmldata.php:471 +msgid "Password" +msgstr "密码" + +#: ajax_htmldata.php:115 ajax_htmldata.php:176 ajax_htmldata.php:243 +msgid "URL" +msgstr "URL" + +#: ajax_htmldata.php:116 ajax_htmldata.php:177 +msgid "Login Notes" +msgstr "登录注释" + +#: ajax_htmldata.php:128 ajax_htmldata.php:189 ajax_htmldata.php:351 ajax_htmldata.php:420 ajax_htmldata.php:901 ajax_htmldata.php:925 uploadComplete.php:357 +msgid "edit" +msgstr "编辑" + +#: ajax_htmldata.php:128 ajax_htmldata.php:189 ajax_htmldata.php:351 ajax_htmldata.php:420 ajax_htmldata.php:1419 +msgid "remove" +msgstr "移除" + +#: ajax_htmldata.php:138 ajax_htmldata.php:199 ajax_htmldata.php:359 ajax_htmldata.php:428 ajax_htmldata.php:478 ajax_htmldata.php:638 ajax_htmldata.php:665 ajax_htmldata.php:699 ajax_htmldata.php:1428 +#: ajax_htmldata.php:1536 +msgid "(none found)" +msgstr "(未找到)" + +#: ajax_htmldata.php:146 ajax_htmldata.php:207 +msgid "add new login" +msgstr "添加新登录" + +#: ajax_htmldata.php:157 +msgid "Interface Logins" +msgstr "界面登录" + +#: ajax_htmldata.php:217 +msgid "Organization Accounts" +msgstr "组织帐户" + +#: ajax_htmldata.php:237 +msgid "For " +msgstr "为" + +#: ajax_htmldata.php:237 ajax_htmldata.php:261 +msgid "view organization" +msgstr "查看组织" + +#: ajax_htmldata.php:240 +msgid "Login Type" +msgstr "登录类型" + +#: ajax_htmldata.php:241 +msgid "Username" +msgstr "用户名" + +#: ajax_htmldata.php:244 ajax_htmldata.php:338 ajax_htmldata.php:473 +msgid "Notes" +msgstr "注释" + +#: ajax_htmldata.php:261 +msgid "No login information stored for " +msgstr "没有储存的登录信息为" + +#: ajax_htmldata.php:266 +msgid "change associated organization" +msgstr "更改关联的组织" + +#: ajax_htmldata.php:275 +msgid "link to associated organization" +msgstr "到关联组织的链接" + +#: ajax_htmldata.php:300 +msgid "Login Credentials are also available for the following publishers:" +msgstr "登录凭据也可用于如下出版商:" + +#: ajax_htmldata.php:336 ajax_htmldata.php:395 +msgid "Start Year" +msgstr "开始年份" + +#: ajax_htmldata.php:337 ajax_htmldata.php:396 +msgid "End Year" +msgstr "结束年份" + +#: ajax_htmldata.php:345 +msgid "Present" +msgstr "当前" + +#: ajax_htmldata.php:364 +msgid "add new publisher notes" +msgstr "添加新的出版商注释" + +#: ajax_htmldata.php:397 +msgid "Counter" +msgstr "COUNTER" + +#: ajax_htmldata.php:397 +msgid "Compliant?" +msgstr "遵从?" + +#: ajax_htmldata.php:433 +msgid "add new interface note" +msgstr "添加新的界面注释" + +#: ajax_htmldata.php:463 +msgid "Service URL" +msgstr "服务 URL" + +#: ajax_htmldata.php:464 +msgid "WSDL URL" +msgstr "WSDL URL" + +#: ajax_htmldata.php:465 +msgid "COUNTER Release" +msgstr "COUNTER 发布" + +#: ajax_htmldata.php:466 +msgid "Report Layouts" +msgstr "报表布局" + +#: ajax_htmldata.php:467 +msgid "Requestor ID" +msgstr "请求人 ID" + +#: ajax_htmldata.php:468 +msgid "Customer ID" +msgstr "客户 ID" + +#: ajax_htmldata.php:469 +msgid "Security" +msgstr "安全" + +#: ajax_htmldata.php:472 +msgid "Service Day" +msgstr "服务日" + +#: ajax_htmldata.php:472 +msgid " (day of month)" +msgstr "(每月此日)" + +#: ajax_htmldata.php:475 +msgid "Edit SUSHI Connection Info" +msgstr "编辑 SUSHI 连接信息" + +#: ajax_htmldata.php:476 +msgid "Test SUSHI Connection" +msgstr "测试 SUSHI 连接" + +#: ajax_htmldata.php:478 +msgid "Add SUSHI Connection" +msgstr "添加 SUSHI 连接" + +#: ajax_htmldata.php:484 +msgid "Visit the " +msgstr "访问" + +#: ajax_htmldata.php:484 +msgid "SUSHI Server Registry" +msgstr "SUSHI 服务器注册表" + +#: ajax_htmldata.php:484 +msgid " for information about adding your provider." +msgstr "有关添加您的供应商的信息。" + +#: ajax_htmldata.php:511 ajax_htmldata.php:602 +msgid "delete entire month" +msgstr "删除整个月" + +#: ajax_htmldata.php:522 ajax_htmldata.php:606 +msgid "view outliers for this month" +msgstr "查看该月的异常值" + +#: ajax_htmldata.php:557 ajax_htmldata.php:638 +msgid "Statistics Management" +msgstr "统计管理" + +#: ajax_htmldata.php:568 +msgid "(archive)" +msgstr "(存档)" + +#: ajax_htmldata.php:578 +msgid "View Spreadsheet" +msgstr "查看电子表格" + +#: ajax_htmldata.php:623 +msgid "update overrides for this year" +msgstr "为该年更新越权" + +#: ajax_htmldata.php:625 +msgid "(no outliers found for this year)" +msgstr "(未找到该年的异常值)" + +#: ajax_htmldata.php:661 ajax_htmldata.php:699 +msgid "Titles" +msgstr "题名" + +#: ajax_htmldata.php:669 +msgid "View Journal Spreadsheet" +msgstr "查看期刊电子表格" + +#: ajax_htmldata.php:673 +msgid "View Books Spreadsheet" +msgstr "查看图书电子表格" + +#: ajax_htmldata.php:714 +msgid "Journals - Associated Titles and ISSNs" +msgstr "期刊 - 关联的题名和 ISSN" + +#: ajax_htmldata.php:718 ajax_htmldata.php:793 ajax_htmldata.php:867 +msgid "Title" +msgstr "题名" + +#: ajax_htmldata.php:761 ajax_htmldata.php:838 +msgid "view related titles" +msgstr "查看相关的题名" + +#: ajax_htmldata.php:761 ajax_htmldata.php:838 +msgid "view in link resolver" +msgstr "在链接解析器中查看" + +#: ajax_htmldata.php:789 +msgid "Books - Associated Titles and ISBNs" +msgstr "图书 - 关联的题名和 ISBN" + +#: ajax_htmldata.php:863 +msgid "Database Titles" +msgstr "数据库标题" + +#: ajax_htmldata.php:896 +msgid "Current Email Addresses" +msgstr "当前电子邮件地址" + +#: ajax_htmldata.php:902 +msgid "delete" +msgstr "删除" + +#: ajax_htmldata.php:921 +msgid "Current Outlier Parameters" +msgstr "当前异常参数" + +#: ajax_htmldata.php:924 uploadComplete.php:112 +msgid "Level " +msgstr "级别" + +#: ajax_htmldata.php:924 uploadComplete.php:112 +msgid " over plus " +msgstr "超过且" + +#: ajax_htmldata.php:924 +#, php-format +msgid "% over - displayed " +msgstr "% 超过 - 已显示" + +#: ajax_htmldata.php:929 +msgid "Outliers are currently disabled in the configuration file. Contact your technical support to enable them." +msgstr "配置文件中当前已禁用异常值。请联系您的技术支持启用异常值。" + +#: ajax_htmldata.php:1055 ajax_htmldata.php:1080 reporting.php:36 reporting.php:59 +msgid "edit report display name" +msgstr "编辑报表显示名称" + +#: ajax_htmldata.php:1106 +msgid "No imports found." +msgstr "未找到导入。" + +#: ajax_htmldata.php:1112 ajax_htmldata.php:1472 +msgid "Displaying " +msgstr "显示" + +#: ajax_htmldata.php:1112 ajax_htmldata.php:1472 +msgid " to " +msgstr "到" + +#: ajax_htmldata.php:1112 ajax_htmldata.php:1472 +msgid " of " +msgstr "之" + +#: ajax_htmldata.php:1112 +msgid " Records" +msgstr "条记录" + +#: ajax_htmldata.php:1228 ajax_htmldata.php:1280 ajax_htmldata.php:1337 +msgid "Platform/Publisher" +msgstr "平台/出版商" + +#: ajax_htmldata.php:1229 +msgid "Import Run Date" +msgstr "导入运行日期" + +#: ajax_htmldata.php:1230 +msgid "Details" +msgstr "详细信息" + +#: ajax_htmldata.php:1254 +msgid "view to process" +msgstr "查看进程" + +#: ajax_htmldata.php:1255 +msgid "delete import" +msgstr "删除导入" + +#: ajax_htmldata.php:1260 +msgid "(no outstanding imports found)" +msgstr "(未找到未完成的导入)" + +#: ajax_htmldata.php:1281 ajax_htmldata.php:1340 ajax_htmldata.php:1517 +msgid "Latest Run" +msgstr "最后一次运行" + +#: ajax_htmldata.php:1282 ajax_htmldata.php:1341 ajax_htmldata.php:1518 +msgid "Latest Status" +msgstr "最新状态" + +#: ajax_htmldata.php:1308 +msgid "view full log" +msgstr "查看完整日志" + +#: ajax_htmldata.php:1309 ajax_htmldata.php:1372 +msgid "run now" +msgstr "现在运行" + +#: ajax_htmldata.php:1310 ajax_htmldata.php:1373 +msgid "change/test connection" +msgstr "更改/测试连接" + +#: ajax_htmldata.php:1317 +msgid "(no failed imports found)" +msgstr "(未找到失败的导入)" + +#: ajax_htmldata.php:1338 +msgid "Report(s)" +msgstr "报表" + +#: ajax_htmldata.php:1339 ajax_htmldata.php:1516 +msgid "Next Run" +msgstr "下次运行" + +#: ajax_htmldata.php:1380 +msgid "(no sushi services set up)" +msgstr "(未设置Sushi服务)" + +#: ajax_htmldata.php:1468 +msgid "Sorry, no platforms or publishers fit your query" +msgstr "抱歉,没有符合您的查询的平台或出版商" + +#: ajax_htmldata.php:1472 +msgid " Platform Records" +msgstr "平台记录" + +#: ajax_htmldata.php:1515 +msgid "Publishers" +msgstr "出版商" + +#: ajax_htmldata.php:1519 +msgid "By" +msgstr "由" + +#: ajax_htmldata.php:1620 +msgid "records per page" +msgstr "记录/页" + +#: ajax_processing.php:395 +msgid "Override has been updated" +msgstr "越权已更新" + +#: ajax_processing.php:442 +msgid "Platform Reporting Display Name has been updated" +msgstr "平台报表显示名称已更新" + +#: ajax_processing.php:458 ajax_processing.php:490 +msgid "Default display list has been updated" +msgstr "默认显示列表已更新" + +#: ajax_processing.php:474 +msgid "Publisher Reporting Display Name has been updated" +msgstr "出版商报表显示名称已更新" + +#: import.php:3 index.php:26 templates/header.php:167 templates/header.php:216 +msgid "Home" +msgstr "主页" + +#: import.php:14 +msgid "Usage Statistics Import" +msgstr "使用统计数据导入" + +#: import.php:25 +msgid "Incorrect File format, must be .txt!" +msgstr "文件格式不正确,必须是.txt!" + +#: import.php:28 +msgid "There was an error uploading the file. Please verify the size is not over 5MB and try again!" +msgstr "上传文件时出错。请验证大小不超过 5MB,然后重试!" + +#: import.php:31 +msgid "File has an incorrectly formatted name - try filename.txt!" +msgstr "文件名称格式不正确 - 请尝试 filename.txt!" + +#: import.php:43 +msgid "File:" +msgstr "文件:" + +#: import.php:48 +msgid "Layout:" +msgstr "布局:" + +#: import.php:57 +msgid "Override previous month verification" +msgstr "越权上月验证" + +#: import.php:58 +msgid "Upload" +msgstr "上传" + +#: import.php:68 +msgid "Instructions:" +msgstr "说明:" + +#: import.php:70 +msgid "Save file as .txt files in tab delimited format" +msgstr "用选项卡分隔格式保存文件为 .txt 文件" + +#: import.php:71 +msgid "File may not be larger than 5MB" +msgstr "文件不能大于 5MB" + +#: import.php:72 +msgid "Ensure column headers conform to Counter's standards for the report type" +msgstr "确保栏标题符合 COUNTER 的报表类型标准" + +#: import.php:73 +msgid "More info: " +msgstr "更多信息:" + +#: import.php:82 +msgid "Recent Imports" +msgstr "最近导入" + +#: index.php:49 +msgid "Search" +msgstr "检索" + +#: index.php:50 +msgid "new search" +msgstr "新的检索" + +#: index.php:59 +msgid "Name (contains)" +msgstr "名称(包含)" + +#: index.php:62 +msgid "go!" +msgstr "检索!" + +#: index.php:69 +msgid "Starts with" +msgstr "开始字母" + +#: not_avail.php:21 +msgid "Not Available" +msgstr "无有效复本" + +#: not_avail.php:29 +msgid "Usage Statistics Module" +msgstr "使用统计模块" + +#: not_avail.php:61 +msgid "Please contact your Administrator for access to the Usage Statistics Module." +msgstr "请联系您的管理员以访问“使用统计模块”。" + +#: publisherPlatform.php:20 +msgid "View or Edit Publisher / Platform" +msgstr "查看或编辑出版商/平台" + +#: publisherPlatformList.php:4 +msgid "Edit Publishers / Platforms" +msgstr "编辑出版商/平台" + +#: publisherPlatformList.php:16 +msgid "Publisher / Platform Update" +msgstr "出版商/平台更新" + +#: publisherPlatformList.php:31 publisherPlatformList.php:42 +msgid "view / edit" +msgstr "查看/编辑" + +#: publisherPlatformList.php:50 reporting.php:71 +msgid "No publishers / platforms found." +msgstr "未找到出版商/平台。" + +#: reporting.php:2 templates/header.php:195 templates/header.php:237 +msgid "Report Options" +msgstr "报表选项" + +#: reporting.php:10 +msgid "Publisher / Platform Reporting Administrative Update" +msgstr "出版商/平台报表管理更新" + +#: reporting.php:12 +msgid "Directions:" +msgstr "方向:" + +#: reporting.php:12 +msgid "Mark the checkboxes to add / remove specific Platforms or Publishers to the default report list." +msgstr "勾选复选框以在默认的报表列表中添加/移除特定的平台或出版商。" + +#: reporting.php:12 +msgid "Click 'edit report display name' to change the display name in the reporting system for specific Platforms or Publishers." +msgstr "单击“编辑报表显示名称”可更改报表系统中特定平台或出版商的显示名称。" + +#: reporting.php:25 +msgid "Available" +msgstr "可用" + +#: reporting.php:25 +msgid "As Default" +msgstr "作为默认值" + +#: reporting.php:25 +msgid "Report" +msgstr "报表" + +#: spreadsheet.php:60 +msgid "Publisher" +msgstr "出版商" + +#: spreadsheet.php:61 +msgid "Platform" +msgstr "平台" + +#: spreadsheet.php:65 titles_spreadsheet.php:50 +msgid "Print ISSN" +msgstr "打印 ISSN" + +#: spreadsheet.php:66 titles_spreadsheet.php:51 +msgid "Online ISSN" +msgstr "在线 ISSN" + +#: spreadsheet.php:67 spreadsheet.php:87 spreadsheet.php:102 +msgid "YTD Total" +msgstr "YTD 总计" + +#: spreadsheet.php:68 +msgid "YTD HTML" +msgstr "YTD HTML" + +#: spreadsheet.php:69 +msgid "YTD PDF" +msgstr "YTD PDF" + +#: spreadsheet.php:70 spreadsheet.php:88 spreadsheet.php:103 +msgid "Jan-" +msgstr "一月-" + +#: spreadsheet.php:71 spreadsheet.php:89 spreadsheet.php:104 +msgid "Feb-" +msgstr "二月-" + +#: spreadsheet.php:72 spreadsheet.php:90 spreadsheet.php:105 +msgid "Mar-" +msgstr "三月-" + +#: spreadsheet.php:73 spreadsheet.php:91 spreadsheet.php:106 +msgid "Apr-" +msgstr "四月-" + +#: spreadsheet.php:74 spreadsheet.php:92 spreadsheet.php:107 +msgid "May-" +msgstr "五月-" + +#: spreadsheet.php:75 spreadsheet.php:93 spreadsheet.php:108 +msgid "Jun-" +msgstr "六月-" + +#: spreadsheet.php:76 spreadsheet.php:94 spreadsheet.php:109 +msgid "Jul-" +msgstr "七月-" + +#: spreadsheet.php:77 spreadsheet.php:95 spreadsheet.php:110 +msgid "Aug-" +msgstr "八月-" + +#: spreadsheet.php:78 spreadsheet.php:96 spreadsheet.php:111 +msgid "Sep-" +msgstr "九月-" + +#: spreadsheet.php:79 spreadsheet.php:97 spreadsheet.php:112 +msgid "Oct-" +msgstr "十月-" + +#: spreadsheet.php:80 spreadsheet.php:98 spreadsheet.php:113 +msgid "Nov-" +msgstr "十一月-" + +#: spreadsheet.php:81 spreadsheet.php:99 spreadsheet.php:114 +msgid "Dec-" +msgstr "十二月-" + +#: spreadsheet.php:101 +msgid "User Activity" +msgstr "用户活动" + +#: spreadsheet.php:124 +msgid "Total for all Journals" +msgstr "所有期刊总计" + +#: spreadsheet.php:126 +msgid "Total for all Books" +msgstr "所有图书总计" + +#: spreadsheet.php:128 +msgid "Total for all Databases" +msgstr "所有数据库总计" + +#: sushi.php:26 +msgid "SUSHI Import" +msgstr "SUSHI 导入" + +#: sushi.php:45 +msgid "Sushi Output Log:" +msgstr "SUSHI 输出日志:" + +#: sushi.php:56 +msgid "SUSHI Administration" +msgstr "SUSHI 管理" + +#: sushi.php:62 +msgid "Add new platform for SUSHI" +msgstr "为 SUSHI 添加新平台" + +#: sushi.php:71 +msgid "Outstanding Import Queue" +msgstr "未完成的导入队列" + +#: sushi.php:75 +msgid "Last Failed SUSHI Imports" +msgstr "上次失败的 SUSHI 导入" + +#: sushi.php:79 +msgid "All SUSHI Services" +msgstr "所有 SUSHI 服务" + +#: sushiSchedule.php:33 +msgid " SUSHI runs found for day: " +msgstr "找到 SUSHI 运行日:" + +#: sushiSchedule.php:52 +msgid "Log in to " +msgstr "登录" + +#: sushiSchedule.php:52 +msgid "Sushi Administration" +msgstr "SUSHI 管理" + +#: sushiSchedule.php:52 +msgid " for more information." +msgstr "更多信息。" + +#: sushiSchedule.php:65 +msgid "SUSHI Scheduled run log for " +msgstr "计划的 SUSHI 运行日志为" + +#: sushiSchedule.php:65 +msgid " runs" +msgstr "运行" + +#: sushiSchedule.php:70 +msgid "Run complete. Log has been emailed to " +msgstr "运行完成。已使用电子邮件发送到" + +#: sushiSchedule.php:72 uploadComplete.php:977 +msgid "Email to " +msgstr "发送电子邮件至" + +#: sushiSchedule.php:72 uploadComplete.php:977 +msgid " Failed!" +msgstr "失败!" + +#: sushiSchedule.php:77 +msgid "Nothing to see here! (no sushi scheduled today)" +msgstr "此处无内容可显示!(今天没有计划的 SUSHI)" + +#: templates/header.php:40 templates/header.php:92 +msgid "Usage Statistics" +msgstr "使用统计信息" + +#: templates/header.php:72 +msgid "JavaScript must be enabled in order for you to use CORAL. However, it seems JavaScript is either disabled or not supported by your browser. To use CORAL, enable JavaScript by changing your browser options, then " +msgstr "必须启用 JavaScript 才能使用 CORAL。但是,或者您已禁用 JavaScript,或者您的浏览器不支持。若要使用 CORAL,则请更改您的浏览器选项以启用 JavaScript,并" + +#: templates/header.php:72 +msgid "try again" +msgstr "重试" + +#: templates/header.php:93 +msgid "Powered by" +msgstr "技术支持:" + +#: templates/header.php:99 +msgid "Hello" +msgstr "你好" + +#: templates/header.php:109 +msgid "logout" +msgstr "退出" + +#: templates/header.php:109 +msgid "Help" +msgstr "帮助" + +#: templates/header.php:127 +msgid "Invalid translation route!" +msgstr "无效的翻译路线!" + +#: templates/header.php:174 templates/header.php:223 +msgid "File Import" +msgstr "文件导入" + +#: templates/header.php:181 templates/header.php:230 +msgid "SUSHI" +msgstr "SUSHI" + +#: templates/header.php:188 +msgid "Admin" +msgstr "管理员" + +#: templates/header.php:204 templates/header.php:246 +msgid "Usage Reports" +msgstr "使用报表" + +#: templates/header.php:265 +msgid "Change Module" +msgstr "更改模块" + +#: templates/header.php:268 +msgid "Main Menu" +msgstr "主菜单" + +#: templates/header.php:273 +msgid "Resources" +msgstr "资源" + +#: templates/header.php:278 +msgid "Organizations" +msgstr "组织" + +#: templates/header.php:283 +msgid "Licensing" +msgstr "授权许可" + +#: templates/header.php:288 +msgid "Management" +msgstr "管理" + +#: titles_spreadsheet.php:35 +msgid " Titles " +msgstr "题名" + +#: uploadComplete.php:25 +msgid "Upload Process Complete" +msgstr "上传进程完成" + +#: uploadComplete.php:90 +msgid "Process started on " +msgstr "进程开始于" + +#: uploadComplete.php:91 +msgid "File: " +msgstr "文件:" + +#: uploadComplete.php:92 uploadConfirmation.php:334 +msgid "Report Format: " +msgstr "报表格式:" + +#: uploadComplete.php:105 +msgid "Outlier Parameters:" +msgstr "异常值参数:" + +#: uploadComplete.php:112 +#, php-format +msgid "% over " +msgstr "% 以上" + +#: uploadComplete.php:283 +msgid "Override indicator set - all months will be imported." +msgstr "越权指示符设置 - 将导入所有月份。" + +#: uploadComplete.php:292 +msgid "Entire year already exists for this Platform / year. No counts will be imported." +msgstr "全年已存在于该平台/年。不会导入计数。" + +#: uploadComplete.php:296 +msgid "Month Started at: " +msgstr "月份始于:" + +#: uploadComplete.php:298 +msgid "No records exist for this Platform / year. Import will start with month 1." +msgstr "该平台/年份不存在记录。导入将始于月份 1." + +#: uploadComplete.php:301 +msgid "Partial year records exist for this Platform / year. Import will start with month 1 and end with month " +msgstr "该平台/年份已存在部分记录。导入将始于月份 1,并结束于月份" + +#: uploadComplete.php:320 +msgid "Year: " +msgstr "年份:" + +#: uploadComplete.php:357 +msgid "New Platform set up: " +msgstr "新的平台设置:" + +#: uploadComplete.php:439 +msgid "New Publisher / Platform set up: " +msgstr "新的出版商/平台设置:" + +#: uploadComplete.php:672 +msgid "Publisher / Platform: " +msgstr "出版商/平台:" + +#: uploadComplete.php:681 +msgid "Title: " +msgstr "标题:" + +#: uploadComplete.php:712 +msgid "Merged" +msgstr "已合并" + +#: uploadComplete.php:717 +msgid "Duplicate record for this Print ISSN in same spreadsheet: Month: " +msgstr "在同一电子报表中复制该打印 ISSN 的记录:月份:" + +#: uploadComplete.php:717 +msgid " New Count: " +msgstr "新计数:" + +#: uploadComplete.php:809 +msgid "New Usage Count Record Added: Month: " +msgstr "已添加新的使用计数记录:月份:" + +#: uploadComplete.php:809 uploadComplete.php:811 +msgid " Count: " +msgstr "计数:" + +#: uploadComplete.php:811 +msgid "Usage Count Record is not numeric for month: " +msgstr "月份的使用计数记录不是数字:" + +#: uploadComplete.php:811 +msgid " imported as 0." +msgstr "导入为 0。" + +#: uploadComplete.php:818 +msgid "Outlier found for this record: Level " +msgstr "找到该记录的异常值:层级" + +#: uploadComplete.php:827 +msgid "Current or future month will not be imported: " +msgstr "不会导入当前或将来的月份:" + +#: uploadComplete.php:877 +msgid "YTD Already Exists for this Print ISSN, counts are added together." +msgstr "该打印 ISSN 已存在 YTD,计数被加在一起。" + +#: uploadComplete.php:901 +msgid "YTD Total Count: " +msgstr "YTD 总计数:" + +#: uploadComplete.php:901 +msgid "YTD HTML Count: " +msgstr "YTD HTML 计数:" + +#: uploadComplete.php:901 +msgid "YTD PDF Count: " +msgstr "YTD PDF 计数:" + +#: uploadComplete.php:908 +msgid "No YTD import performed since monthly stats were not imported" +msgstr "由于未导入每月统计而未执行 YTD 导入" + +#: uploadComplete.php:918 +msgid "Title match did not complete correctly, please check ISBN / ISSN to verify for Title: " +msgstr "题名匹配没有正确完成,请检查 ISBN/ISSN 以验证题名:" + +#: uploadComplete.php:970 +msgid "Log Output for " +msgstr "日志输出为" + +#: uploadComplete.php:971 +msgid "Usage Statistics File Import Run!" +msgstr "使用统计数据文件导入运行!" + +#: uploadComplete.php:971 +msgid "Please find log file: " +msgstr "请找到日志文件:" + +#: uploadComplete.php:975 +msgid "Log has been emailed to " +msgstr "日志已通过电子邮件发送到" + +#: uploadComplete.php:993 uploadComplete.php:1000 uploadComplete.php:1043 +msgid " titles processed." +msgstr "个题名已处理。" + +#: uploadComplete.php:1037 +msgid "Status" +msgstr "状态" + +#: uploadComplete.php:1039 +msgid "File archived as" +msgstr "文件已存档为" + +#: uploadComplete.php:1040 +msgid "Log file available at:" +msgstr "日志文件可用:" + +#: uploadComplete.php:1041 +msgid "Process completed." +msgstr "进程已完成。" + +#: uploadComplete.php:1043 +msgid "Summary:" +msgstr "摘要:" + +#: uploadConfirmation.php:33 +msgid "SUSHI Import Confirmation" +msgstr "SUSHI 导入确认" + +#: uploadConfirmation.php:115 +msgid "The file " +msgstr "文件" + +#: uploadConfirmation.php:115 +msgid " has been uploaded successfully." +msgstr "已成功更新。" + +#: uploadConfirmation.php:115 +msgid "Please confirm the following data:" +msgstr "请确认如下数据:" + +#: uploadConfirmation.php:135 +msgid "Upload Process Confirmation" +msgstr "上传进程确认" + +#: uploadConfirmation.php:185 uploadConfirmation.php:249 +msgid " for " +msgstr "为" + +#: uploadConfirmation.php:232 +msgid "Looking for " +msgstr "查找" + +#: uploadConfirmation.php:232 +msgid " in column " +msgstr "在栏" + +#: uploadConfirmation.php:232 +msgid "but found " +msgstr "但找到" + +#: uploadConfirmation.php:307 +msgid "Error with Format" +msgstr "格式错误" + +#: uploadConfirmation.php:307 +msgid "Report format is set to " +msgstr "报表格式设置为" + +#: uploadConfirmation.php:307 +msgid " but does not match the column names listed in layouts.ini for this format" +msgstr "但是不与布局 .ini 中为该格式列出的栏名称相匹配" + +#: uploadConfirmation.php:307 +msgid "Expecting columns: " +msgstr "预期栏:" + +#: uploadConfirmation.php:307 +msgid "Found columns: " +msgstr "找到栏:" + +#: uploadConfirmation.php:307 +msgid "If problems persist you can copy an existing header that works into this file." +msgstr "如果问题持续存在,您可以复制一个可用于该文件的现有标题。" + +#: uploadConfirmation.php:312 +msgid "Error with Setup: This report format is not set up in layouts.ini." +msgstr "安装错误:未在 layouts.ini 中设置该报表格式。" + +#: uploadConfirmation.php:317 +msgid "Error with Format: The line preceding the first should start with 'Total'." +msgstr "格式错误:第一行之前应以“总计”开始。" + +#: uploadConfirmation.php:322 +msgid "Error with Year: Year listed in header" +msgstr "年份错误:列于标题的年份" + +#: uploadConfirmation.php:322 +msgid "may not be ahead of current year. Please correct and submit again." +msgstr "不能超过当前年份。请更正并再次提交。" + +#: uploadConfirmation.php:327 +msgid "File is flagged to override verifications of previous month data. If this is incorrect use 'Cancel' to fix." +msgstr "文件被标记为覆盖之前月份数据的验证。如果不正确,则使用“取消”进行修复。" + +#: uploadConfirmation.php:334 +msgid "If this is incorrect, please use 'Cancel' to go back and fix the headers of the file." +msgstr "如果不正确,则请使用“取消”返回并修复文件标题。" + +#: uploadConfirmation.php:337 +msgid "File has been imported from SUSHI. The default behavior for imported SUSHI files is to overwrite previously imported data. If this is incorrect, please contact a system administrator." +msgstr "已从 SUSHI 导入文件。被导入的 SUSHI 文件的默认行为是覆盖之前导入的数据。如果不正确,请联系一位系统管理员。" + +#: uploadConfirmation.php:354 +msgid "Confirm" +msgstr "确认" + +#: uploadConfirmation.php:357 +msgid "Cancel" +msgstr "取消" diff --git a/usage/locale/zh_TW/LC_MESSAGES/messages.mo b/usage/locale/zh_TW/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..ac4e669385813e2b06431830d63ea88f484a1ffd GIT binary patch literal 27001 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 ONIUE+4NJA9BlusyKBHj( literal 0 HcmV?d00001 diff --git a/usage/locale/zh_TW/LC_MESSAGES/messages.po b/usage/locale/zh_TW/LC_MESSAGES/messages.po new file mode 100644 index 000000000..269a10775 --- /dev/null +++ b/usage/locale/zh_TW/LC_MESSAGES/messages.po @@ -0,0 +1,1596 @@ +msgid "" +msgstr "" +"Project-Id-Version: messages\n" +"POT-Creation-Date: 2016-06-27 7:01-06:00\n" +"PO-Revision-Date: 2016-08-22 16:07-0600\n" +"Last-Translator: <>\n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Basepath: ../../..\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Generator: Poedit 1.8.8\n" +"X-Poedit-SearchPath-0: .\n" + +#: js/admin.js:62 +msgid "Do you really want to delete this user?" +msgstr "您確認要刪除該使用者嗎?" + +#: js/admin.js:64 js/index.js:41 js/publisherPlatform.js:81 js/publisherPlatform.js:99 js/publisherPlatform.js:117 js/publisherPlatform.js:136 js/publisherPlatform.js:155 js/publisherPlatform.js:227 js/sushi.js:80 +msgid "Processing..." +msgstr "正在處理..." + +#: js/admin.js:121 js/reporting.js:61 +msgid "Error - Please enter a value." +msgstr "錯誤 - 請輸入一個值。" + +#: js/admin.js:125 +msgid "Error - Please enter a valid email address." +msgstr "錯誤 - 請輸入一個有效的電子郵件地址。" + +#: js/admin.js:135 +msgid "Do you really want to delete this email address?" +msgstr "您確認要刪除該電子郵件嗎?" + +#: js/admin.js:199 +msgid "Count over must be a number." +msgstr "超過計數必須為一個數位。" + +#: js/admin.js:200 +#, javascript-format +msgid "% over must be a number." +msgstr "% 超過必須為一個數位。" + +#: js/forms/externalLoginSubmitForm.js:54 +msgid "Please enter a username to continue" +msgstr "請輸入一個使用者名以繼續" + +#: js/forms/externalLoginSubmitForm.js:58 +msgid "For security, please enter a password" +msgstr "出於安全原因,請輸入一個密碼" + +#: js/forms/identifierSubmitForm.js:71 +msgid "Identifier must be valid format." +msgstr "識別碼必須是有效的格式。" + +#: js/forms/organizationForm.js:34 +msgid "This organization doesn't exist in the CORAL Organizations module." +msgstr "CORAL 「組織」模組中不存在該組織。" + +#: js/forms/organizationForm.js:97 +msgid "This organization doesn't exist in the CORAL Organizations Module." +msgstr "CORAL 「組織」模組中不存在該組織。" + +#: js/forms/outlierSubmitForm.js:94 +msgid "Count is required. If you wish to remove the count the outlier should be ignored." +msgstr "計數是必需的。如果您希望移除計數,那麼異常值應被忽略。" + +#: js/forms/overrideSubmitForm.js:58 +msgid "Count is required." +msgstr "計數是必需的。" + +#: js/forms/platformNoteSubmitForm.js:54 js/forms/publisherNoteSubmitForm.js:55 +msgid "Start Year must be 4 numbers and start with 19 or 20." +msgstr "「開始年份」必須是四位數,並以 19 或 20 開始。" + +#: js/forms/platformNoteSubmitForm.js:55 js/forms/publisherNoteSubmitForm.js:56 +msgid "End Year must be 4 numbers and start with 19 or 20." +msgstr "「結束年份」必須是四位數,並以 19 或 20 開始。" + +#: js/forms/platformNoteSubmitForm.js:56 +msgid "Please choose Yes or No for Counter Compliant." +msgstr "請為遵從 COUNTER 選擇「是」或「否」。" + +#: js/forms/platformSubmitForm.js:71 +msgid "Platform must be entered." +msgstr "必須輸入平臺。" + +#: js/import.js:38 js/publisherPlatform.js:139 admin.php:16 admin.php:31 admin.php:46 +msgid "Loading..." +msgstr "正在載入..." + +#: js/import.js:65 +msgid "Please select a file." +msgstr "請選擇一個檔。" + +#: js/index.js:133 ajax_htmldata.php:1541 publisherPlatformList.php:32 reporting.php:41 +msgid "show publisher list" +msgstr "顯示出版商清單" + +#: js/index.js:139 +msgid "hide publisher list" +msgstr "隱藏出版商清單" + +#: js/publisherPlatform.js:175 +msgid "Do you really want to remove this interface note?" +msgstr "您確認要移除該介面注釋嗎?" + +#: js/publisherPlatform.js:193 +msgid "Do you really want to remove this Publisher note?" +msgstr "您確認要移除該出版商備註嗎?" + +#: js/publisherPlatform.js:211 +msgid "Do you really want to remove this login information?" +msgstr "您確認要移除該登入資訊嗎?" + +#: js/publisherPlatform.js:226 +msgid "Do you really want to delete this month?" +msgstr "您確認要刪除該月份嗎?" + +#: js/publisherPlatform.js:244 +msgid "Do you really want to delete this " +msgstr "您確認要刪除該" + +#: js/publisherPlatform.js:263 js/sushi.js:104 +msgid "Running..." +msgstr "正在運行..." + +#: js/publisherPlatformList.js:35 js/reporting.js:35 +msgid "show Publisher list" +msgstr "顯示出版商清單" + +#: js/publisherPlatformList.js:39 js/reporting.js:39 +msgid "hide Publisher list" +msgstr "隱藏出版商清單" + +#: js/sushi.js:78 +msgid "Do you really want to delete this import?" +msgstr "您確認要刪除該輸入嗎?" + +#: admin.php:2 +msgid "Administration" +msgstr "管理" + +#: admin.php:12 +msgid "Users" +msgstr "使用者" + +#: admin.php:13 +msgid "add new user" +msgstr "新增使用者" + +#: admin.php:27 +msgid "Email addresses for logs" +msgstr "日誌的電子郵件地址" + +#: admin.php:28 +msgid "add new email address" +msgstr "添加新的電子郵件地址" + +#: admin.php:43 +msgid "Outlier Parameters" +msgstr "異常值參數" + +#: admin/classes/common/DBService.php:39 +msgid "There was a problem with the database: " +msgstr "資料庫出現問題:" + +#: admin/classes/common/LdapPerson.php:34 +msgid "Could not connect to " +msgstr "無法連接到" + +#: admin/classes/common/Object.php:63 +msgid "Cannot set value for undefined key (" +msgstr "無法對未定義鍵設定數值(" + +#: admin/classes/common/Object.php:72 +msgid "Cannot get value for undefined key (" +msgstr "無法從未定義鍵取得數值(" + +#: admin/classes/domain/ImportLog.php:36 +msgid " (via sushi)" +msgstr "(透過SUSHI)" + +#: admin/classes/domain/ImportLog.php:42 +msgid "Failed" +msgstr "失敗" + +#: admin/classes/domain/ImportLog.php:44 +msgid "awaiting import" +msgstr "等待輸入" + +#: admin/classes/domain/SushiService.php:186 +msgid "At least one report type must be set up!" +msgstr "必須至少設置一個報表類型!" + +#: admin/classes/domain/SushiService.php:188 +msgid "Connection test successful!" +msgstr "連接測試成功!" + +#: admin/classes/domain/SushiService.php:211 +msgid "No report types are set up!" +msgstr "未設定報表類型!" + +#: ajax_forms.php:39 ajax_forms.php:167 ajax_forms.php:256 ajax_forms.php:353 ajax_forms.php:420 ajax_forms.php:485 ajax_forms.php:978 +msgid "Update" +msgstr "更新" + +#: ajax_forms.php:43 ajax_forms.php:256 ajax_forms.php:362 ajax_forms.php:426 ajax_forms.php:489 +msgid "Add" +msgstr "添加" + +#: ajax_forms.php:55 +msgid "Email Address" +msgstr "電子郵件地址" + +#: ajax_forms.php:64 ajax_forms.php:228 +msgid "close" +msgstr "關閉" + +#: ajax_forms.php:105 +msgid "SUSHI Service for" +msgstr "SUSHI 服務" + +#: ajax_forms.php:105 +msgid "Optional Parameters" +msgstr "可選參數" + +#: ajax_forms.php:108 +msgid "Start Date:" +msgstr "開始日期:" + +#: ajax_forms.php:112 +msgid "End Date:" +msgstr "结束日期:" + +#: ajax_forms.php:113 +msgid "(yyyy-mm-dd)" +msgstr "(年年年年-月月-日日)" + +#: ajax_forms.php:118 +msgid "Ensure platform name stays CORAL's Platform Name: " +msgstr "確認平臺名稱保持為「CORAL 的平臺名稱」:" + +#: ajax_forms.php:127 +msgid "submit for processing" +msgstr "提交進行處理" + +#: ajax_forms.php:128 ajax_forms.php:168 ajax_forms.php:325 ajax_forms.php:394 ajax_forms.php:461 ajax_forms.php:627 ajax_forms.php:831 ajax_forms.php:885 ajax_forms.php:1023 +msgid "cancel" +msgstr "取消" + +#: ajax_forms.php:141 +msgid "No Sushi Service passed in!" +msgstr "沒有通過的 Sushi 服務!" + +#: ajax_forms.php:162 +msgid "Update Outlier" +msgstr "更新異常值" + +#: ajax_forms.php:162 +msgid "Level" +msgstr "級別" + +#: ajax_forms.php:163 +msgid "Count Over" +msgstr "計數超過" + +#: ajax_forms.php:164 +msgid "% Over prior 12 months" +msgstr "% 超過之前的 12 個月" + +#: ajax_forms.php:217 +msgid "Update Report Display Name" +msgstr "更新報表顯示名稱" + +#: ajax_forms.php:222 ajax_forms.php:771 ajax_forms.php:778 ajax_forms.php:785 ajax_htmldata.php:1013 ajax_htmldata.php:1020 ajax_htmldata.php:1027 ajax_htmldata.php:1418 +msgid "update" +msgstr "更新" + +#: ajax_forms.php:295 ajax_htmldata.php:377 ajax_htmldata.php:398 +msgid "Interface Notes" +msgstr "介面備註" + +#: ajax_forms.php:298 ajax_forms.php:376 +msgid "Start Year:" +msgstr "開始年份:" + +#: ajax_forms.php:302 ajax_forms.php:380 +msgid "End Year:" +msgstr "結束年份:" + +#: ajax_forms.php:306 +msgid "Counter Compliant?" +msgstr "遵從 COUNTER?" + +#: ajax_forms.php:308 +msgid "Yes" +msgstr "是" + +#: ajax_forms.php:309 +msgid "No" +msgstr "否" + +#: ajax_forms.php:315 +msgid "Interface Notes:" +msgstr "介面備註:" + +#: ajax_forms.php:324 ajax_forms.php:393 ajax_forms.php:460 ajax_forms.php:626 ajax_forms.php:830 ajax_forms.php:884 +msgid "submit" +msgstr "提交" + +#: ajax_forms.php:373 ajax_htmldata.php:321 +msgid "Publisher Notes" +msgstr "出版商備註" + +#: ajax_forms.php:384 +msgid "Publisher Notes:" +msgstr "出版商備註:" + +#: ajax_forms.php:437 ajax_htmldata.php:470 +msgid "Login" +msgstr "登入" + +#: ajax_forms.php:440 +msgid "Username:" +msgstr "使用者名:" + +#: ajax_forms.php:444 ajax_forms.php:549 +msgid "Password:" +msgstr "密碼:" + +#: ajax_forms.php:447 +msgid "URL:" +msgstr "URL:" + +#: ajax_forms.php:451 +msgid "Login Notes:" +msgstr "登入備註:" + +#: ajax_forms.php:499 ajax_htmldata.php:459 +msgid "SUSHI Connection" +msgstr "SUSHI 連接" + +#: ajax_forms.php:502 +msgid "Service/Endpoint URL:" +msgstr "服務/端點 URL:" + +#: ajax_forms.php:504 +msgid "if using COUNTER's WSDL" +msgstr "如果使用 COUNTER 的 WSDL" + +#: ajax_forms.php:508 +msgid "or - WSDL URL:" +msgstr "或 - WSDL URL:" + +#: ajax_forms.php:510 +msgid "if not using COUNTER's WSDL" +msgstr "如果不使用 COUNTER 的 WSDL" + +#: ajax_forms.php:513 +msgid "Report Type(s):" +msgstr "報表類型:" + +#: ajax_forms.php:515 +msgid "separate report types with semi-colon, e.g. JR1;BR1" +msgstr "用分號分隔報表類型,例如 JR1;BR1" + +#: ajax_forms.php:519 +msgid "COUNTER Release:" +msgstr "COUNTER 發佈:" + +#: ajax_forms.php:528 +msgid "Requestor ID:" +msgstr "請求人 ID:" + +#: ajax_forms.php:532 +msgid "Customer ID:" +msgstr "客戶 ID:" + +#: ajax_forms.php:536 +msgid "Security Type:" +msgstr "安全類型:" + +#: ajax_forms.php:538 ajax_forms.php:544 ajax_forms.php:551 ajax_forms.php:559 +msgid "(optional)" +msgstr "(可選)" + +#: ajax_forms.php:538 +msgid "can be: HTTP Basic, WSSE Authentication" +msgstr "可以是:HTTP 基本、WSSE 身份驗證" + +#: ajax_forms.php:542 +msgid "Login:" +msgstr "登入:" + +#: ajax_forms.php:544 ajax_forms.php:551 +msgid "only needed for HTTP or WSSE Authentication" +msgstr "僅 HTTP 或 WSSE 身份驗證有需要" + +#: ajax_forms.php:557 +msgid "Service Day:" +msgstr "服務日:" + +#: ajax_forms.php:559 +msgid "number indicating the day of month the service should run" +msgstr "數位表示應運行服務的每月日期" + +#: ajax_forms.php:559 +msgid "(e.g. 27 will run 27th of every month)" +msgstr "(例如 27 表示每月的 27 號運行)" + +#: ajax_forms.php:563 +msgid "Sushi Notes:" +msgstr "Sushi 備註:" + +#: ajax_forms.php:611 +msgid "Link Associated Organization" +msgstr "連結關聯的組織" + +#: ajax_forms.php:615 +msgid "Organization:" +msgstr "組織:" + +#: ajax_forms.php:686 ajax_forms.php:762 ajax_htmldata.php:961 +msgid "None currently" +msgstr "當前沒有" + +#: ajax_forms.php:693 ajax_htmldata.php:968 +msgid "update override" +msgstr "更新越權" + +#: ajax_forms.php:693 ajax_htmldata.php:969 +msgid "ignore outlier" +msgstr "忽略異常值" + +#: ajax_forms.php:702 ajax_forms.php:796 ajax_forms.php:953 +msgid "Close" +msgstr "關閉" + +#: ajax_forms.php:753 +msgid "(showing only titles for which there were outliers during the year)" +msgstr "(為有異常值的年份僅顯示題名)" + +#: ajax_forms.php:768 ajax_htmldata.php:1010 +msgid "Total" +msgstr "總計" + +#: ajax_forms.php:775 ajax_htmldata.php:1017 +msgid "PDF" +msgstr "PDF" + +#: ajax_forms.php:821 +msgid "Add New Platform for SUSHI Connection" +msgstr "為 SUSHI 連接添加新平臺" + +#: ajax_forms.php:822 ajax_htmldata.php:1514 +msgid "Platform Name" +msgstr "平臺名稱" + +#: ajax_forms.php:863 +msgid "Add Identifier" +msgstr "添加識別碼" + +#: ajax_forms.php:864 +msgid "Identifier Type" +msgstr "識別碼類型" + +#: ajax_forms.php:867 ajax_htmldata.php:720 ajax_htmldata.php:796 spreadsheet.php:86 titles_spreadsheet.php:55 +msgid "ISSN" +msgstr "ISSN" + +#: ajax_forms.php:868 ajax_htmldata.php:721 +msgid "eISSN" +msgstr "eISSN" + +#: ajax_forms.php:869 ajax_htmldata.php:795 spreadsheet.php:85 titles_spreadsheet.php:54 +msgid "ISBN" +msgstr "ISBN" + +#: ajax_forms.php:870 +msgid "eISBN" +msgstr "eISBN" + +#: ajax_forms.php:871 ajax_htmldata.php:719 ajax_htmldata.php:794 spreadsheet.php:63 spreadsheet.php:83 titles_spreadsheet.php:49 titles_spreadsheet.php:53 +msgid "DOI" +msgstr "DOI" + +#: ajax_forms.php:872 spreadsheet.php:64 spreadsheet.php:84 +msgid "Proprietary ID" +msgstr "專有 ID" + +#: ajax_forms.php:876 +msgid "Identifier" +msgstr "識別碼" + +#: ajax_forms.php:918 +msgid "Associated Titles and Identifiers" +msgstr "關聯的題名和識別碼" + +#: ajax_forms.php:981 +msgid "Add New" +msgstr "新增" + +#: ajax_forms.php:988 +msgid " User" +msgstr "使用者" + +#: ajax_forms.php:989 ajax_htmldata.php:1402 +msgid "Login ID" +msgstr "登入識別碼" + +#: ajax_forms.php:990 ajax_htmldata.php:1403 +msgid "First Name" +msgstr "名" + +#: ajax_forms.php:991 ajax_htmldata.php:1404 +msgid "Last Name" +msgstr "姓" + +#: ajax_forms.php:992 ajax_htmldata.php:1405 +msgid "Privilege" +msgstr "特權" + +#: ajax_forms.php:996 +msgid "Add/Edit users have access to everything" +msgstr "添加/編輯有全部存取權限的使用者" + +#: ajax_forms.php:996 +msgid "except the Admin tab and admin users" +msgstr "除了「管理」選項卡和管理員使用者" + +#: ajax_forms.php:996 +msgid "have access to everything" +msgstr "有全部存取權限" + +#: ajax_forms.php:1042 ajax_htmldata.php:1639 ajax_processing.php:598 +msgid "Function " +msgstr "功能" + +#: ajax_forms.php:1042 ajax_htmldata.php:1639 ajax_processing.php:598 +msgid " not set up!" +msgstr "尚未設立!" + +#: ajax_htmldata.php:47 +msgid "Import History for " +msgstr "輸入歷史紀錄" + +#: ajax_htmldata.php:62 ajax_htmldata.php:1147 +msgid "Import Date" +msgstr "輸入日期" + +#: ajax_htmldata.php:63 ajax_htmldata.php:1148 +msgid "Imported By" +msgstr "輸入者" + +#: ajax_htmldata.php:64 ajax_htmldata.php:1149 +msgid "Import Summary" +msgstr "輸入摘要" + +#: ajax_htmldata.php:76 ajax_htmldata.php:1168 +msgid "view log" +msgstr "查看日誌" + +#: ajax_htmldata.php:77 ajax_htmldata.php:1169 +msgid "view archive" +msgstr "查看存檔" + +#: ajax_htmldata.php:82 +msgid "(no imports found)" +msgstr "(未找到導入)" + +#: ajax_htmldata.php:96 +msgid "Publisher Logins" +msgstr "出版商登入" + +#: ajax_htmldata.php:113 ajax_htmldata.php:174 +msgid "Interface Login" +msgstr "介面登入" + +#: ajax_htmldata.php:114 ajax_htmldata.php:175 ajax_htmldata.php:242 ajax_htmldata.php:471 +msgid "Password" +msgstr "密碼" + +#: ajax_htmldata.php:115 ajax_htmldata.php:176 ajax_htmldata.php:243 +msgid "URL" +msgstr "URL" + +#: ajax_htmldata.php:116 ajax_htmldata.php:177 +msgid "Login Notes" +msgstr "登入備註" + +#: ajax_htmldata.php:128 ajax_htmldata.php:189 ajax_htmldata.php:351 ajax_htmldata.php:420 ajax_htmldata.php:901 ajax_htmldata.php:925 uploadComplete.php:357 +msgid "edit" +msgstr "編輯" + +#: ajax_htmldata.php:128 ajax_htmldata.php:189 ajax_htmldata.php:351 ajax_htmldata.php:420 ajax_htmldata.php:1419 +msgid "remove" +msgstr "移除" + +#: ajax_htmldata.php:138 ajax_htmldata.php:199 ajax_htmldata.php:359 ajax_htmldata.php:428 ajax_htmldata.php:478 ajax_htmldata.php:638 ajax_htmldata.php:665 ajax_htmldata.php:699 ajax_htmldata.php:1428 +#: ajax_htmldata.php:1536 +msgid "(none found)" +msgstr "(未找到)" + +#: ajax_htmldata.php:146 ajax_htmldata.php:207 +msgid "add new login" +msgstr "添加新登入" + +#: ajax_htmldata.php:157 +msgid "Interface Logins" +msgstr "介面登入" + +#: ajax_htmldata.php:217 +msgid "Organization Accounts" +msgstr "組織帳戶" + +#: ajax_htmldata.php:237 +msgid "For " +msgstr "為" + +#: ajax_htmldata.php:237 ajax_htmldata.php:261 +msgid "view organization" +msgstr "檢視組織" + +#: ajax_htmldata.php:240 +msgid "Login Type" +msgstr "登入類型" + +#: ajax_htmldata.php:241 +msgid "Username" +msgstr "使用者名" + +#: ajax_htmldata.php:244 ajax_htmldata.php:338 ajax_htmldata.php:473 +msgid "Notes" +msgstr "備註" + +#: ajax_htmldata.php:261 +msgid "No login information stored for " +msgstr "沒有儲存的登入資訊為" + +#: ajax_htmldata.php:266 +msgid "change associated organization" +msgstr "更改關聯的組織" + +#: ajax_htmldata.php:275 +msgid "link to associated organization" +msgstr "到關聯組織的連結" + +#: ajax_htmldata.php:300 +msgid "Login Credentials are also available for the following publishers:" +msgstr "登錄憑據也可用於如下出版商:" + +#: ajax_htmldata.php:336 ajax_htmldata.php:395 +msgid "Start Year" +msgstr "開始年份" + +#: ajax_htmldata.php:337 ajax_htmldata.php:396 +msgid "End Year" +msgstr "結束年份" + +#: ajax_htmldata.php:345 +msgid "Present" +msgstr "當前" + +#: ajax_htmldata.php:364 +msgid "add new publisher notes" +msgstr "添加新的出版商備註" + +#: ajax_htmldata.php:397 +msgid "Counter" +msgstr "COUNTER" + +#: ajax_htmldata.php:397 +msgid "Compliant?" +msgstr "遵從?" + +#: ajax_htmldata.php:433 +msgid "add new interface note" +msgstr "添加新的介面備註" + +#: ajax_htmldata.php:463 +msgid "Service URL" +msgstr "服務 URL" + +#: ajax_htmldata.php:464 +msgid "WSDL URL" +msgstr "WSDL URL" + +#: ajax_htmldata.php:465 +msgid "COUNTER Release" +msgstr "COUNTER 發佈" + +#: ajax_htmldata.php:466 +msgid "Report Layouts" +msgstr "報表佈局" + +#: ajax_htmldata.php:467 +msgid "Requestor ID" +msgstr "請求人 ID" + +#: ajax_htmldata.php:468 +msgid "Customer ID" +msgstr "客戶 ID" + +#: ajax_htmldata.php:469 +msgid "Security" +msgstr "安全" + +#: ajax_htmldata.php:472 +msgid "Service Day" +msgstr "服務日" + +#: ajax_htmldata.php:472 +msgid " (day of month)" +msgstr "(每月此日)" + +#: ajax_htmldata.php:475 +msgid "Edit SUSHI Connection Info" +msgstr "編輯 SUSHI 連接資訊" + +#: ajax_htmldata.php:476 +msgid "Test SUSHI Connection" +msgstr "測試 SUSHI 連接" + +#: ajax_htmldata.php:478 +msgid "Add SUSHI Connection" +msgstr "添加 SUSHI 連接" + +#: ajax_htmldata.php:484 +msgid "Visit the " +msgstr "訪問" + +#: ajax_htmldata.php:484 +msgid "SUSHI Server Registry" +msgstr "SUSHI 伺服器註冊表" + +#: ajax_htmldata.php:484 +msgid " for information about adding your provider." +msgstr "有關添加您的供應商的資訊。" + +#: ajax_htmldata.php:511 ajax_htmldata.php:602 +msgid "delete entire month" +msgstr "刪除整個月" + +#: ajax_htmldata.php:522 ajax_htmldata.php:606 +msgid "view outliers for this month" +msgstr "查看該月的異常值" + +#: ajax_htmldata.php:557 ajax_htmldata.php:638 +msgid "Statistics Management" +msgstr "統計管理" + +#: ajax_htmldata.php:568 +msgid "(archive)" +msgstr "(歸檔)" + +#: ajax_htmldata.php:578 +msgid "View Spreadsheet" +msgstr "查看試算表" + +#: ajax_htmldata.php:623 +msgid "update overrides for this year" +msgstr "為該年更新越權" + +#: ajax_htmldata.php:625 +msgid "(no outliers found for this year)" +msgstr "(未找到該年的異常值)" + +#: ajax_htmldata.php:661 ajax_htmldata.php:699 +msgid "Titles" +msgstr "題名" + +#: ajax_htmldata.php:669 +msgid "View Journal Spreadsheet" +msgstr "查看期刊試算表" + +#: ajax_htmldata.php:673 +msgid "View Books Spreadsheet" +msgstr "查看圖書試算表" + +#: ajax_htmldata.php:714 +msgid "Journals - Associated Titles and ISSNs" +msgstr "期刊 - 關聯的題名和 ISSN" + +#: ajax_htmldata.php:718 ajax_htmldata.php:793 ajax_htmldata.php:867 +msgid "Title" +msgstr "題名" + +#: ajax_htmldata.php:761 ajax_htmldata.php:838 +msgid "view related titles" +msgstr "查看相關的題名" + +#: ajax_htmldata.php:761 ajax_htmldata.php:838 +msgid "view in link resolver" +msgstr "在連結解析器中查看" + +#: ajax_htmldata.php:789 +msgid "Books - Associated Titles and ISBNs" +msgstr "圖書 - 關聯的題名和 ISBN" + +#: ajax_htmldata.php:863 +msgid "Database Titles" +msgstr "資料庫標題" + +#: ajax_htmldata.php:896 +msgid "Current Email Addresses" +msgstr "當前的電子郵件地址" + +#: ajax_htmldata.php:902 +msgid "delete" +msgstr "刪除" + +#: ajax_htmldata.php:921 +msgid "Current Outlier Parameters" +msgstr "當前異常參數" + +#: ajax_htmldata.php:924 uploadComplete.php:112 +msgid "Level " +msgstr "級別" + +#: ajax_htmldata.php:924 uploadComplete.php:112 +msgid " over plus " +msgstr "超過且" + +#: ajax_htmldata.php:924 +#, php-format +msgid "% over - displayed " +msgstr "% 超過 - 已顯示" + +#: ajax_htmldata.php:929 +msgid "Outliers are currently disabled in the configuration file. Contact your technical support to enable them." +msgstr "設定檔中當前已禁用異常值。請聯絡您的技術支援啟用異常值。" + +#: ajax_htmldata.php:1055 ajax_htmldata.php:1080 reporting.php:36 reporting.php:59 +msgid "edit report display name" +msgstr "編輯報表顯示名稱" + +#: ajax_htmldata.php:1106 +msgid "No imports found." +msgstr "未找到輸入。" + +#: ajax_htmldata.php:1112 ajax_htmldata.php:1472 +msgid "Displaying " +msgstr "顯示" + +#: ajax_htmldata.php:1112 ajax_htmldata.php:1472 +msgid " to " +msgstr "到" + +#: ajax_htmldata.php:1112 ajax_htmldata.php:1472 +msgid " of " +msgstr "之" + +#: ajax_htmldata.php:1112 +msgid " Records" +msgstr "紀錄" + +#: ajax_htmldata.php:1228 ajax_htmldata.php:1280 ajax_htmldata.php:1337 +msgid "Platform/Publisher" +msgstr "平臺/出版商" + +#: ajax_htmldata.php:1229 +msgid "Import Run Date" +msgstr "輸入運行日期" + +#: ajax_htmldata.php:1230 +msgid "Details" +msgstr "詳細資訊" + +#: ajax_htmldata.php:1254 +msgid "view to process" +msgstr "查看進程" + +#: ajax_htmldata.php:1255 +msgid "delete import" +msgstr "刪除輸入" + +#: ajax_htmldata.php:1260 +msgid "(no outstanding imports found)" +msgstr "(未找到未完成的輸入)" + +#: ajax_htmldata.php:1281 ajax_htmldata.php:1340 ajax_htmldata.php:1517 +msgid "Latest Run" +msgstr "最後一次運行" + +#: ajax_htmldata.php:1282 ajax_htmldata.php:1341 ajax_htmldata.php:1518 +msgid "Latest Status" +msgstr "最新狀態" + +#: ajax_htmldata.php:1308 +msgid "view full log" +msgstr "查看完整日誌" + +#: ajax_htmldata.php:1309 ajax_htmldata.php:1372 +msgid "run now" +msgstr "現在運行" + +#: ajax_htmldata.php:1310 ajax_htmldata.php:1373 +msgid "change/test connection" +msgstr "更改/測試連接" + +#: ajax_htmldata.php:1317 +msgid "(no failed imports found)" +msgstr "(未找到失敗的輸入)" + +#: ajax_htmldata.php:1338 +msgid "Report(s)" +msgstr "報表" + +#: ajax_htmldata.php:1339 ajax_htmldata.php:1516 +msgid "Next Run" +msgstr "下次運行" + +#: ajax_htmldata.php:1380 +msgid "(no sushi services set up)" +msgstr "(未設定Sushi服務)" + +#: ajax_htmldata.php:1468 +msgid "Sorry, no platforms or publishers fit your query" +msgstr "抱歉,沒有符合您的查詢的平臺或出版商" + +#: ajax_htmldata.php:1472 +msgid " Platform Records" +msgstr "平臺紀錄" + +#: ajax_htmldata.php:1515 +msgid "Publishers" +msgstr "出版商" + +#: ajax_htmldata.php:1519 +msgid "By" +msgstr "由" + +#: ajax_htmldata.php:1620 +msgid "records per page" +msgstr "條紀錄/頁" + +#: ajax_processing.php:395 +msgid "Override has been updated" +msgstr "越權已更新" + +#: ajax_processing.php:442 +msgid "Platform Reporting Display Name has been updated" +msgstr "平臺報表顯示名稱已更新" + +#: ajax_processing.php:458 ajax_processing.php:490 +msgid "Default display list has been updated" +msgstr "預設顯示清單已更新" + +#: ajax_processing.php:474 +msgid "Publisher Reporting Display Name has been updated" +msgstr "出版商報表顯示名稱已更新" + +#: import.php:3 index.php:26 templates/header.php:167 templates/header.php:216 +msgid "Home" +msgstr "主頁" + +#: import.php:14 +msgid "Usage Statistics Import" +msgstr "使用統計資料導入" + +#: import.php:25 +msgid "Incorrect File format, must be .txt!" +msgstr "檔案格式不正確,必須是.txt!" + +#: import.php:28 +msgid "There was an error uploading the file. Please verify the size is not over 5MB and try again!" +msgstr "上傳檔時出錯。 請驗證大小不超過 5MB,然後重試!" + +#: import.php:31 +msgid "File has an incorrectly formatted name - try filename.txt!" +msgstr "檔案名稱格式不正確 - 請嘗試 filename.txt!" + +#: import.php:43 +msgid "File:" +msgstr "檔:" + +#: import.php:48 +msgid "Layout:" +msgstr "佈局:" + +#: import.php:57 +msgid "Override previous month verification" +msgstr "越權上月驗證" + +#: import.php:58 +msgid "Upload" +msgstr "上傳" + +#: import.php:68 +msgid "Instructions:" +msgstr "說明︰" + +#: import.php:70 +msgid "Save file as .txt files in tab delimited format" +msgstr "用選項卡分隔格式保存檔為 .txt 檔" + +#: import.php:71 +msgid "File may not be larger than 5MB" +msgstr "檔不能大於 5MB" + +#: import.php:72 +msgid "Ensure column headers conform to Counter's standards for the report type" +msgstr "確保欄標題符合 COUNTER 的報表類型標準" + +#: import.php:73 +msgid "More info: " +msgstr "更多資訊:" + +#: import.php:82 +msgid "Recent Imports" +msgstr "最近輸入" + +#: index.php:49 +msgid "Search" +msgstr "查詢" + +#: index.php:50 +msgid "new search" +msgstr "新的查詢" + +#: index.php:59 +msgid "Name (contains)" +msgstr "名稱 (包含)" + +#: index.php:62 +msgid "go!" +msgstr "搜尋!" + +#: index.php:69 +msgid "Starts with" +msgstr "開始字母" + +#: not_avail.php:21 +msgid "Not Available" +msgstr "不可用" + +#: not_avail.php:29 +msgid "Usage Statistics Module" +msgstr "使用統計資訊模組" + +#: not_avail.php:61 +msgid "Please contact your Administrator for access to the Usage Statistics Module." +msgstr "請聯絡您的管理員以訪問「使用統計模組」。" + +#: publisherPlatform.php:20 +msgid "View or Edit Publisher / Platform" +msgstr "查看或編輯出版商/平臺" + +#: publisherPlatformList.php:4 +msgid "Edit Publishers / Platforms" +msgstr "編輯出版商/平臺" + +#: publisherPlatformList.php:16 +msgid "Publisher / Platform Update" +msgstr "出版商/平臺更新" + +#: publisherPlatformList.php:31 publisherPlatformList.php:42 +msgid "view / edit" +msgstr "查看/編輯" + +#: publisherPlatformList.php:50 reporting.php:71 +msgid "No publishers / platforms found." +msgstr "未找到出版商/平臺。" + +#: reporting.php:2 templates/header.php:195 templates/header.php:237 +msgid "Report Options" +msgstr "報表選項" + +#: reporting.php:10 +msgid "Publisher / Platform Reporting Administrative Update" +msgstr "出版商/平臺報表管理更新" + +#: reporting.php:12 +msgid "Directions:" +msgstr "方向:" + +#: reporting.php:12 +msgid "Mark the checkboxes to add / remove specific Platforms or Publishers to the default report list." +msgstr "勾選核取方塊以在預設的報表清單中添加/移除特定的平臺或出版商。" + +#: reporting.php:12 +msgid "Click 'edit report display name' to change the display name in the reporting system for specific Platforms or Publishers." +msgstr "按一下「編輯報表顯示名稱」可更改報表系統中特定平臺或出版商的顯示名稱。" + +#: reporting.php:25 +msgid "Available" +msgstr "可用" + +#: reporting.php:25 +msgid "As Default" +msgstr "作為預設值" + +#: reporting.php:25 +msgid "Report" +msgstr "報表" + +#: spreadsheet.php:60 +msgid "Publisher" +msgstr "出版商" + +#: spreadsheet.php:61 +msgid "Platform" +msgstr "平臺" + +#: spreadsheet.php:65 titles_spreadsheet.php:50 +msgid "Print ISSN" +msgstr "列印 ISSN" + +#: spreadsheet.php:66 titles_spreadsheet.php:51 +msgid "Online ISSN" +msgstr "在线 ISSN" + +#: spreadsheet.php:67 spreadsheet.php:87 spreadsheet.php:102 +msgid "YTD Total" +msgstr "YTD 總計" + +#: spreadsheet.php:68 +msgid "YTD HTML" +msgstr "YTD HTML" + +#: spreadsheet.php:69 +msgid "YTD PDF" +msgstr "YTD PDF" + +#: spreadsheet.php:70 spreadsheet.php:88 spreadsheet.php:103 +msgid "Jan-" +msgstr "一月" + +#: spreadsheet.php:71 spreadsheet.php:89 spreadsheet.php:104 +msgid "Feb-" +msgstr "二月" + +#: spreadsheet.php:72 spreadsheet.php:90 spreadsheet.php:105 +msgid "Mar-" +msgstr "三月" + +#: spreadsheet.php:73 spreadsheet.php:91 spreadsheet.php:106 +msgid "Apr-" +msgstr "四月" + +#: spreadsheet.php:74 spreadsheet.php:92 spreadsheet.php:107 +msgid "May-" +msgstr "五月" + +#: spreadsheet.php:75 spreadsheet.php:93 spreadsheet.php:108 +msgid "Jun-" +msgstr "六月" + +#: spreadsheet.php:76 spreadsheet.php:94 spreadsheet.php:109 +msgid "Jul-" +msgstr "七月" + +#: spreadsheet.php:77 spreadsheet.php:95 spreadsheet.php:110 +msgid "Aug-" +msgstr "八月" + +#: spreadsheet.php:78 spreadsheet.php:96 spreadsheet.php:111 +msgid "Sep-" +msgstr "九月" + +#: spreadsheet.php:79 spreadsheet.php:97 spreadsheet.php:112 +msgid "Oct-" +msgstr "十月" + +#: spreadsheet.php:80 spreadsheet.php:98 spreadsheet.php:113 +msgid "Nov-" +msgstr "十一月" + +#: spreadsheet.php:81 spreadsheet.php:99 spreadsheet.php:114 +msgid "Dec-" +msgstr "十二月" + +#: spreadsheet.php:101 +msgid "User Activity" +msgstr "使用者活動" + +#: spreadsheet.php:124 +msgid "Total for all Journals" +msgstr "所有期刊總計" + +#: spreadsheet.php:126 +msgid "Total for all Books" +msgstr "所有圖書總計" + +#: spreadsheet.php:128 +msgid "Total for all Databases" +msgstr "所有資料庫總計" + +#: sushi.php:26 +msgid "SUSHI Import" +msgstr "SUSHI 輸入" + +#: sushi.php:45 +msgid "Sushi Output Log:" +msgstr "Sushi 輸出日誌:" + +#: sushi.php:56 +msgid "SUSHI Administration" +msgstr "SUSHI 管理" + +#: sushi.php:62 +msgid "Add new platform for SUSHI" +msgstr "為 SUSHI 添加新平臺" + +#: sushi.php:71 +msgid "Outstanding Import Queue" +msgstr "未完成的輸入佇列" + +#: sushi.php:75 +msgid "Last Failed SUSHI Imports" +msgstr "上次失敗的 SUSHI 輸入" + +#: sushi.php:79 +msgid "All SUSHI Services" +msgstr "所有 SUSHI 服務" + +#: sushiSchedule.php:33 +msgid " SUSHI runs found for day: " +msgstr "找到 SUSHI 運行日:" + +#: sushiSchedule.php:52 +msgid "Log in to " +msgstr "登入" + +#: sushiSchedule.php:52 +msgid "Sushi Administration" +msgstr "SUSHI 管理" + +#: sushiSchedule.php:52 +msgid " for more information." +msgstr "了解更多資訊." + +#: sushiSchedule.php:65 +msgid "SUSHI Scheduled run log for " +msgstr "計畫的 SUSHI 運行日誌為" + +#: sushiSchedule.php:65 +msgid " runs" +msgstr "運行" + +#: sushiSchedule.php:70 +msgid "Run complete. Log has been emailed to " +msgstr "運行完成。已使用電子郵件發送到" + +#: sushiSchedule.php:72 uploadComplete.php:977 +msgid "Email to " +msgstr "發送電子郵件至" + +#: sushiSchedule.php:72 uploadComplete.php:977 +msgid " Failed!" +msgstr "失敗!" + +#: sushiSchedule.php:77 +msgid "Nothing to see here! (no sushi scheduled today)" +msgstr "此處無內容可顯示! (今天沒有計劃的 SUSHI)" + +#: templates/header.php:40 templates/header.php:92 +msgid "Usage Statistics" +msgstr "使用統計資訊" + +#: templates/header.php:72 +msgid "JavaScript must be enabled in order for you to use CORAL. However, it seems JavaScript is either disabled or not supported by your browser. To use CORAL, enable JavaScript by changing your browser options, then " +msgstr "先啟用JavaScript以後才能使用COREL。然而,您的瀏覽器似乎停用了JavaScript,不然就是不支援JavaScript。要使用COREL,先到瀏覽器選項內更改為啟用JavaScript,然後" + +#: templates/header.php:72 +msgid "try again" +msgstr "技術支持:再試一次" + +#: templates/header.php:93 +msgid "Powered by" +msgstr "技術支持:" + +#: templates/header.php:99 +msgid "Hello" +msgstr "你好" + +#: templates/header.php:109 +msgid "logout" +msgstr "登出" + +#: templates/header.php:109 +msgid "Help" +msgstr "説明" + +#: templates/header.php:127 +msgid "Invalid translation route!" +msgstr "不正確翻譯路線 !" + +#: templates/header.php:174 templates/header.php:223 +msgid "File Import" +msgstr "檔輸入" + +#: templates/header.php:181 templates/header.php:230 +msgid "SUSHI" +msgstr "SUSHI" + +#: templates/header.php:188 +msgid "Admin" +msgstr "管理" + +#: templates/header.php:204 templates/header.php:246 +msgid "Usage Reports" +msgstr "使用情況報表" + +#: templates/header.php:265 +msgid "Change Module" +msgstr "更改模組" + +#: templates/header.php:268 +msgid "Main Menu" +msgstr "主菜單" + +#: templates/header.php:273 +msgid "Resources" +msgstr "資源" + +#: templates/header.php:278 +msgid "Organizations" +msgstr "組織" + +#: templates/header.php:283 +msgid "Licensing" +msgstr "授權許可" + +#: templates/header.php:288 +msgid "Management" +msgstr "管理" + +#: titles_spreadsheet.php:35 +msgid " Titles " +msgstr "題名" + +#: uploadComplete.php:25 +msgid "Upload Process Complete" +msgstr "上載過程完成" + +#: uploadComplete.php:90 +msgid "Process started on " +msgstr "進程開始於" + +#: uploadComplete.php:91 +msgid "File: " +msgstr "檔:" + +#: uploadComplete.php:92 uploadConfirmation.php:334 +msgid "Report Format: " +msgstr "報表格式:" + +#: uploadComplete.php:105 +msgid "Outlier Parameters:" +msgstr "異常值參數:" + +#: uploadComplete.php:112 +#, php-format +msgid "% over " +msgstr "% 以上" + +#: uploadComplete.php:283 +msgid "Override indicator set - all months will be imported." +msgstr "越權指示符設定 - 將輸入所有月份。" + +#: uploadComplete.php:292 +msgid "Entire year already exists for this Platform / year. No counts will be imported." +msgstr "全年已存在於該平臺/年。不會輸入計數。" + +#: uploadComplete.php:296 +msgid "Month Started at: " +msgstr "月份始于:" + +#: uploadComplete.php:298 +msgid "No records exist for this Platform / year. Import will start with month 1." +msgstr "該平臺/年份不存在紀錄。輸入將始于月份 1。" + +#: uploadComplete.php:301 +msgid "Partial year records exist for this Platform / year. Import will start with month 1 and end with month " +msgstr "該平臺/年份已存在部分紀錄。輸入將始于月份 1,並結束于月份" + +#: uploadComplete.php:320 +msgid "Year: " +msgstr "年份:" + +#: uploadComplete.php:357 +msgid "New Platform set up: " +msgstr "新的平臺設定:" + +#: uploadComplete.php:439 +msgid "New Publisher / Platform set up: " +msgstr "新的出版商/平臺設定:" + +#: uploadComplete.php:672 +msgid "Publisher / Platform: " +msgstr "出版商/平臺:" + +#: uploadComplete.php:681 +msgid "Title: " +msgstr "題名:" + +#: uploadComplete.php:712 +msgid "Merged" +msgstr "已合併" + +#: uploadComplete.php:717 +msgid "Duplicate record for this Print ISSN in same spreadsheet: Month: " +msgstr "在同一電子報表中複製該列印 ISSN 的紀錄:月份:" + +#: uploadComplete.php:717 +msgid " New Count: " +msgstr "新計數:" + +#: uploadComplete.php:809 +msgid "New Usage Count Record Added: Month: " +msgstr "已添加新的使用計數紀錄:月份:" + +#: uploadComplete.php:809 uploadComplete.php:811 +msgid " Count: " +msgstr "計數:" + +#: uploadComplete.php:811 +msgid "Usage Count Record is not numeric for month: " +msgstr "月份的使用計數紀錄不是數位:" + +#: uploadComplete.php:811 +msgid " imported as 0." +msgstr "導入為 0。" + +#: uploadComplete.php:818 +msgid "Outlier found for this record: Level " +msgstr "找到該紀錄的異常值:層級" + +#: uploadComplete.php:827 +msgid "Current or future month will not be imported: " +msgstr "不會導入當前或將來的月份:" + +#: uploadComplete.php:877 +msgid "YTD Already Exists for this Print ISSN, counts are added together." +msgstr "該列印 ISSN 已存在 YTD,計數被加在一起。" + +#: uploadComplete.php:901 +msgid "YTD Total Count: " +msgstr "YTD 總計數:" + +#: uploadComplete.php:901 +msgid "YTD HTML Count: " +msgstr "YTD HTML 計數:" + +#: uploadComplete.php:901 +msgid "YTD PDF Count: " +msgstr "YTD PDF 計數:" + +#: uploadComplete.php:908 +msgid "No YTD import performed since monthly stats were not imported" +msgstr "由於未輸入每月統計而未執行 YTD 輸入" + +#: uploadComplete.php:918 +msgid "Title match did not complete correctly, please check ISBN / ISSN to verify for Title: " +msgstr "題名比對沒有正確完成,請檢查 ISBN/ISSN 以驗證題名:" + +#: uploadComplete.php:970 +msgid "Log Output for " +msgstr "日誌輸出為" + +#: uploadComplete.php:971 +msgid "Usage Statistics File Import Run!" +msgstr "使用統計資料檔案輸入運行!" + +#: uploadComplete.php:971 +msgid "Please find log file: " +msgstr "請找到日誌檔:" + +#: uploadComplete.php:975 +msgid "Log has been emailed to " +msgstr "日誌已透過電子郵件發送到" + +#: uploadComplete.php:993 uploadComplete.php:1000 uploadComplete.php:1043 +msgid " titles processed." +msgstr "個題名已處理。" + +#: uploadComplete.php:1037 +msgid "Status" +msgstr "狀態" + +#: uploadComplete.php:1039 +msgid "File archived as" +msgstr "檔已歸檔為" + +#: uploadComplete.php:1040 +msgid "Log file available at:" +msgstr "日誌檔可用:" + +#: uploadComplete.php:1041 +msgid "Process completed." +msgstr "進程已完成。" + +#: uploadComplete.php:1043 +msgid "Summary:" +msgstr "摘要:" + +#: uploadConfirmation.php:33 +msgid "SUSHI Import Confirmation" +msgstr "SUSHI 輸入確認" + +#: uploadConfirmation.php:115 +msgid "The file " +msgstr "檔" + +#: uploadConfirmation.php:115 +msgid " has been uploaded successfully." +msgstr "已成功更新。" + +#: uploadConfirmation.php:115 +msgid "Please confirm the following data:" +msgstr "請確認如下資料:" + +#: uploadConfirmation.php:135 +msgid "Upload Process Confirmation" +msgstr "上傳進程確認" + +#: uploadConfirmation.php:185 uploadConfirmation.php:249 +msgid " for " +msgstr "為" + +#: uploadConfirmation.php:232 +msgid "Looking for " +msgstr "尋找" + +#: uploadConfirmation.php:232 +msgid " in column " +msgstr "在列" + +#: uploadConfirmation.php:232 +msgid "but found " +msgstr "但找到" + +#: uploadConfirmation.php:307 +msgid "Error with Format" +msgstr "格式錯誤" + +#: uploadConfirmation.php:307 +msgid "Report format is set to " +msgstr "報表格式設定為" + +#: uploadConfirmation.php:307 +msgid " but does not match the column names listed in layouts.ini for this format" +msgstr "但是不與佈局 .ini 中為該格式列出的列名稱相對應" + +#: uploadConfirmation.php:307 +msgid "Expecting columns: " +msgstr "預期列:" + +#: uploadConfirmation.php:307 +msgid "Found columns: " +msgstr "找到列:" + +#: uploadConfirmation.php:307 +msgid "If problems persist you can copy an existing header that works into this file." +msgstr "如果問題持續存在,您可以複製一個可用於該檔的現有標題。" + +#: uploadConfirmation.php:312 +msgid "Error with Setup: This report format is not set up in layouts.ini." +msgstr "安裝錯誤:未在 layouts.ini 中設定該報表格式。" + +#: uploadConfirmation.php:317 +msgid "Error with Format: The line preceding the first should start with 'Total'." +msgstr "格式錯誤:第一行之前應以「總計」開始。" + +#: uploadConfirmation.php:322 +msgid "Error with Year: Year listed in header" +msgstr "年份錯誤:列于標題的年份" + +#: uploadConfirmation.php:322 +msgid "may not be ahead of current year. Please correct and submit again." +msgstr "不能超過當前年份。請更正並再次提交。" + +#: uploadConfirmation.php:327 +msgid "File is flagged to override verifications of previous month data. If this is incorrect use 'Cancel' to fix." +msgstr "檔被標記用於覆蓋之前月份資料的驗證。如果不正確,則使用「取消」進行修復。" + +#: uploadConfirmation.php:334 +msgid "If this is incorrect, please use 'Cancel' to go back and fix the headers of the file." +msgstr "如果不正確,則請使用「取消」返回並修復檔標題。" + +#: uploadConfirmation.php:337 +msgid "File has been imported from SUSHI. The default behavior for imported SUSHI files is to overwrite previously imported data. If this is incorrect, please contact a system administrator." +msgstr "已從 SUSHI 輸入檔。被輸入的 SUSHI 檔的預設行為是覆蓋之前輸入的資料。如果不正確,請聯絡一位系統管理員。" + +#: uploadConfirmation.php:354 +msgid "Confirm" +msgstr "確認" + +#: uploadConfirmation.php:357 +msgid "Cancel" +msgstr "取消"