/[drupal]/contributions/translations/zh-hans/modules-php.po
ViewVC logotype

Contents of /contributions/translations/zh-hans/modules-php.po

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Mon Apr 21 02:35:12 2008 UTC (19 months, 1 week ago) by dami
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-6--1
File MIME type: text/x-gettext
Drupal 6.x translation, first export from l10n_server.
1 # Chinese, Simplified translation of drupal (6.2)
2 # Copyright (c) 2008 by the Chinese, Simplified translation team
3 # Generated from files:
4 # php.module,v 1.8.2.1 2008/02/05 09:29:50 goba
5 # php.install,v 1.1 2007/04/24 10:54:34 dries
6 #
7 msgid ""
8 msgstr ""
9 "Project-Id-Version: drupal (6.2)\n"
10 "POT-Creation-Date: 2008-04-20 19:11-0400\n"
11 "PO-Revision-Date: 2008-04-16 23:33-0400\n"
12 "Language-Team: Chinese, Simplified\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=utf-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
17
18 #: modules/php/php.module:16
19 msgid ""
20 "The PHP filter adds the ability to include PHP code in posts. PHP is a "
21 "general-purpose scripting language widely-used for web development; "
22 "the content management system used by this website has been developed "
23 "using PHP."
24 msgstr ""
25
26 #: modules/php/php.module:17
27 msgid ""
28 "Through the PHP filter, users with the proper permission may include "
29 "custom PHP code within a page of the site. While this is a powerful "
30 "and flexible feature if used by a trusted user with PHP experience, it "
31 "is a significant and dangerous security risk in the hands of a "
32 "malicious user. Even a trusted user may accidentally compromise the "
33 "site by entering malformed or incorrect PHP code. Only the most "
34 "trusted users should be granted permission to use the PHP filter, and "
35 "all PHP code added through the PHP filter should be carefully examined "
36 "before use."
37 msgstr ""
38
39 #: modules/php/php.module:18,61
40 msgid ""
41 "<a href=\"@drupal\">Drupal.org</a> offers <a "
42 "href=\"@php-snippets\">some example PHP snippets</a>, or you can "
43 "create your own with some PHP experience and knowledge of the Drupal "
44 "system."
45 msgstr ""
46 "<a href=\"@drupal\">Drupal.org</a> 有 <a "
47 "href=\"@php-snippets\">一些PHP的代码片段</a>,由PHP与Drupal经验的用户也可以创建自己的代码。"
48
49 #: modules/php/php.module:19
50 msgid ""
51 "For more information, see the online handbook entry for <a "
52 "href=\"@php\">PHP module</a>."
53 msgstr ""
54 "想了解更多的信息请参在线帮助手册<a "
55 "href=\"@php\">PHP模块</a>。"
56
57 #: modules/php/php.module:32
58 msgid "You may post PHP code. You should include &lt;?php ?&gt; tags."
59 msgstr ""
60 "您可以发表 PHP 代码。当然,您需要包括 &lt;?php ?&gt; "
61 "标签。"
62
63 #: modules/php/php.module:34
64 msgid "Using custom PHP code"
65 msgstr "用定制的PHP代码"
66
67 #: modules/php/php.module:35
68 msgid ""
69 "Custom PHP code may be embedded in some types of site content, "
70 "including posts and blocks. While embedding PHP code inside a post or "
71 "block is a powerful and flexible feature when used by a trusted user "
72 "with PHP experience, it is a significant and dangerous security risk "
73 "when used improperly. Even a small mistake when posting PHP code may "
74 "accidentally compromise your site."
75 msgstr ""
76
77 #: modules/php/php.module:36
78 msgid ""
79 "If you are unfamiliar with PHP, SQL, or Drupal, avoid using custom PHP "
80 "code within posts. Experimenting with PHP may corrupt your database, "
81 "render your site inoperable, or significantly compromise security."
82 msgstr ""
83
84 #: modules/php/php.module:37
85 msgid "Notes:"
86 msgstr "注释:"
87
88 #: modules/php/php.module:38
89 msgid ""
90 "Remember to double-check each line for syntax and logic errors "
91 "<strong>before</strong> saving."
92 msgstr ""
93
94 #: modules/php/php.module:39
95 msgid "Statements must be correctly terminated with semicolons."
96 msgstr ""
97
98 #: modules/php/php.module:40
99 msgid ""
100 "Global variables used within your PHP code retain their values after "
101 "your script executes."
102 msgstr ""
103
104 #: modules/php/php.module:41
105 msgid ""
106 "<code>register_globals</code> is <strong>turned off</strong>. If you "
107 "need to use forms, understand and use the functions in <a "
108 "href=\"@formapi\">the Drupal Form API</a>."
109 msgstr ""
110
111 #: modules/php/php.module:42
112 msgid ""
113 "Use a <code>print</code> or <code>return</code> statement in your code "
114 "to output content."
115 msgstr ""
116
117 #: modules/php/php.module:43
118 msgid ""
119 "Develop and test your PHP code using a separate test script and sample "
120 "database before deploying on a production site."
121 msgstr ""
122
123 #: modules/php/php.module:44
124 msgid ""
125 "Consider including your custom PHP code within a site-specific module "
126 "or <code>template.php</code> file rather than embedding it directly "
127 "into a post or block."
128 msgstr ""
129
130 #: modules/php/php.module:45
131 msgid ""
132 "Be aware that the ability to embed PHP code within content is provided "
133 "by the PHP Filter module. If this module is disabled or deleted, then "
134 "blocks and posts with embedded PHP may display, rather than execute, "
135 "the PHP code."
136 msgstr ""
137
138 #: modules/php/php.module:46
139 msgid ""
140 "A basic example: <em>Creating a \"Welcome\" block that greets visitors "
141 "with a simple message.</em>"
142 msgstr ""
143
144 #: modules/php/php.module:47
145 msgid ""
146 "<p>Add a custom block to your site, named \"Welcome\". With its input "
147 "format set to \"PHP code\" (or another format supporting PHP input), "
148 "add the following in the Block body:</p>\n"
149 "<pre>\n"
150 "print t('Welcome visitor! Thank you for visiting.');\n"
151 "</pre>"
152 msgstr ""
153
154 #: modules/php/php.module:51
155 msgid ""
156 "<p>To display the name of a registered user, use this instead:</p>\n"
157 "<pre>\n"
158 "global $user;\n"
159 "if ($user->uid) {\n"
160 " print t('Welcome @name! Thank you for visiting.', array('@name' => "
161 "$user->name));\n"
162 "}\n"
163 "else {\n"
164 " print t('Welcome visitor! Thank you for visiting.');\n"
165 "}\n"
166 "</pre>"
167 msgstr ""
168
169 #: modules/php/php.module:75
170 msgid "PHP evaluator"
171 msgstr "PHP 运行器"
172
173 #: modules/php/php.module:80
174 msgid ""
175 "Executes a piece of PHP code. The usage of this filter should be "
176 "restricted to administrators only!"
177 msgstr "运行一段 PHP 代码,此过滤器应该只让管理员使用!"
178
179 #: modules/php/php.install:20
180 msgid "A !php-code input format has been created."
181 msgstr ""
182
183 #: modules/php/php.install:28
184 msgid ""
185 "The PHP module has been disabled. Please note that any existing "
186 "content that was using the PHP filter will now be visible in plain "
187 "text. This might pose a security risk by exposing sensitive "
188 "information, if any, used in the PHP code."
189 msgstr ""
190

  ViewVC Help
Powered by ViewVC 1.1.2