Version Description
Download this release
Release Info
Developer | Bueltge |
Plugin | Acunetix Secure WordPress |
Version | 1.0.4 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.4
- Secure WordPress-da_DK.txt +0 -0
- css/remove_login.css +0 -0
- css/remove_update_plugins.css +0 -0
- css/remove_wp_version.css +0 -0
- img/h2logo.png +0 -0
- img/logo.png +0 -0
- inc/WPlize.php +0 -0
- inc/readme_de.txt +0 -0
- inc/readme_en.txt +0 -0
- js/page.php +0 -23
- js/page_s27.php +0 -26
- js/remove_wp_version.js +3 -0
- languages/secure_wp-ar.mo +0 -0
- languages/secure_wp-ar.po +0 -0
- languages/secure_wp-be_BY.mo +0 -0
- languages/secure_wp-be_BY.po +0 -0
- languages/secure_wp-da_DK.mo +0 -0
- languages/secure_wp-da_DK.po +0 -0
- languages/secure_wp-de_DE.mo +0 -0
- languages/secure_wp-de_DE.po +240 -152
- languages/secure_wp-es_ES.mo +0 -0
- languages/secure_wp-es_ES.po +0 -0
- languages/secure_wp-fa_IR.mo +0 -0
- languages/secure_wp-fa_IR.po +441 -0
- languages/secure_wp-fr_FR.mo +0 -0
- languages/secure_wp-fr_FR.po +0 -0
- languages/secure_wp-hu_HU.mo +0 -0
- languages/secure_wp-hu_HU.po +0 -0
- languages/secure_wp-it_IT.mo +0 -0
- languages/secure_wp-it_IT.po +315 -87
- languages/secure_wp-ja.mo +0 -0
- languages/secure_wp-ja.po +0 -0
- languages/secure_wp-nl_NL.mo +0 -0
- languages/secure_wp-nl_NL.po +0 -0
- languages/secure_wp-pl_PL.mo +0 -0
- languages/secure_wp-pl_PL.po +0 -0
- languages/secure_wp-ru_RU.mo +0 -0
- languages/secure_wp-ru_RU.po +0 -0
- languages/secure_wp-uk.mo +0 -0
- languages/secure_wp-uk.po +0 -0
- languages/secure_wp-zh_CN.mo +0 -0
- languages/secure_wp-zh_CN.po +0 -0
- languages/secure_wp.pot +242 -151
- license.txt +0 -0
- readme.txt +17 -4
- screenshot-1.png +0 -0
- secure-wordpress.php +20 -13
- uninstall.php +0 -0
Secure WordPress-da_DK.txt
CHANGED
File without changes
|
css/remove_login.css
CHANGED
File without changes
|
css/remove_update_plugins.css
CHANGED
File without changes
|
css/remove_wp_version.css
CHANGED
File without changes
|
img/h2logo.png
CHANGED
File without changes
|
img/logo.png
CHANGED
File without changes
|
inc/WPlize.php
CHANGED
File without changes
|
inc/readme_de.txt
CHANGED
File without changes
|
inc/readme_en.txt
CHANGED
File without changes
|
js/page.php
DELETED
@@ -1,23 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
require_once('../../../../wp-load.php');
|
3 |
-
|
4 |
-
header('Content-Type: text/Javascript');
|
5 |
-
?>
|
6 |
-
|
7 |
-
// JavaScript Document
|
8 |
-
jQuery(document).ready( function($) {
|
9 |
-
$('.postbox h3, .postbox .handlediv').click(
|
10 |
-
function() {
|
11 |
-
var postbox = $($(this).parent().get(0));
|
12 |
-
postbox.toggleClass('closed');
|
13 |
-
var closed = postbox.is('.closed');
|
14 |
-
$.post(
|
15 |
-
'<?php echo get_bloginfo("wpurl") ?>/wp-admin/admin-ajax.php', {
|
16 |
-
'action':'set_toggle_status',
|
17 |
-
'set_toggle_id':postbox.attr('id'),
|
18 |
-
'set_toggle_status': (closed ? 'closed' : '')
|
19 |
-
}
|
20 |
-
);
|
21 |
-
}
|
22 |
-
);
|
23 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/page_s27.php
DELETED
@@ -1,26 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
require_once('../../../../wp-load.php');
|
3 |
-
|
4 |
-
header('Content-Type: text/Javascript');
|
5 |
-
?>
|
6 |
-
|
7 |
-
// JavaScript Document
|
8 |
-
jQuery(document).ready( function($) {
|
9 |
-
$('.postbox:not(.closed) h3').prepend('<a class="togbox">-</a>');
|
10 |
-
$('.closed h3').prepend('<a class="togbox">+</a>');
|
11 |
-
$('.postbox h3').click(
|
12 |
-
function() {
|
13 |
-
var postbox = $($(this).parent().get(0));
|
14 |
-
postbox.toggleClass('closed');
|
15 |
-
var closed = postbox.is('.closed');
|
16 |
-
$($(this)).find('.togbox').text(closed ? '+' : '-');
|
17 |
-
$.post(
|
18 |
-
'<?php echo get_bloginfo("wpurl") ?>/wp-admin/admin-ajax.php', {
|
19 |
-
'action':'set_toggle_status',
|
20 |
-
'set_toggle_id':postbox.attr('id'),
|
21 |
-
'set_toggle_status': (closed ? 'closed' : '')
|
22 |
-
}
|
23 |
-
);
|
24 |
-
}
|
25 |
-
);
|
26 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/remove_wp_version.js
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
jQuery(document).ready(function($) {
|
2 |
+
$("#wp-version-message, #footer-upgrade").remove();
|
3 |
+
});
|
languages/secure_wp-ar.mo
CHANGED
File without changes
|
languages/secure_wp-ar.po
CHANGED
File without changes
|
languages/secure_wp-be_BY.mo
CHANGED
File without changes
|
languages/secure_wp-be_BY.po
CHANGED
File without changes
|
languages/secure_wp-da_DK.mo
CHANGED
File without changes
|
languages/secure_wp-da_DK.po
CHANGED
File without changes
|
languages/secure_wp-de_DE.mo
CHANGED
Binary file
|
languages/secure_wp-de_DE.po
CHANGED
@@ -4,442 +4,530 @@ msgstr ""
|
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2010-05-16 12:34+0100\n"
|
6 |
"PO-Revision-Date: 2010-07-09 13:20+0100\n"
|
|
|
|
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
|
|
|
11 |
"X-Poedit-SourceCharset: utf-8\n"
|
12 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
-
"X-
|
15 |
-
"Language-Team: \n"
|
16 |
-
"Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
18 |
|
19 |
-
|
|
|
|
|
20 |
msgid "Little basics for secure your WordPress-installation."
|
21 |
msgstr "Kleine Grundlagen für die Sicherheit deiner WordPress Installation"
|
22 |
|
23 |
-
#: secure-wordpress.php:
|
|
|
24 |
msgid "Settings"
|
25 |
msgstr "Einstellungen"
|
26 |
|
27 |
-
|
28 |
-
#: secure-wordpress.php:
|
29 |
-
|
30 |
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
31 |
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Dokumentation</a>"
|
32 |
|
33 |
-
|
34 |
-
|
35 |
msgid "Options update."
|
36 |
msgstr "Einstellungen aktualisiert."
|
37 |
|
38 |
-
|
39 |
-
|
40 |
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
41 |
msgstr "Alle Einträge in der Datenbank wurden entfernt. Jetzt deaktiviere das Plugin."
|
42 |
|
43 |
-
|
44 |
-
#: secure-wordpress.php:
|
45 |
-
|
46 |
msgid "Secure WP"
|
47 |
msgstr "Secure WP"
|
48 |
|
49 |
-
|
50 |
-
#: secure-wordpress.php:
|
51 |
-
#: secure-wordpress.php:
|
|
|
|
|
52 |
msgid "Secure WordPress"
|
53 |
msgstr "Secure WordPress"
|
54 |
|
55 |
-
#: secure-wordpress.php:
|
|
|
56 |
msgid "Version"
|
57 |
msgstr "Version"
|
58 |
|
59 |
-
|
60 |
-
|
61 |
msgid "History"
|
62 |
msgstr "Historie"
|
63 |
|
64 |
-
#: secure-wordpress.php:
|
|
|
65 |
msgid "Author"
|
66 |
msgstr "Autor"
|
67 |
|
68 |
-
|
69 |
-
|
70 |
msgid "Options not updated - you don‘t have the privileges to do this!"
|
71 |
msgstr "Einstellungen wurden nicht aktualisiert - du hast nicht genügend Rechte dazu!"
|
72 |
|
73 |
-
|
74 |
-
|
75 |
msgid "Entries were not deleted - you don‘t have the privileges to do this!"
|
76 |
msgstr "Einstellungen wurden nicht entfernt - du hast nicht genügend Rechte dazu! "
|
77 |
|
78 |
-
|
79 |
-
|
80 |
msgid "Entries were not deleted - check the checkbox!"
|
81 |
msgstr "Einstellungen wurden nicht entfernt - prüfe dich Checkbox! "
|
82 |
|
83 |
-
|
84 |
-
|
85 |
msgid "All entries in the database were cleared."
|
86 |
msgstr "Alle Einträge in der Datenbank wurden entfernt."
|
87 |
|
88 |
-
|
89 |
-
|
90 |
msgid "Entries were not deleted - check the checkbox or you don‘t have the privileges to do this!"
|
91 |
msgstr "Einstellungen wurden nicht entfernt - prüfe dich Checkbox oder du hast nicht genügend Rechte dazu! "
|
92 |
|
93 |
-
#: secure-wordpress.php:
|
94 |
-
#: secure-wordpress.php:
|
95 |
-
#: secure-wordpress.php:
|
96 |
-
#: secure-wordpress.php:
|
97 |
-
|
98 |
msgid "Click to toggle"
|
99 |
msgstr "Zum umschalten klicken"
|
100 |
|
101 |
-
|
102 |
-
|
103 |
msgid "Configuration"
|
104 |
msgstr "Einstellungen"
|
105 |
|
106 |
-
|
107 |
-
|
108 |
msgid "Error-Messages"
|
109 |
msgstr "Fehler-Meldungen"
|
110 |
|
111 |
-
|
112 |
-
|
113 |
msgid "Deactivates tooltip and error message at login of WordPress"
|
114 |
msgstr "Deaktivert die Hinweis- und Fehlermeldung beim Login von WordPress"
|
115 |
|
116 |
-
|
117 |
-
|
118 |
msgid "WordPress Version"
|
119 |
msgstr "WordPress Version"
|
120 |
|
121 |
-
|
122 |
-
|
123 |
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
124 |
msgstr "Entfernen der Version von WordPress in allen Bereichen, inkl. Feed, nicht im Admin-Bereich"
|
125 |
|
126 |
-
|
127 |
-
|
128 |
msgid "WordPress Version in Backend"
|
129 |
msgstr "WordPress Version im Administrationsbereich"
|
130 |
|
131 |
-
|
132 |
-
|
133 |
msgid "Removes version of WordPress on admin-area for non-admins. Show WordPress version of your blog only to users with the rights to edit plugins."
|
134 |
msgstr "Entfernen der Version von WordPress im Admin-Bereich für Nicht-Administratoren. Die WordPress Version deines Blogs wird ausschließlich Nutzern dargestellt, die die Rechte zum Editieren von Plugins haben."
|
135 |
|
136 |
-
|
137 |
-
|
138 |
msgid "index.php"
|
139 |
msgstr "index.php"
|
140 |
|
141 |
-
|
142 |
-
|
143 |
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
144 |
msgstr "hinterlegt eine <code>index.php</code> in <code>/plugins/</code> und <code>/themes/</code> um das Auslesen des Verzeichnis zu vermeiden "
|
145 |
|
146 |
-
|
147 |
-
|
148 |
msgid "Really Simple Discovery"
|
149 |
msgstr "Really Simple Discovery"
|
150 |
|
151 |
-
|
152 |
-
|
153 |
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
154 |
msgstr "Entfernt den link für Really Simple Discovery im head des Frontend"
|
155 |
|
156 |
-
|
157 |
-
|
158 |
msgid "Windows Live Writer"
|
159 |
msgstr "Windows Live Writer"
|
160 |
|
161 |
-
|
162 |
-
|
163 |
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
164 |
msgstr "Entfernt den link für Windows Live Writer im head des Frontend"
|
165 |
|
166 |
-
|
167 |
-
|
168 |
msgid "Core Update"
|
169 |
msgstr "Core Update"
|
170 |
|
171 |
-
|
172 |
-
|
173 |
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
174 |
msgstr "Deaktiviert das Core-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Plugins haben."
|
175 |
|
176 |
-
|
177 |
-
|
178 |
msgid "Plugin Update"
|
179 |
msgstr "Plugin Update"
|
180 |
|
181 |
-
|
182 |
-
|
183 |
msgid "Remove the plugin update for non-admins. Show message for a new version of a plugin in the install of your blog only to users with the rights to edit plugins."
|
184 |
msgstr "Deaktiviert das Plugin-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress zu Plugins wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Plugins haben."
|
185 |
|
186 |
-
|
187 |
-
|
188 |
msgid "Theme Update"
|
189 |
msgstr "Theme Update"
|
190 |
|
191 |
-
|
192 |
-
|
193 |
msgid "Remove the theme update for non-admins. Show message for a new version of a theme in the install of your blog only to users with the rights to edit themes."
|
194 |
msgstr "Deaktiviert das Theme-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress zum Theme wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Themes haben."
|
195 |
|
196 |
-
|
197 |
-
|
198 |
msgid "WP Scanner"
|
199 |
msgstr "WP Scanner"
|
200 |
|
201 |
-
|
202 |
-
|
203 |
msgid "WordPress scanner is a free online resource that blog administrators can use to provide a measure of their wordpress security level. To run wp-scanner check this option and add <code><!-- wpscanner --></code> to your current WordPress template. After this go to <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> and scan your site."
|
204 |
msgstr "Der WordPress Scanner ist eine freie online Resource für Blog-Administratoren um die Sicherheit der WordPress Installation über das Frontend zu prüfen. Um den Scanner zu nutzen, aktivere die Checkbox und es wird der String <code><!-- wpscanner --></code> im aktuell verwendeten Theme eingefügt. Danach besuche den Online-Scanner unter <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> und prüfe deine Site."
|
205 |
|
206 |
-
|
207 |
-
|
208 |
msgid "Block bad queries"
|
209 |
msgstr "Blocke negative Abfragen"
|
210 |
|
211 |
-
|
212 |
-
|
213 |
msgid "Protect WordPress against malicious URL requests, read more information at the <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >post from Jeff Starr</a>"
|
214 |
msgstr "WordPress gegen bösartige URL-Anforderungen schützen, mehr Informationen gibt es im <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >Beitrag von Jeff Starr</a>"
|
215 |
|
216 |
-
|
217 |
-
|
218 |
msgid "Save Changes"
|
219 |
msgstr "Einstellungen aktualisieren"
|
220 |
|
221 |
-
#: secure-wordpress.php:
|
|
|
222 |
msgid "Validate your site with a free malware scan from www.sitesecuritymonitor.com"
|
223 |
msgstr "Überprüfe deine Seite mit einem freien Malware-Scan von www.sitesecuritymonitor.com"
|
224 |
|
225 |
-
#: secure-wordpress.php:
|
|
|
226 |
msgid "Take us for a Test Drive - Free Scan"
|
227 |
msgstr "Nutze uns für eine Probefahrt - freier Scan"
|
228 |
|
229 |
-
#: secure-wordpress.php:
|
|
|
230 |
msgid "We understand you may have questions:"
|
231 |
msgstr "Wie verstehen, dass du Fragen hast:"
|
232 |
|
233 |
-
#: secure-wordpress.php:
|
|
|
234 |
msgid "What does this do for me?"
|
235 |
msgstr "Was bedeutet der Scan für mich?"
|
236 |
|
237 |
-
#: secure-wordpress.php:
|
|
|
238 |
msgid "Am I really safe? I need to be sure."
|
239 |
msgstr "Bin ich wirklich sicher? Ich muss sicher sein."
|
240 |
|
241 |
-
#: secure-wordpress.php:
|
|
|
242 |
msgid "Rest Assured, Site Security Monitor has you covered."
|
243 |
msgstr "Sei dir sicher, Site Security Monitor ist sicher."
|
244 |
|
245 |
-
#: secure-wordpress.php:
|
|
|
246 |
msgid "FREE scan looks for malware"
|
247 |
msgstr "FREIER scan um Malware zu finden"
|
248 |
|
249 |
-
#: secure-wordpress.php:
|
|
|
250 |
msgid "FREE report of website vulnerabilities found"
|
251 |
msgstr "FREIE Auswertung der gefundenen Schwachstellen auf einer Webseite"
|
252 |
|
253 |
-
#: secure-wordpress.php:
|
|
|
254 |
msgid "No setup, tuning and installation on your site - scan begins immediately"
|
255 |
msgstr "Keine Einrichtung, keine Anpassunge und Installationen auf deiner Site - der Scan kann sofort starten"
|
256 |
|
257 |
-
#: secure-wordpress.php:
|
|
|
258 |
msgid "We will deliver to you a detailed malware and web vulnerability report - FREE of charge. You are free to use the report to resolve issues, show your boss that you are clean, or show your clients that the site you built is safe!"
|
259 |
msgstr "Wir liefern einen detaillierten Bericht zu Schwachstellen und Malware (Schadprogrammen) - kostenlos. Du kannst entscheiden, wie du den Bericht verwendest um Probleme zu lösen, es werden Hinweise zum Problem gegeben. Zeigen den anderen, dass die Site sauber und sicher ist."
|
260 |
|
261 |
-
#: secure-wordpress.php:
|
|
|
262 |
msgid "** Bonus: You will be able to use the Site Security Monitor \"Safe-Seal\" on your site after the scan - this shows the world that you are malware free!"
|
263 |
msgstr "** Bonus: Du kannst das Site Security Monitor \"Safe-Seal\" in deine Site integrieren - zeige der Welt, dass du frei von Malware bist."
|
264 |
|
265 |
-
#: secure-wordpress.php:
|
|
|
266 |
msgid "The form"
|
267 |
msgstr "Das Formular"
|
268 |
|
269 |
-
#: secure-wordpress.php:
|
|
|
270 |
msgid "Use the follow form or use it on <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">our website</a>."
|
271 |
msgstr "Nutze das Formular oder gehe direkt über <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">unsere Website</a>."
|
272 |
|
273 |
-
#: secure-wordpress.php:
|
|
|
274 |
msgid "Full Name"
|
275 |
msgstr "Name, Vorname"
|
276 |
|
277 |
-
#: secure-wordpress.php:
|
278 |
-
#: secure-wordpress.php:
|
279 |
-
#: secure-wordpress.php:
|
280 |
-
#: secure-wordpress.php:
|
281 |
-
#: secure-wordpress.php:
|
|
|
282 |
msgid "*required"
|
283 |
msgstr "*Pflichtfeld"
|
284 |
|
285 |
-
#: secure-wordpress.php:
|
|
|
286 |
msgid "eMail Adress"
|
287 |
msgstr "E-Mail Adresse"
|
288 |
|
289 |
-
#: secure-wordpress.php:
|
|
|
290 |
msgid ", eMail Address must match domain name"
|
291 |
msgstr ", die E-Mail Adresse muss den Domain-Namen enthalten"
|
292 |
|
293 |
-
#: secure-wordpress.php:
|
|
|
294 |
msgid "Website"
|
295 |
msgstr "Website"
|
296 |
|
297 |
-
#: secure-wordpress.php:
|
|
|
298 |
msgid "Phone"
|
299 |
msgstr "Telefon"
|
300 |
|
301 |
-
#: secure-wordpress.php:
|
|
|
302 |
msgid "Yes, I need help!"
|
303 |
msgstr "Ja, ich brauche Hilfe!"
|
304 |
|
305 |
-
#: secure-wordpress.php:
|
|
|
306 |
msgid "Call me"
|
307 |
msgstr "Rufe mich an"
|
308 |
|
309 |
-
#: secure-wordpress.php:
|
|
|
310 |
msgid "Terms and Conditions"
|
311 |
msgstr "Allgemeine Geschäftsbedingungen"
|
312 |
|
313 |
-
#: secure-wordpress.php:
|
|
|
314 |
msgid ", I accept"
|
315 |
msgstr ", ich akzeptiere"
|
316 |
|
317 |
-
#: secure-wordpress.php:
|
|
|
318 |
msgid "Get my Free Web Scan"
|
319 |
msgstr "Starte meinen freien Web-Scan"
|
320 |
|
321 |
-
#: secure-wordpress.php:
|
|
|
322 |
msgid "Safe Seal"
|
323 |
msgstr "Safe Seal"
|
324 |
|
325 |
-
#: secure-wordpress.php:
|
326 |
-
|
327 |
-
msgstr "Vielen Dank für das Nutzen unseres Scans. Es steht dir frei einen Hinweis auf den Scan in deiner Site zu hinterlegen (Ausgabe als HTML für einfaches Kopieren/Einfügen). Das Zeichen gibt dir keine Sicherheit - es ist einfach die Basis der WordPress Sicherheit - es ist ein Beitrag zu unseren eigenen Erfahrungen und der, der Community.<br/>Möchtestdu regelmäßig einen Scan erhalten, dann besuche <a href=\"http://www.sitesecuritymonitor.com/wordpress-secure-plugin/\">unsere Site für weitere Informationen</a>."
|
328 |
-
|
329 |
-
#: secure-wordpress.php:1020
|
330 |
msgid "Color"
|
331 |
msgstr "Farbe"
|
332 |
|
333 |
-
#: secure-wordpress.php:
|
|
|
334 |
msgid "Green"
|
335 |
msgstr "Grün"
|
336 |
|
337 |
-
#: secure-wordpress.php:
|
|
|
338 |
msgid "Blue"
|
339 |
msgstr "Blau"
|
340 |
|
341 |
-
#: secure-wordpress.php:
|
|
|
342 |
msgid "Red"
|
343 |
msgstr "Rot"
|
344 |
|
345 |
-
#: secure-wordpress.php:
|
|
|
346 |
msgid "Brown"
|
347 |
msgstr "Braun"
|
348 |
|
349 |
-
#: secure-wordpress.php:
|
|
|
350 |
msgid "Gray"
|
351 |
msgstr "Grau"
|
352 |
|
353 |
-
#: secure-wordpress.php:
|
|
|
354 |
msgid "Text"
|
355 |
msgstr "Text"
|
356 |
|
357 |
-
#: secure-wordpress.php:
|
|
|
358 |
msgid "Protected"
|
359 |
msgstr "Geschützt"
|
360 |
|
361 |
-
|
362 |
-
|
363 |
msgid "Secured"
|
364 |
msgstr "Sicher"
|
365 |
|
366 |
-
|
367 |
-
|
368 |
msgid "Scanned"
|
369 |
msgstr "Gescannt"
|
370 |
|
371 |
-
#: secure-wordpress.php:
|
|
|
372 |
msgid "Protected by"
|
373 |
msgstr "Geschützt durch"
|
374 |
|
375 |
-
#: secure-wordpress.php:
|
|
|
376 |
msgid "Orientation"
|
377 |
msgstr "Orientierung"
|
378 |
|
379 |
-
#: secure-wordpress.php:
|
|
|
380 |
msgid "Horizontal"
|
381 |
msgstr "Horizontal"
|
382 |
|
383 |
-
#: secure-wordpress.php:
|
|
|
384 |
msgid "Vertical"
|
385 |
msgstr "Vertical"
|
386 |
|
387 |
-
#: secure-wordpress.php:
|
|
|
388 |
msgid "Image border"
|
389 |
msgstr "Bilder-Rahmen"
|
390 |
|
391 |
-
#: secure-wordpress.php:
|
|
|
392 |
msgid "Language"
|
393 |
msgstr "Sprache"
|
394 |
|
395 |
-
#: secure-wordpress.php:
|
|
|
396 |
msgid "English (US)"
|
397 |
msgstr "Englisch (US)"
|
398 |
|
399 |
-
#: secure-wordpress.php:
|
|
|
400 |
msgid "English (UK)"
|
401 |
msgstr "Englisch (UK)"
|
402 |
|
403 |
-
#: secure-wordpress.php:
|
|
|
404 |
msgid "Spanish"
|
405 |
msgstr "Spanisch"
|
406 |
|
407 |
-
#: secure-wordpress.php:
|
|
|
408 |
msgid "German"
|
409 |
msgstr "Deutsch"
|
410 |
|
411 |
-
#: secure-wordpress.php:
|
|
|
412 |
msgid "Italian"
|
413 |
msgstr "Italienisch"
|
414 |
|
415 |
-
#: secure-wordpress.php:
|
|
|
416 |
msgid "Japanese"
|
417 |
msgstr "Japanisch"
|
418 |
|
419 |
-
#: secure-wordpress.php:
|
|
|
420 |
msgid "Chinese (Simplified)"
|
421 |
msgstr "Chinesisch (Einfach)"
|
422 |
|
423 |
-
#: secure-wordpress.php:
|
|
|
424 |
msgid "Chinese (Traditional)"
|
425 |
msgstr "Chinesisch (Traditonell)"
|
426 |
|
427 |
-
#: secure-wordpress.php:
|
|
|
428 |
msgid "Here is your generated code. Place it on your website (as html widget) to show that you are protected."
|
429 |
msgstr "Hier ist der erstellte Code, platziere in ihn in deiner Site (als HTML Widget) um zu zeigen, dass du geschützt bist."
|
430 |
|
431 |
-
|
432 |
-
|
433 |
msgid "Clear Options"
|
434 |
msgstr "Einstellungen löschen"
|
435 |
|
436 |
-
|
437 |
-
|
438 |
msgid "Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created."
|
439 |
msgstr "Nutze diese Möglichkeit um alle Einstellungen des Plugins in der Datenbank zu löschen. Das Plugin löscht ebenfalls alle Einstellungen wenn du es deaktivierst oder aus dem Backend heraus entfernst."
|
440 |
|
441 |
-
|
442 |
-
|
443 |
msgid "Delete Options"
|
444 |
msgstr "Einstellungen löschen"
|
445 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2010-05-16 12:34+0100\n"
|
6 |
"PO-Revision-Date: 2010-07-09 13:20+0100\n"
|
7 |
+
"Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: \n"
|
14 |
+
"X-Poedit-Country: \n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#. translators: plugin header field 'Description'
|
23 |
+
#: secure-wordpress.php:0
|
24 |
+
#@ secure_wp
|
25 |
msgid "Little basics for secure your WordPress-installation."
|
26 |
msgstr "Kleine Grundlagen für die Sicherheit deiner WordPress Installation"
|
27 |
|
28 |
+
#: secure-wordpress.php:365
|
29 |
+
#@ default
|
30 |
msgid "Settings"
|
31 |
msgstr "Einstellungen"
|
32 |
|
33 |
+
#: secure-wordpress.php:394
|
34 |
+
#: secure-wordpress.php:441
|
35 |
+
#@ secure_wp
|
36 |
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
37 |
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Dokumentation</a>"
|
38 |
|
39 |
+
#: secure-wordpress.php:417
|
40 |
+
#@ secure_wp
|
41 |
msgid "Options update."
|
42 |
msgstr "Einstellungen aktualisiert."
|
43 |
|
44 |
+
#: secure-wordpress.php:419
|
45 |
+
#@ secure_wp
|
46 |
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
47 |
msgstr "Alle Einträge in der Datenbank wurden entfernt. Jetzt deaktiviere das Plugin."
|
48 |
|
49 |
+
#: secure-wordpress.php:433
|
50 |
+
#: secure-wordpress.php:444
|
51 |
+
#@ secure_wp
|
52 |
msgid "Secure WP"
|
53 |
msgstr "Secure WP"
|
54 |
|
55 |
+
#. translators: plugin header field 'Name'
|
56 |
+
#: secure-wordpress.php:0
|
57 |
+
#: secure-wordpress.php:440
|
58 |
+
#: secure-wordpress.php:751
|
59 |
+
#@ secure_wp
|
60 |
msgid "Secure WordPress"
|
61 |
msgstr "Secure WordPress"
|
62 |
|
63 |
+
#: secure-wordpress.php:464
|
64 |
+
#@ default
|
65 |
msgid "Version"
|
66 |
msgstr "Version"
|
67 |
|
68 |
+
#: secure-wordpress.php:464
|
69 |
+
#@ secure_wp
|
70 |
msgid "History"
|
71 |
msgstr "Historie"
|
72 |
|
73 |
+
#: secure-wordpress.php:464
|
74 |
+
#@ default
|
75 |
msgid "Author"
|
76 |
msgstr "Autor"
|
77 |
|
78 |
+
#: secure-wordpress.php:676
|
79 |
+
#@ secure_wp
|
80 |
msgid "Options not updated - you don‘t have the privileges to do this!"
|
81 |
msgstr "Einstellungen wurden nicht aktualisiert - du hast nicht genügend Rechte dazu!"
|
82 |
|
83 |
+
#: secure-wordpress.php:696
|
84 |
+
#@ secure_wp
|
85 |
msgid "Entries were not deleted - you don‘t have the privileges to do this!"
|
86 |
msgstr "Einstellungen wurden nicht entfernt - du hast nicht genügend Rechte dazu! "
|
87 |
|
88 |
+
#: secure-wordpress.php:704
|
89 |
+
#@ secure_wp
|
90 |
msgid "Entries were not deleted - check the checkbox!"
|
91 |
msgstr "Einstellungen wurden nicht entfernt - prüfe dich Checkbox! "
|
92 |
|
93 |
+
#: secure-wordpress.php:724
|
94 |
+
#@ secure_wp
|
95 |
msgid "All entries in the database were cleared."
|
96 |
msgstr "Alle Einträge in der Datenbank wurden entfernt."
|
97 |
|
98 |
+
#: secure-wordpress.php:728
|
99 |
+
#@ secure_wp
|
100 |
msgid "Entries were not deleted - check the checkbox or you don‘t have the privileges to do this!"
|
101 |
msgstr "Einstellungen wurden nicht entfernt - prüfe dich Checkbox oder du hast nicht genügend Rechte dazu! "
|
102 |
|
103 |
+
#: secure-wordpress.php:756
|
104 |
+
#: secure-wordpress.php:892
|
105 |
+
#: secure-wordpress.php:1005
|
106 |
+
#: secure-wordpress.php:1119
|
107 |
+
#@ default
|
108 |
msgid "Click to toggle"
|
109 |
msgstr "Zum umschalten klicken"
|
110 |
|
111 |
+
#: secure-wordpress.php:757
|
112 |
+
#@ secure_wp
|
113 |
msgid "Configuration"
|
114 |
msgstr "Einstellungen"
|
115 |
|
116 |
+
#: secure-wordpress.php:767
|
117 |
+
#@ secure_wp
|
118 |
msgid "Error-Messages"
|
119 |
msgstr "Fehler-Meldungen"
|
120 |
|
121 |
+
#: secure-wordpress.php:771
|
122 |
+
#@ secure_wp
|
123 |
msgid "Deactivates tooltip and error message at login of WordPress"
|
124 |
msgstr "Deaktivert die Hinweis- und Fehlermeldung beim Login von WordPress"
|
125 |
|
126 |
+
#: secure-wordpress.php:777
|
127 |
+
#@ secure_wp
|
128 |
msgid "WordPress Version"
|
129 |
msgstr "WordPress Version"
|
130 |
|
131 |
+
#: secure-wordpress.php:781
|
132 |
+
#@ secure_wp
|
133 |
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
134 |
msgstr "Entfernen der Version von WordPress in allen Bereichen, inkl. Feed, nicht im Admin-Bereich"
|
135 |
|
136 |
+
#: secure-wordpress.php:787
|
137 |
+
#@ secure_wp
|
138 |
msgid "WordPress Version in Backend"
|
139 |
msgstr "WordPress Version im Administrationsbereich"
|
140 |
|
141 |
+
#: secure-wordpress.php:791
|
142 |
+
#@ secure_wp
|
143 |
msgid "Removes version of WordPress on admin-area for non-admins. Show WordPress version of your blog only to users with the rights to edit plugins."
|
144 |
msgstr "Entfernen der Version von WordPress im Admin-Bereich für Nicht-Administratoren. Die WordPress Version deines Blogs wird ausschließlich Nutzern dargestellt, die die Rechte zum Editieren von Plugins haben."
|
145 |
|
146 |
+
#: secure-wordpress.php:797
|
147 |
+
#@ secure_wp
|
148 |
msgid "index.php"
|
149 |
msgstr "index.php"
|
150 |
|
151 |
+
#: secure-wordpress.php:801
|
152 |
+
#@ secure_wp
|
153 |
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
154 |
msgstr "hinterlegt eine <code>index.php</code> in <code>/plugins/</code> und <code>/themes/</code> um das Auslesen des Verzeichnis zu vermeiden "
|
155 |
|
156 |
+
#: secure-wordpress.php:807
|
157 |
+
#@ secure_wp
|
158 |
msgid "Really Simple Discovery"
|
159 |
msgstr "Really Simple Discovery"
|
160 |
|
161 |
+
#: secure-wordpress.php:811
|
162 |
+
#@ secure_wp
|
163 |
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
164 |
msgstr "Entfernt den link für Really Simple Discovery im head des Frontend"
|
165 |
|
166 |
+
#: secure-wordpress.php:817
|
167 |
+
#@ secure_wp
|
168 |
msgid "Windows Live Writer"
|
169 |
msgstr "Windows Live Writer"
|
170 |
|
171 |
+
#: secure-wordpress.php:821
|
172 |
+
#@ secure_wp
|
173 |
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
174 |
msgstr "Entfernt den link für Windows Live Writer im head des Frontend"
|
175 |
|
176 |
+
#: secure-wordpress.php:827
|
177 |
+
#@ secure_wp
|
178 |
msgid "Core Update"
|
179 |
msgstr "Core Update"
|
180 |
|
181 |
+
#: secure-wordpress.php:831
|
182 |
+
#@ secure_wp
|
183 |
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
184 |
msgstr "Deaktiviert das Core-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Plugins haben."
|
185 |
|
186 |
+
#: secure-wordpress.php:837
|
187 |
+
#@ secure_wp
|
188 |
msgid "Plugin Update"
|
189 |
msgstr "Plugin Update"
|
190 |
|
191 |
+
#: secure-wordpress.php:841
|
192 |
+
#@ secure_wp
|
193 |
msgid "Remove the plugin update for non-admins. Show message for a new version of a plugin in the install of your blog only to users with the rights to edit plugins."
|
194 |
msgstr "Deaktiviert das Plugin-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress zu Plugins wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Plugins haben."
|
195 |
|
196 |
+
#: secure-wordpress.php:848
|
197 |
+
#@ secure_wp
|
198 |
msgid "Theme Update"
|
199 |
msgstr "Theme Update"
|
200 |
|
201 |
+
#: secure-wordpress.php:852
|
202 |
+
#@ secure_wp
|
203 |
msgid "Remove the theme update for non-admins. Show message for a new version of a theme in the install of your blog only to users with the rights to edit themes."
|
204 |
msgstr "Deaktiviert das Theme-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress zum Theme wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Themes haben."
|
205 |
|
206 |
+
#: secure-wordpress.php:859
|
207 |
+
#@ secure_wp
|
208 |
msgid "WP Scanner"
|
209 |
msgstr "WP Scanner"
|
210 |
|
211 |
+
#: secure-wordpress.php:863
|
212 |
+
#@ secure_wp
|
213 |
msgid "WordPress scanner is a free online resource that blog administrators can use to provide a measure of their wordpress security level. To run wp-scanner check this option and add <code><!-- wpscanner --></code> to your current WordPress template. After this go to <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> and scan your site."
|
214 |
msgstr "Der WordPress Scanner ist eine freie online Resource für Blog-Administratoren um die Sicherheit der WordPress Installation über das Frontend zu prüfen. Um den Scanner zu nutzen, aktivere die Checkbox und es wird der String <code><!-- wpscanner --></code> im aktuell verwendeten Theme eingefügt. Danach besuche den Online-Scanner unter <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> und prüfe deine Site."
|
215 |
|
216 |
+
#: secure-wordpress.php:869
|
217 |
+
#@ secure_wp
|
218 |
msgid "Block bad queries"
|
219 |
msgstr "Blocke negative Abfragen"
|
220 |
|
221 |
+
#: secure-wordpress.php:873
|
222 |
+
#@ secure_wp
|
223 |
msgid "Protect WordPress against malicious URL requests, read more information at the <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >post from Jeff Starr</a>"
|
224 |
msgstr "WordPress gegen bösartige URL-Anforderungen schützen, mehr Informationen gibt es im <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >Beitrag von Jeff Starr</a>"
|
225 |
|
226 |
+
#: secure-wordpress.php:881
|
227 |
+
#@ secure_wp
|
228 |
msgid "Save Changes"
|
229 |
msgstr "Einstellungen aktualisieren"
|
230 |
|
231 |
+
#: secure-wordpress.php:893
|
232 |
+
#@ secure_wp
|
233 |
msgid "Validate your site with a free malware scan from www.sitesecuritymonitor.com"
|
234 |
msgstr "Überprüfe deine Seite mit einem freien Malware-Scan von www.sitesecuritymonitor.com"
|
235 |
|
236 |
+
#: secure-wordpress.php:896
|
237 |
+
#@ secure_wp
|
238 |
msgid "Take us for a Test Drive - Free Scan"
|
239 |
msgstr "Nutze uns für eine Probefahrt - freier Scan"
|
240 |
|
241 |
+
#: secure-wordpress.php:897
|
242 |
+
#@ secure_wp
|
243 |
msgid "We understand you may have questions:"
|
244 |
msgstr "Wie verstehen, dass du Fragen hast:"
|
245 |
|
246 |
+
#: secure-wordpress.php:898
|
247 |
+
#@ secure_wp
|
248 |
msgid "What does this do for me?"
|
249 |
msgstr "Was bedeutet der Scan für mich?"
|
250 |
|
251 |
+
#: secure-wordpress.php:899
|
252 |
+
#@ secure_wp
|
253 |
msgid "Am I really safe? I need to be sure."
|
254 |
msgstr "Bin ich wirklich sicher? Ich muss sicher sein."
|
255 |
|
256 |
+
#: secure-wordpress.php:900
|
257 |
+
#@ secure_wp
|
258 |
msgid "Rest Assured, Site Security Monitor has you covered."
|
259 |
msgstr "Sei dir sicher, Site Security Monitor ist sicher."
|
260 |
|
261 |
+
#: secure-wordpress.php:902
|
262 |
+
#@ secure_wp
|
263 |
msgid "FREE scan looks for malware"
|
264 |
msgstr "FREIER scan um Malware zu finden"
|
265 |
|
266 |
+
#: secure-wordpress.php:903
|
267 |
+
#@ secure_wp
|
268 |
msgid "FREE report of website vulnerabilities found"
|
269 |
msgstr "FREIE Auswertung der gefundenen Schwachstellen auf einer Webseite"
|
270 |
|
271 |
+
#: secure-wordpress.php:904
|
272 |
+
#@ secure_wp
|
273 |
msgid "No setup, tuning and installation on your site - scan begins immediately"
|
274 |
msgstr "Keine Einrichtung, keine Anpassunge und Installationen auf deiner Site - der Scan kann sofort starten"
|
275 |
|
276 |
+
#: secure-wordpress.php:906
|
277 |
+
#@ secure_wp
|
278 |
msgid "We will deliver to you a detailed malware and web vulnerability report - FREE of charge. You are free to use the report to resolve issues, show your boss that you are clean, or show your clients that the site you built is safe!"
|
279 |
msgstr "Wir liefern einen detaillierten Bericht zu Schwachstellen und Malware (Schadprogrammen) - kostenlos. Du kannst entscheiden, wie du den Bericht verwendest um Probleme zu lösen, es werden Hinweise zum Problem gegeben. Zeigen den anderen, dass die Site sauber und sicher ist."
|
280 |
|
281 |
+
#: secure-wordpress.php:907
|
282 |
+
#@ secure_wp
|
283 |
msgid "** Bonus: You will be able to use the Site Security Monitor \"Safe-Seal\" on your site after the scan - this shows the world that you are malware free!"
|
284 |
msgstr "** Bonus: Du kannst das Site Security Monitor \"Safe-Seal\" in deine Site integrieren - zeige der Welt, dass du frei von Malware bist."
|
285 |
|
286 |
+
#: secure-wordpress.php:909
|
287 |
+
#@ secure_wp
|
288 |
msgid "The form"
|
289 |
msgstr "Das Formular"
|
290 |
|
291 |
+
#: secure-wordpress.php:910
|
292 |
+
#@ secure_wp
|
293 |
msgid "Use the follow form or use it on <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">our website</a>."
|
294 |
msgstr "Nutze das Formular oder gehe direkt über <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">unsere Website</a>."
|
295 |
|
296 |
+
#: secure-wordpress.php:945
|
297 |
+
#@ secure_wp
|
298 |
msgid "Full Name"
|
299 |
msgstr "Name, Vorname"
|
300 |
|
301 |
+
#: secure-wordpress.php:948
|
302 |
+
#: secure-wordpress.php:956
|
303 |
+
#: secure-wordpress.php:964
|
304 |
+
#: secure-wordpress.php:972
|
305 |
+
#: secure-wordpress.php:988
|
306 |
+
#@ secure_wp
|
307 |
msgid "*required"
|
308 |
msgstr "*Pflichtfeld"
|
309 |
|
310 |
+
#: secure-wordpress.php:953
|
311 |
+
#@ secure_wp
|
312 |
msgid "eMail Adress"
|
313 |
msgstr "E-Mail Adresse"
|
314 |
|
315 |
+
#: secure-wordpress.php:956
|
316 |
+
#@ secure_wp
|
317 |
msgid ", eMail Address must match domain name"
|
318 |
msgstr ", die E-Mail Adresse muss den Domain-Namen enthalten"
|
319 |
|
320 |
+
#: secure-wordpress.php:961
|
321 |
+
#@ secure_wp
|
322 |
msgid "Website"
|
323 |
msgstr "Website"
|
324 |
|
325 |
+
#: secure-wordpress.php:969
|
326 |
+
#@ secure_wp
|
327 |
msgid "Phone"
|
328 |
msgstr "Telefon"
|
329 |
|
330 |
+
#: secure-wordpress.php:977
|
331 |
+
#@ secure_wp
|
332 |
msgid "Yes, I need help!"
|
333 |
msgstr "Ja, ich brauche Hilfe!"
|
334 |
|
335 |
+
#: secure-wordpress.php:980
|
336 |
+
#@ secure_wp
|
337 |
msgid "Call me"
|
338 |
msgstr "Rufe mich an"
|
339 |
|
340 |
+
#: secure-wordpress.php:985
|
341 |
+
#@ secure_wp
|
342 |
msgid "Terms and Conditions"
|
343 |
msgstr "Allgemeine Geschäftsbedingungen"
|
344 |
|
345 |
+
#: secure-wordpress.php:988
|
346 |
+
#@ secure_wp
|
347 |
msgid ", I accept"
|
348 |
msgstr ", ich akzeptiere"
|
349 |
|
350 |
+
#: secure-wordpress.php:995
|
351 |
+
#@ secure_wp
|
352 |
msgid "Get my Free Web Scan"
|
353 |
msgstr "Starte meinen freien Web-Scan"
|
354 |
|
355 |
+
#: secure-wordpress.php:1006
|
356 |
+
#@ secure_wp
|
357 |
msgid "Safe Seal"
|
358 |
msgstr "Safe Seal"
|
359 |
|
360 |
+
#: secure-wordpress.php:1036
|
361 |
+
#@ secure_wp
|
|
|
|
|
|
|
362 |
msgid "Color"
|
363 |
msgstr "Farbe"
|
364 |
|
365 |
+
#: secure-wordpress.php:1040
|
366 |
+
#@ secure_wp
|
367 |
msgid "Green"
|
368 |
msgstr "Grün"
|
369 |
|
370 |
+
#: secure-wordpress.php:1041
|
371 |
+
#@ secure_wp
|
372 |
msgid "Blue"
|
373 |
msgstr "Blau"
|
374 |
|
375 |
+
#: secure-wordpress.php:1042
|
376 |
+
#@ secure_wp
|
377 |
msgid "Red"
|
378 |
msgstr "Rot"
|
379 |
|
380 |
+
#: secure-wordpress.php:1043
|
381 |
+
#@ secure_wp
|
382 |
msgid "Brown"
|
383 |
msgstr "Braun"
|
384 |
|
385 |
+
#: secure-wordpress.php:1044
|
386 |
+
#@ secure_wp
|
387 |
msgid "Gray"
|
388 |
msgstr "Grau"
|
389 |
|
390 |
+
#: secure-wordpress.php:1053
|
391 |
+
#@ secure_wp
|
392 |
msgid "Text"
|
393 |
msgstr "Text"
|
394 |
|
395 |
+
#: secure-wordpress.php:1057
|
396 |
+
#@ secure_wp
|
397 |
msgid "Protected"
|
398 |
msgstr "Geschützt"
|
399 |
|
400 |
+
#: secure-wordpress.php:1058
|
401 |
+
#@ secure_wp
|
402 |
msgid "Secured"
|
403 |
msgstr "Sicher"
|
404 |
|
405 |
+
#: secure-wordpress.php:1059
|
406 |
+
#@ secure_wp
|
407 |
msgid "Scanned"
|
408 |
msgstr "Gescannt"
|
409 |
|
410 |
+
#: secure-wordpress.php:1060
|
411 |
+
#@ secure_wp
|
412 |
msgid "Protected by"
|
413 |
msgstr "Geschützt durch"
|
414 |
|
415 |
+
#: secure-wordpress.php:1066
|
416 |
+
#@ secure_wp
|
417 |
msgid "Orientation"
|
418 |
msgstr "Orientierung"
|
419 |
|
420 |
+
#: secure-wordpress.php:1070
|
421 |
+
#@ secure_wp
|
422 |
msgid "Horizontal"
|
423 |
msgstr "Horizontal"
|
424 |
|
425 |
+
#: secure-wordpress.php:1071
|
426 |
+
#@ secure_wp
|
427 |
msgid "Vertical"
|
428 |
msgstr "Vertical"
|
429 |
|
430 |
+
#: secure-wordpress.php:1077
|
431 |
+
#@ secure_wp
|
432 |
msgid "Image border"
|
433 |
msgstr "Bilder-Rahmen"
|
434 |
|
435 |
+
#: secure-wordpress.php:1085
|
436 |
+
#@ secure_wp
|
437 |
msgid "Language"
|
438 |
msgstr "Sprache"
|
439 |
|
440 |
+
#: secure-wordpress.php:1089
|
441 |
+
#@ secure_wp
|
442 |
msgid "English (US)"
|
443 |
msgstr "Englisch (US)"
|
444 |
|
445 |
+
#: secure-wordpress.php:1090
|
446 |
+
#@ secure_wp
|
447 |
msgid "English (UK)"
|
448 |
msgstr "Englisch (UK)"
|
449 |
|
450 |
+
#: secure-wordpress.php:1091
|
451 |
+
#@ secure_wp
|
452 |
msgid "Spanish"
|
453 |
msgstr "Spanisch"
|
454 |
|
455 |
+
#: secure-wordpress.php:1092
|
456 |
+
#@ secure_wp
|
457 |
msgid "German"
|
458 |
msgstr "Deutsch"
|
459 |
|
460 |
+
#: secure-wordpress.php:1093
|
461 |
+
#@ secure_wp
|
462 |
msgid "Italian"
|
463 |
msgstr "Italienisch"
|
464 |
|
465 |
+
#: secure-wordpress.php:1094
|
466 |
+
#@ secure_wp
|
467 |
msgid "Japanese"
|
468 |
msgstr "Japanisch"
|
469 |
|
470 |
+
#: secure-wordpress.php:1095
|
471 |
+
#@ secure_wp
|
472 |
msgid "Chinese (Simplified)"
|
473 |
msgstr "Chinesisch (Einfach)"
|
474 |
|
475 |
+
#: secure-wordpress.php:1096
|
476 |
+
#@ secure_wp
|
477 |
msgid "Chinese (Traditional)"
|
478 |
msgstr "Chinesisch (Traditonell)"
|
479 |
|
480 |
+
#: secure-wordpress.php:1105
|
481 |
+
#@ secure_wp
|
482 |
msgid "Here is your generated code. Place it on your website (as html widget) to show that you are protected."
|
483 |
msgstr "Hier ist der erstellte Code, platziere in ihn in deiner Site (als HTML Widget) um zu zeigen, dass du geschützt bist."
|
484 |
|
485 |
+
#: secure-wordpress.php:1120
|
486 |
+
#@ secure_wp
|
487 |
msgid "Clear Options"
|
488 |
msgstr "Einstellungen löschen"
|
489 |
|
490 |
+
#: secure-wordpress.php:1123
|
491 |
+
#@ secure_wp
|
492 |
msgid "Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created."
|
493 |
msgstr "Nutze diese Möglichkeit um alle Einstellungen des Plugins in der Datenbank zu löschen. Das Plugin löscht ebenfalls alle Einstellungen wenn du es deaktivierst oder aus dem Backend heraus entfernst."
|
494 |
|
495 |
+
#: secure-wordpress.php:1128
|
496 |
+
#@ secure_wp
|
497 |
msgid "Delete Options"
|
498 |
msgstr "Einstellungen löschen"
|
499 |
|
500 |
+
#. translators: plugin header field 'PluginURI'
|
501 |
+
#: secure-wordpress.php:0
|
502 |
+
#@ secure_wp
|
503 |
+
msgid "http://www.sitesecuritymonitor.com/secure-wordpress-plugin"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#. translators: plugin header field 'Author'
|
507 |
+
#: secure-wordpress.php:0
|
508 |
+
#@ secure_wp
|
509 |
+
msgid "jremillard"
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#. translators: plugin header field 'AuthorURI'
|
513 |
+
#: secure-wordpress.php:0
|
514 |
+
#@ secure_wp
|
515 |
+
msgid "http://www.sitesecuritymonitor.com/"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#. translators: plugin header field 'Version'
|
519 |
+
#: secure-wordpress.php:0
|
520 |
+
#@ secure_wp
|
521 |
+
msgid "1.0.3"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: secure-wordpress.php:1009
|
525 |
+
#@ secure_wp
|
526 |
+
msgid "Thankyou for using our plugin! You are free to use the scan below (outputs HTML for easy copy-pasting) into your blog. This seal does not give you scanning services - it simple does the basics of wordpress security - as recommended by the community and our own experiences with our customers.<br/>Should you wish to get regular vulnerability and malware scanning services, please <a href=\"http://www.sitesecuritymonitor.com/wordpress-secure-plugin/\">see our main page here...</a>"
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: secure-wordpress.php:1104
|
530 |
+
#@ secure_wp
|
531 |
+
msgid "Source"
|
532 |
+
msgstr "Quellcode"
|
533 |
+
|
languages/secure_wp-es_ES.mo
CHANGED
File without changes
|
languages/secure_wp-es_ES.po
CHANGED
File without changes
|
languages/secure_wp-fa_IR.mo
ADDED
Binary file
|
languages/secure_wp-fa_IR.po
ADDED
@@ -0,0 +1,441 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: secure-wordpress-fa_IR\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-05-16 12:34+0100\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: ALiRezaCH <alirezach70@gmail.com>\n"
|
8 |
+
"Language-Team: AliRezaCH.co.cc\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: __\n"
|
13 |
+
"X-Poedit-Basepath: C:\\xampp\\htdocs\\wp3\\wp-content\\plugins\\secure-wordpress\n"
|
14 |
+
|
15 |
+
#: secure-wordpress.php:13
|
16 |
+
msgid "Little basics for secure your WordPress-installation."
|
17 |
+
msgstr "آموزشي كوچك براي براي امنيت در نصب وردپرس"
|
18 |
+
|
19 |
+
#: secure-wordpress.php:364
|
20 |
+
msgid "Settings"
|
21 |
+
msgstr "تنظيمات"
|
22 |
+
|
23 |
+
# @ secure_wp
|
24 |
+
#: secure-wordpress.php:393
|
25 |
+
#: secure-wordpress.php:440
|
26 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
27 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">افزونه</a>"
|
28 |
+
|
29 |
+
# @ secure_wp
|
30 |
+
#: secure-wordpress.php:416
|
31 |
+
msgid "Options update."
|
32 |
+
msgstr "گزينهها بهروز شد."
|
33 |
+
|
34 |
+
# @ secure_wp
|
35 |
+
#: secure-wordpress.php:418
|
36 |
+
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
37 |
+
msgstr "تمامي وروديهاي ديتابيس حذف شدند. اكنون افزونه غيرفعال هست."
|
38 |
+
|
39 |
+
# @ secure_wp
|
40 |
+
#: secure-wordpress.php:432
|
41 |
+
#: secure-wordpress.php:443
|
42 |
+
msgid "Secure WP"
|
43 |
+
msgstr "وردپرس ايمن"
|
44 |
+
|
45 |
+
# @ secure_wp
|
46 |
+
#: secure-wordpress.php:439
|
47 |
+
#: secure-wordpress.php:738
|
48 |
+
msgid "Secure WordPress"
|
49 |
+
msgstr "وردپرس ايمن"
|
50 |
+
|
51 |
+
#: secure-wordpress.php:463
|
52 |
+
msgid "Version"
|
53 |
+
msgstr "نسخه"
|
54 |
+
|
55 |
+
# @ secure_wp
|
56 |
+
#: secure-wordpress.php:463
|
57 |
+
msgid "History"
|
58 |
+
msgstr "تاريخچه"
|
59 |
+
|
60 |
+
#: secure-wordpress.php:463
|
61 |
+
msgid "Author"
|
62 |
+
msgstr "تهيهكننده"
|
63 |
+
|
64 |
+
# @ secure_wp
|
65 |
+
#: secure-wordpress.php:664
|
66 |
+
msgid "Options not updated - you don‘t have the privileges to do this!"
|
67 |
+
msgstr "گزينهها به روز نشد. شما به گزينهاي ارجحيت داديد."
|
68 |
+
|
69 |
+
# @ secure_wp
|
70 |
+
#: secure-wordpress.php:684
|
71 |
+
msgid "Entries were not deleted - you don‘t have the privileges to do this!"
|
72 |
+
msgstr "وروديها پاك نشدند. شما داراي مزيتي براي اين هستيد."
|
73 |
+
|
74 |
+
# @ secure_wp
|
75 |
+
#: secure-wordpress.php:692
|
76 |
+
msgid "Entries were not deleted - check the checkbox!"
|
77 |
+
msgstr "وروديها پاك نشدند- چكباكس را چك كنيد."
|
78 |
+
|
79 |
+
# @ secure_wp
|
80 |
+
#: secure-wordpress.php:712
|
81 |
+
msgid "All entries in the database were cleared."
|
82 |
+
msgstr "تمامي وروديهاي ديتابيس حذف شدند."
|
83 |
+
|
84 |
+
# @ secure_wp
|
85 |
+
#: secure-wordpress.php:716
|
86 |
+
msgid "Entries were not deleted - check the checkbox or you don‘t have the privileges to do this!"
|
87 |
+
msgstr "وروديها پاك نشدند. چكباكس خود را چك كنيد و يا شايد ارجحيتي ايجاد كردهايد."
|
88 |
+
|
89 |
+
#: secure-wordpress.php:743
|
90 |
+
#: secure-wordpress.php:878
|
91 |
+
#: secure-wordpress.php:988
|
92 |
+
#: secure-wordpress.php:1101
|
93 |
+
#: secure-wordpress.php:1121
|
94 |
+
msgid "Click to toggle"
|
95 |
+
msgstr "Click to toggle"
|
96 |
+
|
97 |
+
# @ secure_wp
|
98 |
+
#: secure-wordpress.php:744
|
99 |
+
msgid "Configuration"
|
100 |
+
msgstr "پيكربندي"
|
101 |
+
|
102 |
+
# @ secure_wp
|
103 |
+
#: secure-wordpress.php:754
|
104 |
+
msgid "Error-Messages"
|
105 |
+
msgstr "پيامهاي خطا"
|
106 |
+
|
107 |
+
# @ secure_wp
|
108 |
+
#: secure-wordpress.php:758
|
109 |
+
msgid "Deactivates tooltip and error message at login of WordPress"
|
110 |
+
msgstr "غيرفعال كردن پيغامهاي خطا در زمان ورود به وردپرس"
|
111 |
+
|
112 |
+
# @ secure_wp
|
113 |
+
#: secure-wordpress.php:764
|
114 |
+
msgid "WordPress Version"
|
115 |
+
msgstr "نسخهي وردپرس"
|
116 |
+
|
117 |
+
# @ secure_wp
|
118 |
+
#: secure-wordpress.php:768
|
119 |
+
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
120 |
+
msgstr "حذف نسخه وردپرس در تمام قسمتها، كه شامل خوراك نيز ميشود، البته غير از مديريت."
|
121 |
+
|
122 |
+
# @ secure_wp
|
123 |
+
#: secure-wordpress.php:774
|
124 |
+
msgid "WordPress Version in Backend"
|
125 |
+
msgstr "عدمنمايش نسخه وردپرس"
|
126 |
+
|
127 |
+
# @ secure_wp
|
128 |
+
#: secure-wordpress.php:778
|
129 |
+
msgid "Removes version of WordPress on admin-area for non-admins. Show WordPress version of your blog only to users with the rights to edit plugins."
|
130 |
+
msgstr "حذف نسخهي وردپرس در قسمتهاي مديريت براي غيرمديرها. نشان دادن نسخهي وردپرس در وبلاگ شما فقط براي كاربران و ويرايش افزونهها."
|
131 |
+
|
132 |
+
# @ secure_wp
|
133 |
+
#: secure-wordpress.php:784
|
134 |
+
msgid "index.php"
|
135 |
+
msgstr "index.php"
|
136 |
+
|
137 |
+
# @ secure_wp
|
138 |
+
#: secure-wordpress.php:788
|
139 |
+
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
140 |
+
msgstr "ساختن <code>index.php</code> در <code>/plugins/</code> und <code>/themes/</code> براي نگهداشتن آن از نشان دادن فهرست دايركتوري آن. "
|
141 |
+
|
142 |
+
# @ secure_wp
|
143 |
+
#: secure-wordpress.php:794
|
144 |
+
msgid "Really Simple Discovery"
|
145 |
+
msgstr "Really Simple Discovery"
|
146 |
+
|
147 |
+
# @ secure_wp
|
148 |
+
#: secure-wordpress.php:798
|
149 |
+
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
150 |
+
msgstr "حذف پيوند Really Simple Discovery در <code>wp_head</code>"
|
151 |
+
|
152 |
+
# @ secure_wp
|
153 |
+
#: secure-wordpress.php:804
|
154 |
+
msgid "Windows Live Writer"
|
155 |
+
msgstr "Windows Live Writer"
|
156 |
+
|
157 |
+
# @ secure_wp
|
158 |
+
#: secure-wordpress.php:808
|
159 |
+
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
160 |
+
msgstr "حذف پيوند Windows Live Writer در <code>wp_head</code>"
|
161 |
+
|
162 |
+
# @ secure_wp
|
163 |
+
#: secure-wordpress.php:814
|
164 |
+
msgid "Core Update"
|
165 |
+
msgstr "بهروز كردن هسته"
|
166 |
+
|
167 |
+
# @ secure_wp
|
168 |
+
#: secure-wordpress.php:818
|
169 |
+
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
170 |
+
msgstr "حذف بهروزكردن هستهي وردپرس براي غير مدير سيستم. نشان دادن پيام نسخهي جديد وردپرس به درستي به روز شد."
|
171 |
+
|
172 |
+
# @ secure_wp
|
173 |
+
#: secure-wordpress.php:824
|
174 |
+
msgid "Plugin Update"
|
175 |
+
msgstr "به روزكردن افزونه"
|
176 |
+
|
177 |
+
# @ secure_wp
|
178 |
+
#: secure-wordpress.php:828
|
179 |
+
msgid "Remove the plugin update for non-admins. Show message for a new version of a plugin in the install of your blog only to users with the rights to edit plugins."
|
180 |
+
msgstr "حذف به روز كردن افزونهها براي غير مديرها. پيام افزونهي جديد بر روي وبلاگ نصب شد براي كاربران نشان دادهشود."
|
181 |
+
|
182 |
+
# @ secure_wp
|
183 |
+
#: secure-wordpress.php:835
|
184 |
+
msgid "Theme Update"
|
185 |
+
msgstr "بهروز كردن پوسته"
|
186 |
+
|
187 |
+
# @ secure_wp
|
188 |
+
#: secure-wordpress.php:839
|
189 |
+
msgid "Remove the theme update for non-admins. Show message for a new version of a theme in the install of your blog only to users with the rights to edit themes."
|
190 |
+
msgstr "حذف بهروز كردن پوسته براي غيرمديريت. پيام نسخهي جديد پوسته بر روي وبلاگ نصب شد براي كاربران نشان دادهمي َود."
|
191 |
+
|
192 |
+
# @ secure_wp
|
193 |
+
#: secure-wordpress.php:846
|
194 |
+
msgid "WP Scanner"
|
195 |
+
msgstr "اسكنر وردپرس"
|
196 |
+
|
197 |
+
# @ secure_wp
|
198 |
+
#: secure-wordpress.php:850
|
199 |
+
msgid "WordPress scanner is a free online resource that blog administrators can use to provide a measure of their wordpress security level. To run wp-scanner check this option and add <code><!-- wpscanner --></code> to your current WordPress template. After this go to <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> and scan your site."
|
200 |
+
msgstr "اسكنر وردپرس، منبعي آنلاين و رايگان است كه مديريت وبلاگ ميتواند امنيت وردپرس خود را محاسبه كند كه در چه سطحي است.. براي برپايي اسكنر وردپرس گزينهها را انتخاب كنيد و اين كد را در <code><!-- wpscanner --></code>قالب كنوني وردپرس خود وارد كنيد.. بد از آن به اينجا برويد <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> و سايت خود را اسكن كنيد."
|
201 |
+
|
202 |
+
# @ secure_wp
|
203 |
+
#: secure-wordpress.php:856
|
204 |
+
msgid "Block bad queries"
|
205 |
+
msgstr "بلوكهكردن جستوجوهاي بد"
|
206 |
+
|
207 |
+
# @ secure_wp
|
208 |
+
#: secure-wordpress.php:860
|
209 |
+
msgid "Protect WordPress against malicious URL requests, read more information at the <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >post from Jeff Starr</a>"
|
210 |
+
msgstr "ايمن كردن وردپرس شما در برابر درخواستهاي مخالف، براي اطلاعات بيشتر اينجا را بخوانيد. <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >نوشتهاي از Jeff Starr</a>"
|
211 |
+
|
212 |
+
# @ secure_wp
|
213 |
+
#: secure-wordpress.php:868
|
214 |
+
msgid "Save Changes"
|
215 |
+
msgstr "دخيرهي تنظيمات"
|
216 |
+
|
217 |
+
#: secure-wordpress.php:879
|
218 |
+
msgid "Validate your site with a free malware scan from www.sitesecuritymonitor.com"
|
219 |
+
msgstr "معتبر ساختن تارنماي شما با اسكنر رايگان بدافزار در www.sitesecuritymonitor.com"
|
220 |
+
|
221 |
+
#: secure-wordpress.php:882
|
222 |
+
msgid "Take us for a Test Drive - Free Scan"
|
223 |
+
msgstr "درخواست از ما براي آزمايش و اسكن رايگان"
|
224 |
+
|
225 |
+
#: secure-wordpress.php:883
|
226 |
+
msgid "We understand you may have questions:"
|
227 |
+
msgstr "ما ميدانيم كه شما چند سؤال داريد:"
|
228 |
+
|
229 |
+
#: secure-wordpress.php:884
|
230 |
+
msgid "What does this do for me?"
|
231 |
+
msgstr "چه كاري شما براي من انجام ميدهيد؟"
|
232 |
+
|
233 |
+
#: secure-wordpress.php:885
|
234 |
+
msgid "Am I really safe? I need to be sure."
|
235 |
+
msgstr "آيا من واقعاً در امنيت هستم؟ من نياز دارم كه مطمئن شوم."
|
236 |
+
|
237 |
+
#: secure-wordpress.php:886
|
238 |
+
msgid "Rest Assured, Site Security Monitor has you covered."
|
239 |
+
msgstr "در اطمينان باشيد، Site Security Monitor پشتيبان شما خواهدبود."
|
240 |
+
|
241 |
+
#: secure-wordpress.php:888
|
242 |
+
msgid "FREE scan looks for malware"
|
243 |
+
msgstr "اسكن رايگان براي يافتم بدافزار"
|
244 |
+
|
245 |
+
#: secure-wordpress.php:889
|
246 |
+
msgid "FREE report of website vulnerabilities found"
|
247 |
+
msgstr "گزارش رايگان تعداد آسيبپذيري تارنما"
|
248 |
+
|
249 |
+
#: secure-wordpress.php:890
|
250 |
+
msgid "No setup, tuning and installation on your site - scan begins immediately"
|
251 |
+
msgstr "بدون نياز به نصب، ميزانسازي و نصب بر روي تارنماي شما - شروع اسكن سريعاً"
|
252 |
+
|
253 |
+
#: secure-wordpress.php:892
|
254 |
+
msgid "We will deliver to you a detailed malware and web vulnerability report - FREE of charge. You are free to use the report to resolve issues, show your boss that you are clean, or show your clients that the site you built is safe!"
|
255 |
+
msgstr "ما گزارش جزئيات بدافزار و آسيبپذيري تارنما به شما تخويل ميدهيم. به صورات رايگان. شما مجاني گزارش درخواستي خود را دريافت مي كنيد. به رئيس شما نشان ميدهيم كه پاك هستيد، و يا به مشتري شما نشان ميدهيم كه تارنماي شما در امنيت كامل است. "
|
256 |
+
|
257 |
+
#: secure-wordpress.php:893
|
258 |
+
msgid "** Bonus: You will be able to use the Site Security Monitor \"Safe-Seal\" on your site after the scan - this shows the world that you are malware free!"
|
259 |
+
msgstr "** جايزه: شما پس از استفاده از Site Security Monitor و دريافت تضمين امنيت در سايت شما. به همهي دنيا نشان ميدهيد كه عاري از هرگونه بدافزار هستيد."
|
260 |
+
|
261 |
+
#: secure-wordpress.php:895
|
262 |
+
msgid "The form"
|
263 |
+
msgstr "اين فرم"
|
264 |
+
|
265 |
+
#: secure-wordpress.php:896
|
266 |
+
msgid "Use the follow form or use it on <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">our website</a>."
|
267 |
+
msgstr "استفاده از فرم موجود در <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">وبسايت ما</a>."
|
268 |
+
|
269 |
+
#: secure-wordpress.php:928
|
270 |
+
msgid "Full Name"
|
271 |
+
msgstr "نام كامل"
|
272 |
+
|
273 |
+
#: secure-wordpress.php:931
|
274 |
+
#: secure-wordpress.php:939
|
275 |
+
#: secure-wordpress.php:947
|
276 |
+
#: secure-wordpress.php:955
|
277 |
+
#: secure-wordpress.php:971
|
278 |
+
msgid "*required"
|
279 |
+
msgstr "*لازماست"
|
280 |
+
|
281 |
+
#: secure-wordpress.php:936
|
282 |
+
msgid "eMail Adress"
|
283 |
+
msgstr "رايانامه"
|
284 |
+
|
285 |
+
#: secure-wordpress.php:939
|
286 |
+
msgid ", eMail Address must match domain name"
|
287 |
+
msgstr "، رايانامه شما بايد با دامنه ي شما مطابقت داشتهباشد."
|
288 |
+
|
289 |
+
#: secure-wordpress.php:944
|
290 |
+
msgid "Website"
|
291 |
+
msgstr "تارنما"
|
292 |
+
|
293 |
+
#: secure-wordpress.php:952
|
294 |
+
msgid "Phone"
|
295 |
+
msgstr "تلفن"
|
296 |
+
|
297 |
+
#: secure-wordpress.php:960
|
298 |
+
msgid "Yes, I need help!"
|
299 |
+
msgstr "بله، من به راهنمايي نياز دارم!"
|
300 |
+
|
301 |
+
#: secure-wordpress.php:963
|
302 |
+
msgid "Call me"
|
303 |
+
msgstr "مرا صدابزن"
|
304 |
+
|
305 |
+
#: secure-wordpress.php:968
|
306 |
+
msgid "Terms and Conditions"
|
307 |
+
msgstr "قوانين و مقررات"
|
308 |
+
|
309 |
+
#: secure-wordpress.php:971
|
310 |
+
msgid ", I accept"
|
311 |
+
msgstr "، من مي پذيرم."
|
312 |
+
|
313 |
+
#: secure-wordpress.php:978
|
314 |
+
msgid "Get my Free Web Scan"
|
315 |
+
msgstr "دريافت رايگان اسكن تارنماي من."
|
316 |
+
|
317 |
+
#: secure-wordpress.php:989
|
318 |
+
msgid "Safe Seal"
|
319 |
+
msgstr "تضمين امنيت"
|
320 |
+
|
321 |
+
#: secure-wordpress.php:992
|
322 |
+
msgid "Thankyou for using our scan. You are free to use the scan below (outputs HTML for easy copy-pasting) into your blog. This seal does not give you scanning services - it simple does the basics of wordpress security - as recommended by the community and our own experiences with our customers.<br/>Should you wish to get regular vulnerability and malware scanning services, please <a href=\"http://www.sitesecuritymonitor.com/wordpress-secure-plugin/\">see our main page here...</a>"
|
323 |
+
msgstr "براي استفاده از اسكنر ما سپاسگذاريم. شما ميتواني اسكنر رايگان ما را در تارنماي خود قرار دهيد (از كد HTML زير رونشت برداريد و در تارنماي خود قرار دهيد).اگر اين سرويس اسكن براي ايمن كردن را نگرفتهايد- خيلي راحت وردپرس خود را امنيتي كنيد-اگر مايليد كه در انجمن ما شركت كنيد و از تجربههاي ما استفادهكنيد.به صورت مستقيم از سرويس آسيبپذيري و اسكن بدافزار ما استفاد كنيد.<a href=\"http://www.sitesecuritymonitor.com/wordpress-secure-plugin/\">از تارنماي ما ديدن كنيد...</a>"
|
324 |
+
|
325 |
+
#: secure-wordpress.php:1020
|
326 |
+
msgid "Color"
|
327 |
+
msgstr "رنگ"
|
328 |
+
|
329 |
+
#: secure-wordpress.php:1024
|
330 |
+
msgid "Green"
|
331 |
+
msgstr "سبز"
|
332 |
+
|
333 |
+
#: secure-wordpress.php:1025
|
334 |
+
msgid "Blue"
|
335 |
+
msgstr "آبي"
|
336 |
+
|
337 |
+
#: secure-wordpress.php:1026
|
338 |
+
msgid "Red"
|
339 |
+
msgstr "قرمز"
|
340 |
+
|
341 |
+
#: secure-wordpress.php:1027
|
342 |
+
msgid "Brown"
|
343 |
+
msgstr "قهوهاي"
|
344 |
+
|
345 |
+
#: secure-wordpress.php:1028
|
346 |
+
msgid "Gray"
|
347 |
+
msgstr "خاكستري"
|
348 |
+
|
349 |
+
#: secure-wordpress.php:1037
|
350 |
+
msgid "Text"
|
351 |
+
msgstr "متن"
|
352 |
+
|
353 |
+
#: secure-wordpress.php:1041
|
354 |
+
msgid "Protected"
|
355 |
+
msgstr "محافظت شد."
|
356 |
+
|
357 |
+
# @ secure_wp
|
358 |
+
#: secure-wordpress.php:1042
|
359 |
+
msgid "Secured"
|
360 |
+
msgstr "ايمن شد."
|
361 |
+
|
362 |
+
# @ secure_wp
|
363 |
+
#: secure-wordpress.php:1043
|
364 |
+
msgid "Scanned"
|
365 |
+
msgstr "اسكن شد."
|
366 |
+
|
367 |
+
#: secure-wordpress.php:1044
|
368 |
+
msgid "Protected by"
|
369 |
+
msgstr "محافظت شده توسط"
|
370 |
+
|
371 |
+
#: secure-wordpress.php:1050
|
372 |
+
msgid "Orientation"
|
373 |
+
msgstr "آشناسازي"
|
374 |
+
|
375 |
+
#: secure-wordpress.php:1054
|
376 |
+
msgid "Horizontal"
|
377 |
+
msgstr "افقي"
|
378 |
+
|
379 |
+
#: secure-wordpress.php:1055
|
380 |
+
msgid "Vertical"
|
381 |
+
msgstr "عمودي"
|
382 |
+
|
383 |
+
#: secure-wordpress.php:1061
|
384 |
+
msgid "Image border"
|
385 |
+
msgstr "حاشيه تصوير"
|
386 |
+
|
387 |
+
#: secure-wordpress.php:1069
|
388 |
+
msgid "Language"
|
389 |
+
msgstr "زبان"
|
390 |
+
|
391 |
+
#: secure-wordpress.php:1073
|
392 |
+
msgid "English (US)"
|
393 |
+
msgstr "Englisch (US)"
|
394 |
+
|
395 |
+
#: secure-wordpress.php:1074
|
396 |
+
msgid "English (UK)"
|
397 |
+
msgstr "Englisch (UK)"
|
398 |
+
|
399 |
+
#: secure-wordpress.php:1075
|
400 |
+
msgid "Spanish"
|
401 |
+
msgstr "Spanisch"
|
402 |
+
|
403 |
+
#: secure-wordpress.php:1076
|
404 |
+
msgid "German"
|
405 |
+
msgstr "Deutsch"
|
406 |
+
|
407 |
+
#: secure-wordpress.php:1077
|
408 |
+
msgid "Italian"
|
409 |
+
msgstr "Italienisch"
|
410 |
+
|
411 |
+
#: secure-wordpress.php:1078
|
412 |
+
msgid "Japanese"
|
413 |
+
msgstr "Japanisch"
|
414 |
+
|
415 |
+
#: secure-wordpress.php:1079
|
416 |
+
msgid "Chinese (Simplified)"
|
417 |
+
msgstr "Chinesisch (Einfach)"
|
418 |
+
|
419 |
+
#: secure-wordpress.php:1080
|
420 |
+
msgid "Chinese (Traditional)"
|
421 |
+
msgstr "Chinesisch (Traditonell)"
|
422 |
+
|
423 |
+
#: secure-wordpress.php:1089
|
424 |
+
msgid "Here is your generated code. Place it on your website (as html widget) to show that you are protected."
|
425 |
+
msgstr "اين كد براي شما توليد شدهاست. اين كد را در وبسايت خود قرار دهيد تا نشان دهيد كه از وبلاگ شما ايمن هست."
|
426 |
+
|
427 |
+
# @ secure_wp
|
428 |
+
#: secure-wordpress.php:1102
|
429 |
+
msgid "Clear Options"
|
430 |
+
msgstr "پاك كردن گزينهها"
|
431 |
+
|
432 |
+
# @ secure_wp
|
433 |
+
#: secure-wordpress.php:1105
|
434 |
+
msgid "Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created."
|
435 |
+
msgstr "با كليك كردن بر روي اين دكمه تنظيمات اين افزونه حذف ميشود. افزونهي وردپرس ايمن غيرفعال شده و تمامي دادههاي ساخته شده حذف ميشود."
|
436 |
+
|
437 |
+
# @ secure_wp
|
438 |
+
#: secure-wordpress.php:1110
|
439 |
+
msgid "Delete Options"
|
440 |
+
msgstr "حذف گزينهها"
|
441 |
+
|
languages/secure_wp-fr_FR.mo
CHANGED
File without changes
|
languages/secure_wp-fr_FR.po
CHANGED
File without changes
|
languages/secure_wp-hu_HU.mo
CHANGED
File without changes
|
languages/secure_wp-hu_HU.po
CHANGED
File without changes
|
languages/secure_wp-it_IT.mo
CHANGED
Binary file
|
languages/secure_wp-it_IT.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Secure WordPress in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
8 |
"Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -13,236 +13,464 @@ msgstr ""
|
|
13 |
"X-Poedit-Language: Italian\n"
|
14 |
"X-Poedit-Country: ITALY\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e
|
17 |
-
"X-Poedit-Basepath: D:/WP-Plugins/secure-wordpress/trunk\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
-
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
22 |
msgid "Settings"
|
23 |
msgstr "Impostazioni"
|
24 |
|
25 |
# @ secure_wp
|
26 |
-
#: secure-wordpress.php:
|
27 |
-
#: secure-wordpress.php:
|
28 |
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
29 |
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentazione</a>"
|
30 |
|
31 |
# @ secure_wp
|
32 |
-
#: secure-wordpress.php:
|
33 |
msgid "Options update."
|
34 |
msgstr "Le opzioni sono state aggiornate."
|
35 |
|
36 |
# @ secure_wp
|
37 |
-
#: secure-wordpress.php:
|
38 |
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
39 |
msgstr "Sono state cancellate tutte le informazioni contenute nel database. Ora puoi disattivare il plugin."
|
40 |
|
41 |
# @ secure_wp
|
42 |
-
#: secure-wordpress.php:
|
43 |
-
#: secure-wordpress.php:
|
44 |
msgid "Secure WP"
|
45 |
msgstr "Secure WP"
|
46 |
|
47 |
# @ secure_wp
|
48 |
-
|
49 |
-
#: secure-wordpress.php:
|
|
|
|
|
50 |
msgid "Secure WordPress"
|
51 |
msgstr "Secure WordPress"
|
52 |
|
53 |
-
#: secure-wordpress.php:
|
54 |
msgid "Version"
|
55 |
msgstr "Versione"
|
56 |
|
57 |
# @ secure_wp
|
58 |
-
#: secure-wordpress.php:
|
59 |
msgid "History"
|
60 |
msgstr "Storico"
|
61 |
|
62 |
-
#: secure-wordpress.php:
|
63 |
msgid "Author"
|
64 |
msgstr "Autore"
|
65 |
|
66 |
# @ secure_wp
|
67 |
-
#: secure-wordpress.php:
|
68 |
msgid "Options not updated - you don‘t have the privileges to do this!"
|
69 |
msgstr "Le opzioni non sono state aggiornate - non hai i permessi per poter operare queste modifiche!"
|
70 |
|
71 |
# @ secure_wp
|
72 |
-
#: secure-wordpress.php:
|
73 |
msgid "Entries were not deleted - you don‘t have the privileges to do this!"
|
74 |
msgstr "Le informazioni non sono state cancellate - non hai i permessi per poter operare queste modifiche!"
|
75 |
|
76 |
# @ secure_wp
|
77 |
-
#: secure-wordpress.php:
|
78 |
msgid "Entries were not deleted - check the checkbox!"
|
79 |
msgstr "Le informazioni non sono state cancellate - verifica la casella di selezione!"
|
80 |
|
81 |
# @ secure_wp
|
82 |
-
#: secure-wordpress.php:
|
83 |
msgid "All entries in the database were cleared."
|
84 |
msgstr "Sono state cancellate tutte le informazioni contenute nel database."
|
85 |
|
86 |
# @ secure_wp
|
87 |
-
#: secure-wordpress.php:
|
88 |
msgid "Entries were not deleted - check the checkbox or you don‘t have the privileges to do this!"
|
89 |
msgstr "Le informazioni non sono state cancellate - verifica la casella di selezione oppure potresti non avere i permessi per poter operare queste modifiche!"
|
90 |
|
91 |
-
#: secure-wordpress.php:
|
92 |
-
#: secure-wordpress.php:
|
93 |
-
#: secure-wordpress.php:
|
|
|
94 |
msgid "Click to toggle"
|
95 |
msgstr "Clicca per commutare"
|
96 |
|
97 |
# @ secure_wp
|
98 |
-
#: secure-wordpress.php:
|
99 |
msgid "Configuration"
|
100 |
msgstr "Configurazione"
|
101 |
|
102 |
# @ secure_wp
|
103 |
-
#: secure-wordpress.php:
|
104 |
msgid "Error-Messages"
|
105 |
msgstr "Messaggi di errore"
|
106 |
|
107 |
# @ secure_wp
|
108 |
-
#: secure-wordpress.php:
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid "WordPress Version"
|
110 |
msgstr "Versione WordPress"
|
111 |
|
112 |
# @ secure_wp
|
113 |
-
#: secure-wordpress.php:
|
114 |
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
115 |
msgstr "Rimuove da tutte le aree la versione di WordPress in uso, inclusi i feed: non in amministrazione"
|
116 |
|
117 |
# @ secure_wp
|
118 |
-
#: secure-wordpress.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
msgid "Really Simple Discovery"
|
120 |
msgstr "Really Simple Discovery"
|
121 |
|
122 |
# @ secure_wp
|
123 |
-
#: secure-wordpress.php:
|
124 |
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
125 |
msgstr "Rimuovi il link Really Simple Discovery in <code>wp_head</code> nel frontend"
|
126 |
|
127 |
# @ secure_wp
|
128 |
-
#: secure-wordpress.php:
|
129 |
msgid "Windows Live Writer"
|
130 |
msgstr "Windows Live Writer"
|
131 |
|
132 |
# @ secure_wp
|
133 |
-
#: secure-wordpress.php:
|
134 |
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
135 |
msgstr "Rimuovi il link Windows Live Writer in <code>wp_head</code> nel frontend"
|
136 |
|
137 |
# @ secure_wp
|
138 |
-
#: secure-wordpress.php:
|
139 |
msgid "Core Update"
|
140 |
msgstr "Aggiornamento core"
|
141 |
|
142 |
# @ secure_wp
|
143 |
-
#: secure-wordpress.php:
|
144 |
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
145 |
msgstr "Rimuovi gli aggiornamenti del core di WordPress per gli utenti che non sono amministratori. Mostra il messaggio di notifica per una nuova versione di WordPress solamente per gli utenti che possono effettuare l'aggiornamento."
|
146 |
|
147 |
# @ secure_wp
|
148 |
-
#: secure-wordpress.php:
|
149 |
msgid "Plugin Update"
|
150 |
msgstr "Aggiornamento plugin"
|
151 |
|
152 |
# @ secure_wp
|
153 |
-
#: secure-wordpress.php:
|
154 |
msgid "Remove the plugin update for non-admins. Show message for a new version of a plugin in the install of your blog only to users with the rights to edit plugins."
|
155 |
msgstr "Rimuovi l'aggiornamento del plugin per gli utenti che non sono amministratori. Mostra il messaggio di notifica per una nuova versione di un plugin solamente per gli utenti che hanno i diritti per poter modificare i plugin."
|
156 |
|
157 |
# @ secure_wp
|
158 |
-
#: secure-wordpress.php:
|
159 |
msgid "Theme Update"
|
160 |
msgstr "Tema Update"
|
161 |
|
162 |
# @ secure_wp
|
163 |
-
#: secure-wordpress.php:
|
164 |
msgid "Remove the theme update for non-admins. Show message for a new version of a theme in the install of your blog only to users with the rights to edit themes."
|
165 |
msgstr "Rimuovere l'aggiornamento a tema per i non amministratori. Mostra messaggio per una nuova versione di un tema di installazione del tuo blog solo per gli utenti con i diritti per modificare temi."
|
166 |
|
167 |
# @ secure_wp
|
168 |
-
#: secure-wordpress.php:
|
169 |
msgid "WP Scanner"
|
170 |
msgstr "WP Scanner"
|
171 |
|
172 |
# @ secure_wp
|
173 |
-
#: secure-wordpress.php:
|
174 |
msgid "WordPress scanner is a free online resource that blog administrators can use to provide a measure of their wordpress security level. To run wp-scanner check this option and add <code><!-- wpscanner --></code> to your current WordPress template. After this go to <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> and scan your site."
|
175 |
-
msgstr "Scanner WordPress è una risorsa online gratuita che gli amministratori del blog possono utilizzare per fornire una misura della loro livello di sicurezza wordpress. Per eseguire wp-scanner attivare questa opzione ed aggiungere <code><!-- wpscanner --></
|
176 |
|
177 |
# @ secure_wp
|
178 |
-
#: secure-wordpress.php:
|
179 |
-
msgid "
|
180 |
-
msgstr "
|
181 |
|
182 |
# @ secure_wp
|
183 |
-
#: secure-wordpress.php:
|
184 |
-
msgid "
|
185 |
-
msgstr "
|
186 |
|
187 |
# @ secure_wp
|
188 |
-
#: secure-wordpress.php:
|
189 |
-
msgid "
|
190 |
-
msgstr "
|
191 |
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
|
197 |
# @ secure_wp
|
198 |
-
#: secure-wordpress.php:
|
199 |
-
msgid "
|
200 |
-
msgstr "
|
201 |
|
202 |
# @ secure_wp
|
203 |
-
#: secure-wordpress.php:
|
204 |
-
msgid "
|
205 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
206 |
|
207 |
# @ secure_wp
|
208 |
-
#: secure-wordpress.php:
|
209 |
-
msgid "
|
210 |
-
msgstr "
|
211 |
|
212 |
# @ secure_wp
|
213 |
-
#: secure-wordpress.php:
|
214 |
-
msgid "
|
215 |
-
msgstr ""
|
216 |
-
"\t\n"
|
217 |
-
"crea un <code>index.php</code> file in <code>/plugins/</code> e <code>/themes/</code> per tenerlo da mostrare il tuo annuncio di directory"
|
218 |
|
219 |
# @ secure_wp
|
220 |
-
#: secure-wordpress.php:
|
221 |
-
msgid "
|
222 |
-
msgstr "
|
223 |
|
224 |
# @ secure_wp
|
225 |
-
|
226 |
-
|
227 |
-
|
|
|
228 |
|
229 |
# @ secure_wp
|
230 |
-
|
231 |
-
|
232 |
-
|
|
|
233 |
|
234 |
# @ secure_wp
|
235 |
-
|
236 |
-
|
237 |
-
|
|
|
238 |
|
239 |
# @ secure_wp
|
240 |
-
|
241 |
-
|
242 |
-
|
|
|
|
|
|
|
|
|
|
|
243 |
|
244 |
# @ secure_wp
|
245 |
-
#: secure-wordpress.php:
|
246 |
-
msgid "
|
247 |
-
msgstr "
|
248 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Secure WordPress in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-05-16 12:34+0100\n"
|
6 |
+
"PO-Revision-Date: 2010-10-16 21:29+0100\n"
|
7 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
8 |
"Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-Language: Italian\n"
|
14 |
"X-Poedit-Country: ITALY\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
|
|
17 |
"X-Textdomain-Support: yes\n"
|
|
|
18 |
|
19 |
+
#. translators: plugin header field 'Description'
|
20 |
+
#: secure-wordpress.php:0
|
21 |
+
msgid "Little basics for secure your WordPress-installation."
|
22 |
+
msgstr "Info di base per mettere in sicurezza la tua installazione di WordPress."
|
23 |
+
|
24 |
+
#: secure-wordpress.php:365
|
25 |
msgid "Settings"
|
26 |
msgstr "Impostazioni"
|
27 |
|
28 |
# @ secure_wp
|
29 |
+
#: secure-wordpress.php:394
|
30 |
+
#: secure-wordpress.php:441
|
31 |
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
32 |
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentazione</a>"
|
33 |
|
34 |
# @ secure_wp
|
35 |
+
#: secure-wordpress.php:417
|
36 |
msgid "Options update."
|
37 |
msgstr "Le opzioni sono state aggiornate."
|
38 |
|
39 |
# @ secure_wp
|
40 |
+
#: secure-wordpress.php:419
|
41 |
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
42 |
msgstr "Sono state cancellate tutte le informazioni contenute nel database. Ora puoi disattivare il plugin."
|
43 |
|
44 |
# @ secure_wp
|
45 |
+
#: secure-wordpress.php:433
|
46 |
+
#: secure-wordpress.php:444
|
47 |
msgid "Secure WP"
|
48 |
msgstr "Secure WP"
|
49 |
|
50 |
# @ secure_wp
|
51 |
+
#. translators: plugin header field 'Name'
|
52 |
+
#: secure-wordpress.php:0
|
53 |
+
#: secure-wordpress.php:440
|
54 |
+
#: secure-wordpress.php:751
|
55 |
msgid "Secure WordPress"
|
56 |
msgstr "Secure WordPress"
|
57 |
|
58 |
+
#: secure-wordpress.php:464
|
59 |
msgid "Version"
|
60 |
msgstr "Versione"
|
61 |
|
62 |
# @ secure_wp
|
63 |
+
#: secure-wordpress.php:464
|
64 |
msgid "History"
|
65 |
msgstr "Storico"
|
66 |
|
67 |
+
#: secure-wordpress.php:464
|
68 |
msgid "Author"
|
69 |
msgstr "Autore"
|
70 |
|
71 |
# @ secure_wp
|
72 |
+
#: secure-wordpress.php:676
|
73 |
msgid "Options not updated - you don‘t have the privileges to do this!"
|
74 |
msgstr "Le opzioni non sono state aggiornate - non hai i permessi per poter operare queste modifiche!"
|
75 |
|
76 |
# @ secure_wp
|
77 |
+
#: secure-wordpress.php:696
|
78 |
msgid "Entries were not deleted - you don‘t have the privileges to do this!"
|
79 |
msgstr "Le informazioni non sono state cancellate - non hai i permessi per poter operare queste modifiche!"
|
80 |
|
81 |
# @ secure_wp
|
82 |
+
#: secure-wordpress.php:704
|
83 |
msgid "Entries were not deleted - check the checkbox!"
|
84 |
msgstr "Le informazioni non sono state cancellate - verifica la casella di selezione!"
|
85 |
|
86 |
# @ secure_wp
|
87 |
+
#: secure-wordpress.php:724
|
88 |
msgid "All entries in the database were cleared."
|
89 |
msgstr "Sono state cancellate tutte le informazioni contenute nel database."
|
90 |
|
91 |
# @ secure_wp
|
92 |
+
#: secure-wordpress.php:728
|
93 |
msgid "Entries were not deleted - check the checkbox or you don‘t have the privileges to do this!"
|
94 |
msgstr "Le informazioni non sono state cancellate - verifica la casella di selezione oppure potresti non avere i permessi per poter operare queste modifiche!"
|
95 |
|
96 |
+
#: secure-wordpress.php:756
|
97 |
+
#: secure-wordpress.php:892
|
98 |
+
#: secure-wordpress.php:1005
|
99 |
+
#: secure-wordpress.php:1119
|
100 |
msgid "Click to toggle"
|
101 |
msgstr "Clicca per commutare"
|
102 |
|
103 |
# @ secure_wp
|
104 |
+
#: secure-wordpress.php:757
|
105 |
msgid "Configuration"
|
106 |
msgstr "Configurazione"
|
107 |
|
108 |
# @ secure_wp
|
109 |
+
#: secure-wordpress.php:767
|
110 |
msgid "Error-Messages"
|
111 |
msgstr "Messaggi di errore"
|
112 |
|
113 |
# @ secure_wp
|
114 |
+
#: secure-wordpress.php:771
|
115 |
+
msgid "Deactivates tooltip and error message at login of WordPress"
|
116 |
+
msgstr "disattiva i suggerimenti ed il messaggio di errore durante il login a WordPress"
|
117 |
+
|
118 |
+
# @ secure_wp
|
119 |
+
#: secure-wordpress.php:777
|
120 |
msgid "WordPress Version"
|
121 |
msgstr "Versione WordPress"
|
122 |
|
123 |
# @ secure_wp
|
124 |
+
#: secure-wordpress.php:781
|
125 |
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
126 |
msgstr "Rimuove da tutte le aree la versione di WordPress in uso, inclusi i feed: non in amministrazione"
|
127 |
|
128 |
# @ secure_wp
|
129 |
+
#: secure-wordpress.php:787
|
130 |
+
msgid "WordPress Version in Backend"
|
131 |
+
msgstr "Versione WordPres in Backend"
|
132 |
+
|
133 |
+
# @ secure_wp
|
134 |
+
#: secure-wordpress.php:791
|
135 |
+
msgid "Removes version of WordPress on admin-area for non-admins. Show WordPress version of your blog only to users with the rights to edit plugins."
|
136 |
+
msgstr "Rimuove dall'area di amministrazione la versione di WordPress per gli utenti non admin. Mostra la versione di WordPress in uso nel tuo blog solamente per quegli utenti che possono modificare i plugin."
|
137 |
+
|
138 |
+
# @ secure_wp
|
139 |
+
#: secure-wordpress.php:797
|
140 |
+
msgid "index.php"
|
141 |
+
msgstr "index.php"
|
142 |
+
|
143 |
+
# @ secure_wp
|
144 |
+
#: secure-wordpress.php:801
|
145 |
+
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
146 |
+
msgstr "crea un file <code>index.php</code> sotto <code>/plugins/</code> e <code>/themes/</code> per mantenere riservato il contenuto della cartella"
|
147 |
+
|
148 |
+
# @ secure_wp
|
149 |
+
#: secure-wordpress.php:807
|
150 |
msgid "Really Simple Discovery"
|
151 |
msgstr "Really Simple Discovery"
|
152 |
|
153 |
# @ secure_wp
|
154 |
+
#: secure-wordpress.php:811
|
155 |
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
156 |
msgstr "Rimuovi il link Really Simple Discovery in <code>wp_head</code> nel frontend"
|
157 |
|
158 |
# @ secure_wp
|
159 |
+
#: secure-wordpress.php:817
|
160 |
msgid "Windows Live Writer"
|
161 |
msgstr "Windows Live Writer"
|
162 |
|
163 |
# @ secure_wp
|
164 |
+
#: secure-wordpress.php:821
|
165 |
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
166 |
msgstr "Rimuovi il link Windows Live Writer in <code>wp_head</code> nel frontend"
|
167 |
|
168 |
# @ secure_wp
|
169 |
+
#: secure-wordpress.php:827
|
170 |
msgid "Core Update"
|
171 |
msgstr "Aggiornamento core"
|
172 |
|
173 |
# @ secure_wp
|
174 |
+
#: secure-wordpress.php:831
|
175 |
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
176 |
msgstr "Rimuovi gli aggiornamenti del core di WordPress per gli utenti che non sono amministratori. Mostra il messaggio di notifica per una nuova versione di WordPress solamente per gli utenti che possono effettuare l'aggiornamento."
|
177 |
|
178 |
# @ secure_wp
|
179 |
+
#: secure-wordpress.php:837
|
180 |
msgid "Plugin Update"
|
181 |
msgstr "Aggiornamento plugin"
|
182 |
|
183 |
# @ secure_wp
|
184 |
+
#: secure-wordpress.php:841
|
185 |
msgid "Remove the plugin update for non-admins. Show message for a new version of a plugin in the install of your blog only to users with the rights to edit plugins."
|
186 |
msgstr "Rimuovi l'aggiornamento del plugin per gli utenti che non sono amministratori. Mostra il messaggio di notifica per una nuova versione di un plugin solamente per gli utenti che hanno i diritti per poter modificare i plugin."
|
187 |
|
188 |
# @ secure_wp
|
189 |
+
#: secure-wordpress.php:848
|
190 |
msgid "Theme Update"
|
191 |
msgstr "Tema Update"
|
192 |
|
193 |
# @ secure_wp
|
194 |
+
#: secure-wordpress.php:852
|
195 |
msgid "Remove the theme update for non-admins. Show message for a new version of a theme in the install of your blog only to users with the rights to edit themes."
|
196 |
msgstr "Rimuovere l'aggiornamento a tema per i non amministratori. Mostra messaggio per una nuova versione di un tema di installazione del tuo blog solo per gli utenti con i diritti per modificare temi."
|
197 |
|
198 |
# @ secure_wp
|
199 |
+
#: secure-wordpress.php:859
|
200 |
msgid "WP Scanner"
|
201 |
msgstr "WP Scanner"
|
202 |
|
203 |
# @ secure_wp
|
204 |
+
#: secure-wordpress.php:863
|
205 |
msgid "WordPress scanner is a free online resource that blog administrators can use to provide a measure of their wordpress security level. To run wp-scanner check this option and add <code><!-- wpscanner --></code> to your current WordPress template. After this go to <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> and scan your site."
|
206 |
+
msgstr "Scanner WordPress è una risorsa online gratuita che gli amministratori del blog possono utilizzare per fornire una misura della loro livello di sicurezza wordpress. Per eseguire wp-scanner attivare questa opzione ed aggiungere <code><!-- wpscanner --></code> al template in uso di WordPress. Infine, vai a questa pagina <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> ed effettua la scansione del tuo sito."
|
207 |
|
208 |
# @ secure_wp
|
209 |
+
#: secure-wordpress.php:869
|
210 |
+
msgid "Block bad queries"
|
211 |
+
msgstr "Blocco bad queries"
|
212 |
|
213 |
# @ secure_wp
|
214 |
+
#: secure-wordpress.php:873
|
215 |
+
msgid "Protect WordPress against malicious URL requests, read more information at the <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >post from Jeff Starr</a>"
|
216 |
+
msgstr "Proteggi WordPress dalle richieste URL maligne: per ulteriori informazioni vai all'articolo di <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >Jeff Starr</a>"
|
217 |
|
218 |
# @ secure_wp
|
219 |
+
#: secure-wordpress.php:881
|
220 |
+
msgid "Save Changes"
|
221 |
+
msgstr "Salva le modifiche"
|
222 |
|
223 |
+
#: secure-wordpress.php:893
|
224 |
+
msgid "Validate your site with a free malware scan from www.sitesecuritymonitor.com"
|
225 |
+
msgstr "Certifica l'assenza di malware dal tuo sito con una analisi via www.sitesecuritymonitor.com"
|
226 |
+
|
227 |
+
#: secure-wordpress.php:896
|
228 |
+
msgid "Take us for a Test Drive - Free Scan"
|
229 |
+
msgstr "Contattaci per una prova - Analisi gratuita"
|
230 |
+
|
231 |
+
#: secure-wordpress.php:897
|
232 |
+
msgid "We understand you may have questions:"
|
233 |
+
msgstr "E' comprensibile che tu abbia delle domande:"
|
234 |
+
|
235 |
+
#: secure-wordpress.php:898
|
236 |
+
msgid "What does this do for me?"
|
237 |
+
msgstr "Quali vantaggi per me?"
|
238 |
+
|
239 |
+
#: secure-wordpress.php:899
|
240 |
+
msgid "Am I really safe? I need to be sure."
|
241 |
+
msgstr "Sono veramente al sicuro? Vorrei esserne certo!"
|
242 |
+
|
243 |
+
#: secure-wordpress.php:900
|
244 |
+
msgid "Rest Assured, Site Security Monitor has you covered."
|
245 |
+
msgstr "Rest Assured, Site Security Monitor has you covered."
|
246 |
+
|
247 |
+
#: secure-wordpress.php:902
|
248 |
+
msgid "FREE scan looks for malware"
|
249 |
+
msgstr "Analisi GRATUITA ricerca malware"
|
250 |
+
|
251 |
+
#: secure-wordpress.php:903
|
252 |
+
msgid "FREE report of website vulnerabilities found"
|
253 |
+
msgstr "Rapporto GRATUITO vulerabilità sito web rilevate"
|
254 |
+
|
255 |
+
#: secure-wordpress.php:904
|
256 |
+
msgid "No setup, tuning and installation on your site - scan begins immediately"
|
257 |
+
msgstr "Nessuna configurazione, modifica ed installazione nel tuo sito - l'analisi avrà un inizio immediato"
|
258 |
+
|
259 |
+
#: secure-wordpress.php:906
|
260 |
+
msgid "We will deliver to you a detailed malware and web vulnerability report - FREE of charge. You are free to use the report to resolve issues, show your boss that you are clean, or show your clients that the site you built is safe!"
|
261 |
+
msgstr "Ti invieremo un rapporto dettagliato sulla vulnerabilità web e malware - GRATUITO. Utilizza liberamente il rapporto per risolvere i problemi, per mostrare ai tuoi clienti che il sito é sicuro, etc."
|
262 |
+
|
263 |
+
#: secure-wordpress.php:907
|
264 |
+
msgid "** Bonus: You will be able to use the Site Security Monitor \"Safe-Seal\" on your site after the scan - this shows the world that you are malware free!"
|
265 |
+
msgstr "** Bonus: una volta effettuata l'analisi, avrai la possibilità di utilizzare nel tuo sito il sigillo \"Safe-Seal\" - questi mostrerà a tutti che il tuo sito é esente da malware!"
|
266 |
+
|
267 |
+
#: secure-wordpress.php:909
|
268 |
+
msgid "The form"
|
269 |
+
msgstr "Il modulo"
|
270 |
+
|
271 |
+
#: secure-wordpress.php:910
|
272 |
+
msgid "Use the follow form or use it on <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">our website</a>."
|
273 |
+
msgstr "Use the follow form or use it on <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">our website</a>."
|
274 |
+
|
275 |
+
#: secure-wordpress.php:945
|
276 |
+
msgid "Full Name"
|
277 |
+
msgstr "Nome completo"
|
278 |
+
|
279 |
+
#: secure-wordpress.php:948
|
280 |
+
#: secure-wordpress.php:956
|
281 |
+
#: secure-wordpress.php:964
|
282 |
+
#: secure-wordpress.php:972
|
283 |
+
#: secure-wordpress.php:988
|
284 |
+
msgid "*required"
|
285 |
+
msgstr "*richiesto"
|
286 |
+
|
287 |
+
#: secure-wordpress.php:953
|
288 |
+
msgid "eMail Adress"
|
289 |
+
msgstr "Indirizzo email"
|
290 |
+
|
291 |
+
#: secure-wordpress.php:956
|
292 |
+
msgid ", eMail Address must match domain name"
|
293 |
+
msgstr ", l'indirizzo email deve coincidere con il nome del dominio"
|
294 |
+
|
295 |
+
#: secure-wordpress.php:961
|
296 |
+
msgid "Website"
|
297 |
+
msgstr "Sito web"
|
298 |
+
|
299 |
+
#: secure-wordpress.php:969
|
300 |
+
msgid "Phone"
|
301 |
+
msgstr "Telefono"
|
302 |
+
|
303 |
+
#: secure-wordpress.php:977
|
304 |
+
msgid "Yes, I need help!"
|
305 |
+
msgstr "Sì, mi serve aiuto!"
|
306 |
+
|
307 |
+
#: secure-wordpress.php:980
|
308 |
+
msgid "Call me"
|
309 |
+
msgstr "Chiama"
|
310 |
+
|
311 |
+
#: secure-wordpress.php:985
|
312 |
+
msgid "Terms and Conditions"
|
313 |
+
msgstr "Condizioni e termini"
|
314 |
+
|
315 |
+
#: secure-wordpress.php:988
|
316 |
+
msgid ", I accept"
|
317 |
+
msgstr ", accetto"
|
318 |
+
|
319 |
+
#: secure-wordpress.php:995
|
320 |
+
msgid "Get my Free Web Scan"
|
321 |
+
msgstr "Analisi web gratuita"
|
322 |
+
|
323 |
+
#: secure-wordpress.php:1006
|
324 |
+
msgid "Safe Seal"
|
325 |
+
msgstr "Safe Seal"
|
326 |
+
|
327 |
+
#: secure-wordpress.php:1036
|
328 |
+
msgid "Color"
|
329 |
+
msgstr "Colore"
|
330 |
+
|
331 |
+
#: secure-wordpress.php:1040
|
332 |
+
msgid "Green"
|
333 |
+
msgstr "Verde"
|
334 |
+
|
335 |
+
#: secure-wordpress.php:1041
|
336 |
+
msgid "Blue"
|
337 |
+
msgstr "Blu"
|
338 |
+
|
339 |
+
#: secure-wordpress.php:1042
|
340 |
+
msgid "Red"
|
341 |
+
msgstr "Rosso"
|
342 |
+
|
343 |
+
#: secure-wordpress.php:1043
|
344 |
+
msgid "Brown"
|
345 |
+
msgstr "Marrone"
|
346 |
+
|
347 |
+
#: secure-wordpress.php:1044
|
348 |
+
msgid "Gray"
|
349 |
+
msgstr "Verde"
|
350 |
+
|
351 |
+
#: secure-wordpress.php:1053
|
352 |
+
msgid "Text"
|
353 |
+
msgstr "Testo"
|
354 |
+
|
355 |
+
#: secure-wordpress.php:1057
|
356 |
+
msgid "Protected"
|
357 |
+
msgstr "Protetto"
|
358 |
|
359 |
# @ secure_wp
|
360 |
+
#: secure-wordpress.php:1058
|
361 |
+
msgid "Secured"
|
362 |
+
msgstr "In sicurezza"
|
363 |
|
364 |
# @ secure_wp
|
365 |
+
#: secure-wordpress.php:1059
|
366 |
+
msgid "Scanned"
|
367 |
+
msgstr "Analizzato"
|
368 |
+
|
369 |
+
#: secure-wordpress.php:1060
|
370 |
+
msgid "Protected by"
|
371 |
+
msgstr "Protetto da"
|
372 |
+
|
373 |
+
#: secure-wordpress.php:1066
|
374 |
+
msgid "Orientation"
|
375 |
+
msgstr "Orientamento"
|
376 |
+
|
377 |
+
#: secure-wordpress.php:1070
|
378 |
+
msgid "Horizontal"
|
379 |
+
msgstr "Orizzontale"
|
380 |
+
|
381 |
+
#: secure-wordpress.php:1071
|
382 |
+
msgid "Vertical"
|
383 |
+
msgstr "Verticale"
|
384 |
+
|
385 |
+
#: secure-wordpress.php:1077
|
386 |
+
msgid "Image border"
|
387 |
+
msgstr "Bordo immagine"
|
388 |
+
|
389 |
+
#: secure-wordpress.php:1085
|
390 |
+
msgid "Language"
|
391 |
+
msgstr "Lingua"
|
392 |
+
|
393 |
+
#: secure-wordpress.php:1089
|
394 |
+
msgid "English (US)"
|
395 |
+
msgstr "Inglese (US)"
|
396 |
+
|
397 |
+
#: secure-wordpress.php:1090
|
398 |
+
msgid "English (UK)"
|
399 |
+
msgstr "Inglese (UK)"
|
400 |
+
|
401 |
+
#: secure-wordpress.php:1091
|
402 |
+
msgid "Spanish"
|
403 |
+
msgstr "Spagnolo"
|
404 |
+
|
405 |
+
#: secure-wordpress.php:1092
|
406 |
+
msgid "German"
|
407 |
+
msgstr "Tedesco"
|
408 |
+
|
409 |
+
#: secure-wordpress.php:1093
|
410 |
+
msgid "Italian"
|
411 |
+
msgstr "Italiano"
|
412 |
+
|
413 |
+
#: secure-wordpress.php:1094
|
414 |
+
msgid "Japanese"
|
415 |
+
msgstr "Giapponese"
|
416 |
+
|
417 |
+
#: secure-wordpress.php:1095
|
418 |
+
msgid "Chinese (Simplified)"
|
419 |
+
msgstr "Cinese (Semplificato)"
|
420 |
+
|
421 |
+
#: secure-wordpress.php:1096
|
422 |
+
msgid "Chinese (Traditional)"
|
423 |
+
msgstr "Cinese (Tradizionale)"
|
424 |
+
|
425 |
+
#: secure-wordpress.php:1105
|
426 |
+
msgid "Here is your generated code. Place it on your website (as html widget) to show that you are protected."
|
427 |
+
msgstr "Ecco il tuo codice personale. Inseriscilo nel tuo sito (copia l'HTML in un widget di testo) per mostrare che é protetto."
|
428 |
|
429 |
# @ secure_wp
|
430 |
+
#: secure-wordpress.php:1120
|
431 |
+
msgid "Clear Options"
|
432 |
+
msgstr "Rimuovi le opzioni"
|
433 |
|
434 |
# @ secure_wp
|
435 |
+
#: secure-wordpress.php:1123
|
436 |
+
msgid "Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created."
|
437 |
+
msgstr "Clicca su questo pulsante per cancellare le impostazioni di questo plugin. La disattivazione Secure WordPress rimuoverà ogni dato che é stato creato."
|
|
|
|
|
438 |
|
439 |
# @ secure_wp
|
440 |
+
#: secure-wordpress.php:1128
|
441 |
+
msgid "Delete Options"
|
442 |
+
msgstr "Opzioni rimozione"
|
443 |
|
444 |
# @ secure_wp
|
445 |
+
#. translators: plugin header field 'PluginURI'
|
446 |
+
#: secure-wordpress.php:0
|
447 |
+
msgid "http://www.sitesecuritymonitor.com/secure-wordpress-plugin"
|
448 |
+
msgstr "http://www.sitesecuritymonitor.com/secure-wordpress-plugin"
|
449 |
|
450 |
# @ secure_wp
|
451 |
+
#. translators: plugin header field 'Author'
|
452 |
+
#: secure-wordpress.php:0
|
453 |
+
msgid "jremillard"
|
454 |
+
msgstr "jremillard"
|
455 |
|
456 |
# @ secure_wp
|
457 |
+
#. translators: plugin header field 'AuthorURI'
|
458 |
+
#: secure-wordpress.php:0
|
459 |
+
msgid "http://www.sitesecuritymonitor.com/"
|
460 |
+
msgstr "http://www.sitesecuritymonitor.com/"
|
461 |
|
462 |
# @ secure_wp
|
463 |
+
#. translators: plugin header field 'Version'
|
464 |
+
#: secure-wordpress.php:0
|
465 |
+
msgid "1.0.3"
|
466 |
+
msgstr "1.0.3"
|
467 |
+
|
468 |
+
#: secure-wordpress.php:1009
|
469 |
+
msgid "Thankyou for using our plugin! You are free to use the scan below (outputs HTML for easy copy-pasting) into your blog. This seal does not give you scanning services - it simple does the basics of wordpress security - as recommended by the community and our own experiences with our customers.<br/>Should you wish to get regular vulnerability and malware scanning services, please <a href=\"http://www.sitesecuritymonitor.com/wordpress-secure-plugin/\">see our main page here...</a>"
|
470 |
+
msgstr "Grazie per l'utilizzo del nostro plugin! Puoi usare a tuo piacere nel blog l'analisi qui sotto (copia/incolla il codice HTML). Questo sigillo non ti offrirà i servizi di analisi - compie una funzione di base per la sicurezza di WordPress - come suggerito dalla community e dalla nostra esperienza maturata con i nostri clienti.<br/>Qualora desiderassi ottenere un regolare servizio per l'analisi della vulnerabilità e la scansione dei malware, vai alla <a href=\"http://www.sitesecuritymonitor.com/wordpress-secure-plugin/\">pagina principale...</a> del nostro sito."
|
471 |
|
472 |
# @ secure_wp
|
473 |
+
#: secure-wordpress.php:1104
|
474 |
+
msgid "Source"
|
475 |
+
msgstr "Sorgente"
|
476 |
|
languages/secure_wp-ja.mo
CHANGED
File without changes
|
languages/secure_wp-ja.po
CHANGED
File without changes
|
languages/secure_wp-nl_NL.mo
CHANGED
File without changes
|
languages/secure_wp-nl_NL.po
CHANGED
File without changes
|
languages/secure_wp-pl_PL.mo
CHANGED
File without changes
|
languages/secure_wp-pl_PL.po
CHANGED
File without changes
|
languages/secure_wp-ru_RU.mo
CHANGED
File without changes
|
languages/secure_wp-ru_RU.po
CHANGED
File without changes
|
languages/secure_wp-uk.mo
CHANGED
File without changes
|
languages/secure_wp-uk.po
CHANGED
File without changes
|
languages/secure_wp-zh_CN.mo
CHANGED
File without changes
|
languages/secure_wp-zh_CN.po
CHANGED
File without changes
|
languages/secure_wp.pot
CHANGED
@@ -3,440 +3,531 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Secure WordPress\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2010-05-16 12:34+0100\n"
|
6 |
-
"PO-Revision-Date: 2010-
|
|
|
|
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
|
|
|
11 |
"X-Poedit-SourceCharset: utf-8\n"
|
12 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
-
"X-
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
16 |
|
17 |
-
|
|
|
|
|
18 |
msgid "Little basics for secure your WordPress-installation."
|
19 |
msgstr "Kleine Grundlagen für die Sicherheit deiner WordPress Installation"
|
20 |
|
21 |
-
#: secure-wordpress.php:
|
|
|
22 |
msgid "Settings"
|
23 |
msgstr "Einstellungen"
|
24 |
|
25 |
-
|
26 |
-
#: secure-wordpress.php:
|
27 |
-
|
28 |
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
29 |
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Dokumentation</a>"
|
30 |
|
31 |
-
|
32 |
-
|
33 |
msgid "Options update."
|
34 |
msgstr "Einstellungen aktualisiert."
|
35 |
|
36 |
-
|
37 |
-
|
38 |
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
39 |
msgstr "Alle Einträge in der Datenbank wurden entfernt. Jetzt deaktiviere das Plugin."
|
40 |
|
41 |
-
|
42 |
-
#: secure-wordpress.php:
|
43 |
-
|
44 |
msgid "Secure WP"
|
45 |
msgstr "Secure WP"
|
46 |
|
47 |
-
|
48 |
-
#: secure-wordpress.php:
|
49 |
-
#: secure-wordpress.php:
|
|
|
|
|
50 |
msgid "Secure WordPress"
|
51 |
msgstr "Secure WordPress"
|
52 |
|
53 |
-
#: secure-wordpress.php:
|
|
|
54 |
msgid "Version"
|
55 |
msgstr "Version"
|
56 |
|
57 |
-
|
58 |
-
|
59 |
msgid "History"
|
60 |
msgstr "Historie"
|
61 |
|
62 |
-
#: secure-wordpress.php:
|
|
|
63 |
msgid "Author"
|
64 |
msgstr "Autor"
|
65 |
|
66 |
-
|
67 |
-
|
68 |
msgid "Options not updated - you don‘t have the privileges to do this!"
|
69 |
msgstr "Einstellungen wurden nicht aktualisiert - du hast nicht genügend Rechte dazu!"
|
70 |
|
71 |
-
|
72 |
-
|
73 |
msgid "Entries were not deleted - you don‘t have the privileges to do this!"
|
74 |
msgstr "Einstellungen wurden nicht entfernt - du hast nicht genügend Rechte dazu! "
|
75 |
|
76 |
-
|
77 |
-
|
78 |
msgid "Entries were not deleted - check the checkbox!"
|
79 |
msgstr "Einstellungen wurden nicht entfernt - prüfe dich Checkbox! "
|
80 |
|
81 |
-
|
82 |
-
|
83 |
msgid "All entries in the database were cleared."
|
84 |
msgstr "Alle Einträge in der Datenbank wurden entfernt."
|
85 |
|
86 |
-
|
87 |
-
|
88 |
msgid "Entries were not deleted - check the checkbox or you don‘t have the privileges to do this!"
|
89 |
msgstr "Einstellungen wurden nicht entfernt - prüfe dich Checkbox oder du hast nicht genügend Rechte dazu! "
|
90 |
|
91 |
-
#: secure-wordpress.php:
|
92 |
-
#: secure-wordpress.php:
|
93 |
-
#: secure-wordpress.php:
|
94 |
-
#: secure-wordpress.php:
|
95 |
-
|
96 |
msgid "Click to toggle"
|
97 |
msgstr "Zum umschalten klicken"
|
98 |
|
99 |
-
|
100 |
-
|
101 |
msgid "Configuration"
|
102 |
msgstr "Einstellungen"
|
103 |
|
104 |
-
|
105 |
-
|
106 |
msgid "Error-Messages"
|
107 |
msgstr "Fehler-Meldungen"
|
108 |
|
109 |
-
|
110 |
-
|
111 |
msgid "Deactivates tooltip and error message at login of WordPress"
|
112 |
msgstr "Deaktivert die Hinweis- und Fehlermeldung beim Login von WordPress"
|
113 |
|
114 |
-
|
115 |
-
|
116 |
msgid "WordPress Version"
|
117 |
msgstr "WordPress Version"
|
118 |
|
119 |
-
|
120 |
-
|
121 |
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
122 |
msgstr "Entfernen der Version von WordPress in allen Bereichen, inkl. Feed, nicht im Admin-Bereich"
|
123 |
|
124 |
-
|
125 |
-
|
126 |
msgid "WordPress Version in Backend"
|
127 |
msgstr "WordPress Version im Administrationsbereich"
|
128 |
|
129 |
-
|
130 |
-
|
131 |
msgid "Removes version of WordPress on admin-area for non-admins. Show WordPress version of your blog only to users with the rights to edit plugins."
|
132 |
msgstr "Entfernen der Version von WordPress im Admin-Bereich für Nicht-Administratoren. Die WordPress Version deines Blogs wird ausschließlich Nutzern dargestellt, die die Rechte zum Editieren von Plugins haben."
|
133 |
|
134 |
-
|
135 |
-
|
136 |
msgid "index.php"
|
137 |
msgstr "index.php"
|
138 |
|
139 |
-
|
140 |
-
|
141 |
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
142 |
msgstr "hinterlegt eine <code>index.php</code> in <code>/plugins/</code> und <code>/themes/</code> um das Auslesen des Verzeichnis zu vermeiden "
|
143 |
|
144 |
-
|
145 |
-
|
146 |
msgid "Really Simple Discovery"
|
147 |
msgstr "Really Simple Discovery"
|
148 |
|
149 |
-
|
150 |
-
|
151 |
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
152 |
msgstr "Entfernt den link für Really Simple Discovery im head des Frontend"
|
153 |
|
154 |
-
|
155 |
-
|
156 |
msgid "Windows Live Writer"
|
157 |
msgstr "Windows Live Writer"
|
158 |
|
159 |
-
|
160 |
-
|
161 |
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
162 |
msgstr "Entfernt den link für Windows Live Writer im head des Frontend"
|
163 |
|
164 |
-
|
165 |
-
|
166 |
msgid "Core Update"
|
167 |
msgstr "Core Update"
|
168 |
|
169 |
-
|
170 |
-
|
171 |
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
172 |
msgstr "Deaktiviert das Core-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Plugins haben."
|
173 |
|
174 |
-
|
175 |
-
|
176 |
msgid "Plugin Update"
|
177 |
msgstr "Plugin Update"
|
178 |
|
179 |
-
|
180 |
-
|
181 |
msgid "Remove the plugin update for non-admins. Show message for a new version of a plugin in the install of your blog only to users with the rights to edit plugins."
|
182 |
msgstr "Deaktiviert das Plugin-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress zu Plugins wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Plugins haben."
|
183 |
|
184 |
-
|
185 |
-
|
186 |
msgid "Theme Update"
|
187 |
msgstr "Theme Update"
|
188 |
|
189 |
-
|
190 |
-
|
191 |
msgid "Remove the theme update for non-admins. Show message for a new version of a theme in the install of your blog only to users with the rights to edit themes."
|
192 |
msgstr "Deaktiviert das Theme-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress zum Theme wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Themes haben."
|
193 |
|
194 |
-
|
195 |
-
|
196 |
msgid "WP Scanner"
|
197 |
msgstr "WP Scanner"
|
198 |
|
199 |
-
|
200 |
-
|
201 |
msgid "WordPress scanner is a free online resource that blog administrators can use to provide a measure of their wordpress security level. To run wp-scanner check this option and add <code><!-- wpscanner --></code> to your current WordPress template. After this go to <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> and scan your site."
|
202 |
msgstr "Der WordPress Scanner ist eine freie online Resource für Blog-Administratoren um die Sicherheit der WordPress Installation über das Frontend zu prüfen. Um den Scanner zu nutzen, aktivere die Checkbox und es wird der String <code><!-- wpscanner --></code> im aktuell verwendeten Theme eingefügt. Danach besuche den Online-Scanner unter <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> und prüfe deine Site."
|
203 |
|
204 |
-
|
205 |
-
|
206 |
msgid "Block bad queries"
|
207 |
msgstr "Blocke negative Abfragen"
|
208 |
|
209 |
-
|
210 |
-
|
211 |
msgid "Protect WordPress against malicious URL requests, read more information at the <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >post from Jeff Starr</a>"
|
212 |
msgstr "WordPress gegen bösartige URL-Anforderungen schützen, mehr Informationen gibt es im <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >Beitrag von Jeff Starr</a>"
|
213 |
|
214 |
-
|
215 |
-
|
216 |
msgid "Save Changes"
|
217 |
msgstr "Einstellungen aktualisieren"
|
218 |
|
219 |
-
#: secure-wordpress.php:
|
|
|
220 |
msgid "Validate your site with a free malware scan from www.sitesecuritymonitor.com"
|
221 |
msgstr "Überprüfe deine Seite mit einem freien Malware-Scan von www.sitesecuritymonitor.com"
|
222 |
|
223 |
-
#: secure-wordpress.php:
|
|
|
224 |
msgid "Take us for a Test Drive - Free Scan"
|
225 |
msgstr "Nutze uns für eine Probefahrt - freier Scan"
|
226 |
|
227 |
-
#: secure-wordpress.php:
|
|
|
228 |
msgid "We understand you may have questions:"
|
229 |
msgstr "Wie verstehen, dass du Fragen hast:"
|
230 |
|
231 |
-
#: secure-wordpress.php:
|
|
|
232 |
msgid "What does this do for me?"
|
233 |
msgstr "Was bedeutet der Scan für mich?"
|
234 |
|
235 |
-
#: secure-wordpress.php:
|
|
|
236 |
msgid "Am I really safe? I need to be sure."
|
237 |
msgstr "Bin ich wirklich sicher? Ich muss sicher sein."
|
238 |
|
239 |
-
#: secure-wordpress.php:
|
|
|
240 |
msgid "Rest Assured, Site Security Monitor has you covered."
|
241 |
msgstr "Sei dir sicher, Site Security Monitor ist sicher."
|
242 |
|
243 |
-
#: secure-wordpress.php:
|
|
|
244 |
msgid "FREE scan looks for malware"
|
245 |
msgstr "FREIER scan um Malware zu finden"
|
246 |
|
247 |
-
#: secure-wordpress.php:
|
|
|
248 |
msgid "FREE report of website vulnerabilities found"
|
249 |
msgstr "FREIE Auswertung der gefundenen Schwachstellen auf einer Webseite"
|
250 |
|
251 |
-
#: secure-wordpress.php:
|
|
|
252 |
msgid "No setup, tuning and installation on your site - scan begins immediately"
|
253 |
msgstr "Keine Einrichtung, keine Anpassunge und Installationen auf deiner Site - der Scan kann sofort starten"
|
254 |
|
255 |
-
#: secure-wordpress.php:
|
|
|
256 |
msgid "We will deliver to you a detailed malware and web vulnerability report - FREE of charge. You are free to use the report to resolve issues, show your boss that you are clean, or show your clients that the site you built is safe!"
|
257 |
msgstr "Wir liefern einen detaillierten Bericht zu Schwachstellen und Malware (Schadprogrammen) - kostenlos. Du kannst entscheiden, wie du den Bericht verwendest um Probleme zu lösen, es werden Hinweise zum Problem gegeben. Zeigen den anderen, dass die Site sauber und sicher ist."
|
258 |
|
259 |
-
#: secure-wordpress.php:
|
|
|
260 |
msgid "** Bonus: You will be able to use the Site Security Monitor \"Safe-Seal\" on your site after the scan - this shows the world that you are malware free!"
|
261 |
msgstr "** Bonus: Du kannst das Site Security Monitor \"Safe-Seal\" in deine Site integrieren - zeige der Welt, dass du frei von Malware bist."
|
262 |
|
263 |
-
#: secure-wordpress.php:
|
|
|
264 |
msgid "The form"
|
265 |
msgstr "Das Formular"
|
266 |
|
267 |
-
#: secure-wordpress.php:
|
|
|
268 |
msgid "Use the follow form or use it on <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">our website</a>."
|
269 |
msgstr "Nutze das Formular oder gehe direkt über <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">unsere Website</a>."
|
270 |
|
271 |
-
#: secure-wordpress.php:
|
|
|
272 |
msgid "Full Name"
|
273 |
msgstr "Name, Vorname"
|
274 |
|
275 |
-
#: secure-wordpress.php:
|
276 |
-
#: secure-wordpress.php:
|
277 |
-
#: secure-wordpress.php:
|
278 |
-
#: secure-wordpress.php:
|
279 |
-
#: secure-wordpress.php:
|
|
|
280 |
msgid "*required"
|
281 |
msgstr "*Pflichtfeld"
|
282 |
|
283 |
-
#: secure-wordpress.php:
|
|
|
284 |
msgid "eMail Adress"
|
285 |
msgstr "E-Mail Adresse"
|
286 |
|
287 |
-
#: secure-wordpress.php:
|
|
|
288 |
msgid ", eMail Address must match domain name"
|
289 |
msgstr ", die E-Mail Adresse muss den Domain-Namen enthalten"
|
290 |
|
291 |
-
#: secure-wordpress.php:
|
|
|
292 |
msgid "Website"
|
293 |
msgstr "Website"
|
294 |
|
295 |
-
#: secure-wordpress.php:
|
|
|
296 |
msgid "Phone"
|
297 |
msgstr "Telefon"
|
298 |
|
299 |
-
#: secure-wordpress.php:
|
|
|
300 |
msgid "Yes, I need help!"
|
301 |
msgstr "Ja, ich brauche Hilfe!"
|
302 |
|
303 |
-
#: secure-wordpress.php:
|
|
|
304 |
msgid "Call me"
|
305 |
msgstr "Rufe mich an"
|
306 |
|
307 |
-
#: secure-wordpress.php:
|
|
|
308 |
msgid "Terms and Conditions"
|
309 |
msgstr "Allgemeine Geschäftsbedingungen"
|
310 |
|
311 |
-
#: secure-wordpress.php:
|
|
|
312 |
msgid ", I accept"
|
313 |
msgstr ", ich akzeptiere"
|
314 |
|
315 |
-
#: secure-wordpress.php:
|
|
|
316 |
msgid "Get my Free Web Scan"
|
317 |
msgstr "Starte meinen freien Web-Scan"
|
318 |
|
319 |
-
#: secure-wordpress.php:
|
|
|
320 |
msgid "Safe Seal"
|
321 |
msgstr "Safe Seal"
|
322 |
|
323 |
-
#: secure-wordpress.php:
|
324 |
-
|
325 |
-
msgstr "Vielen Dank für das Nutzen unseres Scans. Es steht dir frei einen Hinweis auf den Scan in deiner Site zu hinterlegen (Ausgabe als HTML für einfaches Kopieren/Einfügen). Das Zeichen gibt dir keine Sicherheit - es ist einfach die Basis der WordPress Sicherheit - es ist ein Beitrag zu unseren eigenen Erfahrungen und der, der Community.<br/>Möchtestdu regelmäßig einen Scan erhalten, dann besuche <a href=\"http://www.sitesecuritymonitor.com/wordpress-secure-plugin/\">unsere Site für weitere Informationen</a>."
|
326 |
-
|
327 |
-
#: secure-wordpress.php:1020
|
328 |
msgid "Color"
|
329 |
msgstr "Farbe"
|
330 |
|
331 |
-
#: secure-wordpress.php:
|
|
|
332 |
msgid "Green"
|
333 |
msgstr "Grün"
|
334 |
|
335 |
-
#: secure-wordpress.php:
|
|
|
336 |
msgid "Blue"
|
337 |
msgstr "Blau"
|
338 |
|
339 |
-
#: secure-wordpress.php:
|
|
|
340 |
msgid "Red"
|
341 |
msgstr "Rot"
|
342 |
|
343 |
-
#: secure-wordpress.php:
|
|
|
344 |
msgid "Brown"
|
345 |
msgstr "Braun"
|
346 |
|
347 |
-
#: secure-wordpress.php:
|
|
|
348 |
msgid "Gray"
|
349 |
msgstr "Grau"
|
350 |
|
351 |
-
#: secure-wordpress.php:
|
|
|
352 |
msgid "Text"
|
353 |
msgstr "Text"
|
354 |
|
355 |
-
#: secure-wordpress.php:
|
|
|
356 |
msgid "Protected"
|
357 |
msgstr "Geschützt"
|
358 |
|
359 |
-
|
360 |
-
|
361 |
msgid "Secured"
|
362 |
msgstr "Sicher"
|
363 |
|
364 |
-
|
365 |
-
|
366 |
msgid "Scanned"
|
367 |
msgstr "Gescannt"
|
368 |
|
369 |
-
#: secure-wordpress.php:
|
|
|
370 |
msgid "Protected by"
|
371 |
msgstr "Geschützt durch"
|
372 |
|
373 |
-
#: secure-wordpress.php:
|
|
|
374 |
msgid "Orientation"
|
375 |
msgstr "Orientierung"
|
376 |
|
377 |
-
#: secure-wordpress.php:
|
|
|
378 |
msgid "Horizontal"
|
379 |
msgstr "Horizontal"
|
380 |
|
381 |
-
#: secure-wordpress.php:
|
|
|
382 |
msgid "Vertical"
|
383 |
msgstr "Vertical"
|
384 |
|
385 |
-
#: secure-wordpress.php:
|
|
|
386 |
msgid "Image border"
|
387 |
msgstr "Bilder-Rahmen"
|
388 |
|
389 |
-
#: secure-wordpress.php:
|
|
|
390 |
msgid "Language"
|
391 |
msgstr "Sprache"
|
392 |
|
393 |
-
#: secure-wordpress.php:
|
|
|
394 |
msgid "English (US)"
|
395 |
msgstr "Englisch (US)"
|
396 |
|
397 |
-
#: secure-wordpress.php:
|
|
|
398 |
msgid "English (UK)"
|
399 |
msgstr "Englisch (UK)"
|
400 |
|
401 |
-
#: secure-wordpress.php:
|
|
|
402 |
msgid "Spanish"
|
403 |
msgstr "Spanisch"
|
404 |
|
405 |
-
#: secure-wordpress.php:
|
|
|
406 |
msgid "German"
|
407 |
msgstr "Deutsch"
|
408 |
|
409 |
-
#: secure-wordpress.php:
|
|
|
410 |
msgid "Italian"
|
411 |
msgstr "Italienisch"
|
412 |
|
413 |
-
#: secure-wordpress.php:
|
|
|
414 |
msgid "Japanese"
|
415 |
msgstr "Japanisch"
|
416 |
|
417 |
-
#: secure-wordpress.php:
|
|
|
418 |
msgid "Chinese (Simplified)"
|
419 |
msgstr "Chinesisch (Einfach)"
|
420 |
|
421 |
-
#: secure-wordpress.php:
|
|
|
422 |
msgid "Chinese (Traditional)"
|
423 |
msgstr "Chinesisch (Traditonell)"
|
424 |
|
425 |
-
#: secure-wordpress.php:
|
|
|
426 |
msgid "Here is your generated code. Place it on your website (as html widget) to show that you are protected."
|
427 |
msgstr "Hier ist der erstellte Code, platziere in ihn in deiner Site (als HTML Widget) um zu zeigen, dass du geschützt bist."
|
428 |
|
429 |
-
|
430 |
-
|
431 |
msgid "Clear Options"
|
432 |
msgstr "Einstellungen löschen"
|
433 |
|
434 |
-
|
435 |
-
|
436 |
msgid "Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created."
|
437 |
msgstr "Nutze diese Möglichkeit um alle Einstellungen des Plugins in der Datenbank zu löschen. Das Plugin löscht ebenfalls alle Einstellungen wenn du es deaktivierst oder aus dem Backend heraus entfernst."
|
438 |
|
439 |
-
|
440 |
-
|
441 |
msgid "Delete Options"
|
442 |
msgstr "Einstellungen löschen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
"Project-Id-Version: Secure WordPress\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2010-05-16 12:34+0100\n"
|
6 |
+
"PO-Revision-Date: 2010-07-09 13:20+0100\n"
|
7 |
+
"Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: \n"
|
14 |
+
"X-Poedit-Country: \n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#. translators: plugin header field 'Description'
|
23 |
+
#: secure-wordpress.php:0
|
24 |
+
#@ secure_wp
|
25 |
msgid "Little basics for secure your WordPress-installation."
|
26 |
msgstr "Kleine Grundlagen für die Sicherheit deiner WordPress Installation"
|
27 |
|
28 |
+
#: secure-wordpress.php:365
|
29 |
+
#@ default
|
30 |
msgid "Settings"
|
31 |
msgstr "Einstellungen"
|
32 |
|
33 |
+
#: secure-wordpress.php:394
|
34 |
+
#: secure-wordpress.php:441
|
35 |
+
#@ secure_wp
|
36 |
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
37 |
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Dokumentation</a>"
|
38 |
|
39 |
+
#: secure-wordpress.php:417
|
40 |
+
#@ secure_wp
|
41 |
msgid "Options update."
|
42 |
msgstr "Einstellungen aktualisiert."
|
43 |
|
44 |
+
#: secure-wordpress.php:419
|
45 |
+
#@ secure_wp
|
46 |
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
47 |
msgstr "Alle Einträge in der Datenbank wurden entfernt. Jetzt deaktiviere das Plugin."
|
48 |
|
49 |
+
#: secure-wordpress.php:433
|
50 |
+
#: secure-wordpress.php:444
|
51 |
+
#@ secure_wp
|
52 |
msgid "Secure WP"
|
53 |
msgstr "Secure WP"
|
54 |
|
55 |
+
#. translators: plugin header field 'Name'
|
56 |
+
#: secure-wordpress.php:0
|
57 |
+
#: secure-wordpress.php:440
|
58 |
+
#: secure-wordpress.php:751
|
59 |
+
#@ secure_wp
|
60 |
msgid "Secure WordPress"
|
61 |
msgstr "Secure WordPress"
|
62 |
|
63 |
+
#: secure-wordpress.php:464
|
64 |
+
#@ default
|
65 |
msgid "Version"
|
66 |
msgstr "Version"
|
67 |
|
68 |
+
#: secure-wordpress.php:464
|
69 |
+
#@ secure_wp
|
70 |
msgid "History"
|
71 |
msgstr "Historie"
|
72 |
|
73 |
+
#: secure-wordpress.php:464
|
74 |
+
#@ default
|
75 |
msgid "Author"
|
76 |
msgstr "Autor"
|
77 |
|
78 |
+
#: secure-wordpress.php:676
|
79 |
+
#@ secure_wp
|
80 |
msgid "Options not updated - you don‘t have the privileges to do this!"
|
81 |
msgstr "Einstellungen wurden nicht aktualisiert - du hast nicht genügend Rechte dazu!"
|
82 |
|
83 |
+
#: secure-wordpress.php:696
|
84 |
+
#@ secure_wp
|
85 |
msgid "Entries were not deleted - you don‘t have the privileges to do this!"
|
86 |
msgstr "Einstellungen wurden nicht entfernt - du hast nicht genügend Rechte dazu! "
|
87 |
|
88 |
+
#: secure-wordpress.php:704
|
89 |
+
#@ secure_wp
|
90 |
msgid "Entries were not deleted - check the checkbox!"
|
91 |
msgstr "Einstellungen wurden nicht entfernt - prüfe dich Checkbox! "
|
92 |
|
93 |
+
#: secure-wordpress.php:724
|
94 |
+
#@ secure_wp
|
95 |
msgid "All entries in the database were cleared."
|
96 |
msgstr "Alle Einträge in der Datenbank wurden entfernt."
|
97 |
|
98 |
+
#: secure-wordpress.php:728
|
99 |
+
#@ secure_wp
|
100 |
msgid "Entries were not deleted - check the checkbox or you don‘t have the privileges to do this!"
|
101 |
msgstr "Einstellungen wurden nicht entfernt - prüfe dich Checkbox oder du hast nicht genügend Rechte dazu! "
|
102 |
|
103 |
+
#: secure-wordpress.php:756
|
104 |
+
#: secure-wordpress.php:892
|
105 |
+
#: secure-wordpress.php:1005
|
106 |
+
#: secure-wordpress.php:1119
|
107 |
+
#@ default
|
108 |
msgid "Click to toggle"
|
109 |
msgstr "Zum umschalten klicken"
|
110 |
|
111 |
+
#: secure-wordpress.php:757
|
112 |
+
#@ secure_wp
|
113 |
msgid "Configuration"
|
114 |
msgstr "Einstellungen"
|
115 |
|
116 |
+
#: secure-wordpress.php:767
|
117 |
+
#@ secure_wp
|
118 |
msgid "Error-Messages"
|
119 |
msgstr "Fehler-Meldungen"
|
120 |
|
121 |
+
#: secure-wordpress.php:771
|
122 |
+
#@ secure_wp
|
123 |
msgid "Deactivates tooltip and error message at login of WordPress"
|
124 |
msgstr "Deaktivert die Hinweis- und Fehlermeldung beim Login von WordPress"
|
125 |
|
126 |
+
#: secure-wordpress.php:777
|
127 |
+
#@ secure_wp
|
128 |
msgid "WordPress Version"
|
129 |
msgstr "WordPress Version"
|
130 |
|
131 |
+
#: secure-wordpress.php:781
|
132 |
+
#@ secure_wp
|
133 |
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
134 |
msgstr "Entfernen der Version von WordPress in allen Bereichen, inkl. Feed, nicht im Admin-Bereich"
|
135 |
|
136 |
+
#: secure-wordpress.php:787
|
137 |
+
#@ secure_wp
|
138 |
msgid "WordPress Version in Backend"
|
139 |
msgstr "WordPress Version im Administrationsbereich"
|
140 |
|
141 |
+
#: secure-wordpress.php:791
|
142 |
+
#@ secure_wp
|
143 |
msgid "Removes version of WordPress on admin-area for non-admins. Show WordPress version of your blog only to users with the rights to edit plugins."
|
144 |
msgstr "Entfernen der Version von WordPress im Admin-Bereich für Nicht-Administratoren. Die WordPress Version deines Blogs wird ausschließlich Nutzern dargestellt, die die Rechte zum Editieren von Plugins haben."
|
145 |
|
146 |
+
#: secure-wordpress.php:797
|
147 |
+
#@ secure_wp
|
148 |
msgid "index.php"
|
149 |
msgstr "index.php"
|
150 |
|
151 |
+
#: secure-wordpress.php:801
|
152 |
+
#@ secure_wp
|
153 |
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
154 |
msgstr "hinterlegt eine <code>index.php</code> in <code>/plugins/</code> und <code>/themes/</code> um das Auslesen des Verzeichnis zu vermeiden "
|
155 |
|
156 |
+
#: secure-wordpress.php:807
|
157 |
+
#@ secure_wp
|
158 |
msgid "Really Simple Discovery"
|
159 |
msgstr "Really Simple Discovery"
|
160 |
|
161 |
+
#: secure-wordpress.php:811
|
162 |
+
#@ secure_wp
|
163 |
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
164 |
msgstr "Entfernt den link für Really Simple Discovery im head des Frontend"
|
165 |
|
166 |
+
#: secure-wordpress.php:817
|
167 |
+
#@ secure_wp
|
168 |
msgid "Windows Live Writer"
|
169 |
msgstr "Windows Live Writer"
|
170 |
|
171 |
+
#: secure-wordpress.php:821
|
172 |
+
#@ secure_wp
|
173 |
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
174 |
msgstr "Entfernt den link für Windows Live Writer im head des Frontend"
|
175 |
|
176 |
+
#: secure-wordpress.php:827
|
177 |
+
#@ secure_wp
|
178 |
msgid "Core Update"
|
179 |
msgstr "Core Update"
|
180 |
|
181 |
+
#: secure-wordpress.php:831
|
182 |
+
#@ secure_wp
|
183 |
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
184 |
msgstr "Deaktiviert das Core-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Plugins haben."
|
185 |
|
186 |
+
#: secure-wordpress.php:837
|
187 |
+
#@ secure_wp
|
188 |
msgid "Plugin Update"
|
189 |
msgstr "Plugin Update"
|
190 |
|
191 |
+
#: secure-wordpress.php:841
|
192 |
+
#@ secure_wp
|
193 |
msgid "Remove the plugin update for non-admins. Show message for a new version of a plugin in the install of your blog only to users with the rights to edit plugins."
|
194 |
msgstr "Deaktiviert das Plugin-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress zu Plugins wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Plugins haben."
|
195 |
|
196 |
+
#: secure-wordpress.php:848
|
197 |
+
#@ secure_wp
|
198 |
msgid "Theme Update"
|
199 |
msgstr "Theme Update"
|
200 |
|
201 |
+
#: secure-wordpress.php:852
|
202 |
+
#@ secure_wp
|
203 |
msgid "Remove the theme update for non-admins. Show message for a new version of a theme in the install of your blog only to users with the rights to edit themes."
|
204 |
msgstr "Deaktiviert das Theme-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress zum Theme wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Themes haben."
|
205 |
|
206 |
+
#: secure-wordpress.php:859
|
207 |
+
#@ secure_wp
|
208 |
msgid "WP Scanner"
|
209 |
msgstr "WP Scanner"
|
210 |
|
211 |
+
#: secure-wordpress.php:863
|
212 |
+
#@ secure_wp
|
213 |
msgid "WordPress scanner is a free online resource that blog administrators can use to provide a measure of their wordpress security level. To run wp-scanner check this option and add <code><!-- wpscanner --></code> to your current WordPress template. After this go to <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> and scan your site."
|
214 |
msgstr "Der WordPress Scanner ist eine freie online Resource für Blog-Administratoren um die Sicherheit der WordPress Installation über das Frontend zu prüfen. Um den Scanner zu nutzen, aktivere die Checkbox und es wird der String <code><!-- wpscanner --></code> im aktuell verwendeten Theme eingefügt. Danach besuche den Online-Scanner unter <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> und prüfe deine Site."
|
215 |
|
216 |
+
#: secure-wordpress.php:869
|
217 |
+
#@ secure_wp
|
218 |
msgid "Block bad queries"
|
219 |
msgstr "Blocke negative Abfragen"
|
220 |
|
221 |
+
#: secure-wordpress.php:873
|
222 |
+
#@ secure_wp
|
223 |
msgid "Protect WordPress against malicious URL requests, read more information at the <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >post from Jeff Starr</a>"
|
224 |
msgstr "WordPress gegen bösartige URL-Anforderungen schützen, mehr Informationen gibt es im <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >Beitrag von Jeff Starr</a>"
|
225 |
|
226 |
+
#: secure-wordpress.php:881
|
227 |
+
#@ secure_wp
|
228 |
msgid "Save Changes"
|
229 |
msgstr "Einstellungen aktualisieren"
|
230 |
|
231 |
+
#: secure-wordpress.php:893
|
232 |
+
#@ secure_wp
|
233 |
msgid "Validate your site with a free malware scan from www.sitesecuritymonitor.com"
|
234 |
msgstr "Überprüfe deine Seite mit einem freien Malware-Scan von www.sitesecuritymonitor.com"
|
235 |
|
236 |
+
#: secure-wordpress.php:896
|
237 |
+
#@ secure_wp
|
238 |
msgid "Take us for a Test Drive - Free Scan"
|
239 |
msgstr "Nutze uns für eine Probefahrt - freier Scan"
|
240 |
|
241 |
+
#: secure-wordpress.php:897
|
242 |
+
#@ secure_wp
|
243 |
msgid "We understand you may have questions:"
|
244 |
msgstr "Wie verstehen, dass du Fragen hast:"
|
245 |
|
246 |
+
#: secure-wordpress.php:898
|
247 |
+
#@ secure_wp
|
248 |
msgid "What does this do for me?"
|
249 |
msgstr "Was bedeutet der Scan für mich?"
|
250 |
|
251 |
+
#: secure-wordpress.php:899
|
252 |
+
#@ secure_wp
|
253 |
msgid "Am I really safe? I need to be sure."
|
254 |
msgstr "Bin ich wirklich sicher? Ich muss sicher sein."
|
255 |
|
256 |
+
#: secure-wordpress.php:900
|
257 |
+
#@ secure_wp
|
258 |
msgid "Rest Assured, Site Security Monitor has you covered."
|
259 |
msgstr "Sei dir sicher, Site Security Monitor ist sicher."
|
260 |
|
261 |
+
#: secure-wordpress.php:902
|
262 |
+
#@ secure_wp
|
263 |
msgid "FREE scan looks for malware"
|
264 |
msgstr "FREIER scan um Malware zu finden"
|
265 |
|
266 |
+
#: secure-wordpress.php:903
|
267 |
+
#@ secure_wp
|
268 |
msgid "FREE report of website vulnerabilities found"
|
269 |
msgstr "FREIE Auswertung der gefundenen Schwachstellen auf einer Webseite"
|
270 |
|
271 |
+
#: secure-wordpress.php:904
|
272 |
+
#@ secure_wp
|
273 |
msgid "No setup, tuning and installation on your site - scan begins immediately"
|
274 |
msgstr "Keine Einrichtung, keine Anpassunge und Installationen auf deiner Site - der Scan kann sofort starten"
|
275 |
|
276 |
+
#: secure-wordpress.php:906
|
277 |
+
#@ secure_wp
|
278 |
msgid "We will deliver to you a detailed malware and web vulnerability report - FREE of charge. You are free to use the report to resolve issues, show your boss that you are clean, or show your clients that the site you built is safe!"
|
279 |
msgstr "Wir liefern einen detaillierten Bericht zu Schwachstellen und Malware (Schadprogrammen) - kostenlos. Du kannst entscheiden, wie du den Bericht verwendest um Probleme zu lösen, es werden Hinweise zum Problem gegeben. Zeigen den anderen, dass die Site sauber und sicher ist."
|
280 |
|
281 |
+
#: secure-wordpress.php:907
|
282 |
+
#@ secure_wp
|
283 |
msgid "** Bonus: You will be able to use the Site Security Monitor \"Safe-Seal\" on your site after the scan - this shows the world that you are malware free!"
|
284 |
msgstr "** Bonus: Du kannst das Site Security Monitor \"Safe-Seal\" in deine Site integrieren - zeige der Welt, dass du frei von Malware bist."
|
285 |
|
286 |
+
#: secure-wordpress.php:909
|
287 |
+
#@ secure_wp
|
288 |
msgid "The form"
|
289 |
msgstr "Das Formular"
|
290 |
|
291 |
+
#: secure-wordpress.php:910
|
292 |
+
#@ secure_wp
|
293 |
msgid "Use the follow form or use it on <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">our website</a>."
|
294 |
msgstr "Nutze das Formular oder gehe direkt über <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">unsere Website</a>."
|
295 |
|
296 |
+
#: secure-wordpress.php:945
|
297 |
+
#@ secure_wp
|
298 |
msgid "Full Name"
|
299 |
msgstr "Name, Vorname"
|
300 |
|
301 |
+
#: secure-wordpress.php:948
|
302 |
+
#: secure-wordpress.php:956
|
303 |
+
#: secure-wordpress.php:964
|
304 |
+
#: secure-wordpress.php:972
|
305 |
+
#: secure-wordpress.php:988
|
306 |
+
#@ secure_wp
|
307 |
msgid "*required"
|
308 |
msgstr "*Pflichtfeld"
|
309 |
|
310 |
+
#: secure-wordpress.php:953
|
311 |
+
#@ secure_wp
|
312 |
msgid "eMail Adress"
|
313 |
msgstr "E-Mail Adresse"
|
314 |
|
315 |
+
#: secure-wordpress.php:956
|
316 |
+
#@ secure_wp
|
317 |
msgid ", eMail Address must match domain name"
|
318 |
msgstr ", die E-Mail Adresse muss den Domain-Namen enthalten"
|
319 |
|
320 |
+
#: secure-wordpress.php:961
|
321 |
+
#@ secure_wp
|
322 |
msgid "Website"
|
323 |
msgstr "Website"
|
324 |
|
325 |
+
#: secure-wordpress.php:969
|
326 |
+
#@ secure_wp
|
327 |
msgid "Phone"
|
328 |
msgstr "Telefon"
|
329 |
|
330 |
+
#: secure-wordpress.php:977
|
331 |
+
#@ secure_wp
|
332 |
msgid "Yes, I need help!"
|
333 |
msgstr "Ja, ich brauche Hilfe!"
|
334 |
|
335 |
+
#: secure-wordpress.php:980
|
336 |
+
#@ secure_wp
|
337 |
msgid "Call me"
|
338 |
msgstr "Rufe mich an"
|
339 |
|
340 |
+
#: secure-wordpress.php:985
|
341 |
+
#@ secure_wp
|
342 |
msgid "Terms and Conditions"
|
343 |
msgstr "Allgemeine Geschäftsbedingungen"
|
344 |
|
345 |
+
#: secure-wordpress.php:988
|
346 |
+
#@ secure_wp
|
347 |
msgid ", I accept"
|
348 |
msgstr ", ich akzeptiere"
|
349 |
|
350 |
+
#: secure-wordpress.php:995
|
351 |
+
#@ secure_wp
|
352 |
msgid "Get my Free Web Scan"
|
353 |
msgstr "Starte meinen freien Web-Scan"
|
354 |
|
355 |
+
#: secure-wordpress.php:1006
|
356 |
+
#@ secure_wp
|
357 |
msgid "Safe Seal"
|
358 |
msgstr "Safe Seal"
|
359 |
|
360 |
+
#: secure-wordpress.php:1036
|
361 |
+
#@ secure_wp
|
|
|
|
|
|
|
362 |
msgid "Color"
|
363 |
msgstr "Farbe"
|
364 |
|
365 |
+
#: secure-wordpress.php:1040
|
366 |
+
#@ secure_wp
|
367 |
msgid "Green"
|
368 |
msgstr "Grün"
|
369 |
|
370 |
+
#: secure-wordpress.php:1041
|
371 |
+
#@ secure_wp
|
372 |
msgid "Blue"
|
373 |
msgstr "Blau"
|
374 |
|
375 |
+
#: secure-wordpress.php:1042
|
376 |
+
#@ secure_wp
|
377 |
msgid "Red"
|
378 |
msgstr "Rot"
|
379 |
|
380 |
+
#: secure-wordpress.php:1043
|
381 |
+
#@ secure_wp
|
382 |
msgid "Brown"
|
383 |
msgstr "Braun"
|
384 |
|
385 |
+
#: secure-wordpress.php:1044
|
386 |
+
#@ secure_wp
|
387 |
msgid "Gray"
|
388 |
msgstr "Grau"
|
389 |
|
390 |
+
#: secure-wordpress.php:1053
|
391 |
+
#@ secure_wp
|
392 |
msgid "Text"
|
393 |
msgstr "Text"
|
394 |
|
395 |
+
#: secure-wordpress.php:1057
|
396 |
+
#@ secure_wp
|
397 |
msgid "Protected"
|
398 |
msgstr "Geschützt"
|
399 |
|
400 |
+
#: secure-wordpress.php:1058
|
401 |
+
#@ secure_wp
|
402 |
msgid "Secured"
|
403 |
msgstr "Sicher"
|
404 |
|
405 |
+
#: secure-wordpress.php:1059
|
406 |
+
#@ secure_wp
|
407 |
msgid "Scanned"
|
408 |
msgstr "Gescannt"
|
409 |
|
410 |
+
#: secure-wordpress.php:1060
|
411 |
+
#@ secure_wp
|
412 |
msgid "Protected by"
|
413 |
msgstr "Geschützt durch"
|
414 |
|
415 |
+
#: secure-wordpress.php:1066
|
416 |
+
#@ secure_wp
|
417 |
msgid "Orientation"
|
418 |
msgstr "Orientierung"
|
419 |
|
420 |
+
#: secure-wordpress.php:1070
|
421 |
+
#@ secure_wp
|
422 |
msgid "Horizontal"
|
423 |
msgstr "Horizontal"
|
424 |
|
425 |
+
#: secure-wordpress.php:1071
|
426 |
+
#@ secure_wp
|
427 |
msgid "Vertical"
|
428 |
msgstr "Vertical"
|
429 |
|
430 |
+
#: secure-wordpress.php:1077
|
431 |
+
#@ secure_wp
|
432 |
msgid "Image border"
|
433 |
msgstr "Bilder-Rahmen"
|
434 |
|
435 |
+
#: secure-wordpress.php:1085
|
436 |
+
#@ secure_wp
|
437 |
msgid "Language"
|
438 |
msgstr "Sprache"
|
439 |
|
440 |
+
#: secure-wordpress.php:1089
|
441 |
+
#@ secure_wp
|
442 |
msgid "English (US)"
|
443 |
msgstr "Englisch (US)"
|
444 |
|
445 |
+
#: secure-wordpress.php:1090
|
446 |
+
#@ secure_wp
|
447 |
msgid "English (UK)"
|
448 |
msgstr "Englisch (UK)"
|
449 |
|
450 |
+
#: secure-wordpress.php:1091
|
451 |
+
#@ secure_wp
|
452 |
msgid "Spanish"
|
453 |
msgstr "Spanisch"
|
454 |
|
455 |
+
#: secure-wordpress.php:1092
|
456 |
+
#@ secure_wp
|
457 |
msgid "German"
|
458 |
msgstr "Deutsch"
|
459 |
|
460 |
+
#: secure-wordpress.php:1093
|
461 |
+
#@ secure_wp
|
462 |
msgid "Italian"
|
463 |
msgstr "Italienisch"
|
464 |
|
465 |
+
#: secure-wordpress.php:1094
|
466 |
+
#@ secure_wp
|
467 |
msgid "Japanese"
|
468 |
msgstr "Japanisch"
|
469 |
|
470 |
+
#: secure-wordpress.php:1095
|
471 |
+
#@ secure_wp
|
472 |
msgid "Chinese (Simplified)"
|
473 |
msgstr "Chinesisch (Einfach)"
|
474 |
|
475 |
+
#: secure-wordpress.php:1096
|
476 |
+
#@ secure_wp
|
477 |
msgid "Chinese (Traditional)"
|
478 |
msgstr "Chinesisch (Traditonell)"
|
479 |
|
480 |
+
#: secure-wordpress.php:1105
|
481 |
+
#@ secure_wp
|
482 |
msgid "Here is your generated code. Place it on your website (as html widget) to show that you are protected."
|
483 |
msgstr "Hier ist der erstellte Code, platziere in ihn in deiner Site (als HTML Widget) um zu zeigen, dass du geschützt bist."
|
484 |
|
485 |
+
#: secure-wordpress.php:1120
|
486 |
+
#@ secure_wp
|
487 |
msgid "Clear Options"
|
488 |
msgstr "Einstellungen löschen"
|
489 |
|
490 |
+
#: secure-wordpress.php:1123
|
491 |
+
#@ secure_wp
|
492 |
msgid "Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created."
|
493 |
msgstr "Nutze diese Möglichkeit um alle Einstellungen des Plugins in der Datenbank zu löschen. Das Plugin löscht ebenfalls alle Einstellungen wenn du es deaktivierst oder aus dem Backend heraus entfernst."
|
494 |
|
495 |
+
#: secure-wordpress.php:1128
|
496 |
+
#@ secure_wp
|
497 |
msgid "Delete Options"
|
498 |
msgstr "Einstellungen löschen"
|
499 |
+
|
500 |
+
#. translators: plugin header field 'PluginURI'
|
501 |
+
#: secure-wordpress.php:0
|
502 |
+
#@ secure_wp
|
503 |
+
msgid "http://www.sitesecuritymonitor.com/secure-wordpress-plugin"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#. translators: plugin header field 'Author'
|
507 |
+
#: secure-wordpress.php:0
|
508 |
+
#@ secure_wp
|
509 |
+
msgid "jremillard"
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#. translators: plugin header field 'AuthorURI'
|
513 |
+
#: secure-wordpress.php:0
|
514 |
+
#@ secure_wp
|
515 |
+
msgid "http://www.sitesecuritymonitor.com/"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#. translators: plugin header field 'Version'
|
519 |
+
#: secure-wordpress.php:0
|
520 |
+
#@ secure_wp
|
521 |
+
msgid "1.0.3"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: secure-wordpress.php:1009
|
525 |
+
#@ secure_wp
|
526 |
+
msgid "Thankyou for using our plugin! You are free to use the scan below (outputs HTML for easy copy-pasting) into your blog. This seal does not give you scanning services - it simple does the basics of wordpress security - as recommended by the community and our own experiences with our customers.<br/>Should you wish to get regular vulnerability and malware scanning services, please <a href=\"http://www.sitesecuritymonitor.com/wordpress-secure-plugin/\">see our main page here...</a>"
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: secure-wordpress.php:1104
|
530 |
+
#@ secure_wp
|
531 |
+
msgid "Source"
|
532 |
+
msgstr "Quellcode"
|
533 |
+
|
license.txt
CHANGED
File without changes
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: jremillard
|
3 |
Tags: secure, notice, hack, hacked, protection, version, security
|
4 |
Requires at least: 2.6
|
5 |
-
Tested up to: 3.
|
6 |
Stable tag: 0.1
|
7 |
|
8 |
Secure your WordPress Installation with small functions.
|
@@ -21,11 +21,9 @@ Little help to secure your WordPress installation: Remove Error information on l
|
|
21 |
1. hide wp-version in backend-dashboard for non-admins
|
22 |
1. Add string for use [WP Scanner](http://blogsecurity.net/wpscan "WP Scanner")
|
23 |
1. Block bad queries
|
24 |
-
1. Validate your site with a free malware and vulnerabilities scan with [SiteSecurityMonitor.com](http://www.sitesecuritymonitor.com/)
|
25 |
-
|
26 |
|
27 |
= Localizations =
|
28 |
-
Idea, first version and german translation by [Frank Bültge](http://bueltge.de "bueltge.de"), italien translation by [Gianni Diurno](http://gidibao.net/ "gidibao.net"), polish translation by Michal Maciejewski, belorussian file by [Fat Cow](http://www.fatcow.com/ "www.fatcow.com"), ukrainian translation by [AzzePis](http://wordpress.co.ua/plugins/ "wordpress.co.ua/plugins/"), russian language by [Dmitriy Donchenko](http://blogproblog.com/ "blogproblog.com"), hungarian language files by [Körmendi Péter](http://www.seo-hungary.com/ "www.seo-hungary.com"), danish language files by [GeorgWP](http://wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=175 "Søg efter downloads")m spanish language files by [Pablo Jiménez](http://www.ministeriosccc.org "www.ministeriosccc.org"), chinese language (zh_CN) by [tanghaiwei](http://dd54.net), french translation files by [Jez007](http://forum.gmstemple.com/ "forum.gmstemple.com"), japanese translation by [Fumito Mizuno](http://ounziw.com/ "Standing on the Shoulder of Linus"), dutch translation by [Rene](http://wpwebshop.com "wpwebshop.com") and arabic language files by [مدونة](http://www.r-sn.com/wp). Thanks a lot.
|
29 |
|
30 |
|
31 |
== Installation ==
|
@@ -51,6 +49,21 @@ The plugin comes with various translations, please refer to the [WordPress Codex
|
|
51 |
|
52 |
|
53 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
= v1.0.1 (08/06/2010) =
|
55 |
* add more hooks to remove WordPress Version; was change with WP3.0
|
56 |
|
2 |
Contributors: jremillard
|
3 |
Tags: secure, notice, hack, hacked, protection, version, security
|
4 |
Requires at least: 2.6
|
5 |
+
Tested up to: 3.1-alpha
|
6 |
Stable tag: 0.1
|
7 |
|
8 |
Secure your WordPress Installation with small functions.
|
21 |
1. hide wp-version in backend-dashboard for non-admins
|
22 |
1. Add string for use [WP Scanner](http://blogsecurity.net/wpscan "WP Scanner")
|
23 |
1. Block bad queries
|
|
|
|
|
24 |
|
25 |
= Localizations =
|
26 |
+
Idea, first version and german translation by [Frank Bültge](http://bueltge.de "bueltge.de"), italien translation by [Gianni Diurno](http://gidibao.net/ "gidibao.net"), polish translation by Michal Maciejewski, belorussian file by [Fat Cow](http://www.fatcow.com/ "www.fatcow.com"), ukrainian translation by [AzzePis](http://wordpress.co.ua/plugins/ "wordpress.co.ua/plugins/"), russian language by [Dmitriy Donchenko](http://blogproblog.com/ "blogproblog.com"), hungarian language files by [Körmendi Péter](http://www.seo-hungary.com/ "www.seo-hungary.com"), danish language files by [GeorgWP](http://wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=175 "Søg efter downloads")m spanish language files by [Pablo Jiménez](http://www.ministeriosccc.org "www.ministeriosccc.org"), chinese language (zh_CN) by [tanghaiwei](http://dd54.net), french translation files by [Jez007](http://forum.gmstemple.com/ "forum.gmstemple.com"), japanese translation by [Fumito Mizuno](http://ounziw.com/ "Standing on the Shoulder of Linus"), dutch translation by [Rene](http://wpwebshop.com "wpwebshop.com"), persian language files by [ALiRezaCH](http://alirezach.co.cc) and arabic language files by [مدونة](http://www.r-sn.com/wp). Thanks a lot.
|
27 |
|
28 |
|
29 |
== Installation ==
|
49 |
|
50 |
|
51 |
== Changelog ==
|
52 |
+
= v1.0.4 (10/09/2010 =
|
53 |
+
* Bugfix: update options
|
54 |
+
|
55 |
+
= v1.0.3 (10/06/2010) =
|
56 |
+
* Bugfix: include JS for remove version in backend for Non-Admins
|
57 |
+
* Bugfix: change for php-warning at update options
|
58 |
+
* Maintenance: update italien language files
|
59 |
+
* Maintenance: update german language files
|
60 |
+
* Maintenance: update pot file
|
61 |
+
|
62 |
+
= v1.0.2 (09/10/2010) =
|
63 |
+
* add persian language file
|
64 |
+
* change the backend; remove WP Scanner function
|
65 |
+
* change the include of javascript for metaboxes
|
66 |
+
|
67 |
= v1.0.1 (08/06/2010) =
|
68 |
* add more hooks to remove WordPress Version; was change with WP3.0
|
69 |
|
screenshot-1.png
CHANGED
File without changes
|
secure-wordpress.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* @package Secure WordPress
|
4 |
* @author jremillard
|
5 |
-
* @version 1.0.
|
6 |
*/
|
7 |
|
8 |
/**
|
@@ -12,9 +12,9 @@
|
|
12 |
* Domain Path: /languages
|
13 |
* Description: Little basics for secure your WordPress-installation.
|
14 |
* Author: jremillard
|
15 |
-
* Version: 1.0.
|
16 |
* Author URI: http://www.sitesecuritymonitor.com/
|
17 |
-
* Last Change:
|
18 |
* License: GPL
|
19 |
*/
|
20 |
|
@@ -219,12 +219,6 @@ if ( !class_exists('SecureWP') ) {
|
|
219 |
// hint in footer of the options page
|
220 |
add_action( 'in_admin_footer', array(&$this, 'admin_footer') );
|
221 |
|
222 |
-
// add javascript for metaboxes
|
223 |
-
if ( version_compare( $wp_version, '2.7alpha', '>' ) && file_exists(ABSPATH . '/wp-admin/admin-ajax.php') && (basename($_SERVER['QUERY_STRING']) == 'page=secure-wordpress.php') ) {
|
224 |
-
wp_enqueue_script( 'secure_wp_plugin_win_page', $this->get_plugins_url( 'js/page.php', __FILE__ ), array('jquery') );
|
225 |
-
} elseif ( version_compare( $wp_version, '2.7alpha', '<' ) && file_exists(ABSPATH . '/wp-admin/admin-ajax.php') && (basename($_SERVER['QUERY_STRING']) == 'page=secure-wordpress.php') ) {
|
226 |
-
wp_enqueue_script( 'secure_wp_plugin_win_page', $this->get_plugins_url( 'js/page_s27.php', __FILE__ ), array('jquery') );
|
227 |
-
}
|
228 |
add_action( 'wp_ajax_set_toggle_status', array($this, 'set_toggle_status') );
|
229 |
}
|
230 |
|
@@ -315,7 +309,7 @@ if ( !class_exists('SecureWP') ) {
|
|
315 |
|
316 |
// set value
|
317 |
foreach ($this->options_array as $key => $value) {
|
318 |
-
|
319 |
}
|
320 |
|
321 |
// save value
|
@@ -746,7 +740,7 @@ if ( !class_exists('SecureWP') ) {
|
|
746 |
$secure_wp_rtu = $GLOBALS['WPlize']->get_option('secure_wp_rtu');
|
747 |
$secure_wp_wps = $GLOBALS['WPlize']->get_option('secure_wp_wps');
|
748 |
$secure_wp_amurlr = $GLOBALS['WPlize']->get_option('secure_wp_amurlr');
|
749 |
-
|
750 |
$secure_wp_win_settings = $GLOBALS['WPlize']->get_option('secure_wp_win_settings');
|
751 |
$secure_wp_win_about = $GLOBALS['WPlize']->get_option('secure_wp_win_about');
|
752 |
$secure_wp_win_opt = $GLOBALS['WPlize']->get_option('secure_wp_win_opt');
|
@@ -891,6 +885,7 @@ if ( !class_exists('SecureWP') ) {
|
|
891 |
</div>
|
892 |
</div>
|
893 |
|
|
|
894 |
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
895 |
<div id="secure_wp_win_opt" class="postbox <?php echo $secure_wp_win_opt ?>" >
|
896 |
<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
|
@@ -1003,7 +998,7 @@ if ( !class_exists('SecureWP') ) {
|
|
1003 |
</div>
|
1004 |
</div>
|
1005 |
</div>
|
1006 |
-
|
1007 |
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
1008 |
<div id="secure_wp_win_opt" class="postbox <?php echo $secure_wp_win_opt ?>" >
|
1009 |
<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
|
@@ -1137,7 +1132,19 @@ if ( !class_exists('SecureWP') ) {
|
|
1137 |
</div>
|
1138 |
</div>
|
1139 |
</div>
|
1140 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1141 |
</div>
|
1142 |
<?php
|
1143 |
}
|
2 |
/**
|
3 |
* @package Secure WordPress
|
4 |
* @author jremillard
|
5 |
+
* @version 1.0.4
|
6 |
*/
|
7 |
|
8 |
/**
|
12 |
* Domain Path: /languages
|
13 |
* Description: Little basics for secure your WordPress-installation.
|
14 |
* Author: jremillard
|
15 |
+
* Version: 1.0.4
|
16 |
* Author URI: http://www.sitesecuritymonitor.com/
|
17 |
+
* Last Change: 09.10.2010 23:14:47
|
18 |
* License: GPL
|
19 |
*/
|
20 |
|
219 |
// hint in footer of the options page
|
220 |
add_action( 'in_admin_footer', array(&$this, 'admin_footer') );
|
221 |
|
|
|
|
|
|
|
|
|
|
|
|
|
222 |
add_action( 'wp_ajax_set_toggle_status', array($this, 'set_toggle_status') );
|
223 |
}
|
224 |
|
309 |
|
310 |
// set value
|
311 |
foreach ($this->options_array as $key => $value) {
|
312 |
+
$update_options[$key] = stripslashes_deep( trim($_POST[$key]) );
|
313 |
}
|
314 |
|
315 |
// save value
|
740 |
$secure_wp_rtu = $GLOBALS['WPlize']->get_option('secure_wp_rtu');
|
741 |
$secure_wp_wps = $GLOBALS['WPlize']->get_option('secure_wp_wps');
|
742 |
$secure_wp_amurlr = $GLOBALS['WPlize']->get_option('secure_wp_amurlr');
|
743 |
+
|
744 |
$secure_wp_win_settings = $GLOBALS['WPlize']->get_option('secure_wp_win_settings');
|
745 |
$secure_wp_win_about = $GLOBALS['WPlize']->get_option('secure_wp_win_about');
|
746 |
$secure_wp_win_opt = $GLOBALS['WPlize']->get_option('secure_wp_win_opt');
|
885 |
</div>
|
886 |
</div>
|
887 |
|
888 |
+
<!--
|
889 |
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
890 |
<div id="secure_wp_win_opt" class="postbox <?php echo $secure_wp_win_opt ?>" >
|
891 |
<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
|
998 |
</div>
|
999 |
</div>
|
1000 |
</div>
|
1001 |
+
-->
|
1002 |
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
1003 |
<div id="secure_wp_win_opt" class="postbox <?php echo $secure_wp_win_opt ?>" >
|
1004 |
<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
|
1132 |
</div>
|
1133 |
</div>
|
1134 |
</div>
|
1135 |
+
|
1136 |
+
<script type="text/javascript">
|
1137 |
+
//<![CDATA[
|
1138 |
+
jQuery(document).ready( function($) {
|
1139 |
+
$('.postbox h3').click( function() { $($(this).parent().get(0)).toggleClass('closed'); } );
|
1140 |
+
$('.postbox .handlediv').click( function() { $($(this).parent().get(0)).toggleClass('closed'); } );
|
1141 |
+
$('.postbox.close-me').each(function() {
|
1142 |
+
$(this).addClass("closed");
|
1143 |
+
});
|
1144 |
+
});
|
1145 |
+
//]]>
|
1146 |
+
</script>
|
1147 |
+
|
1148 |
</div>
|
1149 |
<?php
|
1150 |
}
|
uninstall.php
CHANGED
File without changes
|