Acunetix Secure WordPress - Version 1.0.1

Version Description

Download this release

Release Info

Developer Bueltge
Plugin Icon wp plugin Acunetix Secure WordPress
Version 1.0.1
Comparing to
See all releases

Version 1.0.1

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_login.css ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ #login_error {
2
+ display: none;
3
+ }
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
inc/WPlize.php ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WPlize [Klasse]
4
+ *
5
+ * DE: Updaten, Setzen, Holen und L&ouml;schen von Optionen in WordPress
6
+ * EN: update, set, get and delete options in WordPress
7
+ *
8
+ * DE:
9
+ * WPlize gruppiert und verwaltet alle Optionen eines Plugins bzw.
10
+ * Themes in einem einzigen Optionsfeld. Die Anzahl der
11
+ * Datenbankabfragen und somit die Ladezeit des Blogs k&ouml;nnen sich
12
+ * sich enorm verringern. WPlize richtet sich an die Entwickler
13
+ * von WordPress-Plugins und -Themes.
14
+ *
15
+ * EN:
16
+ * WPlize regroups and manages all options of a plugin or
17
+ * theme in one option field. The amount of database queries
18
+ * can be reduced and therefore the loading time of blogs
19
+ * can be improved enormously. WPlize is designed for
20
+ * developers of WordPress themes or plugins.
21
+ *
22
+ * @package WPlize.php
23
+ * @author Sergej M&uuml;ller and Frank B&uuml;ltge
24
+ * @since 26.09.2008
25
+ * @change 09.12.2008
26
+ * @access public
27
+ */
28
+
29
+
30
+ class WPlize {
31
+
32
+
33
+ /**
34
+ * WPlize [Konstruktor]
35
+ *
36
+ * DE: Setzt Eigenschafen fest und startet die Initialisierung
37
+ * EN: set properties and start init
38
+ *
39
+ * @package WPlize.php
40
+ * @author Sergej M&uuml;ller
41
+ * @since 26.09.2008
42
+ * @change 03.12.2008
43
+ * @access public
44
+ * @param array $option Title of the multi-option in the DB [optional]
45
+ * @param array $data Array with startvalue [optional]
46
+ */
47
+ function WPlize($option = '', $data = array()) {
48
+ if (empty($option) === true) {
49
+ $this->multi_option = 'WPlize_'. md5(get_bloginfo('home'));
50
+ } else {
51
+ $this->multi_option = $option;
52
+ }
53
+
54
+ if ($data) {
55
+ $this->init_option($data);
56
+ }
57
+ }
58
+
59
+
60
+ /**
61
+ * init_option
62
+ *
63
+ * DE: Initialisiert die Multi-Option in der DB
64
+ * EN: init mulit-option in the db
65
+ *
66
+ * @package WPlize.php
67
+ * @author Sergej M&uuml;ller
68
+ * @since 26.09.2008
69
+ * @change 26.09.2008
70
+ * @access public
71
+ * @param array $data Array with startvalues [optional]
72
+ */
73
+ function init_option($data = array()) {
74
+ add_option($this->multi_option, $data);
75
+ }
76
+
77
+
78
+ /**
79
+ * delete_option
80
+ *
81
+ * DE: Entfernt die Multi-Option aus der DB
82
+ * EN: delete the multi-option of the db
83
+ *
84
+ * @package WPlize.php
85
+ * @author Sergej M&uuml;ller
86
+ * @since 26.09.2008
87
+ * @change 26.09.2008
88
+ * @access public
89
+ */
90
+ function delete_option() {
91
+ delete_option($this->multi_option);
92
+ }
93
+
94
+
95
+ /**
96
+ * get_option
97
+ *
98
+ * DE: Liefert den Wert einer Option
99
+ * EN: get the value to option
100
+ *
101
+ * @package WPlize.php
102
+ * @author Sergej M&uuml;ller
103
+ * @since 26.09.2008
104
+ * @change 26.09.2008
105
+ * @access public
106
+ * @param string $key Title of the option
107
+ * @return mixed Value of the option [false on error]
108
+ */
109
+ function get_option($key) {
110
+ if (empty($key) === true) {
111
+ return false;
112
+ }
113
+
114
+ $data = get_option($this->multi_option);
115
+
116
+ return @$data[$key];
117
+ }
118
+
119
+
120
+ /**
121
+ * update_option
122
+ *
123
+ * DE: Weist den Optionen neue Werte zu
124
+ * EN: Set new options to value
125
+ *
126
+ * @package WPlize.php
127
+ * @author Sergej M&uuml;ller
128
+ * @since 26.09.2008
129
+ * @change 07.12.2008
130
+ * @access public
131
+ * @param mixed $key Title of the option [alternativ Array with optionen]
132
+ * @param string $value Value of the option [optional]
133
+ * @return boolean False on error
134
+ */
135
+ function update_option($key, $value = '') {
136
+ if (empty($key) === true) {
137
+ return false;
138
+ }
139
+
140
+ if (is_array($key) === true) {
141
+ $data = $key;
142
+ } else {
143
+ $data = array($key => $value);
144
+ }
145
+
146
+ if (is_array(get_option($this->multi_option)) === true) {
147
+ $update = array_merge(
148
+ get_option($this->multi_option),
149
+ $data
150
+ );
151
+ } else {
152
+ $update = $data;
153
+ }
154
+
155
+ update_option(
156
+ $this->multi_option,
157
+ $update
158
+ );
159
+ }
160
+ }
161
+ ?>
inc/readme_de.txt ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * WPlize [Klasse]
3
+ *
4
+ * Updaten, Setzen, Holen und Löschen von Optionen in WordPress
5
+ *
6
+ * WPlize gruppiert und verwaltet alle Optionen eines Plugins bzw.
7
+ * Themes in einem einzigen Optionsfeld. Die Anzahl der
8
+ * Datenbankabfragen und somit die Ladezeit des Blogs können sich
9
+ * sich enorm verringern. WPlize richtet sich an die Entwickler
10
+ * von WordPress-Plugins und -Themes.
11
+ *
12
+ * @package WPlize.php
13
+ * @author Sergej Müller und Frank Bültge
14
+ * @since 26.09.2008
15
+ * @change 10.11.2008 15:41:36
16
+ * @access public
17
+ */
18
+
19
+
20
+ /*****************************************************************/
21
+ /* EINBINDEN */
22
+ /*****************************************************************/
23
+
24
+ if ( !class_exists('WPlize') ) {
25
+ require_once('WPlize.php');
26
+ }
27
+
28
+
29
+ /*****************************************************************/
30
+ /* BEISPIELE */
31
+ /*****************************************************************/
32
+
33
+
34
+ /**
35
+ * Multi-Option initialisieren
36
+ *
37
+ * @param string Name der Multi-Option
38
+ * @param array Array mit Anfangswerten [optional]
39
+ */
40
+
41
+ $WPlize = new WPlize(
42
+ 'my_plugin',
43
+ array(
44
+ 'my_key' => 'my_value',
45
+ 'your_key' => 'your_value'
46
+ )
47
+ );
48
+
49
+
50
+ /**
51
+ * Option updaten [Variante 1]
52
+ *
53
+ * @param string Name der Option
54
+ * @param string Wert der Option
55
+ */
56
+
57
+ $WPlize->update_option('my_key', 'simple_value');
58
+
59
+
60
+ /**
61
+ * Option updaten [Variante 2]
62
+ *
63
+ * @param array Array mit Optionspaaren
64
+ */
65
+
66
+ $WPlize->update_option(
67
+ array(
68
+ 'my_key' => 'my_value',
69
+ 'your_key' => 'simple_value'
70
+ )
71
+ );
72
+
73
+
74
+ /**
75
+ * Option auslesen
76
+ *
77
+ * @param string Name der Option
78
+ * @return mixed Wert der Option [false im Fehlerfall]
79
+ */
80
+
81
+ $WPlize->get_option('your_key');
82
+
83
+
84
+ /**
85
+ * Multi-Option entfernen
86
+ */
87
+
88
+ $WPlize->delete_option();
inc/readme_en.txt ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * WPlize [class]
3
+ *
4
+ * update, set, get and delete options in WordPress
5
+ *
6
+ * WPlize regroups and manages all options of a plugin or
7
+ * theme in one option field. The amount of database queries
8
+ * can be reduced and therefore the loading time of blogs
9
+ * can be improved enormously. WPlize is designed for
10
+ * developers of WordPress themes or plugins.
11
+ *
12
+ * @package WPlize.php
13
+ * @author Sergej M&uuml;ller and Frank B&uuml;ltge
14
+ * @since 26.09.2008
15
+ * @change 26.09.2008
16
+ * @access public
17
+ */
18
+
19
+
20
+ /*****************************************************************/
21
+ /* EMBEDDING */
22
+ /*****************************************************************/
23
+
24
+ if ( !class_exists('WPlize') ) {
25
+ require_once('WPlize.php');
26
+ }
27
+
28
+
29
+ /*****************************************************************/
30
+ /* EXAMPLE */
31
+ /*****************************************************************/
32
+
33
+
34
+ /**
35
+ * init multi-option
36
+ *
37
+ * @param string Title of the multi-option
38
+ * @param array Array with startvalues [optional]
39
+ */
40
+
41
+ $WPlize = new WPlize(
42
+ 'my_plugin',
43
+ array(
44
+ 'my_key' => 'my_value',
45
+ 'your_key' => 'your_value'
46
+ )
47
+ );
48
+
49
+
50
+ /**
51
+ * update option [alternative 1]
52
+ *
53
+ * @param string Title of the option
54
+ * @param string Value of the option
55
+ */
56
+
57
+ $WPlize->update_option('my_key', 'simple_value');
58
+
59
+
60
+ /**
61
+ * update option [alternative 2]
62
+ *
63
+ * @param array Array with optionscouple
64
+ */
65
+
66
+ $WPlize->update_option(
67
+ array(
68
+ 'my_key' => 'my_value',
69
+ 'your_key' => 'simple_value'
70
+ )
71
+ );
72
+
73
+
74
+ /**
75
+ * read option
76
+ *
77
+ * @param string Name of the option
78
+ * @return mixed Value of the option [false on error]
79
+ */
80
+
81
+ $WPlize->get_option('your_key');
82
+
83
+
84
+ /**
85
+ * delete multi-option
86
+ */
87
+
88
+ $WPlize->delete_option();
js/page.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ require_once('../../../../wp-load.php');
3
+
4
+ header('Content-Type: text/Javascript');
5
+ ?>
6
+
7
+ // JavaScript Document
8
+ jQuery(document).ready( function($) {
9
+ $('.postbox h3, .postbox .handlediv').click(
10
+ function() {
11
+ var postbox = $($(this).parent().get(0));
12
+ postbox.toggleClass('closed');
13
+ var closed = postbox.is('.closed');
14
+ $.post(
15
+ '<?php echo get_bloginfo("wpurl") ?>/wp-admin/admin-ajax.php', {
16
+ 'action':'set_toggle_status',
17
+ 'set_toggle_id':postbox.attr('id'),
18
+ 'set_toggle_status': (closed ? 'closed' : '')
19
+ }
20
+ );
21
+ }
22
+ );
23
+ });
js/page_s27.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ });
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&lsquo;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&lsquo;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&lsquo;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>&lt;!-- wpscanner --&gt;</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>&lt;!-- wpscanner --&gt;</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&lsquo;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&lsquo;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&lsquo;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>&lt;!-- wpscanner --&gt;</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>&lt;!-- wpscanner --&gt;</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&lsquo;t have the privileges to do this!"
61
+ msgstr "Indstillingerne blev ikke opdateret &ndash; 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&lsquo;t have the privileges to do this!"
65
+ msgstr "Posterne blev ikke slettet &ndash; 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 &ndash; 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&lsquo;t have the privileges to do this!"
79
+ msgstr "Posterne blev ikke slettet &ndash; 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>&lt;!-- wpscanner --&gt;</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>&lt;!-- wpscanner --&gt;</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 &ndash; 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 &ndash; 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 &ndash; 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 ADDED
Binary file
languages/secure_wp-de_DE.po ADDED
@@ -0,0 +1,445 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
11
+ "X-Poedit-SourceCharset: utf-8\n"
12
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "X-Textdomain-Support: yes\n"
15
+ "Language-Team: \n"
16
+ "Last-Translator: Frank Bueltge <frank@bueltge.de>\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: secure-wordpress.php:13
20
+ msgid "Little basics for secure your WordPress-installation."
21
+ msgstr "Kleine Grundlagen für die Sicherheit deiner WordPress Installation"
22
+
23
+ #: secure-wordpress.php:364
24
+ msgid "Settings"
25
+ msgstr "Einstellungen"
26
+
27
+ # @ secure_wp
28
+ #: secure-wordpress.php:393
29
+ #: secure-wordpress.php:440
30
+ msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
31
+ msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Dokumentation</a>"
32
+
33
+ # @ secure_wp
34
+ #: secure-wordpress.php:416
35
+ msgid "Options update."
36
+ msgstr "Einstellungen aktualisiert."
37
+
38
+ # @ secure_wp
39
+ #: secure-wordpress.php:418
40
+ msgid "All entries in the database was cleared. Now deactivate this plugin."
41
+ msgstr "Alle Einträge in der Datenbank wurden entfernt. Jetzt deaktiviere das Plugin."
42
+
43
+ # @ secure_wp
44
+ #: secure-wordpress.php:432
45
+ #: secure-wordpress.php:443
46
+ msgid "Secure WP"
47
+ msgstr "Secure WP"
48
+
49
+ # @ secure_wp
50
+ #: secure-wordpress.php:439
51
+ #: secure-wordpress.php:738
52
+ msgid "Secure WordPress"
53
+ msgstr "Secure WordPress"
54
+
55
+ #: secure-wordpress.php:463
56
+ msgid "Version"
57
+ msgstr "Version"
58
+
59
+ # @ secure_wp
60
+ #: secure-wordpress.php:463
61
+ msgid "History"
62
+ msgstr "Historie"
63
+
64
+ #: secure-wordpress.php:463
65
+ msgid "Author"
66
+ msgstr "Autor"
67
+
68
+ # @ secure_wp
69
+ #: secure-wordpress.php:664
70
+ msgid "Options not updated - you don&lsquo;t have the privileges to do this!"
71
+ msgstr "Einstellungen wurden nicht aktualisiert - du hast nicht genügend Rechte dazu!"
72
+
73
+ # @ secure_wp
74
+ #: secure-wordpress.php:684
75
+ msgid "Entries were not deleted - you don&lsquo;t have the privileges to do this!"
76
+ msgstr "Einstellungen wurden nicht entfernt - du hast nicht genügend Rechte dazu! "
77
+
78
+ # @ secure_wp
79
+ #: secure-wordpress.php:692
80
+ msgid "Entries were not deleted - check the checkbox!"
81
+ msgstr "Einstellungen wurden nicht entfernt - prüfe dich Checkbox! "
82
+
83
+ # @ secure_wp
84
+ #: secure-wordpress.php:712
85
+ msgid "All entries in the database were cleared."
86
+ msgstr "Alle Einträge in der Datenbank wurden entfernt."
87
+
88
+ # @ secure_wp
89
+ #: secure-wordpress.php:716
90
+ msgid "Entries were not deleted - check the checkbox or you don&lsquo;t have the privileges to do this!"
91
+ msgstr "Einstellungen wurden nicht entfernt - prüfe dich Checkbox oder du hast nicht genügend Rechte dazu! "
92
+
93
+ #: secure-wordpress.php:743
94
+ #: secure-wordpress.php:878
95
+ #: secure-wordpress.php:988
96
+ #: secure-wordpress.php:1101
97
+ #: secure-wordpress.php:1121
98
+ msgid "Click to toggle"
99
+ msgstr "Zum umschalten klicken"
100
+
101
+ # @ secure_wp
102
+ #: secure-wordpress.php:744
103
+ msgid "Configuration"
104
+ msgstr "Einstellungen"
105
+
106
+ # @ secure_wp
107
+ #: secure-wordpress.php:754
108
+ msgid "Error-Messages"
109
+ msgstr "Fehler-Meldungen"
110
+
111
+ # @ secure_wp
112
+ #: secure-wordpress.php:758
113
+ msgid "Deactivates tooltip and error message at login of WordPress"
114
+ msgstr "Deaktivert die Hinweis- und Fehlermeldung beim Login von WordPress"
115
+
116
+ # @ secure_wp
117
+ #: secure-wordpress.php:764
118
+ msgid "WordPress Version"
119
+ msgstr "WordPress Version"
120
+
121
+ # @ secure_wp
122
+ #: secure-wordpress.php:768
123
+ msgid "Removes version of WordPress in all areas, including feed, not in admin"
124
+ msgstr "Entfernen der Version von WordPress in allen Bereichen, inkl. Feed, nicht im Admin-Bereich"
125
+
126
+ # @ secure_wp
127
+ #: secure-wordpress.php:774
128
+ msgid "WordPress Version in Backend"
129
+ msgstr "WordPress Version im Administrationsbereich"
130
+
131
+ # @ secure_wp
132
+ #: secure-wordpress.php:778
133
+ msgid "Removes version of WordPress on admin-area for non-admins. Show WordPress version of your blog only to users with the rights to edit plugins."
134
+ msgstr "Entfernen der Version von WordPress im Admin-Bereich für Nicht-Administratoren. Die WordPress Version deines Blogs wird ausschließlich Nutzern dargestellt, die die Rechte zum Editieren von Plugins haben."
135
+
136
+ # @ secure_wp
137
+ #: secure-wordpress.php:784
138
+ msgid "index.php"
139
+ msgstr "index.php"
140
+
141
+ # @ secure_wp
142
+ #: secure-wordpress.php:788
143
+ msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
144
+ msgstr "hinterlegt eine <code>index.php</code> in <code>/plugins/</code> und <code>/themes/</code> um das Auslesen des Verzeichnis zu vermeiden "
145
+
146
+ # @ secure_wp
147
+ #: secure-wordpress.php:794
148
+ msgid "Really Simple Discovery"
149
+ msgstr "Really Simple Discovery"
150
+
151
+ # @ secure_wp
152
+ #: secure-wordpress.php:798
153
+ msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
154
+ msgstr "Entfernt den link für Really Simple Discovery im head des Frontend"
155
+
156
+ # @ secure_wp
157
+ #: secure-wordpress.php:804
158
+ msgid "Windows Live Writer"
159
+ msgstr "Windows Live Writer"
160
+
161
+ # @ secure_wp
162
+ #: secure-wordpress.php:808
163
+ msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
164
+ msgstr "Entfernt den link für Windows Live Writer im head des Frontend"
165
+
166
+ # @ secure_wp
167
+ #: secure-wordpress.php:814
168
+ msgid "Core Update"
169
+ msgstr "Core Update"
170
+
171
+ # @ secure_wp
172
+ #: secure-wordpress.php:818
173
+ msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
174
+ msgstr "Deaktiviert das Core-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Plugins haben."
175
+
176
+ # @ secure_wp
177
+ #: secure-wordpress.php:824
178
+ msgid "Plugin Update"
179
+ msgstr "Plugin Update"
180
+
181
+ # @ secure_wp
182
+ #: secure-wordpress.php:828
183
+ msgid "Remove the plugin update for non-admins. Show message for a new version of a plugin in the install of your blog only to users with the rights to edit plugins."
184
+ msgstr "Deaktiviert das Plugin-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress zu Plugins wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Plugins haben."
185
+
186
+ # @ secure_wp
187
+ #: secure-wordpress.php:835
188
+ msgid "Theme Update"
189
+ msgstr "Theme Update"
190
+
191
+ # @ secure_wp
192
+ #: secure-wordpress.php:839
193
+ msgid "Remove the theme update for non-admins. Show message for a new version of a theme in the install of your blog only to users with the rights to edit themes."
194
+ msgstr "Deaktiviert das Theme-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress zum Theme wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Themes haben."
195
+
196
+ # @ secure_wp
197
+ #: secure-wordpress.php:846
198
+ msgid "WP Scanner"
199
+ msgstr "WP Scanner"
200
+
201
+ # @ secure_wp
202
+ #: secure-wordpress.php:850
203
+ msgid "WordPress scanner is a free online resource that blog administrators can use to provide a measure of their wordpress security level. To run wp-scanner check this option and add <code>&lt;!-- wpscanner --&gt;</code> to your current WordPress template. After this go to <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> and scan your site."
204
+ msgstr "Der WordPress Scanner ist eine freie online Resource für Blog-Administratoren um die Sicherheit der WordPress Installation über das Frontend zu prüfen. Um den Scanner zu nutzen, aktivere die Checkbox und es wird der String <code>&lt;!-- wpscanner --&gt;</code> im aktuell verwendeten Theme eingefügt. Danach besuche den Online-Scanner unter <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> und prüfe deine Site."
205
+
206
+ # @ secure_wp
207
+ #: secure-wordpress.php:856
208
+ msgid "Block bad queries"
209
+ msgstr "Blocke negative Abfragen"
210
+
211
+ # @ secure_wp
212
+ #: secure-wordpress.php:860
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_wp
217
+ #: secure-wordpress.php:868
218
+ msgid "Save Changes"
219
+ msgstr "Einstellungen aktualisieren"
220
+
221
+ #: secure-wordpress.php:879
222
+ msgid "Validate your site with a free malware scan from www.sitesecuritymonitor.com"
223
+ msgstr "Überprüfe deine Seite mit einem freien Malware-Scan von www.sitesecuritymonitor.com"
224
+
225
+ #: secure-wordpress.php:882
226
+ msgid "Take us for a Test Drive - Free Scan"
227
+ msgstr "Nutze uns für eine Probefahrt - freier Scan"
228
+
229
+ #: secure-wordpress.php:883
230
+ msgid "We understand you may have questions:"
231
+ msgstr "Wie verstehen, dass du Fragen hast:"
232
+
233
+ #: secure-wordpress.php:884
234
+ msgid "What does this do for me?"
235
+ msgstr "Was bedeutet der Scan für mich?"
236
+
237
+ #: secure-wordpress.php:885
238
+ msgid "Am I really safe? I need to be sure."
239
+ msgstr "Bin ich wirklich sicher? Ich muss sicher sein."
240
+
241
+ #: secure-wordpress.php:886
242
+ msgid "Rest Assured, Site Security Monitor has you covered."
243
+ msgstr "Sei dir sicher, Site Security Monitor ist sicher."
244
+
245
+ #: secure-wordpress.php:888
246
+ msgid "FREE scan looks for malware"
247
+ msgstr "FREIER scan um Malware zu finden"
248
+
249
+ #: secure-wordpress.php:889
250
+ msgid "FREE report of website vulnerabilities found"
251
+ msgstr "FREIE Auswertung der gefundenen Schwachstellen auf einer Webseite"
252
+
253
+ #: secure-wordpress.php:890
254
+ msgid "No setup, tuning and installation on your site - scan begins immediately"
255
+ msgstr "Keine Einrichtung, keine Anpassunge und Installationen auf deiner Site - der Scan kann sofort starten"
256
+
257
+ #: secure-wordpress.php:892
258
+ msgid "We will deliver to you a detailed malware and web vulnerability report - FREE of charge. You are free to use the report to resolve issues, show your boss that you are clean, or show your clients that the site you built is safe!"
259
+ msgstr "Wir liefern einen detaillierten Bericht zu Schwachstellen und Malware (Schadprogrammen) - kostenlos. Du kannst entscheiden, wie du den Bericht verwendest um Probleme zu lösen, es werden Hinweise zum Problem gegeben. Zeigen den anderen, dass die Site sauber und sicher ist."
260
+
261
+ #: secure-wordpress.php:893
262
+ msgid "** Bonus: You will be able to use the Site Security Monitor \"Safe-Seal\" on your site after the scan - this shows the world that you are malware free!"
263
+ msgstr "** Bonus: Du kannst das Site Security Monitor \"Safe-Seal\" in deine Site integrieren - zeige der Welt, dass du frei von Malware bist."
264
+
265
+ #: secure-wordpress.php:895
266
+ msgid "The form"
267
+ msgstr "Das Formular"
268
+
269
+ #: secure-wordpress.php:896
270
+ msgid "Use the follow form or use it on <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">our website</a>."
271
+ msgstr "Nutze das Formular oder gehe direkt über <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">unsere Website</a>."
272
+
273
+ #: secure-wordpress.php:928
274
+ msgid "Full Name"
275
+ msgstr "Name, Vorname"
276
+
277
+ #: secure-wordpress.php:931
278
+ #: secure-wordpress.php:939
279
+ #: secure-wordpress.php:947
280
+ #: secure-wordpress.php:955
281
+ #: secure-wordpress.php:971
282
+ msgid "*required"
283
+ msgstr "*Pflichtfeld"
284
+
285
+ #: secure-wordpress.php:936
286
+ msgid "eMail Adress"
287
+ msgstr "E-Mail Adresse"
288
+
289
+ #: secure-wordpress.php:939
290
+ msgid ", eMail Address must match domain name"
291
+ msgstr ", die E-Mail Adresse muss den Domain-Namen enthalten"
292
+
293
+ #: secure-wordpress.php:944
294
+ msgid "Website"
295
+ msgstr "Website"
296
+
297
+ #: secure-wordpress.php:952
298
+ msgid "Phone"
299
+ msgstr "Telefon"
300
+
301
+ #: secure-wordpress.php:960
302
+ msgid "Yes, I need help!"
303
+ msgstr "Ja, ich brauche Hilfe!"
304
+
305
+ #: secure-wordpress.php:963
306
+ msgid "Call me"
307
+ msgstr "Rufe mich an"
308
+
309
+ #: secure-wordpress.php:968
310
+ msgid "Terms and Conditions"
311
+ msgstr "Allgemeine Geschäftsbedingungen"
312
+
313
+ #: secure-wordpress.php:971
314
+ msgid ", I accept"
315
+ msgstr ", ich akzeptiere"
316
+
317
+ #: secure-wordpress.php:978
318
+ msgid "Get my Free Web Scan"
319
+ msgstr "Starte meinen freien Web-Scan"
320
+
321
+ #: secure-wordpress.php:989
322
+ msgid "Safe Seal"
323
+ msgstr "Safe Seal"
324
+
325
+ #: secure-wordpress.php:992
326
+ 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>"
327
+ msgstr "Vielen Dank für das Nutzen unseres Scans. Es steht dir frei einen Hinweis auf den Scan in deiner Site zu hinterlegen (Ausgabe als HTML für einfaches Kopieren/Einfügen). Das Zeichen gibt dir keine Sicherheit - es ist einfach die Basis der WordPress Sicherheit - es ist ein Beitrag zu unseren eigenen Erfahrungen und der, der Community.<br/>Möchtestdu regelmäßig einen Scan erhalten, dann besuche <a href=\"http://www.sitesecuritymonitor.com/wordpress-secure-plugin/\">unsere Site für weitere Informationen</a>."
328
+
329
+ #: secure-wordpress.php:1020
330
+ msgid "Color"
331
+ msgstr "Farbe"
332
+
333
+ #: secure-wordpress.php:1024
334
+ msgid "Green"
335
+ msgstr "Grün"
336
+
337
+ #: secure-wordpress.php:1025
338
+ msgid "Blue"
339
+ msgstr "Blau"
340
+
341
+ #: secure-wordpress.php:1026
342
+ msgid "Red"
343
+ msgstr "Rot"
344
+
345
+ #: secure-wordpress.php:1027
346
+ msgid "Brown"
347
+ msgstr "Braun"
348
+
349
+ #: secure-wordpress.php:1028
350
+ msgid "Gray"
351
+ msgstr "Grau"
352
+
353
+ #: secure-wordpress.php:1037
354
+ msgid "Text"
355
+ msgstr "Text"
356
+
357
+ #: secure-wordpress.php:1041
358
+ msgid "Protected"
359
+ msgstr "Geschützt"
360
+
361
+ # @ secure_wp
362
+ #: secure-wordpress.php:1042
363
+ msgid "Secured"
364
+ msgstr "Sicher"
365
+
366
+ # @ secure_wp
367
+ #: secure-wordpress.php:1043
368
+ msgid "Scanned"
369
+ msgstr "Gescannt"
370
+
371
+ #: secure-wordpress.php:1044
372
+ msgid "Protected by"
373
+ msgstr "Geschützt durch"
374
+
375
+ #: secure-wordpress.php:1050
376
+ msgid "Orientation"
377
+ msgstr "Orientierung"
378
+
379
+ #: secure-wordpress.php:1054
380
+ msgid "Horizontal"
381
+ msgstr "Horizontal"
382
+
383
+ #: secure-wordpress.php:1055
384
+ msgid "Vertical"
385
+ msgstr "Vertical"
386
+
387
+ #: secure-wordpress.php:1061
388
+ msgid "Image border"
389
+ msgstr "Bilder-Rahmen"
390
+
391
+ #: secure-wordpress.php:1069
392
+ msgid "Language"
393
+ msgstr "Sprache"
394
+
395
+ #: secure-wordpress.php:1073
396
+ msgid "English (US)"
397
+ msgstr "Englisch (US)"
398
+
399
+ #: secure-wordpress.php:1074
400
+ msgid "English (UK)"
401
+ msgstr "Englisch (UK)"
402
+
403
+ #: secure-wordpress.php:1075
404
+ msgid "Spanish"
405
+ msgstr "Spanisch"
406
+
407
+ #: secure-wordpress.php:1076
408
+ msgid "German"
409
+ msgstr "Deutsch"
410
+
411
+ #: secure-wordpress.php:1077
412
+ msgid "Italian"
413
+ msgstr "Italienisch"
414
+
415
+ #: secure-wordpress.php:1078
416
+ msgid "Japanese"
417
+ msgstr "Japanisch"
418
+
419
+ #: secure-wordpress.php:1079
420
+ msgid "Chinese (Simplified)"
421
+ msgstr "Chinesisch (Einfach)"
422
+
423
+ #: secure-wordpress.php:1080
424
+ msgid "Chinese (Traditional)"
425
+ msgstr "Chinesisch (Traditonell)"
426
+
427
+ #: secure-wordpress.php:1089
428
+ msgid "Here is your generated code. Place it on your website (as html widget) to show that you are protected."
429
+ msgstr "Hier ist der erstellte Code, platziere in ihn in deiner Site (als HTML Widget) um zu zeigen, dass du geschützt bist."
430
+
431
+ # @ secure_wp
432
+ #: secure-wordpress.php:1102
433
+ msgid "Clear Options"
434
+ msgstr "Einstellungen löschen"
435
+
436
+ # @ secure_wp
437
+ #: secure-wordpress.php:1105
438
+ msgid "Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created."
439
+ msgstr "Nutze diese Möglichkeit um alle Einstellungen des Plugins in der Datenbank zu löschen. Das Plugin löscht ebenfalls alle Einstellungen wenn du es deaktivierst oder aus dem Backend heraus entfernst."
440
+
441
+ # @ secure_wp
442
+ #: secure-wordpress.php:1110
443
+ msgid "Delete Options"
444
+ msgstr "Einstellungen löschen"
445
+
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&lsquo;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&lsquo;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&lsquo;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>&lt;!-- wpscanner --&gt;</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-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&lsquo;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&lsquo;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&lsquo;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>&lt;!-- wpscanner --&gt;</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>&lt;!-- wpscanner --&gt;</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 ADDED
Binary file
languages/secure_wp-hu_HU.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-06-22 14:29+0100\n"
7
+ "Last-Translator: Körmendi Péter <peter@seo-hungary.com>\n"
8
+ "Language-Team: Körmendi Péter <peter@seo-hungary.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: \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&lsquo;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&lsquo;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&lsquo;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>&lt;!-- wpscanner --&gt;</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>&lt;!-- wpscanner --&gt;</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 ADDED
Binary file
languages/secure_wp-it_IT.po ADDED
@@ -0,0 +1,248 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Secure WordPress in italiano\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-06-22 12:29+0100\n"
6
+ "PO-Revision-Date: 2010-05-07 22:13+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;__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: D:/WP-Plugins/secure-wordpress/trunk\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: secure-wordpress.php:337
22
+ msgid "Settings"
23
+ msgstr "Impostazioni"
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/\">Documentazione</a>"
30
+
31
+ # @ secure_wp
32
+ #: secure-wordpress.php:389
33
+ msgid "Options update."
34
+ msgstr "Le opzioni sono state aggiornate."
35
+
36
+ # @ secure_wp
37
+ #: secure-wordpress.php:391
38
+ msgid "All entries in the database was cleared. Now deactivate this plugin."
39
+ msgstr "Sono state cancellate tutte le informazioni contenute nel database. Ora puoi disattivare il plugin."
40
+
41
+ # @ secure_wp
42
+ #: secure-wordpress.php: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 "Versione"
56
+
57
+ # @ secure_wp
58
+ #: secure-wordpress.php:436
59
+ msgid "History"
60
+ msgstr "Storico"
61
+
62
+ #: secure-wordpress.php:436
63
+ msgid "Author"
64
+ msgstr "Autore"
65
+
66
+ # @ secure_wp
67
+ #: secure-wordpress.php:630
68
+ msgid "Options not updated - you don&lsquo;t have the privileges to do this!"
69
+ msgstr "Le opzioni non sono state aggiornate - non hai i permessi per poter operare queste modifiche!"
70
+
71
+ # @ secure_wp
72
+ #: secure-wordpress.php:650
73
+ msgid "Entries were not deleted - you don&lsquo;t have the privileges to do this!"
74
+ msgstr "Le informazioni non sono state cancellate - non hai i permessi per poter operare queste modifiche!"
75
+
76
+ # @ secure_wp
77
+ #: secure-wordpress.php:658
78
+ msgid "Entries were not deleted - check the checkbox!"
79
+ msgstr "Le informazioni non sono state cancellate - verifica la casella di selezione!"
80
+
81
+ # @ secure_wp
82
+ #: secure-wordpress.php:678
83
+ msgid "All entries in the database were cleared."
84
+ msgstr "Sono state cancellate tutte le informazioni contenute nel database."
85
+
86
+ # @ secure_wp
87
+ #: secure-wordpress.php:682
88
+ msgid "Entries were not deleted - check the checkbox or you don&lsquo;t have the privileges to do this!"
89
+ msgstr "Le informazioni non sono state cancellate - verifica la casella di selezione oppure potresti non avere i permessi per poter operare queste modifiche!"
90
+
91
+ #: secure-wordpress.php:709
92
+ #: secure-wordpress.php:844
93
+ #: secure-wordpress.php:864
94
+ msgid "Click to toggle"
95
+ msgstr "Clicca per commutare"
96
+
97
+ # @ secure_wp
98
+ #: secure-wordpress.php:710
99
+ msgid "Configuration"
100
+ msgstr "Configurazione"
101
+
102
+ # @ secure_wp
103
+ #: secure-wordpress.php:720
104
+ msgid "Error-Messages"
105
+ msgstr "Messaggi di errore"
106
+
107
+ # @ secure_wp
108
+ #: secure-wordpress.php:730
109
+ msgid "WordPress Version"
110
+ msgstr "Versione WordPress"
111
+
112
+ # @ secure_wp
113
+ #: secure-wordpress.php:734
114
+ msgid "Removes version of WordPress in all areas, including feed, not in admin"
115
+ msgstr "Rimuove da tutte le aree la versione di WordPress in uso, inclusi i feed: non in amministrazione"
116
+
117
+ # @ secure_wp
118
+ #: secure-wordpress.php:760
119
+ msgid "Really Simple Discovery"
120
+ msgstr "Really Simple Discovery"
121
+
122
+ # @ secure_wp
123
+ #: secure-wordpress.php:764
124
+ msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
125
+ msgstr "Rimuovi il link Really Simple Discovery in <code>wp_head</code> nel frontend"
126
+
127
+ # @ secure_wp
128
+ #: secure-wordpress.php:770
129
+ msgid "Windows Live Writer"
130
+ msgstr "Windows Live Writer"
131
+
132
+ # @ secure_wp
133
+ #: secure-wordpress.php:774
134
+ msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
135
+ msgstr "Rimuovi il link Windows Live Writer in <code>wp_head</code> nel frontend"
136
+
137
+ # @ secure_wp
138
+ #: secure-wordpress.php:780
139
+ msgid "Core Update"
140
+ msgstr "Aggiornamento core"
141
+
142
+ # @ secure_wp
143
+ #: secure-wordpress.php:784
144
+ msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
145
+ msgstr "Rimuovi gli aggiornamenti del core di WordPress per gli utenti che non sono amministratori. Mostra il messaggio di notifica per una nuova versione di WordPress solamente per gli utenti che possono effettuare l'aggiornamento."
146
+
147
+ # @ secure_wp
148
+ #: secure-wordpress.php:790
149
+ msgid "Plugin Update"
150
+ msgstr "Aggiornamento plugin"
151
+
152
+ # @ secure_wp
153
+ #: secure-wordpress.php:794
154
+ msgid "Remove the plugin update for non-admins. Show message for a new version of a plugin in the install of your blog only to users with the rights to edit plugins."
155
+ msgstr "Rimuovi l'aggiornamento del plugin per gli utenti che non sono amministratori. Mostra il messaggio di notifica per una nuova versione di un plugin solamente per gli utenti che hanno i diritti per poter modificare i plugin."
156
+
157
+ # @ secure_wp
158
+ #: secure-wordpress.php:801
159
+ msgid "Theme Update"
160
+ msgstr "Tema Update"
161
+
162
+ # @ secure_wp
163
+ #: secure-wordpress.php:805
164
+ msgid "Remove the theme update for non-admins. Show message for a new version of a theme in the install of your blog only to users with the rights to edit themes."
165
+ msgstr "Rimuovere l'aggiornamento a tema per i non amministratori. Mostra messaggio per una nuova versione di un tema di installazione del tuo blog solo per gli utenti con i diritti per modificare temi."
166
+
167
+ # @ secure_wp
168
+ #: secure-wordpress.php:812
169
+ msgid "WP Scanner"
170
+ msgstr "WP Scanner"
171
+
172
+ # @ secure_wp
173
+ #: secure-wordpress.php:816
174
+ msgid "WordPress scanner is a free online resource that blog administrators can use to provide a measure of their wordpress security level. To run wp-scanner check this option and add <code>&lt;!-- wpscanner --&gt;</code> to your current WordPress template. After this go to <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> and scan your site."
175
+ msgstr "Scanner WordPress è una risorsa online gratuita che gli amministratori del blog possono utilizzare per fornire una misura della loro livello di sicurezza wordpress. Per eseguire wp-scanner attivare questa opzione ed aggiungere <code>&lt;!-- wpscanner --&gt;</ 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."
176
+
177
+ # @ secure_wp
178
+ #: secure-wordpress.php:834
179
+ msgid "Save Changes"
180
+ msgstr "Salva le modifiche"
181
+
182
+ # @ secure_wp
183
+ #: secure-wordpress.php:845
184
+ msgid "Clear Options"
185
+ msgstr "Rimuovi le opzioni"
186
+
187
+ # @ secure_wp
188
+ #: secure-wordpress.php:848
189
+ msgid "Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created."
190
+ msgstr "Clicca su questo pulsante per cancellare le impostazioni di questo plugin. La disattivazione Secure WordPress rimuoverà ogni dato che é stato creato."
191
+
192
+ # @ secure_wp
193
+ #: secure-wordpress.php:853
194
+ msgid "Delete Options"
195
+ msgstr "Opzioni rimozione"
196
+
197
+ # @ secure_wp
198
+ #: secure-wordpress.php:865
199
+ msgid "About the plugin"
200
+ msgstr "Info sul plugin"
201
+
202
+ # @ secure_wp
203
+ #: secure-wordpress.php:878
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 "Per ulteriori informazioni e per poter scaricare la versione aggiornata, visitare la <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">homepage del plugin</a>."
206
+
207
+ # @ secure_wp
208
+ #: secure-wordpress.php:878
209
+ msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
210
+ msgstr "Cerchi un modo per ringraziarmi? Visita la mia <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
211
+
212
+ # @ secure_wp
213
+ #: secure-wordpress.php:754
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 ""
216
+ "\t\n"
217
+ "crea un <code>index.php</code> file in <code>/plugins/</code> e <code>/themes/</code> per tenerlo da mostrare il tuo annuncio di directory"
218
+
219
+ # @ secure_wp
220
+ #: secure-wordpress.php:740
221
+ msgid "WordPress Version in Backend"
222
+ msgstr "Versione WordPres in Backend"
223
+
224
+ # @ secure_wp
225
+ #: secure-wordpress.php:750
226
+ msgid "index.php"
227
+ msgstr "index.php"
228
+
229
+ # @ secure_wp
230
+ #: secure-wordpress.php:744
231
+ 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."
232
+ 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."
233
+
234
+ # @ secure_wp
235
+ #: secure-wordpress.php:724
236
+ msgid "Deactivates tooltip and error message at login of WordPress"
237
+ msgstr "disattiva i suggerimenti ed il messaggio di errore durante il login a WordPress"
238
+
239
+ # @ secure_wp
240
+ #: secure-wordpress.php:822
241
+ msgid "Block bad queries"
242
+ msgstr "Blocco bad queries"
243
+
244
+ # @ secure_wp
245
+ #: secure-wordpress.php:826
246
+ 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>"
247
+ 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>"
248
+
languages/secure_wp-ja.mo ADDED
Binary file
languages/secure_wp-ja.po ADDED
@@ -0,0 +1,240 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: \n"
7
+ "Last-Translator: Fumito MIZUNO <mizuno@php-web.net>\n"
8
+ "Language-Team: Fumito Mizuno <mizuno@ounziw.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-Language: Japanese\n"
13
+ "X-Poedit-Country: JAPAN\n"
14
+
15
+ #: secure-wordpress.php:337
16
+ msgid "Settings"
17
+ msgstr "設定"
18
+
19
+ # @ secure_wp
20
+ #: secure-wordpress.php:366
21
+ #: secure-wordpress.php:413
22
+ msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
23
+ msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">ドキュメント</a>"
24
+
25
+ # @ secure_wp
26
+ #: secure-wordpress.php:389
27
+ msgid "Options update."
28
+ msgstr "オプションを更新しました。"
29
+
30
+ # @ secure_wp
31
+ #: secure-wordpress.php:391
32
+ msgid "All entries in the database was cleared. Now deactivate this plugin."
33
+ msgstr "データベースの"
34
+
35
+ # @ secure_wp
36
+ #: secure-wordpress.php:405
37
+ #: secure-wordpress.php:416
38
+ msgid "Secure WP"
39
+ msgstr "Secure WP"
40
+
41
+ # @ secure_wp
42
+ #: secure-wordpress.php:412
43
+ #: secure-wordpress.php:704
44
+ msgid "Secure WordPress"
45
+ msgstr "Secure WordPress"
46
+
47
+ #: secure-wordpress.php:436
48
+ msgid "Version"
49
+ msgstr "バージョン"
50
+
51
+ # @ secure_wp
52
+ #: secure-wordpress.php:436
53
+ msgid "History"
54
+ msgstr "履歴"
55
+
56
+ #: secure-wordpress.php:436
57
+ msgid "Author"
58
+ msgstr "作成者"
59
+
60
+ # @ secure_wp
61
+ #: secure-wordpress.php:630
62
+ msgid "Options not updated - you don&lsquo;t have the privileges to do this!"
63
+ msgstr "オプションが更新されませんでした。あなたには権限がありません。"
64
+
65
+ # @ secure_wp
66
+ #: secure-wordpress.php:650
67
+ msgid "Entries were not deleted - you don&lsquo;t have the privileges to do this!"
68
+ msgstr "投稿が削除されませんでした。あなたには権限がありません。"
69
+
70
+ # @ secure_wp
71
+ #: secure-wordpress.php:658
72
+ msgid "Entries were not deleted - check the checkbox!"
73
+ msgstr "投稿が削除されませんでした。チェックボックスを確かめてください。"
74
+
75
+ # @ secure_wp
76
+ #: secure-wordpress.php:678
77
+ msgid "All entries in the database were cleared."
78
+ msgstr "データベースの全投稿が削除されました。"
79
+
80
+ # @ secure_wp
81
+ #: secure-wordpress.php:682
82
+ msgid "Entries were not deleted - check the checkbox or you don&lsquo;t have the privileges to do this!"
83
+ msgstr "投稿が削除されませんでした。チェックボックスにチェックしていないか、あるいはあなたには権限がありません。"
84
+
85
+ #: secure-wordpress.php:709
86
+ #: secure-wordpress.php:844
87
+ #: secure-wordpress.php:864
88
+ msgid "Click to toggle"
89
+ msgstr "クリックして切り替える"
90
+
91
+ # @ secure_wp
92
+ #: secure-wordpress.php:710
93
+ msgid "Configuration"
94
+ msgstr "設定"
95
+
96
+ # @ secure_wp
97
+ #: secure-wordpress.php:720
98
+ msgid "Error-Messages"
99
+ msgstr "エラーメッセージ"
100
+
101
+ # @ secure_wp
102
+ #: secure-wordpress.php:730
103
+ msgid "WordPress Version"
104
+ msgstr "WordPress バージョン"
105
+
106
+ # @ secure_wp
107
+ #: secure-wordpress.php:734
108
+ msgid "Removes version of WordPress in all areas, including feed, not in admin"
109
+ msgstr "WordPress バージョンを削除します。(フィードも対象。管理画面を除く)"
110
+
111
+ # @ secure_wp
112
+ #: secure-wordpress.php:760
113
+ msgid "Really Simple Discovery"
114
+ msgstr "Really Simple Discovery"
115
+
116
+ # @ secure_wp
117
+ #: secure-wordpress.php:764
118
+ msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
119
+ msgstr "フロントエンドの <code>wp_head</code> の Really Simple Discovery リンクを削除します。"
120
+
121
+ # @ secure_wp
122
+ #: secure-wordpress.php:770
123
+ msgid "Windows Live Writer"
124
+ msgstr "Windows Live Writer"
125
+
126
+ # @ secure_wp
127
+ #: secure-wordpress.php:774
128
+ msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
129
+ msgstr "フロントエンドの <code>wp_head</code> の Windows Live Writer リンクを削除します。"
130
+
131
+ # @ secure_wp
132
+ #: secure-wordpress.php:780
133
+ msgid "Core Update"
134
+ msgstr "コア更新"
135
+
136
+ # @ secure_wp
137
+ #: secure-wordpress.php:784
138
+ msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
139
+ msgstr "管理者以外は WordPress コア更新通知を削除します。更新する権限のあるユーザーにのみ新バージョンを通知します。"
140
+
141
+ # @ secure_wp
142
+ #: secure-wordpress.php:790
143
+ msgid "Plugin Update"
144
+ msgstr "プラグイン更新"
145
+
146
+ # @ secure_wp
147
+ #: secure-wordpress.php:794
148
+ 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."
149
+ msgstr "管理者以外はプラグイン更新通知を削除します。プラグインを編集する権限のあるユーザーにのみ、プラグインの新バージョンを通知します。"
150
+
151
+ # @ secure_wp
152
+ #: secure-wordpress.php:801
153
+ msgid "Theme Update"
154
+ msgstr "テーマ更新"
155
+
156
+ # @ secure_wp
157
+ #: secure-wordpress.php:805
158
+ 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."
159
+ msgstr "管理者以外はテーマ更新通知を削除します。テーマを編集する権限のあるユーザーにのみ新バージョンを通知します。"
160
+
161
+ # @ secure_wp
162
+ #: secure-wordpress.php:812
163
+ msgid "WP Scanner"
164
+ msgstr "WP Scanner"
165
+
166
+ # @ secure_wp
167
+ #: secure-wordpress.php:816
168
+ 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>&lt;!-- wpscanner --&gt;</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."
169
+ msgstr "WordPress scanner は、ブログ管理者が wordpress のセキュリティレベルの測定に使用できるオンラインリソースです。wp-scanner を実行するには、このオプションをチェックし、現在使用しているテンプレートに、<code>&lt;!-- wpscanner --&gt;</code> を追加してください。それから、<a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> へ行き、サイトをスキャンしてください。"
170
+
171
+ # @ secure_wp
172
+ #: secure-wordpress.php:834
173
+ msgid "Save Changes"
174
+ msgstr "変更を保存"
175
+
176
+ # @ secure_wp
177
+ #: secure-wordpress.php:845
178
+ msgid "Clear Options"
179
+ msgstr "オプションをクリア"
180
+
181
+ # @ secure_wp
182
+ #: secure-wordpress.php:848
183
+ msgid "Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created."
184
+ msgstr "このボタンをクリックすると、本プラグインの設定を削除します。Secure WordPress を無効にすると、今までに作成した全てのデータを削除します。"
185
+
186
+ # @ secure_wp
187
+ #: secure-wordpress.php:853
188
+ msgid "Delete Options"
189
+ msgstr "オプションを削除"
190
+
191
+ # @ secure_wp
192
+ #: secure-wordpress.php:865
193
+ msgid "About the plugin"
194
+ msgstr "本プラグインについて"
195
+
196
+ # @ secure_wp
197
+ #: secure-wordpress.php:878
198
+ 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."
199
+ msgstr "詳細: 詳細情報あるいはプラグインの最新版の入手は、<a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">plugin homepage</a> を訪問してください。"
200
+
201
+ # @ secure_wp
202
+ #: secure-wordpress.php:878
203
+ msgid "You want to thank me? Visit my <a href=\"http://bueltge.de/wunschliste/\">wishlist</a>."
204
+ msgstr "お礼がしたいですか? <a href=\"http://bueltge.de/wunschliste/\">wishlist</a> をご覧ください。"
205
+
206
+ # @ secure_wp
207
+ #: secure-wordpress.php:754
208
+ msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
209
+ msgstr "<code>/plugins/</code> と <code>/themes/</code> に <code>index.php</code> ファイルを作成し、ディレクトリ一覧を表示しないようにします。"
210
+
211
+ # @ secure_wp
212
+ #: secure-wordpress.php:740
213
+ msgid "WordPress Version in Backend"
214
+ msgstr "バックエンドの WordPress バージョン"
215
+
216
+ # @ secure_wp
217
+ #: secure-wordpress.php:750
218
+ msgid "index.php"
219
+ msgstr "index.php"
220
+
221
+ # @ secure_wp
222
+ #: secure-wordpress.php:744
223
+ 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."
224
+ msgstr "管理者以外は管理画面で WordPress バージョンを削除します。プラグインを編集する権限のあるユーザーにのみ WordPress バージョンを表示します。"
225
+
226
+ # @ secure_wp
227
+ #: secure-wordpress.php:724
228
+ msgid "Deactivates tooltip and error message at login of WordPress"
229
+ msgstr "WordPress ログイン時のツールチップとエラーメッセージを無効にします。"
230
+
231
+ # @ secure_wp
232
+ #: secure-wordpress.php:822
233
+ msgid "Block bad queries"
234
+ msgstr "悪意のあるクエリをブロック"
235
+
236
+ # @ secure_wp
237
+ #: secure-wordpress.php:826
238
+ 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>"
239
+ msgstr "悪意のある 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> をごらんください。"
240
+
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&lsquo;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&lsquo;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&lsquo;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>&lt;!-- wpscanner --&gt;</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>&lt;!-- wpscanner --&gt;</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 ADDED
Binary file
languages/secure_wp-pl_PL.po ADDED
@@ -0,0 +1,237 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Secure WordPress 0.3.6 po polsku\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: Michał Maciejewski <admin@inwit.pl>\n"
8
+ "Language-Team: Galareta 1 Man Band <admin@inwit.pl>\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: Polish\n"
14
+ "X-Poedit-Country: POLAND\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 "Ustawienia"
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/\">Dokumentacja</a>"
31
+
32
+ #: secure-wordpress.php:382
33
+ #@ secure_wp
34
+ msgid "Options update."
35
+ msgstr "Zaktualizowano ustawienia."
36
+
37
+ #: secure-wordpress.php:384
38
+ #@ secure_wp
39
+ msgid "All entries in the database was cleared. Now deactivate this plugin."
40
+ msgstr "Wszystkie wpisy wtyczki Secure WP w bazie danych zostały usunięte. Możesz teraz wyłączyć wtyczkę."
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 "Ustawienia Secure WordPress"
53
+
54
+ #: secure-wordpress.php:425
55
+ msgid "Version"
56
+ msgstr "Wersja"
57
+
58
+ #: secure-wordpress.php:425
59
+ #@ secure_wp
60
+ msgid "History"
61
+ msgstr "Historia"
62
+
63
+ #: secure-wordpress.php:425
64
+ msgid "Author"
65
+ msgstr "Autor"
66
+
67
+ #: secure-wordpress.php:568
68
+ #@ secure_wp
69
+ msgid "Options not update - you don&lsquo;t have the privilidges to do this!"
70
+ msgstr "Ustawienia nie zostały zaktualizowane - nie masz odpowiednich uprawnień do tej operacji!"
71
+
72
+ #: secure-wordpress.php:588
73
+ #@ secure_wp
74
+ msgid "Entries was not delleted - you don&lsquo;t have the privilidges to do this!"
75
+ msgstr "Ustawienia nie zostały skasowane - nie masz odpowiednich uprawnień do tej operacji!"
76
+
77
+ #: secure-wordpress.php:596
78
+ #@ secure_wp
79
+ msgid "Entries was not delleted - check the checkbox!"
80
+ msgstr "Ustawienia nie zostały skasowane - musisz najpierw kliknąć kratkę obok klawisza <em>Wyczyść wszystko</em> !"
81
+
82
+ #: secure-wordpress.php:616
83
+ #@ secure_wp
84
+ msgid "All entries in the database was cleared."
85
+ msgstr "Wszystkie wpisy wtyczki Secure WP w bazie danych zostały usunięte."
86
+
87
+ #: secure-wordpress.php:620
88
+ #@ secure_wp
89
+ msgid "Entries was not delleted - check the checkbox or you don&lsquo;t have the privilidges to do this!"
90
+ msgstr "Ustawienia nie zostały skasowane - nie zaznaczona kratka obok klawisza <em>Wyczyść wszystko</em> lub nie masz uprawnień do tej operacji!"
91
+
92
+ #: secure-wordpress.php:646
93
+ #: secure-wordpress.php:771
94
+ #: secure-wordpress.php:791
95
+ msgid "Click to toggle"
96
+ msgstr "Kliknij żeby przełączyć"
97
+
98
+ #: secure-wordpress.php:647
99
+ #@ secure_wp
100
+ msgid "Configuration"
101
+ msgstr "Konfiguracja"
102
+
103
+ #: secure-wordpress.php:657
104
+ #@ secure_wp
105
+ msgid "Error-Messages"
106
+ msgstr "Komunikaty błędów logowania"
107
+
108
+ #: secure-wordpress.php:661
109
+ #@ secure_wp
110
+ msgid "deactivates tooltip and error message at login of WordPress"
111
+ msgstr "- ukrywa podpowiedzi i komunikaty błędów na stronie logowania do WordPressa."
112
+
113
+ #: secure-wordpress.php:667
114
+ #@ secure_wp
115
+ msgid "WordPress Version"
116
+ msgstr "Wersja WordPressa"
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 "- usuwa wszędzie informację o wersji WordPressa, włącznie z feed. Nie dotyczy Administratorów."
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 "- usuwa link do Really Simple Discovery z górnego paska <code>wp_head</code> panelu administracyjnego."
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 "- usuwa link do Windows Live Writer z górnego paska <code>wp_head</code> panelu administracyjnego."
142
+
143
+ #: secure-wordpress.php:717
144
+ #@ secure_wp
145
+ msgid "Core Update"
146
+ msgstr "Aktualizacja WordPressa"
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 "- usuwa możliwość aktualizacji WordPressa przez osoby o uprawnieniach niższych niż Administrator. Pokazuje komunikat o nowej wersji WordPressa tylko osobom z uprawnieniami do aktualizacji."
152
+
153
+ #: secure-wordpress.php:727
154
+ #@ secure_wp
155
+ msgid "Plugin Update"
156
+ msgstr "Aktualizacja wtyczek"
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 "- usuwa możliwość aktualizacji wtyczek przez osoby o uprawnieniach niższych niż Administrator. Pokazuje komunikaty o nowych wersjach wtyczek tylko osobom z uprawnieniami do edycji wtyczek."
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>&lt;!-- wpscanner --&gt;</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 " - umożliwia korzystanie z narzędzia WordPress Scanner. Jest to darmowe rozwiązanie, działające w trybie on-line, które pozwala administratorom określić poziom zabezpieczenia instalacji WordPressa. Aby móc skorzystać z WP Scannera zaznacz tę opcję oraz dopisz kod: <code>&lt;!-- wpscanner --&gt;</code> do któregoś z plików używanego przez Ciebie motywu. Następnie odwiedź <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> żeby przeskanować swój blog/stronę."
172
+
173
+ #: secure-wordpress.php:761
174
+ #@ secure_wp
175
+ msgid "Save Changes"
176
+ msgstr "Zapisz zmiany"
177
+
178
+ #: secure-wordpress.php:772
179
+ #@ secure_wp
180
+ msgid "Clear Options"
181
+ msgstr "Opcje deinstalacji"
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 "Kliknij poniższy klawisz, aby usunąć z bazy danych wszystkie ustawienia wtyczki. Deaktywacja wtyczki Secure WordPress kasuje wszystkie utworzone przez nią dane."
187
+
188
+ #: secure-wordpress.php:780
189
+ #@ secure_wp
190
+ msgid "Delete Options"
191
+ msgstr "Wyczyść wszystko"
192
+
193
+ #: secure-wordpress.php:792
194
+ #@ secure_wp
195
+ msgid "About the plugin"
196
+ msgstr "O wtyczce"
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 "Informacje dodatkowe: odwiedź <a href=\"http://bueltge.de/wordpress-login-sicherheit-plugin/652/\">stronę domową wtyczki</a> żeby zdobyć dodatkowe informacje lub ściągnąć najnowszą wersję wtyczki."
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 "Chcesz mi podziękować? Odwiedź moją <a href='http://bueltge.de/wunschliste/'>listę życzeń</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-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&lsquo;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&lsquo;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&lsquo;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>&lt;!-- wpscanner --&gt;</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>&lt;!-- wpscanner --&gt;</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&lsquo;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&lsquo;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&lsquo;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>&lt;!-- wpscanner --&gt;</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>&lt;!-- wpscanner --&gt;</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&lsquo;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&lsquo;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&lsquo;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>&lt;!-- wpscanner --&gt;</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 ADDED
@@ -0,0 +1,442 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-05-16 12:51+0100\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
11
+ "X-Poedit-SourceCharset: utf-8\n"
12
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "X-Textdomain-Support: yes\n"
15
+ "X-Poedit-SearchPath-0: .\n"
16
+
17
+ #: secure-wordpress.php:13
18
+ msgid "Little basics for secure your WordPress-installation."
19
+ msgstr "Kleine Grundlagen für die Sicherheit deiner WordPress Installation"
20
+
21
+ #: secure-wordpress.php:364
22
+ msgid "Settings"
23
+ msgstr "Einstellungen"
24
+
25
+ # @ secure_wp
26
+ #: secure-wordpress.php:393
27
+ #: secure-wordpress.php:440
28
+ msgid "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Documentation</a>"
29
+ msgstr "<a href=\"http://wordpress.org/extend/plugins/secure-wordpress/\">Dokumentation</a>"
30
+
31
+ # @ secure_wp
32
+ #: secure-wordpress.php:416
33
+ msgid "Options update."
34
+ msgstr "Einstellungen aktualisiert."
35
+
36
+ # @ secure_wp
37
+ #: secure-wordpress.php:418
38
+ msgid "All entries in the database was cleared. Now deactivate this plugin."
39
+ msgstr "Alle Einträge in der Datenbank wurden entfernt. Jetzt deaktiviere das Plugin."
40
+
41
+ # @ secure_wp
42
+ #: secure-wordpress.php:432
43
+ #: secure-wordpress.php:443
44
+ msgid "Secure WP"
45
+ msgstr "Secure WP"
46
+
47
+ # @ secure_wp
48
+ #: secure-wordpress.php:439
49
+ #: secure-wordpress.php:738
50
+ msgid "Secure WordPress"
51
+ msgstr "Secure WordPress"
52
+
53
+ #: secure-wordpress.php:463
54
+ msgid "Version"
55
+ msgstr "Version"
56
+
57
+ # @ secure_wp
58
+ #: secure-wordpress.php:463
59
+ msgid "History"
60
+ msgstr "Historie"
61
+
62
+ #: secure-wordpress.php:463
63
+ msgid "Author"
64
+ msgstr "Autor"
65
+
66
+ # @ secure_wp
67
+ #: secure-wordpress.php:664
68
+ msgid "Options not updated - you don&lsquo;t have the privileges to do this!"
69
+ msgstr "Einstellungen wurden nicht aktualisiert - du hast nicht genügend Rechte dazu!"
70
+
71
+ # @ secure_wp
72
+ #: secure-wordpress.php:684
73
+ msgid "Entries were not deleted - you don&lsquo;t have the privileges to do this!"
74
+ msgstr "Einstellungen wurden nicht entfernt - du hast nicht genügend Rechte dazu! "
75
+
76
+ # @ secure_wp
77
+ #: secure-wordpress.php:692
78
+ msgid "Entries were not deleted - check the checkbox!"
79
+ msgstr "Einstellungen wurden nicht entfernt - prüfe dich Checkbox! "
80
+
81
+ # @ secure_wp
82
+ #: secure-wordpress.php:712
83
+ msgid "All entries in the database were cleared."
84
+ msgstr "Alle Einträge in der Datenbank wurden entfernt."
85
+
86
+ # @ secure_wp
87
+ #: secure-wordpress.php:716
88
+ msgid "Entries were not deleted - check the checkbox or you don&lsquo;t have the privileges to do this!"
89
+ msgstr "Einstellungen wurden nicht entfernt - prüfe dich Checkbox oder du hast nicht genügend Rechte dazu! "
90
+
91
+ #: secure-wordpress.php:743
92
+ #: secure-wordpress.php:878
93
+ #: secure-wordpress.php:988
94
+ #: secure-wordpress.php:1101
95
+ #: secure-wordpress.php:1121
96
+ msgid "Click to toggle"
97
+ msgstr "Zum umschalten klicken"
98
+
99
+ # @ secure_wp
100
+ #: secure-wordpress.php:744
101
+ msgid "Configuration"
102
+ msgstr "Einstellungen"
103
+
104
+ # @ secure_wp
105
+ #: secure-wordpress.php:754
106
+ msgid "Error-Messages"
107
+ msgstr "Fehler-Meldungen"
108
+
109
+ # @ secure_wp
110
+ #: secure-wordpress.php:758
111
+ msgid "Deactivates tooltip and error message at login of WordPress"
112
+ msgstr "Deaktivert die Hinweis- und Fehlermeldung beim Login von WordPress"
113
+
114
+ # @ secure_wp
115
+ #: secure-wordpress.php:764
116
+ msgid "WordPress Version"
117
+ msgstr "WordPress Version"
118
+
119
+ # @ secure_wp
120
+ #: secure-wordpress.php:768
121
+ msgid "Removes version of WordPress in all areas, including feed, not in admin"
122
+ msgstr "Entfernen der Version von WordPress in allen Bereichen, inkl. Feed, nicht im Admin-Bereich"
123
+
124
+ # @ secure_wp
125
+ #: secure-wordpress.php:774
126
+ msgid "WordPress Version in Backend"
127
+ msgstr "WordPress Version im Administrationsbereich"
128
+
129
+ # @ secure_wp
130
+ #: secure-wordpress.php:778
131
+ msgid "Removes version of WordPress on admin-area for non-admins. Show WordPress version of your blog only to users with the rights to edit plugins."
132
+ msgstr "Entfernen der Version von WordPress im Admin-Bereich für Nicht-Administratoren. Die WordPress Version deines Blogs wird ausschließlich Nutzern dargestellt, die die Rechte zum Editieren von Plugins haben."
133
+
134
+ # @ secure_wp
135
+ #: secure-wordpress.php:784
136
+ msgid "index.php"
137
+ msgstr "index.php"
138
+
139
+ # @ secure_wp
140
+ #: secure-wordpress.php:788
141
+ msgid "creates an <code>index.php</code> file in <code>/plugins/</code> and <code>/themes/</code> to keep it from showing your directory listing"
142
+ msgstr "hinterlegt eine <code>index.php</code> in <code>/plugins/</code> und <code>/themes/</code> um das Auslesen des Verzeichnis zu vermeiden "
143
+
144
+ # @ secure_wp
145
+ #: secure-wordpress.php:794
146
+ msgid "Really Simple Discovery"
147
+ msgstr "Really Simple Discovery"
148
+
149
+ # @ secure_wp
150
+ #: secure-wordpress.php:798
151
+ msgid "Remove Really Simple Discovery link in <code>wp_head</code> of the frontend"
152
+ msgstr "Entfernt den link für Really Simple Discovery im head des Frontend"
153
+
154
+ # @ secure_wp
155
+ #: secure-wordpress.php:804
156
+ msgid "Windows Live Writer"
157
+ msgstr "Windows Live Writer"
158
+
159
+ # @ secure_wp
160
+ #: secure-wordpress.php:808
161
+ msgid "Remove Windows Live Writer link in <code>wp_head</code> of the frontend"
162
+ msgstr "Entfernt den link für Windows Live Writer im head des Frontend"
163
+
164
+ # @ secure_wp
165
+ #: secure-wordpress.php:814
166
+ msgid "Core Update"
167
+ msgstr "Core Update"
168
+
169
+ # @ secure_wp
170
+ #: secure-wordpress.php:818
171
+ msgid "Remove WordPress Core update for non-admins. Show message of a new WordPress version only to users with the right to update."
172
+ msgstr "Deaktiviert das Core-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Plugins haben."
173
+
174
+ # @ secure_wp
175
+ #: secure-wordpress.php:824
176
+ msgid "Plugin Update"
177
+ msgstr "Plugin Update"
178
+
179
+ # @ secure_wp
180
+ #: secure-wordpress.php:828
181
+ msgid "Remove the plugin update for non-admins. Show message for a new version of a plugin in the install of your blog only to users with the rights to edit plugins."
182
+ msgstr "Deaktiviert das Plugin-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress zu Plugins wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Plugins haben."
183
+
184
+ # @ secure_wp
185
+ #: secure-wordpress.php:835
186
+ msgid "Theme Update"
187
+ msgstr "Theme Update"
188
+
189
+ # @ secure_wp
190
+ #: secure-wordpress.php:839
191
+ msgid "Remove the theme update for non-admins. Show message for a new version of a theme in the install of your blog only to users with the rights to edit themes."
192
+ msgstr "Deaktiviert das Theme-Update für Nicht-Admin's. Die Mitteilung einer neuen Version von WordPress zum Theme wird ausschließlich Nutzern gezeigt, die die Rechte zum Editieren von Themes haben."
193
+
194
+ # @ secure_wp
195
+ #: secure-wordpress.php:846
196
+ msgid "WP Scanner"
197
+ msgstr "WP Scanner"
198
+
199
+ # @ secure_wp
200
+ #: secure-wordpress.php:850
201
+ msgid "WordPress scanner is a free online resource that blog administrators can use to provide a measure of their wordpress security level. To run wp-scanner check this option and add <code>&lt;!-- wpscanner --&gt;</code> to your current WordPress template. After this go to <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> and scan your site."
202
+ msgstr "Der WordPress Scanner ist eine freie online Resource für Blog-Administratoren um die Sicherheit der WordPress Installation über das Frontend zu prüfen. Um den Scanner zu nutzen, aktivere die Checkbox und es wird der String <code>&lt;!-- wpscanner --&gt;</code> im aktuell verwendeten Theme eingefügt. Danach besuche den Online-Scanner unter <a href=\"http://blogsecurity.net/wpscan\">http://blogsecurity.net/wpscan</a> und prüfe deine Site."
203
+
204
+ # @ secure_wp
205
+ #: secure-wordpress.php:856
206
+ msgid "Block bad queries"
207
+ msgstr "Blocke negative Abfragen"
208
+
209
+ # @ secure_wp
210
+ #: secure-wordpress.php:860
211
+ msgid "Protect WordPress against malicious URL requests, read more information at the <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >post from Jeff Starr</a>"
212
+ msgstr "WordPress gegen bösartige URL-Anforderungen schützen, mehr Informationen gibt es im <a href=\"http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/\" title=\"read this post\" >Beitrag von Jeff Starr</a>"
213
+
214
+ # @ secure_wp
215
+ #: secure-wordpress.php:868
216
+ msgid "Save Changes"
217
+ msgstr "Einstellungen aktualisieren"
218
+
219
+ #: secure-wordpress.php:879
220
+ msgid "Validate your site with a free malware scan from www.sitesecuritymonitor.com"
221
+ msgstr "Überprüfe deine Seite mit einem freien Malware-Scan von www.sitesecuritymonitor.com"
222
+
223
+ #: secure-wordpress.php:882
224
+ msgid "Take us for a Test Drive - Free Scan"
225
+ msgstr "Nutze uns für eine Probefahrt - freier Scan"
226
+
227
+ #: secure-wordpress.php:883
228
+ msgid "We understand you may have questions:"
229
+ msgstr "Wie verstehen, dass du Fragen hast:"
230
+
231
+ #: secure-wordpress.php:884
232
+ msgid "What does this do for me?"
233
+ msgstr "Was bedeutet der Scan für mich?"
234
+
235
+ #: secure-wordpress.php:885
236
+ msgid "Am I really safe? I need to be sure."
237
+ msgstr "Bin ich wirklich sicher? Ich muss sicher sein."
238
+
239
+ #: secure-wordpress.php:886
240
+ msgid "Rest Assured, Site Security Monitor has you covered."
241
+ msgstr "Sei dir sicher, Site Security Monitor ist sicher."
242
+
243
+ #: secure-wordpress.php:888
244
+ msgid "FREE scan looks for malware"
245
+ msgstr "FREIER scan um Malware zu finden"
246
+
247
+ #: secure-wordpress.php:889
248
+ msgid "FREE report of website vulnerabilities found"
249
+ msgstr "FREIE Auswertung der gefundenen Schwachstellen auf einer Webseite"
250
+
251
+ #: secure-wordpress.php:890
252
+ msgid "No setup, tuning and installation on your site - scan begins immediately"
253
+ msgstr "Keine Einrichtung, keine Anpassunge und Installationen auf deiner Site - der Scan kann sofort starten"
254
+
255
+ #: secure-wordpress.php:892
256
+ msgid "We will deliver to you a detailed malware and web vulnerability report - FREE of charge. You are free to use the report to resolve issues, show your boss that you are clean, or show your clients that the site you built is safe!"
257
+ msgstr "Wir liefern einen detaillierten Bericht zu Schwachstellen und Malware (Schadprogrammen) - kostenlos. Du kannst entscheiden, wie du den Bericht verwendest um Probleme zu lösen, es werden Hinweise zum Problem gegeben. Zeigen den anderen, dass die Site sauber und sicher ist."
258
+
259
+ #: secure-wordpress.php:893
260
+ msgid "** Bonus: You will be able to use the Site Security Monitor \"Safe-Seal\" on your site after the scan - this shows the world that you are malware free!"
261
+ msgstr "** Bonus: Du kannst das Site Security Monitor \"Safe-Seal\" in deine Site integrieren - zeige der Welt, dass du frei von Malware bist."
262
+
263
+ #: secure-wordpress.php:895
264
+ msgid "The form"
265
+ msgstr "Das Formular"
266
+
267
+ #: secure-wordpress.php:896
268
+ msgid "Use the follow form or use it on <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">our website</a>."
269
+ msgstr "Nutze das Formular oder gehe direkt über <a href=\"http://www.sitesecuritymonitor.com/free-scan-for-secure-wordpress\">unsere Website</a>."
270
+
271
+ #: secure-wordpress.php:928
272
+ msgid "Full Name"
273
+ msgstr "Name, Vorname"
274
+
275
+ #: secure-wordpress.php:931
276
+ #: secure-wordpress.php:939
277
+ #: secure-wordpress.php:947
278
+ #: secure-wordpress.php:955
279
+ #: secure-wordpress.php:971
280
+ msgid "*required"
281
+ msgstr "*Pflichtfeld"
282
+
283
+ #: secure-wordpress.php:936
284
+ msgid "eMail Adress"
285
+ msgstr "E-Mail Adresse"
286
+
287
+ #: secure-wordpress.php:939
288
+ msgid ", eMail Address must match domain name"
289
+ msgstr ", die E-Mail Adresse muss den Domain-Namen enthalten"
290
+
291
+ #: secure-wordpress.php:944
292
+ msgid "Website"
293
+ msgstr "Website"
294
+
295
+ #: secure-wordpress.php:952
296
+ msgid "Phone"
297
+ msgstr "Telefon"
298
+
299
+ #: secure-wordpress.php:960
300
+ msgid "Yes, I need help!"
301
+ msgstr "Ja, ich brauche Hilfe!"
302
+
303
+ #: secure-wordpress.php:963
304
+ msgid "Call me"
305
+ msgstr "Rufe mich an"
306
+
307
+ #: secure-wordpress.php:968
308
+ msgid "Terms and Conditions"
309
+ msgstr "Allgemeine Geschäftsbedingungen"
310
+
311
+ #: secure-wordpress.php:971
312
+ msgid ", I accept"
313
+ msgstr ", ich akzeptiere"
314
+
315
+ #: secure-wordpress.php:978
316
+ msgid "Get my Free Web Scan"
317
+ msgstr "Starte meinen freien Web-Scan"
318
+
319
+ #: secure-wordpress.php:989
320
+ msgid "Safe Seal"
321
+ msgstr "Safe Seal"
322
+
323
+ #: secure-wordpress.php:992
324
+ 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>"
325
+ msgstr "Vielen Dank für das Nutzen unseres Scans. Es steht dir frei einen Hinweis auf den Scan in deiner Site zu hinterlegen (Ausgabe als HTML für einfaches Kopieren/Einfügen). Das Zeichen gibt dir keine Sicherheit - es ist einfach die Basis der WordPress Sicherheit - es ist ein Beitrag zu unseren eigenen Erfahrungen und der, der Community.<br/>Möchtestdu regelmäßig einen Scan erhalten, dann besuche <a href=\"http://www.sitesecuritymonitor.com/wordpress-secure-plugin/\">unsere Site für weitere Informationen</a>."
326
+
327
+ #: secure-wordpress.php:1020
328
+ msgid "Color"
329
+ msgstr "Farbe"
330
+
331
+ #: secure-wordpress.php:1024
332
+ msgid "Green"
333
+ msgstr "Grün"
334
+
335
+ #: secure-wordpress.php:1025
336
+ msgid "Blue"
337
+ msgstr "Blau"
338
+
339
+ #: secure-wordpress.php:1026
340
+ msgid "Red"
341
+ msgstr "Rot"
342
+
343
+ #: secure-wordpress.php:1027
344
+ msgid "Brown"
345
+ msgstr "Braun"
346
+
347
+ #: secure-wordpress.php:1028
348
+ msgid "Gray"
349
+ msgstr "Grau"
350
+
351
+ #: secure-wordpress.php:1037
352
+ msgid "Text"
353
+ msgstr "Text"
354
+
355
+ #: secure-wordpress.php:1041
356
+ msgid "Protected"
357
+ msgstr "Geschützt"
358
+
359
+ # @ secure_wp
360
+ #: secure-wordpress.php:1042
361
+ msgid "Secured"
362
+ msgstr "Sicher"
363
+
364
+ # @ secure_wp
365
+ #: secure-wordpress.php:1043
366
+ msgid "Scanned"
367
+ msgstr "Gescannt"
368
+
369
+ #: secure-wordpress.php:1044
370
+ msgid "Protected by"
371
+ msgstr "Geschützt durch"
372
+
373
+ #: secure-wordpress.php:1050
374
+ msgid "Orientation"
375
+ msgstr "Orientierung"
376
+
377
+ #: secure-wordpress.php:1054
378
+ msgid "Horizontal"
379
+ msgstr "Horizontal"
380
+
381
+ #: secure-wordpress.php:1055
382
+ msgid "Vertical"
383
+ msgstr "Vertical"
384
+
385
+ #: secure-wordpress.php:1061
386
+ msgid "Image border"
387
+ msgstr "Bilder-Rahmen"
388
+
389
+ #: secure-wordpress.php:1069
390
+ msgid "Language"
391
+ msgstr "Sprache"
392
+
393
+ #: secure-wordpress.php:1073
394
+ msgid "English (US)"
395
+ msgstr "Englisch (US)"
396
+
397
+ #: secure-wordpress.php:1074
398
+ msgid "English (UK)"
399
+ msgstr "Englisch (UK)"
400
+
401
+ #: secure-wordpress.php:1075
402
+ msgid "Spanish"
403
+ msgstr "Spanisch"
404
+
405
+ #: secure-wordpress.php:1076
406
+ msgid "German"
407
+ msgstr "Deutsch"
408
+
409
+ #: secure-wordpress.php:1077
410
+ msgid "Italian"
411
+ msgstr "Italienisch"
412
+
413
+ #: secure-wordpress.php:1078
414
+ msgid "Japanese"
415
+ msgstr "Japanisch"
416
+
417
+ #: secure-wordpress.php:1079
418
+ msgid "Chinese (Simplified)"
419
+ msgstr "Chinesisch (Einfach)"
420
+
421
+ #: secure-wordpress.php:1080
422
+ msgid "Chinese (Traditional)"
423
+ msgstr "Chinesisch (Traditonell)"
424
+
425
+ #: secure-wordpress.php:1089
426
+ msgid "Here is your generated code. Place it on your website (as html widget) to show that you are protected."
427
+ msgstr "Hier ist der erstellte Code, platziere in ihn in deiner Site (als HTML Widget) um zu zeigen, dass du geschützt bist."
428
+
429
+ # @ secure_wp
430
+ #: secure-wordpress.php:1102
431
+ msgid "Clear Options"
432
+ msgstr "Einstellungen löschen"
433
+
434
+ # @ secure_wp
435
+ #: secure-wordpress.php:1105
436
+ msgid "Click this button to delete the settings of this plugin. Deactivating Secure WordPress plugin removes any data that may have been created."
437
+ msgstr "Nutze diese Möglichkeit um alle Einstellungen des Plugins in der Datenbank zu löschen. Das Plugin löscht ebenfalls alle Einstellungen wenn du es deaktivierst oder aus dem Backend heraus entfernst."
438
+
439
+ # @ secure_wp
440
+ #: secure-wordpress.php:1110
441
+ msgid "Delete Options"
442
+ msgstr "Einstellungen löschen"
license.txt ADDED
@@ -0,0 +1,674 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU General Public License is a free, copyleft license for
11
+ software and other kinds of works.
12
+
13
+ The licenses for most software and other practical works are designed
14
+ to take away your freedom to share and change the works. By contrast,
15
+ the GNU General Public License is intended to guarantee your freedom to
16
+ share and change all versions of a program--to make sure it remains free
17
+ software for all its users. We, the Free Software Foundation, use the
18
+ GNU General Public License for most of our software; it applies also to
19
+ any other work released this way by its authors. You can apply it to
20
+ your programs, too.
21
+
22
+ When we speak of free software, we are referring to freedom, not
23
+ price. Our General Public Licenses are designed to make sure that you
24
+ have the freedom to distribute copies of free software (and charge for
25
+ them if you wish), that you receive source code or can get it if you
26
+ want it, that you can change the software or use pieces of it in new
27
+ free programs, and that you know you can do these things.
28
+
29
+ To protect your rights, we need to prevent others from denying you
30
+ these rights or asking you to surrender the rights. Therefore, you have
31
+ certain responsibilities if you distribute copies of the software, or if
32
+ you modify it: responsibilities to respect the freedom of others.
33
+
34
+ For example, if you distribute copies of such a program, whether
35
+ gratis or for a fee, you must pass on to the recipients the same
36
+ freedoms that you received. You must make sure that they, too, receive
37
+ or can get the source code. And you must show them these terms so they
38
+ know their rights.
39
+
40
+ Developers that use the GNU GPL protect your rights with two steps:
41
+ (1) assert copyright on the software, and (2) offer you this License
42
+ giving you legal permission to copy, distribute and/or modify it.
43
+
44
+ For the developers' and authors' protection, the GPL clearly explains
45
+ that there is no warranty for this free software. For both users' and
46
+ authors' sake, the GPL requires that modified versions be marked as
47
+ changed, so that their problems will not be attributed erroneously to
48
+ authors of previous versions.
49
+
50
+ Some devices are designed to deny users access to install or run
51
+ modified versions of the software inside them, although the manufacturer
52
+ can do so. This is fundamentally incompatible with the aim of
53
+ protecting users' freedom to change the software. The systematic
54
+ pattern of such abuse occurs in the area of products for individuals to
55
+ use, which is precisely where it is most unacceptable. Therefore, we
56
+ have designed this version of the GPL to prohibit the practice for those
57
+ products. If such problems arise substantially in other domains, we
58
+ stand ready to extend this provision to those domains in future versions
59
+ of the GPL, as needed to protect the freedom of users.
60
+
61
+ Finally, every program is threatened constantly by software patents.
62
+ States should not allow patents to restrict development and use of
63
+ software on general-purpose computers, but in those that do, we wish to
64
+ avoid the special danger that patents applied to a free program could
65
+ make it effectively proprietary. To prevent this, the GPL assures that
66
+ patents cannot be used to render the program non-free.
67
+
68
+ The precise terms and conditions for copying, distribution and
69
+ modification follow.
70
+
71
+ TERMS AND CONDITIONS
72
+
73
+ 0. Definitions.
74
+
75
+ "This License" refers to version 3 of the GNU General Public License.
76
+
77
+ "Copyright" also means copyright-like laws that apply to other kinds of
78
+ works, such as semiconductor masks.
79
+
80
+ "The Program" refers to any copyrightable work licensed under this
81
+ License. Each licensee is addressed as "you". "Licensees" and
82
+ "recipients" may be individuals or organizations.
83
+
84
+ To "modify" a work means to copy from or adapt all or part of the work
85
+ in a fashion requiring copyright permission, other than the making of an
86
+ exact copy. The resulting work is called a "modified version" of the
87
+ earlier work or a work "based on" the earlier work.
88
+
89
+ A "covered work" means either the unmodified Program or a work based
90
+ on the Program.
91
+
92
+ To "propagate" a work means to do anything with it that, without
93
+ permission, would make you directly or secondarily liable for
94
+ infringement under applicable copyright law, except executing it on a
95
+ computer or modifying a private copy. Propagation includes copying,
96
+ distribution (with or without modification), making available to the
97
+ public, and in some countries other activities as well.
98
+
99
+ To "convey" a work means any kind of propagation that enables other
100
+ parties to make or receive copies. Mere interaction with a user through
101
+ a computer network, with no transfer of a copy, is not conveying.
102
+
103
+ An interactive user interface displays "Appropriate Legal Notices"
104
+ to the extent that it includes a convenient and prominently visible
105
+ feature that (1) displays an appropriate copyright notice, and (2)
106
+ tells the user that there is no warranty for the work (except to the
107
+ extent that warranties are provided), that licensees may convey the
108
+ work under this License, and how to view a copy of this License. If
109
+ the interface presents a list of user commands or options, such as a
110
+ menu, a prominent item in the list meets this criterion.
111
+
112
+ 1. Source Code.
113
+
114
+ The "source code" for a work means the preferred form of the work
115
+ for making modifications to it. "Object code" means any non-source
116
+ form of a work.
117
+
118
+ A "Standard Interface" means an interface that either is an official
119
+ standard defined by a recognized standards body, or, in the case of
120
+ interfaces specified for a particular programming language, one that
121
+ is widely used among developers working in that language.
122
+
123
+ The "System Libraries" of an executable work include anything, other
124
+ than the work as a whole, that (a) is included in the normal form of
125
+ packaging a Major Component, but which is not part of that Major
126
+ Component, and (b) serves only to enable use of the work with that
127
+ Major Component, or to implement a Standard Interface for which an
128
+ implementation is available to the public in source code form. A
129
+ "Major Component", in this context, means a major essential component
130
+ (kernel, window system, and so on) of the specific operating system
131
+ (if any) on which the executable work runs, or a compiler used to
132
+ produce the work, or an object code interpreter used to run it.
133
+
134
+ The "Corresponding Source" for a work in object code form means all
135
+ the source code needed to generate, install, and (for an executable
136
+ work) run the object code and to modify the work, including scripts to
137
+ control those activities. However, it does not include the work's
138
+ System Libraries, or general-purpose tools or generally available free
139
+ programs which are used unmodified in performing those activities but
140
+ which are not part of the work. For example, Corresponding Source
141
+ includes interface definition files associated with source files for
142
+ the work, and the source code for shared libraries and dynamically
143
+ linked subprograms that the work is specifically designed to require,
144
+ such as by intimate data communication or control flow between those
145
+ subprograms and other parts of the work.
146
+
147
+ The Corresponding Source need not include anything that users
148
+ can regenerate automatically from other parts of the Corresponding
149
+ Source.
150
+
151
+ The Corresponding Source for a work in source code form is that
152
+ same work.
153
+
154
+ 2. Basic Permissions.
155
+
156
+ All rights granted under this License are granted for the term of
157
+ copyright on the Program, and are irrevocable provided the stated
158
+ conditions are met. This License explicitly affirms your unlimited
159
+ permission to run the unmodified Program. The output from running a
160
+ covered work is covered by this License only if the output, given its
161
+ content, constitutes a covered work. This License acknowledges your
162
+ rights of fair use or other equivalent, as provided by copyright law.
163
+
164
+ You may make, run and propagate covered works that you do not
165
+ convey, without conditions so long as your license otherwise remains
166
+ in force. You may convey covered works to others for the sole purpose
167
+ of having them make modifications exclusively for you, or provide you
168
+ with facilities for running those works, provided that you comply with
169
+ the terms of this License in conveying all material for which you do
170
+ not control copyright. Those thus making or running the covered works
171
+ for you must do so exclusively on your behalf, under your direction
172
+ and control, on terms that prohibit them from making any copies of
173
+ your copyrighted material outside their relationship with you.
174
+
175
+ Conveying under any other circumstances is permitted solely under
176
+ the conditions stated below. Sublicensing is not allowed; section 10
177
+ makes it unnecessary.
178
+
179
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180
+
181
+ No covered work shall be deemed part of an effective technological
182
+ measure under any applicable law fulfilling obligations under article
183
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184
+ similar laws prohibiting or restricting circumvention of such
185
+ measures.
186
+
187
+ When you convey a covered work, you waive any legal power to forbid
188
+ circumvention of technological measures to the extent such circumvention
189
+ is effected by exercising rights under this License with respect to
190
+ the covered work, and you disclaim any intention to limit operation or
191
+ modification of the work as a means of enforcing, against the work's
192
+ users, your or third parties' legal rights to forbid circumvention of
193
+ technological measures.
194
+
195
+ 4. Conveying Verbatim Copies.
196
+
197
+ You may convey verbatim copies of the Program's source code as you
198
+ receive it, in any medium, provided that you conspicuously and
199
+ appropriately publish on each copy an appropriate copyright notice;
200
+ keep intact all notices stating that this License and any
201
+ non-permissive terms added in accord with section 7 apply to the code;
202
+ keep intact all notices of the absence of any warranty; and give all
203
+ recipients a copy of this License along with the Program.
204
+
205
+ You may charge any price or no price for each copy that you convey,
206
+ and you may offer support or warranty protection for a fee.
207
+
208
+ 5. Conveying Modified Source Versions.
209
+
210
+ You may convey a work based on the Program, or the modifications to
211
+ produce it from the Program, in the form of source code under the
212
+ terms of section 4, provided that you also meet all of these conditions:
213
+
214
+ a) The work must carry prominent notices stating that you modified
215
+ it, and giving a relevant date.
216
+
217
+ b) The work must carry prominent notices stating that it is
218
+ released under this License and any conditions added under section
219
+ 7. This requirement modifies the requirement in section 4 to
220
+ "keep intact all notices".
221
+
222
+ c) You must license the entire work, as a whole, under this
223
+ License to anyone who comes into possession of a copy. This
224
+ License will therefore apply, along with any applicable section 7
225
+ additional terms, to the whole of the work, and all its parts,
226
+ regardless of how they are packaged. This License gives no
227
+ permission to license the work in any other way, but it does not
228
+ invalidate such permission if you have separately received it.
229
+
230
+ d) If the work has interactive user interfaces, each must display
231
+ Appropriate Legal Notices; however, if the Program has interactive
232
+ interfaces that do not display Appropriate Legal Notices, your
233
+ work need not make them do so.
234
+
235
+ A compilation of a covered work with other separate and independent
236
+ works, which are not by their nature extensions of the covered work,
237
+ and which are not combined with it such as to form a larger program,
238
+ in or on a volume of a storage or distribution medium, is called an
239
+ "aggregate" if the compilation and its resulting copyright are not
240
+ used to limit the access or legal rights of the compilation's users
241
+ beyond what the individual works permit. Inclusion of a covered work
242
+ in an aggregate does not cause this License to apply to the other
243
+ parts of the aggregate.
244
+
245
+ 6. Conveying Non-Source Forms.
246
+
247
+ You may convey a covered work in object code form under the terms
248
+ of sections 4 and 5, provided that you also convey the
249
+ machine-readable Corresponding Source under the terms of this License,
250
+ in one of these ways:
251
+
252
+ a) Convey the object code in, or embodied in, a physical product
253
+ (including a physical distribution medium), accompanied by the
254
+ Corresponding Source fixed on a durable physical medium
255
+ customarily used for software interchange.
256
+
257
+ b) Convey the object code in, or embodied in, a physical product
258
+ (including a physical distribution medium), accompanied by a
259
+ written offer, valid for at least three years and valid for as
260
+ long as you offer spare parts or customer support for that product
261
+ model, to give anyone who possesses the object code either (1) a
262
+ copy of the Corresponding Source for all the software in the
263
+ product that is covered by this License, on a durable physical
264
+ medium customarily used for software interchange, for a price no
265
+ more than your reasonable cost of physically performing this
266
+ conveying of source, or (2) access to copy the
267
+ Corresponding Source from a network server at no charge.
268
+
269
+ c) Convey individual copies of the object code with a copy of the
270
+ written offer to provide the Corresponding Source. This
271
+ alternative is allowed only occasionally and noncommercially, and
272
+ only if you received the object code with such an offer, in accord
273
+ with subsection 6b.
274
+
275
+ d) Convey the object code by offering access from a designated
276
+ place (gratis or for a charge), and offer equivalent access to the
277
+ Corresponding Source in the same way through the same place at no
278
+ further charge. You need not require recipients to copy the
279
+ Corresponding Source along with the object code. If the place to
280
+ copy the object code is a network server, the Corresponding Source
281
+ may be on a different server (operated by you or a third party)
282
+ that supports equivalent copying facilities, provided you maintain
283
+ clear directions next to the object code saying where to find the
284
+ Corresponding Source. Regardless of what server hosts the
285
+ Corresponding Source, you remain obligated to ensure that it is
286
+ available for as long as needed to satisfy these requirements.
287
+
288
+ e) Convey the object code using peer-to-peer transmission, provided
289
+ you inform other peers where the object code and Corresponding
290
+ Source of the work are being offered to the general public at no
291
+ charge under subsection 6d.
292
+
293
+ A separable portion of the object code, whose source code is excluded
294
+ from the Corresponding Source as a System Library, need not be
295
+ included in conveying the object code work.
296
+
297
+ A "User Product" is either (1) a "consumer product", which means any
298
+ tangible personal property which is normally used for personal, family,
299
+ or household purposes, or (2) anything designed or sold for incorporation
300
+ into a dwelling. In determining whether a product is a consumer product,
301
+ doubtful cases shall be resolved in favor of coverage. For a particular
302
+ product received by a particular user, "normally used" refers to a
303
+ typical or common use of that class of product, regardless of the status
304
+ of the particular user or of the way in which the particular user
305
+ actually uses, or expects or is expected to use, the product. A product
306
+ is a consumer product regardless of whether the product has substantial
307
+ commercial, industrial or non-consumer uses, unless such uses represent
308
+ the only significant mode of use of the product.
309
+
310
+ "Installation Information" for a User Product means any methods,
311
+ procedures, authorization keys, or other information required to install
312
+ and execute modified versions of a covered work in that User Product from
313
+ a modified version of its Corresponding Source. The information must
314
+ suffice to ensure that the continued functioning of the modified object
315
+ code is in no case prevented or interfered with solely because
316
+ modification has been made.
317
+
318
+ If you convey an object code work under this section in, or with, or
319
+ specifically for use in, a User Product, and the conveying occurs as
320
+ part of a transaction in which the right of possession and use of the
321
+ User Product is transferred to the recipient in perpetuity or for a
322
+ fixed term (regardless of how the transaction is characterized), the
323
+ Corresponding Source conveyed under this section must be accompanied
324
+ by the Installation Information. But this requirement does not apply
325
+ if neither you nor any third party retains the ability to install
326
+ modified object code on the User Product (for example, the work has
327
+ been installed in ROM).
328
+
329
+ The requirement to provide Installation Information does not include a
330
+ requirement to continue to provide support service, warranty, or updates
331
+ for a work that has been modified or installed by the recipient, or for
332
+ the User Product in which it has been modified or installed. Access to a
333
+ network may be denied when the modification itself materially and
334
+ adversely affects the operation of the network or violates the rules and
335
+ protocols for communication across the network.
336
+
337
+ Corresponding Source conveyed, and Installation Information provided,
338
+ in accord with this section must be in a format that is publicly
339
+ documented (and with an implementation available to the public in
340
+ source code form), and must require no special password or key for
341
+ unpacking, reading or copying.
342
+
343
+ 7. Additional Terms.
344
+
345
+ "Additional permissions" are terms that supplement the terms of this
346
+ License by making exceptions from one or more of its conditions.
347
+ Additional permissions that are applicable to the entire Program shall
348
+ be treated as though they were included in this License, to the extent
349
+ that they are valid under applicable law. If additional permissions
350
+ apply only to part of the Program, that part may be used separately
351
+ under those permissions, but the entire Program remains governed by
352
+ this License without regard to the additional permissions.
353
+
354
+ When you convey a copy of a covered work, you may at your option
355
+ remove any additional permissions from that copy, or from any part of
356
+ it. (Additional permissions may be written to require their own
357
+ removal in certain cases when you modify the work.) You may place
358
+ additional permissions on material, added by you to a covered work,
359
+ for which you have or can give appropriate copyright permission.
360
+
361
+ Notwithstanding any other provision of this License, for material you
362
+ add to a covered work, you may (if authorized by the copyright holders of
363
+ that material) supplement the terms of this License with terms:
364
+
365
+ a) Disclaiming warranty or limiting liability differently from the
366
+ terms of sections 15 and 16 of this License; or
367
+
368
+ b) Requiring preservation of specified reasonable legal notices or
369
+ author attributions in that material or in the Appropriate Legal
370
+ Notices displayed by works containing it; or
371
+
372
+ c) Prohibiting misrepresentation of the origin of that material, or
373
+ requiring that modified versions of such material be marked in
374
+ reasonable ways as different from the original version; or
375
+
376
+ d) Limiting the use for publicity purposes of names of licensors or
377
+ authors of the material; or
378
+
379
+ e) Declining to grant rights under trademark law for use of some
380
+ trade names, trademarks, or service marks; or
381
+
382
+ f) Requiring indemnification of licensors and authors of that
383
+ material by anyone who conveys the material (or modified versions of
384
+ it) with contractual assumptions of liability to the recipient, for
385
+ any liability that these contractual assumptions directly impose on
386
+ those licensors and authors.
387
+
388
+ All other non-permissive additional terms are considered "further
389
+ restrictions" within the meaning of section 10. If the Program as you
390
+ received it, or any part of it, contains a notice stating that it is
391
+ governed by this License along with a term that is a further
392
+ restriction, you may remove that term. If a license document contains
393
+ a further restriction but permits relicensing or conveying under this
394
+ License, you may add to a covered work material governed by the terms
395
+ of that license document, provided that the further restriction does
396
+ not survive such relicensing or conveying.
397
+
398
+ If you add terms to a covered work in accord with this section, you
399
+ must place, in the relevant source files, a statement of the
400
+ additional terms that apply to those files, or a notice indicating
401
+ where to find the applicable terms.
402
+
403
+ Additional terms, permissive or non-permissive, may be stated in the
404
+ form of a separately written license, or stated as exceptions;
405
+ the above requirements apply either way.
406
+
407
+ 8. Termination.
408
+
409
+ You may not propagate or modify a covered work except as expressly
410
+ provided under this License. Any attempt otherwise to propagate or
411
+ modify it is void, and will automatically terminate your rights under
412
+ this License (including any patent licenses granted under the third
413
+ paragraph of section 11).
414
+
415
+ However, if you cease all violation of this License, then your
416
+ license from a particular copyright holder is reinstated (a)
417
+ provisionally, unless and until the copyright holder explicitly and
418
+ finally terminates your license, and (b) permanently, if the copyright
419
+ holder fails to notify you of the violation by some reasonable means
420
+ prior to 60 days after the cessation.
421
+
422
+ Moreover, your license from a particular copyright holder is
423
+ reinstated permanently if the copyright holder notifies you of the
424
+ violation by some reasonable means, this is the first time you have
425
+ received notice of violation of this License (for any work) from that
426
+ copyright holder, and you cure the violation prior to 30 days after
427
+ your receipt of the notice.
428
+
429
+ Termination of your rights under this section does not terminate the
430
+ licenses of parties who have received copies or rights from you under
431
+ this License. If your rights have been terminated and not permanently
432
+ reinstated, you do not qualify to receive new licenses for the same
433
+ material under section 10.
434
+
435
+ 9. Acceptance Not Required for Having Copies.
436
+
437
+ You are not required to accept this License in order to receive or
438
+ run a copy of the Program. Ancillary propagation of a covered work
439
+ occurring solely as a consequence of using peer-to-peer transmission
440
+ to receive a copy likewise does not require acceptance. However,
441
+ nothing other than this License grants you permission to propagate or
442
+ modify any covered work. These actions infringe copyright if you do
443
+ not accept this License. Therefore, by modifying or propagating a
444
+ covered work, you indicate your acceptance of this License to do so.
445
+
446
+ 10. Automatic Licensing of Downstream Recipients.
447
+
448
+ Each time you convey a covered work, the recipient automatically
449
+ receives a license from the original licensors, to run, modify and
450
+ propagate that work, subject to this License. You are not responsible
451
+ for enforcing compliance by third parties with this License.
452
+
453
+ An "entity transaction" is a transaction transferring control of an
454
+ organization, or substantially all assets of one, or subdividing an
455
+ organization, or merging organizations. If propagation of a covered
456
+ work results from an entity transaction, each party to that
457
+ transaction who receives a copy of the work also receives whatever
458
+ licenses to the work the party's predecessor in interest had or could
459
+ give under the previous paragraph, plus a right to possession of the
460
+ Corresponding Source of the work from the predecessor in interest, if
461
+ the predecessor has it or can get it with reasonable efforts.
462
+
463
+ You may not impose any further restrictions on the exercise of the
464
+ rights granted or affirmed under this License. For example, you may
465
+ not impose a license fee, royalty, or other charge for exercise of
466
+ rights granted under this License, and you may not initiate litigation
467
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
468
+ any patent claim is infringed by making, using, selling, offering for
469
+ sale, or importing the Program or any portion of it.
470
+
471
+ 11. Patents.
472
+
473
+ A "contributor" is a copyright holder who authorizes use under this
474
+ License of the Program or a work on which the Program is based. The
475
+ work thus licensed is called the contributor's "contributor version".
476
+
477
+ A contributor's "essential patent claims" are all patent claims
478
+ owned or controlled by the contributor, whether already acquired or
479
+ hereafter acquired, that would be infringed by some manner, permitted
480
+ by this License, of making, using, or selling its contributor version,
481
+ but do not include claims that would be infringed only as a
482
+ consequence of further modification of the contributor version. For
483
+ purposes of this definition, "control" includes the right to grant
484
+ patent sublicenses in a manner consistent with the requirements of
485
+ this License.
486
+
487
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
488
+ patent license under the contributor's essential patent claims, to
489
+ make, use, sell, offer for sale, import and otherwise run, modify and
490
+ propagate the contents of its contributor version.
491
+
492
+ In the following three paragraphs, a "patent license" is any express
493
+ agreement or commitment, however denominated, not to enforce a patent
494
+ (such as an express permission to practice a patent or covenant not to
495
+ sue for patent infringement). To "grant" such a patent license to a
496
+ party means to make such an agreement or commitment not to enforce a
497
+ patent against the party.
498
+
499
+ If you convey a covered work, knowingly relying on a patent license,
500
+ and the Corresponding Source of the work is not available for anyone
501
+ to copy, free of charge and under the terms of this License, through a
502
+ publicly available network server or other readily accessible means,
503
+ then you must either (1) cause the Corresponding Source to be so
504
+ available, or (2) arrange to deprive yourself of the benefit of the
505
+ patent license for this particular work, or (3) arrange, in a manner
506
+ consistent with the requirements of this License, to extend the patent
507
+ license to downstream recipients. "Knowingly relying" means you have
508
+ actual knowledge that, but for the patent license, your conveying the
509
+ covered work in a country, or your recipient's use of the covered work
510
+ in a country, would infringe one or more identifiable patents in that
511
+ country that you have reason to believe are valid.
512
+
513
+ If, pursuant to or in connection with a single transaction or
514
+ arrangement, you convey, or propagate by procuring conveyance of, a
515
+ covered work, and grant a patent license to some of the parties
516
+ receiving the covered work authorizing them to use, propagate, modify
517
+ or convey a specific copy of the covered work, then the patent license
518
+ you grant is automatically extended to all recipients of the covered
519
+ work and works based on it.
520
+
521
+ A patent license is "discriminatory" if it does not include within
522
+ the scope of its coverage, prohibits the exercise of, or is
523
+ conditioned on the non-exercise of one or more of the rights that are
524
+ specifically granted under this License. You may not convey a covered
525
+ work if you are a party to an arrangement with a third party that is
526
+ in the business of distributing software, under which you make payment
527
+ to the third party based on the extent of your activity of conveying
528
+ the work, and under which the third party grants, to any of the
529
+ parties who would receive the covered work from you, a discriminatory
530
+ patent license (a) in connection with copies of the covered work
531
+ conveyed by you (or copies made from those copies), or (b) primarily
532
+ for and in connection with specific products or compilations that
533
+ contain the covered work, unless you entered into that arrangement,
534
+ or that patent license was granted, prior to 28 March 2007.
535
+
536
+ Nothing in this License shall be construed as excluding or limiting
537
+ any implied license or other defenses to infringement that may
538
+ otherwise be available to you under applicable patent law.
539
+
540
+ 12. No Surrender of Others' Freedom.
541
+
542
+ If conditions are imposed on you (whether by court order, agreement or
543
+ otherwise) that contradict the conditions of this License, they do not
544
+ excuse you from the conditions of this License. If you cannot convey a
545
+ covered work so as to satisfy simultaneously your obligations under this
546
+ License and any other pertinent obligations, then as a consequence you may
547
+ not convey it at all. For example, if you agree to terms that obligate you
548
+ to collect a royalty for further conveying from those to whom you convey
549
+ the Program, the only way you could satisfy both those terms and this
550
+ License would be to refrain entirely from conveying the Program.
551
+
552
+ 13. Use with the GNU Affero General Public License.
553
+
554
+ Notwithstanding any other provision of this License, you have
555
+ permission to link or combine any covered work with a work licensed
556
+ under version 3 of the GNU Affero General Public License into a single
557
+ combined work, and to convey the resulting work. The terms of this
558
+ License will continue to apply to the part which is the covered work,
559
+ but the special requirements of the GNU Affero General Public License,
560
+ section 13, concerning interaction through a network will apply to the
561
+ combination as such.
562
+
563
+ 14. Revised Versions of this License.
564
+
565
+ The Free Software Foundation may publish revised and/or new versions of
566
+ the GNU General Public License from time to time. Such new versions will
567
+ be similar in spirit to the present version, but may differ in detail to
568
+ address new problems or concerns.
569
+
570
+ Each version is given a distinguishing version number. If the
571
+ Program specifies that a certain numbered version of the GNU General
572
+ Public License "or any later version" applies to it, you have the
573
+ option of following the terms and conditions either of that numbered
574
+ version or of any later version published by the Free Software
575
+ Foundation. If the Program does not specify a version number of the
576
+ GNU General Public License, you may choose any version ever published
577
+ by the Free Software Foundation.
578
+
579
+ If the Program specifies that a proxy can decide which future
580
+ versions of the GNU General Public License can be used, that proxy's
581
+ public statement of acceptance of a version permanently authorizes you
582
+ to choose that version for the Program.
583
+
584
+ Later license versions may give you additional or different
585
+ permissions. However, no additional obligations are imposed on any
586
+ author or copyright holder as a result of your choosing to follow a
587
+ later version.
588
+
589
+ 15. Disclaimer of Warranty.
590
+
591
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
+
600
+ 16. Limitation of Liability.
601
+
602
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
+ SUCH DAMAGES.
611
+
612
+ 17. Interpretation of Sections 15 and 16.
613
+
614
+ If the disclaimer of warranty and limitation of liability provided
615
+ above cannot be given local legal effect according to their terms,
616
+ reviewing courts shall apply local law that most closely approximates
617
+ an absolute waiver of all civil liability in connection with the
618
+ Program, unless a warranty or assumption of liability accompanies a
619
+ copy of the Program in return for a fee.
620
+
621
+ END OF TERMS AND CONDITIONS
622
+
623
+ How to Apply These Terms to Your New Programs
624
+
625
+ If you develop a new program, and you want it to be of the greatest
626
+ possible use to the public, the best way to achieve this is to make it
627
+ free software which everyone can redistribute and change under these terms.
628
+
629
+ To do so, attach the following notices to the program. It is safest
630
+ to attach them to the start of each source file to most effectively
631
+ state the exclusion of warranty; and each file should have at least
632
+ the "copyright" line and a pointer to where the full notice is found.
633
+
634
+ <one line to give the program's name and a brief idea of what it does.>
635
+ Copyright (C) <year> <name of author>
636
+
637
+ This program is free software: you can redistribute it and/or modify
638
+ it under the terms of the GNU General Public License as published by
639
+ the Free Software Foundation, either version 3 of the License, or
640
+ (at your option) any later version.
641
+
642
+ This program is distributed in the hope that it will be useful,
643
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
644
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645
+ GNU General Public License for more details.
646
+
647
+ You should have received a copy of the GNU General Public License
648
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
649
+
650
+ Also add information on how to contact you by electronic and paper mail.
651
+
652
+ If the program does terminal interaction, make it output a short
653
+ notice like this when it starts in an interactive mode:
654
+
655
+ <program> Copyright (C) <year> <name of author>
656
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657
+ This is free software, and you are welcome to redistribute it
658
+ under certain conditions; type `show c' for details.
659
+
660
+ The hypothetical commands `show w' and `show c' should show the appropriate
661
+ parts of the General Public License. Of course, your program's commands
662
+ might be different; for a GUI interface, you would use an "about box".
663
+
664
+ You should also get your employer (if you work as a programmer) or school,
665
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
666
+ For more information on this, and how to apply and follow the GNU GPL, see
667
+ <http://www.gnu.org/licenses/>.
668
+
669
+ The GNU General Public License does not permit incorporating your program
670
+ into proprietary programs. If your program is a subroutine library, you
671
+ may consider it more useful to permit linking proprietary applications with
672
+ the library. If this is what you want to do, use the GNU Lesser General
673
+ Public License instead of this License. But first, please read
674
+ <http://www.gnu.org/philosophy/why-not-lgpl.html>.
readme.txt ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.0
6
+ Stable tag: 0.1
7
+
8
+ Secure your WordPress Installation with small functions.
9
+
10
+ == Description ==
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. Add string for use [WP Scanner](http://blogsecurity.net/wpscan "WP Scanner")
23
+ 1. Block bad queries
24
+ 1. Validate your site with a free malware and vulnerabilities scan with [SiteSecurityMonitor.com](http://www.sitesecuritymonitor.com/)
25
+
26
+
27
+ = Localizations =
28
+ Idea, first version and german translation by [Frank B&uuml;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&ouml;rmendi P&eacute;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&oslash;g efter downloads")m spanish language files by [Pablo Jim&eacute;nez](http://www.ministeriosccc.org "www.ministeriosccc.org"), chinese language (zh_CN) by [tanghaiwei](http://dd54.net), french translation files by [Jez007](http://forum.gmstemple.com/ "forum.gmstemple.com"), japanese translation by [Fumito Mizuno](http://ounziw.com/ "Standing on the Shoulder of Linus"), dutch translation by [Rene](http://wpwebshop.com "wpwebshop.com") and arabic language files by [مدونة](http://www.r-sn.com/wp). Thanks a lot.
29
+
30
+
31
+ == Installation ==
32
+ 1. Unpack the download-package
33
+ 1. Upload the file to the `/wp-content/plugins/` directory
34
+ 1. Activate the plugin through the 'Plugins' menu in WordPress
35
+ 1. Configure the options
36
+ 1. Ready
37
+
38
+ See on [the official website](http://www.sitesecuritymonitor.com/secure-wordpress-plugin "Secure WordPress").
39
+
40
+
41
+ == Screenshots ==
42
+ 1. options-area (WordPress 3.1-alpha)
43
+
44
+
45
+ == Other Notes ==
46
+ = Licence =
47
+ 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.
48
+
49
+ = Translations =
50
+ 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.
51
+
52
+
53
+ == Changelog ==
54
+ = v1.0.1 (08/06/2010) =
55
+ * add more hooks to remove WordPress Version; was change with WP3.0
56
+
57
+ = v1.0 (07/09/2010) =
58
+ * relese stable version
59
+ * small changes on the source
60
+ * change owner of the plugin
61
+
62
+ = v0.8.6 (06/18/2010) =
63
+ * fix a problem with https://; see [Ticket #13941](http://core.trac.wordpress.org/ticket/13941)
64
+
65
+ = v0.8.5 (05/16/2010) =
66
+ * small code changes for WP coding standards
67
+ * add free malware and vulnerabilities scan for test this; the scan has most interested informations and scan all of the server
68
+
69
+ = v0.8.4 (05/05/2010) =
70
+ * add methode for use the plugin also on ssl-installs
71
+ * change uninstall method
72
+
73
+ = v0.8.3 (04/14/2010) =
74
+ * bugfix fox secure block bad queries on string for case-insensitive
75
+
76
+ = v0.8.2 (03/21/2010) =
77
+ * fix syntax error on ask for rights to block bad queries
78
+ * add french language files
79
+
80
+ = v0.8.1 (03/08/2010) =
81
+ * remove versions-informations on backend with javascript
82
+ * small changes
83
+
84
+ = v0.8 (03/04/2010) =
85
+ * 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")
86
+
87
+ = v0.7 (03/01/2010) =
88
+ * add updates for WP 3.0
89
+
90
+ = v0.6 (01/11/2010) =
91
+ * fix for core update under WP 2.9
92
+ * fix language file de_DE
93
+
94
+ = v0.5 (12/22/2009) =
95
+ * small fix for use WP and the plugin with SSL `https`
96
+
97
+ = v0.4 (12/02/2009) =
98
+ * add new feature: hide version for smaller right as admin
99
+
100
+ = v0.3.9 (09/07/2009) =
101
+ * change index.html in index.php for better works
102
+
103
+ = v0.3.8 (06/22/2009) =
104
+ * add function to remove theme-update information for non-admins
105
+ * rescan language file; edit de_DE
screenshot-1.png ADDED
Binary file
secure-wordpress.php ADDED
@@ -0,0 +1,1156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Secure WordPress
4
+ * @author jremillard
5
+ * @version 1.0.1
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.1
16
+ * Author URI: http://www.sitesecuritymonitor.com/
17
+ * Last Change: 06.08.2010 07:41:48
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');
28
+ header('HTTP/1.1 403 Forbidden');
29
+ exit($exit_msg);
30
+ }
31
+
32
+ /**
33
+ * Images/ Icons in base64-encoding
34
+ * @use function wpag_get_resource_url() for display
35
+ */
36
+ if ( isset($_GET['resource']) && !empty($_GET['resource']) ) {
37
+ # base64 encoding performed by base64img.php from http://php.holtsmark.no
38
+ $resources = array(
39
+ 'secure_wp.gif' =>
40
+ 'R0lGODlhCwALAKIEAPb29tTU1P///5SUlP///wAAAAAAAAAAAC'.
41
+ 'H5BAEAAAQALAAAAAALAAsAAAMhSLrT+0MAMB6JIujKgN6Qp1HW'.
42
+ 'MHKK06BXwDKulcby9T4JADs='.
43
+ '',
44
+ 'wp.png' =>
45
+ 'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAFfKj/FAAAAB3RJTUUH1wYQEiwG0'.
46
+ '0adjQAAAAlwSFlzAAALEgAACxIB0t1+/AAAAARnQU1BAACxjwv8YQUAAABOUExURZ'.
47
+ 'wMDN7n93ut1kKExjFjnHul1tbn75S93jFrnP///1qUxnOl1sbe71KMxjFrpWOUzjl'.
48
+ '7tYy13q3G5+fv95y93muczu/39zl7vff3//f//9Se9dEAAAABdFJOUwBA5thmAAAA'.
49
+ 's0lEQVR42iWPUZLDIAxDRZFNTMCllJD0/hddktWPRp6x5QcQmyIA1qG1GuBUIArwj'.
50
+ 'SRITkiylXNxHjtweqfRFHJ86MIBrBuW0nIIo96+H/SSAb5Zm14KnZTm7cQVc1XSMT'.
51
+ 'jr7IdAVPm+G5GS6YZHaUv6M132RBF1PopTXiuPYplcmxzWk2C72CfZTNaU09GCM3T'.
52
+ 'Ww9porieUwZt9yP6tHm5K5L2Uun6xsuf/WoTXwo7yQPwBXo8H/8TEoKYAAAAASUVO'.
53
+ 'RK5CYII='.
54
+ '');
55
+
56
+ if ( array_key_exists($_GET['resource'], $resources) ) {
57
+
58
+ $content = base64_decode($resources[ $_GET['resource'] ]);
59
+
60
+ $lastMod = filemtime(__FILE__);
61
+ $client = ( isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? $_SERVER['HTTP_IF_MODIFIED_SINCE'] : false );
62
+ // Checking if the client is validating his cache and if it is current.
63
+ if ( isset($client) && (strtotime($client) == $lastMod) ) {
64
+ // Client's cache IS current, so we just respond '304 Not Modified'.
65
+ header('Last-Modified: '.gmdate('D, d M Y H:i:s', $lastMod).' GMT', true, 304);
66
+ exit;
67
+ } else {
68
+ // Image not cached or cache outdated, we respond '200 OK' and output the image.
69
+ header('Last-Modified: '.gmdate('D, d M Y H:i:s', $lastMod).' GMT', true, 200);
70
+ header('Content-Length: '.strlen($content));
71
+ header('Content-Type: image/' . substr(strrchr($_GET['resource'], '.'), 1) );
72
+ echo $content;
73
+ exit;
74
+ }
75
+ }
76
+ }
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
+ // constructor
100
+ function SecureWP() {
101
+ global $wp_version;
102
+
103
+ $this->activate();
104
+
105
+ add_action( 'init', array(&$this, 'textdomain') );
106
+
107
+ /**
108
+ * remove WP version
109
+ */
110
+ if ( $GLOBALS['WPlize']->get_option('secure_wp_version') == '1' )
111
+ add_action( 'init', array(&$this, 'replace_wp_version'), 1 );
112
+
113
+ /**
114
+ * remove core update for non admins
115
+ * @link: rights: http://codex.wordpress.org/Roles_and_Capabilities
116
+ */
117
+ if ( is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_rcu') == '1') ) {
118
+ add_action( 'init', array(&$this, 'remove_core_update'), 1 );
119
+ }
120
+
121
+ /**
122
+ * remove plugin update for non admins
123
+ * @link: rights: http://codex.wordpress.org/Roles_and_Capabilities
124
+ */
125
+ if ( is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_rpu') == '1') )
126
+ add_action( 'init', array(&$this, 'remove_plugin_update'), 1 );
127
+
128
+ /**
129
+ * remove theme update for non admins
130
+ * @link: rights: http://codex.wordpress.org/Roles_and_Capabilities
131
+ */
132
+ if ( is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_rtu') == '1') && ( version_compare($wp_version, "2.8alpha", ">") ) )
133
+ add_action( 'init', array(&$this, 'remove_theme_update'), 1 );
134
+
135
+ /**
136
+ * remove WP version on backend
137
+ */
138
+ if ( $GLOBALS['WPlize']->get_option('secure_wp_admin_version') == '1' )
139
+ add_action( 'init', array(&$this, 'remove_wp_version_on_admin'), 1 );
140
+
141
+ add_action( 'init', array(&$this, 'on_init'), 1 );
142
+
143
+ }
144
+
145
+
146
+ /**
147
+ * active for multilanguage
148
+ *
149
+ * @package Secure WordPress
150
+ */
151
+ function textdomain() {
152
+
153
+ if ( function_exists('load_plugin_textdomain') ) {
154
+ if ( !defined('WP_PLUGIN_DIR') ) {
155
+ load_plugin_textdomain(FB_SWP_TEXTDOMAIN, str_replace( ABSPATH, '', dirname(__FILE__) ) . '/languages');
156
+ } else {
157
+ load_plugin_textdomain(FB_SWP_TEXTDOMAIN, false, dirname( plugin_basename(__FILE__) ) . '/languages');
158
+ }
159
+ }
160
+ }
161
+
162
+
163
+ // function for WP < 2.8
164
+ function get_plugins_url($path = '', $plugin = '') {
165
+
166
+ if ( function_exists('plugin_url') )
167
+ return plugins_url($path, $plugin);
168
+
169
+ if ( function_exists('is_ssl') )
170
+ $scheme = ( is_ssl() ? 'https' : 'http' );
171
+ else
172
+ $scheme = 'http';
173
+ if ( function_exists('plugins_url') )
174
+ $url = plugins_url();
175
+ else
176
+ $url = WP_PLUGIN_URL;
177
+ if ( 0 === strpos($url, 'http') ) {
178
+ if ( function_exists('is_ssl') && is_ssl() )
179
+ $url = str_replace( 'http://', "{$scheme}://", $url );
180
+ }
181
+
182
+ if ( !empty($plugin) && is_string($plugin) )
183
+ {
184
+ $folder = dirname(plugin_basename($plugin));
185
+ if ('.' != $folder)
186
+ $url .= '/' . ltrim($folder, '/');
187
+ }
188
+
189
+ if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
190
+ $url .= '/' . ltrim($path, '/');
191
+
192
+ return apply_filters('plugins_url', $url, $path, $plugin);
193
+ }
194
+
195
+
196
+ /**
197
+ * init fucntions; check rights and options
198
+ *
199
+ * @package Secure WordPress
200
+ */
201
+ function on_init() {
202
+ global $wp_version;
203
+
204
+ if ( is_admin() ) {
205
+ // update options
206
+ add_action('admin_post_swp_update', array(&$this, 'swp_update') );
207
+ // deinstall options
208
+ add_action('admin_post_swp_uninstall', array(&$this, 'swp_uninstall') );
209
+
210
+ // init default options on activate
211
+ if ( function_exists('register_activation_hook') )
212
+ register_activation_hook(__FILE__, array($this, 'activate') );
213
+ // deinstall options in deactivate
214
+ if ( function_exists('register_deactivation_hook') )
215
+ register_deactivation_hook(__FILE__, array($this, 'deactivate') );
216
+
217
+ // add options page
218
+ add_action( 'admin_menu', array(&$this, 'admin_menu') );
219
+ // hint in footer of the options page
220
+ add_action( 'in_admin_footer', array(&$this, 'admin_footer') );
221
+
222
+ // add javascript for metaboxes
223
+ if ( version_compare( $wp_version, '2.7alpha', '>' ) && file_exists(ABSPATH . '/wp-admin/admin-ajax.php') && (basename($_SERVER['QUERY_STRING']) == 'page=secure-wordpress.php') ) {
224
+ wp_enqueue_script( 'secure_wp_plugin_win_page', $this->get_plugins_url( 'js/page.php', __FILE__ ), array('jquery') );
225
+ } elseif ( version_compare( $wp_version, '2.7alpha', '<' ) && file_exists(ABSPATH . '/wp-admin/admin-ajax.php') && (basename($_SERVER['QUERY_STRING']) == 'page=secure-wordpress.php') ) {
226
+ wp_enqueue_script( 'secure_wp_plugin_win_page', $this->get_plugins_url( 'js/page_s27.php', __FILE__ ), array('jquery') );
227
+ }
228
+ add_action( 'wp_ajax_set_toggle_status', array($this, 'set_toggle_status') );
229
+ }
230
+
231
+
232
+ /**
233
+ * remove Error-information
234
+ */
235
+ if ( !is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_error') == '1') ) {
236
+ add_action( 'login_head', array(&$this, 'remove_error_div') );
237
+ add_filter( 'login_errors', create_function( '$a', "return null;" ) );
238
+ }
239
+
240
+
241
+ /**
242
+ * add index.html in plugin-folder
243
+ */
244
+ if ( $GLOBALS['WPlize']->get_option('secure_wp_index') == '1' ) {
245
+ $this->add_index( WP_PLUGIN_DIR, true );
246
+ $this->add_index( WP_CONTENT_URL . '/themes', true );
247
+ }
248
+
249
+
250
+ /**
251
+ * remove rdf
252
+ */
253
+ if ( function_exists('rsd_link') && !is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_rsd') == '1') )
254
+ remove_action('wp_head', 'rsd_link');
255
+
256
+
257
+ /**
258
+ * remove wlf
259
+ */
260
+ if ( function_exists('wlwmanifest_link') && !is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_wlw') == '1') )
261
+ remove_action('wp_head', 'wlwmanifest_link');
262
+
263
+ /**
264
+ * add wp-scanner
265
+ * @link http://blogsecurity.net/wordpress/tools/wp-scanner
266
+ */
267
+ if ( !is_admin() && ($GLOBALS['WPlize']->get_option('secure_wp_wps') == '1') )
268
+ add_action( 'wp_head', array(&$this, 'wp_scanner') );
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
+ *
282
+ * @package Secure WordPress
283
+ */
284
+ function activate() {
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
+ *
310
+ * @package Secure WordPress
311
+ */
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
+ *
342
+ * @package Secure WordPress
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
358
+ *
359
+ * @package Secure WordPress
360
+ *
361
+ * @param $links, $file
362
+ * @return $links
363
+ */
364
+ function filter_plugin_meta($links, $file) {
365
+
366
+ /* create link */
367
+ if ( $file == FB_SWP_BASENAME ) {
368
+ array_unshift(
369
+ $links,
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
+ *
381
+ * @package Secure WordPress
382
+ *
383
+ * @param $resourceID
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
+ *
407
+ * @package Secure WordPress
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);
423
+ } elseif ( $_GET['uninstall'] == 'true' ) {
424
+ $return_message = __('All entries in the database was cleared. Now deactivate this plugin.', FB_SWP_TEXTDOMAIN);
425
+ } else {
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');
484
+ if ($fh) fclose($fh);
485
+ }
486
+ } else {
487
+ if (file_exists($file) && filesize($file) === 0) {
488
+ unlink($file);
489
+ }
490
+ }
491
+ }
492
+
493
+
494
+ /**
495
+ * Replace the WP-version with a random string &lt; WP 2.4
496
+ * and eliminate WP-version &gt; 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
+ *
604
+ * @package Secure WordPress
605
+ */
606
+ function remove_theme_update() {
607
+ if ( !current_user_can('edit_themes') ) {
608
+ remove_action( 'load-themes.php', 'wp_update_themes' );
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
+ * block bad queries
648
+ *
649
+ * @package Secure WordPress
650
+ * @see http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/
651
+ * @author Jeff Starr
652
+ */
653
+ function wp_against_malicious_url_request() {
654
+ global $user_ID;
655
+
656
+ if ($user_ID) {
657
+ if ( !current_user_can('manage_options') ) {
658
+ if (strlen($_SERVER['REQUEST_URI']) > 255 ||
659
+ stripos($_SERVER['REQUEST_URI'], "eval(") ||
660
+ stripos($_SERVER['REQUEST_URI'], "CONCAT") ||
661
+ stripos($_SERVER['REQUEST_URI'], "UNION+SELECT") ||
662
+ stripos($_SERVER['REQUEST_URI'], "base64")) {
663
+ @header("HTTP/1.1 414 Request-URI Too Long");
664
+ @header("Status: 414 Request-URI Too Long");
665
+ @header("Connection: Close");
666
+ @exit;
667
+ }
668
+ }
669
+ }
670
+ }
671
+
672
+
673
+ /**
674
+ * update options
675
+ *
676
+ * @package Secure WordPress
677
+ */
678
+ function swp_update() {
679
+
680
+ if ( !current_user_can('manage_options') )
681
+ wp_die( __('Options not updated - you don&lsquo;t have the privileges to do this!', FB_SWP_TEXTDOMAIN) );
682
+
683
+ //cross check the given referer
684
+ check_admin_referer('secure_wp_settings_form');
685
+
686
+ $this->update();
687
+
688
+ $referer = str_replace('&update=true&update=true', '', $_POST['_wp_http_referer'] );
689
+ wp_redirect($referer . '&update=true' );
690
+ }
691
+
692
+
693
+ /**
694
+ * uninstall options
695
+ *
696
+ * @package Secure WordPress
697
+ */
698
+ function swp_uninstall() {
699
+
700
+ if ( !current_user_can('manage_options') )
701
+ wp_die( __('Entries were not deleted - you don&lsquo;t have the privileges to do this!', FB_SWP_TEXTDOMAIN) );
702
+
703
+ //cross check the given referer
704
+ check_admin_referer('secure_wp_uninstall_form');
705
+
706
+ if ( isset($_POST['deinstall_yes']) ) {
707
+ $this->deactivate();
708
+ } else {
709
+ wp_die( __('Entries were not deleted - check the checkbox!', FB_SWP_TEXTDOMAIN) );
710
+ }
711
+
712
+ wp_redirect( 'plugins.php' );
713
+ }
714
+
715
+
716
+ /**
717
+ * display options page in backende
718
+ *
719
+ * @package Secure WordPress
720
+ */
721
+ function display_page() {
722
+ global $wp_version;
723
+
724
+ if ( isset($_POST['action']) && 'deinstall' == $_POST['action'] ) {
725
+ check_admin_referer('secure_wp_deinstall_form');
726
+ if ( current_user_can('manage_options') && isset($_POST['deinstall_yes']) ) {
727
+ $this->deactivate();
728
+ ?>
729
+ <div id="message" class="updated fade"><p><?php _e('All entries in the database were cleared.', FB_SWP_TEXTDOMAIN); ?></p></div>
730
+ <?php
731
+ } else {
732
+ ?>
733
+ <div id="message" class="error"><p><?php _e('Entries were not deleted - check the checkbox or you don&lsquo;t have the privileges to do this!', FB_SWP_TEXTDOMAIN); ?></p></div>
734
+ <?php
735
+ }
736
+ }
737
+
738
+ $secure_wp_error = $GLOBALS['WPlize']->get_option('secure_wp_error');
739
+ $secure_wp_version = $GLOBALS['WPlize']->get_option('secure_wp_version');
740
+ $secure_wp_admin_version = $GLOBALS['WPlize']->get_option('secure_wp_admin_version');
741
+ $secure_wp_index = $GLOBALS['WPlize']->get_option('secure_wp_index');
742
+ $secure_wp_rsd = $GLOBALS['WPlize']->get_option('secure_wp_rsd');
743
+ $secure_wp_wlw = $GLOBALS['WPlize']->get_option('secure_wp_wlw');
744
+ $secure_wp_rcu = $GLOBALS['WPlize']->get_option('secure_wp_rcu');
745
+ $secure_wp_rpu = $GLOBALS['WPlize']->get_option('secure_wp_rpu');
746
+ $secure_wp_rtu = $GLOBALS['WPlize']->get_option('secure_wp_rtu');
747
+ $secure_wp_wps = $GLOBALS['WPlize']->get_option('secure_wp_wps');
748
+ $secure_wp_amurlr = $GLOBALS['WPlize']->get_option('secure_wp_amurlr');
749
+
750
+ $secure_wp_win_settings = $GLOBALS['WPlize']->get_option('secure_wp_win_settings');
751
+ $secure_wp_win_about = $GLOBALS['WPlize']->get_option('secure_wp_win_about');
752
+ $secure_wp_win_opt = $GLOBALS['WPlize']->get_option('secure_wp_win_opt');
753
+ ?>
754
+ <div class="wrap">
755
+ <div id="icon-sitesecuritymonitor" class="icon32" style="background: url('<?php echo $this->get_plugins_url( 'img/h2logo.png', __FILE__ ); ?>') no-repeat;"><br /></div>
756
+ <h2><?php _e('Secure WordPress', FB_SWP_TEXTDOMAIN); ?></h2>
757
+ <br class="clear" />
758
+
759
+ <div id="poststuff" class="ui-sortable meta-box-sortables">
760
+ <div id="secure_wp_win_settings" class="postbox <?php echo $secure_wp_win_settings ?>" >
761
+ <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
762
+ <h3><?php _e('Configuration', FB_SWP_TEXTDOMAIN); ?></h3>
763
+ <div class="inside">
764
+
765
+ <form name="secure_wp_config-update" method="post" action="admin-post.php">
766
+ <?php if (function_exists('wp_nonce_field') === true) wp_nonce_field('secure_wp_settings_form'); ?>
767
+
768
+ <table class="form-table">
769
+
770
+ <tr valign="top">
771
+ <th scope="row">
772
+ <label for="secure_wp_error"><?php _e('Error-Messages', FB_SWP_TEXTDOMAIN); ?></label>
773
+ </th>
774
+ <td>
775
+ <input type="checkbox" name="secure_wp_error" id="secure_wp_error" value="1" <?php if ( $secure_wp_error == '1') { echo "checked='checked'"; } ?> />
776
+ <?php _e('Deactivates tooltip and error message at login of WordPress', FB_SWP_TEXTDOMAIN); ?>
777
+ </td>
778
+ </tr>
779
+
780
+ <tr valign="top">
781
+ <th scope="row">
782
+ <label for="secure_wp_version"><?php _e('WordPress Version', FB_SWP_TEXTDOMAIN); ?></label>
783
+ </th>
784
+ <td>
785
+ <input type="checkbox" name="secure_wp_version" id="secure_wp_version" value="1" <?php if ( $secure_wp_version == '1') { echo "checked='checked'"; } ?> />
786
+ <?php _e('Removes version of WordPress in all areas, including feed, not in admin', FB_SWP_TEXTDOMAIN); ?>
787
+ </td>
788
+ </tr>
789
+
790
+ <tr valign="top">
791
+ <th scope="row">
792
+ <label for="secure_wp_admin_version"><?php _e('WordPress Version in Backend', FB_SWP_TEXTDOMAIN); ?></label>
793
+ </th>
794
+ <td>
795
+ <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'"; } ?> />
796
+ <?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); ?>
797
+ </td>
798
+ </tr>
799
+
800
+ <tr valign="top">
801
+ <th scope="row">
802
+ <label for="secure_wp_index"><?php _e('index.php', FB_SWP_TEXTDOMAIN); ?></label>
803
+ </th>
804
+ <td>
805
+ <input type="checkbox" name="secure_wp_index" id="secure_wp_index" value="1" <?php if ( $secure_wp_index == '1') { echo "checked='checked'"; } ?> />
806
+ <?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); ?>
807
+ </td>
808
+ </tr>
809
+
810
+ <tr valign="top">
811
+ <th scope="row">
812
+ <label for="secure_wp_rsd"><?php _e('Really Simple Discovery', FB_SWP_TEXTDOMAIN); ?></label>
813
+ </th>
814
+ <td>
815
+ <input type="checkbox" name="secure_wp_rsd" id="secure_wp_rsd" value="1" <?php if ( $secure_wp_rsd == '1') { echo "checked='checked'"; } ?> />
816
+ <?php _e('Remove Really Simple Discovery link in <code>wp_head</code> of the frontend', FB_SWP_TEXTDOMAIN); ?>
817
+ </td>
818
+ </tr>
819
+
820
+ <tr valign="top">
821
+ <th scope="row">
822
+ <label for="secure_wp_wlw"><?php _e('Windows Live Writer', FB_SWP_TEXTDOMAIN); ?></label>
823
+ </th>
824
+ <td>
825
+ <input type="checkbox" name="secure_wp_wlw" id="secure_wp_wlw" value="1" <?php if ( $secure_wp_wlw == '1') { echo "checked='checked'"; } ?> />
826
+ <?php _e('Remove Windows Live Writer link in <code>wp_head</code> of the frontend', FB_SWP_TEXTDOMAIN); ?>
827
+ </td>
828
+ </tr>
829
+
830
+ <tr valign="top">
831
+ <th scope="row">
832
+ <label for="secure_wp_rcu"><?php _e('Core Update', FB_SWP_TEXTDOMAIN); ?></label>
833
+ </th>
834
+ <td>
835
+ <input type="checkbox" name="secure_wp_rcu" id="secure_wp_rcu" value="1" <?php if ( $secure_wp_rcu == '1') { echo "checked='checked'"; } ?> />
836
+ <?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); ?>
837
+ </td>
838
+ </tr>
839
+
840
+ <tr valign="top">
841
+ <th scope="row">
842
+ <label for="secure_wp_rpu"><?php _e('Plugin Update', FB_SWP_TEXTDOMAIN); ?></label>
843
+ </th>
844
+ <td>
845
+ <input type="checkbox" name="secure_wp_rpu" id="secure_wp_rpu" value="1" <?php if ( $secure_wp_rpu == '1') { echo "checked='checked'"; } ?> />
846
+ <?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); ?>
847
+ </td>
848
+ </tr>
849
+
850
+ <?php if ( version_compare($wp_version, "2.8alpha", ">=") ) { ?>
851
+ <tr valign="top">
852
+ <th scope="row">
853
+ <label for="secure_wp_rtu"><?php _e('Theme Update', FB_SWP_TEXTDOMAIN); ?></label>
854
+ </th>
855
+ <td>
856
+ <input type="checkbox" name="secure_wp_rtu" id="secure_wp_rtu" value="1" <?php if ( $secure_wp_rtu == '1') { echo "checked='checked'"; } ?> />
857
+ <?php _e('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.', FB_SWP_TEXTDOMAIN); ?>
858
+ </td>
859
+ </tr>
860
+ <?php } ?>
861
+
862
+ <tr valign="top">
863
+ <th scope="row">
864
+ <label for="secure_wp_wps"><?php _e('WP Scanner', FB_SWP_TEXTDOMAIN); ?></label>
865
+ </th>
866
+ <td>
867
+ <input type="checkbox" name="secure_wp_wps" id="secure_wp_wps" value="1" <?php if ( $secure_wp_wps == '1') { echo "checked='checked'"; } ?> />
868
+ <?php _e('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>&lt;!-- wpscanner --&gt;</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.', FB_SWP_TEXTDOMAIN); ?>
869
+ </td>
870
+ </tr>
871
+
872
+ <tr valign="top">
873
+ <th scope="row">
874
+ <label for="secure_wp_amurlr"><?php _e('Block bad queries', FB_SWP_TEXTDOMAIN); ?></label>
875
+ </th>
876
+ <td>
877
+ <input type="checkbox" name="secure_wp_amurlr" id="secure_wp_amurlr" value="1" <?php if ( $secure_wp_amurlr == '1') { echo "checked='checked'"; } ?> />
878
+ <?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); ?>
879
+ </td>
880
+ </tr>
881
+
882
+ </table>
883
+
884
+ <p class="submit">
885
+ <input type="hidden" name="action" value="swp_update" />
886
+ <input type="submit" name="Submit" value="<?php _e('Save Changes', FB_SWP_TEXTDOMAIN); ?> &raquo;" class="button-primary" />
887
+ </p>
888
+ </form>
889
+
890
+ </div>
891
+ </div>
892
+ </div>
893
+
894
+ <div id="poststuff" class="ui-sortable meta-box-sortables">
895
+ <div id="secure_wp_win_opt" class="postbox <?php echo $secure_wp_win_opt ?>" >
896
+ <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
897
+ <h3 id="uninstall"><?php _e('Validate your site with a free malware scan from www.sitesecuritymonitor.com', FB_SWP_TEXTDOMAIN) ?></h3>
898
+ <div class="inside">
899
+
900
+ <h4><?php _e('Take us for a Test Drive - Free Scan', FB_SWP_TEXTDOMAIN) ?></h4>
901
+ <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>
902
+ <p><?php _e('What does this do for me?', FB_SWP_TEXTDOMAIN) ?></p>
903
+ <p><?php _e('Am I really safe? I need to be sure.', FB_SWP_TEXTDOMAIN) ?></p>
904
+ <p><?php _e('Rest Assured, Site Security Monitor has you covered.', FB_SWP_TEXTDOMAIN) ?></p>
905
+ <ol>
906
+ <li><?php _e('FREE scan looks for malware', FB_SWP_TEXTDOMAIN) ?></li>
907
+ <li><?php _e('FREE report of website vulnerabilities found', FB_SWP_TEXTDOMAIN) ?></li>
908
+ <li><?php _e('No setup, tuning and installation on your site - scan begins immediately', FB_SWP_TEXTDOMAIN) ?></li>
909
+ </ol>
910
+ <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>
911
+ <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>
912
+
913
+ <h4><?php _e('The form', FB_SWP_TEXTDOMAIN) ?></h4>
914
+ <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>
915
+ <form action="http://www.sitesecuritymonitor.com/Default.aspx?app=iframeform&hidemenu=true&ContactFormID=26978" method="post">
916
+ <input type="hidden" name="FormSubmitRedirectURL" id="FormSubmitRedirectURL" value="http://www.sitesecuritymonitor.com" >
917
+ <input type="hidden" name="Lead_Src" id="LeadSrc" value="Get a Free Scan" />
918
+
919
+ <script type='text/javascript' language='javascript'>
920
+ /* <![CDATA[ */
921
+ HubSpotFormSpamCheck_LeadGen_ContactForm_26978_m0 = function() {
922
+ var key = document.getElementById('LeadGen_ContactForm_26978_m0spam_check_key').value;
923
+ var sig = '';
924
+ for (var x = 0; x< key.length; x++ ) {
925
+ sig += key.charCodeAt(x)+13;
926
+ }
927
+ document.getElementById('LeadGen_ContactForm_26978_m0spam_check_sig').value = sig;
928
+ // Set the hidden field to contain the user token
929
+ var results = document.cookie.match ( '(^|;) ?hubspotutk=([^;]*)(;|$)' );
930
+ if (results && results[2]) {
931
+ document.getElementById('LeadGen_ContactForm_26978_m0submitter_user_token').value = results[2];
932
+ } else if (window['hsut']) {
933
+ document.getElementById('LeadGen_ContactForm_26978_m0submitter_user_token').value = window['hsut'];
934
+ }
935
+ return true;
936
+ };
937
+ /*]]>*/
938
+ </script>
939
+
940
+ <input type="hidden" id='LeadGen_ContactForm_26978_m0submitter_user_token' name='LeadGen_ContactForm_26978_m0submitter_user_token' value='' />
941
+ <input type="hidden" name='ContactFormId' value='26978' />
942
+ <input type="hidden" id='LeadGen_ContactForm_26978_m0spam_check_key' name='LeadGen_ContactForm_26978_m0spam_check_key' value='jjnjrgslmerhsnofgnqqdsgnrsseldqfkpqssqkfvvweukiulhuqnmgmtvls' />
943
+ <input type='hidden' id='LeadGen_ContactForm_26978_m0spam_check_sig' name='LeadGen_ContactForm_26978_m0spam_check_sig' value='' />
944
+
945
+ <table class="form-table">
946
+
947
+ <tr valign="top">
948
+ <th scope="row">
949
+ <label for="LeadGen_ContactForm_26978_m0_FullName"><?php _e('Full Name', FB_SWP_TEXTDOMAIN); ?></label>
950
+ </th>
951
+ <td>
952
+ <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); ?>
953
+ </td>
954
+ </tr>
955
+ <tr valign="top">
956
+ <th scope="row">
957
+ <label for="LeadGen_ContactForm_26978_m0_Email"><?php _e('eMail Adress', FB_SWP_TEXTDOMAIN); ?></label>
958
+ </th>
959
+ <td>
960
+ <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); ?>
961
+ </td>
962
+ </tr>
963
+ <tr valign="top">
964
+ <th scope="row">
965
+ <label for="LeadGen_ContactForm_26978_m0_WebSite"><?php _e('Website', FB_SWP_TEXTDOMAIN); ?></label>
966
+ </th>
967
+ <td>
968
+ <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); ?>
969
+ </td>
970
+ </tr>
971
+ <tr valign="top">
972
+ <th scope="row">
973
+ <label for="LeadGen_ContactForm_26978_m0_Phone"><?php _e('Phone', FB_SWP_TEXTDOMAIN); ?></label>
974
+ </th>
975
+ <td>
976
+ <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); ?>
977
+ </td>
978
+ </tr>
979
+ <tr valign="top">
980
+ <th scope="row">
981
+ <label for="LeadGen_ContactForm_26978_m0_Field_Checkboxes_5_cb_0"><?php _e('Yes, I need help!', FB_SWP_TEXTDOMAIN); ?></label>
982
+ </th>
983
+ <td>
984
+ <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); ?>
985
+ </td>
986
+ </tr>
987
+ <tr valign="top">
988
+ <th scope="row">
989
+ <label for="LeadGen_ContactForm_26978_m0_Field_Checkboxes_7_cb_0"><?php _e('Terms and Conditions', FB_SWP_TEXTDOMAIN); ?></label>
990
+ </th>
991
+ <td>
992
+ <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); ?>
993
+ </td>
994
+ </tr>
995
+
996
+ </table>
997
+
998
+ <p class="submit">
999
+ <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); ?> &raquo;">
1000
+ </p>
1001
+ </form>
1002
+
1003
+ </div>
1004
+ </div>
1005
+ </div>
1006
+
1007
+ <div id="poststuff" class="ui-sortable meta-box-sortables">
1008
+ <div id="secure_wp_win_opt" class="postbox <?php echo $secure_wp_win_opt ?>" >
1009
+ <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
1010
+ <h3 id="uninstall"><?php _e('Safe Seal', FB_SWP_TEXTDOMAIN) ?></h3>
1011
+ <div class="inside">
1012
+
1013
+ <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>
1014
+
1015
+ <script type="text/javascript">
1016
+ function updateSealPreview()
1017
+ {
1018
+ var seal_color = document.forms['seal_form'].seal_color.options[document.forms['seal_form'].seal_color.options.selectedIndex].value;
1019
+ var seal_text = document.forms['seal_form'].seal_text.options[document.forms['seal_form'].seal_text.options.selectedIndex].value;
1020
+ var seal_orientation = document.forms['seal_form'].seal_orientation.options[document.forms['seal_form'].seal_orientation.options.selectedIndex].value;
1021
+ var seal_border = document.forms['seal_form'].seal_border.checked?"border":"noborder";
1022
+ var country = document.forms['seal_form'].country.options[document.forms['seal_form'].country.options.selectedIndex].value;
1023
+ var image_name = "https://reporting.sitesecuritymonitor.com/img_wp/<?php echo $_SERVER['HTTP_HOST']; ?>/" + seal_color + "_" + seal_text + "_" + seal_orientation + "_notext_" + seal_border + ".png";
1024
+ document.seal_preview.src = image_name;
1025
+ var gen_code = "<!-- Start sitesecuritymonitor.com code -->\n";
1026
+ 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";
1027
+ gen_code += "<img src='" + image_name + "' oncontextmenu='return false;' border='0' alt='sitesecuritymonitor.com seal' />\n";
1028
+ gen_code += "</a>\n";
1029
+ gen_code += "<br />\n";
1030
+ 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";
1031
+ gen_code += "<!-- End sitesecuritymonitor.com code -->\n";
1032
+ document.getElementById('seal_code').value = gen_code;
1033
+ }
1034
+ </script>
1035
+ <form name="seal_form" action="javascript:void(0);" method="post" onsubmit="return false;">
1036
+
1037
+ <table class="form-table">
1038
+ <tr valign="top">
1039
+ <th scope="row">
1040
+ <label for="seal_color"><?php _e('Color', FB_SWP_TEXTDOMAIN); ?></label>
1041
+ </th>
1042
+ <td>
1043
+ <select id="seal_color" name="seal_color" onchange="javascript:updateSealPreview();">
1044
+ <option value="green" selected="selected"><?php _e('Green', FB_SWP_TEXTDOMAIN); ?></option>
1045
+ <option value="blue"><?php _e('Blue', FB_SWP_TEXTDOMAIN); ?></option>
1046
+ <option value="red"><?php _e('Red', FB_SWP_TEXTDOMAIN); ?></option>
1047
+ <option value="brown"><?php _e('Brown', FB_SWP_TEXTDOMAIN); ?></option>
1048
+ <option value="gray"><?php _e('Gray', FB_SWP_TEXTDOMAIN); ?></option>
1049
+ </select>
1050
+ </td>
1051
+ <td rowspan="5">
1052
+ <img src="" name="seal_preview" oncontextmenu='return false;' style="float:right; margin:10px;" />
1053
+ </td>
1054
+ </tr>
1055
+ <tr valign="top">
1056
+ <th scope="row">
1057
+ <label for="seal_text"><?php _e('Text', FB_SWP_TEXTDOMAIN); ?></label>
1058
+ </th>
1059
+ <td>
1060
+ <select id="seal_text" name="seal_text" onchange="javascript:updateSealPreview();">
1061
+ <option value="pr" selected="selected"><?php _e('Protected', FB_SWP_TEXTDOMAIN); ?></option>
1062
+ <option value="se"><?php _e('Secured', FB_SWP_TEXTDOMAIN); ?></option>
1063
+ <option value="sc"><?php _e('Scanned', FB_SWP_TEXTDOMAIN); ?></option>
1064
+ <option value="pb"><?php _e('Protected by', FB_SWP_TEXTDOMAIN); ?></option>
1065
+ </select>
1066
+ </td>
1067
+ </tr>
1068
+ <tr valign="top">
1069
+ <th scope="row">
1070
+ <label for="seal_orientation"><?php _e('Orientation', FB_SWP_TEXTDOMAIN); ?></label>
1071
+ </th>
1072
+ <td>
1073
+ <select id="seal_orientation" name="seal_orientation" onchange="javascript:updateSealPreview();">
1074
+ <option value="h" selected="selected"><?php _e('Horizontal', FB_SWP_TEXTDOMAIN); ?></option>
1075
+ <option value="v"><?php _e('Vertical', FB_SWP_TEXTDOMAIN); ?></option>
1076
+ </select>
1077
+ </td>
1078
+ </tr>
1079
+ <tr valign="top">
1080
+ <th scope="row">
1081
+ <label for="seal_border"><?php _e('Image border', FB_SWP_TEXTDOMAIN); ?></label>
1082
+ </th>
1083
+ <td>
1084
+ <input id="seal_border" type="checkbox" name="seal_border" onchange="javascript:updateSealPreview();" />
1085
+ </td>
1086
+ </tr>
1087
+ <tr valign="top">
1088
+ <th scope="row">
1089
+ <label for="country"><?php _e('Language', FB_SWP_TEXTDOMAIN); ?></label>
1090
+ </th>
1091
+ <td>
1092
+ <select id="country" name="country" onchange="javascript:updateSealPreview();">
1093
+ <option value="EN-US" selected="selected"><?php _e('English (US)', FB_SWP_TEXTDOMAIN); ?></option>
1094
+ <option value="EN-GB"><?php _e('English (UK)', FB_SWP_TEXTDOMAIN); ?></option>
1095
+ <option value="ES"><?php _e('Spanish', FB_SWP_TEXTDOMAIN); ?></option>
1096
+ <option value="DE"><?php _e('German', FB_SWP_TEXTDOMAIN); ?></option>
1097
+ <option value="IT"><?php _e('Italian', FB_SWP_TEXTDOMAIN); ?></option>
1098
+ <option value="JP"><?php _e('Japanese', FB_SWP_TEXTDOMAIN); ?></option>
1099
+ <option value="CN"><?php _e('Chinese (Simplified)', FB_SWP_TEXTDOMAIN); ?></option>
1100
+ <option value="CNT"><?php _e('Chinese (Traditional)', FB_SWP_TEXTDOMAIN); ?></option>
1101
+ </select>
1102
+ </td>
1103
+ </tr>
1104
+ </table>
1105
+
1106
+ </form>
1107
+
1108
+ <h4><?php _e( 'Source', FB_SWP_TEXTDOMAIN ); ?></h4>
1109
+ <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>
1110
+ <textarea id="seal_code" name="seal_code" rows="10" cols="50" class="large-text code"></textarea>
1111
+
1112
+ <script type="text/javascript">
1113
+ updateSealPreview();
1114
+ </script>
1115
+
1116
+ <iframe src="http://www.facebook.com/plugins/likebox.php?id=346589752350&amp;width=680&amp;connections=10&amp;stream=true&amp;header=true&amp;height=587" scrolling="no" frameborder="0" style="margin:10px auto; border:none; overflow:hidden; width:680px; height:587px;" allowTransparency="true"></iframe>
1117
+ </div>
1118
+ </div>
1119
+ </div>
1120
+
1121
+ <div id="poststuff" class="ui-sortable meta-box-sortables">
1122
+ <div id="secure_wp_win_opt" class="postbox <?php echo $secure_wp_win_opt ?>" >
1123
+ <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br/></div>
1124
+ <h3 id="uninstall"><?php _e('Clear Options', FB_SWP_TEXTDOMAIN) ?></h3>
1125
+ <div class="inside">
1126
+
1127
+ <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>
1128
+ <form name="deinstall_options" method="post" action="admin-post.php">
1129
+ <?php if (function_exists('wp_nonce_field') === true) wp_nonce_field('secure_wp_uninstall_form'); ?>
1130
+ <p id="submitbutton">
1131
+ <input type="hidden" name="action" value="swp_uninstall" />
1132
+ <input type="submit" value="<?php _e('Delete Options', FB_SWP_TEXTDOMAIN); ?> &raquo;" class="button-secondary" />
1133
+ <input type="checkbox" name="deinstall_yes" />
1134
+ </p>
1135
+ </form>
1136
+
1137
+ </div>
1138
+ </div>
1139
+ </div>
1140
+
1141
+ </div>
1142
+ <?php
1143
+ }
1144
+
1145
+ }
1146
+ }
1147
+
1148
+
1149
+ if ( !class_exists('WPlize') ) {
1150
+ require_once('inc/WPlize.php');
1151
+ }
1152
+
1153
+ if ( class_exists('SecureWP') && class_exists('WPlize') && function_exists('is_admin') ) {
1154
+ $SecureWP = new SecureWP();
1155
+ }
1156
+ ?>
uninstall.php ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ if( !defined( 'ABSPATH') && !defined('WP_UNINSTALL_PLUGIN') )
2
+ exit();
3
+
4
+ delete_option( 'secure-wp' );