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

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

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


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

  ViewVC Help
Powered by ViewVC 1.1.2