Version Description
Download this release
Release Info
Developer | Bueltge |
Plugin | Acunetix Secure WordPress |
Version | 1.0.6 |
Comparing to | |
See all releases |
Code changes from version 0.8.4 to 1.0.6
- Secure WordPress-da_DK.txt +23 -0
- css/remove_update_plugins.css +3 -0
- css/remove_wp_version.css +3 -0
- img/h2logo.png +0 -0
- img/logo.png +0 -0
- js/page.php +0 -40
- 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 +225 -0
- languages/secure_wp-be_BY.mo +0 -0
- languages/secure_wp-be_BY.po +237 -0
- languages/secure_wp-da_DK.mo +0 -0
- languages/secure_wp-da_DK.po +425 -0
- languages/secure_wp-de_DE.mo +0 -0
- languages/secure_wp-de_DE.po +423 -78
- languages/secure_wp-es_ES.mo +0 -0
- languages/secure_wp-es_ES.po +241 -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 +246 -0
- languages/secure_wp-hu_HU.mo +0 -0
- languages/secure_wp-hu_HU.po +104 -55
- languages/secure_wp-it_IT.mo +0 -0
- languages/secure_wp-it_IT.po +377 -71
- languages/secure_wp-ja.mo +0 -0
- languages/secure_wp-ja.po +526 -0
- languages/secure_wp-nl_NL.mo +0 -0
- languages/secure_wp-nl_NL.po +246 -0
- languages/secure_wp-pl_PL.mo +0 -0
- languages/secure_wp-pl_PL.po +461 -110
- languages/secure_wp-ro_RO.mo +0 -0
- languages/secure_wp-ro_RO.po +532 -0
- languages/secure_wp-ru_RU.mo +0 -0
- languages/secure_wp-ru_RU.po +237 -0
- languages/secure_wp-uk.mo +0 -0
- languages/secure_wp-uk.po +225 -0
- languages/secure_wp-zh_CN.mo +0 -0
- languages/secure_wp-zh_CN.po +236 -0
- languages/secure_wp.pot +533 -188
- readme.txt +90 -24
- screenshot-1.png +0 -0
- secure-wordpress.php +625 -225
- uninstall.php +4 -0
Secure WordPress-da_DK.txt
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Secure WordPress 0.8.5
|
2 |
+
|
3 |
+
Sprogfilerne skal ligge i plugin-mappen secure-wordpress/languages
|
4 |
+
Oplysning om stierne er pakket med.
|
5 |
+
Underst�tter dit udpakningsprogram anvendelse heraf,
|
6 |
+
kan du udpakke direkte til (formentlig) wp-content/plugins
|
7 |
+
|
8 |
+
Evt. opdateringer eller info herom kan hentes via http://wordpress.blogos.dk/wpdadkdownloads
|
9 |
+
eller direkte p� http://wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=175
|
10 |
+
|
11 |
+
Se evt. ogs� http://wordpress.blogos.dk/tag/secure-wordpress
|
12 |
+
|
13 |
+
|
14 |
+
|
15 |
+
FOR THE DEVELOPER
|
16 |
+
You are very welcome to check for updated language files in one of the following ways:
|
17 |
+
|
18 |
+
1. On my downloads page that list all files available for download:
|
19 |
+
http://wordpress.blogos.dk/wpdadkdownloads/
|
20 |
+
|
21 |
+
2. Directly on my Download Monitor download page: http://wordpress.blogos.dk/s%C3%B8g-efter-downloads/?did=175
|
22 |
+
|
23 |
+
If I have blogged about your plugin, theme or other resource, you will be able to find it via this tag: http://wordpress.blogos.dk/tag/secure-wordpress
|
css/remove_update_plugins.css
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
.update-plugins {
|
2 |
+
display: none !important;
|
3 |
+
}
|
css/remove_wp_version.css
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
#wp-version-message, #footer-upgrade {
|
2 |
+
display: none !important;
|
3 |
+
}
|
img/h2logo.png
ADDED
Binary file
|
img/logo.png
ADDED
Binary file
|
js/page.php
DELETED
@@ -1,40 +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').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 |
-
});
|
24 |
-
|
25 |
-
jQuery(document).ready( function($) {
|
26 |
-
$('.postbox .handlediv').click(
|
27 |
-
function() {
|
28 |
-
var postbox = $($(this).parent().get(0));
|
29 |
-
postbox.toggleClass('closed');
|
30 |
-
var closed = postbox.is('.closed');
|
31 |
-
$.post(
|
32 |
-
'<?php echo get_bloginfo("wpurl") ?>/wp-admin/admin-ajax.php', {
|
33 |
-
'action':'set_toggle_status',
|
34 |
-
'set_toggle_id':postbox.attr('id'),
|
35 |
-
'set_toggle_status': (closed ? 'closed' : '')
|
36 |
-
}
|
37 |
-
);
|
38 |
-
}
|
39 |
-
);
|
40 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
ADDED
Binary file
|
languages/secure_wp-ar.po
ADDED
@@ -0,0 +1,225 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Secure WordPress\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-06-22 12:29+0100\n"
|
6 |
+
"PO-Revision-Date: 2010-05-24 13:50+0300\n"
|
7 |
+
"Last-Translator: www.r-sn.com <web.rsn@gmail.com>\n"
|
8 |
+
"Language-Team: مدونة رسين <web.rsn@gmail.com>\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-SourceCharset: utf-8\n"
|
13 |
+
"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\n"
|
14 |
+
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Textdomain-Support: yes\n"
|
16 |
+
"X-Poedit-Language: Arabic\n"
|
17 |
+
"X-Poedit-Country: SAUDI ARABIA\n"
|
18 |
+
"X-Poedit-SearchPath-0: .\n"
|
19 |
+
|
20 |
+
#: secure-wordpress.php:323
|
21 |
+
msgid "Settings"
|
22 |
+
msgstr "الإعدادات"
|
23 |
+
|
24 |
+
#@ secure_wp
|
25 |
+
#: secure-wordpress.php:352
|
26 |
+
#: secure-wordpress.php:389
|
27 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
28 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">معلومات</a>"
|
29 |
+
|
30 |
+
#@ secure_wp
|
31 |
+
#: secure-wordpress.php:369
|
32 |
+
msgid "Options update."
|
33 |
+
msgstr "تحديث الإعدادات"
|
34 |
+
|
35 |
+
#@ secure_wp
|
36 |
+
#: secure-wordpress.php:371
|
37 |
+
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
38 |
+
msgstr "تم مسح جميع الإدخالات في قاعدة البيانات. تم تعطيل الإضافة ."
|
39 |
+
|
40 |
+
#@ secure_wp
|
41 |
+
#: secure-wordpress.php:385
|
42 |
+
#: secure-wordpress.php:392
|
43 |
+
msgid "Secure WP"
|
44 |
+
msgstr "تأمين WP"
|
45 |
+
|
46 |
+
#@ secure_wp
|
47 |
+
#: secure-wordpress.php:388
|
48 |
+
#: secure-wordpress.php:614
|
49 |
+
msgid "Secure WordPress"
|
50 |
+
msgstr "تأمين الوورد بريس"
|
51 |
+
|
52 |
+
#: secure-wordpress.php:412
|
53 |
+
msgid "Version"
|
54 |
+
msgstr "الإصدار"
|
55 |
+
|
56 |
+
#@ secure_wp
|
57 |
+
#: secure-wordpress.php:412
|
58 |
+
msgid "History"
|
59 |
+
msgstr "السجل"
|
60 |
+
|
61 |
+
#: secure-wordpress.php:412
|
62 |
+
msgid "Author"
|
63 |
+
msgstr "الكاتب"
|
64 |
+
|
65 |
+
#@ secure_wp
|
66 |
+
#: secure-wordpress.php:542
|
67 |
+
msgid "Options not update - you don‘t have the privilidges to do this!"
|
68 |
+
msgstr "الخيارات لم يتم تحديثها .. لا تملك الصلاحيات"
|
69 |
+
|
70 |
+
#@ secure_wp
|
71 |
+
#: secure-wordpress.php:562
|
72 |
+
msgid "Entries was not delleted - you don‘t have the privilidges to do this!"
|
73 |
+
msgstr "لايمكن حذف الادخالات .. لا تملك الصلاحيات"
|
74 |
+
|
75 |
+
#@ secure_wp
|
76 |
+
#: secure-wordpress.php:570
|
77 |
+
msgid "Entries was not delleted - check the checkbox!"
|
78 |
+
msgstr "لايمكن حذف الادخالات .. تحقق من الصندوق"
|
79 |
+
|
80 |
+
#@ secure_wp
|
81 |
+
#: secure-wordpress.php:590
|
82 |
+
msgid "All entries in the database was cleared."
|
83 |
+
msgstr "تم مسح جميع الإدخالات في قاعدة البيانات."
|
84 |
+
|
85 |
+
#@ secure_wp
|
86 |
+
#: secure-wordpress.php:594
|
87 |
+
msgid "Entries was not delleted - check the checkbox or you don‘t have the privilidges to do this!"
|
88 |
+
msgstr "لا يمكن حذف الادخالات .. تحقق من الصندوق أو أنك لاتملك الصلاحيات"
|
89 |
+
|
90 |
+
#: secure-wordpress.php:619
|
91 |
+
#: secure-wordpress.php:734
|
92 |
+
#: secure-wordpress.php:754
|
93 |
+
msgid "Click to toggle"
|
94 |
+
msgstr "انقر للتبديل"
|
95 |
+
|
96 |
+
#@ secure_wp
|
97 |
+
#: secure-wordpress.php:620
|
98 |
+
msgid "Configuration"
|
99 |
+
msgstr "التكوين"
|
100 |
+
|
101 |
+
#@ secure_wp
|
102 |
+
#: secure-wordpress.php:630
|
103 |
+
msgid "Error-Messages"
|
104 |
+
msgstr "رسالة خطأ"
|
105 |
+
|
106 |
+
#@ secure_wp
|
107 |
+
#: secure-wordpress.php:634
|
108 |
+
msgid "deactivates tooltip and error message at login of WordPress"
|
109 |
+
msgstr "تعطيل tooltip و إظهار رسالة خطأ عند تسجيل الدخول"
|
110 |
+
|
111 |
+
#@ secure_wp
|
112 |
+
#: secure-wordpress.php:640
|
113 |
+
msgid "WordPress Version"
|
114 |
+
msgstr "إصدار الوورد بريس"
|
115 |
+
|
116 |
+
#@ secure_wp
|
117 |
+
#: secure-wordpress.php:644
|
118 |
+
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
119 |
+
msgstr "إزالة إصدار الوورد بريس في جميع المجالات ، بما في ذلك الخلاصات ، وليس في الادارة"
|
120 |
+
|
121 |
+
#@ secure_wp
|
122 |
+
#: secure-wordpress.php:650
|
123 |
+
msgid "index.html"
|
124 |
+
msgstr "index.html"
|
125 |
+
|
126 |
+
#@ secure_wp
|
127 |
+
#: secure-wordpress.php:660
|
128 |
+
msgid "Really Simple Discovery"
|
129 |
+
msgstr "Really Simple Discovery"
|
130 |
+
|
131 |
+
#@ secure_wp
|
132 |
+
#: secure-wordpress.php:664
|
133 |
+
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
134 |
+
msgstr "إزالة ارتباط Really Simple Discovery من <code>wp_head</code> من الواجهة"
|
135 |
+
|
136 |
+
#@ secure_wp
|
137 |
+
#: secure-wordpress.php:670
|
138 |
+
msgid "Windows Live Writer"
|
139 |
+
msgstr "Windows Live Writer"
|
140 |
+
|
141 |
+
#@ secure_wp
|
142 |
+
#: secure-wordpress.php:674
|
143 |
+
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
144 |
+
msgstr "إزالة ارتباط Windows Live Writer من <code>wp_head</code> من الواجهة"
|
145 |
+
|
146 |
+
#@ secure_wp
|
147 |
+
#: secure-wordpress.php:680
|
148 |
+
msgid "Core Update"
|
149 |
+
msgstr "تحديث الأصل"
|
150 |
+
|
151 |
+
#@ secure_wp
|
152 |
+
#: secure-wordpress.php:684
|
153 |
+
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
154 |
+
msgstr "إزالة المطالبة بتحديث إصدار الوورد بريس لغير المدراء .. مع ظهور رسالة التحديث "
|
155 |
+
|
156 |
+
#@ secure_wp
|
157 |
+
#: secure-wordpress.php:690
|
158 |
+
msgid "Plugin Update"
|
159 |
+
msgstr "تحديث الإضافة"
|
160 |
+
|
161 |
+
#@ secure_wp
|
162 |
+
#: secure-wordpress.php:694
|
163 |
+
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."
|
164 |
+
msgstr "إزالة المطالبة بتحديث إصدارات الإضافات لغير المدراء .. مع ظهور رسالة التحديث "
|
165 |
+
|
166 |
+
#@ secure_wp
|
167 |
+
#: secure-wordpress.php:701
|
168 |
+
msgid "Theme Update"
|
169 |
+
msgstr "تحديث القالب"
|
170 |
+
|
171 |
+
#@ secure_wp
|
172 |
+
#: secure-wordpress.php:705
|
173 |
+
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."
|
174 |
+
msgstr "إزالة المطالبة بتحديث إصدارات القوالب لغير المدراء .. مع ظهور رسالة التحديث "
|
175 |
+
|
176 |
+
#@ secure_wp
|
177 |
+
#: secure-wordpress.php:712
|
178 |
+
msgid "WP Scanner"
|
179 |
+
msgstr "WP مسح"
|
180 |
+
|
181 |
+
#@ secure_wp
|
182 |
+
#: secure-wordpress.php:716
|
183 |
+
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 is 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."
|
184 |
+
msgstr "يجب عليك إضافة هذا الكود لقالبك <code><!-- wpscanner --></code> ثم إذهب لصفحة <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> وأضغط مسح .."
|
185 |
+
|
186 |
+
#@ secure_wp
|
187 |
+
#: secure-wordpress.php:724
|
188 |
+
msgid "Save Changes"
|
189 |
+
msgstr "حفظ التغييرات"
|
190 |
+
|
191 |
+
#@ secure_wp
|
192 |
+
#: secure-wordpress.php:735
|
193 |
+
msgid "Clear Options"
|
194 |
+
msgstr "حذف الخيارات"
|
195 |
+
|
196 |
+
#@ secure_wp
|
197 |
+
#: secure-wordpress.php:738
|
198 |
+
msgid "Click this button to delete settings of this plugin. Deactivating Secure WordPress plugin remove any data that may have been created."
|
199 |
+
msgstr "عند الضغط على زر الحذف سيتم حذف جميع إعدادات الإضافة التي تم إنشاؤها من قبل"
|
200 |
+
|
201 |
+
#@ secure_wp
|
202 |
+
#: secure-wordpress.php:743
|
203 |
+
msgid "Delete Options"
|
204 |
+
msgstr "حذف الخيارات"
|
205 |
+
|
206 |
+
#@ secure_wp
|
207 |
+
#: secure-wordpress.php:755
|
208 |
+
msgid "About the plugin"
|
209 |
+
msgstr "معلومات عن الإضافة"
|
210 |
+
|
211 |
+
#@ secure_wp
|
212 |
+
#: secure-wordpress.php:768
|
213 |
+
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
214 |
+
msgstr "للمزيد من المعلومات قم بزيارة <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">صفحة الإضافة </a> أو <a href=\"http://www.r-sn.com/wp/archives/1848/\">مدونة رسين </a> وطرح الاستفسارات لمن يواجه مشكلة أو لمزيد من المعلومات"
|
215 |
+
|
216 |
+
#@ secure_wp
|
217 |
+
#: secure-wordpress.php:768
|
218 |
+
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
|
219 |
+
msgstr "قم بزيارتي <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
|
220 |
+
|
221 |
+
#@ secure_wp
|
222 |
+
#: secure-wordpress.php:654
|
223 |
+
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
224 |
+
msgstr "إنشاء <code>index.php</code> في <code>/plugins/</code> و <code>/themes/</code> مهم جداً لأجل أن لايتم استعراض المجلدات .."
|
225 |
+
|
languages/secure_wp-be_BY.mo
ADDED
Binary file
|
languages/secure_wp-be_BY.po
ADDED
@@ -0,0 +1,237 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Secure WordPress\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-05-08 12:17+0100\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Fat Cow <zhr@tut.by>\n"
|
8 |
+
"Language-Team: Fat Cow <zhr@tut.by>\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: Belarusian\n"
|
14 |
+
"X-Poedit-Country: BELARUS\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;_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 |
+
#: secure-wordpress.php:330
|
23 |
+
msgid "Settings"
|
24 |
+
msgstr "Настройки"
|
25 |
+
|
26 |
+
#: secure-wordpress.php:359
|
27 |
+
#: secure-wordpress.php:402
|
28 |
+
#@ secure_wp
|
29 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
30 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Документация</a>"
|
31 |
+
|
32 |
+
#: secure-wordpress.php:382
|
33 |
+
#@ secure_wp
|
34 |
+
msgid "Options update."
|
35 |
+
msgstr "Опции обновлены."
|
36 |
+
|
37 |
+
#: secure-wordpress.php:384
|
38 |
+
#@ secure_wp
|
39 |
+
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
40 |
+
msgstr "Все элементы в базе данных были очищены. Сейчас деактивируйте плагин."
|
41 |
+
|
42 |
+
#: secure-wordpress.php:398
|
43 |
+
#: secure-wordpress.php:405
|
44 |
+
#@ secure_wp
|
45 |
+
msgid "Secure WP"
|
46 |
+
msgstr "Secure WP"
|
47 |
+
|
48 |
+
#: secure-wordpress.php:401
|
49 |
+
#: secure-wordpress.php:641
|
50 |
+
#@ secure_wp
|
51 |
+
msgid "Secure WordPress"
|
52 |
+
msgstr "Безопасность WordPress"
|
53 |
+
|
54 |
+
#: secure-wordpress.php:425
|
55 |
+
msgid "Version"
|
56 |
+
msgstr "Версия"
|
57 |
+
|
58 |
+
#: secure-wordpress.php:425
|
59 |
+
#@ secure_wp
|
60 |
+
msgid "History"
|
61 |
+
msgstr "История"
|
62 |
+
|
63 |
+
#: secure-wordpress.php:425
|
64 |
+
msgid "Author"
|
65 |
+
msgstr "Автор"
|
66 |
+
|
67 |
+
#: secure-wordpress.php:568
|
68 |
+
#@ secure_wp
|
69 |
+
msgid "Options not update - you don‘t have the privilidges to do this!"
|
70 |
+
msgstr "Опции не обновлены - у вас нет привилегий для этого!"
|
71 |
+
|
72 |
+
#: secure-wordpress.php:588
|
73 |
+
#@ secure_wp
|
74 |
+
msgid "Entries was not delleted - you don‘t have the privilidges to do this!"
|
75 |
+
msgstr "Элементы не удалены - у вас нет привилегий для этого!"
|
76 |
+
|
77 |
+
#: secure-wordpress.php:596
|
78 |
+
#@ secure_wp
|
79 |
+
msgid "Entries was not delleted - check the checkbox!"
|
80 |
+
msgstr "Элементы не удалены - отметьте поля!"
|
81 |
+
|
82 |
+
#: secure-wordpress.php:616
|
83 |
+
#@ secure_wp
|
84 |
+
msgid "All entries in the database was cleared."
|
85 |
+
msgstr "Все элементы удалены из базы!"
|
86 |
+
|
87 |
+
#: secure-wordpress.php:620
|
88 |
+
#@ secure_wp
|
89 |
+
msgid "Entries was not delleted - check the checkbox or you don‘t have the privilidges to do this!"
|
90 |
+
msgstr "Элементы не удалены - отметьте поля или же у вас нет прав для этого!"
|
91 |
+
|
92 |
+
#: secure-wordpress.php:646
|
93 |
+
#: secure-wordpress.php:771
|
94 |
+
#: secure-wordpress.php:791
|
95 |
+
msgid "Click to toggle"
|
96 |
+
msgstr "Нажмите для разворачивания"
|
97 |
+
|
98 |
+
#: secure-wordpress.php:647
|
99 |
+
#@ secure_wp
|
100 |
+
msgid "Configuration"
|
101 |
+
msgstr "Конфигурация"
|
102 |
+
|
103 |
+
#: secure-wordpress.php:657
|
104 |
+
#@ secure_wp
|
105 |
+
msgid "Error-Messages"
|
106 |
+
msgstr "Сообщения об ошибках"
|
107 |
+
|
108 |
+
#: secure-wordpress.php:661
|
109 |
+
#@ secure_wp
|
110 |
+
msgid "deactivates tooltip and error message at login of WordPress"
|
111 |
+
msgstr "деактивирует подсказки и сообщения об ошибке при выходе из WordPress"
|
112 |
+
|
113 |
+
#: secure-wordpress.php:667
|
114 |
+
#@ secure_wp
|
115 |
+
msgid "WordPress Version"
|
116 |
+
msgstr "версия WordPress"
|
117 |
+
|
118 |
+
#: secure-wordpress.php:671
|
119 |
+
#@ secure_wp
|
120 |
+
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
121 |
+
msgstr "Удаление версии WordPress во всех областях, в том числе и в ленте, не в Admin режиме"
|
122 |
+
|
123 |
+
#: secure-wordpress.php:697
|
124 |
+
#@ secure_wp
|
125 |
+
msgid "Really Simple Discovery"
|
126 |
+
msgstr "Really Simple Discovery"
|
127 |
+
|
128 |
+
#: secure-wordpress.php:701
|
129 |
+
#@ secure_wp
|
130 |
+
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
131 |
+
msgstr "Удалите ссылку Really Simple Discovery с <code>wp_head</code> панели."
|
132 |
+
|
133 |
+
#: secure-wordpress.php:707
|
134 |
+
#@ secure_wp
|
135 |
+
msgid "Windows Live Writer"
|
136 |
+
msgstr "Windows Live Writer"
|
137 |
+
|
138 |
+
#: secure-wordpress.php:711
|
139 |
+
#@ secure_wp
|
140 |
+
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
141 |
+
msgstr "Удалите Windows Live Writer из <code>wp_head</code> панели."
|
142 |
+
|
143 |
+
#: secure-wordpress.php:717
|
144 |
+
#@ secure_wp
|
145 |
+
msgid "Core Update"
|
146 |
+
msgstr "Обновления ядра"
|
147 |
+
|
148 |
+
#: secure-wordpress.php:721
|
149 |
+
#@ secure_wp
|
150 |
+
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
151 |
+
msgstr "Деактивировать обновление ядра для не-администраторов. Показать сообщение о новой версии WordPress только пользователям с правом обновления."
|
152 |
+
|
153 |
+
#: secure-wordpress.php:727
|
154 |
+
#@ secure_wp
|
155 |
+
msgid "Plugin Update"
|
156 |
+
msgstr "Обновление плагина"
|
157 |
+
|
158 |
+
#: secure-wordpress.php:731
|
159 |
+
#@ secure_wp
|
160 |
+
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."
|
161 |
+
msgstr "Деактивировать обновление плагина для не-администраторов. Показать сообщение о новой версии WordPress только пользователям с правом редактирования плагинов."
|
162 |
+
|
163 |
+
#: secure-wordpress.php:749
|
164 |
+
#@ secure_wp
|
165 |
+
msgid "WP Scanner"
|
166 |
+
msgstr "WP Scanner"
|
167 |
+
|
168 |
+
#: secure-wordpress.php:753
|
169 |
+
#@ secure_wp
|
170 |
+
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 is 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."
|
171 |
+
msgstr "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 is 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."
|
172 |
+
|
173 |
+
#: secure-wordpress.php:761
|
174 |
+
#@ secure_wp
|
175 |
+
msgid "Save Changes"
|
176 |
+
msgstr "Сохранить настройки"
|
177 |
+
|
178 |
+
#: secure-wordpress.php:772
|
179 |
+
#@ secure_wp
|
180 |
+
msgid "Clear Options"
|
181 |
+
msgstr "Очистить опции"
|
182 |
+
|
183 |
+
#: secure-wordpress.php:775
|
184 |
+
#@ secure_wp
|
185 |
+
msgid "Click this button to delete settings of this plugin. Deactivating Secure WordPress plugin remove any data that may have been created."
|
186 |
+
msgstr "Нажмите на эту кнопку, чтобы удалить настройки этого плагина. Отключение Secure WordPress удалит все данные, которые могли быть созданы."
|
187 |
+
|
188 |
+
#: secure-wordpress.php:780
|
189 |
+
#@ secure_wp
|
190 |
+
msgid "Delete Options"
|
191 |
+
msgstr "Удалить опции"
|
192 |
+
|
193 |
+
#: secure-wordpress.php:792
|
194 |
+
#@ secure_wp
|
195 |
+
msgid "About the plugin"
|
196 |
+
msgstr "Об этом плагине"
|
197 |
+
|
198 |
+
#: secure-wordpress.php:805
|
199 |
+
#@ secure_wp
|
200 |
+
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
201 |
+
msgstr "Дополнительная информация: посетите <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">домашнюю страницу плагина</a> для дополнительной информации и получения последней версии плагина."
|
202 |
+
|
203 |
+
#: secure-wordpress.php:805
|
204 |
+
#@ secure_wp
|
205 |
+
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
|
206 |
+
msgstr "Хотите поблагодарить меня? Посетите мой <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
|
207 |
+
|
208 |
+
#: secure-wordpress.php:691
|
209 |
+
#@ secure_wp
|
210 |
+
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
211 |
+
msgstr "tworzy <code>index.php</code> w pliku <code>/plugins/</code> i <code>/themes/</code>, aby zachować jej wyświetlaniu listy katalogów"
|
212 |
+
|
213 |
+
#: secure-wordpress.php:738
|
214 |
+
#@ secure_wp
|
215 |
+
msgid "Theme Update"
|
216 |
+
msgstr "Theme Update"
|
217 |
+
|
218 |
+
#: secure-wordpress.php:742
|
219 |
+
#@ secure_wp
|
220 |
+
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."
|
221 |
+
msgstr "Usuń aktualizację tematem niż administratorzy. Pokaż wiadomość do nowej wersji tematem zainstalować bloga tylko dla użytkowników z prawami do edycji tematów."
|
222 |
+
|
223 |
+
#: secure-wordpress.php:677
|
224 |
+
#@ secure_wp
|
225 |
+
msgid "WordPress Version in Backend"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: secure-wordpress.php:687
|
229 |
+
#@ secure_wp
|
230 |
+
msgid "index.php"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: secure-wordpress.php:681
|
234 |
+
#@ secure_wp
|
235 |
+
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."
|
236 |
+
msgstr ""
|
237 |
+
|
languages/secure_wp-da_DK.mo
ADDED
Binary file
|
languages/secure_wp-da_DK.po
ADDED
@@ -0,0 +1,425 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Secure WordPres 0.8.5\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-06-16 15:22+0100\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Team Blogos <wordpress@blogos.dk>\n"
|
8 |
+
"Language-Team: Team Blogos <wordpress@blogos.dk>\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: Danish\n"
|
14 |
+
"X-Poedit-Country: DENMARK\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_nc:1,2;_nx:1,2;_n_noop:1,2;_nx_noop;_x;_c;esc_html__;esc_html_e;esc_html_x;esc_attr__;esc_attr_e;esc_attr_x\n"
|
17 |
+
"X-Poedit-Basepath: d:\\wordpress\\plugins\\secure-wordpress\n"
|
18 |
+
"X-Poedit-SearchPath-0: d:\\wordpress\\plugins\\secure-wordpress\n"
|
19 |
+
|
20 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:364
|
21 |
+
msgid "Settings"
|
22 |
+
msgstr "Indstillinger"
|
23 |
+
|
24 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:393
|
25 |
+
#: d:\wordpress\plugins\secure-wordpress/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/\">Dokumentation</a>"
|
28 |
+
|
29 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:416
|
30 |
+
msgid "Options update."
|
31 |
+
msgstr "Update om indstillinger"
|
32 |
+
|
33 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:418
|
34 |
+
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
35 |
+
msgstr "Alle pluginnets poster i databasen blev ryddet. Deaktivér dette plugin nu."
|
36 |
+
|
37 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:432
|
38 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:443
|
39 |
+
msgid "Secure WP"
|
40 |
+
msgstr "Secure WP"
|
41 |
+
|
42 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:439
|
43 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:738
|
44 |
+
msgid "Secure WordPress"
|
45 |
+
msgstr "Secure WordPress"
|
46 |
+
|
47 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:463
|
48 |
+
msgid "Version"
|
49 |
+
msgstr "version"
|
50 |
+
|
51 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:463
|
52 |
+
msgid "History"
|
53 |
+
msgstr "Historik"
|
54 |
+
|
55 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:463
|
56 |
+
msgid "Author"
|
57 |
+
msgstr "Forfatter"
|
58 |
+
|
59 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:664
|
60 |
+
msgid "Options not updated - you don‘t have the privileges to do this!"
|
61 |
+
msgstr "Indstillingerne blev ikke opdateret – du har ikke rettigheder til at gøre dette!"
|
62 |
+
|
63 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:684
|
64 |
+
msgid "Entries were not deleted - you don‘t have the privileges to do this!"
|
65 |
+
msgstr "Posterne blev ikke slettet – du har ikke rettigheder til at gøre dette!"
|
66 |
+
|
67 |
+
# type: deleted
|
68 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:692
|
69 |
+
msgid "Entries were not deleted - check the checkbox!"
|
70 |
+
msgstr "Posterne blev ikke slettet – tjek afkrydsningsfeltet!"
|
71 |
+
|
72 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:712
|
73 |
+
msgid "All entries in the database were cleared."
|
74 |
+
msgstr "Alle poster i databasen blev tømt."
|
75 |
+
|
76 |
+
# typo: deleted
|
77 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:716
|
78 |
+
msgid "Entries were not deleted - check the checkbox or you don‘t have the privileges to do this!"
|
79 |
+
msgstr "Posterne blev ikke slettet – tjek afkrydsningsfeltet. Eller også har du ikke rettigheder til at gøre dette!"
|
80 |
+
|
81 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:743
|
82 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:878
|
83 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:988
|
84 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1101
|
85 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1121
|
86 |
+
msgid "Click to toggle"
|
87 |
+
msgstr "Klik for slå til/fra"
|
88 |
+
|
89 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:744
|
90 |
+
msgid "Configuration"
|
91 |
+
msgstr "Opsætning"
|
92 |
+
|
93 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:754
|
94 |
+
msgid "Error-Messages"
|
95 |
+
msgstr "Fejlmeddelelser"
|
96 |
+
|
97 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:758
|
98 |
+
msgid "Deactivates tooltip and error message at login of WordPress"
|
99 |
+
msgstr "Deaktiverer tooltip og fejlmeddelelse ved login til WordPress"
|
100 |
+
|
101 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:764
|
102 |
+
msgid "WordPress Version"
|
103 |
+
msgstr "WordPress-version"
|
104 |
+
|
105 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:768
|
106 |
+
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
107 |
+
msgstr "Fjerner WordPress-version alle steder, også i feeds, men ikke i admin"
|
108 |
+
|
109 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:774
|
110 |
+
msgid "WordPress Version in Backend"
|
111 |
+
msgstr "WordPress-version i kontrolpanel"
|
112 |
+
|
113 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:778
|
114 |
+
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."
|
115 |
+
msgstr "Fjern WordPress-version i admin-området for ikke-admins. Vis kun meddelelse om WordPress-version til de brugere, der har rettigheder til at redigere plugins."
|
116 |
+
|
117 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:784
|
118 |
+
msgid "index.php"
|
119 |
+
msgstr "index.php"
|
120 |
+
|
121 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:788
|
122 |
+
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
123 |
+
msgstr "Opretter en <code>index.php</code> fil i <code>/plugins/</code>-mappen, så der ikke bliver vist nogen mappeoversigt"
|
124 |
+
|
125 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:794
|
126 |
+
msgid "Really Simple Discovery"
|
127 |
+
msgstr "Really Simple Discovery"
|
128 |
+
|
129 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:798
|
130 |
+
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
131 |
+
msgstr "Fjern Really Simple Discovery-linket i <code>wp_head</code> ude i bloggen"
|
132 |
+
|
133 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:804
|
134 |
+
msgid "Windows Live Writer"
|
135 |
+
msgstr "Windows Live Writer"
|
136 |
+
|
137 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:808
|
138 |
+
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
139 |
+
msgstr "Fjern Windows Live Writer-linket i <code>wp_head</code> ude i bloggen"
|
140 |
+
|
141 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:814
|
142 |
+
msgid "Core Update"
|
143 |
+
msgstr "Kerne-opdatering"
|
144 |
+
|
145 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:818
|
146 |
+
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
147 |
+
msgstr "Fjern WordPress Core-opdatering fra ikke-admins. Vis kun meddelelse om ny WordPress-version til de brugere, der har rettigheder til at opdatere."
|
148 |
+
|
149 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:824
|
150 |
+
msgid "Plugin Update"
|
151 |
+
msgstr "Plugin-opdatering"
|
152 |
+
|
153 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:828
|
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 "Fjern plugin-opdatering for ikke-admins. Vis kun meddelelse om ny version af et plugin i din WordPress-installation til de brugere, der har rettigheder til at redigere plugins."
|
156 |
+
|
157 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:835
|
158 |
+
msgid "Theme Update"
|
159 |
+
msgstr "Tema-opdatering"
|
160 |
+
|
161 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:839
|
162 |
+
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."
|
163 |
+
msgstr "Fjern tema-opdatering for ikke-admins. Vis kun meddelelse om ny version af et tema i din blogs installation til de brugere, der har rettigheder til at redigere temaer."
|
164 |
+
|
165 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:846
|
166 |
+
msgid "WP Scanner"
|
167 |
+
msgstr "WP-scanner"
|
168 |
+
|
169 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:850
|
170 |
+
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."
|
171 |
+
msgstr "WordPress-scanner er en gratis online-ressource, som blogadministratorer kan bruge til at undersøge niveauet af deres WordPress-sikkerhed. Hvis du vil køre WP-scanner, så markér denne indstilling og tilføj <code><!-- wpscanner --></code> til dit aktuelle WordPress-tema. Gå derefter til <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> og scan din site."
|
172 |
+
|
173 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:856
|
174 |
+
msgid "Block bad queries"
|
175 |
+
msgstr "Blokér ondsindede forespørgsler"
|
176 |
+
|
177 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:860
|
178 |
+
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>"
|
179 |
+
msgstr "Beskyt WordPress mod ondsindede URL-forespørgsler; få flere oplysninger i <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"læs dette indlæg\" >indlæg fra Jeff Starr</a>"
|
180 |
+
|
181 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:868
|
182 |
+
msgid "Save Changes"
|
183 |
+
msgstr "Gem ændringer"
|
184 |
+
|
185 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:879
|
186 |
+
msgid "Validate your site with a free malware scan from www.sitesecuritymonitor.com"
|
187 |
+
msgstr "Validér din site med en gratis malware-scan fra www.sitesecuritymonitor.com"
|
188 |
+
|
189 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:882
|
190 |
+
msgid "Take us for a Test Drive - Free Scan"
|
191 |
+
msgstr "Lad os teste – Gratis scan"
|
192 |
+
|
193 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:883
|
194 |
+
msgid "We understand you may have questions:"
|
195 |
+
msgstr "Det er forståeligt, hvis du har et spørgsmål:"
|
196 |
+
|
197 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:884
|
198 |
+
msgid "What does this do for me?"
|
199 |
+
msgstr "Hvad får jeg ud af det?"
|
200 |
+
|
201 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:885
|
202 |
+
msgid "Am I really safe? I need to be sure."
|
203 |
+
msgstr "Er jeg helt sikret? Jeg skal være sikker!"
|
204 |
+
|
205 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:886
|
206 |
+
msgid "Rest Assured, Site Security Monitor has you covered."
|
207 |
+
msgstr "Du kan være sikker på, at Site Security Monitor sikrer dig."
|
208 |
+
|
209 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:888
|
210 |
+
msgid "FREE scan looks for malware"
|
211 |
+
msgstr "Gratis scan søger efter malware"
|
212 |
+
|
213 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:889
|
214 |
+
msgid "FREE report of website vulnerabilities found"
|
215 |
+
msgstr "Gratis rapport over fundne sårbarheder på din site"
|
216 |
+
|
217 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:890
|
218 |
+
msgid "No setup, tuning and installation on your site - scan begins immediately"
|
219 |
+
msgstr "Ingen opsætning, indstilling eller installation på din site – scan begynder med det samme"
|
220 |
+
|
221 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:892
|
222 |
+
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!"
|
223 |
+
msgstr "Du får en detaljeret mailware- og websårbarhedsrapport – helt gratis. Du er velkommen til at bruge denne rapport til at løse problemer, at vise din chef, at siten er ok, eller at vise dine klienter, at den site, du har udviklet, er sikker!"
|
224 |
+
|
225 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:893
|
226 |
+
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!"
|
227 |
+
msgstr "Bonus: Du vil få lov til at bruge Site Security Monitors <span title=\"Sikkerhedssegl\">Safe-Seal</span> på din site efter scanningen. Det viser verden, at du ikke har malware på din site!"
|
228 |
+
|
229 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:895
|
230 |
+
msgid "The form"
|
231 |
+
msgstr "Formularen"
|
232 |
+
|
233 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:896
|
234 |
+
msgid "Use the follow form or use it on <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">our website</a>."
|
235 |
+
msgstr "Brug den følgende formular eller brug den på <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">din website</a>."
|
236 |
+
|
237 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:928
|
238 |
+
msgid "Full Name"
|
239 |
+
msgstr "Fuld navn"
|
240 |
+
|
241 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:931
|
242 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:939
|
243 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:947
|
244 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:955
|
245 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:971
|
246 |
+
msgid "*required"
|
247 |
+
msgstr "* skal udfyldes"
|
248 |
+
|
249 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:936
|
250 |
+
msgid "eMail Adress"
|
251 |
+
msgstr "E-mail-adresse"
|
252 |
+
|
253 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:939
|
254 |
+
msgid ", eMail Address must match domain name"
|
255 |
+
msgstr ", e-mail-adresse skal matche domænenavn"
|
256 |
+
|
257 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:944
|
258 |
+
msgid "Website"
|
259 |
+
msgstr "Website"
|
260 |
+
|
261 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:952
|
262 |
+
msgid "Phone"
|
263 |
+
msgstr "Telefon"
|
264 |
+
|
265 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:960
|
266 |
+
msgid "Yes, I need help!"
|
267 |
+
msgstr "Ja, jeg har brug for hjælp!"
|
268 |
+
|
269 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:963
|
270 |
+
msgid "Call me"
|
271 |
+
msgstr "Ring til mig"
|
272 |
+
|
273 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:968
|
274 |
+
msgid "Terms and Conditions"
|
275 |
+
msgstr "Vilkår og betingelser"
|
276 |
+
|
277 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:971
|
278 |
+
msgid ", I accept"
|
279 |
+
msgstr ", jeg accepterer"
|
280 |
+
|
281 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:978
|
282 |
+
msgid "Get my Free Web Scan"
|
283 |
+
msgstr "Brug den gratis webscan"
|
284 |
+
|
285 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:989
|
286 |
+
msgid "Safe Seal"
|
287 |
+
msgstr "<span title=\"Sikkerhedssegl\">Safe Seal</span>"
|
288 |
+
|
289 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:992
|
290 |
+
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>"
|
291 |
+
msgstr "Tak, fordi du bruger vores scanner. Du er velkommen til at bruge scanneren nedenfor (den genererer HTML, som du slet kan indsætte) på din egen blog. Dette segl udfører ikke nogen scanning, men kun basal WordPress-sikkerhed, sådan som fællesskabet og vores egne kundeerfaringer anbefaler.<br/>Ønsker du at foretage regelmæssige skanninger for sårbarheder og malware, så <a href=\"http://www.sitesecuritymonitor.com/wordpress-secure-plugin/\">besøg vores hovedside ...</a>"
|
292 |
+
|
293 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1020
|
294 |
+
msgid "Color"
|
295 |
+
msgstr "Farve"
|
296 |
+
|
297 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1024
|
298 |
+
msgid "Green"
|
299 |
+
msgstr "Grøn"
|
300 |
+
|
301 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1025
|
302 |
+
msgid "Blue"
|
303 |
+
msgstr "Blå"
|
304 |
+
|
305 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1026
|
306 |
+
msgid "Red"
|
307 |
+
msgstr "Rød"
|
308 |
+
|
309 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1027
|
310 |
+
msgid "Brown"
|
311 |
+
msgstr "Brun"
|
312 |
+
|
313 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1028
|
314 |
+
msgid "Gray"
|
315 |
+
msgstr "Grå"
|
316 |
+
|
317 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1037
|
318 |
+
msgid "Text"
|
319 |
+
msgstr "Tekst"
|
320 |
+
|
321 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1041
|
322 |
+
msgid "Protected"
|
323 |
+
msgstr "Beskyttet"
|
324 |
+
|
325 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1042
|
326 |
+
msgid "Secured"
|
327 |
+
msgstr "Sikrer"
|
328 |
+
|
329 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1043
|
330 |
+
msgid "Scanned"
|
331 |
+
msgstr "Scannet"
|
332 |
+
|
333 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1044
|
334 |
+
msgid "Protected by"
|
335 |
+
msgstr "Beskyttet af"
|
336 |
+
|
337 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1050
|
338 |
+
msgid "Orientation"
|
339 |
+
msgstr "Retning"
|
340 |
+
|
341 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1054
|
342 |
+
msgid "Horizontal"
|
343 |
+
msgstr "Horisontalt"
|
344 |
+
|
345 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1055
|
346 |
+
msgid "Vertical"
|
347 |
+
msgstr "Vertikalt"
|
348 |
+
|
349 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1061
|
350 |
+
msgid "Image border"
|
351 |
+
msgstr "Billedramme"
|
352 |
+
|
353 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1069
|
354 |
+
msgid "Language"
|
355 |
+
msgstr "Sprog"
|
356 |
+
|
357 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1073
|
358 |
+
msgid "English (US)"
|
359 |
+
msgstr "Engelsk (US)"
|
360 |
+
|
361 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1074
|
362 |
+
msgid "English (UK)"
|
363 |
+
msgstr "Engelsk (UK)"
|
364 |
+
|
365 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1075
|
366 |
+
msgid "Spanish"
|
367 |
+
msgstr "Spansk"
|
368 |
+
|
369 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1076
|
370 |
+
msgid "German"
|
371 |
+
msgstr "Tysk"
|
372 |
+
|
373 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1077
|
374 |
+
msgid "Italian"
|
375 |
+
msgstr "Italiensk"
|
376 |
+
|
377 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1078
|
378 |
+
msgid "Japanese"
|
379 |
+
msgstr "Japansk"
|
380 |
+
|
381 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1079
|
382 |
+
msgid "Chinese (Simplified)"
|
383 |
+
msgstr "Kinesisk (Forsimplet)"
|
384 |
+
|
385 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1080
|
386 |
+
msgid "Chinese (Traditional)"
|
387 |
+
msgstr "Kinesisk (Traditionel)"
|
388 |
+
|
389 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1088
|
390 |
+
msgid "Source"
|
391 |
+
msgstr "Kilde"
|
392 |
+
|
393 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1089
|
394 |
+
msgid "Here is your generated code. Place it on your website (as html widget) to show that you are protected."
|
395 |
+
msgstr "Her er din genererede kode. Placér den (som HTML-widget) på din website for at vise, at du er beskyttet."
|
396 |
+
|
397 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1102
|
398 |
+
msgid "Clear Options"
|
399 |
+
msgstr "Ryd indstillinger"
|
400 |
+
|
401 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1105
|
402 |
+
msgid "Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created."
|
403 |
+
msgstr "Klik på denne knap, hvis du vil slette pluginnets indstillinger. Deaktivering af Secure WordPress-pluginnet fjerner al data, det måtte have oprettet."
|
404 |
+
|
405 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1110
|
406 |
+
msgid "Delete Options"
|
407 |
+
msgstr "Slet indstillinger"
|
408 |
+
|
409 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1122
|
410 |
+
msgid "About the plugin"
|
411 |
+
msgstr "Om pluginnet"
|
412 |
+
|
413 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1127
|
414 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1129
|
415 |
+
msgid "Scan this QR Code to donate for me"
|
416 |
+
msgstr "Scan denne QR-kode og foretag en donation på mine vegne"
|
417 |
+
|
418 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1142
|
419 |
+
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
420 |
+
msgstr "Yderligere information: Besøg <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">pluginnets hjemmeside</a> for mere information eller for at hente den seneste udgave af dette plugin."
|
421 |
+
|
422 |
+
#: d:\wordpress\plugins\secure-wordpress/secure-wordpress.php:1142
|
423 |
+
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
|
424 |
+
msgstr "Ønsker du at takke mig? Kig på min <a href=\"http://bueltge.de/wunschliste/\">ønskeliste</a>."
|
425 |
+
|
languages/secure_wp-de_DE.mo
CHANGED
Binary file
|
languages/secure_wp-de_DE.po
CHANGED
@@ -2,187 +2,532 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Secure WordPress\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
|
|
12 |
"X-Poedit-SourceCharset: utf-8\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e
|
14 |
"X-Poedit-Basepath: ../\n"
|
|
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
16 |
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
msgid "Settings"
|
19 |
msgstr "Einstellungen"
|
20 |
|
21 |
-
#: secure-wordpress.php:
|
22 |
-
#: secure-wordpress.php:
|
|
|
23 |
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
24 |
-
msgstr "<a href=\"http://
|
25 |
|
26 |
-
#: secure-wordpress.php:
|
|
|
27 |
msgid "Options update."
|
28 |
msgstr "Einstellungen aktualisiert."
|
29 |
|
30 |
-
#: secure-wordpress.php:
|
|
|
31 |
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
32 |
msgstr "Alle Einträge in der Datenbank wurden entfernt. Jetzt deaktiviere das Plugin."
|
33 |
|
34 |
-
#: secure-wordpress.php:
|
35 |
-
#: secure-wordpress.php:
|
|
|
36 |
msgid "Secure WP"
|
37 |
msgstr "Secure WP"
|
38 |
|
39 |
-
|
40 |
-
#: secure-wordpress.php:
|
|
|
|
|
|
|
41 |
msgid "Secure WordPress"
|
42 |
msgstr "Secure WordPress"
|
43 |
|
44 |
-
#: secure-wordpress.php:
|
|
|
45 |
msgid "Version"
|
46 |
msgstr "Version"
|
47 |
|
48 |
-
#: secure-wordpress.php:
|
|
|
49 |
msgid "History"
|
50 |
msgstr "Historie"
|
51 |
|
52 |
-
#: secure-wordpress.php:
|
|
|
53 |
msgid "Author"
|
54 |
msgstr "Autor"
|
55 |
|
56 |
-
#: secure-wordpress.php:
|
57 |
-
|
|
|
58 |
msgstr "Einstellungen wurden nicht aktualisiert - du hast nicht genügend Rechte dazu!"
|
59 |
|
60 |
-
#: secure-wordpress.php:
|
61 |
-
|
62 |
-
|
|
|
63 |
|
64 |
-
#: secure-wordpress.php:
|
65 |
-
|
66 |
-
|
|
|
67 |
|
68 |
-
#: secure-wordpress.php:
|
69 |
-
|
|
|
70 |
msgstr "Alle Einträge in der Datenbank wurden entfernt."
|
71 |
|
72 |
-
#: secure-wordpress.php:
|
73 |
-
|
74 |
-
|
|
|
75 |
|
76 |
-
#: secure-wordpress.php:
|
77 |
-
#: secure-wordpress.php:
|
78 |
-
#: secure-wordpress.php:
|
|
|
|
|
79 |
msgid "Click to toggle"
|
80 |
msgstr "Zum umschalten klicken"
|
81 |
|
82 |
-
#: secure-wordpress.php:
|
|
|
83 |
msgid "Configuration"
|
84 |
msgstr "Einstellungen"
|
85 |
|
86 |
-
#: secure-wordpress.php:
|
|
|
87 |
msgid "Error-Messages"
|
88 |
msgstr "Fehler-Meldungen"
|
89 |
|
90 |
-
#: secure-wordpress.php:
|
91 |
-
|
92 |
-
|
|
|
93 |
|
94 |
-
#: secure-wordpress.php:
|
|
|
95 |
msgid "WordPress Version"
|
96 |
msgstr "WordPress Version"
|
97 |
|
98 |
-
#: secure-wordpress.php:
|
|
|
99 |
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
100 |
msgstr "Entfernen der Version von WordPress in allen Bereichen, inkl. Feed, nicht im Admin-Bereich"
|
101 |
|
102 |
-
#: secure-wordpress.php:
|
103 |
-
|
104 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
|
106 |
-
#: secure-wordpress.php:
|
107 |
-
|
108 |
-
|
|
|
109 |
|
110 |
-
#: secure-wordpress.php:
|
|
|
111 |
msgid "Really Simple Discovery"
|
112 |
msgstr "Really Simple Discovery"
|
113 |
|
114 |
-
#: secure-wordpress.php:
|
|
|
115 |
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
116 |
msgstr "Entfernt den link für Really Simple Discovery im head des Frontend"
|
117 |
|
118 |
-
#: secure-wordpress.php:
|
|
|
119 |
msgid "Windows Live Writer"
|
120 |
msgstr "Windows Live Writer"
|
121 |
|
122 |
-
#: secure-wordpress.php:
|
|
|
123 |
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
124 |
msgstr "Entfernt den link für Windows Live Writer im head des Frontend"
|
125 |
|
126 |
-
#: secure-wordpress.php:
|
|
|
127 |
msgid "Core Update"
|
128 |
msgstr "Core Update"
|
129 |
|
130 |
-
#: secure-wordpress.php:
|
|
|
131 |
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
132 |
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."
|
133 |
|
134 |
-
#: secure-wordpress.php:
|
|
|
135 |
msgid "Plugin Update"
|
136 |
msgstr "Plugin Update"
|
137 |
|
138 |
-
#: secure-wordpress.php:
|
|
|
139 |
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."
|
140 |
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."
|
141 |
|
142 |
-
#: secure-wordpress.php:
|
|
|
143 |
msgid "Theme Update"
|
144 |
msgstr "Theme Update"
|
145 |
|
146 |
-
#: secure-wordpress.php:
|
|
|
147 |
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."
|
148 |
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."
|
149 |
|
150 |
-
#: secure-wordpress.php:
|
151 |
-
|
152 |
-
|
|
|
153 |
|
154 |
-
#: secure-wordpress.php:
|
155 |
-
|
156 |
-
|
|
|
157 |
|
158 |
-
#: secure-wordpress.php:
|
|
|
159 |
msgid "Save Changes"
|
160 |
msgstr "Einstellungen aktualisieren"
|
161 |
|
162 |
-
#: secure-wordpress.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
msgid "Clear Options"
|
164 |
msgstr "Einstellungen löschen"
|
165 |
|
166 |
-
#: secure-wordpress.php:
|
167 |
-
|
|
|
168 |
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."
|
169 |
|
170 |
-
#: secure-wordpress.php:
|
|
|
171 |
msgid "Delete Options"
|
172 |
msgstr "Einstellungen löschen"
|
173 |
|
174 |
-
|
175 |
-
|
176 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
|
178 |
-
|
179 |
-
|
180 |
-
|
|
|
|
|
181 |
|
182 |
-
#: secure-wordpress.php:
|
183 |
-
|
184 |
-
|
|
|
185 |
|
186 |
-
|
187 |
-
|
|
|
|
|
188 |
|
2 |
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-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:370
|
29 |
+
#@ default
|
30 |
msgid "Settings"
|
31 |
msgstr "Einstellungen"
|
32 |
|
33 |
+
#: secure-wordpress.php:399
|
34 |
+
#: secure-wordpress.php:446
|
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:422
|
40 |
+
#@ secure_wp
|
41 |
msgid "Options update."
|
42 |
msgstr "Einstellungen aktualisiert."
|
43 |
|
44 |
+
#: secure-wordpress.php:424
|
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:438
|
50 |
+
#: secure-wordpress.php:449
|
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:445
|
58 |
+
#: secure-wordpress.php:773
|
59 |
+
#@ secure_wp
|
60 |
msgid "Secure WordPress"
|
61 |
msgstr "Secure WordPress"
|
62 |
|
63 |
+
#: secure-wordpress.php:469
|
64 |
+
#@ default
|
65 |
msgid "Version"
|
66 |
msgstr "Version"
|
67 |
|
68 |
+
#: secure-wordpress.php:469
|
69 |
+
#@ secure_wp
|
70 |
msgid "History"
|
71 |
msgstr "Historie"
|
72 |
|
73 |
+
#: secure-wordpress.php:469
|
74 |
+
#@ default
|
75 |
msgid "Author"
|
76 |
msgstr "Autor"
|
77 |
|
78 |
+
#: secure-wordpress.php:698
|
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:718
|
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:726
|
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:746
|
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:750
|
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:778
|
104 |
+
#: secure-wordpress.php:914
|
105 |
+
#: secure-wordpress.php:1027
|
106 |
+
#: secure-wordpress.php:1141
|
107 |
+
#@ default
|
108 |
msgid "Click to toggle"
|
109 |
msgstr "Zum umschalten klicken"
|
110 |
|
111 |
+
#: secure-wordpress.php:779
|
112 |
+
#@ secure_wp
|
113 |
msgid "Configuration"
|
114 |
msgstr "Einstellungen"
|
115 |
|
116 |
+
#: secure-wordpress.php:789
|
117 |
+
#@ secure_wp
|
118 |
msgid "Error-Messages"
|
119 |
msgstr "Fehler-Meldungen"
|
120 |
|
121 |
+
#: secure-wordpress.php:793
|
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:799
|
127 |
+
#@ secure_wp
|
128 |
msgid "WordPress Version"
|
129 |
msgstr "WordPress Version"
|
130 |
|
131 |
+
#: secure-wordpress.php:803
|
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:809
|
137 |
+
#@ secure_wp
|
138 |
+
msgid "WordPress Version in Backend"
|
139 |
+
msgstr "WordPress Version im Administrationsbereich"
|
140 |
+
|
141 |
+
#: secure-wordpress.php:813
|
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:819
|
147 |
+
#@ secure_wp
|
148 |
+
msgid "index.php"
|
149 |
+
msgstr "index.php"
|
150 |
|
151 |
+
#: secure-wordpress.php:823
|
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:829
|
157 |
+
#@ secure_wp
|
158 |
msgid "Really Simple Discovery"
|
159 |
msgstr "Really Simple Discovery"
|
160 |
|
161 |
+
#: secure-wordpress.php:833
|
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:839
|
167 |
+
#@ secure_wp
|
168 |
msgid "Windows Live Writer"
|
169 |
msgstr "Windows Live Writer"
|
170 |
|
171 |
+
#: secure-wordpress.php:843
|
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:849
|
177 |
+
#@ secure_wp
|
178 |
msgid "Core Update"
|
179 |
msgstr "Core Update"
|
180 |
|
181 |
+
#: secure-wordpress.php:853
|
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:859
|
187 |
+
#@ secure_wp
|
188 |
msgid "Plugin Update"
|
189 |
msgstr "Plugin Update"
|
190 |
|
191 |
+
#: secure-wordpress.php:863
|
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:870
|
197 |
+
#@ secure_wp
|
198 |
msgid "Theme Update"
|
199 |
msgstr "Theme Update"
|
200 |
|
201 |
+
#: secure-wordpress.php:874
|
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:891
|
207 |
+
#@ secure_wp
|
208 |
+
msgid "Block bad queries"
|
209 |
+
msgstr "Blocke negative Abfragen"
|
210 |
|
211 |
+
#: secure-wordpress.php:895
|
212 |
+
#@ secure_wp
|
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 |
+
#: secure-wordpress.php:903
|
217 |
+
#@ secure_wp
|
218 |
msgid "Save Changes"
|
219 |
msgstr "Einstellungen aktualisieren"
|
220 |
|
221 |
+
#: secure-wordpress.php:915
|
222 |
+
#@ secure_wp
|
223 |
+
msgid "Validate your site with a free malware scan from www.sitesecuritymonitor.com"
|
224 |
+
msgstr "Überprüfe deine Seite mit einem freien Malware-Scan von www.sitesecuritymonitor.com"
|
225 |
+
|
226 |
+
#: secure-wordpress.php:918
|
227 |
+
#@ secure_wp
|
228 |
+
msgid "Take us for a Test Drive - Free Scan"
|
229 |
+
msgstr "Nutze uns für eine Probefahrt - freier Scan"
|
230 |
+
|
231 |
+
#: secure-wordpress.php:919
|
232 |
+
#@ secure_wp
|
233 |
+
msgid "We understand you may have questions:"
|
234 |
+
msgstr "Wie verstehen, dass du Fragen hast:"
|
235 |
+
|
236 |
+
#: secure-wordpress.php:920
|
237 |
+
#@ secure_wp
|
238 |
+
msgid "What does this do for me?"
|
239 |
+
msgstr "Was bedeutet der Scan für mich?"
|
240 |
+
|
241 |
+
#: secure-wordpress.php:921
|
242 |
+
#@ secure_wp
|
243 |
+
msgid "Am I really safe? I need to be sure."
|
244 |
+
msgstr "Bin ich wirklich sicher? Ich muss sicher sein."
|
245 |
+
|
246 |
+
#: secure-wordpress.php:922
|
247 |
+
#@ secure_wp
|
248 |
+
msgid "Rest Assured, Site Security Monitor has you covered."
|
249 |
+
msgstr "Sei dir sicher, Site Security Monitor ist sicher."
|
250 |
+
|
251 |
+
#: secure-wordpress.php:924
|
252 |
+
#@ secure_wp
|
253 |
+
msgid "FREE scan looks for malware"
|
254 |
+
msgstr "FREIER scan um Malware zu finden"
|
255 |
+
|
256 |
+
#: secure-wordpress.php:925
|
257 |
+
#@ secure_wp
|
258 |
+
msgid "FREE report of website vulnerabilities found"
|
259 |
+
msgstr "FREIE Auswertung der gefundenen Schwachstellen auf einer Webseite"
|
260 |
+
|
261 |
+
#: secure-wordpress.php:926
|
262 |
+
#@ secure_wp
|
263 |
+
msgid "No setup, tuning and installation on your site - scan begins immediately"
|
264 |
+
msgstr "Keine Einrichtung, keine Anpassunge und Installationen auf deiner Site - der Scan kann sofort starten"
|
265 |
+
|
266 |
+
#: secure-wordpress.php:928
|
267 |
+
#@ secure_wp
|
268 |
+
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!"
|
269 |
+
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."
|
270 |
+
|
271 |
+
#: secure-wordpress.php:929
|
272 |
+
#@ secure_wp
|
273 |
+
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!"
|
274 |
+
msgstr "** Bonus: Du kannst das Site Security Monitor \"Safe-Seal\" in deine Site integrieren - zeige der Welt, dass du frei von Malware bist."
|
275 |
+
|
276 |
+
#: secure-wordpress.php:931
|
277 |
+
#@ secure_wp
|
278 |
+
msgid "The form"
|
279 |
+
msgstr "Das Formular"
|
280 |
+
|
281 |
+
#: secure-wordpress.php:932
|
282 |
+
#@ secure_wp
|
283 |
+
msgid "Use the follow form or use it on <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">our website</a>."
|
284 |
+
msgstr "Nutze das Formular oder gehe direkt über <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">unsere Website</a>."
|
285 |
+
|
286 |
+
#: secure-wordpress.php:967
|
287 |
+
#@ secure_wp
|
288 |
+
msgid "Full Name"
|
289 |
+
msgstr "Name, Vorname"
|
290 |
+
|
291 |
+
#: secure-wordpress.php:970
|
292 |
+
#: secure-wordpress.php:978
|
293 |
+
#: secure-wordpress.php:986
|
294 |
+
#: secure-wordpress.php:994
|
295 |
+
#: secure-wordpress.php:1010
|
296 |
+
#@ secure_wp
|
297 |
+
msgid "*required"
|
298 |
+
msgstr "*Pflichtfeld"
|
299 |
+
|
300 |
+
#: secure-wordpress.php:975
|
301 |
+
#@ secure_wp
|
302 |
+
msgid "eMail Adress"
|
303 |
+
msgstr "E-Mail Adresse"
|
304 |
+
|
305 |
+
#: secure-wordpress.php:978
|
306 |
+
#@ secure_wp
|
307 |
+
msgid ", eMail Address must match domain name"
|
308 |
+
msgstr ", die E-Mail Adresse muss den Domain-Namen enthalten"
|
309 |
+
|
310 |
+
#: secure-wordpress.php:983
|
311 |
+
#@ secure_wp
|
312 |
+
msgid "Website"
|
313 |
+
msgstr "Website"
|
314 |
+
|
315 |
+
#: secure-wordpress.php:991
|
316 |
+
#@ secure_wp
|
317 |
+
msgid "Phone"
|
318 |
+
msgstr "Telefon"
|
319 |
+
|
320 |
+
#: secure-wordpress.php:999
|
321 |
+
#@ secure_wp
|
322 |
+
msgid "Yes, I need help!"
|
323 |
+
msgstr "Ja, ich brauche Hilfe!"
|
324 |
+
|
325 |
+
#: secure-wordpress.php:1002
|
326 |
+
#@ secure_wp
|
327 |
+
msgid "Call me"
|
328 |
+
msgstr "Rufe mich an"
|
329 |
+
|
330 |
+
#: secure-wordpress.php:1007
|
331 |
+
#@ secure_wp
|
332 |
+
msgid "Terms and Conditions"
|
333 |
+
msgstr "Allgemeine Geschäftsbedingungen"
|
334 |
+
|
335 |
+
#: secure-wordpress.php:1010
|
336 |
+
#@ secure_wp
|
337 |
+
msgid ", I accept"
|
338 |
+
msgstr ", ich akzeptiere"
|
339 |
+
|
340 |
+
#: secure-wordpress.php:1017
|
341 |
+
#@ secure_wp
|
342 |
+
msgid "Get my Free Web Scan"
|
343 |
+
msgstr "Starte meinen freien Web-Scan"
|
344 |
+
|
345 |
+
#: secure-wordpress.php:1028
|
346 |
+
#@ secure_wp
|
347 |
+
msgid "Safe Seal"
|
348 |
+
msgstr "Safe Seal"
|
349 |
+
|
350 |
+
#: secure-wordpress.php:1058
|
351 |
+
#@ secure_wp
|
352 |
+
msgid "Color"
|
353 |
+
msgstr "Farbe"
|
354 |
+
|
355 |
+
#: secure-wordpress.php:1062
|
356 |
+
#@ secure_wp
|
357 |
+
msgid "Green"
|
358 |
+
msgstr "Grün"
|
359 |
+
|
360 |
+
#: secure-wordpress.php:1063
|
361 |
+
#@ secure_wp
|
362 |
+
msgid "Blue"
|
363 |
+
msgstr "Blau"
|
364 |
+
|
365 |
+
#: secure-wordpress.php:1064
|
366 |
+
#@ secure_wp
|
367 |
+
msgid "Red"
|
368 |
+
msgstr "Rot"
|
369 |
+
|
370 |
+
#: secure-wordpress.php:1065
|
371 |
+
#@ secure_wp
|
372 |
+
msgid "Brown"
|
373 |
+
msgstr "Braun"
|
374 |
+
|
375 |
+
#: secure-wordpress.php:1066
|
376 |
+
#@ secure_wp
|
377 |
+
msgid "Gray"
|
378 |
+
msgstr "Grau"
|
379 |
+
|
380 |
+
#: secure-wordpress.php:1075
|
381 |
+
#@ secure_wp
|
382 |
+
msgid "Text"
|
383 |
+
msgstr "Text"
|
384 |
+
|
385 |
+
#: secure-wordpress.php:1079
|
386 |
+
#@ secure_wp
|
387 |
+
msgid "Protected"
|
388 |
+
msgstr "Geschützt"
|
389 |
+
|
390 |
+
#: secure-wordpress.php:1080
|
391 |
+
#@ secure_wp
|
392 |
+
msgid "Secured"
|
393 |
+
msgstr "Sicher"
|
394 |
+
|
395 |
+
#: secure-wordpress.php:1081
|
396 |
+
#@ secure_wp
|
397 |
+
msgid "Scanned"
|
398 |
+
msgstr "Gescannt"
|
399 |
+
|
400 |
+
#: secure-wordpress.php:1082
|
401 |
+
#@ secure_wp
|
402 |
+
msgid "Protected by"
|
403 |
+
msgstr "Geschützt durch"
|
404 |
+
|
405 |
+
#: secure-wordpress.php:1088
|
406 |
+
#@ secure_wp
|
407 |
+
msgid "Orientation"
|
408 |
+
msgstr "Orientierung"
|
409 |
+
|
410 |
+
#: secure-wordpress.php:1092
|
411 |
+
#@ secure_wp
|
412 |
+
msgid "Horizontal"
|
413 |
+
msgstr "Horizontal"
|
414 |
+
|
415 |
+
#: secure-wordpress.php:1093
|
416 |
+
#@ secure_wp
|
417 |
+
msgid "Vertical"
|
418 |
+
msgstr "Vertical"
|
419 |
+
|
420 |
+
#: secure-wordpress.php:1099
|
421 |
+
#@ secure_wp
|
422 |
+
msgid "Image border"
|
423 |
+
msgstr "Bilder-Rahmen"
|
424 |
+
|
425 |
+
#: secure-wordpress.php:1107
|
426 |
+
#@ secure_wp
|
427 |
+
msgid "Language"
|
428 |
+
msgstr "Sprache"
|
429 |
+
|
430 |
+
#: secure-wordpress.php:1111
|
431 |
+
#@ secure_wp
|
432 |
+
msgid "English (US)"
|
433 |
+
msgstr "Englisch (US)"
|
434 |
+
|
435 |
+
#: secure-wordpress.php:1112
|
436 |
+
#@ secure_wp
|
437 |
+
msgid "English (UK)"
|
438 |
+
msgstr "Englisch (UK)"
|
439 |
+
|
440 |
+
#: secure-wordpress.php:1113
|
441 |
+
#@ secure_wp
|
442 |
+
msgid "Spanish"
|
443 |
+
msgstr "Spanisch"
|
444 |
+
|
445 |
+
#: secure-wordpress.php:1114
|
446 |
+
#@ secure_wp
|
447 |
+
msgid "German"
|
448 |
+
msgstr "Deutsch"
|
449 |
+
|
450 |
+
#: secure-wordpress.php:1115
|
451 |
+
#@ secure_wp
|
452 |
+
msgid "Italian"
|
453 |
+
msgstr "Italienisch"
|
454 |
+
|
455 |
+
#: secure-wordpress.php:1116
|
456 |
+
#@ secure_wp
|
457 |
+
msgid "Japanese"
|
458 |
+
msgstr "Japanisch"
|
459 |
+
|
460 |
+
#: secure-wordpress.php:1117
|
461 |
+
#@ secure_wp
|
462 |
+
msgid "Chinese (Simplified)"
|
463 |
+
msgstr "Chinesisch (Einfach)"
|
464 |
+
|
465 |
+
#: secure-wordpress.php:1118
|
466 |
+
#@ secure_wp
|
467 |
+
msgid "Chinese (Traditional)"
|
468 |
+
msgstr "Chinesisch (Traditonell)"
|
469 |
+
|
470 |
+
#: secure-wordpress.php:1127
|
471 |
+
#@ secure_wp
|
472 |
+
msgid "Here is your generated code. Place it on your website (as html widget) to show that you are protected."
|
473 |
+
msgstr "Hier ist der erstellte Code, platziere in ihn in deiner Site (als HTML Widget) um zu zeigen, dass du geschützt bist."
|
474 |
+
|
475 |
+
#: secure-wordpress.php:1142
|
476 |
+
#@ secure_wp
|
477 |
msgid "Clear Options"
|
478 |
msgstr "Einstellungen löschen"
|
479 |
|
480 |
+
#: secure-wordpress.php:1145
|
481 |
+
#@ secure_wp
|
482 |
+
msgid "Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created."
|
483 |
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."
|
484 |
|
485 |
+
#: secure-wordpress.php:1150
|
486 |
+
#@ secure_wp
|
487 |
msgid "Delete Options"
|
488 |
msgstr "Einstellungen löschen"
|
489 |
|
490 |
+
#. translators: plugin header field 'PluginURI'
|
491 |
+
#: secure-wordpress.php:0
|
492 |
+
#@ secure_wp
|
493 |
+
msgid "http://www.sitesecuritymonitor.com/secure-wordpress-plugin"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#. translators: plugin header field 'Author'
|
497 |
+
#: secure-wordpress.php:0
|
498 |
+
#@ secure_wp
|
499 |
+
msgid "jremillard"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#. translators: plugin header field 'AuthorURI'
|
503 |
+
#: secure-wordpress.php:0
|
504 |
+
#@ secure_wp
|
505 |
+
msgid "http://www.sitesecuritymonitor.com/"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: secure-wordpress.php:1031
|
509 |
+
#@ secure_wp
|
510 |
+
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>"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: secure-wordpress.php:1126
|
514 |
+
#@ secure_wp
|
515 |
+
msgid "Source"
|
516 |
+
msgstr "Quellcode"
|
517 |
|
518 |
+
#. translators: plugin header field 'Version'
|
519 |
+
#: secure-wordpress.php:0
|
520 |
+
#@ secure_wp
|
521 |
+
msgid "1.0.5"
|
522 |
+
msgstr ""
|
523 |
|
524 |
+
#: secure-wordpress.php:881
|
525 |
+
#@ secure_wp
|
526 |
+
msgid "WP Version on Scripts/Styles"
|
527 |
+
msgstr "WP Version bei Scripten/Stylesheets"
|
528 |
|
529 |
+
#: secure-wordpress.php:885
|
530 |
+
#@ secure_wp
|
531 |
+
msgid "Removes version of WordPress on the url form scripts and stylesheets only on frontend."
|
532 |
+
msgstr "Entfernt die WordPress Version an den URLs von Scripten und Stylesheets, nur im Frontend."
|
533 |
|
languages/secure_wp-es_ES.mo
ADDED
Binary file
|
languages/secure_wp-es_ES.po
ADDED
@@ -0,0 +1,241 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: secure_wp\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-06-22 12:29+0100\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Pablo <pjimcal@yahoo.com>\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 |
+
"X-Poedit-Language: Spanish\n"
|
13 |
+
"X-Poedit-Country: SPAIN\n"
|
14 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
+
|
16 |
+
#: secure-wordpress.php:337
|
17 |
+
msgid "Settings"
|
18 |
+
msgstr "Configuración"
|
19 |
+
|
20 |
+
# @ secure_wp
|
21 |
+
#: secure-wordpress.php:366
|
22 |
+
#: secure-wordpress.php:413
|
23 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
24 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentación</a>"
|
25 |
+
|
26 |
+
# @ secure_wp
|
27 |
+
#: secure-wordpress.php:389
|
28 |
+
msgid "Options update."
|
29 |
+
msgstr "Opciones de actualización."
|
30 |
+
|
31 |
+
# @ secure_wp
|
32 |
+
#: secure-wordpress.php:391
|
33 |
+
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
34 |
+
msgstr "Todas las entradas en la base de datos fueron borradas. Ahora desactive este plugin."
|
35 |
+
|
36 |
+
# @ secure_wp
|
37 |
+
#: secure-wordpress.php:405
|
38 |
+
#: secure-wordpress.php:416
|
39 |
+
msgid "Secure WP"
|
40 |
+
msgstr "WP Seguro(Secure WP)"
|
41 |
+
|
42 |
+
# @ secure_wp
|
43 |
+
#: secure-wordpress.php:412
|
44 |
+
#: secure-wordpress.php:703
|
45 |
+
msgid "Secure WordPress"
|
46 |
+
msgstr "WordPress Seguro(Secure WordPress)"
|
47 |
+
|
48 |
+
#: secure-wordpress.php:436
|
49 |
+
msgid "Version"
|
50 |
+
msgstr "Versión"
|
51 |
+
|
52 |
+
# @ secure_wp
|
53 |
+
#: secure-wordpress.php:436
|
54 |
+
msgid "History"
|
55 |
+
msgstr "Historia"
|
56 |
+
|
57 |
+
#: secure-wordpress.php:436
|
58 |
+
msgid "Author"
|
59 |
+
msgstr "Autor"
|
60 |
+
|
61 |
+
# @ secure_wp
|
62 |
+
#: secure-wordpress.php:629
|
63 |
+
msgid "Options not update - you don‘t have the privilidges to do this!"
|
64 |
+
msgstr "Opciones no actualizadas. Usted no tiene los privilegios para hacer esto!"
|
65 |
+
|
66 |
+
# @ secure_wp
|
67 |
+
#: secure-wordpress.php:649
|
68 |
+
msgid "Entries was not delleted - you don‘t have the privilidges to do this!"
|
69 |
+
msgstr "Las entradas no fueron eliminadas - Usted no tiene los privilegios para hacer esto!"
|
70 |
+
|
71 |
+
# @ secure_wp
|
72 |
+
#: secure-wordpress.php:657
|
73 |
+
msgid "Entries was not delleted - check the checkbox!"
|
74 |
+
msgstr "Las entradas no fueron eliminadas - Revise la casilla de verificación!(checkbox)"
|
75 |
+
|
76 |
+
# @ secure_wp
|
77 |
+
#: secure-wordpress.php:677
|
78 |
+
msgid "All entries in the database was cleared."
|
79 |
+
msgstr "Todas las entradas en la Base de Datos fueron borradas."
|
80 |
+
|
81 |
+
# @ secure_wp
|
82 |
+
#: secure-wordpress.php:681
|
83 |
+
msgid "Entries was not delleted - check the checkbox or you don‘t have the privilidges to do this!"
|
84 |
+
msgstr "Las entradas no fueron eliminadas - Revise la casilla de verificación!(checkbox) o Usted no tiene los privilegios para hacer esto!"
|
85 |
+
|
86 |
+
#: secure-wordpress.php:708
|
87 |
+
#: secure-wordpress.php:843
|
88 |
+
#: secure-wordpress.php:863
|
89 |
+
msgid "Click to toggle"
|
90 |
+
msgstr "Haga clic para alternar"
|
91 |
+
|
92 |
+
# @ secure_wp
|
93 |
+
#: secure-wordpress.php:709
|
94 |
+
msgid "Configuration"
|
95 |
+
msgstr "Configuración"
|
96 |
+
|
97 |
+
# @ secure_wp
|
98 |
+
#: secure-wordpress.php:719
|
99 |
+
msgid "Error-Messages"
|
100 |
+
msgstr "Mensaje de error"
|
101 |
+
|
102 |
+
# @ secure_wp
|
103 |
+
#: secure-wordpress.php:729
|
104 |
+
msgid "WordPress Version"
|
105 |
+
msgstr "Versión de WordPress"
|
106 |
+
|
107 |
+
# @ secure_wp
|
108 |
+
#: secure-wordpress.php:733
|
109 |
+
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
110 |
+
msgstr "Remover versión de WordPress de todas las areas, tambien de los feeds (no del escritorio/dashboard)"
|
111 |
+
|
112 |
+
# @ secure_wp
|
113 |
+
#: secure-wordpress.php:759
|
114 |
+
msgid "Really Simple Discovery"
|
115 |
+
msgstr "Really Simple Discovery"
|
116 |
+
|
117 |
+
# @ secure_wp
|
118 |
+
#: secure-wordpress.php:763
|
119 |
+
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
120 |
+
msgstr "Remover el link \"Really Simple Discovery\" ubicado en <code>wp_head</code> de la interfaz del ususario(frontend)"
|
121 |
+
|
122 |
+
# @ secure_wp
|
123 |
+
#: secure-wordpress.php:769
|
124 |
+
msgid "Windows Live Writer"
|
125 |
+
msgstr "Windows Live Writer"
|
126 |
+
|
127 |
+
# @ secure_wp
|
128 |
+
#: secure-wordpress.php:773
|
129 |
+
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
130 |
+
msgstr "Remover el link \"Windows Live Writer\" ubicado en <code>wp_head</code> de la interfaz del ususario(frontend)"
|
131 |
+
|
132 |
+
# @ secure_wp
|
133 |
+
#: secure-wordpress.php:779
|
134 |
+
msgid "Core Update"
|
135 |
+
msgstr "Actualización del Core "
|
136 |
+
|
137 |
+
# @ secure_wp
|
138 |
+
#: secure-wordpress.php:783
|
139 |
+
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
140 |
+
msgstr "Remover la actualización del core de WordPress a no-administradores. Solo se muestra el mensaje de nueva versión del core, a usuarios con derecho para actualizar."
|
141 |
+
|
142 |
+
# @ secure_wp
|
143 |
+
#: secure-wordpress.php:789
|
144 |
+
msgid "Plugin Update"
|
145 |
+
msgstr "Actualización de Plugin"
|
146 |
+
|
147 |
+
# @ secure_wp
|
148 |
+
#: secure-wordpress.php:793
|
149 |
+
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."
|
150 |
+
msgstr "Remover actualizaciónes de Plugin a no-administradores. Solo se muestra el mensaje de nueva versionde plugin, a usuarios con derechos para editar plugins."
|
151 |
+
|
152 |
+
# @ secure_wp
|
153 |
+
#: secure-wordpress.php:800
|
154 |
+
msgid "Theme Update"
|
155 |
+
msgstr "Actualización de tema"
|
156 |
+
|
157 |
+
# @ secure_wp
|
158 |
+
#: secure-wordpress.php:804
|
159 |
+
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."
|
160 |
+
msgstr "Remover Actualización del tema a no-administradores.Solo se muestra el mensaje de nueva versión de tema, a usuarios con derechos para editar temas."
|
161 |
+
|
162 |
+
# @ secure_wp
|
163 |
+
#: secure-wordpress.php:811
|
164 |
+
msgid "WP Scanner"
|
165 |
+
msgstr "Escáner WP(WP Scanner)"
|
166 |
+
|
167 |
+
# @ secure_wp
|
168 |
+
#: secure-wordpress.php:815
|
169 |
+
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 is 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."
|
170 |
+
msgstr "Escáner WP(WP Scanner) es un recurso gratuito en línea que los administradores de blog puede utilizar para proporcionar un nivel mayor de seguridad a wordpress. Para ejecutar wp-scanner marca esta opción y se añadira <code> <! - Wpscanner --></ code> a su plantilla actual de wordpress. Después de esto, visita <a href=\"http://blogsecurity.net/wpscan\"> http://blogsecurity.net/wpscan </ a> y scanee su sitio."
|
171 |
+
|
172 |
+
# @ secure_wp
|
173 |
+
#: secure-wordpress.php:833
|
174 |
+
msgid "Save Changes"
|
175 |
+
msgstr "Guardar Cambios"
|
176 |
+
|
177 |
+
# @ secure_wp
|
178 |
+
#: secure-wordpress.php:844
|
179 |
+
msgid "Clear Options"
|
180 |
+
msgstr "Limpiar Opciones"
|
181 |
+
|
182 |
+
# @ secure_wp
|
183 |
+
#: secure-wordpress.php:847
|
184 |
+
msgid "Click this button to delete settings of this plugin. Deactivating Secure WordPress plugin remove any data that may have been created."
|
185 |
+
msgstr "Presione este botón para eliminar la configuración de este plugin. Desactivando el plugin Secure WordPress se removerá cualquier dato que haya sido creado."
|
186 |
+
|
187 |
+
# @ secure_wp
|
188 |
+
#: secure-wordpress.php:852
|
189 |
+
msgid "Delete Options"
|
190 |
+
msgstr "Eliminar Opciones"
|
191 |
+
|
192 |
+
# @ secure_wp
|
193 |
+
#: secure-wordpress.php:864
|
194 |
+
msgid "About the plugin"
|
195 |
+
msgstr "Acerca del Plugin"
|
196 |
+
|
197 |
+
# @ secure_wp
|
198 |
+
#: secure-wordpress.php:877
|
199 |
+
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
200 |
+
msgstr "Más información: Visite la <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">página principal del Plugin</ a> para obtener más información o para tomar la última versión de este plugin ."
|
201 |
+
|
202 |
+
# @ secure_wp
|
203 |
+
#: secure-wordpress.php:877
|
204 |
+
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
|
205 |
+
msgstr "¿Desea agradecerme? Visita mi <a href=\"http://bueltge.de/wunschliste/\">Lista de deseos</a>."
|
206 |
+
|
207 |
+
# @ secure_wp
|
208 |
+
#: secure-wordpress.php:753
|
209 |
+
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
210 |
+
msgstr "Crear un archivo <code>index.php</code> en <code>/plugins/</code> y<code>/themes/</code>, para evitar que se muestre su lista de directorios."
|
211 |
+
|
212 |
+
# @ secure_wp
|
213 |
+
#: secure-wordpress.php:739
|
214 |
+
msgid "WordPress Version in Backend"
|
215 |
+
msgstr "Versión de WordPress en la parte interna(Backend)"
|
216 |
+
|
217 |
+
# @ secure_wp
|
218 |
+
#: secure-wordpress.php:749
|
219 |
+
msgid "index.php"
|
220 |
+
msgstr "index.php"
|
221 |
+
|
222 |
+
# @ secure_wp
|
223 |
+
#: secure-wordpress.php:743
|
224 |
+
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."
|
225 |
+
msgstr "Remover la versión de WordPress del escritorio(dashboard) a no-administradores. Solo se muestra la versión de WordPress a usuarios con derechos para editar plugins."
|
226 |
+
|
227 |
+
# @ secure_wp
|
228 |
+
#: secure-wordpress.php:723
|
229 |
+
msgid "Deactivates tooltip and error message at login of WordPress"
|
230 |
+
msgstr "Desactivar la descripción y el mensaje de error, en el formulario de inicio de sesión de WordPress."
|
231 |
+
|
232 |
+
# @ secure_wp
|
233 |
+
#: secure-wordpress.php:821
|
234 |
+
msgid "Block bad queries"
|
235 |
+
msgstr "Bloqueo de peticiones maliciosas"
|
236 |
+
|
237 |
+
# @ secure_wp
|
238 |
+
#: secure-wordpress.php:825
|
239 |
+
msgid "Protect WordPress against malicious URL requests, see more informations on 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>"
|
240 |
+
msgstr "Proteger a WordPress de peticiones de URL maliciosas, ver más información en el <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"leer este post\" >post de Jeff Starr</a>"
|
241 |
+
|
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
ADDED
Binary file
|
languages/secure_wp-fr_FR.po
ADDED
@@ -0,0 +1,246 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Secure WordPress\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-03-10 22:27+0100\n"
|
6 |
+
"PO-Revision-Date: 2010-03-10 22:28+0100\n"
|
7 |
+
"Last-Translator: JeoffreyLac <lascarduweb@hotmail.com>\n"
|
8 |
+
"Language-Team: JeoffreyLac\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-SourceCharset: utf-8\n"
|
14 |
+
"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\n"
|
15 |
+
"X-Poedit-Basepath: ../\n"
|
16 |
+
"X-Textdomain-Support: yes\n"
|
17 |
+
"X-Poedit-Language: French\n"
|
18 |
+
"X-Poedit-Country: FRANCE\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
|
21 |
+
#: secure-wordpress.php:337
|
22 |
+
msgid "Settings"
|
23 |
+
msgstr "Réglages"
|
24 |
+
|
25 |
+
# @ secure_wp
|
26 |
+
#: secure-wordpress.php:366
|
27 |
+
#: secure-wordpress.php:413
|
28 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
29 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
30 |
+
|
31 |
+
# @ secure_wp
|
32 |
+
#: secure-wordpress.php:389
|
33 |
+
msgid "Options update."
|
34 |
+
msgstr "Mettre à jour les options."
|
35 |
+
|
36 |
+
# @ secure_wp
|
37 |
+
#: secure-wordpress.php:391
|
38 |
+
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
39 |
+
msgstr "Toutes les informations dans la base de données ont été effacées. Vous pouvez désormais désactiver le plugin."
|
40 |
+
|
41 |
+
# @ secure_wp
|
42 |
+
#: secure-wordpress.php:405
|
43 |
+
#: secure-wordpress.php:416
|
44 |
+
msgid "Secure WP"
|
45 |
+
msgstr "Secure WP"
|
46 |
+
|
47 |
+
# @ secure_wp
|
48 |
+
#: secure-wordpress.php:412
|
49 |
+
#: secure-wordpress.php:704
|
50 |
+
msgid "Secure WordPress"
|
51 |
+
msgstr "Secure WordPress"
|
52 |
+
|
53 |
+
#: secure-wordpress.php:436
|
54 |
+
msgid "Version"
|
55 |
+
msgstr "Version"
|
56 |
+
|
57 |
+
# @ secure_wp
|
58 |
+
#: secure-wordpress.php:436
|
59 |
+
msgid "History"
|
60 |
+
msgstr "Historique"
|
61 |
+
|
62 |
+
#: secure-wordpress.php:436
|
63 |
+
msgid "Author"
|
64 |
+
msgstr "Auteur"
|
65 |
+
|
66 |
+
# @ secure_wp
|
67 |
+
#: secure-wordpress.php:630
|
68 |
+
msgid "Options not update - you don‘t have the privilidges to do this!"
|
69 |
+
msgstr "Les options n'ont pas été mises à jour - vous n'avez pas les privilèges requis."
|
70 |
+
|
71 |
+
# @ secure_wp
|
72 |
+
#: secure-wordpress.php:650
|
73 |
+
msgid "Entries was not delleted - you don‘t have the privilidges to do this!"
|
74 |
+
msgstr "Les informations n'ont pas pu être supprimées - vous n'avez pas les privilèges requis."
|
75 |
+
|
76 |
+
# @ secure_wp
|
77 |
+
#: secure-wordpress.php:658
|
78 |
+
msgid "Entries was not delleted - check the checkbox!"
|
79 |
+
msgstr "Les informations n'ont pas pu être supprimées - vérifiez la case à cocher!"
|
80 |
+
|
81 |
+
# @ secure_wp
|
82 |
+
#: secure-wordpress.php:678
|
83 |
+
msgid "All entries in the database was cleared."
|
84 |
+
msgstr "Toutes les informations dans la base de données ont été effacées."
|
85 |
+
|
86 |
+
# @ secure_wp
|
87 |
+
#: secure-wordpress.php:682
|
88 |
+
msgid "Entries was not delleted - check the checkbox or you don‘t have the privilidges to do this!"
|
89 |
+
msgstr "Les informations n'ont pas été effacées - vérifiez la case à cocher et assurez-vous d'avoir les privilèges pour effectuer cette action."
|
90 |
+
|
91 |
+
#: secure-wordpress.php:709
|
92 |
+
#: secure-wordpress.php:844
|
93 |
+
#: secure-wordpress.php:864
|
94 |
+
msgid "Click to toggle"
|
95 |
+
msgstr "Cliquer pour basculer"
|
96 |
+
|
97 |
+
# @ secure_wp
|
98 |
+
#: secure-wordpress.php:710
|
99 |
+
msgid "Configuration"
|
100 |
+
msgstr "Configuration"
|
101 |
+
|
102 |
+
# @ secure_wp
|
103 |
+
#: secure-wordpress.php:720
|
104 |
+
msgid "Error-Messages"
|
105 |
+
msgstr "Messages d'erreur"
|
106 |
+
|
107 |
+
# @ secure_wp
|
108 |
+
#: secure-wordpress.php:724
|
109 |
+
msgid "Deactivates tooltip and error message at login of WordPress"
|
110 |
+
msgstr "Désactive la suggestion et le message d'erreur à la connection de Wordpress"
|
111 |
+
|
112 |
+
# @ secure_wp
|
113 |
+
#: secure-wordpress.php:730
|
114 |
+
msgid "WordPress Version"
|
115 |
+
msgstr "Version WordPress"
|
116 |
+
|
117 |
+
# @ secure_wp
|
118 |
+
#: secure-wordpress.php:734
|
119 |
+
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
120 |
+
msgstr "Supprime la version WordPress dans toutes les zones, y compris le flux, mais pas dans la partie admin."
|
121 |
+
|
122 |
+
# @ secure_wp
|
123 |
+
#: secure-wordpress.php:740
|
124 |
+
msgid "WordPress Version in Backend"
|
125 |
+
msgstr "WordPres Version dans Backend"
|
126 |
+
|
127 |
+
# @ secure_wp
|
128 |
+
#: secure-wordpress.php:744
|
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 "Supprime la version de WordPress dans la zone d'administration pour les non-administrateurs. Montre la version de Wordpress uniquement aux utilisateurs avec les droits d'édition de vos plugins."
|
131 |
+
|
132 |
+
# @ secure_wp
|
133 |
+
#: secure-wordpress.php:750
|
134 |
+
msgid "index.php"
|
135 |
+
msgstr "index.php"
|
136 |
+
|
137 |
+
# @ secure_wp
|
138 |
+
#: secure-wordpress.php:754
|
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 "crée le fichier <code>index.php</code> dans les répertoires <code>/plugins/</code> et<code>/themes/</code> pour éviter de montrer votre liste de répertoire."
|
141 |
+
|
142 |
+
# @ secure_wp
|
143 |
+
#: secure-wordpress.php:760
|
144 |
+
msgid "Really Simple Discovery"
|
145 |
+
msgstr "Really Simple Discovery"
|
146 |
+
|
147 |
+
# @ secure_wp
|
148 |
+
#: secure-wordpress.php:764
|
149 |
+
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
150 |
+
msgstr "Supprime le lien de Really Simple Discovery dans <code>wp_head</code> du frontend"
|
151 |
+
|
152 |
+
# @ secure_wp
|
153 |
+
#: secure-wordpress.php:770
|
154 |
+
msgid "Windows Live Writer"
|
155 |
+
msgstr "Windows Live Writer"
|
156 |
+
|
157 |
+
# @ secure_wp
|
158 |
+
#: secure-wordpress.php:774
|
159 |
+
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
160 |
+
msgstr "Supprime le lien de Windows Live Writer dans <code>wp_head</code> du frontend"
|
161 |
+
|
162 |
+
# @ secure_wp
|
163 |
+
#: secure-wordpress.php:780
|
164 |
+
msgid "Core Update"
|
165 |
+
msgstr "Mise à jour du noyau"
|
166 |
+
|
167 |
+
# @ secure_wp
|
168 |
+
#: secure-wordpress.php:784
|
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 "Supprime la mise à jour du Noyau WordPress pour tout les utilisateurs sauf l'administrateur. Affiche un message lors de la disponibilité d'une nouvelle version WordPress seulement pour les utilisateurs possédant les droits de mettre à jour."
|
171 |
+
|
172 |
+
# @ secure_wp
|
173 |
+
#: secure-wordpress.php:790
|
174 |
+
msgid "Plugin Update"
|
175 |
+
msgstr "Mise à jour Plugin"
|
176 |
+
|
177 |
+
# @ secure_wp
|
178 |
+
#: secure-wordpress.php:794
|
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 "Supprime la mise à jour des plugins pour tout les utilisateurs sauf l'administrateur. Affiche un message lors de la disponibilité d'un plugin dans le panneau d'administration seulement aux utilisateurs possédants les droits d'éditer les plugins."
|
181 |
+
|
182 |
+
# @ secure_wp
|
183 |
+
#: secure-wordpress.php:801
|
184 |
+
msgid "Theme Update"
|
185 |
+
msgstr "Mise à jour du thème."
|
186 |
+
|
187 |
+
# @ secure_wp
|
188 |
+
#: secure-wordpress.php:805
|
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 "Supprime la mise à jour du thème à tout les utilisateurs sauf l'administrateur. Affiche un message lors d'une nouvelle version de thème seulement aux utilisateurs avec les droits permettant d'éditer les thèmes."
|
191 |
+
|
192 |
+
# @ secure_wp
|
193 |
+
#: secure-wordpress.php:812
|
194 |
+
msgid "WP Scanner"
|
195 |
+
msgstr "WP Scanner"
|
196 |
+
|
197 |
+
# @ secure_wp
|
198 |
+
#: secure-wordpress.php:816
|
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 is 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 "Le scanner WordPress est une ressource gratuite en ligne permettant aux administrateurs de blog de mesurer le niveau de sécurité de leurs installations WordPress. Pour lancer wp-scanner, cochez cette option et ajouter <code><!-- wpscanner --></code> à votre template WordPress actuellement utilisé. Aller ensuite sur : <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> et scanner votre site."
|
201 |
+
|
202 |
+
# @ secure_wp
|
203 |
+
#: secure-wordpress.php:822
|
204 |
+
msgid "Block bad queries"
|
205 |
+
msgstr "Bloquer les mauvaises requêtes"
|
206 |
+
|
207 |
+
# @ secure_wp
|
208 |
+
#: secure-wordpress.php:826
|
209 |
+
msgid "Protect WordPress against malicious URL requests, see more informations on 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 "Protège WordPress contre les requêtes malicieuses d'URL, jettez un oeil à cet article pour de plus amples informations : <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >Jeff Starr - Malicious url req</a>"
|
211 |
+
|
212 |
+
# @ secure_wp
|
213 |
+
#: secure-wordpress.php:834
|
214 |
+
msgid "Save Changes"
|
215 |
+
msgstr "Sauvegarder les changements"
|
216 |
+
|
217 |
+
# @ secure_wp
|
218 |
+
#: secure-wordpress.php:845
|
219 |
+
msgid "Clear Options"
|
220 |
+
msgstr "Options de suppression"
|
221 |
+
|
222 |
+
# @ secure_wp
|
223 |
+
#: secure-wordpress.php:848
|
224 |
+
msgid "Click this button to delete settings of this plugin. Deactivating Secure WordPress plugin remove any data that may have been created."
|
225 |
+
msgstr "Cocher et cliquer sur ce bouton pour effacer toutes les configurations de ce plugin. La désactivation du plugin Secure WordPress supprime toutes les données du plugin."
|
226 |
+
|
227 |
+
# @ secure_wp
|
228 |
+
#: secure-wordpress.php:853
|
229 |
+
msgid "Delete Options"
|
230 |
+
msgstr "Options d'effacement"
|
231 |
+
|
232 |
+
# @ secure_wp
|
233 |
+
#: secure-wordpress.php:865
|
234 |
+
msgid "About the plugin"
|
235 |
+
msgstr "A propos du plugin"
|
236 |
+
|
237 |
+
# @ secure_wp
|
238 |
+
#: secure-wordpress.php:878
|
239 |
+
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
240 |
+
msgstr "Complément d'information : Visitez la : <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\"> page officielle du plugin</a> pour plus d'informations ou pour récupérer la dernière version du plugin."
|
241 |
+
|
242 |
+
# @ secure_wp
|
243 |
+
#: secure-wordpress.php:878
|
244 |
+
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
|
245 |
+
msgstr "Vous voulez me dire merci ? Visitez ma <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
|
246 |
+
|
languages/secure_wp-hu_HU.mo
CHANGED
Binary file
|
languages/secure_wp-hu_HU.po
CHANGED
@@ -9,180 +9,229 @@ msgstr ""
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
|
|
12 |
"X-Poedit-SourceCharset: utf-8\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e
|
14 |
"X-Poedit-Basepath: ../\n"
|
|
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
16 |
|
17 |
-
#: secure-wordpress.php:
|
18 |
msgid "Settings"
|
19 |
msgstr "Beállítások"
|
20 |
|
21 |
-
#: secure-wordpress.php:
|
22 |
-
#: secure-wordpress.php:
|
|
|
23 |
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
24 |
msgstr "<a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">Dokumentációk</a>"
|
25 |
|
26 |
-
#: secure-wordpress.php:
|
|
|
27 |
msgid "Options update."
|
28 |
msgstr "Beállítások aktualizálva."
|
29 |
|
30 |
-
#: secure-wordpress.php:
|
|
|
31 |
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
32 |
msgstr "Az adatbankban minden bejegyzés törölve. Most deaktiválom a Plugint."
|
33 |
|
34 |
-
#: secure-wordpress.php:
|
35 |
-
#: secure-wordpress.php:
|
|
|
36 |
msgid "Secure WP"
|
37 |
msgstr "Secure WP"
|
38 |
|
39 |
-
#: secure-wordpress.php:
|
40 |
-
#: secure-wordpress.php:
|
|
|
41 |
msgid "Secure WordPress"
|
42 |
msgstr "Secure WordPress"
|
43 |
|
44 |
-
#: secure-wordpress.php:
|
45 |
msgid "Version"
|
46 |
msgstr "Verzió"
|
47 |
|
48 |
-
#: secure-wordpress.php:
|
|
|
49 |
msgid "History"
|
50 |
msgstr "Előzmények"
|
51 |
|
52 |
-
#: secure-wordpress.php:
|
53 |
msgid "Author"
|
54 |
msgstr "Szerző"
|
55 |
|
56 |
-
#: secure-wordpress.php:
|
|
|
57 |
msgid "Options not update - you don‘t have the privilidges to do this!"
|
58 |
msgstr "A beállítások nem aktualizálódtak. Nem rendelkezel a megfelelő jogokkal!"
|
59 |
|
60 |
-
#: secure-wordpress.php:
|
|
|
61 |
msgid "Entries was not delleted - you don‘t have the privilidges to do this!"
|
62 |
msgstr "A beállítások nem törlődtek. Nem rendelkezel a megfelelő jogokkal!"
|
63 |
|
64 |
-
#: secure-wordpress.php:
|
|
|
65 |
msgid "Entries was not delleted - check the checkbox!"
|
66 |
msgstr "A beállítások nem törlődtek - ellenőrizd a Checkbox-ot! "
|
67 |
|
68 |
-
#: secure-wordpress.php:
|
|
|
69 |
msgid "All entries in the database was cleared."
|
70 |
msgstr "Az adatbankban minden bejegyzés törölve."
|
71 |
|
72 |
-
#: secure-wordpress.php:
|
|
|
73 |
msgid "Entries was not delleted - check the checkbox or you don‘t have the privilidges to do this!"
|
74 |
msgstr "A beállítások nem törlődtek - ellenőrizd a Checkbox-ot vagy nem rendelkezel a megfelelő jogosultságokkal! "
|
75 |
|
76 |
-
#: secure-wordpress.php:
|
77 |
-
#: secure-wordpress.php:
|
78 |
-
#: secure-wordpress.php:
|
79 |
msgid "Click to toggle"
|
80 |
msgstr "Kattints az átváltáshoz"
|
81 |
|
82 |
-
#: secure-wordpress.php:
|
|
|
83 |
msgid "Configuration"
|
84 |
msgstr "Beállítások"
|
85 |
|
86 |
-
#: secure-wordpress.php:
|
|
|
87 |
msgid "Error-Messages"
|
88 |
msgstr "Hibaüzenetek"
|
89 |
|
90 |
-
#: secure-wordpress.php:
|
|
|
91 |
msgid "deactivates tooltip and error message at login of WordPress"
|
92 |
msgstr "Deaktiválja az utalásokat és hibaüzeneteket a WordPress bejelentkezés során"
|
93 |
|
94 |
-
#: secure-wordpress.php:
|
|
|
95 |
msgid "WordPress Version"
|
96 |
msgstr "WordPress verzió"
|
97 |
|
98 |
-
#: secure-wordpress.php:
|
|
|
99 |
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
100 |
msgstr "WordPress verzió eltávolítása minden területről, beleértve a Feed-et és a nem admin felületet."
|
101 |
|
102 |
-
#: secure-wordpress.php:
|
103 |
-
|
104 |
-
msgstr "index.html"
|
105 |
-
|
106 |
-
#: secure-wordpress.php:652
|
107 |
-
msgid "creates an <code>index.html</code> file in <code>/plugins/</code> to keep it from showing your directory listing"
|
108 |
-
msgstr "Eltárol egy <code>index.html</code>-t a <code>/plugins/</code> könyvtárban, hogy ezzel elkerüljük a könyvtár kiolvashatóságát"
|
109 |
-
|
110 |
-
#: secure-wordpress.php:658
|
111 |
msgid "Really Simple Discovery"
|
112 |
msgstr "Really Simple Discovery"
|
113 |
|
114 |
-
#: secure-wordpress.php:
|
|
|
115 |
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
116 |
msgstr "Eltávolítja a Really Simple Discovery linket a Frontend fejlécéből"
|
117 |
|
118 |
-
#: secure-wordpress.php:
|
|
|
119 |
msgid "Windows Live Writer"
|
120 |
msgstr "Windows Live Writer"
|
121 |
|
122 |
-
#: secure-wordpress.php:
|
|
|
123 |
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
124 |
msgstr "Eltávolítja a Windows Live Writer linket a Frontend fejlécéből"
|
125 |
|
126 |
-
#: secure-wordpress.php:
|
|
|
127 |
msgid "Core Update"
|
128 |
msgstr "Core Update"
|
129 |
|
130 |
-
#: secure-wordpress.php:
|
|
|
131 |
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
132 |
msgstr "Deaktiválja a Core-Update-et a nem adminisztrátorok számára. A WordPress új verziójáról csak azok a felhasználók értesülnek, akik rendelkeznek Plugin szerkesztői jogokkal."
|
133 |
|
134 |
-
#: secure-wordpress.php:
|
|
|
135 |
msgid "Plugin Update"
|
136 |
msgstr "Plugin Update"
|
137 |
|
138 |
-
#: secure-wordpress.php:
|
|
|
139 |
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."
|
140 |
msgstr "Deaktiválja a Plugin-Update-et a nem adminisztrátorok számára. A pluginok új verziójáról csak azok a felhasználók értesülnek, akik rendelkeznek Plugin szerkesztői jogokkal."
|
141 |
|
142 |
-
#: secure-wordpress.php:
|
|
|
143 |
msgid "Theme Update"
|
144 |
msgstr "Theme Update"
|
145 |
|
146 |
-
#: secure-wordpress.php:
|
|
|
147 |
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."
|
148 |
msgstr "Deaktiválja a Theme-Update-et a nem adminisztrátorok számára. A WordPress sablon új verziójáról csak azok a felhasználók értesülnek, akik rendelkeznek sablon szerkesztői jogokkal."
|
149 |
|
150 |
-
#: secure-wordpress.php:
|
|
|
151 |
msgid "WP Scanner"
|
152 |
msgstr "WP Scanner"
|
153 |
|
154 |
-
#: secure-wordpress.php:
|
|
|
155 |
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 is 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."
|
156 |
msgstr "A WordPress Scanner egy szabadon alkalmazható online eszköz blog adminisztrátorok számára, a WordPress telepítés Frontend biztonságának ellenőrzéséhez. Ha használni szeretnéd, aktiváld a Checkbox-ot amivel a <code><!-- wpscanner --></code> stringet beilleszted az aktuálisan használt sablonba. Ezután keresd fel az online scannert a <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> címen és ellenőrizd le az oldaladat."
|
157 |
|
158 |
-
#: secure-wordpress.php:
|
|
|
159 |
msgid "Save Changes"
|
160 |
msgstr "Beállítások aktualizálása"
|
161 |
|
162 |
-
#: secure-wordpress.php:
|
|
|
163 |
msgid "Clear Options"
|
164 |
msgstr "Beállítások törlése"
|
165 |
|
166 |
-
#: secure-wordpress.php:
|
|
|
167 |
msgid "Click this button to delete settings of this plugin. Deactivating Secure WordPress plugin remove any data that may have been created."
|
168 |
msgstr "Ezt a lehetőséget akkor használd, ha a plugin összes beállítását törölni szeretnéd az adatbankból. A plugin akkor is törli az összes beállítást, ha deaktiválod, vagy ha azt a Backend-ből távolítod el."
|
169 |
|
170 |
-
#: secure-wordpress.php:
|
|
|
171 |
msgid "Delete Options"
|
172 |
msgstr "Beállítások törlése"
|
173 |
|
174 |
-
#: secure-wordpress.php:
|
|
|
175 |
msgid "About the plugin"
|
176 |
msgstr "A pluginról"
|
177 |
|
178 |
-
#: secure-wordpress.php:
|
|
|
179 |
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
180 |
msgstr "További információk: Több információkért, illetve a plugin aktuális verziójának letöltéséért látogass el a <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">Plugin weboldalára</a>."
|
181 |
|
182 |
-
#: secure-wordpress.php:
|
|
|
183 |
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
|
184 |
msgstr "Köszönetet szeretnél mondani? Látogasd meg a <a href=\"http://bueltge.de/wunschliste/\">kívánságlistámat</a>."
|
185 |
|
186 |
-
|
187 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
|
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;_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 |
+
#: secure-wordpress.php:330
|
23 |
msgid "Settings"
|
24 |
msgstr "Beállítások"
|
25 |
|
26 |
+
#: secure-wordpress.php:359
|
27 |
+
#: secure-wordpress.php:402
|
28 |
+
#@ secure_wp
|
29 |
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
30 |
msgstr "<a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">Dokumentációk</a>"
|
31 |
|
32 |
+
#: secure-wordpress.php:382
|
33 |
+
#@ secure_wp
|
34 |
msgid "Options update."
|
35 |
msgstr "Beállítások aktualizálva."
|
36 |
|
37 |
+
#: secure-wordpress.php:384
|
38 |
+
#@ secure_wp
|
39 |
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
40 |
msgstr "Az adatbankban minden bejegyzés törölve. Most deaktiválom a Plugint."
|
41 |
|
42 |
+
#: secure-wordpress.php:398
|
43 |
+
#: secure-wordpress.php:405
|
44 |
+
#@ secure_wp
|
45 |
msgid "Secure WP"
|
46 |
msgstr "Secure WP"
|
47 |
|
48 |
+
#: secure-wordpress.php:401
|
49 |
+
#: secure-wordpress.php:641
|
50 |
+
#@ secure_wp
|
51 |
msgid "Secure WordPress"
|
52 |
msgstr "Secure WordPress"
|
53 |
|
54 |
+
#: secure-wordpress.php:425
|
55 |
msgid "Version"
|
56 |
msgstr "Verzió"
|
57 |
|
58 |
+
#: secure-wordpress.php:425
|
59 |
+
#@ secure_wp
|
60 |
msgid "History"
|
61 |
msgstr "Előzmények"
|
62 |
|
63 |
+
#: secure-wordpress.php:425
|
64 |
msgid "Author"
|
65 |
msgstr "Szerző"
|
66 |
|
67 |
+
#: secure-wordpress.php:568
|
68 |
+
#@ secure_wp
|
69 |
msgid "Options not update - you don‘t have the privilidges to do this!"
|
70 |
msgstr "A beállítások nem aktualizálódtak. Nem rendelkezel a megfelelő jogokkal!"
|
71 |
|
72 |
+
#: secure-wordpress.php:588
|
73 |
+
#@ secure_wp
|
74 |
msgid "Entries was not delleted - you don‘t have the privilidges to do this!"
|
75 |
msgstr "A beállítások nem törlődtek. Nem rendelkezel a megfelelő jogokkal!"
|
76 |
|
77 |
+
#: secure-wordpress.php:596
|
78 |
+
#@ secure_wp
|
79 |
msgid "Entries was not delleted - check the checkbox!"
|
80 |
msgstr "A beállítások nem törlődtek - ellenőrizd a Checkbox-ot! "
|
81 |
|
82 |
+
#: secure-wordpress.php:616
|
83 |
+
#@ secure_wp
|
84 |
msgid "All entries in the database was cleared."
|
85 |
msgstr "Az adatbankban minden bejegyzés törölve."
|
86 |
|
87 |
+
#: secure-wordpress.php:620
|
88 |
+
#@ secure_wp
|
89 |
msgid "Entries was not delleted - check the checkbox or you don‘t have the privilidges to do this!"
|
90 |
msgstr "A beállítások nem törlődtek - ellenőrizd a Checkbox-ot vagy nem rendelkezel a megfelelő jogosultságokkal! "
|
91 |
|
92 |
+
#: secure-wordpress.php:646
|
93 |
+
#: secure-wordpress.php:771
|
94 |
+
#: secure-wordpress.php:791
|
95 |
msgid "Click to toggle"
|
96 |
msgstr "Kattints az átváltáshoz"
|
97 |
|
98 |
+
#: secure-wordpress.php:647
|
99 |
+
#@ secure_wp
|
100 |
msgid "Configuration"
|
101 |
msgstr "Beállítások"
|
102 |
|
103 |
+
#: secure-wordpress.php:657
|
104 |
+
#@ secure_wp
|
105 |
msgid "Error-Messages"
|
106 |
msgstr "Hibaüzenetek"
|
107 |
|
108 |
+
#: secure-wordpress.php:661
|
109 |
+
#@ secure_wp
|
110 |
msgid "deactivates tooltip and error message at login of WordPress"
|
111 |
msgstr "Deaktiválja az utalásokat és hibaüzeneteket a WordPress bejelentkezés során"
|
112 |
|
113 |
+
#: secure-wordpress.php:667
|
114 |
+
#@ secure_wp
|
115 |
msgid "WordPress Version"
|
116 |
msgstr "WordPress verzió"
|
117 |
|
118 |
+
#: secure-wordpress.php:671
|
119 |
+
#@ secure_wp
|
120 |
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
121 |
msgstr "WordPress verzió eltávolítása minden területről, beleértve a Feed-et és a nem admin felületet."
|
122 |
|
123 |
+
#: secure-wordpress.php:697
|
124 |
+
#@ secure_wp
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
msgid "Really Simple Discovery"
|
126 |
msgstr "Really Simple Discovery"
|
127 |
|
128 |
+
#: secure-wordpress.php:701
|
129 |
+
#@ secure_wp
|
130 |
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
131 |
msgstr "Eltávolítja a Really Simple Discovery linket a Frontend fejlécéből"
|
132 |
|
133 |
+
#: secure-wordpress.php:707
|
134 |
+
#@ secure_wp
|
135 |
msgid "Windows Live Writer"
|
136 |
msgstr "Windows Live Writer"
|
137 |
|
138 |
+
#: secure-wordpress.php:711
|
139 |
+
#@ secure_wp
|
140 |
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
141 |
msgstr "Eltávolítja a Windows Live Writer linket a Frontend fejlécéből"
|
142 |
|
143 |
+
#: secure-wordpress.php:717
|
144 |
+
#@ secure_wp
|
145 |
msgid "Core Update"
|
146 |
msgstr "Core Update"
|
147 |
|
148 |
+
#: secure-wordpress.php:721
|
149 |
+
#@ secure_wp
|
150 |
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
151 |
msgstr "Deaktiválja a Core-Update-et a nem adminisztrátorok számára. A WordPress új verziójáról csak azok a felhasználók értesülnek, akik rendelkeznek Plugin szerkesztői jogokkal."
|
152 |
|
153 |
+
#: secure-wordpress.php:727
|
154 |
+
#@ secure_wp
|
155 |
msgid "Plugin Update"
|
156 |
msgstr "Plugin Update"
|
157 |
|
158 |
+
#: secure-wordpress.php:731
|
159 |
+
#@ secure_wp
|
160 |
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."
|
161 |
msgstr "Deaktiválja a Plugin-Update-et a nem adminisztrátorok számára. A pluginok új verziójáról csak azok a felhasználók értesülnek, akik rendelkeznek Plugin szerkesztői jogokkal."
|
162 |
|
163 |
+
#: secure-wordpress.php:738
|
164 |
+
#@ secure_wp
|
165 |
msgid "Theme Update"
|
166 |
msgstr "Theme Update"
|
167 |
|
168 |
+
#: secure-wordpress.php:742
|
169 |
+
#@ secure_wp
|
170 |
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."
|
171 |
msgstr "Deaktiválja a Theme-Update-et a nem adminisztrátorok számára. A WordPress sablon új verziójáról csak azok a felhasználók értesülnek, akik rendelkeznek sablon szerkesztői jogokkal."
|
172 |
|
173 |
+
#: secure-wordpress.php:749
|
174 |
+
#@ secure_wp
|
175 |
msgid "WP Scanner"
|
176 |
msgstr "WP Scanner"
|
177 |
|
178 |
+
#: secure-wordpress.php:753
|
179 |
+
#@ secure_wp
|
180 |
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 is 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."
|
181 |
msgstr "A WordPress Scanner egy szabadon alkalmazható online eszköz blog adminisztrátorok számára, a WordPress telepítés Frontend biztonságának ellenőrzéséhez. Ha használni szeretnéd, aktiváld a Checkbox-ot amivel a <code><!-- wpscanner --></code> stringet beilleszted az aktuálisan használt sablonba. Ezután keresd fel az online scannert a <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> címen és ellenőrizd le az oldaladat."
|
182 |
|
183 |
+
#: secure-wordpress.php:761
|
184 |
+
#@ secure_wp
|
185 |
msgid "Save Changes"
|
186 |
msgstr "Beállítások aktualizálása"
|
187 |
|
188 |
+
#: secure-wordpress.php:772
|
189 |
+
#@ secure_wp
|
190 |
msgid "Clear Options"
|
191 |
msgstr "Beállítások törlése"
|
192 |
|
193 |
+
#: secure-wordpress.php:775
|
194 |
+
#@ secure_wp
|
195 |
msgid "Click this button to delete settings of this plugin. Deactivating Secure WordPress plugin remove any data that may have been created."
|
196 |
msgstr "Ezt a lehetőséget akkor használd, ha a plugin összes beállítását törölni szeretnéd az adatbankból. A plugin akkor is törli az összes beállítást, ha deaktiválod, vagy ha azt a Backend-ből távolítod el."
|
197 |
|
198 |
+
#: secure-wordpress.php:780
|
199 |
+
#@ secure_wp
|
200 |
msgid "Delete Options"
|
201 |
msgstr "Beállítások törlése"
|
202 |
|
203 |
+
#: secure-wordpress.php:792
|
204 |
+
#@ secure_wp
|
205 |
msgid "About the plugin"
|
206 |
msgstr "A pluginról"
|
207 |
|
208 |
+
#: secure-wordpress.php:805
|
209 |
+
#@ secure_wp
|
210 |
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
211 |
msgstr "További információk: Több információkért, illetve a plugin aktuális verziójának letöltéséért látogass el a <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">Plugin weboldalára</a>."
|
212 |
|
213 |
+
#: secure-wordpress.php:805
|
214 |
+
#@ secure_wp
|
215 |
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
|
216 |
msgstr "Köszönetet szeretnél mondani? Látogasd meg a <a href=\"http://bueltge.de/wunschliste/\">kívánságlistámat</a>."
|
217 |
|
218 |
+
#: secure-wordpress.php:691
|
219 |
+
#@ secure_wp
|
220 |
+
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
221 |
+
msgstr "létrehoz egy <code>index.php</ code> fájlt <code>/plugins/</code> és <code>/themes/</code>, ha nem akarja jeleníti meg a könyvtárlistában"
|
222 |
+
|
223 |
+
#: secure-wordpress.php:677
|
224 |
+
#@ secure_wp
|
225 |
+
msgid "WordPress Version in Backend"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: secure-wordpress.php:687
|
229 |
+
#@ secure_wp
|
230 |
+
msgid "index.php"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: secure-wordpress.php:681
|
234 |
+
#@ secure_wp
|
235 |
+
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."
|
236 |
+
msgstr ""
|
237 |
|
languages/secure_wp-it_IT.mo
CHANGED
Binary file
|
languages/secure_wp-it_IT.po
CHANGED
@@ -2,169 +2,475 @@ 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:
|
7 |
-
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao
|
8 |
"Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
-
"X-Poedit-Basepath: D:\\WP-Plugins\\secure-wordpress\\trunk\n"
|
15 |
"X-Poedit-Language: Italian\n"
|
16 |
"X-Poedit-Country: ITALY\n"
|
17 |
-
"X-Poedit-
|
|
|
|
|
18 |
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "Settings"
|
21 |
msgstr "Impostazioni"
|
22 |
|
23 |
-
|
24 |
-
#: secure-wordpress.php:
|
|
|
25 |
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
26 |
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentazione</a>"
|
27 |
|
28 |
-
|
|
|
29 |
msgid "Options update."
|
30 |
msgstr "Le opzioni sono state aggiornate."
|
31 |
|
32 |
-
|
|
|
33 |
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
34 |
msgstr "Sono state cancellate tutte le informazioni contenute nel database. Ora puoi disattivare il plugin."
|
35 |
|
36 |
-
|
37 |
-
#: secure-wordpress.php:
|
|
|
38 |
msgid "Secure WP"
|
39 |
msgstr "Secure WP"
|
40 |
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
43 |
msgid "Secure WordPress"
|
44 |
msgstr "Secure WordPress"
|
45 |
|
46 |
-
#: secure-wordpress.php:
|
47 |
msgid "Version"
|
48 |
msgstr "Versione"
|
49 |
|
50 |
-
|
|
|
51 |
msgid "History"
|
52 |
msgstr "Storico"
|
53 |
|
54 |
-
#: secure-wordpress.php:
|
55 |
msgid "Author"
|
56 |
msgstr "Autore"
|
57 |
|
58 |
-
|
59 |
-
|
|
|
60 |
msgstr "Le opzioni non sono state aggiornate - non hai i permessi per poter operare queste modifiche!"
|
61 |
|
62 |
-
|
63 |
-
|
|
|
64 |
msgstr "Le informazioni non sono state cancellate - non hai i permessi per poter operare queste modifiche!"
|
65 |
|
66 |
-
|
67 |
-
|
|
|
68 |
msgstr "Le informazioni non sono state cancellate - verifica la casella di selezione!"
|
69 |
|
70 |
-
|
71 |
-
|
72 |
-
msgid "
|
73 |
-
msgstr "Attenzione: %s in questo momento sta modificando questo articolo"
|
74 |
-
|
75 |
-
#: secure-wordpress.php:532
|
76 |
-
msgid "All entries in the database was cleared."
|
77 |
msgstr "Sono state cancellate tutte le informazioni contenute nel database."
|
78 |
|
79 |
-
|
80 |
-
|
|
|
81 |
msgstr "Le informazioni non sono state cancellate - verifica la casella di selezione oppure potresti non avere i permessi per poter operare queste modifiche!"
|
82 |
|
83 |
-
#: secure-wordpress.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
msgid "Configuration"
|
85 |
msgstr "Configurazione"
|
86 |
|
87 |
-
|
|
|
88 |
msgid "Error-Messages"
|
89 |
msgstr "Messaggi di errore"
|
90 |
|
91 |
-
|
92 |
-
|
|
|
93 |
msgstr "disattiva i suggerimenti ed il messaggio di errore durante il login a WordPress"
|
94 |
|
95 |
-
|
|
|
96 |
msgid "WordPress Version"
|
97 |
msgstr "Versione WordPress"
|
98 |
|
99 |
-
|
|
|
100 |
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
101 |
msgstr "Rimuove da tutte le aree la versione di WordPress in uso, inclusi i feed: non in amministrazione"
|
102 |
|
103 |
-
|
104 |
-
|
105 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
|
107 |
-
|
108 |
-
|
109 |
-
|
|
|
110 |
|
111 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
msgid "Really Simple Discovery"
|
113 |
msgstr "Really Simple Discovery"
|
114 |
|
115 |
-
|
|
|
116 |
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
117 |
msgstr "Rimuovi il link Really Simple Discovery in <code>wp_head</code> nel frontend"
|
118 |
|
119 |
-
|
|
|
120 |
msgid "Windows Live Writer"
|
121 |
msgstr "Windows Live Writer"
|
122 |
|
123 |
-
|
|
|
124 |
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
125 |
msgstr "Rimuovi il link Windows Live Writer in <code>wp_head</code> nel frontend"
|
126 |
|
127 |
-
|
|
|
128 |
msgid "Core Update"
|
129 |
msgstr "Aggiornamento core"
|
130 |
|
131 |
-
|
|
|
132 |
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
133 |
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."
|
134 |
|
135 |
-
|
|
|
136 |
msgid "Plugin Update"
|
137 |
msgstr "Aggiornamento plugin"
|
138 |
|
139 |
-
|
|
|
140 |
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."
|
141 |
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."
|
142 |
|
143 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
msgid "Save Changes"
|
145 |
msgstr "Salva le modifiche"
|
146 |
|
147 |
-
#: secure-wordpress.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
msgid "Clear Options"
|
149 |
msgstr "Rimuovi le opzioni"
|
150 |
|
151 |
-
|
152 |
-
|
153 |
-
|
|
|
154 |
|
155 |
-
|
|
|
156 |
msgid "Delete Options"
|
157 |
msgstr "Opzioni rimozione"
|
158 |
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
#: secure-wordpress.php:
|
168 |
-
msgid "
|
169 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
|
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"
|
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: 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
ADDED
Binary file
|
languages/secure_wp-ja.po
ADDED
@@ -0,0 +1,526 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: \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: Fumito Mizuno <mizuno@ounziw.com>\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 |
+
"X-Poedit-Language: Japanese\n"
|
13 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
14 |
+
|
15 |
+
# @ secure_wp
|
16 |
+
#. translators: plugin header field 'Description'
|
17 |
+
#: secure-wordpress.php:0
|
18 |
+
msgid "Little basics for secure your WordPress-installation."
|
19 |
+
msgstr "WordPress を安全にするための基礎"
|
20 |
+
|
21 |
+
# @ default
|
22 |
+
#: secure-wordpress.php:370
|
23 |
+
msgid "Settings"
|
24 |
+
msgstr "設定"
|
25 |
+
|
26 |
+
# @ secure_wp
|
27 |
+
#: secure-wordpress.php:399
|
28 |
+
#: secure-wordpress.php:446
|
29 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
30 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">ドキュメント</a>"
|
31 |
+
|
32 |
+
# @ secure_wp
|
33 |
+
#: secure-wordpress.php:422
|
34 |
+
msgid "Options update."
|
35 |
+
msgstr "オプションを更新しました。"
|
36 |
+
|
37 |
+
# @ secure_wp
|
38 |
+
#: secure-wordpress.php:424
|
39 |
+
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
40 |
+
msgstr "データベースのすべてのエントリを消去しました。プラグインを停止してください。"
|
41 |
+
|
42 |
+
# @ secure_wp
|
43 |
+
#: secure-wordpress.php:438
|
44 |
+
#: secure-wordpress.php:449
|
45 |
+
msgid "Secure WP"
|
46 |
+
msgstr "Secure WP"
|
47 |
+
|
48 |
+
# @ secure_wp
|
49 |
+
#. translators: plugin header field 'Name'
|
50 |
+
#: secure-wordpress.php:0
|
51 |
+
#: secure-wordpress.php:445
|
52 |
+
#: secure-wordpress.php:773
|
53 |
+
msgid "Secure WordPress"
|
54 |
+
msgstr "Secure WordPress"
|
55 |
+
|
56 |
+
# @ default
|
57 |
+
#: secure-wordpress.php:469
|
58 |
+
msgid "Version"
|
59 |
+
msgstr "バージョン"
|
60 |
+
|
61 |
+
# @ secure_wp
|
62 |
+
#: secure-wordpress.php:469
|
63 |
+
msgid "History"
|
64 |
+
msgstr "履歴"
|
65 |
+
|
66 |
+
# @ default
|
67 |
+
#: secure-wordpress.php:469
|
68 |
+
msgid "Author"
|
69 |
+
msgstr "作成者"
|
70 |
+
|
71 |
+
# @ secure_wp
|
72 |
+
#: secure-wordpress.php:698
|
73 |
+
msgid "Options not updated - you don‘t have the privileges to do this!"
|
74 |
+
msgstr "オプションが更新されませんでした。あなたには権限がありません。"
|
75 |
+
|
76 |
+
# @ secure_wp
|
77 |
+
#: secure-wordpress.php:718
|
78 |
+
msgid "Entries were not deleted - you don‘t have the privileges to do this!"
|
79 |
+
msgstr "エントリが削除されませんでした。あなたには権限がありません。"
|
80 |
+
|
81 |
+
# @ secure_wp
|
82 |
+
#: secure-wordpress.php:726
|
83 |
+
msgid "Entries were not deleted - check the checkbox!"
|
84 |
+
msgstr "エントリが削除されませんでした。チェックボックスを確かめてください。"
|
85 |
+
|
86 |
+
# @ secure_wp
|
87 |
+
#: secure-wordpress.php:746
|
88 |
+
msgid "All entries in the database were cleared."
|
89 |
+
msgstr "データベースの全エントリが消去されました。"
|
90 |
+
|
91 |
+
# @ secure_wp
|
92 |
+
#: secure-wordpress.php:750
|
93 |
+
msgid "Entries were not deleted - check the checkbox or you don‘t have the privileges to do this!"
|
94 |
+
msgstr "エントリが削除されませんでした。チェックボックスにチェックしていないか、あるいはあなたには権限がありません。"
|
95 |
+
|
96 |
+
# @ default
|
97 |
+
#: secure-wordpress.php:778
|
98 |
+
#: secure-wordpress.php:914
|
99 |
+
#: secure-wordpress.php:1027
|
100 |
+
#: secure-wordpress.php:1141
|
101 |
+
msgid "Click to toggle"
|
102 |
+
msgstr "クリックして切り替える"
|
103 |
+
|
104 |
+
# @ secure_wp
|
105 |
+
#: secure-wordpress.php:779
|
106 |
+
msgid "Configuration"
|
107 |
+
msgstr "設定"
|
108 |
+
|
109 |
+
# @ secure_wp
|
110 |
+
#: secure-wordpress.php:789
|
111 |
+
msgid "Error-Messages"
|
112 |
+
msgstr "エラーメッセージ"
|
113 |
+
|
114 |
+
# @ secure_wp
|
115 |
+
#: secure-wordpress.php:793
|
116 |
+
msgid "Deactivates tooltip and error message at login of WordPress"
|
117 |
+
msgstr "WordPress ログイン時のツールチープとエラーメッセージを無効にします。"
|
118 |
+
|
119 |
+
# @ secure_wp
|
120 |
+
#: secure-wordpress.php:799
|
121 |
+
msgid "WordPress Version"
|
122 |
+
msgstr "WordPress バージョン"
|
123 |
+
|
124 |
+
# @ secure_wp
|
125 |
+
#: secure-wordpress.php:803
|
126 |
+
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
127 |
+
msgstr "WordPress バージョンを削除します。(フィードも対象、管理画面を除く)"
|
128 |
+
|
129 |
+
# @ secure_wp
|
130 |
+
#: secure-wordpress.php:809
|
131 |
+
msgid "WordPress Version in Backend"
|
132 |
+
msgstr "バックエンドの WordPress バージョン"
|
133 |
+
|
134 |
+
# @ secure_wp
|
135 |
+
#: secure-wordpress.php:813
|
136 |
+
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."
|
137 |
+
msgstr "管理者以外のユーザーでは、管理画面での WordPress バージョンを削除します。プラグイン編集権限のあるユーザーにのみバージョンを表示します。"
|
138 |
+
|
139 |
+
# @ secure_wp
|
140 |
+
#: secure-wordpress.php:819
|
141 |
+
msgid "index.php"
|
142 |
+
msgstr "index.php"
|
143 |
+
|
144 |
+
# @ secure_wp
|
145 |
+
#: secure-wordpress.php:823
|
146 |
+
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
147 |
+
msgstr "<code>/plugins/</code> と <code>/themes/</code> に <code>index.php</code> ファイルを作成し、ディレクトリ一覧を表示しないようにします。"
|
148 |
+
|
149 |
+
# @ secure_wp
|
150 |
+
#: secure-wordpress.php:829
|
151 |
+
msgid "Really Simple Discovery"
|
152 |
+
msgstr "Really Simple Discovery"
|
153 |
+
|
154 |
+
# @ secure_wp
|
155 |
+
#: secure-wordpress.php:833
|
156 |
+
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
157 |
+
msgstr "フロントエンドの <code>wp_head</code> の Really Simple Discovery リンクを削除します。"
|
158 |
+
|
159 |
+
# @ secure_wp
|
160 |
+
#: secure-wordpress.php:839
|
161 |
+
msgid "Windows Live Writer"
|
162 |
+
msgstr "Windows Live Writer"
|
163 |
+
|
164 |
+
# @ secure_wp
|
165 |
+
#: secure-wordpress.php:843
|
166 |
+
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
167 |
+
msgstr "フロントエンドの <code>wp_head</code> の Windows Live Writer リンクを削除します。"
|
168 |
+
|
169 |
+
# @ secure_wp
|
170 |
+
#: secure-wordpress.php:849
|
171 |
+
msgid "Core Update"
|
172 |
+
msgstr "コア更新"
|
173 |
+
|
174 |
+
# @ secure_wp
|
175 |
+
#: secure-wordpress.php:853
|
176 |
+
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
177 |
+
msgstr "管理者以外は WordPress コア更新通知を削除します。更新権限のあるユーザーにのみ新バージョンを通知します。"
|
178 |
+
|
179 |
+
# @ secure_wp
|
180 |
+
#: secure-wordpress.php:859
|
181 |
+
msgid "Plugin Update"
|
182 |
+
msgstr "プラグイン更新"
|
183 |
+
|
184 |
+
# @ secure_wp
|
185 |
+
#: secure-wordpress.php:863
|
186 |
+
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."
|
187 |
+
msgstr "管理者以外はプラグイン更新通知を削除します。プラグイン編集権限のあるユーザーにのみ、プラグインの新バージョンを通知します。"
|
188 |
+
|
189 |
+
# @ secure_wp
|
190 |
+
#: secure-wordpress.php:870
|
191 |
+
msgid "Theme Update"
|
192 |
+
msgstr "テーマ更新"
|
193 |
+
|
194 |
+
# @ secure_wp
|
195 |
+
#: secure-wordpress.php:874
|
196 |
+
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."
|
197 |
+
msgstr "管理者以外はテーマ更新通知を削除します。テーマ編集権限のあるユーザーにのみ新バージョンを通知します。"
|
198 |
+
|
199 |
+
# @ secure_wp
|
200 |
+
#: secure-wordpress.php:891
|
201 |
+
msgid "Block bad queries"
|
202 |
+
msgstr "悪意あるクエリをブロックする"
|
203 |
+
|
204 |
+
# @ secure_wp
|
205 |
+
#: secure-wordpress.php:895
|
206 |
+
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>"
|
207 |
+
msgstr "</a>悪意のある URL リクエストから WordPress を保護します。詳細は、<a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >post from Jeff Starr</a> をごらんください。"
|
208 |
+
|
209 |
+
# @ secure_wp
|
210 |
+
#: secure-wordpress.php:903
|
211 |
+
msgid "Save Changes"
|
212 |
+
msgstr "変更を保存する"
|
213 |
+
|
214 |
+
# @ secure_wp
|
215 |
+
#: secure-wordpress.php:915
|
216 |
+
msgid "Validate your site with a free malware scan from www.sitesecuritymonitor.com"
|
217 |
+
msgstr "無料マルウェアスキャン www.sitesecuritymonitor.com でサイトをチェックします。"
|
218 |
+
|
219 |
+
# @ secure_wp
|
220 |
+
#: secure-wordpress.php:918
|
221 |
+
msgid "Take us for a Test Drive - Free Scan"
|
222 |
+
msgstr "Take us for a Test Drive - Free Scan"
|
223 |
+
|
224 |
+
# @ secure_wp
|
225 |
+
#: secure-wordpress.php:919
|
226 |
+
msgid "We understand you may have questions:"
|
227 |
+
msgstr "質問がありますか。"
|
228 |
+
|
229 |
+
# @ secure_wp
|
230 |
+
#: secure-wordpress.php:920
|
231 |
+
msgid "What does this do for me?"
|
232 |
+
msgstr "このプラグインは何をしますか?"
|
233 |
+
|
234 |
+
# @ secure_wp
|
235 |
+
#: secure-wordpress.php:921
|
236 |
+
msgid "Am I really safe? I need to be sure."
|
237 |
+
msgstr "本当に安全ですか?確認させてください。"
|
238 |
+
|
239 |
+
# @ secure_wp
|
240 |
+
#: secure-wordpress.php:922
|
241 |
+
msgid "Rest Assured, Site Security Monitor has you covered."
|
242 |
+
msgstr "安心してください。Site Security Monitor がカバーします。"
|
243 |
+
|
244 |
+
# @ secure_wp
|
245 |
+
#: secure-wordpress.php:924
|
246 |
+
msgid "FREE scan looks for malware"
|
247 |
+
msgstr "FREE スキャンがマルウェアを探しています。"
|
248 |
+
|
249 |
+
# @ secure_wp
|
250 |
+
#: secure-wordpress.php:925
|
251 |
+
msgid "FREE report of website vulnerabilities found"
|
252 |
+
msgstr "ウェブサイト脆弱性の FREE レポートが発見されました。"
|
253 |
+
|
254 |
+
# @ secure_wp
|
255 |
+
#: secure-wordpress.php:926
|
256 |
+
msgid "No setup, tuning and installation on your site - scan begins immediately"
|
257 |
+
msgstr "設定、チューニング、またはインストールが行われていません。スキャンをすぐに開始します。"
|
258 |
+
|
259 |
+
# @ secure_wp
|
260 |
+
#: secure-wordpress.php:928
|
261 |
+
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!"
|
262 |
+
msgstr "詳細なマルウェアとウェブ脆弱性レポートを無料でお送りします。自由にレポートを使用して問題を解決し、サイトの安全性を上司にあるいは顧客に示すことができます。"
|
263 |
+
|
264 |
+
# @ secure_wp
|
265 |
+
#: secure-wordpress.php:929
|
266 |
+
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!"
|
267 |
+
msgstr "** ボーナス: スキャンを実行した後、サイトセキュリティモニタ \"Safe-Seal\" を使用することができます。マルウェアから開放されます。"
|
268 |
+
|
269 |
+
# @ secure_wp
|
270 |
+
#: secure-wordpress.php:931
|
271 |
+
msgid "The form"
|
272 |
+
msgstr "フォーム"
|
273 |
+
|
274 |
+
# @ secure_wp
|
275 |
+
#: secure-wordpress.php:932
|
276 |
+
msgid "Use the follow form or use it on <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">our website</a>."
|
277 |
+
msgstr "下記フォーム、または<a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">我々のサイト</a>のフォームをご利用ください。"
|
278 |
+
|
279 |
+
# @ secure_wp
|
280 |
+
#: secure-wordpress.php:967
|
281 |
+
msgid "Full Name"
|
282 |
+
msgstr "姓名"
|
283 |
+
|
284 |
+
# @ secure_wp
|
285 |
+
#: secure-wordpress.php:970
|
286 |
+
#: secure-wordpress.php:978
|
287 |
+
#: secure-wordpress.php:986
|
288 |
+
#: secure-wordpress.php:994
|
289 |
+
#: secure-wordpress.php:1010
|
290 |
+
msgid "*required"
|
291 |
+
msgstr "*必須"
|
292 |
+
|
293 |
+
# @ secure_wp
|
294 |
+
#: secure-wordpress.php:975
|
295 |
+
msgid "eMail Adress"
|
296 |
+
msgstr "メールアドレス"
|
297 |
+
|
298 |
+
# @ secure_wp
|
299 |
+
#: secure-wordpress.php:978
|
300 |
+
msgid ", eMail Address must match domain name"
|
301 |
+
msgstr ", メールアドレスはドメイン名に一致する必要があります。"
|
302 |
+
|
303 |
+
# @ secure_wp
|
304 |
+
#: secure-wordpress.php:983
|
305 |
+
msgid "Website"
|
306 |
+
msgstr "ウェブサイト"
|
307 |
+
|
308 |
+
# @ secure_wp
|
309 |
+
#: secure-wordpress.php:991
|
310 |
+
msgid "Phone"
|
311 |
+
msgstr "電話番号"
|
312 |
+
|
313 |
+
# @ secure_wp
|
314 |
+
#: secure-wordpress.php:999
|
315 |
+
msgid "Yes, I need help!"
|
316 |
+
msgstr "はい、助けが必要です。"
|
317 |
+
|
318 |
+
# @ secure_wp
|
319 |
+
#: secure-wordpress.php:1002
|
320 |
+
msgid "Call me"
|
321 |
+
msgstr "電話してください。"
|
322 |
+
|
323 |
+
# @ secure_wp
|
324 |
+
#: secure-wordpress.php:1007
|
325 |
+
msgid "Terms and Conditions"
|
326 |
+
msgstr "利用条件"
|
327 |
+
|
328 |
+
# @ secure_wp
|
329 |
+
#: secure-wordpress.php:1010
|
330 |
+
msgid ", I accept"
|
331 |
+
msgstr ", 同意します。"
|
332 |
+
|
333 |
+
# @ secure_wp
|
334 |
+
#: secure-wordpress.php:1017
|
335 |
+
msgid "Get my Free Web Scan"
|
336 |
+
msgstr "無料ウェブスキャンを取得する"
|
337 |
+
|
338 |
+
# @ secure_wp
|
339 |
+
#: secure-wordpress.php:1028
|
340 |
+
msgid "Safe Seal"
|
341 |
+
msgstr "安全シール"
|
342 |
+
|
343 |
+
# @ secure_wp
|
344 |
+
#: secure-wordpress.php:1058
|
345 |
+
msgid "Color"
|
346 |
+
msgstr "色"
|
347 |
+
|
348 |
+
# @ secure_wp
|
349 |
+
#: secure-wordpress.php:1062
|
350 |
+
msgid "Green"
|
351 |
+
msgstr "緑色"
|
352 |
+
|
353 |
+
# @ secure_wp
|
354 |
+
#: secure-wordpress.php:1063
|
355 |
+
msgid "Blue"
|
356 |
+
msgstr "青色"
|
357 |
+
|
358 |
+
# @ secure_wp
|
359 |
+
#: secure-wordpress.php:1064
|
360 |
+
msgid "Red"
|
361 |
+
msgstr "赤色"
|
362 |
+
|
363 |
+
# @ secure_wp
|
364 |
+
#: secure-wordpress.php:1065
|
365 |
+
msgid "Brown"
|
366 |
+
msgstr "茶色"
|
367 |
+
|
368 |
+
# @ secure_wp
|
369 |
+
#: secure-wordpress.php:1066
|
370 |
+
msgid "Gray"
|
371 |
+
msgstr "灰色"
|
372 |
+
|
373 |
+
# @ secure_wp
|
374 |
+
#: secure-wordpress.php:1075
|
375 |
+
msgid "Text"
|
376 |
+
msgstr "テキスト"
|
377 |
+
|
378 |
+
# @ secure_wp
|
379 |
+
#: secure-wordpress.php:1079
|
380 |
+
msgid "Protected"
|
381 |
+
msgstr "保護された"
|
382 |
+
|
383 |
+
# @ secure_wp
|
384 |
+
#: secure-wordpress.php:1080
|
385 |
+
msgid "Secured"
|
386 |
+
msgstr "安全"
|
387 |
+
|
388 |
+
# @ secure_wp
|
389 |
+
#: secure-wordpress.php:1081
|
390 |
+
msgid "Scanned"
|
391 |
+
msgstr "スキャン済"
|
392 |
+
|
393 |
+
# @ secure_wp
|
394 |
+
#: secure-wordpress.php:1082
|
395 |
+
msgid "Protected by"
|
396 |
+
msgstr "保護:"
|
397 |
+
|
398 |
+
# @ secure_wp
|
399 |
+
#: secure-wordpress.php:1088
|
400 |
+
msgid "Orientation"
|
401 |
+
msgstr "方向"
|
402 |
+
|
403 |
+
# @ secure_wp
|
404 |
+
#: secure-wordpress.php:1092
|
405 |
+
msgid "Horizontal"
|
406 |
+
msgstr "水平"
|
407 |
+
|
408 |
+
# @ secure_wp
|
409 |
+
#: secure-wordpress.php:1093
|
410 |
+
msgid "Vertical"
|
411 |
+
msgstr "垂直"
|
412 |
+
|
413 |
+
# @ secure_wp
|
414 |
+
#: secure-wordpress.php:1099
|
415 |
+
msgid "Image border"
|
416 |
+
msgstr "画像枠線"
|
417 |
+
|
418 |
+
# @ secure_wp
|
419 |
+
#: secure-wordpress.php:1107
|
420 |
+
msgid "Language"
|
421 |
+
msgstr "言語"
|
422 |
+
|
423 |
+
# @ secure_wp
|
424 |
+
#: secure-wordpress.php:1111
|
425 |
+
msgid "English (US)"
|
426 |
+
msgstr "English (US)"
|
427 |
+
|
428 |
+
# @ secure_wp
|
429 |
+
#: secure-wordpress.php:1112
|
430 |
+
msgid "English (UK)"
|
431 |
+
msgstr "English (UK)"
|
432 |
+
|
433 |
+
# @ secure_wp
|
434 |
+
#: secure-wordpress.php:1113
|
435 |
+
msgid "Spanish"
|
436 |
+
msgstr "Spanish"
|
437 |
+
|
438 |
+
# @ secure_wp
|
439 |
+
#: secure-wordpress.php:1114
|
440 |
+
msgid "German"
|
441 |
+
msgstr "German"
|
442 |
+
|
443 |
+
# @ secure_wp
|
444 |
+
#: secure-wordpress.php:1115
|
445 |
+
msgid "Italian"
|
446 |
+
msgstr "Italian"
|
447 |
+
|
448 |
+
# @ secure_wp
|
449 |
+
#: secure-wordpress.php:1116
|
450 |
+
msgid "Japanese"
|
451 |
+
msgstr "日本語"
|
452 |
+
|
453 |
+
# @ secure_wp
|
454 |
+
#: secure-wordpress.php:1117
|
455 |
+
msgid "Chinese (Simplified)"
|
456 |
+
msgstr "Chinese (Simplified)"
|
457 |
+
|
458 |
+
# @ secure_wp
|
459 |
+
#: secure-wordpress.php:1118
|
460 |
+
msgid "Chinese (Traditional)"
|
461 |
+
msgstr "Chinese (Traditional)"
|
462 |
+
|
463 |
+
# @ secure_wp
|
464 |
+
#: secure-wordpress.php:1127
|
465 |
+
msgid "Here is your generated code. Place it on your website (as html widget) to show that you are protected."
|
466 |
+
msgstr "あなたが生成したコードです。(htmlウィジェットとして)ウェブサイトに掲載し、プロテクトされていることを示してください。"
|
467 |
+
|
468 |
+
# @ secure_wp
|
469 |
+
#: secure-wordpress.php:1142
|
470 |
+
msgid "Clear Options"
|
471 |
+
msgstr "オプションを消去する"
|
472 |
+
|
473 |
+
# @ secure_wp
|
474 |
+
#: secure-wordpress.php:1145
|
475 |
+
msgid "Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created."
|
476 |
+
msgstr "このボタンをクリックすると、このプラグインの設定を削除します。Secure WordPress プラグインを停止すると、作成した全データを削除します。"
|
477 |
+
|
478 |
+
# @ secure_wp
|
479 |
+
#: secure-wordpress.php:1150
|
480 |
+
msgid "Delete Options"
|
481 |
+
msgstr "オプションを削除する"
|
482 |
+
|
483 |
+
# @ secure_wp
|
484 |
+
#. translators: plugin header field 'PluginURI'
|
485 |
+
#: secure-wordpress.php:0
|
486 |
+
msgid "http://www.sitesecuritymonitor.com/secure-wordpress-plugin"
|
487 |
+
msgstr "http://www.sitesecuritymonitor.com/secure-wordpress-plugin"
|
488 |
+
|
489 |
+
# @ secure_wp
|
490 |
+
#. translators: plugin header field 'Author'
|
491 |
+
#: secure-wordpress.php:0
|
492 |
+
msgid "jremillard"
|
493 |
+
msgstr "jremillard"
|
494 |
+
|
495 |
+
# @ secure_wp
|
496 |
+
#. translators: plugin header field 'AuthorURI'
|
497 |
+
#: secure-wordpress.php:0
|
498 |
+
msgid "http://www.sitesecuritymonitor.com/"
|
499 |
+
msgstr "http://www.sitesecuritymonitor.com/"
|
500 |
+
|
501 |
+
# @ secure_wp
|
502 |
+
#: secure-wordpress.php:1031
|
503 |
+
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>"
|
504 |
+
msgstr "プラグインご利用ありがとうございます。ブログでスキャンを実行し、コピーペースト用の HTML を出力します。 このシールはスキャニングサービスをするわけではありません。WordPress セキュリティの基礎を行います。コミュニティおよび我々の経験からお勧めします。<br/>定期的な脆弱性およびマルウェアスキャニングサービスを希望される方は<a href=\"http://www.sitesecuritymonitor.com/wordpress-secure-plugin/\">我々のページ</a>をごらんください。"
|
505 |
+
|
506 |
+
# @ secure_wp
|
507 |
+
#: secure-wordpress.php:1126
|
508 |
+
msgid "Source"
|
509 |
+
msgstr "ソース"
|
510 |
+
|
511 |
+
# @ secure_wp
|
512 |
+
#. translators: plugin header field 'Version'
|
513 |
+
#: secure-wordpress.php:0
|
514 |
+
msgid "1.0.5"
|
515 |
+
msgstr "1.0.5"
|
516 |
+
|
517 |
+
# @ secure_wp
|
518 |
+
#: secure-wordpress.php:881
|
519 |
+
msgid "WP Version on Scripts/Styles"
|
520 |
+
msgstr "スクリプト/スタイルのバージョン"
|
521 |
+
|
522 |
+
# @ secure_wp
|
523 |
+
#: secure-wordpress.php:885
|
524 |
+
msgid "Removes version of WordPress on the url form scripts and stylesheets only on frontend."
|
525 |
+
msgstr "フロントエンドの url フォームスクリプト/スタイルシートの WordPress バージョンを削除します。"
|
526 |
+
|
languages/secure_wp-nl_NL.mo
ADDED
Binary file
|
languages/secure_wp-nl_NL.po
ADDED
@@ -0,0 +1,246 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Secure WordPress v0.8.2\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-06-22 12:29+0100\n"
|
6 |
+
"PO-Revision-Date: 2010-03-24 18:51+0100\n"
|
7 |
+
"Last-Translator: WordPressPluginGuide.com <info@wppg.me>\n"
|
8 |
+
"Language-Team: WPwebshop.com <info@wppg.me>\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-SourceCharset: utf-8\n"
|
14 |
+
"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\n"
|
15 |
+
"X-Poedit-Basepath: ../\n"
|
16 |
+
"X-Textdomain-Support: yes\n"
|
17 |
+
"X-Poedit-Language: Dutch\n"
|
18 |
+
"X-Poedit-Country: NETHERLANDS\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
|
21 |
+
#: secure-wordpress.php:337
|
22 |
+
msgid "Settings"
|
23 |
+
msgstr "Instellingen"
|
24 |
+
|
25 |
+
# @ secure_wp
|
26 |
+
#: secure-wordpress.php:366
|
27 |
+
#: secure-wordpress.php:413
|
28 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
29 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentatie (Engels)</a>"
|
30 |
+
|
31 |
+
# @ secure_wp
|
32 |
+
#: secure-wordpress.php:389
|
33 |
+
msgid "Options update."
|
34 |
+
msgstr "Opties bijwerken."
|
35 |
+
|
36 |
+
# @ secure_wp
|
37 |
+
#: secure-wordpress.php:391
|
38 |
+
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
39 |
+
msgstr "Alle vermeldingen in de database werden verwijderd. Deactiveer nu deze plugin."
|
40 |
+
|
41 |
+
# @ secure_wp
|
42 |
+
#: secure-wordpress.php:405
|
43 |
+
#: secure-wordpress.php:416
|
44 |
+
msgid "Secure WP"
|
45 |
+
msgstr "Secure WP"
|
46 |
+
|
47 |
+
# @ secure_wp
|
48 |
+
#: secure-wordpress.php:412
|
49 |
+
#: secure-wordpress.php:703
|
50 |
+
msgid "Secure WordPress"
|
51 |
+
msgstr "Secure WordPress"
|
52 |
+
|
53 |
+
#: secure-wordpress.php:436
|
54 |
+
msgid "Version"
|
55 |
+
msgstr "Versie"
|
56 |
+
|
57 |
+
# @ secure_wp
|
58 |
+
#: secure-wordpress.php:436
|
59 |
+
msgid "History"
|
60 |
+
msgstr "Historie"
|
61 |
+
|
62 |
+
#: secure-wordpress.php:436
|
63 |
+
msgid "Author"
|
64 |
+
msgstr "Auteur"
|
65 |
+
|
66 |
+
# @ secure_wp
|
67 |
+
#: secure-wordpress.php:629
|
68 |
+
msgid "Options not update - you don‘t have the privilidges to do this!"
|
69 |
+
msgstr "Opties zijn niet bijgewerkt - je hebt geen rechten om dit te doen !"
|
70 |
+
|
71 |
+
# @ secure_wp
|
72 |
+
#: secure-wordpress.php:649
|
73 |
+
msgid "Entries was not delleted - you don‘t have the privilidges to do this!"
|
74 |
+
msgstr "Vermeldingen werden niet verwijderd - je hebt geen rechten om dit te doen!"
|
75 |
+
|
76 |
+
# @ secure_wp
|
77 |
+
#: secure-wordpress.php:657
|
78 |
+
msgid "Entries was not delleted - check the checkbox!"
|
79 |
+
msgstr "Vermeldingen werden niet verwijderd - controleer het selectievakje!"
|
80 |
+
|
81 |
+
# @ secure_wp
|
82 |
+
#: secure-wordpress.php:677
|
83 |
+
msgid "All entries in the database was cleared."
|
84 |
+
msgstr "Alle vermeldingen in de database zijn verwijderd."
|
85 |
+
|
86 |
+
# @ secure_wp
|
87 |
+
#: secure-wordpress.php:681
|
88 |
+
msgid "Entries was not delleted - check the checkbox or you don‘t have the privilidges to do this!"
|
89 |
+
msgstr "Vermeldingen werden niet verwijderd - je hebt geen rechten om dit te doen!"
|
90 |
+
|
91 |
+
#: secure-wordpress.php:708
|
92 |
+
#: secure-wordpress.php:843
|
93 |
+
#: secure-wordpress.php:863
|
94 |
+
msgid "Click to toggle"
|
95 |
+
msgstr "Klik om te wisselen"
|
96 |
+
|
97 |
+
# @ secure_wp
|
98 |
+
#: secure-wordpress.php:709
|
99 |
+
msgid "Configuration"
|
100 |
+
msgstr "Configuratie"
|
101 |
+
|
102 |
+
# @ secure_wp
|
103 |
+
#: secure-wordpress.php:719
|
104 |
+
msgid "Error-Messages"
|
105 |
+
msgstr "Foutmeldingen"
|
106 |
+
|
107 |
+
# @ secure_wp
|
108 |
+
#: secure-wordpress.php:729
|
109 |
+
msgid "WordPress Version"
|
110 |
+
msgstr "WordPress Versie"
|
111 |
+
|
112 |
+
# @ secure_wp
|
113 |
+
#: secure-wordpress.php:733
|
114 |
+
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
115 |
+
msgstr "Verwijder de WordPress versie van alle pagina's, inclusief feed, niet van de admin interface"
|
116 |
+
|
117 |
+
# @ secure_wp
|
118 |
+
#: secure-wordpress.php:759
|
119 |
+
msgid "Really Simple Discovery"
|
120 |
+
msgstr "Really Simple Discovery"
|
121 |
+
|
122 |
+
# @ secure_wp
|
123 |
+
#: secure-wordpress.php:763
|
124 |
+
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
125 |
+
msgstr "Verwijder de Really Simple Discovery link in <code>wp_head</code> van de front-end gebruikersomgeving"
|
126 |
+
|
127 |
+
# @ secure_wp
|
128 |
+
#: secure-wordpress.php:769
|
129 |
+
msgid "Windows Live Writer"
|
130 |
+
msgstr "Windows Live Writer"
|
131 |
+
|
132 |
+
# @ secure_wp
|
133 |
+
#: secure-wordpress.php:773
|
134 |
+
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
135 |
+
msgstr "Verwijder de Windows Live Writer link in <code>wp_head</code> van de front-end gebruikersomgeving"
|
136 |
+
|
137 |
+
# @ secure_wp
|
138 |
+
#: secure-wordpress.php:779
|
139 |
+
msgid "Core Update"
|
140 |
+
msgstr "Kern Update"
|
141 |
+
|
142 |
+
# @ secure_wp
|
143 |
+
#: secure-wordpress.php:783
|
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 "Verwijder de WordPress Kern update voor gebruikers die geen admin zijn. Laat alleen een boodschap zien over een nieuwe WordPress versie aan gebruikers met update rechten."
|
146 |
+
|
147 |
+
# @ secure_wp
|
148 |
+
#: secure-wordpress.php:789
|
149 |
+
msgid "Plugin Update"
|
150 |
+
msgstr "Plugin Update"
|
151 |
+
|
152 |
+
# @ secure_wp
|
153 |
+
#: secure-wordpress.php:793
|
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 "Verwijder de plugin update voor gebruikers die geen admin zijn. Laat alleen een boodschap zien over een nieuwe versie van een plugin aan gebruikers met rechten om plugins te kunnen bewerken."
|
156 |
+
|
157 |
+
# @ secure_wp
|
158 |
+
#: secure-wordpress.php:800
|
159 |
+
msgid "Theme Update"
|
160 |
+
msgstr "Thema Update"
|
161 |
+
|
162 |
+
# @ secure_wp
|
163 |
+
#: secure-wordpress.php:804
|
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 "Verwijder de thema update voor gebruikers die geen admin zijn. Laat alleen een boodschap zien over een nieuwe versie van een thema aan gebruikers met rechten om thema's te kunnen bewerken."
|
166 |
+
|
167 |
+
# @ secure_wp
|
168 |
+
#: secure-wordpress.php:811
|
169 |
+
msgid "WP Scanner"
|
170 |
+
msgstr "WP Scanner"
|
171 |
+
|
172 |
+
# @ secure_wp
|
173 |
+
#: secure-wordpress.php:815
|
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 is 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 "WordPress scanner is een gratis online informatiebron die blog beheerders kunnen gebruiken om hun WordPress veiligheidsniveau te handhaven. Om wp-scanner te starten selecteer deze optie en voeg de code <code><!-- wpscanner --></code> toe aan je huidige WordPress template. Ga hierna naar <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> en scan je website."
|
176 |
+
|
177 |
+
# @ secure_wp
|
178 |
+
#: secure-wordpress.php:833
|
179 |
+
msgid "Save Changes"
|
180 |
+
msgstr "Bewaar Wijzigingen"
|
181 |
+
|
182 |
+
# @ secure_wp
|
183 |
+
#: secure-wordpress.php:844
|
184 |
+
msgid "Clear Options"
|
185 |
+
msgstr "Opties Verwijderen"
|
186 |
+
|
187 |
+
# @ secure_wp
|
188 |
+
#: secure-wordpress.php:847
|
189 |
+
msgid "Click this button to delete settings of this plugin. Deactivating Secure WordPress plugin remove any data that may have been created."
|
190 |
+
msgstr "Klik op deze knop om de instellingen van deze plugin te wissen. Deactiveren van de Secure WordPress plugin verwijderd alle data die is aangemaakt."
|
191 |
+
|
192 |
+
# @ secure_wp
|
193 |
+
#: secure-wordpress.php:852
|
194 |
+
msgid "Delete Options"
|
195 |
+
msgstr "Verwijder Opties"
|
196 |
+
|
197 |
+
# @ secure_wp
|
198 |
+
#: secure-wordpress.php:864
|
199 |
+
msgid "About the plugin"
|
200 |
+
msgstr "Over de plugin"
|
201 |
+
|
202 |
+
# @ secure_wp
|
203 |
+
#: secure-wordpress.php:877
|
204 |
+
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
205 |
+
msgstr "Voor meer informatie: Bezoek de <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">homepage van de plugin</a> voor meer informatie of download de laatste versie van deze plugin."
|
206 |
+
|
207 |
+
# @ secure_wp
|
208 |
+
#: secure-wordpress.php:877
|
209 |
+
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
|
210 |
+
msgstr "Wil je mij bedanken ? Bezoek mijn <a href=\"http://bueltge.de/wunschliste/\">verlanglijst</a>."
|
211 |
+
|
212 |
+
# @ secure_wp
|
213 |
+
#: secure-wordpress.php:753
|
214 |
+
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
215 |
+
msgstr "creëert een <code>index.php</code> bestand in <code>/plugins/</code> en <code>/themes/</code> om te zorgen dat het je map inhoud niet laat zien"
|
216 |
+
|
217 |
+
# @ secure_wp
|
218 |
+
#: secure-wordpress.php:739
|
219 |
+
msgid "WordPress Version in Backend"
|
220 |
+
msgstr "WordPress versie in back-end gebruikersinterface"
|
221 |
+
|
222 |
+
# @ secure_wp
|
223 |
+
#: secure-wordpress.php:749
|
224 |
+
msgid "index.php"
|
225 |
+
msgstr "index.php"
|
226 |
+
|
227 |
+
# @ secure_wp
|
228 |
+
#: secure-wordpress.php:743
|
229 |
+
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."
|
230 |
+
msgstr "Verwijderd de WordPress versie in de admin interface voor gebruikers die geen admin zijn. Laat alleen de WordPress versie van je blog zien aan gebruikers met rechten om plugins te kunnen bewerken."
|
231 |
+
|
232 |
+
# @ secure_wp
|
233 |
+
#: secure-wordpress.php:723
|
234 |
+
msgid "Deactivates tooltip and error message at login of WordPress"
|
235 |
+
msgstr "Deactiveert de tekstballon en foutmelding bij het inloggen van WordPress"
|
236 |
+
|
237 |
+
# @ secure_wp
|
238 |
+
#: secure-wordpress.php:821
|
239 |
+
msgid "Block bad queries"
|
240 |
+
msgstr "Blokkeer verkeerde raadplegingen"
|
241 |
+
|
242 |
+
# @ secure_wp
|
243 |
+
#: secure-wordpress.php:825
|
244 |
+
msgid "Protect WordPress against malicious URL requests, see more informations on 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>"
|
245 |
+
msgstr "Bescherm WordPress tegen tegen kwaadaardige URL-aanvragen, lees meer informatie hierover in het <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >bericht van Jeff Starr</a> (Engels)"
|
246 |
+
|
languages/secure_wp-pl_PL.mo
CHANGED
Binary file
|
languages/secure_wp-pl_PL.po
CHANGED
@@ -1,179 +1,530 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Secure WordPress
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"X-Poedit-Country: POLAND\n"
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
msgid "Settings"
|
18 |
msgstr "Ustawienia"
|
19 |
|
20 |
-
|
21 |
-
#: secure-wordpress.php:
|
|
|
22 |
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
23 |
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Dokumentacja</a>"
|
24 |
|
25 |
-
|
|
|
26 |
msgid "Options update."
|
27 |
-
msgstr "
|
28 |
|
29 |
-
|
|
|
30 |
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
31 |
-
msgstr "Wszystkie wpisy
|
32 |
|
33 |
-
|
34 |
-
#: secure-wordpress.php:
|
|
|
35 |
msgid "Secure WP"
|
36 |
msgstr "Secure WP"
|
37 |
|
38 |
-
|
39 |
-
|
|
|
|
|
|
|
40 |
msgid "Secure WordPress"
|
41 |
-
msgstr "
|
42 |
|
43 |
-
|
|
|
44 |
msgid "Version"
|
45 |
msgstr "Wersja"
|
46 |
|
47 |
-
|
|
|
48 |
msgid "History"
|
49 |
msgstr "Historia"
|
50 |
|
51 |
-
|
|
|
52 |
msgid "Author"
|
53 |
msgstr "Autor"
|
54 |
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
#: secure-wordpress.php:
|
72 |
-
msgid "
|
73 |
-
msgstr "
|
74 |
-
|
75 |
-
|
76 |
-
#: secure-wordpress.php:
|
77 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
msgid "Click to toggle"
|
79 |
-
msgstr "Kliknij
|
80 |
|
81 |
-
|
|
|
82 |
msgid "Configuration"
|
83 |
msgstr "Konfiguracja"
|
84 |
|
85 |
-
|
|
|
86 |
msgid "Error-Messages"
|
87 |
-
msgstr "Komunikaty błędów
|
88 |
|
89 |
-
|
90 |
-
|
91 |
-
|
|
|
92 |
|
93 |
-
|
|
|
94 |
msgid "WordPress Version"
|
95 |
-
msgstr "Wersja
|
96 |
|
97 |
-
|
|
|
98 |
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
99 |
-
msgstr "
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
msgid "Really Simple Discovery"
|
111 |
msgstr "Really Simple Discovery"
|
112 |
|
113 |
-
|
|
|
114 |
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
115 |
-
msgstr "
|
116 |
|
117 |
-
|
|
|
118 |
msgid "Windows Live Writer"
|
119 |
msgstr "Windows Live Writer"
|
120 |
|
121 |
-
|
|
|
122 |
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
123 |
-
msgstr "
|
124 |
|
125 |
-
|
|
|
126 |
msgid "Core Update"
|
127 |
-
msgstr "Aktualizacja
|
128 |
|
129 |
-
|
|
|
130 |
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
131 |
-
msgstr "
|
132 |
|
133 |
-
|
|
|
134 |
msgid "Plugin Update"
|
135 |
-
msgstr "Aktualizacja
|
136 |
|
137 |
-
|
|
|
138 |
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."
|
139 |
-
msgstr "
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
msgid "Save Changes"
|
151 |
msgstr "Zapisz zmiany"
|
152 |
|
153 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
msgid "Clear Options"
|
155 |
-
msgstr "
|
156 |
|
157 |
-
|
158 |
-
|
159 |
-
|
|
|
160 |
|
161 |
-
|
|
|
162 |
msgid "Delete Options"
|
163 |
-
msgstr "
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
|
173 |
-
|
174 |
-
|
175 |
-
|
|
|
176 |
|
177 |
-
|
178 |
-
|
|
|
|
|
179 |
|
1 |
msgid ""
|
2 |
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: 2011-02-16 00:38+0100\n"
|
7 |
+
"Last-Translator: RafalDesign <admin@rafaldesign.pl>\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-SourceCharset: utf-8\n"
|
14 |
+
"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"
|
15 |
+
"X-Poedit-Basepath: ../\n"
|
16 |
+
"X-Textdomain-Support: yes\n"
|
17 |
+
"X-Poedit-SearchPath-0: .\n"
|
18 |
+
|
19 |
+
#@ secure_wp
|
20 |
+
#. translators: plugin header field 'Description'
|
21 |
+
#: secure-wordpress.php:0
|
22 |
+
msgid "Little basics for secure your WordPress-installation."
|
23 |
+
msgstr "Podstawowe zabezpieczenie dla twojej witryny opartej na WordPress"
|
24 |
+
|
25 |
+
#@ default
|
26 |
+
#: secure-wordpress.php:370
|
27 |
msgid "Settings"
|
28 |
msgstr "Ustawienia"
|
29 |
|
30 |
+
#@ secure_wp
|
31 |
+
#: secure-wordpress.php:399
|
32 |
+
#: secure-wordpress.php:446
|
33 |
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
34 |
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Dokumentacja</a>"
|
35 |
|
36 |
+
#@ secure_wp
|
37 |
+
#: secure-wordpress.php:422
|
38 |
msgid "Options update."
|
39 |
+
msgstr "Aktualizacja opcji."
|
40 |
|
41 |
+
#@ secure_wp
|
42 |
+
#: secure-wordpress.php:424
|
43 |
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
44 |
+
msgstr "Wszystkie wpisy w bazie danych zostały usunięte. Możesz teraz deaktywować wtyczkę."
|
45 |
|
46 |
+
#@ secure_wp
|
47 |
+
#: secure-wordpress.php:438
|
48 |
+
#: secure-wordpress.php:449
|
49 |
msgid "Secure WP"
|
50 |
msgstr "Secure WP"
|
51 |
|
52 |
+
#@ secure_wp
|
53 |
+
#. translators: plugin header field 'Name'
|
54 |
+
#: secure-wordpress.php:0
|
55 |
+
#: secure-wordpress.php:445
|
56 |
+
#: secure-wordpress.php:773
|
57 |
msgid "Secure WordPress"
|
58 |
+
msgstr "Zabezpiecz WordPress"
|
59 |
|
60 |
+
#@ default
|
61 |
+
#: secure-wordpress.php:469
|
62 |
msgid "Version"
|
63 |
msgstr "Wersja"
|
64 |
|
65 |
+
#@ secure_wp
|
66 |
+
#: secure-wordpress.php:469
|
67 |
msgid "History"
|
68 |
msgstr "Historia"
|
69 |
|
70 |
+
#@ default
|
71 |
+
#: secure-wordpress.php:469
|
72 |
msgid "Author"
|
73 |
msgstr "Autor"
|
74 |
|
75 |
+
#@ secure_wp
|
76 |
+
#: secure-wordpress.php:698
|
77 |
+
msgid "Options not updated - you don‘t have the privileges to do this!"
|
78 |
+
msgstr "Opcje nie zostały zaktualizowane. Nie masz wystarczających uprawnień ."
|
79 |
+
|
80 |
+
#@ secure_wp
|
81 |
+
#: secure-wordpress.php:718
|
82 |
+
msgid "Entries were not deleted - you don‘t have the privileges to do this!"
|
83 |
+
msgstr "Wpisy nie zostały usunięte. Nie masz wystarczających uprawnień ."
|
84 |
+
|
85 |
+
#@ secure_wp
|
86 |
+
#: secure-wordpress.php:726
|
87 |
+
msgid "Entries were not deleted - check the checkbox!"
|
88 |
+
msgstr "Wpisy nie zostały usunięte - zaznacz checkbox!"
|
89 |
+
|
90 |
+
#@ secure_wp
|
91 |
+
#: secure-wordpress.php:746
|
92 |
+
msgid "All entries in the database were cleared."
|
93 |
+
msgstr "Wszystkie wpisy w bazie danych zostały wyczyszczone."
|
94 |
+
|
95 |
+
#@ secure_wp
|
96 |
+
#: secure-wordpress.php:750
|
97 |
+
msgid "Entries were not deleted - check the checkbox or you don‘t have the privileges to do this!"
|
98 |
+
msgstr "Wpisy nie zostały skasowane - upewnij się że checkbox jest zaznaczony, bądź też nie masz wystarczających uprawnień."
|
99 |
+
|
100 |
+
#@ default
|
101 |
+
#: secure-wordpress.php:778
|
102 |
+
#: secure-wordpress.php:914
|
103 |
+
#: secure-wordpress.php:1027
|
104 |
+
#: secure-wordpress.php:1141
|
105 |
msgid "Click to toggle"
|
106 |
+
msgstr "Kliknij aby przełączyć"
|
107 |
|
108 |
+
#@ secure_wp
|
109 |
+
#: secure-wordpress.php:779
|
110 |
msgid "Configuration"
|
111 |
msgstr "Konfiguracja"
|
112 |
|
113 |
+
#@ secure_wp
|
114 |
+
#: secure-wordpress.php:789
|
115 |
msgid "Error-Messages"
|
116 |
+
msgstr "Komunikaty błędów"
|
117 |
|
118 |
+
#@ secure_wp
|
119 |
+
#: secure-wordpress.php:793
|
120 |
+
msgid "Deactivates tooltip and error message at login of WordPress"
|
121 |
+
msgstr "Deaktywuje podpowiedzi oraz komunikaty błędów podczas logowania do WordPress"
|
122 |
|
123 |
+
#@ secure_wp
|
124 |
+
#: secure-wordpress.php:799
|
125 |
msgid "WordPress Version"
|
126 |
+
msgstr "Wersja WordPress"
|
127 |
|
128 |
+
#@ secure_wp
|
129 |
+
#: secure-wordpress.php:803
|
130 |
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
131 |
+
msgstr "Usuwa informację o wersji WordPressa, łącznie z 'feed'. Nie dotyczy administratorów."
|
132 |
+
|
133 |
+
#@ secure_wp
|
134 |
+
#: secure-wordpress.php:809
|
135 |
+
msgid "WordPress Version in Backend"
|
136 |
+
msgstr "Wersja WordPress na zapleczu"
|
137 |
+
|
138 |
+
#@ secure_wp
|
139 |
+
#: secure-wordpress.php:813
|
140 |
+
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."
|
141 |
+
msgstr "Usuwa informację o wersji WordPress w panelu administratora dla osób nie będących administratorami. Pokazuje wersję twojego blogu tylko użytkownikom mającym prawa do edycji wtyczek."
|
142 |
+
|
143 |
+
#@ secure_wp
|
144 |
+
#: secure-wordpress.php:819
|
145 |
+
msgid "index.php"
|
146 |
+
msgstr "index.php"
|
147 |
+
|
148 |
+
#@ secure_wp
|
149 |
+
#: secure-wordpress.php:823
|
150 |
+
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
151 |
+
msgstr "Tworzy plik <code>index.php</code>w<code>/plugins/</code> i<code>/themes/</code> aby uniemożliwić listowanie folderów."
|
152 |
+
|
153 |
+
#@ secure_wp
|
154 |
+
#: secure-wordpress.php:829
|
155 |
msgid "Really Simple Discovery"
|
156 |
msgstr "Really Simple Discovery"
|
157 |
|
158 |
+
#@ secure_wp
|
159 |
+
#: secure-wordpress.php:833
|
160 |
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
161 |
+
msgstr "Usuwa link do Really Simple Discovery w <code>wp_head</code> witryny"
|
162 |
|
163 |
+
#@ secure_wp
|
164 |
+
#: secure-wordpress.php:839
|
165 |
msgid "Windows Live Writer"
|
166 |
msgstr "Windows Live Writer"
|
167 |
|
168 |
+
#@ secure_wp
|
169 |
+
#: secure-wordpress.php:843
|
170 |
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
171 |
+
msgstr "Usuwa link do Windows Lice Writer w <code>wp_head</code> witryny"
|
172 |
|
173 |
+
#@ secure_wp
|
174 |
+
#: secure-wordpress.php:849
|
175 |
msgid "Core Update"
|
176 |
+
msgstr "Aktualizacja WordPress"
|
177 |
|
178 |
+
#@ secure_wp
|
179 |
+
#: secure-wordpress.php:853
|
180 |
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
181 |
+
msgstr "Usuwa możliwość aktualizacji WordPress dla osób posiadających uprawnienia niższe niż administrator. Pokazuje komunikat o nowej wersji WordPressa tylko osobom z uprawnieniami do aktualizacji. "
|
182 |
|
183 |
+
#@ secure_wp
|
184 |
+
#: secure-wordpress.php:859
|
185 |
msgid "Plugin Update"
|
186 |
+
msgstr "Aktualizacja wtyczki"
|
187 |
|
188 |
+
#@ secure_wp
|
189 |
+
#: secure-wordpress.php:863
|
190 |
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."
|
191 |
+
msgstr "Usuwa możliwość aktualizacji wtyczek dla osób posiadających uprawnienia niższe niż administrator. Pokazuje komunikat o nowej wersji wtyczke tylko osobom z uprawnieniami do aktualizacji. "
|
192 |
+
|
193 |
+
#@ secure_wp
|
194 |
+
#: secure-wordpress.php:870
|
195 |
+
msgid "Theme Update"
|
196 |
+
msgstr "Aktualizacja motywów"
|
197 |
+
|
198 |
+
#@ secure_wp
|
199 |
+
#: secure-wordpress.php:874
|
200 |
+
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."
|
201 |
+
msgstr "Usuwa możliwość aktualizacji motywów (themes) dla osób posiadających uprawnienia niższe niż administrator. Pokazuje komunikat o nowej wersji motywu tylko osobom z uprawnieniami do aktualizacji. "
|
202 |
+
|
203 |
+
#@ secure_wp
|
204 |
+
#: secure-wordpress.php:891
|
205 |
+
msgid "Block bad queries"
|
206 |
+
msgstr "Zablokuj błędne zapytania"
|
207 |
+
|
208 |
+
#@ secure_wp
|
209 |
+
#: secure-wordpress.php:895
|
210 |
+
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>"
|
211 |
+
msgstr "Zabezpiecza WordPress przed szkodliwymi żądaniami URL, możesz dowiedzież się więcej <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" > czytając ten wpis Jeffa Starr</a>"
|
212 |
+
|
213 |
+
#@ secure_wp
|
214 |
+
#: secure-wordpress.php:903
|
215 |
msgid "Save Changes"
|
216 |
msgstr "Zapisz zmiany"
|
217 |
|
218 |
+
#@ secure_wp
|
219 |
+
#: secure-wordpress.php:915
|
220 |
+
msgid "Validate your site with a free malware scan from www.sitesecuritymonitor.com"
|
221 |
+
msgstr "Sprawdź za darmo swoją witrynę pod względem zabezpieczeń na www.sitesecuritymonitor.com"
|
222 |
+
|
223 |
+
#@ secure_wp
|
224 |
+
#: secure-wordpress.php:918
|
225 |
+
msgid "Take us for a Test Drive - Free Scan"
|
226 |
+
msgstr "Wypróbuj nas - DARMOWY SKAN WITRYNY"
|
227 |
+
|
228 |
+
#@ secure_wp
|
229 |
+
#: secure-wordpress.php:919
|
230 |
+
msgid "We understand you may have questions:"
|
231 |
+
msgstr "Rozumiemy że możesz mieć jakieś pytania:"
|
232 |
+
|
233 |
+
#@ secure_wp
|
234 |
+
#: secure-wordpress.php:920
|
235 |
+
msgid "What does this do for me?"
|
236 |
+
msgstr "Co będę z tego miał?"
|
237 |
+
|
238 |
+
#@ secure_wp
|
239 |
+
#: secure-wordpress.php:921
|
240 |
+
msgid "Am I really safe? I need to be sure."
|
241 |
+
msgstr "Czy na pewno witryna jest bezpieczna? Muszę być pewny."
|
242 |
+
|
243 |
+
#@ secure_wp
|
244 |
+
#: secure-wordpress.php:922
|
245 |
+
msgid "Rest Assured, Site Security Monitor has you covered."
|
246 |
+
msgstr "Możesz być pewny, Site Security Monitor gwarantuje bezpieczeństwo witryny."
|
247 |
+
|
248 |
+
#@ secure_wp
|
249 |
+
#: secure-wordpress.php:924
|
250 |
+
msgid "FREE scan looks for malware"
|
251 |
+
msgstr "DARMOWY skan szuka luk w zabezpieczeniach"
|
252 |
+
|
253 |
+
#@ secure_wp
|
254 |
+
#: secure-wordpress.php:925
|
255 |
+
msgid "FREE report of website vulnerabilities found"
|
256 |
+
msgstr "DARMOWY raport znalezionych luk w zabezpieczeniach witryny"
|
257 |
+
|
258 |
+
#@ secure_wp
|
259 |
+
#: secure-wordpress.php:926
|
260 |
+
msgid "No setup, tuning and installation on your site - scan begins immediately"
|
261 |
+
msgstr "Nie potrzeba ustawiać, instalować ani dopasowywać ustawień - skan zaczyna się natychmiast"
|
262 |
+
|
263 |
+
#@ secure_wp
|
264 |
+
#: secure-wordpress.php:928
|
265 |
+
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!"
|
266 |
+
msgstr "Dostarczymy ci dokładny raport wszystkich luk w zabezpieczeniach - całkowicie za DARMO. Możesz użyć tego raportu w celu poprawienia zabezpieczeń, albo aby pokazać swemu szefowi że wszystko robisz jak trzeba chroniąc waszą witrynę, bądź też swoim klientom że strona którą dla nich zrobiłeś jest bezpieczna!."
|
267 |
+
|
268 |
+
#@ secure_wp
|
269 |
+
#: secure-wordpress.php:929
|
270 |
+
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!"
|
271 |
+
msgstr "** BONUS: Będziesz mógł użyć loga \"Safe-Seal\" na swojej witrynie po skanowaniu - pokażesz światu że twoja witryna jest bezpieczna!."
|
272 |
+
|
273 |
+
#@ secure_wp
|
274 |
+
#: secure-wordpress.php:931
|
275 |
+
msgid "The form"
|
276 |
+
msgstr "Formularz"
|
277 |
+
|
278 |
+
#@ secure_wp
|
279 |
+
#: secure-wordpress.php:932
|
280 |
+
msgid "Use the follow form or use it on <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">our website</a>."
|
281 |
+
msgstr "Użyj poniższego formularza, bądż też wypełnij formularz<a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">na naszej stronie</a>."
|
282 |
+
|
283 |
+
#@ secure_wp
|
284 |
+
#: secure-wordpress.php:967
|
285 |
+
msgid "Full Name"
|
286 |
+
msgstr "Imię i nazwisko"
|
287 |
+
|
288 |
+
#@ secure_wp
|
289 |
+
#: secure-wordpress.php:970
|
290 |
+
#: secure-wordpress.php:978
|
291 |
+
#: secure-wordpress.php:986
|
292 |
+
#: secure-wordpress.php:994
|
293 |
+
#: secure-wordpress.php:1010
|
294 |
+
msgid "*required"
|
295 |
+
msgstr "*wymagane"
|
296 |
+
|
297 |
+
#@ secure_wp
|
298 |
+
#: secure-wordpress.php:975
|
299 |
+
msgid "eMail Adress"
|
300 |
+
msgstr "adres e-mail"
|
301 |
+
|
302 |
+
#@ secure_wp
|
303 |
+
#: secure-wordpress.php:978
|
304 |
+
msgid ", eMail Address must match domain name"
|
305 |
+
msgstr ", adres e-mail musi być zgodny ze skanowaną witryną"
|
306 |
+
|
307 |
+
#@ secure_wp
|
308 |
+
#: secure-wordpress.php:983
|
309 |
+
msgid "Website"
|
310 |
+
msgstr "Strona internetowa"
|
311 |
+
|
312 |
+
#@ secure_wp
|
313 |
+
#: secure-wordpress.php:991
|
314 |
+
msgid "Phone"
|
315 |
+
msgstr "Telefon"
|
316 |
+
|
317 |
+
#@ secure_wp
|
318 |
+
#: secure-wordpress.php:999
|
319 |
+
msgid "Yes, I need help!"
|
320 |
+
msgstr "Tak, potrzebuję pomocy!"
|
321 |
+
|
322 |
+
#@ secure_wp
|
323 |
+
#: secure-wordpress.php:1002
|
324 |
+
msgid "Call me"
|
325 |
+
msgstr "Zadzwoń do mnie"
|
326 |
+
|
327 |
+
#@ secure_wp
|
328 |
+
#: secure-wordpress.php:1007
|
329 |
+
msgid "Terms and Conditions"
|
330 |
+
msgstr "Warunki umowy"
|
331 |
+
|
332 |
+
#@ secure_wp
|
333 |
+
#: secure-wordpress.php:1010
|
334 |
+
msgid ", I accept"
|
335 |
+
msgstr ", Akceptuję"
|
336 |
+
|
337 |
+
#@ secure_wp
|
338 |
+
#: secure-wordpress.php:1017
|
339 |
+
msgid "Get my Free Web Scan"
|
340 |
+
msgstr "Zacznij skanowanie mojej witryny"
|
341 |
+
|
342 |
+
#@ secure_wp
|
343 |
+
#: secure-wordpress.php:1028
|
344 |
+
msgid "Safe Seal"
|
345 |
+
msgstr "Safe Seal"
|
346 |
+
|
347 |
+
#@ secure_wp
|
348 |
+
#: secure-wordpress.php:1058
|
349 |
+
msgid "Color"
|
350 |
+
msgstr "Kolor"
|
351 |
+
|
352 |
+
#@ secure_wp
|
353 |
+
#: secure-wordpress.php:1062
|
354 |
+
msgid "Green"
|
355 |
+
msgstr "Zielony"
|
356 |
+
|
357 |
+
#@ secure_wp
|
358 |
+
#: secure-wordpress.php:1063
|
359 |
+
msgid "Blue"
|
360 |
+
msgstr "Niebieski"
|
361 |
+
|
362 |
+
#@ secure_wp
|
363 |
+
#: secure-wordpress.php:1064
|
364 |
+
msgid "Red"
|
365 |
+
msgstr "Czerwony"
|
366 |
+
|
367 |
+
#@ secure_wp
|
368 |
+
#: secure-wordpress.php:1065
|
369 |
+
msgid "Brown"
|
370 |
+
msgstr "Brązowy"
|
371 |
+
|
372 |
+
#@ secure_wp
|
373 |
+
#: secure-wordpress.php:1066
|
374 |
+
msgid "Gray"
|
375 |
+
msgstr "Szary"
|
376 |
+
|
377 |
+
#@ secure_wp
|
378 |
+
#: secure-wordpress.php:1075
|
379 |
+
msgid "Text"
|
380 |
+
msgstr "Tekst"
|
381 |
+
|
382 |
+
#@ secure_wp
|
383 |
+
#: secure-wordpress.php:1079
|
384 |
+
msgid "Protected"
|
385 |
+
msgstr "Chroniony"
|
386 |
+
|
387 |
+
#@ secure_wp
|
388 |
+
#: secure-wordpress.php:1080
|
389 |
+
msgid "Secured"
|
390 |
+
msgstr "Zabezpieczony"
|
391 |
+
|
392 |
+
#@ secure_wp
|
393 |
+
#: secure-wordpress.php:1081
|
394 |
+
msgid "Scanned"
|
395 |
+
msgstr "Skanowany"
|
396 |
+
|
397 |
+
#@ secure_wp
|
398 |
+
#: secure-wordpress.php:1082
|
399 |
+
msgid "Protected by"
|
400 |
+
msgstr "Chroniony przez"
|
401 |
+
|
402 |
+
#@ secure_wp
|
403 |
+
#: secure-wordpress.php:1088
|
404 |
+
msgid "Orientation"
|
405 |
+
msgstr "Orientacja"
|
406 |
+
|
407 |
+
#@ secure_wp
|
408 |
+
#: secure-wordpress.php:1092
|
409 |
+
msgid "Horizontal"
|
410 |
+
msgstr "Poziomo"
|
411 |
+
|
412 |
+
#@ secure_wp
|
413 |
+
#: secure-wordpress.php:1093
|
414 |
+
msgid "Vertical"
|
415 |
+
msgstr "Pionowo"
|
416 |
+
|
417 |
+
#@ secure_wp
|
418 |
+
#: secure-wordpress.php:1099
|
419 |
+
msgid "Image border"
|
420 |
+
msgstr "Obramowanie obrazka"
|
421 |
+
|
422 |
+
#@ secure_wp
|
423 |
+
#: secure-wordpress.php:1107
|
424 |
+
msgid "Language"
|
425 |
+
msgstr "Język"
|
426 |
+
|
427 |
+
#@ secure_wp
|
428 |
+
#: secure-wordpress.php:1111
|
429 |
+
msgid "English (US)"
|
430 |
+
msgstr "Angielski (US)"
|
431 |
+
|
432 |
+
#@ secure_wp
|
433 |
+
#: secure-wordpress.php:1112
|
434 |
+
msgid "English (UK)"
|
435 |
+
msgstr "Angielski (UK)"
|
436 |
+
|
437 |
+
#@ secure_wp
|
438 |
+
#: secure-wordpress.php:1113
|
439 |
+
msgid "Spanish"
|
440 |
+
msgstr "Hiszpański"
|
441 |
+
|
442 |
+
#@ secure_wp
|
443 |
+
#: secure-wordpress.php:1114
|
444 |
+
msgid "German"
|
445 |
+
msgstr "Niemiecki"
|
446 |
+
|
447 |
+
#@ secure_wp
|
448 |
+
#: secure-wordpress.php:1115
|
449 |
+
msgid "Italian"
|
450 |
+
msgstr "Włoski"
|
451 |
+
|
452 |
+
#@ secure_wp
|
453 |
+
#: secure-wordpress.php:1116
|
454 |
+
msgid "Japanese"
|
455 |
+
msgstr "Japoński"
|
456 |
+
|
457 |
+
#@ secure_wp
|
458 |
+
#: secure-wordpress.php:1117
|
459 |
+
msgid "Chinese (Simplified)"
|
460 |
+
msgstr "Chiński (uproszczony)"
|
461 |
+
|
462 |
+
#@ secure_wp
|
463 |
+
#: secure-wordpress.php:1118
|
464 |
+
msgid "Chinese (Traditional)"
|
465 |
+
msgstr "Chiński (Tradycyjny)"
|
466 |
+
|
467 |
+
#@ secure_wp
|
468 |
+
#: secure-wordpress.php:1127
|
469 |
+
msgid "Here is your generated code. Place it on your website (as html widget) to show that you are protected."
|
470 |
+
msgstr "Tutaj jest twój wygenerowany kod. Umieść go na stronie (jako widget HTML) aby pokazać że witryna jest chroniona."
|
471 |
+
|
472 |
+
#@ secure_wp
|
473 |
+
#: secure-wordpress.php:1142
|
474 |
msgid "Clear Options"
|
475 |
+
msgstr "Wyczyść opcje"
|
476 |
|
477 |
+
#@ secure_wp
|
478 |
+
#: secure-wordpress.php:1145
|
479 |
+
msgid "Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created."
|
480 |
+
msgstr "Naciśnij przycisk poniżej aby usunąć ustawienia wtyczki. Deaktywacja wtyczki Secure WP usunie wszystkie ustwawienia które stworzyłeś przy jej pomocy."
|
481 |
|
482 |
+
#@ secure_wp
|
483 |
+
#: secure-wordpress.php:1150
|
484 |
msgid "Delete Options"
|
485 |
+
msgstr "Usuń opcje"
|
486 |
+
|
487 |
+
#@ secure_wp
|
488 |
+
#. translators: plugin header field 'PluginURI'
|
489 |
+
#: secure-wordpress.php:0
|
490 |
+
msgid "http://www.sitesecuritymonitor.com/secure-wordpress-plugin"
|
491 |
+
msgstr "http://www.sitesecuritymonitor.com/secure-wordpress-plugin"
|
492 |
+
|
493 |
+
#@ secure_wp
|
494 |
+
#. translators: plugin header field 'Author'
|
495 |
+
#: secure-wordpress.php:0
|
496 |
+
msgid "jremillard"
|
497 |
+
msgstr "http://www.sitesecuritymonitor.com/secure-wordpress-plugin"
|
498 |
+
|
499 |
+
#@ secure_wp
|
500 |
+
#. translators: plugin header field 'AuthorURI'
|
501 |
+
#: secure-wordpress.php:0
|
502 |
+
msgid "http://www.sitesecuritymonitor.com/"
|
503 |
+
msgstr "http://www.sitesecuritymonitor.com/secure-wordpress-plugin"
|
504 |
+
|
505 |
+
#@ secure_wp
|
506 |
+
#: secure-wordpress.php:1031
|
507 |
+
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>"
|
508 |
+
msgstr "Dziękujęmy za używanie naszej wtyczki! Możesz użyć kodu poniżej (HTML - dla łatwego kopiuj-wklej) i wkleić go na swoim blogu. Wtyczka ta co prawda nie oferuje skanowania twojej witryny w poszukiwaniu luk w zabezpieczeniach, ale dzięki niej możesz zabezpieczyć najbardziej podstawowe obszary WordPress. <br/>Jeżeli chcesz aby twoja domena była skanowana regularnie <a href=\"http://www.sitesecuritymonitor.com/wordpress-secure-plugin/\">odwiedź naszą stronę internetową...</a>"
|
509 |
+
|
510 |
+
#@ secure_wp
|
511 |
+
#: secure-wordpress.php:1126
|
512 |
+
msgid "Source"
|
513 |
+
msgstr "Źródło"
|
514 |
+
|
515 |
+
#@ secure_wp
|
516 |
+
#. translators: plugin header field 'Version'
|
517 |
+
#: secure-wordpress.php:0
|
518 |
+
msgid "1.0.5"
|
519 |
+
msgstr ""
|
520 |
|
521 |
+
#@ secure_wp
|
522 |
+
#: secure-wordpress.php:881
|
523 |
+
msgid "WP Version on Scripts/Styles"
|
524 |
+
msgstr "Wersje skryptów/styli WP"
|
525 |
|
526 |
+
#@ secure_wp
|
527 |
+
#: secure-wordpress.php:885
|
528 |
+
msgid "Removes version of WordPress on the url form scripts and stylesheets only on frontend."
|
529 |
+
msgstr "Usuwa wersję WordPressa na URL ze skryptów i styli na witrynie (frontend)."
|
530 |
|
languages/secure_wp-ro_RO.mo
ADDED
Binary file
|
languages/secure_wp-ro_RO.po
ADDED
@@ -0,0 +1,532 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Secure WordPress 1.0.6\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-05-16 12:34+0100\n"
|
6 |
+
"PO-Revision-Date: 2011-01-31 11:12+0200\n"
|
7 |
+
"Last-Translator: \n"
|
8 |
+
"Language-Team: http://www.jibo.ro <contact@jibo.ro>\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-SourceCharset: utf-8\n"
|
14 |
+
"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"
|
15 |
+
"X-Poedit-Basepath: ../\n"
|
16 |
+
"X-Textdomain-Support: yes\n"
|
17 |
+
"X-Poedit-Language: Romanian\n"
|
18 |
+
"X-Poedit-Country: ROMANIA\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
|
21 |
+
#@ secure_wp
|
22 |
+
#. translators: plugin header field 'Description'
|
23 |
+
#: secure-wordpress.php:0
|
24 |
+
msgid "Little basics for secure your WordPress-installation."
|
25 |
+
msgstr "Generalitati pentru securizarea instalarii unui blog WordPress."
|
26 |
+
|
27 |
+
#@ default
|
28 |
+
#: secure-wordpress.php:370
|
29 |
+
msgid "Settings"
|
30 |
+
msgstr "Setari"
|
31 |
+
|
32 |
+
#@ secure_wp
|
33 |
+
#: secure-wordpress.php:399
|
34 |
+
#: secure-wordpress.php:446
|
35 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
36 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentatie</a>"
|
37 |
+
|
38 |
+
#@ secure_wp
|
39 |
+
#: secure-wordpress.php:422
|
40 |
+
msgid "Options update."
|
41 |
+
msgstr "Actualizare optiuni."
|
42 |
+
|
43 |
+
#@ secure_wp
|
44 |
+
#: secure-wordpress.php:424
|
45 |
+
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
46 |
+
msgstr "Toate intrarile din baza de date au fost sterse. Acum poti dezactiva acest plugin."
|
47 |
+
|
48 |
+
#@ secure_wp
|
49 |
+
#: secure-wordpress.php:438
|
50 |
+
#: secure-wordpress.php:449
|
51 |
+
msgid "Secure WP"
|
52 |
+
msgstr "Securizeaza WordPress"
|
53 |
+
|
54 |
+
#@ secure_wp
|
55 |
+
#. translators: plugin header field 'Name'
|
56 |
+
#: secure-wordpress.php:0
|
57 |
+
#: secure-wordpress.php:445
|
58 |
+
#: secure-wordpress.php:773
|
59 |
+
msgid "Secure WordPress"
|
60 |
+
msgstr "Securizeaza WordPress"
|
61 |
+
|
62 |
+
#@ default
|
63 |
+
#: secure-wordpress.php:469
|
64 |
+
msgid "Version"
|
65 |
+
msgstr "Versiune"
|
66 |
+
|
67 |
+
#@ secure_wp
|
68 |
+
#: secure-wordpress.php:469
|
69 |
+
msgid "History"
|
70 |
+
msgstr "Istoric"
|
71 |
+
|
72 |
+
#@ default
|
73 |
+
#: secure-wordpress.php:469
|
74 |
+
msgid "Author"
|
75 |
+
msgstr "Autor"
|
76 |
+
|
77 |
+
#@ secure_wp
|
78 |
+
#: secure-wordpress.php:698
|
79 |
+
msgid "Options not updated - you don‘t have the privileges to do this!"
|
80 |
+
msgstr "Optiunile nu au fost actualizate - nu ai permisiune pentru a face acest lucru!"
|
81 |
+
|
82 |
+
#@ secure_wp
|
83 |
+
#: secure-wordpress.php:718
|
84 |
+
msgid "Entries were not deleted - you don‘t have the privileges to do this!"
|
85 |
+
msgstr "Intrarile nu au fost sterse - nu ai permisiune pentru a face acest lucru!"
|
86 |
+
|
87 |
+
#@ secure_wp
|
88 |
+
#: secure-wordpress.php:726
|
89 |
+
msgid "Entries were not deleted - check the checkbox!"
|
90 |
+
msgstr "Intrarile nu au fost sterse - bifeaza casuta!"
|
91 |
+
|
92 |
+
#@ secure_wp
|
93 |
+
#: secure-wordpress.php:746
|
94 |
+
msgid "All entries in the database were cleared."
|
95 |
+
msgstr "Toate intrarile din baza de date au fost sterse."
|
96 |
+
|
97 |
+
#@ secure_wp
|
98 |
+
#: secure-wordpress.php:750
|
99 |
+
msgid "Entries were not deleted - check the checkbox or you don‘t have the privileges to do this!"
|
100 |
+
msgstr "Intrarile nu au fost sterse - bifeaza casuta sau nu ai permisiune pentru a face acest lucru!"
|
101 |
+
|
102 |
+
#@ default
|
103 |
+
#: secure-wordpress.php:778
|
104 |
+
#: secure-wordpress.php:914
|
105 |
+
#: secure-wordpress.php:1027
|
106 |
+
#: secure-wordpress.php:1141
|
107 |
+
msgid "Click to toggle"
|
108 |
+
msgstr "Apasa pentru a muta"
|
109 |
+
|
110 |
+
#@ secure_wp
|
111 |
+
#: secure-wordpress.php:779
|
112 |
+
msgid "Configuration"
|
113 |
+
msgstr "Configuratie"
|
114 |
+
|
115 |
+
#@ secure_wp
|
116 |
+
#: secure-wordpress.php:789
|
117 |
+
msgid "Error-Messages"
|
118 |
+
msgstr "Mesaje de eroare"
|
119 |
+
|
120 |
+
#@ secure_wp
|
121 |
+
#: secure-wordpress.php:793
|
122 |
+
msgid "Deactivates tooltip and error message at login of WordPress"
|
123 |
+
msgstr "Dezactiveaza tooltip si erori la autentificarea in WordPress"
|
124 |
+
|
125 |
+
#@ secure_wp
|
126 |
+
#: secure-wordpress.php:799
|
127 |
+
msgid "WordPress Version"
|
128 |
+
msgstr "Versiune WordPress"
|
129 |
+
|
130 |
+
#@ secure_wp
|
131 |
+
#: secure-wordpress.php:803
|
132 |
+
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
133 |
+
msgstr "Inlatura versinea WordPress in toate zonele, inclusiv in flux, mai putin in zona de administrare"
|
134 |
+
|
135 |
+
#@ secure_wp
|
136 |
+
#: secure-wordpress.php:809
|
137 |
+
msgid "WordPress Version in Backend"
|
138 |
+
msgstr "Versiunea WordPress din spate"
|
139 |
+
|
140 |
+
#@ secure_wp
|
141 |
+
#: secure-wordpress.php:813
|
142 |
+
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."
|
143 |
+
msgstr "Inlatura versiunea WordPress din zona de administrare pentru utilizatorii fara drepturi de administrator. Afiseaza versiunea WordPress a blog-ului tau doar pentru utilizatorii care au dreptul sa editeze plugin-uri."
|
144 |
+
|
145 |
+
#@ secure_wp
|
146 |
+
#: secure-wordpress.php:819
|
147 |
+
msgid "index.php"
|
148 |
+
msgstr "index.php"
|
149 |
+
|
150 |
+
#@ secure_wp
|
151 |
+
#: secure-wordpress.php:823
|
152 |
+
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
153 |
+
msgstr "creaza un fisier <code>index.php</code> in <code>/plugins/</code> si <code>/themes/</code> pentru a preveni afisarea continutului directoarelor."
|
154 |
+
|
155 |
+
#@ secure_wp
|
156 |
+
#: secure-wordpress.php:829
|
157 |
+
msgid "Really Simple Discovery"
|
158 |
+
msgstr "Really Simple Discovery"
|
159 |
+
|
160 |
+
#@ secure_wp
|
161 |
+
#: secure-wordpress.php:833
|
162 |
+
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
163 |
+
msgstr "Sterge link-ul Really Simple Discovery din <code>wp_head</code> al paginii principale"
|
164 |
+
|
165 |
+
#@ secure_wp
|
166 |
+
#: secure-wordpress.php:839
|
167 |
+
msgid "Windows Live Writer"
|
168 |
+
msgstr "Windows Live Writer"
|
169 |
+
|
170 |
+
#@ secure_wp
|
171 |
+
#: secure-wordpress.php:843
|
172 |
+
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
173 |
+
msgstr "Sterge link-ul Windows Live Writer din <code>wp_head</code> al paginii principale"
|
174 |
+
|
175 |
+
#@ secure_wp
|
176 |
+
#: secure-wordpress.php:849
|
177 |
+
msgid "Core Update"
|
178 |
+
msgstr "Actualizare nucleu"
|
179 |
+
|
180 |
+
#@ secure_wp
|
181 |
+
#: secure-wordpress.php:853
|
182 |
+
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
183 |
+
msgstr "Sterge mesajul de actualizare WordPress pentru utilizatorii fara drepturi de administrare. Afiseaza mesajul de actualizare a versiunii WordPress doar utilizatorilor care au acest drept."
|
184 |
+
|
185 |
+
#@ secure_wp
|
186 |
+
#: secure-wordpress.php:859
|
187 |
+
msgid "Plugin Update"
|
188 |
+
msgstr "Actualizare plugin"
|
189 |
+
|
190 |
+
#@ secure_wp
|
191 |
+
#: secure-wordpress.php:863
|
192 |
+
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."
|
193 |
+
msgstr "Sterge mesajul de actualizare plugin pentru utilizatorii fara drepturi de administrare. Afiseaza mesajul de actualizare a versiunii pluginului doar utilizatorilor care au acest drept."
|
194 |
+
|
195 |
+
#@ secure_wp
|
196 |
+
#: secure-wordpress.php:870
|
197 |
+
msgid "Theme Update"
|
198 |
+
msgstr "Actualizare tema"
|
199 |
+
|
200 |
+
#@ secure_wp
|
201 |
+
#: secure-wordpress.php:874
|
202 |
+
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."
|
203 |
+
msgstr "Inlatura actualizarea temei pentru utilizatorii fara drepturi de administrare. Afiseaza mesajul de actualizare a versiunii temei doar utilizatorilor care au acest drept."
|
204 |
+
|
205 |
+
#@ secure_wp
|
206 |
+
#: secure-wordpress.php:891
|
207 |
+
msgid "Block bad queries"
|
208 |
+
msgstr "Blocheaza interogarile negative"
|
209 |
+
|
210 |
+
#@ secure_wp
|
211 |
+
#: secure-wordpress.php:895
|
212 |
+
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>"
|
213 |
+
msgstr "Protejeaza WordPress impotriva cererilor URL malitioase, vezi mai multe informatii in <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"citeste acest articol\" >articolul lui Jeff Starr</a>"
|
214 |
+
|
215 |
+
#@ secure_wp
|
216 |
+
#: secure-wordpress.php:903
|
217 |
+
msgid "Save Changes"
|
218 |
+
msgstr "Salveaza modificarile"
|
219 |
+
|
220 |
+
#@ secure_wp
|
221 |
+
#: secure-wordpress.php:915
|
222 |
+
msgid "Validate your site with a free malware scan from www.sitesecuritymonitor.com"
|
223 |
+
msgstr "Valideaza-ti site-ul cu scanarea gratuita de la www.sitesecuritymonitor.com"
|
224 |
+
|
225 |
+
#@ secure_wp
|
226 |
+
#: secure-wordpress.php:918
|
227 |
+
msgid "Take us for a Test Drive - Free Scan"
|
228 |
+
msgstr "Incearca un drive test - Scanare gratuita"
|
229 |
+
|
230 |
+
#@ secure_wp
|
231 |
+
#: secure-wordpress.php:919
|
232 |
+
msgid "We understand you may have questions:"
|
233 |
+
msgstr "Intelegem ca mai ai intrebari:"
|
234 |
+
|
235 |
+
#@ secure_wp
|
236 |
+
#: secure-wordpress.php:920
|
237 |
+
msgid "What does this do for me?"
|
238 |
+
msgstr "Cu ce ma ajuta asta?"
|
239 |
+
|
240 |
+
#@ secure_wp
|
241 |
+
#: secure-wordpress.php:921
|
242 |
+
msgid "Am I really safe? I need to be sure."
|
243 |
+
msgstr "Sunt cu adevarat in siguranta? Trebuie sa fiu sigur."
|
244 |
+
|
245 |
+
#@ secure_wp
|
246 |
+
#: secure-wordpress.php:922
|
247 |
+
msgid "Rest Assured, Site Security Monitor has you covered."
|
248 |
+
msgstr "Stai linistit, Site Security Monitor te protejeaza."
|
249 |
+
|
250 |
+
#@ secure_wp
|
251 |
+
#: secure-wordpress.php:924
|
252 |
+
msgid "FREE scan looks for malware"
|
253 |
+
msgstr "Scanarea gratuita cauta dupa vulnerabilitati"
|
254 |
+
|
255 |
+
#@ secure_wp
|
256 |
+
#: secure-wordpress.php:925
|
257 |
+
msgid "FREE report of website vulnerabilities found"
|
258 |
+
msgstr "Raport gratuit al vulnerabilitatilor gasite"
|
259 |
+
|
260 |
+
#@ secure_wp
|
261 |
+
#: secure-wordpress.php:926
|
262 |
+
msgid "No setup, tuning and installation on your site - scan begins immediately"
|
263 |
+
msgstr "Fara instalare sau modificare a site-ului tau - scanarea incepe imediat"
|
264 |
+
|
265 |
+
#@ secure_wp
|
266 |
+
#: secure-wordpress.php:928
|
267 |
+
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!"
|
268 |
+
msgstr "Iti vom trimite un raport detaliat cu privire la vulnerabilitatile site-ului - absolut gratuit. Esti liber sa folosesti acest raport pentru a-ti astupa gaurile, sa dovedesti sefilor ca site-ul este sigur, sau sa arati clientilor ca site-ul pe care il construiesti este securizat!"
|
269 |
+
|
270 |
+
#@ secure_wp
|
271 |
+
#: secure-wordpress.php:929
|
272 |
+
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!"
|
273 |
+
msgstr "** Bonus: Vei putea sa folosesti Site Security Monitor \"Safe-Seal\" pe site-ul tau dupa scanare - acesta arata lumii ca ai un site securizat!"
|
274 |
+
|
275 |
+
#@ secure_wp
|
276 |
+
#: secure-wordpress.php:931
|
277 |
+
msgid "The form"
|
278 |
+
msgstr "Formularul"
|
279 |
+
|
280 |
+
#@ secure_wp
|
281 |
+
#: secure-wordpress.php:932
|
282 |
+
msgid "Use the follow form or use it on <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">our website</a>."
|
283 |
+
msgstr "Foloseste formularul urmator sau foloseste-l pe cel de pe <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">site-ul nostru</a>."
|
284 |
+
|
285 |
+
#@ secure_wp
|
286 |
+
#: secure-wordpress.php:967
|
287 |
+
msgid "Full Name"
|
288 |
+
msgstr "Nume intreg"
|
289 |
+
|
290 |
+
#@ secure_wp
|
291 |
+
#: secure-wordpress.php:970
|
292 |
+
#: secure-wordpress.php:978
|
293 |
+
#: secure-wordpress.php:986
|
294 |
+
#: secure-wordpress.php:994
|
295 |
+
#: secure-wordpress.php:1010
|
296 |
+
msgid "*required"
|
297 |
+
msgstr "*Obligatoriu"
|
298 |
+
|
299 |
+
#@ secure_wp
|
300 |
+
#: secure-wordpress.php:975
|
301 |
+
msgid "eMail Adress"
|
302 |
+
msgstr "Adresa email"
|
303 |
+
|
304 |
+
#@ secure_wp
|
305 |
+
#: secure-wordpress.php:978
|
306 |
+
msgid ", eMail Address must match domain name"
|
307 |
+
msgstr ", Adresa de email trebuie sa fie in acelasi domeniu cu site-ul"
|
308 |
+
|
309 |
+
#@ secure_wp
|
310 |
+
#: secure-wordpress.php:983
|
311 |
+
msgid "Website"
|
312 |
+
msgstr "Website"
|
313 |
+
|
314 |
+
#@ secure_wp
|
315 |
+
#: secure-wordpress.php:991
|
316 |
+
msgid "Phone"
|
317 |
+
msgstr "Telefon"
|
318 |
+
|
319 |
+
#@ secure_wp
|
320 |
+
#: secure-wordpress.php:999
|
321 |
+
msgid "Yes, I need help!"
|
322 |
+
msgstr "DA, am nevoie de ajutor!"
|
323 |
+
|
324 |
+
#@ secure_wp
|
325 |
+
#: secure-wordpress.php:1002
|
326 |
+
msgid "Call me"
|
327 |
+
msgstr "Suna-ma"
|
328 |
+
|
329 |
+
#@ secure_wp
|
330 |
+
#: secure-wordpress.php:1007
|
331 |
+
msgid "Terms and Conditions"
|
332 |
+
msgstr "Termeni si conditii"
|
333 |
+
|
334 |
+
#@ secure_wp
|
335 |
+
#: secure-wordpress.php:1010
|
336 |
+
msgid ", I accept"
|
337 |
+
msgstr ", Accept"
|
338 |
+
|
339 |
+
#@ secure_wp
|
340 |
+
#: secure-wordpress.php:1017
|
341 |
+
msgid "Get my Free Web Scan"
|
342 |
+
msgstr "Incearca Scanarea Web Gratuita"
|
343 |
+
|
344 |
+
#@ secure_wp
|
345 |
+
#: secure-wordpress.php:1028
|
346 |
+
msgid "Safe Seal"
|
347 |
+
msgstr "Safe Seal"
|
348 |
+
|
349 |
+
#@ secure_wp
|
350 |
+
#: secure-wordpress.php:1058
|
351 |
+
msgid "Color"
|
352 |
+
msgstr "Culoare"
|
353 |
+
|
354 |
+
#@ secure_wp
|
355 |
+
#: secure-wordpress.php:1062
|
356 |
+
msgid "Green"
|
357 |
+
msgstr "Verde"
|
358 |
+
|
359 |
+
#@ secure_wp
|
360 |
+
#: secure-wordpress.php:1063
|
361 |
+
msgid "Blue"
|
362 |
+
msgstr "Albastru"
|
363 |
+
|
364 |
+
#@ secure_wp
|
365 |
+
#: secure-wordpress.php:1064
|
366 |
+
msgid "Red"
|
367 |
+
msgstr "Rosu"
|
368 |
+
|
369 |
+
#@ secure_wp
|
370 |
+
#: secure-wordpress.php:1065
|
371 |
+
msgid "Brown"
|
372 |
+
msgstr "Maro"
|
373 |
+
|
374 |
+
#@ secure_wp
|
375 |
+
#: secure-wordpress.php:1066
|
376 |
+
msgid "Gray"
|
377 |
+
msgstr "Gri"
|
378 |
+
|
379 |
+
#@ secure_wp
|
380 |
+
#: secure-wordpress.php:1075
|
381 |
+
msgid "Text"
|
382 |
+
msgstr "Text"
|
383 |
+
|
384 |
+
#@ secure_wp
|
385 |
+
#: secure-wordpress.php:1079
|
386 |
+
msgid "Protected"
|
387 |
+
msgstr "Protejat"
|
388 |
+
|
389 |
+
#@ secure_wp
|
390 |
+
#: secure-wordpress.php:1080
|
391 |
+
msgid "Secured"
|
392 |
+
msgstr "Securizat"
|
393 |
+
|
394 |
+
#@ secure_wp
|
395 |
+
#: secure-wordpress.php:1081
|
396 |
+
msgid "Scanned"
|
397 |
+
msgstr "Scanat"
|
398 |
+
|
399 |
+
#@ secure_wp
|
400 |
+
#: secure-wordpress.php:1082
|
401 |
+
msgid "Protected by"
|
402 |
+
msgstr "Protejat de"
|
403 |
+
|
404 |
+
#@ secure_wp
|
405 |
+
#: secure-wordpress.php:1088
|
406 |
+
msgid "Orientation"
|
407 |
+
msgstr "Orientare"
|
408 |
+
|
409 |
+
#@ secure_wp
|
410 |
+
#: secure-wordpress.php:1092
|
411 |
+
msgid "Horizontal"
|
412 |
+
msgstr "Orizontal"
|
413 |
+
|
414 |
+
#@ secure_wp
|
415 |
+
#: secure-wordpress.php:1093
|
416 |
+
msgid "Vertical"
|
417 |
+
msgstr "Vertical"
|
418 |
+
|
419 |
+
#@ secure_wp
|
420 |
+
#: secure-wordpress.php:1099
|
421 |
+
msgid "Image border"
|
422 |
+
msgstr "Chenar imagine"
|
423 |
+
|
424 |
+
#@ secure_wp
|
425 |
+
#: secure-wordpress.php:1107
|
426 |
+
msgid "Language"
|
427 |
+
msgstr "Limba"
|
428 |
+
|
429 |
+
#@ secure_wp
|
430 |
+
#: secure-wordpress.php:1111
|
431 |
+
msgid "English (US)"
|
432 |
+
msgstr "Engleza (US)"
|
433 |
+
|
434 |
+
#@ secure_wp
|
435 |
+
#: secure-wordpress.php:1112
|
436 |
+
msgid "English (UK)"
|
437 |
+
msgstr "Engleza (UK)"
|
438 |
+
|
439 |
+
#@ secure_wp
|
440 |
+
#: secure-wordpress.php:1113
|
441 |
+
msgid "Spanish"
|
442 |
+
msgstr "Spaniola"
|
443 |
+
|
444 |
+
#@ secure_wp
|
445 |
+
#: secure-wordpress.php:1114
|
446 |
+
msgid "German"
|
447 |
+
msgstr "Germana"
|
448 |
+
|
449 |
+
#@ secure_wp
|
450 |
+
#: secure-wordpress.php:1115
|
451 |
+
msgid "Italian"
|
452 |
+
msgstr "Italiana"
|
453 |
+
|
454 |
+
#@ secure_wp
|
455 |
+
#: secure-wordpress.php:1116
|
456 |
+
msgid "Japanese"
|
457 |
+
msgstr "Japoneza"
|
458 |
+
|
459 |
+
#@ secure_wp
|
460 |
+
#: secure-wordpress.php:1117
|
461 |
+
msgid "Chinese (Simplified)"
|
462 |
+
msgstr "Chineza (Simpla)"
|
463 |
+
|
464 |
+
#@ secure_wp
|
465 |
+
#: secure-wordpress.php:1118
|
466 |
+
msgid "Chinese (Traditional)"
|
467 |
+
msgstr "Chineza (Traditionala)"
|
468 |
+
|
469 |
+
#@ secure_wp
|
470 |
+
#: secure-wordpress.php:1127
|
471 |
+
msgid "Here is your generated code. Place it on your website (as html widget) to show that you are protected."
|
472 |
+
msgstr "Acesta este codul generat pentru tine. Plaseaza-l pe site-ul tau (ca widget html) pentru a demonstra ca esti protejat."
|
473 |
+
|
474 |
+
#@ secure_wp
|
475 |
+
#: secure-wordpress.php:1142
|
476 |
+
msgid "Clear Options"
|
477 |
+
msgstr "Curata optiunile"
|
478 |
+
|
479 |
+
#@ secure_wp
|
480 |
+
#: secure-wordpress.php:1145
|
481 |
+
msgid "Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created."
|
482 |
+
msgstr "Apasa acest buton pentru a sterge optiunile acestui plugin. Dezactivand plugin-ul Secure Wordpress, sterge orice date care au fost create de acesta."
|
483 |
+
|
484 |
+
#@ secure_wp
|
485 |
+
#: secure-wordpress.php:1150
|
486 |
+
msgid "Delete Options"
|
487 |
+
msgstr "Sterge optiunile"
|
488 |
+
|
489 |
+
#@ secure_wp
|
490 |
+
#. translators: plugin header field 'PluginURI'
|
491 |
+
#: secure-wordpress.php:0
|
492 |
+
msgid "http://www.sitesecuritymonitor.com/secure-wordpress-plugin"
|
493 |
+
msgstr "http://www.sitesecuritymonitor.com/secure-wordpress-plugin"
|
494 |
+
|
495 |
+
#@ secure_wp
|
496 |
+
#. translators: plugin header field 'Author'
|
497 |
+
#: secure-wordpress.php:0
|
498 |
+
msgid "jremillard"
|
499 |
+
msgstr "jremillard"
|
500 |
+
|
501 |
+
#@ secure_wp
|
502 |
+
#. translators: plugin header field 'AuthorURI'
|
503 |
+
#: secure-wordpress.php:0
|
504 |
+
msgid "http://www.sitesecuritymonitor.com/"
|
505 |
+
msgstr "http://www.sitesecuritymonitor.com/"
|
506 |
+
|
507 |
+
#@ secure_wp
|
508 |
+
#: secure-wordpress.php:1031
|
509 |
+
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>"
|
510 |
+
msgstr "Iti multumim pentru ca folosesti plugin-ul nostru! Esti liber sa folosesti scanarea de mai jos (genereaza format HTML pentru a putea copia sau lipi mai usor) in blog-ul tau. Acest sigiliu nu-ti ofera servicii de scanare, pur si simplu iti ofera securitatea de baza a blog-ului WordPress - recomandata de comunitate si din propria experienta a clientilor nostri.<br/>Daca doriti servicii complete de scanare a vulnerabilitatilor WordPress, viziteaza <a href=\"http://www.sitesecuritymonitor.com/wordpress-secure-plugin/\"> pagina noastra principala aici ...</a>"
|
511 |
+
|
512 |
+
#@ secure_wp
|
513 |
+
#: secure-wordpress.php:1126
|
514 |
+
msgid "Source"
|
515 |
+
msgstr "Sursa"
|
516 |
+
|
517 |
+
#@ secure_wp
|
518 |
+
#. translators: plugin header field 'Version'
|
519 |
+
#: secure-wordpress.php:0
|
520 |
+
msgid "1.0.5"
|
521 |
+
msgstr "1.0.5"
|
522 |
+
|
523 |
+
#@ secure_wp
|
524 |
+
#: secure-wordpress.php:881
|
525 |
+
msgid "WP Version on Scripts/Styles"
|
526 |
+
msgstr "Versiune WordPress in scripturi/stiluri"
|
527 |
+
|
528 |
+
#@ secure_wp
|
529 |
+
#: secure-wordpress.php:885
|
530 |
+
msgid "Removes version of WordPress on the url form scripts and stylesheets only on frontend."
|
531 |
+
msgstr "Sterge versiunea Wordpress din adresele URL ale scripturilor js si stilurilor css doar de pe prima pagina."
|
532 |
+
|
languages/secure_wp-ru_RU.mo
ADDED
Binary file
|
languages/secure_wp-ru_RU.po
ADDED
@@ -0,0 +1,237 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Secure WordPress\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-06-22 12:29+0100\n"
|
6 |
+
"PO-Revision-Date: 2009-10-27 15:57+0300\n"
|
7 |
+
"Last-Translator: Dmitriy Donchenko <dmitriy.donchenko@gmail.com>\n"
|
8 |
+
"Language-Team: wpp.pp.ua <wordpress.ua@gmail.com>\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: Ukrainian\n"
|
14 |
+
"X-Poedit-Country: UKRAINE\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;_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 |
+
#: secure-wordpress.php:330
|
23 |
+
msgid "Settings"
|
24 |
+
msgstr "Настройки"
|
25 |
+
|
26 |
+
#: secure-wordpress.php:359
|
27 |
+
#: secure-wordpress.php:402
|
28 |
+
#@ secure_wp
|
29 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
30 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Документация</a>"
|
31 |
+
|
32 |
+
#: secure-wordpress.php:382
|
33 |
+
#@ secure_wp
|
34 |
+
msgid "Options update."
|
35 |
+
msgstr "Настройки обновлены"
|
36 |
+
|
37 |
+
#: secure-wordpress.php:384
|
38 |
+
#@ secure_wp
|
39 |
+
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
40 |
+
msgstr "Все записи из базы данных удалены. Теперь отключите плагин."
|
41 |
+
|
42 |
+
#: secure-wordpress.php:398
|
43 |
+
#: secure-wordpress.php:405
|
44 |
+
#@ secure_wp
|
45 |
+
msgid "Secure WP"
|
46 |
+
msgstr "Безопасный WP"
|
47 |
+
|
48 |
+
#: secure-wordpress.php:401
|
49 |
+
#: secure-wordpress.php:641
|
50 |
+
#@ secure_wp
|
51 |
+
msgid "Secure WordPress"
|
52 |
+
msgstr "Безопасный WP"
|
53 |
+
|
54 |
+
#: secure-wordpress.php:425
|
55 |
+
msgid "Version"
|
56 |
+
msgstr "Версия"
|
57 |
+
|
58 |
+
#: secure-wordpress.php:425
|
59 |
+
#@ secure_wp
|
60 |
+
msgid "History"
|
61 |
+
msgstr "История"
|
62 |
+
|
63 |
+
#: secure-wordpress.php:425
|
64 |
+
msgid "Author"
|
65 |
+
msgstr "Автор"
|
66 |
+
|
67 |
+
#: secure-wordpress.php:568
|
68 |
+
#@ secure_wp
|
69 |
+
msgid "Options not update - you don‘t have the privilidges to do this!"
|
70 |
+
msgstr "Настройки не сохранены, у вас нет доступа для этого!"
|
71 |
+
|
72 |
+
#: secure-wordpress.php:588
|
73 |
+
#@ secure_wp
|
74 |
+
msgid "Entries was not delleted - you don‘t have the privilidges to do this!"
|
75 |
+
msgstr "Настройки не удалены - у вас нет доступа для этого."
|
76 |
+
|
77 |
+
#: secure-wordpress.php:596
|
78 |
+
#@ secure_wp
|
79 |
+
msgid "Entries was not delleted - check the checkbox!"
|
80 |
+
msgstr "Настройки не удалены - проверьте галочку!"
|
81 |
+
|
82 |
+
#: secure-wordpress.php:616
|
83 |
+
#@ secure_wp
|
84 |
+
msgid "All entries in the database was cleared."
|
85 |
+
msgstr "Все настройки в базе данных удалены."
|
86 |
+
|
87 |
+
#: secure-wordpress.php:620
|
88 |
+
#@ secure_wp
|
89 |
+
msgid "Entries was not delleted - check the checkbox or you don‘t have the privilidges to do this!"
|
90 |
+
msgstr "Настройки не удалены - проверьте галочку или у вас нет привелегий для этого"
|
91 |
+
|
92 |
+
#: secure-wordpress.php:646
|
93 |
+
#: secure-wordpress.php:771
|
94 |
+
#: secure-wordpress.php:791
|
95 |
+
msgid "Click to toggle"
|
96 |
+
msgstr "Нажмите для переключения"
|
97 |
+
|
98 |
+
#: secure-wordpress.php:647
|
99 |
+
#@ secure_wp
|
100 |
+
msgid "Configuration"
|
101 |
+
msgstr "Настройки"
|
102 |
+
|
103 |
+
#: secure-wordpress.php:657
|
104 |
+
#@ secure_wp
|
105 |
+
msgid "Error-Messages"
|
106 |
+
msgstr "Сообщения о ошибках"
|
107 |
+
|
108 |
+
#: secure-wordpress.php:661
|
109 |
+
#@ secure_wp
|
110 |
+
msgid "deactivates tooltip and error message at login of WordPress"
|
111 |
+
msgstr "отключает подсказки и сообщения о ошибках при входе в Wordpress"
|
112 |
+
|
113 |
+
#: secure-wordpress.php:667
|
114 |
+
#@ secure_wp
|
115 |
+
msgid "WordPress Version"
|
116 |
+
msgstr "Версия Wordpress"
|
117 |
+
|
118 |
+
#: secure-wordpress.php:671
|
119 |
+
#@ secure_wp
|
120 |
+
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
121 |
+
msgstr "Скрывает версию Wordpress везде, кроме панели администрирования"
|
122 |
+
|
123 |
+
#: secure-wordpress.php:697
|
124 |
+
#@ secure_wp
|
125 |
+
msgid "Really Simple Discovery"
|
126 |
+
msgstr "Really Simple Discovery"
|
127 |
+
|
128 |
+
#: secure-wordpress.php:701
|
129 |
+
#@ secure_wp
|
130 |
+
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
131 |
+
msgstr "Скрыть ссылку RSD ссылку со страниц блога"
|
132 |
+
|
133 |
+
#: secure-wordpress.php:707
|
134 |
+
#@ secure_wp
|
135 |
+
msgid "Windows Live Writer"
|
136 |
+
msgstr "Windows Live Writer"
|
137 |
+
|
138 |
+
#: secure-wordpress.php:711
|
139 |
+
#@ secure_wp
|
140 |
+
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
141 |
+
msgstr "Скрыть Windows Live Writer ссылку со страниц блога"
|
142 |
+
|
143 |
+
#: secure-wordpress.php:717
|
144 |
+
#@ secure_wp
|
145 |
+
msgid "Core Update"
|
146 |
+
msgstr "Обновление ядра"
|
147 |
+
|
148 |
+
#: secure-wordpress.php:721
|
149 |
+
#@ secure_wp
|
150 |
+
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
151 |
+
msgstr "Скрывает сообщение о новой версии Wordpress, от пользователей которые не имеют прав администратора в блоге."
|
152 |
+
|
153 |
+
#: secure-wordpress.php:727
|
154 |
+
#@ secure_wp
|
155 |
+
msgid "Plugin Update"
|
156 |
+
msgstr "Обновление плагинов"
|
157 |
+
|
158 |
+
#: secure-wordpress.php:731
|
159 |
+
#@ secure_wp
|
160 |
+
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."
|
161 |
+
msgstr "Скрывает сообщение о обновлении плагинов, от пользователей которые не имеют прав администратора в блоге."
|
162 |
+
|
163 |
+
#: secure-wordpress.php:738
|
164 |
+
#@ secure_wp
|
165 |
+
msgid "Theme Update"
|
166 |
+
msgstr "Обновление шаблонов"
|
167 |
+
|
168 |
+
#: secure-wordpress.php:742
|
169 |
+
#@ secure_wp
|
170 |
+
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."
|
171 |
+
msgstr "Скрывает сообщение о доступном обновлении шаблонов, от пользователей которые не имеют прав администратора блога."
|
172 |
+
|
173 |
+
#: secure-wordpress.php:749
|
174 |
+
#@ secure_wp
|
175 |
+
msgid "WP Scanner"
|
176 |
+
msgstr "Сканер WP"
|
177 |
+
|
178 |
+
#: secure-wordpress.php:753
|
179 |
+
#@ secure_wp
|
180 |
+
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 is 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."
|
181 |
+
msgstr "WordPress scanner бесплатный ресурс для администраторов блогов, который помогает повысить уровень безопасности блога. Для запуска wp-scanner поставьте галочку и добавьте <code><!-- wpscanner --></code> в шаблон блога. После этого зайдите на сайт <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> и просканируйте сайт."
|
182 |
+
|
183 |
+
#: secure-wordpress.php:761
|
184 |
+
#@ secure_wp
|
185 |
+
msgid "Save Changes"
|
186 |
+
msgstr "Сохранить изменения"
|
187 |
+
|
188 |
+
#: secure-wordpress.php:772
|
189 |
+
#@ secure_wp
|
190 |
+
msgid "Clear Options"
|
191 |
+
msgstr "Очистить настройки"
|
192 |
+
|
193 |
+
#: secure-wordpress.php:775
|
194 |
+
#@ secure_wp
|
195 |
+
msgid "Click this button to delete settings of this plugin. Deactivating Secure WordPress plugin remove any data that may have been created."
|
196 |
+
msgstr "Нажмите на кнопку для удаления настроек этого плагина. Отключение плагина Secure WordPress удалит все данные которые были созданы плагином."
|
197 |
+
|
198 |
+
#: secure-wordpress.php:780
|
199 |
+
#@ secure_wp
|
200 |
+
msgid "Delete Options"
|
201 |
+
msgstr "Удалить настройки"
|
202 |
+
|
203 |
+
#: secure-wordpress.php:792
|
204 |
+
#@ secure_wp
|
205 |
+
msgid "About the plugin"
|
206 |
+
msgstr "О плагине"
|
207 |
+
|
208 |
+
#: secure-wordpress.php:805
|
209 |
+
#@ secure_wp
|
210 |
+
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
211 |
+
msgstr "Полезная информация: Посетите <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">страницу плагина</a> для информации о плагине или для получения обновления плагина. Перевод на русский язык - <a href=\"http://blogproblog.com\">Дмитрий Донченко</a>. "
|
212 |
+
|
213 |
+
#: secure-wordpress.php:805
|
214 |
+
#@ secure_wp
|
215 |
+
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
|
216 |
+
msgstr "Хотите поблагодарить? Посмотрите мой <href=\"http://bueltge.de/wunschliste/\">список подарков</a>."
|
217 |
+
|
218 |
+
#: secure-wordpress.php:691
|
219 |
+
#@ secure_wp
|
220 |
+
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
221 |
+
msgstr "создает <code>index.php</code> файл в <code>/plugins/</code> и <code>/themes/</code>, чтобы скрыть файлы в папках."
|
222 |
+
|
223 |
+
#: secure-wordpress.php:677
|
224 |
+
#@ secure_wp
|
225 |
+
msgid "WordPress Version in Backend"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: secure-wordpress.php:687
|
229 |
+
#@ secure_wp
|
230 |
+
msgid "index.php"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: secure-wordpress.php:681
|
234 |
+
#@ secure_wp
|
235 |
+
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."
|
236 |
+
msgstr ""
|
237 |
+
|
languages/secure_wp-uk.mo
ADDED
Binary file
|
languages/secure_wp-uk.po
ADDED
@@ -0,0 +1,225 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Secure WordPress\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-06-22 12:29+0100\n"
|
6 |
+
"PO-Revision-Date: 2009-11-02 16:27+0200\n"
|
7 |
+
"Last-Translator: Дмитрий aka AzzePis <azzepis@gmail.com>\n"
|
8 |
+
"Language-Team: wordpress.co.ua <blog@blogaboutblog.com>\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-SourceCharset: utf-8\n"
|
13 |
+
"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\n"
|
14 |
+
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Textdomain-Support: yes\n"
|
16 |
+
"X-Poedit-Language: Ukrainian\n"
|
17 |
+
"X-Poedit-Country: UKRAINE\n"
|
18 |
+
"X-Poedit-SearchPath-0: .\n"
|
19 |
+
|
20 |
+
#: secure-wordpress.php:323
|
21 |
+
msgid "Settings"
|
22 |
+
msgstr "Налаштування"
|
23 |
+
|
24 |
+
#@ secure_wp
|
25 |
+
#: secure-wordpress.php:352
|
26 |
+
#: secure-wordpress.php:389
|
27 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
28 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Документація</a>"
|
29 |
+
|
30 |
+
#@ secure_wp
|
31 |
+
#: secure-wordpress.php:369
|
32 |
+
msgid "Options update."
|
33 |
+
msgstr "Оновлення налаштувань."
|
34 |
+
|
35 |
+
#@ secure_wp
|
36 |
+
#: secure-wordpress.php:371
|
37 |
+
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
38 |
+
msgstr "Усі записи у базі данних були очищені. Тепер деактивуйте цей плагін."
|
39 |
+
|
40 |
+
#@ secure_wp
|
41 |
+
#: secure-wordpress.php:385
|
42 |
+
#: secure-wordpress.php:392
|
43 |
+
msgid "Secure WP"
|
44 |
+
msgstr "Secure WP"
|
45 |
+
|
46 |
+
#@ secure_wp
|
47 |
+
#: secure-wordpress.php:388
|
48 |
+
#: secure-wordpress.php:614
|
49 |
+
msgid "Secure WordPress"
|
50 |
+
msgstr "Secure WordPress"
|
51 |
+
|
52 |
+
#: secure-wordpress.php:412
|
53 |
+
msgid "Version"
|
54 |
+
msgstr "Версія"
|
55 |
+
|
56 |
+
#@ secure_wp
|
57 |
+
#: secure-wordpress.php:412
|
58 |
+
msgid "History"
|
59 |
+
msgstr "Історія"
|
60 |
+
|
61 |
+
#: secure-wordpress.php:412
|
62 |
+
msgid "Author"
|
63 |
+
msgstr "Автор"
|
64 |
+
|
65 |
+
#@ secure_wp
|
66 |
+
#: secure-wordpress.php:542
|
67 |
+
msgid "Options not update - you don‘t have the privilidges to do this!"
|
68 |
+
msgstr "Налаштування не оновлено - ви не маєте привілегій, щоб зробити це!"
|
69 |
+
|
70 |
+
#@ secure_wp
|
71 |
+
#: secure-wordpress.php:562
|
72 |
+
msgid "Entries was not delleted - you don‘t have the privilidges to do this!"
|
73 |
+
msgstr "Записи не були видалені - ви не маєте привілегій, щоб зробити це!"
|
74 |
+
|
75 |
+
#@ secure_wp
|
76 |
+
#: secure-wordpress.php:570
|
77 |
+
msgid "Entries was not delleted - check the checkbox!"
|
78 |
+
msgstr "Записи не були видалені - відмітьте чекбокс (поставте птичку)!"
|
79 |
+
|
80 |
+
#@ secure_wp
|
81 |
+
#: secure-wordpress.php:590
|
82 |
+
msgid "All entries in the database was cleared."
|
83 |
+
msgstr "Усі записи у базі данних були очищені."
|
84 |
+
|
85 |
+
#@ secure_wp
|
86 |
+
#: secure-wordpress.php:594
|
87 |
+
msgid "Entries was not delleted - check the checkbox or you don‘t have the privilidges to do this!"
|
88 |
+
msgstr "Записи не були видалені - відмітьте чекбокс (поставте птичку) або Ви не маєте привілегій, щоб зробити це!"
|
89 |
+
|
90 |
+
#: secure-wordpress.php:619
|
91 |
+
#: secure-wordpress.php:734
|
92 |
+
#: secure-wordpress.php:754
|
93 |
+
msgid "Click to toggle"
|
94 |
+
msgstr "Клацніть для перемикання"
|
95 |
+
|
96 |
+
#@ secure_wp
|
97 |
+
#: secure-wordpress.php:620
|
98 |
+
msgid "Configuration"
|
99 |
+
msgstr "Конфігурація"
|
100 |
+
|
101 |
+
#@ secure_wp
|
102 |
+
#: secure-wordpress.php:630
|
103 |
+
msgid "Error-Messages"
|
104 |
+
msgstr "Повідомлення про помилки"
|
105 |
+
|
106 |
+
#@ secure_wp
|
107 |
+
#: secure-wordpress.php:634
|
108 |
+
msgid "deactivates tooltip and error message at login of WordPress"
|
109 |
+
msgstr "деактивує підказку та повідомлення про помилки при логіні у WordPress"
|
110 |
+
|
111 |
+
#@ secure_wp
|
112 |
+
#: secure-wordpress.php:640
|
113 |
+
msgid "WordPress Version"
|
114 |
+
msgstr "Версія WordPress"
|
115 |
+
|
116 |
+
#@ secure_wp
|
117 |
+
#: secure-wordpress.php:644
|
118 |
+
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
119 |
+
msgstr "Видаляє інформацію про версію WordPress усюди, зокрема у RSS, але не у адмінці."
|
120 |
+
|
121 |
+
#@ secure_wp
|
122 |
+
#: secure-wordpress.php:650
|
123 |
+
msgid "index.html"
|
124 |
+
msgstr "index.html"
|
125 |
+
|
126 |
+
#@ secure_wp
|
127 |
+
#: secure-wordpress.php:660
|
128 |
+
msgid "Really Simple Discovery"
|
129 |
+
msgstr "Really Simple Discovery"
|
130 |
+
|
131 |
+
#@ secure_wp
|
132 |
+
#: secure-wordpress.php:664
|
133 |
+
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
134 |
+
msgstr "Видалити посилання Really Simple Discovery з <code>wp_head</code> на блозі"
|
135 |
+
|
136 |
+
#@ secure_wp
|
137 |
+
#: secure-wordpress.php:670
|
138 |
+
msgid "Windows Live Writer"
|
139 |
+
msgstr "Windows Live Writer"
|
140 |
+
|
141 |
+
#@ secure_wp
|
142 |
+
#: secure-wordpress.php:674
|
143 |
+
msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
|
144 |
+
msgstr "Видалити посилання Windows Live Writer з <code>wp_head</code> на блозі"
|
145 |
+
|
146 |
+
#@ secure_wp
|
147 |
+
#: secure-wordpress.php:680
|
148 |
+
msgid "Core Update"
|
149 |
+
msgstr "Оновлення ядра"
|
150 |
+
|
151 |
+
#@ secure_wp
|
152 |
+
#: secure-wordpress.php:684
|
153 |
+
msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
|
154 |
+
msgstr "Видаляє повідомлення про нові версії Wordpress від користувачів, які не мають прав адміністратора на блозі."
|
155 |
+
|
156 |
+
#@ secure_wp
|
157 |
+
#: secure-wordpress.php:690
|
158 |
+
msgid "Plugin Update"
|
159 |
+
msgstr "Оновлення плагіну"
|
160 |
+
|
161 |
+
#@ secure_wp
|
162 |
+
#: secure-wordpress.php:694
|
163 |
+
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."
|
164 |
+
msgstr "Видаляє повідомлення про нові версії плагіну від користувачів, які не мають прав адміністратора на блозі. Показує повідомлення про нову версію плагіну тільки при інсталяції користувачам, які мають права на редагування плагінів."
|
165 |
+
|
166 |
+
#@ secure_wp
|
167 |
+
#: secure-wordpress.php:701
|
168 |
+
msgid "Theme Update"
|
169 |
+
msgstr "Оновлення Теми"
|
170 |
+
|
171 |
+
#@ secure_wp
|
172 |
+
#: secure-wordpress.php:705
|
173 |
+
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."
|
174 |
+
msgstr "Видаляє повідомлення про нові версії теми від користувачів, які не мають прав адміністратора на блозі. Показує повідомлення про нову версію теми тільки при інсталяції користувачам, які мають права на редагування тем."
|
175 |
+
|
176 |
+
#@ secure_wp
|
177 |
+
#: secure-wordpress.php:712
|
178 |
+
msgid "WP Scanner"
|
179 |
+
msgstr "WP Сканер"
|
180 |
+
|
181 |
+
#@ secure_wp
|
182 |
+
#: secure-wordpress.php:716
|
183 |
+
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 is 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."
|
184 |
+
msgstr "WordPress сканер це безкоштовний онлайн ресурс, який адміністратори блогу можуть використовувати, щоб визначити рівень безпечності їх wordpress блогу. Для запуску wp-сканеру відмітьте цю опцію та додайте цей код <code><!-- wpscanner --></code> до вашої теми WordPress. Після цього перейдіть за посиланням <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> та проскануйте ваш сайт."
|
185 |
+
|
186 |
+
#@ secure_wp
|
187 |
+
#: secure-wordpress.php:724
|
188 |
+
msgid "Save Changes"
|
189 |
+
msgstr "Збережіть Зміни"
|
190 |
+
|
191 |
+
#@ secure_wp
|
192 |
+
#: secure-wordpress.php:735
|
193 |
+
msgid "Clear Options"
|
194 |
+
msgstr "Очистіть налаштування"
|
195 |
+
|
196 |
+
#@ secure_wp
|
197 |
+
#: secure-wordpress.php:738
|
198 |
+
msgid "Click this button to delete settings of this plugin. Deactivating Secure WordPress plugin remove any data that may have been created."
|
199 |
+
msgstr "Натисніть на кнопку для видалення налаштувань цього плагіну. Відключення плагіну Secure WordPress видалить усі дані, що були створені плагіном."
|
200 |
+
|
201 |
+
#@ secure_wp
|
202 |
+
#: secure-wordpress.php:743
|
203 |
+
msgid "Delete Options"
|
204 |
+
msgstr "Видаліть налаштування"
|
205 |
+
|
206 |
+
#@ secure_wp
|
207 |
+
#: secure-wordpress.php:755
|
208 |
+
msgid "About the plugin"
|
209 |
+
msgstr "Про плагін"
|
210 |
+
|
211 |
+
#@ secure_wp
|
212 |
+
#: secure-wordpress.php:768
|
213 |
+
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
214 |
+
msgstr "Корисна інформація: Відвідайте <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">домашню сторінку плагіну</a> для інформації про плагін або для отримання останньої його версії."
|
215 |
+
|
216 |
+
#@ secure_wp
|
217 |
+
#: secure-wordpress.php:768
|
218 |
+
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
|
219 |
+
msgstr "Бажаєте віддячити? Подивіться мій <href=\"http://bueltge.de/wunschliste/\">список бажань</a>."
|
220 |
+
|
221 |
+
#@ secure_wp
|
222 |
+
#: secure-wordpress.php:654
|
223 |
+
msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
|
224 |
+
msgstr "створює <code>index.php</code> файл у папці <code>/plugins/</code> та <code>/themes/</code>, щоб сховати файли цих каталогів від перегляду."
|
225 |
+
|
languages/secure_wp-zh_CN.mo
ADDED
Binary file
|
languages/secure_wp-zh_CN.po
ADDED
@@ -0,0 +1,236 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Secure WordPress v0.6\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2010-01-22 18:08+0800\n"
|
7 |
+
"Last-Translator: 老顽童 <tanghaiwei@dd54.net>\n"
|
8 |
+
"Language-Team: 老顽童 <tanghaiwei@dd54.net>\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: Chinese\n"
|
14 |
+
"X-Poedit-Country: CHINA\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;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
+
"X-Poedit-Basepath: ../\n"
|
18 |
+
"X-Textdomain-Support: yes\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
|
21 |
+
#: secure-wordpress.php:330
|
22 |
+
msgid "Settings"
|
23 |
+
msgstr "设置"
|
24 |
+
|
25 |
+
#@ secure_wp
|
26 |
+
#: secure-wordpress.php:359
|
27 |
+
#: secure-wordpress.php:406
|
28 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
|
29 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">文档</a>,<a href=\"http://dd54.net/\">支持</a>"
|
30 |
+
|
31 |
+
#@ secure_wp
|
32 |
+
#: secure-wordpress.php:382
|
33 |
+
msgid "Options update."
|
34 |
+
msgstr "选项更新。"
|
35 |
+
|
36 |
+
#@ secure_wp
|
37 |
+
#: secure-wordpress.php:384
|
38 |
+
msgid "All entries in the database was cleared. Now deactivate this plugin."
|
39 |
+
msgstr "数据库中的所有项目已清除。现在停用这个插件。"
|
40 |
+
|
41 |
+
#@ secure_wp
|
42 |
+
#: secure-wordpress.php:398
|
43 |
+
#: secure-wordpress.php:409
|
44 |
+
msgid "Secure WP"
|
45 |
+
msgstr "Secure WP"
|
46 |
+
|
47 |
+
#@ secure_wp
|
48 |
+
#: secure-wordpress.php:405
|
49 |
+
#: secure-wordpress.php:652
|
50 |
+
msgid "Secure WordPress"
|
51 |
+
msgstr "Secure WordPress"
|
52 |
+
|
53 |
+
#: secure-wordpress.php:429
|
54 |
+
msgid "Version"
|
55 |
+
msgstr "版本"
|
56 |
+
|
57 |
+
#@ secure_wp
|
58 |
+
#: secure-wordpress.php:429
|
59 |
+
msgid "History"
|
60 |
+
msgstr "历史"
|
61 |
+
|
62 |
+
#: secure-wordpress.php:429
|
63 |
+
msgid "Author"
|
64 |
+
msgstr "作者"
|
65 |
+
|
66 |
+
#@ secure_wp
|
67 |
+
#: secure-wordpress.php:579
|
68 |
+
msgid "Options not update - you don‘t have the privilidges to do this!"
|
69 |
+
msgstr "选项不更新 - 没有权限"
|
70 |
+
|
71 |
+
#@ secure_wp
|
72 |
+
#: secure-wordpress.php:599
|
73 |
+
msgid "Entries was not delleted - you don‘t have the privilidges to do this!"
|
74 |
+
msgstr "项目没有删除 - 没有权限"
|
75 |
+
|
76 |
+
#@ secure_wp
|
77 |
+
#: secure-wordpress.php:607
|
78 |
+
msgid "Entries was not delleted - check the checkbox!"
|
79 |
+
msgstr "项目没有删除 - 选中复选框!"
|
80 |
+
|
81 |
+
#@ secure_wp
|
82 |
+
#: secure-wordpress.php:627
|
83 |
+
msgid "All entries in the database was cleared."
|
84 |
+
msgstr "数据库中的所有项目已清除。"
|
85 |
+
|
86 |
+
#@ secure_wp
|
87 |
+
#: secure-wordpress.php:631
|
88 |
+
msgid "Entries was not delleted - check the checkbox or you don‘t have the privilidges to do this!"
|
89 |
+
msgstr "项目没有删除 - 选中复选框或者没有权限!"
|
90 |
+
|
91 |
+
#: secure-wordpress.php:657
|
92 |
+
#: secure-wordpress.php:782
|
93 |
+
#: secure-wordpress.php:802
|
94 |
+
msgid "Click to toggle"
|
95 |
+
msgstr "点击切换"
|
96 |
+
|
97 |
+
#@ secure_wp
|
98 |
+
#: secure-wordpress.php:658
|
99 |
+
msgid "Configuration"
|
100 |
+
msgstr "配置"
|
101 |
+
|
102 |
+
#@ secure_wp
|
103 |
+
#: secure-wordpress.php:668
|
104 |
+
msgid "Error-Messages"
|
105 |
+
msgstr "错误信息"
|
106 |
+
|
107 |
+
#@ secure_wp
|
108 |
+
#: secure-wordpress.php:672
|
109 |
+
msgid "Deactivates tooltip and error message at login of WordPress"
|
110 |
+
msgstr "停用在WordPress登录提示和错误信息"
|
111 |
+
|
112 |
+
#@ secure_wp
|
113 |
+
#: secure-wordpress.php:678
|
114 |
+
msgid "WordPress Version"
|
115 |
+
msgstr "WordPress版本"
|
116 |
+
|
117 |
+
#@ secure_wp
|
118 |
+
#: secure-wordpress.php:682
|
119 |
+
msgid "Removes version of WordPress in all areas, including feed, not in admin"
|
120 |
+
msgstr "隐藏WordPress版本号,除了管理页面"
|
121 |
+
|
122 |
+
#@ secure_wp
|
123 |
+
#: secure-wordpress.php:688
|
124 |
+
msgid "WordPress Version in Backend"
|
125 |
+
msgstr "WordPress版本号在后台"
|
126 |
+
|
127 |
+
#@ secure_wp
|
128 |
+
#: secure-wordpress.php:692
|
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 "对非管理员隐藏WordPress版本号在管理区域。"
|
131 |
+
|
132 |
+
#@ secure_wp
|
133 |
+
#: secure-wordpress.php:698
|
134 |
+
msgid "index.php"
|
135 |
+
msgstr "index.php"
|
136 |
+
|
137 |
+
#@ secure_wp
|
138 |
+
#: secure-wordpress.php:702
|
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> 和 <code>/themes/</code> 目录"
|
141 |
+
|
142 |
+
#@ secure_wp
|
143 |
+
#: secure-wordpress.php:708
|
144 |
+
msgid "Really Simple Discovery"
|
145 |
+
msgstr "RSD离线编辑接口"
|
146 |
+
|
147 |
+
#@ secure_wp
|
148 |
+
#: secure-wordpress.php:712
|
149 |
+
msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
|
150 |
+
msgstr "隐藏RSD离线编辑接口在 <code>wp_head</code> 前端"
|
151 |
+
|
152 |
+
#@ secure_wp
|
153 |
+
#: secure-wordpress.php:718
|
154 |
+
msgid "Windows Live Writer"
|
155 |
+
msgstr "Windows Live Writer"
|
156 |
+
|
157 |
+
#@ secure_wp
|
158 |
+
#: secure-wordpress.php:722
|
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:728
|
164 |
+
msgid "Core Update"
|
165 |
+
msgstr "核心更新"
|
166 |
+
|
167 |
+
#@ secure_wp
|
168 |
+
#: secure-wordpress.php:732
|
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 "隐藏WordPress核心更新对非管理员。"
|
171 |
+
|
172 |
+
#@ secure_wp
|
173 |
+
#: secure-wordpress.php:738
|
174 |
+
msgid "Plugin Update"
|
175 |
+
msgstr "插件更新"
|
176 |
+
|
177 |
+
#@ secure_wp
|
178 |
+
#: secure-wordpress.php:742
|
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 "隐藏WordPress插件更新对非管理员。"
|
181 |
+
|
182 |
+
#@ secure_wp
|
183 |
+
#: secure-wordpress.php:749
|
184 |
+
msgid "Theme Update"
|
185 |
+
msgstr "主题更新"
|
186 |
+
|
187 |
+
#@ secure_wp
|
188 |
+
#: secure-wordpress.php:753
|
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 "隐藏WordPress插件更新对非管理员。"
|
191 |
+
|
192 |
+
#@ secure_wp
|
193 |
+
#: secure-wordpress.php:760
|
194 |
+
msgid "WP Scanner"
|
195 |
+
msgstr "WP 扫描"
|
196 |
+
|
197 |
+
#@ secure_wp
|
198 |
+
#: secure-wordpress.php:764
|
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 is 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 "WordPress scanner 是一个免费的在线安全扫描服务。为了运行在线安全检测,需要将<!-- wpscanner -->这一行代码加到主题中,然后浏览 <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> 扫描你的网站."
|
201 |
+
|
202 |
+
#@ secure_wp
|
203 |
+
#: secure-wordpress.php:772
|
204 |
+
msgid "Save Changes"
|
205 |
+
msgstr "保存更改"
|
206 |
+
|
207 |
+
#@ secure_wp
|
208 |
+
#: secure-wordpress.php:783
|
209 |
+
msgid "Clear Options"
|
210 |
+
msgstr "清除选项"
|
211 |
+
|
212 |
+
#@ secure_wp
|
213 |
+
#: secure-wordpress.php:786
|
214 |
+
msgid "Click this button to delete settings of this plugin. Deactivating Secure WordPress plugin remove any data that may have been created."
|
215 |
+
msgstr "点击此按钮可删除此插件的设置。"
|
216 |
+
|
217 |
+
#@ secure_wp
|
218 |
+
#: secure-wordpress.php:791
|
219 |
+
msgid "Delete Options"
|
220 |
+
msgstr "删除选项"
|
221 |
+
|
222 |
+
#@ secure_wp
|
223 |
+
#: secure-wordpress.php:803
|
224 |
+
msgid "About the plugin"
|
225 |
+
msgstr "关于插件"
|
226 |
+
|
227 |
+
#@ secure_wp
|
228 |
+
#: secure-wordpress.php:816
|
229 |
+
msgid "Further information: Visit the <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">plugin homepage</a> for further information or to grab the latest version of this plugin."
|
230 |
+
msgstr "更多信息:访问 <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">插件页面</a> 和 <a href=\"http://dd54.net/\">汉化者网站</a> 了解进一步的信息或查找这个插件的最新版本。"
|
231 |
+
|
232 |
+
#@ secure_wp
|
233 |
+
#: secure-wordpress.php:816
|
234 |
+
msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
|
235 |
+
msgstr "你要感谢我呢?访问我的 <a href=\"http://bueltge.de/wunschliste/\">心愿</a> 和 <a href=\"http://dd54.net/\">汉化者网站</a>."
|
236 |
+
|
languages/secure_wp.pot
CHANGED
@@ -1,188 +1,533 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Secure WordPress\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
|
8 |
-
"Language-Team:
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"X-Poedit-
|
14 |
-
"X-Poedit-
|
15 |
-
"X-Poedit-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
#: secure-wordpress.php:
|
35 |
-
|
36 |
-
msgid "
|
37 |
-
msgstr "
|
38 |
-
|
39 |
-
#: secure-wordpress.php:
|
40 |
-
|
41 |
-
msgid "
|
42 |
-
msgstr "
|
43 |
-
|
44 |
-
#: secure-wordpress.php:
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
#: secure-wordpress.php:
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
msgid "
|
66 |
-
msgstr "
|
67 |
-
|
68 |
-
#: secure-wordpress.php:
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
#: secure-wordpress.php:
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
msgid "
|
96 |
-
msgstr "
|
97 |
-
|
98 |
-
#: secure-wordpress.php:
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
#: secure-wordpress.php:
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
msgid "
|
124 |
-
msgstr "
|
125 |
-
|
126 |
-
#: secure-wordpress.php:
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
msgid "
|
144 |
-
msgstr "
|
145 |
-
|
146 |
-
#: secure-wordpress.php:
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
msgid "
|
164 |
-
msgstr "
|
165 |
-
|
166 |
-
#: secure-wordpress.php:
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
msgid "
|
184 |
-
msgstr "
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
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-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:370
|
29 |
+
#@ default
|
30 |
+
msgid "Settings"
|
31 |
+
msgstr "Einstellungen"
|
32 |
+
|
33 |
+
#: secure-wordpress.php:399
|
34 |
+
#: secure-wordpress.php:446
|
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:422
|
40 |
+
#@ secure_wp
|
41 |
+
msgid "Options update."
|
42 |
+
msgstr "Einstellungen aktualisiert."
|
43 |
+
|
44 |
+
#: secure-wordpress.php:424
|
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:438
|
50 |
+
#: secure-wordpress.php:449
|
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:445
|
58 |
+
#: secure-wordpress.php:773
|
59 |
+
#@ secure_wp
|
60 |
+
msgid "Secure WordPress"
|
61 |
+
msgstr "Secure WordPress"
|
62 |
+
|
63 |
+
#: secure-wordpress.php:469
|
64 |
+
#@ default
|
65 |
+
msgid "Version"
|
66 |
+
msgstr "Version"
|
67 |
+
|
68 |
+
#: secure-wordpress.php:469
|
69 |
+
#@ secure_wp
|
70 |
+
msgid "History"
|
71 |
+
msgstr "Historie"
|
72 |
+
|
73 |
+
#: secure-wordpress.php:469
|
74 |
+
#@ default
|
75 |
+
msgid "Author"
|
76 |
+
msgstr "Autor"
|
77 |
+
|
78 |
+
#: secure-wordpress.php:698
|
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:718
|
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:726
|
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:746
|
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:750
|
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:778
|
104 |
+
#: secure-wordpress.php:914
|
105 |
+
#: secure-wordpress.php:1027
|
106 |
+
#: secure-wordpress.php:1141
|
107 |
+
#@ default
|
108 |
+
msgid "Click to toggle"
|
109 |
+
msgstr "Zum umschalten klicken"
|
110 |
+
|
111 |
+
#: secure-wordpress.php:779
|
112 |
+
#@ secure_wp
|
113 |
+
msgid "Configuration"
|
114 |
+
msgstr "Einstellungen"
|
115 |
+
|
116 |
+
#: secure-wordpress.php:789
|
117 |
+
#@ secure_wp
|
118 |
+
msgid "Error-Messages"
|
119 |
+
msgstr "Fehler-Meldungen"
|
120 |
+
|
121 |
+
#: secure-wordpress.php:793
|
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:799
|
127 |
+
#@ secure_wp
|
128 |
+
msgid "WordPress Version"
|
129 |
+
msgstr "WordPress Version"
|
130 |
+
|
131 |
+
#: secure-wordpress.php:803
|
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:809
|
137 |
+
#@ secure_wp
|
138 |
+
msgid "WordPress Version in Backend"
|
139 |
+
msgstr "WordPress Version im Administrationsbereich"
|
140 |
+
|
141 |
+
#: secure-wordpress.php:813
|
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:819
|
147 |
+
#@ secure_wp
|
148 |
+
msgid "index.php"
|
149 |
+
msgstr "index.php"
|
150 |
+
|
151 |
+
#: secure-wordpress.php:823
|
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:829
|
157 |
+
#@ secure_wp
|
158 |
+
msgid "Really Simple Discovery"
|
159 |
+
msgstr "Really Simple Discovery"
|
160 |
+
|
161 |
+
#: secure-wordpress.php:833
|
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:839
|
167 |
+
#@ secure_wp
|
168 |
+
msgid "Windows Live Writer"
|
169 |
+
msgstr "Windows Live Writer"
|
170 |
+
|
171 |
+
#: secure-wordpress.php:843
|
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:849
|
177 |
+
#@ secure_wp
|
178 |
+
msgid "Core Update"
|
179 |
+
msgstr "Core Update"
|
180 |
+
|
181 |
+
#: secure-wordpress.php:853
|
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:859
|
187 |
+
#@ secure_wp
|
188 |
+
msgid "Plugin Update"
|
189 |
+
msgstr "Plugin Update"
|
190 |
+
|
191 |
+
#: secure-wordpress.php:863
|
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:870
|
197 |
+
#@ secure_wp
|
198 |
+
msgid "Theme Update"
|
199 |
+
msgstr "Theme Update"
|
200 |
+
|
201 |
+
#: secure-wordpress.php:874
|
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:891
|
207 |
+
#@ secure_wp
|
208 |
+
msgid "Block bad queries"
|
209 |
+
msgstr "Blocke negative Abfragen"
|
210 |
+
|
211 |
+
#: secure-wordpress.php:895
|
212 |
+
#@ secure_wp
|
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 |
+
#: secure-wordpress.php:903
|
217 |
+
#@ secure_wp
|
218 |
+
msgid "Save Changes"
|
219 |
+
msgstr "Einstellungen aktualisieren"
|
220 |
+
|
221 |
+
#: secure-wordpress.php:915
|
222 |
+
#@ secure_wp
|
223 |
+
msgid "Validate your site with a free malware scan from www.sitesecuritymonitor.com"
|
224 |
+
msgstr "Überprüfe deine Seite mit einem freien Malware-Scan von www.sitesecuritymonitor.com"
|
225 |
+
|
226 |
+
#: secure-wordpress.php:918
|
227 |
+
#@ secure_wp
|
228 |
+
msgid "Take us for a Test Drive - Free Scan"
|
229 |
+
msgstr "Nutze uns für eine Probefahrt - freier Scan"
|
230 |
+
|
231 |
+
#: secure-wordpress.php:919
|
232 |
+
#@ secure_wp
|
233 |
+
msgid "We understand you may have questions:"
|
234 |
+
msgstr "Wie verstehen, dass du Fragen hast:"
|
235 |
+
|
236 |
+
#: secure-wordpress.php:920
|
237 |
+
#@ secure_wp
|
238 |
+
msgid "What does this do for me?"
|
239 |
+
msgstr "Was bedeutet der Scan für mich?"
|
240 |
+
|
241 |
+
#: secure-wordpress.php:921
|
242 |
+
#@ secure_wp
|
243 |
+
msgid "Am I really safe? I need to be sure."
|
244 |
+
msgstr "Bin ich wirklich sicher? Ich muss sicher sein."
|
245 |
+
|
246 |
+
#: secure-wordpress.php:922
|
247 |
+
#@ secure_wp
|
248 |
+
msgid "Rest Assured, Site Security Monitor has you covered."
|
249 |
+
msgstr "Sei dir sicher, Site Security Monitor ist sicher."
|
250 |
+
|
251 |
+
#: secure-wordpress.php:924
|
252 |
+
#@ secure_wp
|
253 |
+
msgid "FREE scan looks for malware"
|
254 |
+
msgstr "FREIER scan um Malware zu finden"
|
255 |
+
|
256 |
+
#: secure-wordpress.php:925
|
257 |
+
#@ secure_wp
|
258 |
+
msgid "FREE report of website vulnerabilities found"
|
259 |
+
msgstr "FREIE Auswertung der gefundenen Schwachstellen auf einer Webseite"
|
260 |
+
|
261 |
+
#: secure-wordpress.php:926
|
262 |
+
#@ secure_wp
|
263 |
+
msgid "No setup, tuning and installation on your site - scan begins immediately"
|
264 |
+
msgstr "Keine Einrichtung, keine Anpassunge und Installationen auf deiner Site - der Scan kann sofort starten"
|
265 |
+
|
266 |
+
#: secure-wordpress.php:928
|
267 |
+
#@ secure_wp
|
268 |
+
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!"
|
269 |
+
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."
|
270 |
+
|
271 |
+
#: secure-wordpress.php:929
|
272 |
+
#@ secure_wp
|
273 |
+
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!"
|
274 |
+
msgstr "** Bonus: Du kannst das Site Security Monitor \"Safe-Seal\" in deine Site integrieren - zeige der Welt, dass du frei von Malware bist."
|
275 |
+
|
276 |
+
#: secure-wordpress.php:931
|
277 |
+
#@ secure_wp
|
278 |
+
msgid "The form"
|
279 |
+
msgstr "Das Formular"
|
280 |
+
|
281 |
+
#: secure-wordpress.php:932
|
282 |
+
#@ secure_wp
|
283 |
+
msgid "Use the follow form or use it on <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">our website</a>."
|
284 |
+
msgstr "Nutze das Formular oder gehe direkt über <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">unsere Website</a>."
|
285 |
+
|
286 |
+
#: secure-wordpress.php:967
|
287 |
+
#@ secure_wp
|
288 |
+
msgid "Full Name"
|
289 |
+
msgstr "Name, Vorname"
|
290 |
+
|
291 |
+
#: secure-wordpress.php:970
|
292 |
+
#: secure-wordpress.php:978
|
293 |
+
#: secure-wordpress.php:986
|
294 |
+
#: secure-wordpress.php:994
|
295 |
+
#: secure-wordpress.php:1010
|
296 |
+
#@ secure_wp
|
297 |
+
msgid "*required"
|
298 |
+
msgstr "*Pflichtfeld"
|
299 |
+
|
300 |
+
#: secure-wordpress.php:975
|
301 |
+
#@ secure_wp
|
302 |
+
msgid "eMail Adress"
|
303 |
+
msgstr "E-Mail Adresse"
|
304 |
+
|
305 |
+
#: secure-wordpress.php:978
|
306 |
+
#@ secure_wp
|
307 |
+
msgid ", eMail Address must match domain name"
|
308 |
+
msgstr ", die E-Mail Adresse muss den Domain-Namen enthalten"
|
309 |
+
|
310 |
+
#: secure-wordpress.php:983
|
311 |
+
#@ secure_wp
|
312 |
+
msgid "Website"
|
313 |
+
msgstr "Website"
|
314 |
+
|
315 |
+
#: secure-wordpress.php:991
|
316 |
+
#@ secure_wp
|
317 |
+
msgid "Phone"
|
318 |
+
msgstr "Telefon"
|
319 |
+
|
320 |
+
#: secure-wordpress.php:999
|
321 |
+
#@ secure_wp
|
322 |
+
msgid "Yes, I need help!"
|
323 |
+
msgstr "Ja, ich brauche Hilfe!"
|
324 |
+
|
325 |
+
#: secure-wordpress.php:1002
|
326 |
+
#@ secure_wp
|
327 |
+
msgid "Call me"
|
328 |
+
msgstr "Rufe mich an"
|
329 |
+
|
330 |
+
#: secure-wordpress.php:1007
|
331 |
+
#@ secure_wp
|
332 |
+
msgid "Terms and Conditions"
|
333 |
+
msgstr "Allgemeine Geschäftsbedingungen"
|
334 |
+
|
335 |
+
#: secure-wordpress.php:1010
|
336 |
+
#@ secure_wp
|
337 |
+
msgid ", I accept"
|
338 |
+
msgstr ", ich akzeptiere"
|
339 |
+
|
340 |
+
#: secure-wordpress.php:1017
|
341 |
+
#@ secure_wp
|
342 |
+
msgid "Get my Free Web Scan"
|
343 |
+
msgstr "Starte meinen freien Web-Scan"
|
344 |
+
|
345 |
+
#: secure-wordpress.php:1028
|
346 |
+
#@ secure_wp
|
347 |
+
msgid "Safe Seal"
|
348 |
+
msgstr "Safe Seal"
|
349 |
+
|
350 |
+
#: secure-wordpress.php:1058
|
351 |
+
#@ secure_wp
|
352 |
+
msgid "Color"
|
353 |
+
msgstr "Farbe"
|
354 |
+
|
355 |
+
#: secure-wordpress.php:1062
|
356 |
+
#@ secure_wp
|
357 |
+
msgid "Green"
|
358 |
+
msgstr "Grün"
|
359 |
+
|
360 |
+
#: secure-wordpress.php:1063
|
361 |
+
#@ secure_wp
|
362 |
+
msgid "Blue"
|
363 |
+
msgstr "Blau"
|
364 |
+
|
365 |
+
#: secure-wordpress.php:1064
|
366 |
+
#@ secure_wp
|
367 |
+
msgid "Red"
|
368 |
+
msgstr "Rot"
|
369 |
+
|
370 |
+
#: secure-wordpress.php:1065
|
371 |
+
#@ secure_wp
|
372 |
+
msgid "Brown"
|
373 |
+
msgstr "Braun"
|
374 |
+
|
375 |
+
#: secure-wordpress.php:1066
|
376 |
+
#@ secure_wp
|
377 |
+
msgid "Gray"
|
378 |
+
msgstr "Grau"
|
379 |
+
|
380 |
+
#: secure-wordpress.php:1075
|
381 |
+
#@ secure_wp
|
382 |
+
msgid "Text"
|
383 |
+
msgstr "Text"
|
384 |
+
|
385 |
+
#: secure-wordpress.php:1079
|
386 |
+
#@ secure_wp
|
387 |
+
msgid "Protected"
|
388 |
+
msgstr "Geschützt"
|
389 |
+
|
390 |
+
#: secure-wordpress.php:1080
|
391 |
+
#@ secure_wp
|
392 |
+
msgid "Secured"
|
393 |
+
msgstr "Sicher"
|
394 |
+
|
395 |
+
#: secure-wordpress.php:1081
|
396 |
+
#@ secure_wp
|
397 |
+
msgid "Scanned"
|
398 |
+
msgstr "Gescannt"
|
399 |
+
|
400 |
+
#: secure-wordpress.php:1082
|
401 |
+
#@ secure_wp
|
402 |
+
msgid "Protected by"
|
403 |
+
msgstr "Geschützt durch"
|
404 |
+
|
405 |
+
#: secure-wordpress.php:1088
|
406 |
+
#@ secure_wp
|
407 |
+
msgid "Orientation"
|
408 |
+
msgstr "Orientierung"
|
409 |
+
|
410 |
+
#: secure-wordpress.php:1092
|
411 |
+
#@ secure_wp
|
412 |
+
msgid "Horizontal"
|
413 |
+
msgstr "Horizontal"
|
414 |
+
|
415 |
+
#: secure-wordpress.php:1093
|
416 |
+
#@ secure_wp
|
417 |
+
msgid "Vertical"
|
418 |
+
msgstr "Vertical"
|
419 |
+
|
420 |
+
#: secure-wordpress.php:1099
|
421 |
+
#@ secure_wp
|
422 |
+
msgid "Image border"
|
423 |
+
msgstr "Bilder-Rahmen"
|
424 |
+
|
425 |
+
#: secure-wordpress.php:1107
|
426 |
+
#@ secure_wp
|
427 |
+
msgid "Language"
|
428 |
+
msgstr "Sprache"
|
429 |
+
|
430 |
+
#: secure-wordpress.php:1111
|
431 |
+
#@ secure_wp
|
432 |
+
msgid "English (US)"
|
433 |
+
msgstr "Englisch (US)"
|
434 |
+
|
435 |
+
#: secure-wordpress.php:1112
|
436 |
+
#@ secure_wp
|
437 |
+
msgid "English (UK)"
|
438 |
+
msgstr "Englisch (UK)"
|
439 |
+
|
440 |
+
#: secure-wordpress.php:1113
|
441 |
+
#@ secure_wp
|
442 |
+
msgid "Spanish"
|
443 |
+
msgstr "Spanisch"
|
444 |
+
|
445 |
+
#: secure-wordpress.php:1114
|
446 |
+
#@ secure_wp
|
447 |
+
msgid "German"
|
448 |
+
msgstr "Deutsch"
|
449 |
+
|
450 |
+
#: secure-wordpress.php:1115
|
451 |
+
#@ secure_wp
|
452 |
+
msgid "Italian"
|
453 |
+
msgstr "Italienisch"
|
454 |
+
|
455 |
+
#: secure-wordpress.php:1116
|
456 |
+
#@ secure_wp
|
457 |
+
msgid "Japanese"
|
458 |
+
msgstr "Japanisch"
|
459 |
+
|
460 |
+
#: secure-wordpress.php:1117
|
461 |
+
#@ secure_wp
|
462 |
+
msgid "Chinese (Simplified)"
|
463 |
+
msgstr "Chinesisch (Einfach)"
|
464 |
+
|
465 |
+
#: secure-wordpress.php:1118
|
466 |
+
#@ secure_wp
|
467 |
+
msgid "Chinese (Traditional)"
|
468 |
+
msgstr "Chinesisch (Traditonell)"
|
469 |
+
|
470 |
+
#: secure-wordpress.php:1127
|
471 |
+
#@ secure_wp
|
472 |
+
msgid "Here is your generated code. Place it on your website (as html widget) to show that you are protected."
|
473 |
+
msgstr "Hier ist der erstellte Code, platziere in ihn in deiner Site (als HTML Widget) um zu zeigen, dass du geschützt bist."
|
474 |
+
|
475 |
+
#: secure-wordpress.php:1142
|
476 |
+
#@ secure_wp
|
477 |
+
msgid "Clear Options"
|
478 |
+
msgstr "Einstellungen löschen"
|
479 |
+
|
480 |
+
#: secure-wordpress.php:1145
|
481 |
+
#@ secure_wp
|
482 |
+
msgid "Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created."
|
483 |
+
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."
|
484 |
+
|
485 |
+
#: secure-wordpress.php:1150
|
486 |
+
#@ secure_wp
|
487 |
+
msgid "Delete Options"
|
488 |
+
msgstr "Einstellungen löschen"
|
489 |
+
|
490 |
+
#. translators: plugin header field 'PluginURI'
|
491 |
+
#: secure-wordpress.php:0
|
492 |
+
#@ secure_wp
|
493 |
+
msgid "http://www.sitesecuritymonitor.com/secure-wordpress-plugin"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#. translators: plugin header field 'Author'
|
497 |
+
#: secure-wordpress.php:0
|
498 |
+
#@ secure_wp
|
499 |
+
msgid "jremillard"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#. translators: plugin header field 'AuthorURI'
|
503 |
+
#: secure-wordpress.php:0
|
504 |
+
#@ secure_wp
|
505 |
+
msgid "http://www.sitesecuritymonitor.com/"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: secure-wordpress.php:1031
|
509 |
+
#@ secure_wp
|
510 |
+
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>"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: secure-wordpress.php:1126
|
514 |
+
#@ secure_wp
|
515 |
+
msgid "Source"
|
516 |
+
msgstr "Quellcode"
|
517 |
+
|
518 |
+
#. translators: plugin header field 'Version'
|
519 |
+
#: secure-wordpress.php:0
|
520 |
+
#@ secure_wp
|
521 |
+
msgid "1.0.5"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: secure-wordpress.php:881
|
525 |
+
#@ secure_wp
|
526 |
+
msgid "WP Version on Scripts/Styles"
|
527 |
+
msgstr "WP Version bei Scripten/Stylesheets"
|
528 |
+
|
529 |
+
#: secure-wordpress.php:885
|
530 |
+
#@ secure_wp
|
531 |
+
msgid "Removes version of WordPress on the url form scripts and stylesheets only on frontend."
|
532 |
+
msgstr "Entfernt die WordPress Version an den URLs von Scripten und Stylesheets, nur im Frontend."
|
533 |
+
|
readme.txt
CHANGED
@@ -1,10 +1,9 @@
|
|
1 |
=== Secure WordPress ===
|
2 |
-
Contributors:
|
3 |
-
Donate link: http://bueltge.de/wunschliste/
|
4 |
Tags: secure, notice, hack, hacked, protection, version, security
|
5 |
Requires at least: 2.6
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 0.
|
8 |
|
9 |
Secure your WordPress Installation with small functions.
|
10 |
|
@@ -12,53 +11,120 @@ Secure your WordPress Installation with small functions.
|
|
12 |
Little help to secure your WordPress installation: Remove Error information on login page; adds index.html to plugin directory; removes the wp-version, except in admin area.
|
13 |
|
14 |
1. removes error-information on login-page
|
15 |
-
1. adds index.
|
16 |
1. removes the wp-version, except in admin-area
|
17 |
1. removes Really Simple Discovery
|
18 |
1. removes Windows Live Writer
|
19 |
1. remove core update information for non-admins
|
20 |
1. remove plugin-update information for non-admins
|
21 |
1. remove theme-update informationfor non-admins (only WP 2.8 and higher)
|
22 |
-
1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
-
Please visit [the official website](http://bueltge.de/wordpress-login-sicherheit-plugin/652/#historie "Secure WordPress") for further details and the latest information on this plugin.
|
25 |
|
26 |
== Installation ==
|
27 |
1. Unpack the download-package
|
28 |
-
1. Upload
|
29 |
1. Activate the plugin through the 'Plugins' menu in WordPress
|
30 |
1. Configure the options
|
31 |
1. Ready
|
32 |
|
33 |
-
See on [the official website](http://
|
34 |
|
35 |
|
36 |
== Screenshots ==
|
37 |
-
1. options-area (WordPress
|
38 |
|
39 |
|
40 |
== Other Notes ==
|
41 |
-
= Acknowledgements =
|
42 |
-
Italien translation by [Gianni Diurno](http://gidibao.net/ "Gianni Diurno"), polish translation by Michal Maciejewski and hungarian language files by [K�rmendi P�ter](http://www.seo-hungary.com/ "K�rmendi P�ter") Thanks a lot
|
43 |
-
|
44 |
= Licence =
|
45 |
-
Good news, this plugin is free for everyone! Since it's released under the GPL, you can use it free of charge on your personal or commercial blog.
|
46 |
|
47 |
= Translations =
|
48 |
-
The plugin comes with various translations, please refer to the [WordPress Codex](http://codex.wordpress.org/Installing_WordPress_in_Your_Language "Installing WordPress in Your Language") for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the .pot file which contains all defintions and may be used with a [gettext](http://www.gnu.org/software/gettext/) editor like [Poedit](http://www.poedit.net/) (
|
49 |
|
50 |
|
51 |
== Changelog ==
|
52 |
-
=
|
53 |
-
*
|
54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
|
56 |
-
|
|
|
57 |
|
|
|
|
|
|
|
58 |
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
|
63 |
-
=
|
64 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
=== Secure WordPress ===
|
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: 1.0.6
|
7 |
|
8 |
Secure your WordPress Installation with small functions.
|
9 |
|
11 |
Little help to secure your WordPress installation: Remove Error information on login page; adds index.html to plugin directory; removes the wp-version, except in admin area.
|
12 |
|
13 |
1. removes error-information on login-page
|
14 |
+
1. adds index.php plugin-directory (virtual)
|
15 |
1. removes the wp-version, except in admin-area
|
16 |
1. removes Really Simple Discovery
|
17 |
1. removes Windows Live Writer
|
18 |
1. remove core update information for non-admins
|
19 |
1. remove plugin-update information for non-admins
|
20 |
1. remove theme-update informationfor non-admins (only WP 2.8 and higher)
|
21 |
+
1. hide wp-version in backend-dashboard for non-admins
|
22 |
+
1. remove version on urls from scripts and stylesheets onyl on frontend
|
23 |
+
1. Block bad queries
|
24 |
+
|
25 |
+
= Requirements =
|
26 |
+
* WordPress version 2.6 and higher (tested at 3.1-beta)
|
27 |
+
* PHP5 (tested with PHP Interpreter >= 5.2.9)
|
28 |
+
|
29 |
+
= Localizations =
|
30 |
+
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), romanian translation by [ Selco Resita]( http://www.selco-computers.ro " selco-computers.ro") and arabic language files by [مدونة](http://www.r-sn.com/wp). Thanks a lot.
|
31 |
|
|
|
32 |
|
33 |
== Installation ==
|
34 |
1. Unpack the download-package
|
35 |
+
1. Upload the file to the `/wp-content/plugins/` directory
|
36 |
1. Activate the plugin through the 'Plugins' menu in WordPress
|
37 |
1. Configure the options
|
38 |
1. Ready
|
39 |
|
40 |
+
See on [the official website](http://www.sitesecuritymonitor.com/secure-wordpress-plugin "Secure WordPress").
|
41 |
|
42 |
|
43 |
== Screenshots ==
|
44 |
+
1. options-area (WordPress 3.1-alpha)
|
45 |
|
46 |
|
47 |
== Other Notes ==
|
|
|
|
|
|
|
48 |
= Licence =
|
49 |
+
Good news, this plugin is free for everyone! Since it's released under the GPL, you can use it free of charge on your personal or commercial blog.
|
50 |
|
51 |
= Translations =
|
52 |
+
The plugin comes with various translations, please refer to the [WordPress Codex](http://codex.wordpress.org/Installing_WordPress_in_Your_Language "Installing WordPress in Your Language") for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the .pot file which contains all defintions and may be used with a [gettext](http://www.gnu.org/software/gettext/) editor like [Poedit](http://www.poedit.net/) or the very fine plugin [CodeStyling Localization](http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en "Codestyling Localization") for WordPresss.
|
53 |
|
54 |
|
55 |
== Changelog ==
|
56 |
+
= v1.0.6 (11/15/2010) =
|
57 |
+
* Bugfix: change from `public` to `var` for variables to use the plugin on PHP5.2 and smaller
|
58 |
+
|
59 |
+
= v1.0.5 (11/10/2010) =
|
60 |
+
* Feature: Remove WordPress version on urls form scripts and stylesheets
|
61 |
+
* Maintenance: rescan and update german language file
|
62 |
+
* Remove: exclude to add string fpr wp-scanner-service; Wish of the community users
|
63 |
+
|
64 |
+
= v1.0.4 (10/09/2010 =
|
65 |
+
* Bugfix: update options
|
66 |
+
|
67 |
+
= v1.0.3 (10/06/2010) =
|
68 |
+
* Bugfix: include JS for remove version in backend for Non-Admins
|
69 |
+
* Bugfix: change for php-warning at update options
|
70 |
+
* Maintenance: update italien language files
|
71 |
+
* Maintenance: update german language files
|
72 |
+
* Maintenance: update pot file
|
73 |
+
|
74 |
+
= v1.0.2 (09/10/2010) =
|
75 |
+
* add persian language file
|
76 |
+
* change the backend; remove WP Scanner function
|
77 |
+
* change the include of javascript for metaboxes
|
78 |
+
|
79 |
+
= v1.0.1 (08/06/2010) =
|
80 |
+
* add more hooks to remove WordPress Version; was change with WP3.0
|
81 |
+
|
82 |
+
= v1.0 (07/09/2010) =
|
83 |
+
* relese stable version
|
84 |
+
* small changes on the source
|
85 |
+
* change owner of the plugin
|
86 |
|
87 |
+
= v0.8.6 (06/18/2010) =
|
88 |
+
* fix a problem with https://; see [Ticket #13941](http://core.trac.wordpress.org/ticket/13941)
|
89 |
|
90 |
+
= v0.8.5 (05/16/2010) =
|
91 |
+
* small code changes for WP coding standards
|
92 |
+
* add free malware and vulnerabilities scan for test this; the scan has most interested informations and scan all of the server
|
93 |
|
94 |
+
= v0.8.4 (05/05/2010) =
|
95 |
+
* add methode for use the plugin also on ssl-installs
|
96 |
+
* change uninstall method
|
97 |
|
98 |
+
= v0.8.3 (04/14/2010) =
|
99 |
+
* bugfix fox secure block bad queries on string for case-insensitive
|
100 |
+
|
101 |
+
= v0.8.2 (03/21/2010) =
|
102 |
+
* fix syntax error on ask for rights to block bad queries
|
103 |
+
* add french language files
|
104 |
+
|
105 |
+
= v0.8.1 (03/08/2010) =
|
106 |
+
* remove versions-informations on backend with javascript
|
107 |
+
* small changes
|
108 |
+
|
109 |
+
= v0.8 (03/04/2010) =
|
110 |
+
* Protect WordPress against malicious URL requests, use the idea and script from Jeff Star, [see post](http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/ "Protect WordPress Against Malicious URL Requests")
|
111 |
+
|
112 |
+
= v0.7 (03/01/2010) =
|
113 |
+
* add updates for WP 3.0
|
114 |
+
|
115 |
+
= v0.6 (01/11/2010) =
|
116 |
+
* fix for core update under WP 2.9
|
117 |
+
* fix language file de_DE
|
118 |
+
|
119 |
+
= v0.5 (12/22/2009) =
|
120 |
+
* small fix for use WP and the plugin with SSL `https`
|
121 |
+
|
122 |
+
= v0.4 (12/02/2009) =
|
123 |
+
* add new feature: hide version for smaller right as admin
|
124 |
+
|
125 |
+
= v0.3.9 (09/07/2009) =
|
126 |
+
* change index.html in index.php for better works
|
127 |
+
|
128 |
+
= v0.3.8 (06/22/2009) =
|
129 |
+
* add function to remove theme-update information for non-admins
|
130 |
+
* rescan language file; edit de_DE
|
screenshot-1.png
CHANGED
Binary file
|
secure-wordpress.php
CHANGED
@@ -1,25 +1,27 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* @package Secure WordPress
|
4 |
-
* @author
|
5 |
-
* @version 0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
*/
|
7 |
-
|
8 |
-
/*
|
9 |
-
Plugin Name: Secure WordPress
|
10 |
-
Plugin URI: http://bueltge.de/wordpress-login-sicherheit-plugin/652/
|
11 |
-
Description: Little basics for secure your WordPress-installation.
|
12 |
-
Author: Frank Bültge
|
13 |
-
Version: 0.3.8
|
14 |
-
Author URI: http://bueltge.de/
|
15 |
-
Last Change: 22.06.2009 12:19:10
|
16 |
-
License: GNU
|
17 |
-
*/
|
18 |
|
19 |
global $wp_version;
|
20 |
if ( !function_exists ('add_action') || version_compare($wp_version, "2.6alpha", "<") ) {
|
21 |
if (function_exists ('add_action'))
|
22 |
-
$exit_msg = 'The plugin <em><a href="http://
|
23 |
else
|
24 |
$exit_msg = '';
|
25 |
header('Status: 403 Forbidden');
|
@@ -27,22 +29,6 @@ if ( !function_exists ('add_action') || version_compare($wp_version, "2.6alpha",
|
|
27 |
exit($exit_msg);
|
28 |
}
|
29 |
|
30 |
-
if ( function_exists ('add_action') ) {
|
31 |
-
// Pre-2.6 compatibility
|
32 |
-
if ( !defined( 'WP_CONTENT_URL' ) )
|
33 |
-
define( 'WP_CONTENT_URL', get_option( 'siteurl' ) . '/wp-content' );
|
34 |
-
if ( !defined( 'WP_PLUGIN_URL' ) )
|
35 |
-
define( 'WP_PLUGIN_URL', WP_CONTENT_URL. '/plugins' );
|
36 |
-
if ( !defined( 'WP_PLUGIN_DIR' ) )
|
37 |
-
define( 'WP_PLUGIN_DIR', WP_CONTENT_DIR . '/plugins' );
|
38 |
-
|
39 |
-
// plugin definitions
|
40 |
-
define( 'FB_SWP_BASENAME', plugin_basename(__FILE__) );
|
41 |
-
define( 'FB_SWP_BASEFOLDER', plugin_basename( dirname( __FILE__ ) ) );
|
42 |
-
define( 'FB_SWP_FILENAME', str_replace( FB_SWP_BASEFOLDER.'/', '', plugin_basename(__FILE__) ) );
|
43 |
-
define( 'FB_SWP_TEXTDOMAIN', 'secure_wp' );
|
44 |
-
}
|
45 |
-
|
46 |
/**
|
47 |
* Images/ Icons in base64-encoding
|
48 |
* @use function wpag_get_resource_url() for display
|
@@ -66,7 +52,7 @@ if ( isset($_GET['resource']) && !empty($_GET['resource']) ) {
|
|
66 |
'Ww9porieUwZt9yP6tHm5K5L2Uun6xsuf/WoTXwo7yQPwBXo8H/8TEoKYAAAAASUVO'.
|
67 |
'RK5CYII='.
|
68 |
'');
|
69 |
-
|
70 |
if ( array_key_exists($_GET['resource'], $resources) ) {
|
71 |
|
72 |
$content = base64_decode($resources[ $_GET['resource'] ]);
|
@@ -91,22 +77,42 @@ if ( isset($_GET['resource']) && !empty($_GET['resource']) ) {
|
|
91 |
|
92 |
|
93 |
if ( !class_exists('SecureWP') ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
class SecureWP {
|
95 |
|
|
|
|
|
96 |
// constructor
|
97 |
function SecureWP() {
|
98 |
global $wp_version;
|
99 |
|
100 |
-
$this->
|
101 |
|
|
|
|
|
102 |
add_action( 'init', array(&$this, 'textdomain') );
|
103 |
-
|
104 |
/**
|
105 |
* remove WP version
|
106 |
*/
|
107 |
if ( $GLOBALS['WPlize']->get_option('secure_wp_version') == '1' )
|
108 |
add_action( 'init', array(&$this, 'replace_wp_version'), 1 );
|
109 |
-
|
110 |
/**
|
111 |
* remove core update for non admins
|
112 |
* @link: rights: http://codex.wordpress.org/Roles_and_Capabilities
|
@@ -114,33 +120,39 @@ if ( !class_exists('SecureWP') ) {
|
|
114 |
if ( is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_rcu') == '1') ) {
|
115 |
add_action( 'init', array(&$this, 'remove_core_update'), 1 );
|
116 |
}
|
117 |
-
|
118 |
/**
|
119 |
* remove plugin update for non admins
|
120 |
* @link: rights: http://codex.wordpress.org/Roles_and_Capabilities
|
121 |
*/
|
122 |
if ( is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_rpu') == '1') )
|
123 |
add_action( 'init', array(&$this, 'remove_plugin_update'), 1 );
|
124 |
-
|
125 |
/**
|
126 |
* remove theme update for non admins
|
127 |
* @link: rights: http://codex.wordpress.org/Roles_and_Capabilities
|
128 |
*/
|
129 |
if ( is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_rtu') == '1') && ( version_compare($wp_version, "2.8alpha", ">") ) )
|
130 |
add_action( 'init', array(&$this, 'remove_theme_update'), 1 );
|
131 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
add_action( 'init', array(&$this, 'on_init'), 1 );
|
133 |
-
|
134 |
}
|
135 |
-
|
136 |
-
|
137 |
/**
|
138 |
* active for multilanguage
|
139 |
*
|
140 |
* @package Secure WordPress
|
141 |
*/
|
142 |
function textdomain() {
|
143 |
-
|
144 |
if ( function_exists('load_plugin_textdomain') ) {
|
145 |
if ( !defined('WP_PLUGIN_DIR') ) {
|
146 |
load_plugin_textdomain(FB_SWP_TEXTDOMAIN, str_replace( ABSPATH, '', dirname(__FILE__) ) . '/languages');
|
@@ -149,8 +161,41 @@ if ( !class_exists('SecureWP') ) {
|
|
149 |
}
|
150 |
}
|
151 |
}
|
152 |
-
|
153 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
/**
|
155 |
* init fucntions; check rights and options
|
156 |
*
|
@@ -158,38 +203,29 @@ if ( !class_exists('SecureWP') ) {
|
|
158 |
*/
|
159 |
function on_init() {
|
160 |
global $wp_version;
|
161 |
-
|
162 |
if ( is_admin() ) {
|
163 |
// update options
|
164 |
add_action('admin_post_swp_update', array(&$this, 'swp_update') );
|
165 |
// deinstall options
|
166 |
add_action('admin_post_swp_uninstall', array(&$this, 'swp_uninstall') );
|
167 |
-
|
168 |
// init default options on activate
|
169 |
if ( function_exists('register_activation_hook') )
|
170 |
register_activation_hook(__FILE__, array($this, 'activate') );
|
171 |
-
// deinstall options on deactive
|
172 |
-
if ( function_exists('register_uninstall_hook') )
|
173 |
-
register_uninstall_hook(__FILE__, array($this, 'deactivate') );
|
174 |
// deinstall options in deactivate
|
175 |
if ( function_exists('register_deactivation_hook') )
|
176 |
register_deactivation_hook(__FILE__, array($this, 'deactivate') );
|
177 |
-
|
178 |
// add options page
|
179 |
add_action( 'admin_menu', array(&$this, 'admin_menu') );
|
180 |
// hint in footer of the options page
|
181 |
add_action( 'in_admin_footer', array(&$this, 'admin_footer') );
|
182 |
-
|
183 |
-
// add javascript for metaboxes
|
184 |
-
if ( version_compare( $wp_version, '2.7alpha', '>' ) && file_exists(ABSPATH . '/wp-admin/admin-ajax.php') && (basename($_SERVER['QUERY_STRING']) == 'page=secure-wordpress.php') ) {
|
185 |
-
wp_enqueue_script( 'secure_wp_plugin_win_page', plugins_url( $path = 'secure-wordpress/js/page.php' ), array('jquery') );
|
186 |
-
} elseif ( version_compare( $wp_version, '2.7alpha', '<' ) && file_exists(ABSPATH . '/wp-admin/admin-ajax.php') && (basename($_SERVER['QUERY_STRING']) == 'page=secure-wordpress.php') ) {
|
187 |
-
wp_enqueue_script( 'secure_wp_plugin_win_page', plugins_url( $path = 'secure-wordpress/js/page_s27.php' ), array('jquery') );
|
188 |
-
}
|
189 |
add_action( 'wp_ajax_set_toggle_status', array($this, 'set_toggle_status') );
|
190 |
}
|
191 |
-
|
192 |
-
|
193 |
/**
|
194 |
* remove Error-information
|
195 |
*/
|
@@ -197,38 +233,49 @@ if ( !class_exists('SecureWP') ) {
|
|
197 |
add_action( 'login_head', array(&$this, 'remove_error_div') );
|
198 |
add_filter( 'login_errors', create_function( '$a', "return null;" ) );
|
199 |
}
|
200 |
-
|
201 |
-
|
202 |
/**
|
203 |
* add index.html in plugin-folder
|
204 |
*/
|
205 |
-
if ( $GLOBALS['WPlize']->get_option('secure_wp_index') == '1' )
|
206 |
-
$this->
|
207 |
-
|
208 |
-
|
|
|
|
|
209 |
/**
|
210 |
* remove rdf
|
211 |
*/
|
212 |
if ( function_exists('rsd_link') && !is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_rsd') == '1') )
|
213 |
remove_action('wp_head', 'rsd_link');
|
214 |
-
|
215 |
-
|
216 |
/**
|
217 |
* remove wlf
|
218 |
*/
|
219 |
if ( function_exists('wlwmanifest_link') && !is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_wlw') == '1') )
|
220 |
remove_action('wp_head', 'wlwmanifest_link');
|
221 |
-
|
222 |
/**
|
223 |
* add wp-scanner
|
224 |
* @link http://blogsecurity.net/wordpress/tools/wp-scanner
|
225 |
*/
|
226 |
-
|
227 |
-
|
228 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
}
|
230 |
-
|
231 |
-
|
232 |
/**
|
233 |
* install options
|
234 |
*
|
@@ -238,23 +285,25 @@ if ( !class_exists('SecureWP') ) {
|
|
238 |
// set default options
|
239 |
$this->options_array = array('secure_wp_error' => '',
|
240 |
'secure_wp_version' => '1',
|
|
|
241 |
'secure_wp_index' => '1',
|
242 |
-
'secure_wp_rsd' => '',
|
243 |
'secure_wp_wlw' => '',
|
244 |
'secure_wp_rcu' => '1',
|
245 |
'secure_wp_rpu' => '1',
|
246 |
-
'secure_wp_rtu' => '',
|
247 |
-
'secure_wp_wps' => '
|
|
|
248 |
);
|
249 |
-
|
250 |
// add class WPlize for options in WP
|
251 |
$GLOBALS['WPlize'] = new WPlize(
|
252 |
'secure-wp',
|
253 |
$this->options_array
|
254 |
);
|
255 |
}
|
256 |
-
|
257 |
-
|
258 |
/**
|
259 |
* unpdate options
|
260 |
*
|
@@ -263,30 +312,30 @@ if ( !class_exists('SecureWP') ) {
|
|
263 |
function update() {
|
264 |
// init value
|
265 |
$update_options = array();
|
266 |
-
|
267 |
// set value
|
268 |
foreach ($this->options_array as $key => $value) {
|
269 |
-
|
270 |
}
|
271 |
-
|
272 |
// save value
|
273 |
if ($update_options) {
|
274 |
$GLOBALS['WPlize']->update_option($update_options);
|
275 |
}
|
276 |
}
|
277 |
-
|
278 |
-
|
279 |
/**
|
280 |
* uninstall options
|
281 |
*
|
282 |
* @package Secure WordPress
|
283 |
*/
|
284 |
function deactivate() {
|
285 |
-
|
286 |
$GLOBALS['WPlize']->delete_option();
|
287 |
}
|
288 |
-
|
289 |
-
|
290 |
/**
|
291 |
* Add option for tabboxes via ajax
|
292 |
*
|
@@ -294,15 +343,15 @@ if ( !class_exists('SecureWP') ) {
|
|
294 |
*/
|
295 |
function set_toggle_status() {
|
296 |
if ( current_user_can('manage_options') && $_POST['set_toggle_id'] ) {
|
297 |
-
|
298 |
$id = $_POST['set_toggle_id'];
|
299 |
$status = $_POST['set_toggle_status'];
|
300 |
-
|
301 |
$GLOBALS['WPlize']->update_option($id, $status);
|
302 |
}
|
303 |
}
|
304 |
-
|
305 |
-
|
306 |
/**
|
307 |
* @version WP 2.8
|
308 |
* Add action link(s) to plugins page
|
@@ -313,7 +362,7 @@ if ( !class_exists('SecureWP') ) {
|
|
313 |
* @return $links
|
314 |
*/
|
315 |
function filter_plugin_meta($links, $file) {
|
316 |
-
|
317 |
/* create link */
|
318 |
if ( $file == FB_SWP_BASENAME ) {
|
319 |
array_unshift(
|
@@ -321,11 +370,11 @@ if ( !class_exists('SecureWP') ) {
|
|
321 |
sprintf( '<a href="options-general.php?page=%s">%s</a>', FB_SWP_FILENAME, __('Settings') )
|
322 |
);
|
323 |
}
|
324 |
-
|
325 |
return $links;
|
326 |
}
|
327 |
-
|
328 |
-
|
329 |
/**
|
330 |
* Display Images/ Icons in base64-encoding
|
331 |
*
|
@@ -335,23 +384,23 @@ if ( !class_exists('SecureWP') ) {
|
|
335 |
* @return $resourceID
|
336 |
*/
|
337 |
function get_resource_url($resourceID) {
|
338 |
-
|
339 |
return trailingslashit( get_bloginfo('url') ) . '?resource=' . $resourceID;
|
340 |
}
|
341 |
-
|
342 |
-
|
343 |
/**
|
344 |
* content of help
|
345 |
*
|
346 |
* @package Secure WordPress
|
347 |
*/
|
348 |
function contextual_help() {
|
349 |
-
|
350 |
$content = __('<a href="http://wordpress.org/extend/plugins/secure-wordpress/">Documentation</a>', FB_SWP_TEXTDOMAIN);
|
351 |
return $content;
|
352 |
}
|
353 |
-
|
354 |
-
|
355 |
/**
|
356 |
* settings in plugin-admin-page
|
357 |
*
|
@@ -359,9 +408,15 @@ if ( !class_exists('SecureWP') ) {
|
|
359 |
*/
|
360 |
function admin_menu() {
|
361 |
global $wp_version;
|
362 |
-
|
363 |
if ( function_exists('add_management_page') && current_user_can('manage_options') ) {
|
364 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
// update, uninstall message
|
366 |
if ( strpos($_SERVER['REQUEST_URI'], 'secure-wordpress.php') && $_GET['update'] == 'true' ) {
|
367 |
$return_message = __('Options update.', FB_SWP_TEXTDOMAIN);
|
@@ -371,54 +426,58 @@ if ( !class_exists('SecureWP') ) {
|
|
371 |
$return_message = '';
|
372 |
}
|
373 |
$message = '<div class="updated fade"><p>' . $return_message . '</p></div>';
|
374 |
-
|
375 |
$menutitle = '';
|
376 |
if ( version_compare( $wp_version, '2.7alpha', '>' ) ) {
|
377 |
-
|
378 |
if ( $return_message !== '' )
|
379 |
add_action('admin_notices', create_function( '', "echo '$message';" ) );
|
380 |
-
|
381 |
$menutitle = '<img src="' . $this->get_resource_url('secure_wp.gif') . '" alt="" />' . ' ';
|
382 |
}
|
383 |
$menutitle .= __('Secure WP', FB_SWP_TEXTDOMAIN);
|
384 |
-
|
|
|
|
|
|
|
|
|
385 |
if ( version_compare( $wp_version, '2.7alpha', '>' ) && function_exists('add_contextual_help') ) {
|
386 |
-
$hook = add_submenu_page( 'options-general.php', __('Secure WordPress', FB_SWP_TEXTDOMAIN), $menutitle,
|
387 |
add_contextual_help( $hook, __('<a href="http://wordpress.org/extend/plugins/secure-wordpress/">Documentation</a>', FB_SWP_TEXTDOMAIN) );
|
388 |
//add_filter( 'contextual_help', array(&$this, 'contextual_help') );
|
389 |
} else {
|
390 |
add_submenu_page( 'options-general.php', __('Secure WP', FB_SWP_TEXTDOMAIN), $menutitle, 9, basename(__FILE__), array(&$this, 'display_page') );
|
391 |
}
|
392 |
-
|
393 |
$plugin = plugin_basename(__FILE__);
|
394 |
add_filter( 'plugin_action_links_' . $plugin, array(&$this, 'filter_plugin_meta'), 10, 2 );
|
395 |
if ( version_compare( $wp_version, '2.8alpha', '>' ) )
|
396 |
add_filter( 'plugin_row_meta', array(&$this, 'filter_plugin_meta'), 10, 2 );
|
397 |
}
|
398 |
}
|
399 |
-
|
400 |
-
|
401 |
/**
|
402 |
* credit in wp-footer
|
403 |
*
|
404 |
* @package Secure WordPress
|
405 |
*/
|
406 |
function admin_footer() {
|
407 |
-
|
408 |
if( basename($_SERVER['QUERY_STRING']) == 'page=secure-wordpress.php') {
|
409 |
$plugin_data = get_plugin_data( __FILE__ );
|
410 |
-
printf('%1$s plugin | ' . __('Version') . ' <a href="http://
|
411 |
}
|
412 |
}
|
413 |
-
|
414 |
-
|
415 |
/**
|
416 |
-
* add index.
|
417 |
*/
|
418 |
-
function
|
419 |
-
|
420 |
-
$file = trailingslashit($path) . 'index.
|
421 |
-
|
422 |
if ($enable) {
|
423 |
if (!file_exists($file)) {
|
424 |
$fh = @fopen($file, 'w');
|
@@ -430,70 +489,115 @@ if ( !class_exists('SecureWP') ) {
|
|
430 |
}
|
431 |
}
|
432 |
}
|
433 |
-
|
434 |
-
|
435 |
/**
|
436 |
* Replace the WP-version with a random string < WP 2.4
|
437 |
* and eliminate WP-version > WP 2.4
|
438 |
-
* http://bueltge.de/wordpress-version-verschleiern-plugin/602/
|
439 |
*
|
440 |
* @package Secure WordPress
|
441 |
*/
|
442 |
function replace_wp_version() {
|
443 |
-
|
444 |
if ( !is_admin() ) {
|
445 |
global $wp_version;
|
446 |
-
|
447 |
-
// random
|
448 |
$v = intval( rand(0, 9999) );
|
|
|
|
|
|
|
449 |
|
450 |
if ( function_exists('the_generator') ) {
|
451 |
// eliminate version for wordpress >= 2.4
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
|
|
|
|
|
|
456 |
$wp_version = $v;
|
|
|
|
|
|
|
457 |
} else {
|
458 |
// for wordpress < 2.4
|
459 |
add_filter( "bloginfo_rss('version')", create_function('$a', "return $v;") );
|
460 |
-
|
461 |
// for rdf and rss v0.92
|
462 |
$wp_version = $v;
|
|
|
|
|
|
|
463 |
}
|
464 |
}
|
465 |
-
|
466 |
}
|
467 |
-
|
468 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
469 |
/**
|
470 |
* remove core-Update-Information
|
471 |
*
|
472 |
* @package Secure WordPress
|
473 |
*/
|
474 |
function remove_core_update() {
|
475 |
-
if ( !current_user_can('
|
|
|
|
|
|
|
476 |
add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_version_check' );" ) );
|
477 |
add_filter( 'pre_option_update_core', create_function( '$a', "return null;" ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
478 |
}
|
479 |
}
|
480 |
-
|
481 |
-
|
482 |
/**
|
483 |
* remove plugin-Update-Information
|
484 |
*
|
485 |
* @package Secure WordPress
|
486 |
*/
|
487 |
function remove_plugin_update() {
|
488 |
-
if ( !current_user_can('
|
|
|
|
|
|
|
489 |
add_action( 'admin_menu', create_function( '$a', "remove_action( 'load-plugins.php', 'wp_update_plugins' );" ) );
|
490 |
add_action( 'admin_init', create_function( '$a', "remove_action( 'admin_init', 'wp_update_plugins' );" ), 2 );
|
491 |
add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_update_plugins' );" ), 2 );
|
492 |
add_filter( 'pre_option_update_plugins', create_function( '$a', "return null;" ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
493 |
}
|
494 |
}
|
495 |
-
|
496 |
-
|
497 |
/**
|
498 |
* remove theme-Update-Information
|
499 |
*
|
@@ -505,73 +609,127 @@ if ( !class_exists('SecureWP') ) {
|
|
505 |
remove_action( 'load-update.php', 'wp_update_themes' );
|
506 |
remove_action( 'admin_init', '_maybe_update_themes' );
|
507 |
remove_action( 'wp_update_themes', 'wp_update_themes' );
|
|
|
|
|
|
|
508 |
add_filter( 'pre_transient_update_themes', create_function( '$a', "return null;" ) );
|
509 |
}
|
510 |
}
|
511 |
-
|
512 |
-
|
513 |
/**
|
514 |
* remove error-div
|
515 |
*
|
516 |
* @package Secure WordPress
|
517 |
*/
|
518 |
function remove_error_div() {
|
519 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
520 |
}
|
521 |
-
|
522 |
-
|
523 |
/**
|
524 |
* add string in blog for WP scanner
|
525 |
*
|
526 |
* @package Secure WordPress
|
527 |
*/
|
528 |
function wp_scanner() {
|
529 |
-
echo '<!-- wpscanner -->';
|
530 |
}
|
531 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
532 |
/**
|
533 |
* update options
|
534 |
*
|
535 |
* @package Secure WordPress
|
536 |
*/
|
537 |
function swp_update() {
|
538 |
-
|
539 |
if ( !current_user_can('manage_options') )
|
540 |
-
wp_die( __('Options not
|
541 |
-
|
542 |
//cross check the given referer
|
543 |
check_admin_referer('secure_wp_settings_form');
|
544 |
-
|
545 |
$this->update();
|
546 |
-
|
547 |
$referer = str_replace('&update=true&update=true', '', $_POST['_wp_http_referer'] );
|
548 |
wp_redirect($referer . '&update=true' );
|
549 |
}
|
550 |
-
|
551 |
-
|
552 |
/**
|
553 |
* uninstall options
|
554 |
*
|
555 |
* @package Secure WordPress
|
556 |
*/
|
557 |
function swp_uninstall() {
|
558 |
-
|
559 |
if ( !current_user_can('manage_options') )
|
560 |
-
wp_die( __('Entries
|
561 |
-
|
562 |
//cross check the given referer
|
563 |
check_admin_referer('secure_wp_uninstall_form');
|
564 |
-
|
565 |
if ( isset($_POST['deinstall_yes']) ) {
|
566 |
$this->deactivate();
|
567 |
} else {
|
568 |
-
wp_die( __('Entries
|
569 |
}
|
570 |
-
|
571 |
wp_redirect( 'plugins.php' );
|
572 |
}
|
573 |
-
|
574 |
-
|
575 |
/**
|
576 |
* display options page in backende
|
577 |
*
|
@@ -579,60 +737,63 @@ if ( !class_exists('SecureWP') ) {
|
|
579 |
*/
|
580 |
function display_page() {
|
581 |
global $wp_version;
|
582 |
-
|
583 |
if ( isset($_POST['action']) && 'deinstall' == $_POST['action'] ) {
|
584 |
check_admin_referer('secure_wp_deinstall_form');
|
585 |
if ( current_user_can('manage_options') && isset($_POST['deinstall_yes']) ) {
|
586 |
$this->deactivate();
|
587 |
?>
|
588 |
-
<div id="message" class="updated fade"><p><?php _e('All entries in the database
|
589 |
<?php
|
590 |
} else {
|
591 |
?>
|
592 |
-
<div id="message" class="error"><p><?php _e('Entries
|
593 |
<?php
|
594 |
}
|
595 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
596 |
|
597 |
-
$
|
598 |
-
$
|
599 |
-
$
|
600 |
-
$secure_wp_rsd = $GLOBALS['WPlize']->get_option('secure_wp_rsd');
|
601 |
-
$secure_wp_wlw = $GLOBALS['WPlize']->get_option('secure_wp_wlw');
|
602 |
-
$secure_wp_rcu = $GLOBALS['WPlize']->get_option('secure_wp_rcu');
|
603 |
-
$secure_wp_rpu = $GLOBALS['WPlize']->get_option('secure_wp_rpu');
|
604 |
-
$secure_wp_rtu = $GLOBALS['WPlize']->get_option('secure_wp_rtu');
|
605 |
-
$secure_wp_wps = $GLOBALS['WPlize']->get_option('secure_wp_wps');
|
606 |
-
|
607 |
-
$secure_wp_win_settings = $GLOBALS['WPlize']->get_option('secure_wp_win_settings');
|
608 |
-
$secure_wp_win_about = $GLOBALS['WPlize']->get_option('secure_wp_win_about');
|
609 |
-
$secure_wp_win_opt = $GLOBALS['WPlize']->get_option('secure_wp_win_opt');
|
610 |
?>
|
611 |
<div class="wrap">
|
|
|
612 |
<h2><?php _e('Secure WordPress', FB_SWP_TEXTDOMAIN); ?></h2>
|
613 |
<br class="clear" />
|
614 |
-
|
615 |
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
616 |
<div id="secure_wp_win_settings" class="postbox <?php echo $secure_wp_win_settings ?>" >
|
617 |
<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
|
618 |
<h3><?php _e('Configuration', FB_SWP_TEXTDOMAIN); ?></h3>
|
619 |
<div class="inside">
|
620 |
-
|
621 |
<form name="secure_wp_config-update" method="post" action="admin-post.php">
|
622 |
<?php if (function_exists('wp_nonce_field') === true) wp_nonce_field('secure_wp_settings_form'); ?>
|
623 |
-
|
624 |
<table class="form-table">
|
625 |
-
|
626 |
<tr valign="top">
|
627 |
<th scope="row">
|
628 |
<label for="secure_wp_error"><?php _e('Error-Messages', FB_SWP_TEXTDOMAIN); ?></label>
|
629 |
</th>
|
630 |
<td>
|
631 |
<input type="checkbox" name="secure_wp_error" id="secure_wp_error" value="1" <?php if ( $secure_wp_error == '1') { echo "checked='checked'"; } ?> />
|
632 |
-
<?php _e('
|
633 |
</td>
|
634 |
</tr>
|
635 |
-
|
636 |
<tr valign="top">
|
637 |
<th scope="row">
|
638 |
<label for="secure_wp_version"><?php _e('WordPress Version', FB_SWP_TEXTDOMAIN); ?></label>
|
@@ -642,17 +803,27 @@ if ( !class_exists('SecureWP') ) {
|
|
642 |
<?php _e('Removes version of WordPress in all areas, including feed, not in admin', FB_SWP_TEXTDOMAIN); ?>
|
643 |
</td>
|
644 |
</tr>
|
645 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
646 |
<tr valign="top">
|
647 |
<th scope="row">
|
648 |
-
<label for="secure_wp_index"><?php _e('index.
|
649 |
</th>
|
650 |
<td>
|
651 |
<input type="checkbox" name="secure_wp_index" id="secure_wp_index" value="1" <?php if ( $secure_wp_index == '1') { echo "checked='checked'"; } ?> />
|
652 |
-
<?php _e('creates an <code>index.
|
653 |
</td>
|
654 |
</tr>
|
655 |
-
|
656 |
<tr valign="top">
|
657 |
<th scope="row">
|
658 |
<label for="secure_wp_rsd"><?php _e('Really Simple Discovery', FB_SWP_TEXTDOMAIN); ?></label>
|
@@ -662,7 +833,7 @@ if ( !class_exists('SecureWP') ) {
|
|
662 |
<?php _e('Remove Really Simple Discovery link in <code>wp_head</code> of the frontend', FB_SWP_TEXTDOMAIN); ?>
|
663 |
</td>
|
664 |
</tr>
|
665 |
-
|
666 |
<tr valign="top">
|
667 |
<th scope="row">
|
668 |
<label for="secure_wp_wlw"><?php _e('Windows Live Writer', FB_SWP_TEXTDOMAIN); ?></label>
|
@@ -672,7 +843,7 @@ if ( !class_exists('SecureWP') ) {
|
|
672 |
<?php _e('Remove Windows Live Writer link in <code>wp_head</code> of the frontend', FB_SWP_TEXTDOMAIN); ?>
|
673 |
</td>
|
674 |
</tr>
|
675 |
-
|
676 |
<tr valign="top">
|
677 |
<th scope="row">
|
678 |
<label for="secure_wp_rcu"><?php _e('Core Update', FB_SWP_TEXTDOMAIN); ?></label>
|
@@ -682,7 +853,7 @@ if ( !class_exists('SecureWP') ) {
|
|
682 |
<?php _e('Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update.', FB_SWP_TEXTDOMAIN); ?>
|
683 |
</td>
|
684 |
</tr>
|
685 |
-
|
686 |
<tr valign="top">
|
687 |
<th scope="row">
|
688 |
<label for="secure_wp_rpu"><?php _e('Plugin Update', FB_SWP_TEXTDOMAIN); ?></label>
|
@@ -692,7 +863,7 @@ if ( !class_exists('SecureWP') ) {
|
|
692 |
<?php _e('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.', FB_SWP_TEXTDOMAIN); ?>
|
693 |
</td>
|
694 |
</tr>
|
695 |
-
|
696 |
<?php if ( version_compare($wp_version, "2.8alpha", ">=") ) { ?>
|
697 |
<tr valign="top">
|
698 |
<th scope="row">
|
@@ -704,74 +875,303 @@ if ( !class_exists('SecureWP') ) {
|
|
704 |
</td>
|
705 |
</tr>
|
706 |
<?php } ?>
|
707 |
-
|
708 |
<tr valign="top">
|
709 |
<th scope="row">
|
710 |
-
<label for="secure_wp_wps"><?php _e('WP
|
711 |
</th>
|
712 |
<td>
|
713 |
<input type="checkbox" name="secure_wp_wps" id="secure_wp_wps" value="1" <?php if ( $secure_wp_wps == '1') { echo "checked='checked'"; } ?> />
|
714 |
-
<?php _e('
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
715 |
</td>
|
716 |
</tr>
|
717 |
-
|
718 |
</table>
|
719 |
-
|
720 |
<p class="submit">
|
721 |
<input type="hidden" name="action" value="swp_update" />
|
722 |
-
<input type="submit" name="Submit" value="<?php _e('Save Changes', FB_SWP_TEXTDOMAIN); ?> »" />
|
723 |
</p>
|
724 |
</form>
|
725 |
|
726 |
</div>
|
727 |
</div>
|
728 |
</div>
|
729 |
-
|
|
|
730 |
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
731 |
<div id="secure_wp_win_opt" class="postbox <?php echo $secure_wp_win_opt ?>" >
|
732 |
<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
|
733 |
-
<h3 id="uninstall"><?php _e('
|
734 |
<div class="inside">
|
735 |
-
|
736 |
-
<
|
737 |
-
<
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
743 |
</p>
|
744 |
</form>
|
745 |
-
|
746 |
</div>
|
747 |
</div>
|
748 |
</div>
|
749 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
750 |
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
751 |
-
<div id="
|
752 |
<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
|
753 |
-
<h3><?php _e('
|
754 |
<div class="inside">
|
755 |
-
|
756 |
-
<p>
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
<p><?php _e('Further information: Visit the <a href="http://bueltge.de/wordpress-login-sicherheit-plugin/652/">plugin homepage</a> for further information or to grab the latest version of this plugin.', FB_SWP_TEXTDOMAIN); ?><br />© Copyright 2007 - <?php echo date("Y"); ?> <a href="http://bueltge.de">Frank Bültge</a> | <?php _e('You want to thank me? Visit my <a href="http://bueltge.de/wunschliste/">wishlist</a>.', FB_SWP_TEXTDOMAIN); ?></p>
|
767 |
</div>
|
768 |
</div>
|
769 |
</div>
|
770 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
771 |
</div>
|
772 |
<?php
|
773 |
}
|
774 |
-
|
775 |
}
|
776 |
}
|
777 |
|
@@ -783,4 +1183,4 @@ if ( !class_exists('WPlize') ) {
|
|
783 |
if ( class_exists('SecureWP') && class_exists('WPlize') && function_exists('is_admin') ) {
|
784 |
$SecureWP = new SecureWP();
|
785 |
}
|
786 |
-
?>
|
1 |
<?php
|
2 |
/**
|
3 |
* @package Secure WordPress
|
4 |
+
* @author jremillard
|
5 |
+
* @version 1.0.6
|
6 |
+
*/
|
7 |
+
|
8 |
+
/**
|
9 |
+
* Plugin Name: Secure WordPress
|
10 |
+
* Plugin URI: http://www.sitesecuritymonitor.com/secure-wordpress-plugin
|
11 |
+
* Text Domain: secure_wp
|
12 |
+
* Domain Path: /languages
|
13 |
+
* Description: Little basics for secure your WordPress-installation.
|
14 |
+
* Author: jremillard
|
15 |
+
* Version: 1.0.6
|
16 |
+
* Author URI: http://www.sitesecuritymonitor.com/
|
17 |
+
* Last Change: 15.11.2010 00:55
|
18 |
+
* License: GPL
|
19 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
global $wp_version;
|
22 |
if ( !function_exists ('add_action') || version_compare($wp_version, "2.6alpha", "<") ) {
|
23 |
if (function_exists ('add_action'))
|
24 |
+
$exit_msg = 'The plugin <em><a href="http://wordpress.org/extend/plugins/secure-wordpress/">Secure WordPress</a></em> requires WordPress 2.6 or newer. <a href="http://codex.wordpress.org/Upgrading_WordPress">Please update WordPress</a> or delete the plugin.';
|
25 |
else
|
26 |
$exit_msg = '';
|
27 |
header('Status: 403 Forbidden');
|
29 |
exit($exit_msg);
|
30 |
}
|
31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
/**
|
33 |
* Images/ Icons in base64-encoding
|
34 |
* @use function wpag_get_resource_url() for display
|
52 |
'Ww9porieUwZt9yP6tHm5K5L2Uun6xsuf/WoTXwo7yQPwBXo8H/8TEoKYAAAAASUVO'.
|
53 |
'RK5CYII='.
|
54 |
'');
|
55 |
+
|
56 |
if ( array_key_exists($_GET['resource'], $resources) ) {
|
57 |
|
58 |
$content = base64_decode($resources[ $_GET['resource'] ]);
|
77 |
|
78 |
|
79 |
if ( !class_exists('SecureWP') ) {
|
80 |
+
|
81 |
+
if ( function_exists ('add_action') ) {
|
82 |
+
// Pre-2.6 compatibility
|
83 |
+
if ( !defined( 'WP_CONTENT_URL' ) )
|
84 |
+
define( 'WP_CONTENT_URL', get_option( 'siteurl' ) . '/wp-content' );
|
85 |
+
if ( !defined( 'WP_PLUGIN_URL' ) )
|
86 |
+
define( 'WP_PLUGIN_URL', WP_CONTENT_URL. '/plugins' );
|
87 |
+
if ( !defined( 'WP_PLUGIN_DIR' ) )
|
88 |
+
define( 'WP_PLUGIN_DIR', WP_CONTENT_DIR . '/plugins' );
|
89 |
+
|
90 |
+
// plugin definitions
|
91 |
+
define( 'FB_SWP_BASENAME', plugin_basename(__FILE__) );
|
92 |
+
define( 'FB_SWP_BASEFOLDER', plugin_basename( dirname( __FILE__ ) ) );
|
93 |
+
define( 'FB_SWP_FILENAME', str_replace( FB_SWP_BASEFOLDER.'/', '', plugin_basename(__FILE__) ) );
|
94 |
+
define( 'FB_SWP_TEXTDOMAIN', 'secure_wp' );
|
95 |
+
}
|
96 |
+
|
97 |
class SecureWP {
|
98 |
|
99 |
+
var $wpversion;
|
100 |
+
|
101 |
// constructor
|
102 |
function SecureWP() {
|
103 |
global $wp_version;
|
104 |
|
105 |
+
$this->wpversion = $wp_version;
|
106 |
|
107 |
+
$this->activate();
|
108 |
+
|
109 |
add_action( 'init', array(&$this, 'textdomain') );
|
|
|
110 |
/**
|
111 |
* remove WP version
|
112 |
*/
|
113 |
if ( $GLOBALS['WPlize']->get_option('secure_wp_version') == '1' )
|
114 |
add_action( 'init', array(&$this, 'replace_wp_version'), 1 );
|
115 |
+
|
116 |
/**
|
117 |
* remove core update for non admins
|
118 |
* @link: rights: http://codex.wordpress.org/Roles_and_Capabilities
|
120 |
if ( is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_rcu') == '1') ) {
|
121 |
add_action( 'init', array(&$this, 'remove_core_update'), 1 );
|
122 |
}
|
123 |
+
|
124 |
/**
|
125 |
* remove plugin update for non admins
|
126 |
* @link: rights: http://codex.wordpress.org/Roles_and_Capabilities
|
127 |
*/
|
128 |
if ( is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_rpu') == '1') )
|
129 |
add_action( 'init', array(&$this, 'remove_plugin_update'), 1 );
|
130 |
+
|
131 |
/**
|
132 |
* remove theme update for non admins
|
133 |
* @link: rights: http://codex.wordpress.org/Roles_and_Capabilities
|
134 |
*/
|
135 |
if ( is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_rtu') == '1') && ( version_compare($wp_version, "2.8alpha", ">") ) )
|
136 |
add_action( 'init', array(&$this, 'remove_theme_update'), 1 );
|
137 |
+
|
138 |
+
/**
|
139 |
+
* remove WP version on backend
|
140 |
+
*/
|
141 |
+
if ( $GLOBALS['WPlize']->get_option('secure_wp_admin_version') == '1' )
|
142 |
+
add_action( 'init', array(&$this, 'remove_wp_version_on_admin'), 1 );
|
143 |
+
|
144 |
add_action( 'init', array(&$this, 'on_init'), 1 );
|
145 |
+
|
146 |
}
|
147 |
+
|
148 |
+
|
149 |
/**
|
150 |
* active for multilanguage
|
151 |
*
|
152 |
* @package Secure WordPress
|
153 |
*/
|
154 |
function textdomain() {
|
155 |
+
|
156 |
if ( function_exists('load_plugin_textdomain') ) {
|
157 |
if ( !defined('WP_PLUGIN_DIR') ) {
|
158 |
load_plugin_textdomain(FB_SWP_TEXTDOMAIN, str_replace( ABSPATH, '', dirname(__FILE__) ) . '/languages');
|
161 |
}
|
162 |
}
|
163 |
}
|
164 |
+
|
165 |
+
|
166 |
+
// function for WP < 2.8
|
167 |
+
function get_plugins_url($path = '', $plugin = '') {
|
168 |
+
|
169 |
+
if ( function_exists('plugin_url') )
|
170 |
+
return plugins_url($path, $plugin);
|
171 |
+
|
172 |
+
if ( function_exists('is_ssl') )
|
173 |
+
$scheme = ( is_ssl() ? 'https' : 'http' );
|
174 |
+
else
|
175 |
+
$scheme = 'http';
|
176 |
+
if ( function_exists('plugins_url') )
|
177 |
+
$url = plugins_url();
|
178 |
+
else
|
179 |
+
$url = WP_PLUGIN_URL;
|
180 |
+
if ( 0 === strpos($url, 'http') ) {
|
181 |
+
if ( function_exists('is_ssl') && is_ssl() )
|
182 |
+
$url = str_replace( 'http://', "{$scheme}://", $url );
|
183 |
+
}
|
184 |
+
|
185 |
+
if ( !empty($plugin) && is_string($plugin) )
|
186 |
+
{
|
187 |
+
$folder = dirname(plugin_basename($plugin));
|
188 |
+
if ('.' != $folder)
|
189 |
+
$url .= '/' . ltrim($folder, '/');
|
190 |
+
}
|
191 |
+
|
192 |
+
if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
|
193 |
+
$url .= '/' . ltrim($path, '/');
|
194 |
+
|
195 |
+
return apply_filters('plugins_url', $url, $path, $plugin);
|
196 |
+
}
|
197 |
+
|
198 |
+
|
199 |
/**
|
200 |
* init fucntions; check rights and options
|
201 |
*
|
203 |
*/
|
204 |
function on_init() {
|
205 |
global $wp_version;
|
206 |
+
|
207 |
if ( is_admin() ) {
|
208 |
// update options
|
209 |
add_action('admin_post_swp_update', array(&$this, 'swp_update') );
|
210 |
// deinstall options
|
211 |
add_action('admin_post_swp_uninstall', array(&$this, 'swp_uninstall') );
|
212 |
+
|
213 |
// init default options on activate
|
214 |
if ( function_exists('register_activation_hook') )
|
215 |
register_activation_hook(__FILE__, array($this, 'activate') );
|
|
|
|
|
|
|
216 |
// deinstall options in deactivate
|
217 |
if ( function_exists('register_deactivation_hook') )
|
218 |
register_deactivation_hook(__FILE__, array($this, 'deactivate') );
|
219 |
+
|
220 |
// add options page
|
221 |
add_action( 'admin_menu', array(&$this, 'admin_menu') );
|
222 |
// hint in footer of the options page
|
223 |
add_action( 'in_admin_footer', array(&$this, 'admin_footer') );
|
224 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
add_action( 'wp_ajax_set_toggle_status', array($this, 'set_toggle_status') );
|
226 |
}
|
227 |
+
|
228 |
+
|
229 |
/**
|
230 |
* remove Error-information
|
231 |
*/
|
233 |
add_action( 'login_head', array(&$this, 'remove_error_div') );
|
234 |
add_filter( 'login_errors', create_function( '$a', "return null;" ) );
|
235 |
}
|
236 |
+
|
237 |
+
|
238 |
/**
|
239 |
* add index.html in plugin-folder
|
240 |
*/
|
241 |
+
if ( $GLOBALS['WPlize']->get_option('secure_wp_index') == '1' ) {
|
242 |
+
$this->add_index( WP_PLUGIN_DIR, true );
|
243 |
+
$this->add_index( WP_CONTENT_URL . '/themes', true );
|
244 |
+
}
|
245 |
+
|
246 |
+
|
247 |
/**
|
248 |
* remove rdf
|
249 |
*/
|
250 |
if ( function_exists('rsd_link') && !is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_rsd') == '1') )
|
251 |
remove_action('wp_head', 'rsd_link');
|
252 |
+
|
253 |
+
|
254 |
/**
|
255 |
* remove wlf
|
256 |
*/
|
257 |
if ( function_exists('wlwmanifest_link') && !is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_wlw') == '1') )
|
258 |
remove_action('wp_head', 'wlwmanifest_link');
|
259 |
+
|
260 |
/**
|
261 |
* add wp-scanner
|
262 |
* @link http://blogsecurity.net/wordpress/tools/wp-scanner
|
263 |
*/
|
264 |
+
|
265 |
+
if ( !is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_wps') == '1') ) {
|
266 |
+
add_filter( 'script_loader_src', array(&$this, 'filter_script_loader') );
|
267 |
+
add_filter( 'style_loader_src', array(&$this, 'filter_script_loader') );
|
268 |
+
}
|
269 |
+
|
270 |
+
/**
|
271 |
+
* block bad queries
|
272 |
+
* @link http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/
|
273 |
+
*/
|
274 |
+
if ( !is_admin() && $GLOBALS['WPlize']->get_option('secure_wp_amurlr') == '1' )
|
275 |
+
add_action( 'init', array(&$this, 'wp_against_malicious_url_request') );
|
276 |
}
|
277 |
+
|
278 |
+
|
279 |
/**
|
280 |
* install options
|
281 |
*
|
285 |
// set default options
|
286 |
$this->options_array = array('secure_wp_error' => '',
|
287 |
'secure_wp_version' => '1',
|
288 |
+
'secure_wp_admin_version' => '1',
|
289 |
'secure_wp_index' => '1',
|
290 |
+
'secure_wp_rsd' => '1',
|
291 |
'secure_wp_wlw' => '',
|
292 |
'secure_wp_rcu' => '1',
|
293 |
'secure_wp_rpu' => '1',
|
294 |
+
'secure_wp_rtu' => '1',
|
295 |
+
'secure_wp_wps' => '',
|
296 |
+
'secure_wp_amurlr' => '1'
|
297 |
);
|
298 |
+
|
299 |
// add class WPlize for options in WP
|
300 |
$GLOBALS['WPlize'] = new WPlize(
|
301 |
'secure-wp',
|
302 |
$this->options_array
|
303 |
);
|
304 |
}
|
305 |
+
|
306 |
+
|
307 |
/**
|
308 |
* unpdate options
|
309 |
*
|
312 |
function update() {
|
313 |
// init value
|
314 |
$update_options = array();
|
315 |
+
|
316 |
// set value
|
317 |
foreach ($this->options_array as $key => $value) {
|
318 |
+
$update_options[$key] = stripslashes_deep( trim($_POST[$key]) );
|
319 |
}
|
320 |
+
|
321 |
// save value
|
322 |
if ($update_options) {
|
323 |
$GLOBALS['WPlize']->update_option($update_options);
|
324 |
}
|
325 |
}
|
326 |
+
|
327 |
+
|
328 |
/**
|
329 |
* uninstall options
|
330 |
*
|
331 |
* @package Secure WordPress
|
332 |
*/
|
333 |
function deactivate() {
|
334 |
+
|
335 |
$GLOBALS['WPlize']->delete_option();
|
336 |
}
|
337 |
+
|
338 |
+
|
339 |
/**
|
340 |
* Add option for tabboxes via ajax
|
341 |
*
|
343 |
*/
|
344 |
function set_toggle_status() {
|
345 |
if ( current_user_can('manage_options') && $_POST['set_toggle_id'] ) {
|
346 |
+
|
347 |
$id = $_POST['set_toggle_id'];
|
348 |
$status = $_POST['set_toggle_status'];
|
349 |
+
|
350 |
$GLOBALS['WPlize']->update_option($id, $status);
|
351 |
}
|
352 |
}
|
353 |
+
|
354 |
+
|
355 |
/**
|
356 |
* @version WP 2.8
|
357 |
* Add action link(s) to plugins page
|
362 |
* @return $links
|
363 |
*/
|
364 |
function filter_plugin_meta($links, $file) {
|
365 |
+
|
366 |
/* create link */
|
367 |
if ( $file == FB_SWP_BASENAME ) {
|
368 |
array_unshift(
|
370 |
sprintf( '<a href="options-general.php?page=%s">%s</a>', FB_SWP_FILENAME, __('Settings') )
|
371 |
);
|
372 |
}
|
373 |
+
|
374 |
return $links;
|
375 |
}
|
376 |
+
|
377 |
+
|
378 |
/**
|
379 |
* Display Images/ Icons in base64-encoding
|
380 |
*
|
384 |
* @return $resourceID
|
385 |
*/
|
386 |
function get_resource_url($resourceID) {
|
387 |
+
|
388 |
return trailingslashit( get_bloginfo('url') ) . '?resource=' . $resourceID;
|
389 |
}
|
390 |
+
|
391 |
+
|
392 |
/**
|
393 |
* content of help
|
394 |
*
|
395 |
* @package Secure WordPress
|
396 |
*/
|
397 |
function contextual_help() {
|
398 |
+
|
399 |
$content = __('<a href="http://wordpress.org/extend/plugins/secure-wordpress/">Documentation</a>', FB_SWP_TEXTDOMAIN);
|
400 |
return $content;
|
401 |
}
|
402 |
+
|
403 |
+
|
404 |
/**
|
405 |
* settings in plugin-admin-page
|
406 |
*
|
408 |
*/
|
409 |
function admin_menu() {
|
410 |
global $wp_version;
|
411 |
+
|
412 |
if ( function_exists('add_management_page') && current_user_can('manage_options') ) {
|
413 |
+
|
414 |
+
if ( !isset($_GET['update']) )
|
415 |
+
$_GET['update'] = 'false';
|
416 |
+
|
417 |
+
if ( !isset($_GET['uninstall']) )
|
418 |
+
$_GET['uninstall'] = 'false';
|
419 |
+
|
420 |
// update, uninstall message
|
421 |
if ( strpos($_SERVER['REQUEST_URI'], 'secure-wordpress.php') && $_GET['update'] == 'true' ) {
|
422 |
$return_message = __('Options update.', FB_SWP_TEXTDOMAIN);
|
426 |
$return_message = '';
|
427 |
}
|
428 |
$message = '<div class="updated fade"><p>' . $return_message . '</p></div>';
|
429 |
+
|
430 |
$menutitle = '';
|
431 |
if ( version_compare( $wp_version, '2.7alpha', '>' ) ) {
|
432 |
+
|
433 |
if ( $return_message !== '' )
|
434 |
add_action('admin_notices', create_function( '', "echo '$message';" ) );
|
435 |
+
|
436 |
$menutitle = '<img src="' . $this->get_resource_url('secure_wp.gif') . '" alt="" />' . ' ';
|
437 |
}
|
438 |
$menutitle .= __('Secure WP', FB_SWP_TEXTDOMAIN);
|
439 |
+
|
440 |
+
// added check for SSL login and to adjust url for logo accordingly
|
441 |
+
if ( force_ssl_login() || force_ssl_admin() )
|
442 |
+
$menutitle = str_replace( 'http://', 'https://', $menutitle );
|
443 |
+
|
444 |
if ( version_compare( $wp_version, '2.7alpha', '>' ) && function_exists('add_contextual_help') ) {
|
445 |
+
$hook = add_submenu_page( 'options-general.php', __('Secure WordPress', FB_SWP_TEXTDOMAIN), $menutitle, 'manage_options', basename(__FILE__), array(&$this, 'display_page') );
|
446 |
add_contextual_help( $hook, __('<a href="http://wordpress.org/extend/plugins/secure-wordpress/">Documentation</a>', FB_SWP_TEXTDOMAIN) );
|
447 |
//add_filter( 'contextual_help', array(&$this, 'contextual_help') );
|
448 |
} else {
|
449 |
add_submenu_page( 'options-general.php', __('Secure WP', FB_SWP_TEXTDOMAIN), $menutitle, 9, basename(__FILE__), array(&$this, 'display_page') );
|
450 |
}
|
451 |
+
|
452 |
$plugin = plugin_basename(__FILE__);
|
453 |
add_filter( 'plugin_action_links_' . $plugin, array(&$this, 'filter_plugin_meta'), 10, 2 );
|
454 |
if ( version_compare( $wp_version, '2.8alpha', '>' ) )
|
455 |
add_filter( 'plugin_row_meta', array(&$this, 'filter_plugin_meta'), 10, 2 );
|
456 |
}
|
457 |
}
|
458 |
+
|
459 |
+
|
460 |
/**
|
461 |
* credit in wp-footer
|
462 |
*
|
463 |
* @package Secure WordPress
|
464 |
*/
|
465 |
function admin_footer() {
|
466 |
+
|
467 |
if( basename($_SERVER['QUERY_STRING']) == 'page=secure-wordpress.php') {
|
468 |
$plugin_data = get_plugin_data( __FILE__ );
|
469 |
+
printf('%1$s plugin | ' . __('Version') . ' <a href="http://wordpress.org/extend/plugins/secure-wordpress/changelog/" title="' . __('History', FB_SWP_TEXTDOMAIN) . '">%2$s</a> | ' . __('Author') . ' %3$s<br />', $plugin_data['Title'], $plugin_data['Version'], $plugin_data['Author']);
|
470 |
}
|
471 |
}
|
472 |
+
|
473 |
+
|
474 |
/**
|
475 |
+
* add index.php to plugin-derectory
|
476 |
*/
|
477 |
+
function add_index($path, $enable) {
|
478 |
+
|
479 |
+
$file = trailingslashit($path) . 'index.php';
|
480 |
+
|
481 |
if ($enable) {
|
482 |
if (!file_exists($file)) {
|
483 |
$fh = @fopen($file, 'w');
|
489 |
}
|
490 |
}
|
491 |
}
|
492 |
+
|
493 |
+
|
494 |
/**
|
495 |
* Replace the WP-version with a random string < WP 2.4
|
496 |
* and eliminate WP-version > WP 2.4
|
497 |
+
* @link http://bueltge.de/wordpress-version-verschleiern-plugin/602/
|
498 |
*
|
499 |
* @package Secure WordPress
|
500 |
*/
|
501 |
function replace_wp_version() {
|
502 |
+
|
503 |
if ( !is_admin() ) {
|
504 |
global $wp_version;
|
505 |
+
|
506 |
+
// random values
|
507 |
$v = intval( rand(0, 9999) );
|
508 |
+
$d = intval( rand(9999, 99999) );
|
509 |
+
$m = intval( rand(99999, 999999) );
|
510 |
+
$t = intval( rand(999999, 9999999) );
|
511 |
|
512 |
if ( function_exists('the_generator') ) {
|
513 |
// eliminate version for wordpress >= 2.4
|
514 |
+
remove_filter( 'wp_head', 'wp_generator' );
|
515 |
+
foreach (
|
516 |
+
array( 'rss2_head', 'commentsrss2_head', 'rss_head', 'rdf_header', 'atom_head', 'comments_atom_head', 'opml_head', 'app_head' ) as $action ) {
|
517 |
+
remove_action( $action, 'the_generator' );
|
518 |
+
}
|
519 |
+
|
520 |
+
// for vars
|
521 |
$wp_version = $v;
|
522 |
+
$wp_db_version = $d;
|
523 |
+
$manifest_version = $m;
|
524 |
+
$tinymce_version = $t;
|
525 |
} else {
|
526 |
// for wordpress < 2.4
|
527 |
add_filter( "bloginfo_rss('version')", create_function('$a', "return $v;") );
|
528 |
+
|
529 |
// for rdf and rss v0.92
|
530 |
$wp_version = $v;
|
531 |
+
$wp_db_version = $d;
|
532 |
+
$manifest_version = $m;
|
533 |
+
$tinymce_version = $t;
|
534 |
}
|
535 |
}
|
536 |
+
|
537 |
}
|
538 |
+
|
539 |
+
|
540 |
+
/**
|
541 |
+
* remove WP Version-Information on Dashboard
|
542 |
+
*
|
543 |
+
* @package Secure WordPress
|
544 |
+
*/
|
545 |
+
function remove_wp_version_on_admin() {
|
546 |
+
if ( !current_user_can('update_plugins') && is_admin() ) {
|
547 |
+
wp_enqueue_script( 'remove-wp-version', $this->get_plugins_url( 'js/remove_wp_version.js', __FILE__ ), array('jquery') );
|
548 |
+
remove_action( 'update_footer', 'core_update_footer' );
|
549 |
+
}
|
550 |
+
}
|
551 |
+
|
552 |
+
|
553 |
/**
|
554 |
* remove core-Update-Information
|
555 |
*
|
556 |
* @package Secure WordPress
|
557 |
*/
|
558 |
function remove_core_update() {
|
559 |
+
if ( !current_user_can('update_plugins') ) {
|
560 |
+
add_action( 'admin_init', create_function( '$a', "remove_action( 'admin_notices', 'maintenance_nag' );" ) );
|
561 |
+
add_action( 'admin_init', create_function( '$a', "remove_action( 'admin_notices', 'update_nag', 3 );" ) );
|
562 |
+
add_action( 'admin_init', create_function( '$a', "remove_action( 'admin_init', '_maybe_update_core' );" ) );
|
563 |
add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_version_check' );" ) );
|
564 |
add_filter( 'pre_option_update_core', create_function( '$a', "return null;" ) );
|
565 |
+
remove_action( 'wp_version_check', 'wp_version_check' );
|
566 |
+
remove_action( 'admin_init', '_maybe_update_core' );
|
567 |
+
add_filter( 'pre_transient_update_core', create_function( '$a', "return null;" ) );
|
568 |
+
// 3.0
|
569 |
+
add_filter( 'pre_site_transient_update_core', create_function( '$a', "return null;" ) );
|
570 |
+
//wp_clear_scheduled_hook( 'wp_version_check' );
|
571 |
}
|
572 |
}
|
573 |
+
|
574 |
+
|
575 |
/**
|
576 |
* remove plugin-Update-Information
|
577 |
*
|
578 |
* @package Secure WordPress
|
579 |
*/
|
580 |
function remove_plugin_update() {
|
581 |
+
if ( !current_user_can('update_plugins') ) {
|
582 |
+
wp_enqueue_style( 'remove-update-plugins', $this->get_plugins_url( 'css/remove_update_plugins.css', __FILE__ ) );
|
583 |
+
add_action( 'admin_init', create_function( '$a', "remove_action( 'admin_init', 'wp_plugin_update_rows' );" ), 2 );
|
584 |
+
add_action( 'admin_init', create_function( '$a', "remove_action( 'admin_init', '_maybe_update_plugins' );" ), 2 );
|
585 |
add_action( 'admin_menu', create_function( '$a', "remove_action( 'load-plugins.php', 'wp_update_plugins' );" ) );
|
586 |
add_action( 'admin_init', create_function( '$a', "remove_action( 'admin_init', 'wp_update_plugins' );" ), 2 );
|
587 |
add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_update_plugins' );" ), 2 );
|
588 |
add_filter( 'pre_option_update_plugins', create_function( '$a', "return null;" ) );
|
589 |
+
remove_action( 'load-plugins.php', 'wp_update_plugins' );
|
590 |
+
remove_action( 'load-update.php', 'wp_update_plugins' );
|
591 |
+
remove_action( 'admin_init', '_maybe_update_plugins' );
|
592 |
+
remove_action( 'wp_update_plugins', 'wp_update_plugins' );
|
593 |
+
// 3.0
|
594 |
+
remove_action( 'load-update-core.php', 'wp_update_plugins' );
|
595 |
+
add_filter( 'pre_transient_update_plugins', create_function( '$a', "return null;" ) );
|
596 |
+
//wp_clear_scheduled_hook( 'wp_update_plugins' );
|
597 |
}
|
598 |
}
|
599 |
+
|
600 |
+
|
601 |
/**
|
602 |
* remove theme-Update-Information
|
603 |
*
|
609 |
remove_action( 'load-update.php', 'wp_update_themes' );
|
610 |
remove_action( 'admin_init', '_maybe_update_themes' );
|
611 |
remove_action( 'wp_update_themes', 'wp_update_themes' );
|
612 |
+
// 3.0
|
613 |
+
remove_action( 'load-update-core.php', 'wp_update_themes' );
|
614 |
+
//wp_clear_scheduled_hook( 'wp_update_themes' );
|
615 |
add_filter( 'pre_transient_update_themes', create_function( '$a', "return null;" ) );
|
616 |
}
|
617 |
}
|
618 |
+
|
619 |
+
|
620 |
/**
|
621 |
* remove error-div
|
622 |
*
|
623 |
* @package Secure WordPress
|
624 |
*/
|
625 |
function remove_error_div() {
|
626 |
+
global $wp_version;
|
627 |
+
|
628 |
+
$link = "\n";
|
629 |
+
$link .= '<link rel="stylesheet" type="text/css" href="';
|
630 |
+
$link .= $this->get_plugins_url( 'css/remove_login.css', __FILE__ );
|
631 |
+
$link .= '" />';
|
632 |
+
$link .= "\n";
|
633 |
+
echo $link;
|
634 |
}
|
635 |
+
|
636 |
+
|
637 |
/**
|
638 |
* add string in blog for WP scanner
|
639 |
*
|
640 |
* @package Secure WordPress
|
641 |
*/
|
642 |
function wp_scanner() {
|
643 |
+
echo '<!-- wpscanner -->' . "\n";
|
644 |
}
|
645 |
+
|
646 |
+
/**
|
647 |
+
* Removes the version parameter from urls
|
648 |
+
*
|
649 |
+
* @param string $src Original script URI
|
650 |
+
* @return string
|
651 |
+
*/
|
652 |
+
function filter_script_loader($src) {
|
653 |
+
|
654 |
+
if ( is_admin() )
|
655 |
+
return $src;
|
656 |
+
|
657 |
+
// Separate the version parameter.
|
658 |
+
$src = explode('?ver=' . $this->wpversion, $src);
|
659 |
+
// Just the URI without the query string.
|
660 |
+
return $src[0];
|
661 |
+
}
|
662 |
+
|
663 |
+
/**
|
664 |
+
* block bad queries
|
665 |
+
*
|
666 |
+
* @package Secure WordPress
|
667 |
+
* @see http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/
|
668 |
+
* @author Jeff Starr
|
669 |
+
*/
|
670 |
+
function wp_against_malicious_url_request() {
|
671 |
+
global $user_ID;
|
672 |
+
|
673 |
+
if ($user_ID) {
|
674 |
+
if ( !current_user_can('manage_options') ) {
|
675 |
+
if (strlen($_SERVER['REQUEST_URI']) > 255 ||
|
676 |
+
stripos($_SERVER['REQUEST_URI'], "eval(") ||
|
677 |
+
stripos($_SERVER['REQUEST_URI'], "CONCAT") ||
|
678 |
+
stripos($_SERVER['REQUEST_URI'], "UNION+SELECT") ||
|
679 |
+
stripos($_SERVER['REQUEST_URI'], "base64")) {
|
680 |
+
@header("HTTP/1.1 414 Request-URI Too Long");
|
681 |
+
@header("Status: 414 Request-URI Too Long");
|
682 |
+
@header("Connection: Close");
|
683 |
+
@exit;
|
684 |
+
}
|
685 |
+
}
|
686 |
+
}
|
687 |
+
}
|
688 |
+
|
689 |
+
|
690 |
/**
|
691 |
* update options
|
692 |
*
|
693 |
* @package Secure WordPress
|
694 |
*/
|
695 |
function swp_update() {
|
696 |
+
|
697 |
if ( !current_user_can('manage_options') )
|
698 |
+
wp_die( __('Options not updated - you don‘t have the privileges to do this!', FB_SWP_TEXTDOMAIN) );
|
699 |
+
|
700 |
//cross check the given referer
|
701 |
check_admin_referer('secure_wp_settings_form');
|
702 |
+
|
703 |
$this->update();
|
704 |
+
|
705 |
$referer = str_replace('&update=true&update=true', '', $_POST['_wp_http_referer'] );
|
706 |
wp_redirect($referer . '&update=true' );
|
707 |
}
|
708 |
+
|
709 |
+
|
710 |
/**
|
711 |
* uninstall options
|
712 |
*
|
713 |
* @package Secure WordPress
|
714 |
*/
|
715 |
function swp_uninstall() {
|
716 |
+
|
717 |
if ( !current_user_can('manage_options') )
|
718 |
+
wp_die( __('Entries were not deleted - you don‘t have the privileges to do this!', FB_SWP_TEXTDOMAIN) );
|
719 |
+
|
720 |
//cross check the given referer
|
721 |
check_admin_referer('secure_wp_uninstall_form');
|
722 |
+
|
723 |
if ( isset($_POST['deinstall_yes']) ) {
|
724 |
$this->deactivate();
|
725 |
} else {
|
726 |
+
wp_die( __('Entries were not deleted - check the checkbox!', FB_SWP_TEXTDOMAIN) );
|
727 |
}
|
728 |
+
|
729 |
wp_redirect( 'plugins.php' );
|
730 |
}
|
731 |
+
|
732 |
+
|
733 |
/**
|
734 |
* display options page in backende
|
735 |
*
|
737 |
*/
|
738 |
function display_page() {
|
739 |
global $wp_version;
|
740 |
+
|
741 |
if ( isset($_POST['action']) && 'deinstall' == $_POST['action'] ) {
|
742 |
check_admin_referer('secure_wp_deinstall_form');
|
743 |
if ( current_user_can('manage_options') && isset($_POST['deinstall_yes']) ) {
|
744 |
$this->deactivate();
|
745 |
?>
|
746 |
+
<div id="message" class="updated fade"><p><?php _e('All entries in the database were cleared.', FB_SWP_TEXTDOMAIN); ?></p></div>
|
747 |
<?php
|
748 |
} else {
|
749 |
?>
|
750 |
+
<div id="message" class="error"><p><?php _e('Entries were not deleted - check the checkbox or you don‘t have the privileges to do this!', FB_SWP_TEXTDOMAIN); ?></p></div>
|
751 |
<?php
|
752 |
}
|
753 |
}
|
754 |
+
|
755 |
+
$secure_wp_error = $GLOBALS['WPlize']->get_option('secure_wp_error');
|
756 |
+
$secure_wp_version = $GLOBALS['WPlize']->get_option('secure_wp_version');
|
757 |
+
$secure_wp_admin_version = $GLOBALS['WPlize']->get_option('secure_wp_admin_version');
|
758 |
+
$secure_wp_index = $GLOBALS['WPlize']->get_option('secure_wp_index');
|
759 |
+
$secure_wp_rsd = $GLOBALS['WPlize']->get_option('secure_wp_rsd');
|
760 |
+
$secure_wp_wlw = $GLOBALS['WPlize']->get_option('secure_wp_wlw');
|
761 |
+
$secure_wp_rcu = $GLOBALS['WPlize']->get_option('secure_wp_rcu');
|
762 |
+
$secure_wp_rpu = $GLOBALS['WPlize']->get_option('secure_wp_rpu');
|
763 |
+
$secure_wp_rtu = $GLOBALS['WPlize']->get_option('secure_wp_rtu');
|
764 |
+
$secure_wp_wps = $GLOBALS['WPlize']->get_option('secure_wp_wps');
|
765 |
+
$secure_wp_amurlr = $GLOBALS['WPlize']->get_option('secure_wp_amurlr');
|
766 |
|
767 |
+
$secure_wp_win_settings = $GLOBALS['WPlize']->get_option('secure_wp_win_settings');
|
768 |
+
$secure_wp_win_about = $GLOBALS['WPlize']->get_option('secure_wp_win_about');
|
769 |
+
$secure_wp_win_opt = $GLOBALS['WPlize']->get_option('secure_wp_win_opt');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
770 |
?>
|
771 |
<div class="wrap">
|
772 |
+
<div id="icon-sitesecuritymonitor" class="icon32" style="background: url('<?php echo $this->get_plugins_url( 'img/h2logo.png', __FILE__ ); ?>') no-repeat;"><br /></div>
|
773 |
<h2><?php _e('Secure WordPress', FB_SWP_TEXTDOMAIN); ?></h2>
|
774 |
<br class="clear" />
|
775 |
+
|
776 |
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
777 |
<div id="secure_wp_win_settings" class="postbox <?php echo $secure_wp_win_settings ?>" >
|
778 |
<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
|
779 |
<h3><?php _e('Configuration', FB_SWP_TEXTDOMAIN); ?></h3>
|
780 |
<div class="inside">
|
781 |
+
|
782 |
<form name="secure_wp_config-update" method="post" action="admin-post.php">
|
783 |
<?php if (function_exists('wp_nonce_field') === true) wp_nonce_field('secure_wp_settings_form'); ?>
|
784 |
+
|
785 |
<table class="form-table">
|
786 |
+
|
787 |
<tr valign="top">
|
788 |
<th scope="row">
|
789 |
<label for="secure_wp_error"><?php _e('Error-Messages', FB_SWP_TEXTDOMAIN); ?></label>
|
790 |
</th>
|
791 |
<td>
|
792 |
<input type="checkbox" name="secure_wp_error" id="secure_wp_error" value="1" <?php if ( $secure_wp_error == '1') { echo "checked='checked'"; } ?> />
|
793 |
+
<?php _e('Deactivates tooltip and error message at login of WordPress', FB_SWP_TEXTDOMAIN); ?>
|
794 |
</td>
|
795 |
</tr>
|
796 |
+
|
797 |
<tr valign="top">
|
798 |
<th scope="row">
|
799 |
<label for="secure_wp_version"><?php _e('WordPress Version', FB_SWP_TEXTDOMAIN); ?></label>
|
803 |
<?php _e('Removes version of WordPress in all areas, including feed, not in admin', FB_SWP_TEXTDOMAIN); ?>
|
804 |
</td>
|
805 |
</tr>
|
806 |
+
|
807 |
+
<tr valign="top">
|
808 |
+
<th scope="row">
|
809 |
+
<label for="secure_wp_admin_version"><?php _e('WordPress Version in Backend', FB_SWP_TEXTDOMAIN); ?></label>
|
810 |
+
</th>
|
811 |
+
<td>
|
812 |
+
<input type="checkbox" name="secure_wp_admin_version" id="secure_wp_admin_version" value="1" <?php if ( $secure_wp_admin_version == '1') { echo "checked='checked'"; } ?> />
|
813 |
+
<?php _e('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.', FB_SWP_TEXTDOMAIN); ?>
|
814 |
+
</td>
|
815 |
+
</tr>
|
816 |
+
|
817 |
<tr valign="top">
|
818 |
<th scope="row">
|
819 |
+
<label for="secure_wp_index"><?php _e('index.php', FB_SWP_TEXTDOMAIN); ?></label>
|
820 |
</th>
|
821 |
<td>
|
822 |
<input type="checkbox" name="secure_wp_index" id="secure_wp_index" value="1" <?php if ( $secure_wp_index == '1') { echo "checked='checked'"; } ?> />
|
823 |
+
<?php _e('creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing', FB_SWP_TEXTDOMAIN); ?>
|
824 |
</td>
|
825 |
</tr>
|
826 |
+
|
827 |
<tr valign="top">
|
828 |
<th scope="row">
|
829 |
<label for="secure_wp_rsd"><?php _e('Really Simple Discovery', FB_SWP_TEXTDOMAIN); ?></label>
|
833 |
<?php _e('Remove Really Simple Discovery link in <code>wp_head</code> of the frontend', FB_SWP_TEXTDOMAIN); ?>
|
834 |
</td>
|
835 |
</tr>
|
836 |
+
|
837 |
<tr valign="top">
|
838 |
<th scope="row">
|
839 |
<label for="secure_wp_wlw"><?php _e('Windows Live Writer', FB_SWP_TEXTDOMAIN); ?></label>
|
843 |
<?php _e('Remove Windows Live Writer link in <code>wp_head</code> of the frontend', FB_SWP_TEXTDOMAIN); ?>
|
844 |
</td>
|
845 |
</tr>
|
846 |
+
|
847 |
<tr valign="top">
|
848 |
<th scope="row">
|
849 |
<label for="secure_wp_rcu"><?php _e('Core Update', FB_SWP_TEXTDOMAIN); ?></label>
|
853 |
<?php _e('Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update.', FB_SWP_TEXTDOMAIN); ?>
|
854 |
</td>
|
855 |
</tr>
|
856 |
+
|
857 |
<tr valign="top">
|
858 |
<th scope="row">
|
859 |
<label for="secure_wp_rpu"><?php _e('Plugin Update', FB_SWP_TEXTDOMAIN); ?></label>
|
863 |
<?php _e('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.', FB_SWP_TEXTDOMAIN); ?>
|
864 |
</td>
|
865 |
</tr>
|
866 |
+
|
867 |
<?php if ( version_compare($wp_version, "2.8alpha", ">=") ) { ?>
|
868 |
<tr valign="top">
|
869 |
<th scope="row">
|
875 |
</td>
|
876 |
</tr>
|
877 |
<?php } ?>
|
878 |
+
|
879 |
<tr valign="top">
|
880 |
<th scope="row">
|
881 |
+
<label for="secure_wp_wps"><?php _e('WP Version on Scripts/Styles', FB_SWP_TEXTDOMAIN); ?></label>
|
882 |
</th>
|
883 |
<td>
|
884 |
<input type="checkbox" name="secure_wp_wps" id="secure_wp_wps" value="1" <?php if ( $secure_wp_wps == '1') { echo "checked='checked'"; } ?> />
|
885 |
+
<?php _e('Removes version of WordPress on the url form scripts and stylesheets only on frontend.', FB_SWP_TEXTDOMAIN); ?>
|
886 |
+
</td>
|
887 |
+
</tr>
|
888 |
+
|
889 |
+
<tr valign="top">
|
890 |
+
<th scope="row">
|
891 |
+
<label for="secure_wp_amurlr"><?php _e('Block bad queries', FB_SWP_TEXTDOMAIN); ?></label>
|
892 |
+
</th>
|
893 |
+
<td>
|
894 |
+
<input type="checkbox" name="secure_wp_amurlr" id="secure_wp_amurlr" value="1" <?php if ( $secure_wp_amurlr == '1') { echo "checked='checked'"; } ?> />
|
895 |
+
<?php _e('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>', FB_SWP_TEXTDOMAIN); ?>
|
896 |
</td>
|
897 |
</tr>
|
898 |
+
|
899 |
</table>
|
900 |
+
|
901 |
<p class="submit">
|
902 |
<input type="hidden" name="action" value="swp_update" />
|
903 |
+
<input type="submit" name="Submit" value="<?php _e('Save Changes', FB_SWP_TEXTDOMAIN); ?> »" class="button-primary" />
|
904 |
</p>
|
905 |
</form>
|
906 |
|
907 |
</div>
|
908 |
</div>
|
909 |
</div>
|
910 |
+
|
911 |
+
<!--
|
912 |
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
913 |
<div id="secure_wp_win_opt" class="postbox <?php echo $secure_wp_win_opt ?>" >
|
914 |
<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
|
915 |
+
<h3 id="uninstall"><?php _e('Validate your site with a free malware scan from www.sitesecuritymonitor.com', FB_SWP_TEXTDOMAIN) ?></h3>
|
916 |
<div class="inside">
|
917 |
+
|
918 |
+
<h4><?php _e('Take us for a Test Drive - Free Scan', FB_SWP_TEXTDOMAIN) ?></h4>
|
919 |
+
<p><a href="http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress"><img src="<?php echo $this->get_plugins_url( 'img/logo.png', __FILE__ ); ?>" alt="Logo SiteSecurityMonitor.com" width="498" height="165" style="float:right;" /></a><?php _e('We understand you may have questions:', FB_SWP_TEXTDOMAIN) ?></p>
|
920 |
+
<p><?php _e('What does this do for me?', FB_SWP_TEXTDOMAIN) ?></p>
|
921 |
+
<p><?php _e('Am I really safe? I need to be sure.', FB_SWP_TEXTDOMAIN) ?></p>
|
922 |
+
<p><?php _e('Rest Assured, Site Security Monitor has you covered.', FB_SWP_TEXTDOMAIN) ?></p>
|
923 |
+
<ol>
|
924 |
+
<li><?php _e('FREE scan looks for malware', FB_SWP_TEXTDOMAIN) ?></li>
|
925 |
+
<li><?php _e('FREE report of website vulnerabilities found', FB_SWP_TEXTDOMAIN) ?></li>
|
926 |
+
<li><?php _e('No setup, tuning and installation on your site - scan begins immediately', FB_SWP_TEXTDOMAIN) ?></li>
|
927 |
+
</ol>
|
928 |
+
<p><?php _e('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!', FB_SWP_TEXTDOMAIN) ?></p>
|
929 |
+
<p><?php _e('** 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!', FB_SWP_TEXTDOMAIN) ?></p>
|
930 |
+
|
931 |
+
<h4><?php _e('The form', FB_SWP_TEXTDOMAIN) ?></h4>
|
932 |
+
<p><?php _e('Use the follow form or use it on <a href="http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress">our website</a>.', FB_SWP_TEXTDOMAIN) ?></p>
|
933 |
+
<form action="http://www.sitesecuritymonitor.com/Default.aspx?app=iframeform&hidemenu=true&ContactFormID=26978" method="post">
|
934 |
+
<input type="hidden" name="FormSubmitRedirectURL" id="FormSubmitRedirectURL" value="http://www.sitesecuritymonitor.com" >
|
935 |
+
<input type="hidden" name="Lead_Src" id="LeadSrc" value="Get a Free Scan" />
|
936 |
+
|
937 |
+
<script type='text/javascript' language='javascript'>
|
938 |
+
/* <![CDATA[ */
|
939 |
+
HubSpotFormSpamCheck_LeadGen_ContactForm_26978_m0 = function() {
|
940 |
+
var key = document.getElementById('LeadGen_ContactForm_26978_m0spam_check_key').value;
|
941 |
+
var sig = '';
|
942 |
+
for (var x = 0; x< key.length; x++ ) {
|
943 |
+
sig += key.charCodeAt(x)+13;
|
944 |
+
}
|
945 |
+
document.getElementById('LeadGen_ContactForm_26978_m0spam_check_sig').value = sig;
|
946 |
+
// Set the hidden field to contain the user token
|
947 |
+
var results = document.cookie.match ( '(^|;) ?hubspotutk=([^;]*)(;|$)' );
|
948 |
+
if (results && results[2]) {
|
949 |
+
document.getElementById('LeadGen_ContactForm_26978_m0submitter_user_token').value = results[2];
|
950 |
+
} else if (window['hsut']) {
|
951 |
+
document.getElementById('LeadGen_ContactForm_26978_m0submitter_user_token').value = window['hsut'];
|
952 |
+
}
|
953 |
+
return true;
|
954 |
+
};
|
955 |
+
/*]]>*/
|
956 |
+
</script>
|
957 |
+
|
958 |
+
<input type="hidden" id='LeadGen_ContactForm_26978_m0submitter_user_token' name='LeadGen_ContactForm_26978_m0submitter_user_token' value='' />
|
959 |
+
<input type="hidden" name='ContactFormId' value='26978' />
|
960 |
+
<input type="hidden" id='LeadGen_ContactForm_26978_m0spam_check_key' name='LeadGen_ContactForm_26978_m0spam_check_key' value='jjnjrgslmerhsnofgnqqdsgnrsseldqfkpqssqkfvvweukiulhuqnmgmtvls' />
|
961 |
+
<input type='hidden' id='LeadGen_ContactForm_26978_m0spam_check_sig' name='LeadGen_ContactForm_26978_m0spam_check_sig' value='' />
|
962 |
+
|
963 |
+
<table class="form-table">
|
964 |
+
|
965 |
+
<tr valign="top">
|
966 |
+
<th scope="row">
|
967 |
+
<label for="LeadGen_ContactForm_26978_m0_FullName"><?php _e('Full Name', FB_SWP_TEXTDOMAIN); ?></label>
|
968 |
+
</th>
|
969 |
+
<td>
|
970 |
+
<input type="Text" name="LeadGen_ContactForm_26978_m0:FullName" class="StandardI AutoFormInput LeadGen_ContactForm_26978_m0_AutoForm" id="LeadGen_ContactForm_26978_m0_FullName" value="" /> <?php _e('*required', FB_SWP_TEXTDOMAIN); ?>
|
971 |
+
</td>
|
972 |
+
</tr>
|
973 |
+
<tr valign="top">
|
974 |
+
<th scope="row">
|
975 |
+
<label for="LeadGen_ContactForm_26978_m0_Email"><?php _e('eMail Adress', FB_SWP_TEXTDOMAIN); ?></label>
|
976 |
+
</th>
|
977 |
+
<td>
|
978 |
+
<input type="Text" name="LeadGen_ContactForm_26978_m0:Email" class="StandardI AutoFormInput LeadGen_ContactForm_26978_m0_AutoForm" id="LeadGen_ContactForm_26978_m0_Email" value="" /> <?php _e('*required', FB_SWP_TEXTDOMAIN); ?><?php _e(', eMail Address must match domain name', FB_SWP_TEXTDOMAIN); ?>
|
979 |
+
</td>
|
980 |
+
</tr>
|
981 |
+
<tr valign="top">
|
982 |
+
<th scope="row">
|
983 |
+
<label for="LeadGen_ContactForm_26978_m0_WebSite"><?php _e('Website', FB_SWP_TEXTDOMAIN); ?></label>
|
984 |
+
</th>
|
985 |
+
<td>
|
986 |
+
<input type="Text" name="LeadGen_ContactForm_26978_m0:WebSite" class="StandardI AutoFormInput LeadGen_ContactForm_26978_m0_AutoForm" id="LeadGen_ContactForm_26978_m0_WebSite" value="" /> <?php _e('*required', FB_SWP_TEXTDOMAIN); ?>
|
987 |
+
</td>
|
988 |
+
</tr>
|
989 |
+
<tr valign="top">
|
990 |
+
<th scope="row">
|
991 |
+
<label for="LeadGen_ContactForm_26978_m0_Phone"><?php _e('Phone', FB_SWP_TEXTDOMAIN); ?></label>
|
992 |
+
</th>
|
993 |
+
<td>
|
994 |
+
<input type="Text" name="LeadGen_ContactForm_26978_m0:Phone" class="StandardI AutoFormInput LeadGen_ContactForm_26978_m0_AutoForm" id="LeadGen_ContactForm_26978_m0_Phone" value="" /> <?php _e('*required', FB_SWP_TEXTDOMAIN); ?>
|
995 |
+
</td>
|
996 |
+
</tr>
|
997 |
+
<tr valign="top">
|
998 |
+
<th scope="row">
|
999 |
+
<label for="LeadGen_ContactForm_26978_m0_Field_Checkboxes_5_cb_0"><?php _e('Yes, I need help!', FB_SWP_TEXTDOMAIN); ?></label>
|
1000 |
+
</th>
|
1001 |
+
<td>
|
1002 |
+
<input type="checkbox" name="LeadGen_ContactForm_26978_m0:Field_Checkboxes_5" id="LeadGen_ContactForm_26978_m0_Field_Checkboxes_5_cb_0" value="Call me" > <?php _e('Call me', FB_SWP_TEXTDOMAIN); ?>
|
1003 |
+
</td>
|
1004 |
+
</tr>
|
1005 |
+
<tr valign="top">
|
1006 |
+
<th scope="row">
|
1007 |
+
<label for="LeadGen_ContactForm_26978_m0_Field_Checkboxes_7_cb_0"><?php _e('Terms and Conditions', FB_SWP_TEXTDOMAIN); ?></label>
|
1008 |
+
</th>
|
1009 |
+
<td>
|
1010 |
+
<input type="checkbox" name="LeadGen_ContactForm_26978_m0:Field_Checkboxes_7" id="LeadGen_ContactForm_26978_m0_Field_Checkboxes_7_cb_0" value="I accept" > <?php _e('*required', FB_SWP_TEXTDOMAIN); ?><?php _e(', I accept', FB_SWP_TEXTDOMAIN); ?>
|
1011 |
+
</td>
|
1012 |
+
</tr>
|
1013 |
+
|
1014 |
+
</table>
|
1015 |
+
|
1016 |
+
<p class="submit">
|
1017 |
+
<input onclick='return HubSpotFormSpamCheck_LeadGen_ContactForm_26978_m0();' class='button' type='submit' name='LeadGen_ContactForm_Submit_LeadGen_ContactForm_26978_m0' value="<?php _e('Get my Free Web Scan', FB_SWP_TEXTDOMAIN); ?> »">
|
1018 |
</p>
|
1019 |
</form>
|
1020 |
+
|
1021 |
</div>
|
1022 |
</div>
|
1023 |
</div>
|
1024 |
+
-->
|
1025 |
+
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
1026 |
+
<div id="secure_wp_win_opt" class="postbox <?php echo $secure_wp_win_opt ?>" >
|
1027 |
+
<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
|
1028 |
+
<h3 id="uninstall"><?php _e('Safe Seal', FB_SWP_TEXTDOMAIN) ?></h3>
|
1029 |
+
<div class="inside">
|
1030 |
+
|
1031 |
+
<p><?php _e('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>', FB_SWP_TEXTDOMAIN ); ?></p>
|
1032 |
+
|
1033 |
+
<script type="text/javascript">
|
1034 |
+
function updateSealPreview()
|
1035 |
+
{
|
1036 |
+
var seal_color = document.forms['seal_form'].seal_color.options[document.forms['seal_form'].seal_color.options.selectedIndex].value;
|
1037 |
+
var seal_text = document.forms['seal_form'].seal_text.options[document.forms['seal_form'].seal_text.options.selectedIndex].value;
|
1038 |
+
var seal_orientation = document.forms['seal_form'].seal_orientation.options[document.forms['seal_form'].seal_orientation.options.selectedIndex].value;
|
1039 |
+
var seal_border = document.forms['seal_form'].seal_border.checked?"border":"noborder";
|
1040 |
+
var country = document.forms['seal_form'].country.options[document.forms['seal_form'].country.options.selectedIndex].value;
|
1041 |
+
var image_name = "https://reporting.sitesecuritymonitor.com/img_wp/<?php echo $_SERVER['HTTP_HOST']; ?>/" + seal_color + "_" + seal_text + "_" + seal_orientation + "_notext_" + seal_border + ".png";
|
1042 |
+
document.seal_preview.src = image_name;
|
1043 |
+
var gen_code = "<!-- Start sitesecuritymonitor.com code -->\n";
|
1044 |
+
gen_code += "<a target='_blank' href='https://reporting.sitesecuritymonitor.com/clients/go.x?i=l0&site=<?php echo $_SERVER['HTTP_HOST']; ?>&l=" + country + "' title='Web Site Security Scanning - www.sitesecuritymonitor.com' alt='sitesecuritymonitor.com Security Seal'>\n";
|
1045 |
+
gen_code += "<img src='" + image_name + "' oncontextmenu='return false;' border='0' alt='sitesecuritymonitor.com seal' />\n";
|
1046 |
+
gen_code += "</a>\n";
|
1047 |
+
gen_code += "<br />\n";
|
1048 |
+
gen_code += "<span style=\"font-size:8px; font-face:Arial;\">Protected by WP-Secure Plugin<BR><a href='http://www.sitesecuritymonitor.com'>SiteSecurityMonitor.com</a></span>\n";
|
1049 |
+
gen_code += "<!-- End sitesecuritymonitor.com code -->\n";
|
1050 |
+
document.getElementById('seal_code').value = gen_code;
|
1051 |
+
}
|
1052 |
+
</script>
|
1053 |
+
<form name="seal_form" action="javascript:void(0);" method="post" onsubmit="return false;">
|
1054 |
+
|
1055 |
+
<table class="form-table">
|
1056 |
+
<tr valign="top">
|
1057 |
+
<th scope="row">
|
1058 |
+
<label for="seal_color"><?php _e('Color', FB_SWP_TEXTDOMAIN); ?></label>
|
1059 |
+
</th>
|
1060 |
+
<td>
|
1061 |
+
<select id="seal_color" name="seal_color" onchange="javascript:updateSealPreview();">
|
1062 |
+
<option value="green" selected="selected"><?php _e('Green', FB_SWP_TEXTDOMAIN); ?></option>
|
1063 |
+
<option value="blue"><?php _e('Blue', FB_SWP_TEXTDOMAIN); ?></option>
|
1064 |
+
<option value="red"><?php _e('Red', FB_SWP_TEXTDOMAIN); ?></option>
|
1065 |
+
<option value="brown"><?php _e('Brown', FB_SWP_TEXTDOMAIN); ?></option>
|
1066 |
+
<option value="gray"><?php _e('Gray', FB_SWP_TEXTDOMAIN); ?></option>
|
1067 |
+
</select>
|
1068 |
+
</td>
|
1069 |
+
<td rowspan="5">
|
1070 |
+
<img src="" name="seal_preview" oncontextmenu='return false;' style="float:right; margin:10px;" />
|
1071 |
+
</td>
|
1072 |
+
</tr>
|
1073 |
+
<tr valign="top">
|
1074 |
+
<th scope="row">
|
1075 |
+
<label for="seal_text"><?php _e('Text', FB_SWP_TEXTDOMAIN); ?></label>
|
1076 |
+
</th>
|
1077 |
+
<td>
|
1078 |
+
<select id="seal_text" name="seal_text" onchange="javascript:updateSealPreview();">
|
1079 |
+
<option value="pr" selected="selected"><?php _e('Protected', FB_SWP_TEXTDOMAIN); ?></option>
|
1080 |
+
<option value="se"><?php _e('Secured', FB_SWP_TEXTDOMAIN); ?></option>
|
1081 |
+
<option value="sc"><?php _e('Scanned', FB_SWP_TEXTDOMAIN); ?></option>
|
1082 |
+
<option value="pb"><?php _e('Protected by', FB_SWP_TEXTDOMAIN); ?></option>
|
1083 |
+
</select>
|
1084 |
+
</td>
|
1085 |
+
</tr>
|
1086 |
+
<tr valign="top">
|
1087 |
+
<th scope="row">
|
1088 |
+
<label for="seal_orientation"><?php _e('Orientation', FB_SWP_TEXTDOMAIN); ?></label>
|
1089 |
+
</th>
|
1090 |
+
<td>
|
1091 |
+
<select id="seal_orientation" name="seal_orientation" onchange="javascript:updateSealPreview();">
|
1092 |
+
<option value="h" selected="selected"><?php _e('Horizontal', FB_SWP_TEXTDOMAIN); ?></option>
|
1093 |
+
<option value="v"><?php _e('Vertical', FB_SWP_TEXTDOMAIN); ?></option>
|
1094 |
+
</select>
|
1095 |
+
</td>
|
1096 |
+
</tr>
|
1097 |
+
<tr valign="top">
|
1098 |
+
<th scope="row">
|
1099 |
+
<label for="seal_border"><?php _e('Image border', FB_SWP_TEXTDOMAIN); ?></label>
|
1100 |
+
</th>
|
1101 |
+
<td>
|
1102 |
+
<input id="seal_border" type="checkbox" name="seal_border" onchange="javascript:updateSealPreview();" />
|
1103 |
+
</td>
|
1104 |
+
</tr>
|
1105 |
+
<tr valign="top">
|
1106 |
+
<th scope="row">
|
1107 |
+
<label for="country"><?php _e('Language', FB_SWP_TEXTDOMAIN); ?></label>
|
1108 |
+
</th>
|
1109 |
+
<td>
|
1110 |
+
<select id="country" name="country" onchange="javascript:updateSealPreview();">
|
1111 |
+
<option value="EN-US" selected="selected"><?php _e('English (US)', FB_SWP_TEXTDOMAIN); ?></option>
|
1112 |
+
<option value="EN-GB"><?php _e('English (UK)', FB_SWP_TEXTDOMAIN); ?></option>
|
1113 |
+
<option value="ES"><?php _e('Spanish', FB_SWP_TEXTDOMAIN); ?></option>
|
1114 |
+
<option value="DE"><?php _e('German', FB_SWP_TEXTDOMAIN); ?></option>
|
1115 |
+
<option value="IT"><?php _e('Italian', FB_SWP_TEXTDOMAIN); ?></option>
|
1116 |
+
<option value="JP"><?php _e('Japanese', FB_SWP_TEXTDOMAIN); ?></option>
|
1117 |
+
<option value="CN"><?php _e('Chinese (Simplified)', FB_SWP_TEXTDOMAIN); ?></option>
|
1118 |
+
<option value="CNT"><?php _e('Chinese (Traditional)', FB_SWP_TEXTDOMAIN); ?></option>
|
1119 |
+
</select>
|
1120 |
+
</td>
|
1121 |
+
</tr>
|
1122 |
+
</table>
|
1123 |
+
|
1124 |
+
</form>
|
1125 |
+
|
1126 |
+
<h4><?php _e( 'Source', FB_SWP_TEXTDOMAIN ); ?></h4>
|
1127 |
+
<p><?php _e('Here is your generated code. Place it on your website (as html widget) to show that you are protected.', FB_SWP_TEXTDOMAIN); ?></p>
|
1128 |
+
<textarea id="seal_code" name="seal_code" rows="10" cols="50" class="large-text code"></textarea>
|
1129 |
+
|
1130 |
+
<script type="text/javascript">
|
1131 |
+
updateSealPreview();
|
1132 |
+
</script>
|
1133 |
+
|
1134 |
+
<iframe src="http://www.facebook.com/plugins/likebox.php?id=346589752350&width=680&connections=10&stream=true&header=true&height=587" scrolling="no" frameborder="0" style="margin:10px auto; border:none; overflow:hidden; width:680px; height:587px;" allowTransparency="true"></iframe>
|
1135 |
+
</div>
|
1136 |
+
</div>
|
1137 |
+
</div>
|
1138 |
+
|
1139 |
<div id="poststuff" class="ui-sortable meta-box-sortables">
|
1140 |
+
<div id="secure_wp_win_opt" class="postbox <?php echo $secure_wp_win_opt ?>" >
|
1141 |
<div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
|
1142 |
+
<h3 id="uninstall"><?php _e('Clear Options', FB_SWP_TEXTDOMAIN) ?></h3>
|
1143 |
<div class="inside">
|
1144 |
+
|
1145 |
+
<p><?php _e('Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created.', FB_SWP_TEXTDOMAIN); ?></p>
|
1146 |
+
<form name="deinstall_options" method="post" action="admin-post.php">
|
1147 |
+
<?php if (function_exists('wp_nonce_field') === true) wp_nonce_field('secure_wp_uninstall_form'); ?>
|
1148 |
+
<p id="submitbutton">
|
1149 |
+
<input type="hidden" name="action" value="swp_uninstall" />
|
1150 |
+
<input type="submit" value="<?php _e('Delete Options', FB_SWP_TEXTDOMAIN); ?> »" class="button-secondary" />
|
1151 |
+
<input type="checkbox" name="deinstall_yes" />
|
1152 |
+
</p>
|
1153 |
+
</form>
|
1154 |
+
|
|
|
1155 |
</div>
|
1156 |
</div>
|
1157 |
</div>
|
1158 |
|
1159 |
+
<script type="text/javascript">
|
1160 |
+
//<![CDATA[
|
1161 |
+
jQuery(document).ready( function($) {
|
1162 |
+
$('.postbox h3').click( function() { $($(this).parent().get(0)).toggleClass('closed'); } );
|
1163 |
+
$('.postbox .handlediv').click( function() { $($(this).parent().get(0)).toggleClass('closed'); } );
|
1164 |
+
$('.postbox.close-me').each(function() {
|
1165 |
+
$(this).addClass("closed");
|
1166 |
+
});
|
1167 |
+
});
|
1168 |
+
//]]>
|
1169 |
+
</script>
|
1170 |
+
|
1171 |
</div>
|
1172 |
<?php
|
1173 |
}
|
1174 |
+
|
1175 |
}
|
1176 |
}
|
1177 |
|
1183 |
if ( class_exists('SecureWP') && class_exists('WPlize') && function_exists('is_admin') ) {
|
1184 |
$SecureWP = new SecureWP();
|
1185 |
}
|
1186 |
+
?>
|
uninstall.php
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
if( !defined( 'ABSPATH') && !defined('WP_UNINSTALL_PLUGIN') )
|
2 |
+
exit();
|
3 |
+
|
4 |
+
delete_option( 'secure-wp' );
|