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

Contents of /contributions/translations/ar/modules-php.po

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


Revision 1.1 - (show annotations) (download) (as text)
Tue Mar 11 14:51:39 2008 UTC (20 months, 2 weeks ago) by alaa
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-6--1
File MIME type: text/x-gettext
initial merge of DRUPAL-6 pot files with DRUPAL-5 translation
1 # translation of general.po to Arabic
2 # Abdel Rahman Ghareeb <king_abdo@yahoo.com>, 2004.
3 # Sameh Sabry <samehsabry@linuxmail.org>, 2004.
4 # Manal Hassan <manal@manalaa.net>, 2004.
5 # Amr Gharbeia <amr@gharbeia.net>, 2005, 2006, 2007.
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: general\n"
9 "POT-Creation-Date: 2008-02-15 13:50+0100\n"
10 "PO-Revision-Date: 2007.08.06 14:05+0300\n"
11 "Last-Translator: Amr Gharbeia <amr@gharbeia.net>\n"
12 "Language-Team: Arabic <general@arabeyes.org>\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=6; plural=n==1 ? 0 : n==0 ? 1 : n==2 ? 2 : n%100>=3 "
17 "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
18 "X-Generator: KBabel 1.11.4\n"
19
20 #: modules/php/php.module:16
21 msgid ""
22 "The PHP filter adds the ability to include PHP code in posts. PHP is a "
23 "general-purpose scripting language widely-used for web development; the "
24 "content management system used by this website has been developed using PHP."
25 msgstr ""
26
27 #: modules/php/php.module:17
28 msgid ""
29 "Through the PHP filter, users with the proper permission may include custom "
30 "PHP code within a page of the site. While this is a powerful and flexible "
31 "feature if used by a trusted user with PHP experience, it is a significant "
32 "and dangerous security risk in the hands of a malicious user. Even a trusted "
33 "user may accidentally compromise the site by entering malformed or incorrect "
34 "PHP code. Only the most trusted users should be granted permission to use "
35 "the PHP filter, and all PHP code added through the PHP filter should be "
36 "carefully examined before use."
37 msgstr ""
38
39 #: modules/php/php.module:18;61
40 msgid ""
41 "<a href=\"@drupal\">Drupal.org</a> offers <a href=\"@php-snippets\">some "
42 "example PHP snippets</a>, or you can create your own with some PHP "
43 "experience and knowledge of the Drupal system."
44 msgstr ""
45
46 #: modules/php/php.module:19
47 #, fuzzy
48 msgid ""
49 "For more information, see the online handbook entry for <a href=\"@php\">PHP "
50 "module</a>."
51 msgstr ""
52 "لمزيد من المعلومات، من فضلك طالع صفحة <a href=\"@contact\">وحدة الاتصال</a> "
53 "في دليل الضبط و التطويع."
54
55 #: modules/php/php.module:32
56 msgid "You may post PHP code. You should include &lt;?php ?&gt; tags."
57 msgstr "يمكنك كتابة كود بلغة بي.إتش.بي. يجب أن تضيف أوسمة &lt;?php ?&gt; "
58
59 #: modules/php/php.module:34
60 msgid "Using custom PHP code"
61 msgstr ""
62
63 #: modules/php/php.module:35
64 msgid ""
65 "Custom PHP code may be embedded in some types of site content, including "
66 "posts and blocks. While embedding PHP code inside a post or block is a "
67 "powerful and flexible feature when used by a trusted user with PHP "
68 "experience, it is a significant and dangerous security risk when used "
69 "improperly. Even a small mistake when posting PHP code may accidentally "
70 "compromise your site."
71 msgstr ""
72
73 #: modules/php/php.module:36
74 msgid ""
75 "If you are unfamiliar with PHP, SQL, or Drupal, avoid using custom PHP code "
76 "within posts. Experimenting with PHP may corrupt your database, render your "
77 "site inoperable, or significantly compromise security."
78 msgstr ""
79
80 #: modules/php/php.module:37
81 #, fuzzy
82 msgid "Notes:"
83 msgstr "أصوات"
84
85 #: modules/php/php.module:38
86 msgid ""
87 "Remember to double-check each line for syntax and logic errors "
88 "<strong>before</strong> saving."
89 msgstr ""
90
91 #: modules/php/php.module:39
92 msgid "Statements must be correctly terminated with semicolons."
93 msgstr ""
94
95 #: modules/php/php.module:40
96 msgid ""
97 "Global variables used within your PHP code retain their values after your "
98 "script executes."
99 msgstr ""
100
101 #: modules/php/php.module:41
102 msgid ""
103 "<code>register_globals</code> is <strong>turned off</strong>. If you need to "
104 "use forms, understand and use the functions in <a href=\"@formapi\">the "
105 "Drupal Form API</a>."
106 msgstr ""
107
108 #: modules/php/php.module:42
109 msgid ""
110 "Use a <code>print</code> or <code>return</code> statement in your code to "
111 "output content."
112 msgstr ""
113
114 #: modules/php/php.module:43
115 msgid ""
116 "Develop and test your PHP code using a separate test script and sample "
117 "database before deploying on a production site."
118 msgstr ""
119
120 #: modules/php/php.module:44
121 msgid ""
122 "Consider including your custom PHP code within a site-specific module or "
123 "<code>template.php</code> file rather than embedding it directly into a post "
124 "or block."
125 msgstr ""
126
127 #: modules/php/php.module:45
128 msgid ""
129 "Be aware that the ability to embed PHP code within content is provided by "
130 "the PHP Filter module. If this module is disabled or deleted, then blocks "
131 "and posts with embedded PHP may display, rather than execute, the PHP code."
132 msgstr ""
133
134 #: modules/php/php.module:46
135 msgid ""
136 "A basic example: <em>Creating a \"Welcome\" block that greets visitors with "
137 "a simple message.</em>"
138 msgstr ""
139
140 #: modules/php/php.module:47
141 msgid ""
142 "<p>Add a custom block to your site, named \"Welcome\". With its input format "
143 "set to \"PHP code\" (or another format supporting PHP input), add the "
144 "following in the Block body:</p>\n"
145 "<pre>\n"
146 "print t('Welcome visitor! Thank you for visiting.');\n"
147 "</pre>"
148 msgstr ""
149
150 #: modules/php/php.module:51
151 msgid ""
152 "<p>To display the name of a registered user, use this instead:</p>\n"
153 "<pre>\n"
154 "global $user;\n"
155 "if ($user->uid) {\n"
156 " print t('Welcome @name! Thank you for visiting.', array('@name' => $user-"
157 ">name));\n"
158 "}\n"
159 "else {\n"
160 " print t('Welcome visitor! Thank you for visiting.');\n"
161 "}\n"
162 "</pre>"
163 msgstr ""
164
165 #: modules/php/php.module:75
166 msgid "PHP evaluator"
167 msgstr "مقيم بي.إتش.بي"
168
169 #: modules/php/php.module:80
170 #, fuzzy
171 msgid ""
172 "Executes a piece of PHP code. The usage of this filter should be restricted "
173 "to administrators only!"
174 msgstr "يشغل كود بي.إتش.بي. يجب أن يتاح استخدام هذا المرشح للإداريين فقط!"
175
176 #: modules/php/php.install:20
177 #, fuzzy
178 msgid "A !php-code input format has been created."
179 msgstr "تم تحديث إعدادات نسق الإدخال."
180
181 #: modules/php/php.install:28
182 msgid ""
183 "The PHP module has been disabled. Please note that any existing content that "
184 "was using the PHP filter will now be visible in plain text. This might pose "
185 "a security risk by exposing sensitive information, if any, used in the PHP "
186 "code."
187 msgstr ""

  ViewVC Help
Powered by ViewVC 1.1.2