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

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

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


Revision 1.2 - (show annotations) (download) (as text)
Tue Jan 29 22:20:49 2008 UTC (21 months, 4 weeks ago) by goofyx
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +135 -0 lines
File MIME type: text/x-gettext
Merged changes from DRUPAL-6--1 branch to main.
1 # Greek Drupal translation of general.po to Greek
2 # Greek translation of Drupal 5.1
3 # Copyright (c) 2007 George Litos <gl@cyberpunk.gr>
4 #
5 # Vasileios Lourdas <lourdas_v@yahoo.gr>, 2007.
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: general\n"
9 "POT-Creation-Date: 2008-01-11 00:39+0100\n"
10 "PO-Revision-Date: 2007-08-03 00:39+0300\n"
11 "Last-Translator: Vasileios Lourdas <lourdas_v@yahoo.gr>\n"
12 "Language-Team: Greek <en@li.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=2; plural=(n != 1);\n"
17 "X-Poedit-Language: Greek\n"
18 "X-Poedit-Country: GREECE\n"
19 "X-Poedit-SourceCharset: utf-8\n"
20 "X-Poedit-Basepath: C:\\xampp\\htdocs\\drupal-el\\modules\\\n"
21 "X-Generator: KBabel 1.11.4\n"
22
23 #: modules/php/php.module:16
24 msgid "The PHP filter adds the ability to include PHP code in posts. PHP is a general-purpose scripting language widely-used for web development; the content management system used by this website has been developed using PHP."
25 msgstr ""
26
27 #: modules/php/php.module:17
28 msgid "Through the PHP filter, users with the proper permission may include custom PHP code within a page of the site. While this is a powerful and flexible feature if used by a trusted user with PHP experience, it is a significant and dangerous security risk in the hands of a malicious user. Even a trusted user may accidentally compromise the site by entering malformed or incorrect PHP code. Only the most trusted users should be granted permission to use the PHP filter, and all PHP code added through the PHP filter should be carefully examined before use."
29 msgstr ""
30
31 #: modules/php/php.module:18;61
32 msgid "<a href=\"@drupal\">Drupal.org</a> offers <a href=\"@php-snippets\">some example PHP snippets</a>, or you can create your own with some PHP experience and knowledge of the Drupal system."
33 msgstr ""
34
35 #: modules/php/php.module:19
36 #, fuzzy
37 msgid "For more information, see the online handbook entry for <a href=\"@php\">PHP module</a>."
38 msgstr "Για περισσότερες πληροφορίες διαβάστε τη σελίδα του εγχειριδίου διευθέτησης και προσαρμογής για τη <a href=\"@contact\">μονάδα contact</a>."
39
40 #: modules/php/php.module:32
41 msgid "You may post PHP code. You should include &lt;?php ?&gt; tags."
42 msgstr "Μπορείτε να υποβάλετε κώδικα PHP. Θα πρέπει να συμπεριλάβετε τις ετικέτες &lt;?php ?&gt; tags."
43
44 #: modules/php/php.module:34
45 msgid "Using custom PHP code"
46 msgstr ""
47
48 #: modules/php/php.module:35
49 msgid "Custom PHP code may be embedded in some types of site content, including posts and blocks. While embedding PHP code inside a post or block is a powerful and flexible feature when used by a trusted user with PHP experience, it is a significant and dangerous security risk when used improperly. Even a small mistake when posting PHP code may accidentally compromise your site."
50 msgstr ""
51
52 #: modules/php/php.module:36
53 msgid "If you are unfamiliar with PHP, SQL, or Drupal, avoid using custom PHP code within posts. Experimenting with PHP may corrupt your database, render your site inoperable, or significantly compromise security."
54 msgstr ""
55
56 #: modules/php/php.module:37
57 #, fuzzy
58 msgid "Notes:"
59 msgstr "Ψήφοι"
60
61 #: modules/php/php.module:38
62 msgid "Remember to double-check each line for syntax and logic errors <strong>before</strong> saving."
63 msgstr ""
64
65 #: modules/php/php.module:39
66 msgid "Statements must be correctly terminated with semicolons."
67 msgstr ""
68
69 #: modules/php/php.module:40
70 msgid "Global variables used within your PHP code retain their values after your script executes."
71 msgstr ""
72
73 #: modules/php/php.module:41
74 msgid "<code>register_globals</code> is <strong>turned off</strong>. If you need to use forms, understand and use the functions in <a href=\"@formapi\">the Drupal Form API</a>."
75 msgstr ""
76
77 #: modules/php/php.module:42
78 msgid "Use a <code>print</code> or <code>return</code> statement in your code to output content."
79 msgstr ""
80
81 #: modules/php/php.module:43
82 msgid "Develop and test your PHP code using a separate test script and sample database before deploying on a production site."
83 msgstr ""
84
85 #: modules/php/php.module:44
86 msgid "Consider including your custom PHP code within a site-specific module or <code>template.php</code> file rather than embedding it directly into a post or block."
87 msgstr ""
88
89 #: modules/php/php.module:45
90 msgid "Be aware that the ability to embed PHP code within content is provided by the PHP Filter module. If this module is disabled or deleted, then blocks and posts with embedded PHP may display, rather than execute, the PHP code."
91 msgstr ""
92
93 #: modules/php/php.module:46
94 msgid "A basic example: <em>Creating a \"Welcome\" block that greets visitors with a simple message.</em>"
95 msgstr ""
96
97 #: modules/php/php.module:47
98 msgid ""
99 "<p>Add a custom block to your site, named \"Welcome\". With its input format set to \"PHP code\" (or another format supporting PHP input), add the following in the Block body:</p>\n"
100 "<pre>\n"
101 "print t('Welcome visitor! Thank you for visiting.');\n"
102 "</pre>"
103 msgstr ""
104
105 #: modules/php/php.module:51
106 msgid ""
107 "<p>To display the name of a registered user, use this instead:</p>\n"
108 "<pre>\n"
109 "global $user;\n"
110 "if ($user->uid) {\n"
111 " print t('Welcome @name! Thank you for visiting.', array('@name' => $user->name));\n"
112 "}\n"
113 "else {\n"
114 " print t('Welcome visitor! Thank you for visiting.');\n"
115 "}\n"
116 "</pre>"
117 msgstr ""
118
119 #: modules/php/php.module:75
120 msgid "PHP evaluator"
121 msgstr "Εκτέλεση PHP"
122
123 #: modules/php/php.module:80
124 #, fuzzy
125 msgid "Executes a piece of PHP code. The usage of this filter should be restricted to administrators only!"
126 msgstr "Εκτελεί ένα απόσπασμα κώδικα PHP. Η χρήση αυτού του φίλτρου θα πρέπει να περιοριστεί μόνο στους διαχειριστές!"
127
128 #: modules/php/php.install:20
129 #, fuzzy
130 msgid "A !php-code input format has been created."
131 msgstr "Οι ρυθμίσεις του μορφοτύπου εισόδου ενημερώθηκαν."
132
133 #: modules/php/php.install:28
134 msgid "The PHP module has been disabled. Please note that any existing content that was using the PHP filter will now be visible in plain text. This might pose a security risk by exposing sensitive information, if any, used in the PHP code."
135 msgstr ""

  ViewVC Help
Powered by ViewVC 1.1.2