Version Description
- Language updates by wp-translations.org (Arabic, Dutch, French, Persian, Russian).
Download this release
Release Info
Developer | husobj |
Plugin | Password Protected |
Version | 1.6.1 |
Comparing to | |
See all releases |
Code changes from version 1.6 to 1.6.1
- admin/admin.php +34 -1
- languages/password-protected-ar.mo +0 -0
- languages/password-protected-ar.po +173 -0
- languages/password-protected-fa_IR.mo +0 -0
- languages/password-protected-fa_IR.po +173 -0
- languages/password-protected-fr_FR.mo +0 -0
- languages/password-protected-fr_FR.po +212 -0
- languages/password-protected-nl_NL.mo +0 -0
- languages/password-protected-nl_NL.po +173 -0
- languages/password-protected-ru_RU.mo +0 -0
- languages/password-protected-ru_RU.po +173 -0
- languages/password-protected.pot +158 -0
- languages/readme.txt +12 -0
- password-protected.php +3 -2
- readme.txt +5 -2
admin/admin.php
CHANGED
@@ -14,6 +14,8 @@ class Password_Protected_Admin {
|
|
14 |
add_action( 'admin_menu', array( $this, 'admin_menu' ) );
|
15 |
add_action( 'password_protected_help_tabs', array( $this, 'help_tabs' ), 5 );
|
16 |
add_action( 'admin_notices', array( $this, 'password_protected_admin_notices' ) );
|
|
|
|
|
17 |
add_filter( 'pre_update_option_password_protected_password', array( $this, 'pre_update_option_password_protected_password' ), 10, 2 );
|
18 |
add_filter( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
|
19 |
}
|
@@ -171,7 +173,38 @@ class Password_Protected_Admin {
|
|
171 |
}
|
172 |
return $newvalue;
|
173 |
}
|
174 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
/**
|
176 |
* Password Admin Notice
|
177 |
* Warns the user if they have enabled password protection but not entered a password
|
14 |
add_action( 'admin_menu', array( $this, 'admin_menu' ) );
|
15 |
add_action( 'password_protected_help_tabs', array( $this, 'help_tabs' ), 5 );
|
16 |
add_action( 'admin_notices', array( $this, 'password_protected_admin_notices' ) );
|
17 |
+
add_filter( 'plugin_row_meta', array( $this, 'plugin_row_meta' ), 10, 4 );
|
18 |
+
add_filter( 'plugin_action_links_password-protected/password-protected.php', array( $this, 'plugin_action_links' ) );
|
19 |
add_filter( 'pre_update_option_password_protected_password', array( $this, 'pre_update_option_password_protected_password' ), 10, 2 );
|
20 |
add_filter( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
|
21 |
}
|
173 |
}
|
174 |
return $newvalue;
|
175 |
}
|
176 |
+
|
177 |
+
/**
|
178 |
+
* Plugin Row Meta
|
179 |
+
*
|
180 |
+
* Adds GitHub link below the plugin description on the plugins page.
|
181 |
+
*
|
182 |
+
* @param array $plugin_meta Plugin meta display array.
|
183 |
+
* @param string $plugin_file Plugin reference.
|
184 |
+
* @param array $plugin_data Plugin data.
|
185 |
+
* @param string $status Plugin status.
|
186 |
+
* @return array Plugin meta array.
|
187 |
+
*/
|
188 |
+
function plugin_row_meta( $plugin_meta, $plugin_file, $plugin_data, $status ) {
|
189 |
+
if ( 'password-protected/password-protected.php' == $plugin_file ) {
|
190 |
+
$plugin_meta[] = sprintf( '<a href="%s">%s</a>', __( 'http://github.com/benhuson/password-protected', 'password-protected' ), __( 'GitHub', 'password-protected' ) );
|
191 |
+
}
|
192 |
+
return $plugin_meta;
|
193 |
+
}
|
194 |
+
|
195 |
+
/**
|
196 |
+
* Plugin Action Links
|
197 |
+
*
|
198 |
+
* Adds settings link on the plugins page.
|
199 |
+
*
|
200 |
+
* @param array $actions Plugin action links array.
|
201 |
+
* @return array Plugin action links array.
|
202 |
+
*/
|
203 |
+
function plugin_action_links( $actions ) {
|
204 |
+
$actions[] = sprintf( '<a href="%s">%s</a>', admin_url( 'options-general.php?page=password-protected' ), __( 'Settings', 'password-protected' ) );
|
205 |
+
return $actions;
|
206 |
+
}
|
207 |
+
|
208 |
/**
|
209 |
* Password Admin Notice
|
210 |
* Warns the user if they have enabled password protection but not entered a password
|
languages/password-protected-ar.mo
ADDED
Binary file
|
languages/password-protected-ar.po
ADDED
@@ -0,0 +1,173 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2013 Password Protected
|
2 |
+
# This file is distributed under the same license as the Password Protected package.
|
3 |
+
# Translators:
|
4 |
+
# Mamdouh Samy <asyuti47@yahoo.com>, 2013
|
5 |
+
msgid ""
|
6 |
+
msgstr ""
|
7 |
+
"Project-Id-Version: Password Protected\n"
|
8 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/password-protected\n"
|
9 |
+
"POT-Creation-Date: 2013-09-03 09:35:27+00:00\n"
|
10 |
+
"PO-Revision-Date: 2013-10-18 06:10+0000\n"
|
11 |
+
"Last-Translator: Mamdouh Samy <asyuti47@yahoo.com>\n"
|
12 |
+
"Language-Team: Arabic (http://www.transifex.com/projects/p/wp-translations/language/ar/)\n"
|
13 |
+
"MIME-Version: 1.0\n"
|
14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"Language: ar\n"
|
17 |
+
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
18 |
+
|
19 |
+
#. #-#-#-#-# password-protected.pot (Password Protected 1.6) #-#-#-#-#
|
20 |
+
#. Plugin Name of the plugin/theme
|
21 |
+
#: admin/admin.php:25 admin/admin.php:60
|
22 |
+
msgid "Password Protected"
|
23 |
+
msgstr "محمي بكلمة مرور"
|
24 |
+
|
25 |
+
#: admin/admin.php:35
|
26 |
+
msgid "Password Protected Settings"
|
27 |
+
msgstr "إعدادات الحماية بكلمة مرور"
|
28 |
+
|
29 |
+
#: admin/admin.php:39
|
30 |
+
msgid "Save Changes"
|
31 |
+
msgstr "حفظ التغييرات"
|
32 |
+
|
33 |
+
#: admin/admin.php:61
|
34 |
+
msgid ""
|
35 |
+
"<p><strong>Enabled Checkbox</strong><br />Turn on/off password "
|
36 |
+
"protection.</p>"
|
37 |
+
msgstr "<p><strong>Enabled Checkbox</strong><br />Turn on/off password protection.</p>"
|
38 |
+
|
39 |
+
#: admin/admin.php:62
|
40 |
+
msgid ""
|
41 |
+
"<p><strong>Allow RSS Feeds Checkbox</strong><br />RSS Feeds will be able to "
|
42 |
+
"accessed even when the site is password proteced.</p>"
|
43 |
+
msgstr "<p><strong>اختيار السماح بعناوين الخلاصات RSS </strong><br /> سيكون من الممكن الوصول لعناوين الخلاصات الخاصة بموقعك رغم أنه محمي بكلمة مرور</p>"
|
44 |
+
|
45 |
+
#: admin/admin.php:63
|
46 |
+
msgid ""
|
47 |
+
"<p><strong>Allow Administrators Checkbox</strong><br />Administrators will "
|
48 |
+
"not need to enter a password to view the site (providing they are logged in "
|
49 |
+
"of course). You will also need to enable this option if you want "
|
50 |
+
"administrators to be able to preview the site in the Theme Customizer.</p>"
|
51 |
+
msgstr "<p><strong>اختيار السماح للمديرين</strong><br /> سيكون بامكان المديرين مشاهدة الموقع بدون الحاجة لادخال كلمة المرور( بشرط أن يكونوا قد قاموا بتسجيل الدخول أولاً). و سيكون عليك تفعيل هذا الإختيار كذلك إذا كنت ترغب في تمكين المديرين من معاينة الموقع في مخصص القوالب.</p>"
|
52 |
+
|
53 |
+
#: admin/admin.php:64
|
54 |
+
msgid ""
|
55 |
+
"<p><strong>Password Fields</strong><br />To set a new password, enter it "
|
56 |
+
"into both fields. You cannot set an `empty` password. To disable password "
|
57 |
+
"protection uncheck the Enabled checkbox.</p>"
|
58 |
+
msgstr "<p><strong>حقول كلمة المرور</strong><br /> لتعيين كلمة سر جديدة ادخلها في كلا المربعين. لا يمكنك تعيين خانة فارغة لكلمة المرور. لتعطيل الحماية بكلمة المرور قم بإلغاء الإختيار تفعيل كلمة المرور. </p>"
|
59 |
+
|
60 |
+
#: admin/admin.php:90
|
61 |
+
msgid "Password Protected Status"
|
62 |
+
msgstr "حالة الحماية بكلمة مرور"
|
63 |
+
|
64 |
+
#: admin/admin.php:97
|
65 |
+
msgid "New Password"
|
66 |
+
msgstr "كلمة المرور الجديدة"
|
67 |
+
|
68 |
+
#: admin/admin.php:117
|
69 |
+
msgid ""
|
70 |
+
"New password not saved. When setting a new password please enter it in both "
|
71 |
+
"fields."
|
72 |
+
msgstr "كلمة المرور الجديدة لم تحفظ. عند تعيين كلمة مرور جديدة من فضلك ادخلها في كلا المربعين."
|
73 |
+
|
74 |
+
#: admin/admin.php:120
|
75 |
+
msgid "New password not saved. Password fields did not match."
|
76 |
+
msgstr "كلمة المرور الجديدة لم تحفظ. الخانتين غير متطابقين"
|
77 |
+
|
78 |
+
#: admin/admin.php:123
|
79 |
+
msgid "New password saved."
|
80 |
+
msgstr "تم حفظ كلم المرور الجديدة"
|
81 |
+
|
82 |
+
#: admin/admin.php:135
|
83 |
+
msgid ""
|
84 |
+
"Password protect your web site. Users will be asked to enter a password to "
|
85 |
+
"view the site."
|
86 |
+
msgstr "قم بحماية موقعك بكلمة مرور. سيتم سؤال المستخدمين لإدخال كلمة المرور لمشاهدة الموقع."
|
87 |
+
|
88 |
+
#: admin/admin.php:136
|
89 |
+
msgid ""
|
90 |
+
"For more information about Password Protected settings, view the \"Help\" "
|
91 |
+
"tab at the top of this page."
|
92 |
+
msgstr "لمزيد من المعلومات عن إعدادات حماية الموقع بكلمة سر, تفضل بزيارة تبويب\" المساعدة\" في أعلي هذه الصفحة."
|
93 |
+
|
94 |
+
#: admin/admin.php:143
|
95 |
+
msgid "Enabled"
|
96 |
+
msgstr "مفعل"
|
97 |
+
|
98 |
+
#: admin/admin.php:144
|
99 |
+
msgid "Allow RSS Feeds"
|
100 |
+
msgstr "السماح بعنوان الخلاصات RSS"
|
101 |
+
|
102 |
+
#: admin/admin.php:145
|
103 |
+
msgid "Allow Administrators"
|
104 |
+
msgstr "السماح للمديرين"
|
105 |
+
|
106 |
+
#: admin/admin.php:152
|
107 |
+
msgid ""
|
108 |
+
"If you would like to change the password type a new one. Otherwise leave "
|
109 |
+
"this blank."
|
110 |
+
msgstr "إذا أردت تغيير كلمة المرور فاكتب واحدة جديدة، وإلا فاترك المربعين فارغين"
|
111 |
+
|
112 |
+
#: admin/admin.php:153
|
113 |
+
msgid "Type your new password again."
|
114 |
+
msgstr "اكتب كلمة المرور الجديدة مرة أخرى"
|
115 |
+
|
116 |
+
#: admin/admin.php:185
|
117 |
+
msgid ""
|
118 |
+
"You have enabled password protection but not yet set a password. Please set "
|
119 |
+
"one below."
|
120 |
+
msgstr "قمت بتفعيل الحماية بكلمة المرور و لكنك لم تقم بتعيين كلمة المرور بعد. من فضلك حدد واحدة بالأسفل."
|
121 |
+
|
122 |
+
#: admin/admin.php:188
|
123 |
+
msgid ""
|
124 |
+
"You have enabled password protection and allowed administrators - other "
|
125 |
+
"users will still need to login to view the site."
|
126 |
+
msgstr "قمت بتفعيل الحماية بواسطة كلمة المرور و السماح للمديرين فقط, باقي المستخدمين سيحتاجون لتسجيل الدخول لمشاهدة الموقع."
|
127 |
+
|
128 |
+
#: password-protected.php:110
|
129 |
+
msgid ""
|
130 |
+
"Feeds are not available for this site. Please visit the <a "
|
131 |
+
"href=\"%s\">website</a>."
|
132 |
+
msgstr "الخلاصات غير متاحة لهذا الموقع. من فضلك قم بزيارة <a href=\"%s\">الموقع</a>"
|
133 |
+
|
134 |
+
#: password-protected.php:155
|
135 |
+
msgid "Incorrect Password"
|
136 |
+
msgstr "كلمة مرور غير صحيحة."
|
137 |
+
|
138 |
+
#: theme/login.php:40
|
139 |
+
msgid ""
|
140 |
+
"<strong>ERROR</strong>: Cookies are blocked or not supported by your "
|
141 |
+
"browser. You must <a href='http://www.google.com/cookies.html'>enable "
|
142 |
+
"cookies</a> to use WordPress."
|
143 |
+
msgstr "<strong>خطأ</strong>: متصفح الإنترنت الخاص بك لا يدعم الكوكيز. يجب عليك <a href='http://www.google.com/cookies.html'>تفعيل الكوكيز</a> لاستخدام الووردبريس."
|
144 |
+
|
145 |
+
#: theme/login.php:122
|
146 |
+
msgid "Password"
|
147 |
+
msgstr "كلمة المرور"
|
148 |
+
|
149 |
+
#: theme/login.php:126
|
150 |
+
msgid "Remember Me"
|
151 |
+
msgstr "تذكرني"
|
152 |
+
|
153 |
+
#: theme/login.php:129
|
154 |
+
msgid "Log In"
|
155 |
+
msgstr "تسجيل الدخول"
|
156 |
+
|
157 |
+
#. Plugin URI of the plugin/theme
|
158 |
+
msgid "http://wordpress.org/extend/plugins/password-protected/"
|
159 |
+
msgstr "http://wordpress.org/extend/plugins/password-protected/"
|
160 |
+
|
161 |
+
#. Description of the plugin/theme
|
162 |
+
msgid ""
|
163 |
+
"A very simple way to quickly password protect your WordPress site with a "
|
164 |
+
"single password. Integrates seamlessly into your WordPress privacy settings."
|
165 |
+
msgstr "طريقة بسيطة لحماية موقعك باستخدام كلمة مرور واحدة. تندمج بسهولة مع إعدادات الخصوصية للووردبريس الخاصة بك."
|
166 |
+
|
167 |
+
#. Author of the plugin/theme
|
168 |
+
msgid "Ben Huson"
|
169 |
+
msgstr "Ben Huson"
|
170 |
+
|
171 |
+
#. Author URI of the plugin/theme
|
172 |
+
msgid "http://www.benhuson.co.uk/"
|
173 |
+
msgstr "http://www.benhuson.co.uk/"
|
languages/password-protected-fa_IR.mo
ADDED
Binary file
|
languages/password-protected-fa_IR.po
ADDED
@@ -0,0 +1,173 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2013 Password Protected
|
2 |
+
# This file is distributed under the same license as the Password Protected package.
|
3 |
+
# Translators:
|
4 |
+
# Reza_Moghadam <r.moghadam@hotmail.com>, 2013
|
5 |
+
msgid ""
|
6 |
+
msgstr ""
|
7 |
+
"Project-Id-Version: Password Protected\n"
|
8 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/password-protected\n"
|
9 |
+
"POT-Creation-Date: 2013-09-03 09:35:27+00:00\n"
|
10 |
+
"PO-Revision-Date: 2013-10-31 17:10+0000\n"
|
11 |
+
"Last-Translator: Reza_Moghadam <r.moghadam@hotmail.com>\n"
|
12 |
+
"Language-Team: Persian (Iran) (http://www.transifex.com/projects/p/wp-translations/language/fa_IR/)\n"
|
13 |
+
"MIME-Version: 1.0\n"
|
14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"Language: fa_IR\n"
|
17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
+
|
19 |
+
#. #-#-#-#-# password-protected.pot (Password Protected 1.6) #-#-#-#-#
|
20 |
+
#. Plugin Name of the plugin/theme
|
21 |
+
#: admin/admin.php:25 admin/admin.php:60
|
22 |
+
msgid "Password Protected"
|
23 |
+
msgstr "رمزدار"
|
24 |
+
|
25 |
+
#: admin/admin.php:35
|
26 |
+
msgid "Password Protected Settings"
|
27 |
+
msgstr "رمز عبور تنظیمات حفاظت شده"
|
28 |
+
|
29 |
+
#: admin/admin.php:39
|
30 |
+
msgid "Save Changes"
|
31 |
+
msgstr "ذخیره تغییرات"
|
32 |
+
|
33 |
+
#: admin/admin.php:61
|
34 |
+
msgid ""
|
35 |
+
"<p><strong>Enabled Checkbox</strong><br />Turn on/off password "
|
36 |
+
"protection.</p>"
|
37 |
+
msgstr "<p><strong>فعال جعبه </strong><br /> روشن روشن / خاموش حفاظت از رمز عبور </p>"
|
38 |
+
|
39 |
+
#: admin/admin.php:62
|
40 |
+
msgid ""
|
41 |
+
"<p><strong>Allow RSS Feeds Checkbox</strong><br />RSS Feeds will be able to "
|
42 |
+
"accessed even when the site is password proteced.</p>"
|
43 |
+
msgstr "<p><strong> اجازه می دهد جعبه آر اس اس</strong><br /> آر اس اس قادر خواهد بود به دیده حتی زمانی که سایت رمز عبور proteced است. </p>"
|
44 |
+
|
45 |
+
#: admin/admin.php:63
|
46 |
+
msgid ""
|
47 |
+
"<p><strong>Allow Administrators Checkbox</strong><br />Administrators will "
|
48 |
+
"not need to enter a password to view the site (providing they are logged in "
|
49 |
+
"of course). You will also need to enable this option if you want "
|
50 |
+
"administrators to be able to preview the site in the Theme Customizer.</p>"
|
51 |
+
msgstr "<p><strong> اجازه می دهد مدیران جعبه است</strong><br /> مدیران نمی خواهد نیاز به وارد کردن رمز عبور برای دیدن سایت (با ارائه آنها در سیستم وارد شده باشد البته). همچنین شما می خواهد نیاز به فعال کردن این گزینه اگر شما می خواهید مدیران قادر به پیش نمایش سایت در Customizer تم </p>"
|
52 |
+
|
53 |
+
#: admin/admin.php:64
|
54 |
+
msgid ""
|
55 |
+
"<p><strong>Password Fields</strong><br />To set a new password, enter it "
|
56 |
+
"into both fields. You cannot set an `empty` password. To disable password "
|
57 |
+
"protection uncheck the Enabled checkbox.</p>"
|
58 |
+
msgstr "زمینه رمز عبور <P> <STRONG> </ قوی> <br /> برای تنظیم رمز عبور جدید، آن را به هر دو زمینه را وارد کنید. شما می توانید `خالی` رمز عبور رمز عبور خود را فراموش کرده اید؟ تنظیم نیست. برای غیر فعال کردن حفاظت از رمز عبور برداشتن تیک چک باکس گزینه را فعال کنید. </ P>"
|
59 |
+
|
60 |
+
#: admin/admin.php:90
|
61 |
+
msgid "Password Protected Status"
|
62 |
+
msgstr "وضعیت حفاظت رمز عبور"
|
63 |
+
|
64 |
+
#: admin/admin.php:97
|
65 |
+
msgid "New Password"
|
66 |
+
msgstr "رمز تازه"
|
67 |
+
|
68 |
+
#: admin/admin.php:117
|
69 |
+
msgid ""
|
70 |
+
"New password not saved. When setting a new password please enter it in both "
|
71 |
+
"fields."
|
72 |
+
msgstr "رمز عبور جدید ذخیره نشده. هنگامی که یک رمز عبور جدید لطفا آن را در هر دو زمینه را وارد کنید."
|
73 |
+
|
74 |
+
#: admin/admin.php:120
|
75 |
+
msgid "New password not saved. Password fields did not match."
|
76 |
+
msgstr "رمز عبور جدید ذخیره نشده.زمینه های رمز عبور مطابقت ندارد."
|
77 |
+
|
78 |
+
#: admin/admin.php:123
|
79 |
+
msgid "New password saved."
|
80 |
+
msgstr "رمز عبور جدید را نجات داد."
|
81 |
+
|
82 |
+
#: admin/admin.php:135
|
83 |
+
msgid ""
|
84 |
+
"Password protect your web site. Users will be asked to enter a password to "
|
85 |
+
"view the site."
|
86 |
+
msgstr "رمز عبور محافظت از وب سایت خود را. کاربران خواسته خواهد شد که برای ورود به یک رمز عبور برای مشاهده سایت."
|
87 |
+
|
88 |
+
#: admin/admin.php:136
|
89 |
+
msgid ""
|
90 |
+
"For more information about Password Protected settings, view the \"Help\" "
|
91 |
+
"tab at the top of this page."
|
92 |
+
msgstr "برای کسب اطلاعات بیشتر در مورد تنظیمات حفاظت رمز عبور، مشاهده \"راهنما\" تب در بالای این صفحه."
|
93 |
+
|
94 |
+
#: admin/admin.php:143
|
95 |
+
msgid "Enabled"
|
96 |
+
msgstr "فعال"
|
97 |
+
|
98 |
+
#: admin/admin.php:144
|
99 |
+
msgid "Allow RSS Feeds"
|
100 |
+
msgstr "اجازه می دهد آر اس اس"
|
101 |
+
|
102 |
+
#: admin/admin.php:145
|
103 |
+
msgid "Allow Administrators"
|
104 |
+
msgstr "اجازه می دهد مدیران"
|
105 |
+
|
106 |
+
#: admin/admin.php:152
|
107 |
+
msgid ""
|
108 |
+
"If you would like to change the password type a new one. Otherwise leave "
|
109 |
+
"this blank."
|
110 |
+
msgstr "اگر میخواهید رمز کاربران را بهروز کنید، رمز تازه را بنویسید. وگرنه آن را خالی بگذارید."
|
111 |
+
|
112 |
+
#: admin/admin.php:153
|
113 |
+
msgid "Type your new password again."
|
114 |
+
msgstr "رمز تازهی خود را دوباره بنویسید."
|
115 |
+
|
116 |
+
#: admin/admin.php:185
|
117 |
+
msgid ""
|
118 |
+
"You have enabled password protection but not yet set a password. Please set "
|
119 |
+
"one below."
|
120 |
+
msgstr "حفاظت از رمز عبور را فعال کرده اید اما هنوز یک رمز عبور. لطفا یکی از زیر مجموعه."
|
121 |
+
|
122 |
+
#: admin/admin.php:188
|
123 |
+
msgid ""
|
124 |
+
"You have enabled password protection and allowed administrators - other "
|
125 |
+
"users will still need to login to view the site."
|
126 |
+
msgstr "شما را فعال حفاظت از رمز عبور و مدیران اجازه - کاربران دیگر هنوز نیاز به برای مشاهده سایت وارد شوید."
|
127 |
+
|
128 |
+
#: password-protected.php:110
|
129 |
+
msgid ""
|
130 |
+
"Feeds are not available for this site. Please visit the <a "
|
131 |
+
"href=\"%s\">website</a>."
|
132 |
+
msgstr "اس اس برای این سایت در دسترس نیست. لطفا بازدید را <a href=\"%s\"> وب سایت</a>."
|
133 |
+
|
134 |
+
#: password-protected.php:155
|
135 |
+
msgid "Incorrect Password"
|
136 |
+
msgstr "رمز عبور نادرست"
|
137 |
+
|
138 |
+
#: theme/login.php:40
|
139 |
+
msgid ""
|
140 |
+
"<strong>ERROR</strong>: Cookies are blocked or not supported by your "
|
141 |
+
"browser. You must <a href='http://www.google.com/cookies.html'>enable "
|
142 |
+
"cookies</a> to use WordPress."
|
143 |
+
msgstr "<strong>خطا</strong>: کوکیها از کار افتادهاند یا کاوشگر شما از کوکیها پشتیبانی نمیکند. شما باید برای به کارگیری وردپرس <a href='http://www.google.com/cookies.html'>کوکیها را فعال کنید</a> "
|
144 |
+
|
145 |
+
#: theme/login.php:122
|
146 |
+
msgid "Password"
|
147 |
+
msgstr "رمز"
|
148 |
+
|
149 |
+
#: theme/login.php:126
|
150 |
+
msgid "Remember Me"
|
151 |
+
msgstr "مرا به خاطر بسپار"
|
152 |
+
|
153 |
+
#: theme/login.php:129
|
154 |
+
msgid "Log In"
|
155 |
+
msgstr "ورود"
|
156 |
+
|
157 |
+
#. Plugin URI of the plugin/theme
|
158 |
+
msgid "http://wordpress.org/extend/plugins/password-protected/"
|
159 |
+
msgstr "http://wordpress.org/extend/plugins/password-protected/"
|
160 |
+
|
161 |
+
#. Description of the plugin/theme
|
162 |
+
msgid ""
|
163 |
+
"A very simple way to quickly password protect your WordPress site with a "
|
164 |
+
"single password. Integrates seamlessly into your WordPress privacy settings."
|
165 |
+
msgstr "یک راه بسیار ساده را به سرعت رمز عبور محافظت از سایت وردپرس خود را با یک رمز عبور واحد. ادغام یکپارچه به تنظیمات حریم خصوصی خود را با وردپرس."
|
166 |
+
|
167 |
+
#. Author of the plugin/theme
|
168 |
+
msgid "Ben Huson"
|
169 |
+
msgstr "Ben Huson"
|
170 |
+
|
171 |
+
#. Author URI of the plugin/theme
|
172 |
+
msgid "http://www.benhuson.co.uk/"
|
173 |
+
msgstr "http://www.benhuson.co.uk/"
|
languages/password-protected-fr_FR.mo
ADDED
Binary file
|
languages/password-protected-fr_FR.po
ADDED
@@ -0,0 +1,212 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2013 Password Protected
|
2 |
+
# This file is distributed under the same license as the Password Protected package.
|
3 |
+
# Translators:
|
4 |
+
# Francois-Xavier Bénard <fxb@wp-translations.org>, 2013
|
5 |
+
# Francois-Xavier Bénard <fxb@wp-translations.org>, 2013
|
6 |
+
msgid ""
|
7 |
+
msgstr ""
|
8 |
+
"Project-Id-Version: Password Protected\n"
|
9 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/password-protected\n"
|
10 |
+
"POT-Creation-Date: 2013-09-03 09:35:27+00:00\n"
|
11 |
+
"PO-Revision-Date: 2013-11-09 15:44+0100\n"
|
12 |
+
"Last-Translator: FxB <fx@fxbenard.com>\n"
|
13 |
+
"Language-Team: French (France) (http://www.transifex.com/projects/p/wp-"
|
14 |
+
"translations/language/fr_FR/)\n"
|
15 |
+
"MIME-Version: 1.0\n"
|
16 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
+
"Content-Transfer-Encoding: 8bit\n"
|
18 |
+
"Language: fr_FR\n"
|
19 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
20 |
+
"X-Generator: Poedit 1.5.7\n"
|
21 |
+
|
22 |
+
#. #-#-#-#-# password-protected.pot (Password Protected 1.6) #-#-#-#-#
|
23 |
+
#. Plugin Name of the plugin/theme
|
24 |
+
#: admin/admin.php:25 admin/admin.php:60
|
25 |
+
msgid "Password Protected"
|
26 |
+
msgstr "Password Protected"
|
27 |
+
|
28 |
+
#: admin/admin.php:35
|
29 |
+
msgid "Password Protected Settings"
|
30 |
+
msgstr "Réglages de Password Protected"
|
31 |
+
|
32 |
+
#: admin/admin.php:39
|
33 |
+
msgid "Save Changes"
|
34 |
+
msgstr "Enregistrer les modifications"
|
35 |
+
|
36 |
+
#: admin/admin.php:61
|
37 |
+
msgid ""
|
38 |
+
"<p><strong>Enabled Checkbox</strong><br />Turn on/off password protection.</"
|
39 |
+
"p>"
|
40 |
+
msgstr ""
|
41 |
+
"<p><strong>Activer la case à cocher</strong><br />Activer/désactiver la "
|
42 |
+
"protection par mot de passe.</p>"
|
43 |
+
|
44 |
+
#: admin/admin.php:62
|
45 |
+
msgid ""
|
46 |
+
"<p><strong>Allow RSS Feeds Checkbox</strong><br />RSS Feeds will be able to "
|
47 |
+
"accessed even when the site is password proteced.</p>"
|
48 |
+
msgstr ""
|
49 |
+
"<p><strong>Activer la case à cocher des flux RSS</strong><br />Les flux RSS "
|
50 |
+
"auront l'accès même lorsque le site est protégé de mot de passe.</p>"
|
51 |
+
|
52 |
+
#: admin/admin.php:63
|
53 |
+
msgid ""
|
54 |
+
"<p><strong>Allow Administrators Checkbox</strong><br />Administrators will "
|
55 |
+
"not need to enter a password to view the site (providing they are logged in "
|
56 |
+
"of course). You will also need to enable this option if you want "
|
57 |
+
"administrators to be able to preview the site in the Theme Customizer.</p>"
|
58 |
+
msgstr ""
|
59 |
+
"<p><strong>Activer la case à cocher des administrateurs</strong><br />Les "
|
60 |
+
"administrateurs ne devront pas entrer de mot de passe pour accéder au site "
|
61 |
+
"(à condition qu'ils soient connectés bien sûr). Vous devrez aussi activer "
|
62 |
+
"cette option si vous souhaitez que les administrateurs puissent accéder à "
|
63 |
+
"l'aperçu du site dans le thème Customizer.</p>"
|
64 |
+
|
65 |
+
#: admin/admin.php:64
|
66 |
+
msgid ""
|
67 |
+
"<p><strong>Password Fields</strong><br />To set a new password, enter it "
|
68 |
+
"into both fields. You cannot set an `empty` password. To disable password "
|
69 |
+
"protection uncheck the Enabled checkbox.</p>"
|
70 |
+
msgstr ""
|
71 |
+
"<p><strong>Champs des mots de passe</strong><br />Pour définir un nouveau "
|
72 |
+
"mot de passe, entrez-le dans les deux champs. Vous ne pouvez pas définir un "
|
73 |
+
"mot de passe « vide ». Pour désactiver le mot de passe protection décochez "
|
74 |
+
"la case d'activation.</p>"
|
75 |
+
|
76 |
+
#: admin/admin.php:90
|
77 |
+
msgid "Password Protected Status"
|
78 |
+
msgstr "État de Password Protected "
|
79 |
+
|
80 |
+
#: admin/admin.php:97
|
81 |
+
msgid "New Password"
|
82 |
+
msgstr "Nouveau mot de passe"
|
83 |
+
|
84 |
+
#: admin/admin.php:117
|
85 |
+
msgid ""
|
86 |
+
"New password not saved. When setting a new password please enter it in both "
|
87 |
+
"fields."
|
88 |
+
msgstr ""
|
89 |
+
"Le nouveau mot de passe n'est pas enregistré. Quand vous configurez un "
|
90 |
+
"nouveau mot de passe, entrez le dans les deux champs."
|
91 |
+
|
92 |
+
#: admin/admin.php:120
|
93 |
+
msgid "New password not saved. Password fields did not match."
|
94 |
+
msgstr ""
|
95 |
+
"Le nouveau mot de passe n'est pas enregistré. Les champs ne correspondent "
|
96 |
+
"pas."
|
97 |
+
|
98 |
+
#: admin/admin.php:123
|
99 |
+
msgid "New password saved."
|
100 |
+
msgstr "Nouveau mot de passe enregistré."
|
101 |
+
|
102 |
+
#: admin/admin.php:135
|
103 |
+
msgid ""
|
104 |
+
"Password protect your web site. Users will be asked to enter a password to "
|
105 |
+
"view the site."
|
106 |
+
msgstr ""
|
107 |
+
"Protéger votre site avec un mot de passe. Les utilisateurs devront saisir un "
|
108 |
+
"mot de passe pour accéder au site."
|
109 |
+
|
110 |
+
#: admin/admin.php:136
|
111 |
+
msgid ""
|
112 |
+
"For more information about Password Protected settings, view the \"Help\" "
|
113 |
+
"tab at the top of this page."
|
114 |
+
msgstr ""
|
115 |
+
"Pour plus d'infos sur les réglages de Password Protected, rendez-vous dans "
|
116 |
+
"l'onglet \"Aide\" en haut de la page."
|
117 |
+
|
118 |
+
#: admin/admin.php:143
|
119 |
+
msgid "Enabled"
|
120 |
+
msgstr "Activé"
|
121 |
+
|
122 |
+
#: admin/admin.php:144
|
123 |
+
msgid "Allow RSS Feeds"
|
124 |
+
msgstr "Autoriser les flux RSS"
|
125 |
+
|
126 |
+
#: admin/admin.php:145
|
127 |
+
msgid "Allow Administrators"
|
128 |
+
msgstr "Autoriser les administrateurs"
|
129 |
+
|
130 |
+
#: admin/admin.php:152
|
131 |
+
msgid ""
|
132 |
+
"If you would like to change the password type a new one. Otherwise leave "
|
133 |
+
"this blank."
|
134 |
+
msgstr ""
|
135 |
+
"Si vous souhaitez changer le mot de passe, tapez en un nouveau. Sinon, "
|
136 |
+
"laissez les champs vides."
|
137 |
+
|
138 |
+
#: admin/admin.php:153
|
139 |
+
msgid "Type your new password again."
|
140 |
+
msgstr "Veuillez saisir une deuxième fois votre mot de passe."
|
141 |
+
|
142 |
+
#: admin/admin.php:185
|
143 |
+
msgid ""
|
144 |
+
"You have enabled password protection but not yet set a password. Please set "
|
145 |
+
"one below."
|
146 |
+
msgstr ""
|
147 |
+
"Vous avez activé la protection par mot de passe, mais n'en avez pas défini "
|
148 |
+
"un. S'il vous plaît en définir un ci-dessous."
|
149 |
+
|
150 |
+
#: admin/admin.php:188
|
151 |
+
msgid ""
|
152 |
+
"You have enabled password protection and allowed administrators - other "
|
153 |
+
"users will still need to login to view the site."
|
154 |
+
msgstr ""
|
155 |
+
"Vous avez activé la protection par mot de passe et autorisé les "
|
156 |
+
"administrateurs - les autres utilisateurs devront toujours se connecter pour "
|
157 |
+
"accéder à votre site."
|
158 |
+
|
159 |
+
#: password-protected.php:110
|
160 |
+
msgid ""
|
161 |
+
"Feeds are not available for this site. Please visit the <a href=\"%s"
|
162 |
+
"\">website</a>."
|
163 |
+
msgstr ""
|
164 |
+
"Les flux ne sont pas disponibles sur ce site. S'il vous plaît rendez-vous "
|
165 |
+
"sur le <a href=\"%s\">site web</a>."
|
166 |
+
|
167 |
+
#: password-protected.php:155
|
168 |
+
msgid "Incorrect Password"
|
169 |
+
msgstr "Mot de passe incorrect"
|
170 |
+
|
171 |
+
#: theme/login.php:40
|
172 |
+
msgid ""
|
173 |
+
"<strong>ERROR</strong>: Cookies are blocked or not supported by your "
|
174 |
+
"browser. You must <a href='http://www.google.com/cookies.html'>enable "
|
175 |
+
"cookies</a> to use WordPress."
|
176 |
+
msgstr ""
|
177 |
+
"<strong>ERREUR</strong> : les cookies sont bloqués ou ne sont pas "
|
178 |
+
"reconnus pas votre navigateur. Vous devez <a href='http://www.google.com/"
|
179 |
+
"cookies.html'>activer les cookies</a> pour utiliser WordPress."
|
180 |
+
|
181 |
+
#: theme/login.php:122
|
182 |
+
msgid "Password"
|
183 |
+
msgstr "Mot de passe"
|
184 |
+
|
185 |
+
#: theme/login.php:126
|
186 |
+
msgid "Remember Me"
|
187 |
+
msgstr "Se souvenir de moi"
|
188 |
+
|
189 |
+
#: theme/login.php:129
|
190 |
+
msgid "Log In"
|
191 |
+
msgstr "Se connecter"
|
192 |
+
|
193 |
+
#. Plugin URI of the plugin/theme
|
194 |
+
msgid "http://wordpress.org/extend/plugins/password-protected/"
|
195 |
+
msgstr "http://wordpress.org/extend/plugins/password-protected/"
|
196 |
+
|
197 |
+
#. Description of the plugin/theme
|
198 |
+
msgid ""
|
199 |
+
"A very simple way to quickly password protect your WordPress site with a "
|
200 |
+
"single password. Integrates seamlessly into your WordPress privacy settings."
|
201 |
+
msgstr ""
|
202 |
+
"Un moyen très simple de rapidement protéger votre site WordPress avec un "
|
203 |
+
"seul mot de passe. S'intègre parfaitement dans vos paramètres de "
|
204 |
+
"confidentialité de WordPress."
|
205 |
+
|
206 |
+
#. Author of the plugin/theme
|
207 |
+
msgid "Ben Huson"
|
208 |
+
msgstr "Ben Huson"
|
209 |
+
|
210 |
+
#. Author URI of the plugin/theme
|
211 |
+
msgid "http://www.benhuson.co.uk/"
|
212 |
+
msgstr "http://www.benhuson.co.uk/"
|
languages/password-protected-nl_NL.mo
ADDED
Binary file
|
languages/password-protected-nl_NL.po
ADDED
@@ -0,0 +1,173 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2013 Password Protected
|
2 |
+
# This file is distributed under the same license as the Password Protected package.
|
3 |
+
# Translators:
|
4 |
+
# sanderr <transifex@grids.be>, 2013
|
5 |
+
msgid ""
|
6 |
+
msgstr ""
|
7 |
+
"Project-Id-Version: Password Protected\n"
|
8 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/password-protected\n"
|
9 |
+
"POT-Creation-Date: 2013-09-03 09:35:27+00:00\n"
|
10 |
+
"PO-Revision-Date: 2013-11-09 09:20+0000\n"
|
11 |
+
"Last-Translator: sanderr <transifex@grids.be>\n"
|
12 |
+
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/wp-translations/language/nl_NL/)\n"
|
13 |
+
"MIME-Version: 1.0\n"
|
14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"Language: nl_NL\n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
|
19 |
+
#. #-#-#-#-# password-protected.pot (Password Protected 1.6) #-#-#-#-#
|
20 |
+
#. Plugin Name of the plugin/theme
|
21 |
+
#: admin/admin.php:25 admin/admin.php:60
|
22 |
+
msgid "Password Protected"
|
23 |
+
msgstr "Beschermd met wachtwoord"
|
24 |
+
|
25 |
+
#: admin/admin.php:35
|
26 |
+
msgid "Password Protected Settings"
|
27 |
+
msgstr "Instellingen beschermd met wachtwoord"
|
28 |
+
|
29 |
+
#: admin/admin.php:39
|
30 |
+
msgid "Save Changes"
|
31 |
+
msgstr "Wijzigingen opslaan"
|
32 |
+
|
33 |
+
#: admin/admin.php:61
|
34 |
+
msgid ""
|
35 |
+
"<p><strong>Enabled Checkbox</strong><br />Turn on/off password "
|
36 |
+
"protection.</p>"
|
37 |
+
msgstr "<p><strong>Aangevinkt</strong><br />Zet wachtwoordbescherming aan/uit.</p>"
|
38 |
+
|
39 |
+
#: admin/admin.php:62
|
40 |
+
msgid ""
|
41 |
+
"<p><strong>Allow RSS Feeds Checkbox</strong><br />RSS Feeds will be able to "
|
42 |
+
"accessed even when the site is password proteced.</p>"
|
43 |
+
msgstr "<p><strong>Sta RSS-feeds toe</strong><br />RSS-feeds houden toegang, ook als de site beschermd is met een wachtwoord.</p>"
|
44 |
+
|
45 |
+
#: admin/admin.php:63
|
46 |
+
msgid ""
|
47 |
+
"<p><strong>Allow Administrators Checkbox</strong><br />Administrators will "
|
48 |
+
"not need to enter a password to view the site (providing they are logged in "
|
49 |
+
"of course). You will also need to enable this option if you want "
|
50 |
+
"administrators to be able to preview the site in the Theme Customizer.</p>"
|
51 |
+
msgstr "<p><strong>Laat beheerders toe</strong><br />Beheerders hoeven geen wachtwoord in te geven om de site te zien (als ze ingelogd zijn). Deze optie moet ook aan staan als je beheerders de site wilt laten previewen in de Theme Customizer.</p>"
|
52 |
+
|
53 |
+
#: admin/admin.php:64
|
54 |
+
msgid ""
|
55 |
+
"<p><strong>Password Fields</strong><br />To set a new password, enter it "
|
56 |
+
"into both fields. You cannot set an `empty` password. To disable password "
|
57 |
+
"protection uncheck the Enabled checkbox.</p>"
|
58 |
+
msgstr "<p><strong>Wachtwoordvelden</strong><br />Om een wachtwoord in te stellen, voer het in beide velden in. Je kunt geen `leeg` wachtwoord instellen. Om wachtwoordbescherming uit te zetten, vink Ingeschakeld uit.</p>"
|
59 |
+
|
60 |
+
#: admin/admin.php:90
|
61 |
+
msgid "Password Protected Status"
|
62 |
+
msgstr "Wachtwoordsbeschermingsstatus"
|
63 |
+
|
64 |
+
#: admin/admin.php:97
|
65 |
+
msgid "New Password"
|
66 |
+
msgstr "Nieuw wachtwoord"
|
67 |
+
|
68 |
+
#: admin/admin.php:117
|
69 |
+
msgid ""
|
70 |
+
"New password not saved. When setting a new password please enter it in both "
|
71 |
+
"fields."
|
72 |
+
msgstr "Nieuw wachtwoord niet opgeslagen. Vul bij het instellen van een nieuw wachtwoord beide velden in."
|
73 |
+
|
74 |
+
#: admin/admin.php:120
|
75 |
+
msgid "New password not saved. Password fields did not match."
|
76 |
+
msgstr "Nieuw wachwoord niet opgeslagen. De wachtwoordvelden komen niet overeen."
|
77 |
+
|
78 |
+
#: admin/admin.php:123
|
79 |
+
msgid "New password saved."
|
80 |
+
msgstr "Nieuw wachtwoord opgeslagen."
|
81 |
+
|
82 |
+
#: admin/admin.php:135
|
83 |
+
msgid ""
|
84 |
+
"Password protect your web site. Users will be asked to enter a password to "
|
85 |
+
"view the site."
|
86 |
+
msgstr "Bescherm je website met een wachtwoord. Gebruikers wordt een wachtwoord gevraagd om de site te zien."
|
87 |
+
|
88 |
+
#: admin/admin.php:136
|
89 |
+
msgid ""
|
90 |
+
"For more information about Password Protected settings, view the \"Help\" "
|
91 |
+
"tab at the top of this page."
|
92 |
+
msgstr "Voor meer informatie over Beschermd met wachtwoord, kijk onder het \"Help\"-tabblad bovenaan deze pagina. "
|
93 |
+
|
94 |
+
#: admin/admin.php:143
|
95 |
+
msgid "Enabled"
|
96 |
+
msgstr "Ingeschakeld"
|
97 |
+
|
98 |
+
#: admin/admin.php:144
|
99 |
+
msgid "Allow RSS Feeds"
|
100 |
+
msgstr "Sta RSS-feeds toe"
|
101 |
+
|
102 |
+
#: admin/admin.php:145
|
103 |
+
msgid "Allow Administrators"
|
104 |
+
msgstr "Sta beheerders toe"
|
105 |
+
|
106 |
+
#: admin/admin.php:152
|
107 |
+
msgid ""
|
108 |
+
"If you would like to change the password type a new one. Otherwise leave "
|
109 |
+
"this blank."
|
110 |
+
msgstr "Alleen als je het wachtwoord wilt wijzigen. Anders niets invullen."
|
111 |
+
|
112 |
+
#: admin/admin.php:153
|
113 |
+
msgid "Type your new password again."
|
114 |
+
msgstr "Voer je nieuwe wachtwoord nogmaals in."
|
115 |
+
|
116 |
+
#: admin/admin.php:185
|
117 |
+
msgid ""
|
118 |
+
"You have enabled password protection but not yet set a password. Please set "
|
119 |
+
"one below."
|
120 |
+
msgstr "Je hebt bescherming met wachtwoord ingeschakeld, maar nog geen wachtwoord ingesteld. Stel er hieronder een in."
|
121 |
+
|
122 |
+
#: admin/admin.php:188
|
123 |
+
msgid ""
|
124 |
+
"You have enabled password protection and allowed administrators - other "
|
125 |
+
"users will still need to login to view the site."
|
126 |
+
msgstr "Je hebt bescherming met wachtwoord ingesteld en beheerders toegestaan - andere gebruikers moeten nog steeds aanmelden om de site te zien."
|
127 |
+
|
128 |
+
#: password-protected.php:110
|
129 |
+
msgid ""
|
130 |
+
"Feeds are not available for this site. Please visit the <a "
|
131 |
+
"href=\"%s\">website</a>."
|
132 |
+
msgstr "Feeds zijn niet beschikbaar voor deze site. Bezoek de <a href=\"%s\">website</a>."
|
133 |
+
|
134 |
+
#: password-protected.php:155
|
135 |
+
msgid "Incorrect Password"
|
136 |
+
msgstr "Onjuist wachtwoord"
|
137 |
+
|
138 |
+
#: theme/login.php:40
|
139 |
+
msgid ""
|
140 |
+
"<strong>ERROR</strong>: Cookies are blocked or not supported by your "
|
141 |
+
"browser. You must <a href='http://www.google.com/cookies.html'>enable "
|
142 |
+
"cookies</a> to use WordPress."
|
143 |
+
msgstr "<strong>MISLUKT</strong>: Je browser ondersteunt geen cookies of ze worden geblokkeerd. Je moet <a href='http://www.google.nl/cookies.html'>cookies inschakelen</a> om WordPress te kunnen gebruiken."
|
144 |
+
|
145 |
+
#: theme/login.php:122
|
146 |
+
msgid "Password"
|
147 |
+
msgstr "Wachtwoord"
|
148 |
+
|
149 |
+
#: theme/login.php:126
|
150 |
+
msgid "Remember Me"
|
151 |
+
msgstr "Deze gegevens onthouden"
|
152 |
+
|
153 |
+
#: theme/login.php:129
|
154 |
+
msgid "Log In"
|
155 |
+
msgstr "Inloggen"
|
156 |
+
|
157 |
+
#. Plugin URI of the plugin/theme
|
158 |
+
msgid "http://wordpress.org/extend/plugins/password-protected/"
|
159 |
+
msgstr "http://wordpress.org/extend/plugins/password-protected/"
|
160 |
+
|
161 |
+
#. Description of the plugin/theme
|
162 |
+
msgid ""
|
163 |
+
"A very simple way to quickly password protect your WordPress site with a "
|
164 |
+
"single password. Integrates seamlessly into your WordPress privacy settings."
|
165 |
+
msgstr "Een eenvoudige manier om je WordPress-site snel te beschermen met een wachtwoord. Integreert naadloos in je WordPress-privacyinstellingen."
|
166 |
+
|
167 |
+
#. Author of the plugin/theme
|
168 |
+
msgid "Ben Huson"
|
169 |
+
msgstr "Ben Huson"
|
170 |
+
|
171 |
+
#. Author URI of the plugin/theme
|
172 |
+
msgid "http://www.benhuson.co.uk/"
|
173 |
+
msgstr "http://www.benhuson.co.uk/"
|
languages/password-protected-ru_RU.mo
ADDED
Binary file
|
languages/password-protected-ru_RU.po
ADDED
@@ -0,0 +1,173 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2013 Password Protected
|
2 |
+
# This file is distributed under the same license as the Password Protected package.
|
3 |
+
# Translators:
|
4 |
+
# Narengoyn <narengoyn@gmail.com>, 2013
|
5 |
+
msgid ""
|
6 |
+
msgstr ""
|
7 |
+
"Project-Id-Version: Password Protected\n"
|
8 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/password-protected\n"
|
9 |
+
"POT-Creation-Date: 2013-09-03 09:35:27+00:00\n"
|
10 |
+
"PO-Revision-Date: 2013-10-18 06:10+0000\n"
|
11 |
+
"Last-Translator: Narengoyn <narengoyn@gmail.com>\n"
|
12 |
+
"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/wp-translations/language/ru_RU/)\n"
|
13 |
+
"MIME-Version: 1.0\n"
|
14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"Language: ru_RU\n"
|
17 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
18 |
+
|
19 |
+
#. #-#-#-#-# password-protected.pot (Password Protected 1.6) #-#-#-#-#
|
20 |
+
#. Plugin Name of the plugin/theme
|
21 |
+
#: admin/admin.php:25 admin/admin.php:60
|
22 |
+
msgid "Password Protected"
|
23 |
+
msgstr "Защищено паролем"
|
24 |
+
|
25 |
+
#: admin/admin.php:35
|
26 |
+
msgid "Password Protected Settings"
|
27 |
+
msgstr "Настройки Password Protected"
|
28 |
+
|
29 |
+
#: admin/admin.php:39
|
30 |
+
msgid "Save Changes"
|
31 |
+
msgstr "Сохранить изменения"
|
32 |
+
|
33 |
+
#: admin/admin.php:61
|
34 |
+
msgid ""
|
35 |
+
"<p><strong>Enabled Checkbox</strong><br />Turn on/off password "
|
36 |
+
"protection.</p>"
|
37 |
+
msgstr "<p><strong>Включить чекбокс</strong><br/>Включить/выключить защиту паролем.</p>"
|
38 |
+
|
39 |
+
#: admin/admin.php:62
|
40 |
+
msgid ""
|
41 |
+
"<p><strong>Allow RSS Feeds Checkbox</strong><br />RSS Feeds will be able to "
|
42 |
+
"accessed even when the site is password proteced.</p>"
|
43 |
+
msgstr "<p><strong>Разрешить чекбокс RSS-каналы</strong><br>RSS-каналы будут получать доступ, даже когда сайт защищён паролем.<p>"
|
44 |
+
|
45 |
+
#: admin/admin.php:63
|
46 |
+
msgid ""
|
47 |
+
"<p><strong>Allow Administrators Checkbox</strong><br />Administrators will "
|
48 |
+
"not need to enter a password to view the site (providing they are logged in "
|
49 |
+
"of course). You will also need to enable this option if you want "
|
50 |
+
"administrators to be able to preview the site in the Theme Customizer.</p>"
|
51 |
+
msgstr "<p><strong>Разрешить чекбокс Администраторы</strong><br />Администраторам не нужно будет вводить пароль, чтобы увидеть сайт (в случае, если они вошли, конечно же). Также вам нужно включить эту опцию, если вы хотите, чтобы администраторы имели возможность видеть превью сайта в настройках тем."
|
52 |
+
|
53 |
+
#: admin/admin.php:64
|
54 |
+
msgid ""
|
55 |
+
"<p><strong>Password Fields</strong><br />To set a new password, enter it "
|
56 |
+
"into both fields. You cannot set an `empty` password. To disable password "
|
57 |
+
"protection uncheck the Enabled checkbox.</p>"
|
58 |
+
msgstr "<p><strong>Поля паролей</strong><br />Чтобы установить новый пароль, введите его в оба поля. Вы не можете установить \"пустой\" пароль. Чтобы выключить защиту паролем, снимите галочку в пункте Включено.</p>"
|
59 |
+
|
60 |
+
#: admin/admin.php:90
|
61 |
+
msgid "Password Protected Status"
|
62 |
+
msgstr "Статус Password Protected"
|
63 |
+
|
64 |
+
#: admin/admin.php:97
|
65 |
+
msgid "New Password"
|
66 |
+
msgstr "Новый пароль"
|
67 |
+
|
68 |
+
#: admin/admin.php:117
|
69 |
+
msgid ""
|
70 |
+
"New password not saved. When setting a new password please enter it in both "
|
71 |
+
"fields."
|
72 |
+
msgstr "Новый пароль не сохранён. Когда устанавливаете новый пароль, пожалуйста, введите его в оба поля. "
|
73 |
+
|
74 |
+
#: admin/admin.php:120
|
75 |
+
msgid "New password not saved. Password fields did not match."
|
76 |
+
msgstr "Новый пароль не сохранён. Поля паролей не совпадают."
|
77 |
+
|
78 |
+
#: admin/admin.php:123
|
79 |
+
msgid "New password saved."
|
80 |
+
msgstr "Новый пароль сохранён."
|
81 |
+
|
82 |
+
#: admin/admin.php:135
|
83 |
+
msgid ""
|
84 |
+
"Password protect your web site. Users will be asked to enter a password to "
|
85 |
+
"view the site."
|
86 |
+
msgstr "Пароль защищает ваш вебсайт. Пользователей попросят ввести пароль, чтобы они увидели сайт."
|
87 |
+
|
88 |
+
#: admin/admin.php:136
|
89 |
+
msgid ""
|
90 |
+
"For more information about Password Protected settings, view the \"Help\" "
|
91 |
+
"tab at the top of this page."
|
92 |
+
msgstr "Для большей информации о настройках Password Protected смотрите вкладку \"Помощь\" вверху этой страницы."
|
93 |
+
|
94 |
+
#: admin/admin.php:143
|
95 |
+
msgid "Enabled"
|
96 |
+
msgstr "Доступен"
|
97 |
+
|
98 |
+
#: admin/admin.php:144
|
99 |
+
msgid "Allow RSS Feeds"
|
100 |
+
msgstr "Разрешить RSS Каналы"
|
101 |
+
|
102 |
+
#: admin/admin.php:145
|
103 |
+
msgid "Allow Administrators"
|
104 |
+
msgstr "Разрешить Администраторов"
|
105 |
+
|
106 |
+
#: admin/admin.php:152
|
107 |
+
msgid ""
|
108 |
+
"If you would like to change the password type a new one. Otherwise leave "
|
109 |
+
"this blank."
|
110 |
+
msgstr "Если вы хотите поменять пароль, введите новый. Иначе оставьте поле пустым."
|
111 |
+
|
112 |
+
#: admin/admin.php:153
|
113 |
+
msgid "Type your new password again."
|
114 |
+
msgstr "Введите новый пароль повторно."
|
115 |
+
|
116 |
+
#: admin/admin.php:185
|
117 |
+
msgid ""
|
118 |
+
"You have enabled password protection but not yet set a password. Please set "
|
119 |
+
"one below."
|
120 |
+
msgstr "Вы включили защиту паролем, но пока не установили пароль. Пожалуйста, установите его внизу."
|
121 |
+
|
122 |
+
#: admin/admin.php:188
|
123 |
+
msgid ""
|
124 |
+
"You have enabled password protection and allowed administrators - other "
|
125 |
+
"users will still need to login to view the site."
|
126 |
+
msgstr "Вы включили защиту паролем и разрешили администраторов - другим пользователям всё же нужно будет войти, чтобы увидеть сайт. "
|
127 |
+
|
128 |
+
#: password-protected.php:110
|
129 |
+
msgid ""
|
130 |
+
"Feeds are not available for this site. Please visit the <a "
|
131 |
+
"href=\"%s\">website</a>."
|
132 |
+
msgstr "Каналы недоступны для этого сайта. Пожалуйста, посетите <a href=\"%s\">вебсайт</a>."
|
133 |
+
|
134 |
+
#: password-protected.php:155
|
135 |
+
msgid "Incorrect Password"
|
136 |
+
msgstr "Неверный пароль."
|
137 |
+
|
138 |
+
#: theme/login.php:40
|
139 |
+
msgid ""
|
140 |
+
"<strong>ERROR</strong>: Cookies are blocked or not supported by your "
|
141 |
+
"browser. You must <a href='http://www.google.com/cookies.html'>enable "
|
142 |
+
"cookies</a> to use WordPress."
|
143 |
+
msgstr "<strong>ОШИБКА</strong>: Cookies либо заблокированы, либо не поддерживаются вашим браузером. Чтобы использовать WordPress, нужно <a href='http://www.google.com/cookies.html'>разрешить cookies</a>."
|
144 |
+
|
145 |
+
#: theme/login.php:122
|
146 |
+
msgid "Password"
|
147 |
+
msgstr "Пароль"
|
148 |
+
|
149 |
+
#: theme/login.php:126
|
150 |
+
msgid "Remember Me"
|
151 |
+
msgstr "Запомнить меня"
|
152 |
+
|
153 |
+
#: theme/login.php:129
|
154 |
+
msgid "Log In"
|
155 |
+
msgstr "Войти"
|
156 |
+
|
157 |
+
#. Plugin URI of the plugin/theme
|
158 |
+
msgid "http://wordpress.org/extend/plugins/password-protected/"
|
159 |
+
msgstr "http://wordpress.org/extend/plugins/password-protected/"
|
160 |
+
|
161 |
+
#. Description of the plugin/theme
|
162 |
+
msgid ""
|
163 |
+
"A very simple way to quickly password protect your WordPress site with a "
|
164 |
+
"single password. Integrates seamlessly into your WordPress privacy settings."
|
165 |
+
msgstr "Очень простой способ быстро защитить ваш сайн на WordPress единственным паролем. Хорошо интегрирован в настройки приватности вашего WordPress."
|
166 |
+
|
167 |
+
#. Author of the plugin/theme
|
168 |
+
msgid "Ben Huson"
|
169 |
+
msgstr "Ben Huson"
|
170 |
+
|
171 |
+
#. Author URI of the plugin/theme
|
172 |
+
msgid "http://www.benhuson.co.uk/"
|
173 |
+
msgstr "http://www.benhuson.co.uk/"
|
languages/password-protected.pot
ADDED
@@ -0,0 +1,158 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2013 Password Protected
|
2 |
+
# This file is distributed under the same license as the Password Protected package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Password Protected 1.6\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/password-protected\n"
|
7 |
+
"POT-Creation-Date: 2013-11-13 22:56-0000\n"
|
8 |
+
"PO-Revision-Date: 2013-11-13 22:56-0000\n"
|
9 |
+
"Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
|
10 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 1.5.7\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
+
"X-Poedit-Basepath: ./\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
|
19 |
+
#: ../password-protected.php:111
|
20 |
+
#, php-format
|
21 |
+
msgid ""
|
22 |
+
"Feeds are not available for this site. Please visit the <a href=\"%s"
|
23 |
+
"\">website</a>."
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: ../password-protected.php:156
|
27 |
+
msgid "Incorrect Password"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: ../admin/admin.php:27 ../admin/admin.php:62
|
31 |
+
msgid "Password Protected"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: ../admin/admin.php:37
|
35 |
+
msgid "Password Protected Settings"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: ../admin/admin.php:41
|
39 |
+
msgid "Save Changes"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: ../admin/admin.php:63
|
43 |
+
msgid ""
|
44 |
+
"<p><strong>Enabled Checkbox</strong><br />Turn on/off password protection.</"
|
45 |
+
"p>"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: ../admin/admin.php:64
|
49 |
+
msgid ""
|
50 |
+
"<p><strong>Allow RSS Feeds Checkbox</strong><br />RSS Feeds will be able to "
|
51 |
+
"accessed even when the site is password proteced.</p>"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: ../admin/admin.php:65
|
55 |
+
msgid ""
|
56 |
+
"<p><strong>Allow Administrators Checkbox</strong><br />Administrators will "
|
57 |
+
"not need to enter a password to view the site (providing they are logged in "
|
58 |
+
"of course). You will also need to enable this option if you want "
|
59 |
+
"administrators to be able to preview the site in the Theme Customizer.</p>"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: ../admin/admin.php:66
|
63 |
+
msgid ""
|
64 |
+
"<p><strong>Password Fields</strong><br />To set a new password, enter it "
|
65 |
+
"into both fields. You cannot set an `empty` password. To disable password "
|
66 |
+
"protection uncheck the Enabled checkbox.</p>"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: ../admin/admin.php:92
|
70 |
+
msgid "Password Protected Status"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: ../admin/admin.php:99
|
74 |
+
msgid "New Password"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: ../admin/admin.php:119
|
78 |
+
msgid ""
|
79 |
+
"New password not saved. When setting a new password please enter it in both "
|
80 |
+
"fields."
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: ../admin/admin.php:122
|
84 |
+
msgid "New password not saved. Password fields did not match."
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: ../admin/admin.php:125
|
88 |
+
msgid "New password saved."
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: ../admin/admin.php:137
|
92 |
+
msgid ""
|
93 |
+
"Password protect your web site. Users will be asked to enter a password to "
|
94 |
+
"view the site."
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: ../admin/admin.php:138
|
98 |
+
msgid ""
|
99 |
+
"For more information about Password Protected settings, view the \"Help\" "
|
100 |
+
"tab at the top of this page."
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: ../admin/admin.php:145
|
104 |
+
msgid "Enabled"
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: ../admin/admin.php:146
|
108 |
+
msgid "Allow RSS Feeds"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: ../admin/admin.php:147
|
112 |
+
msgid "Allow Administrators"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: ../admin/admin.php:154
|
116 |
+
msgid ""
|
117 |
+
"If you would like to change the password type a new one. Otherwise leave "
|
118 |
+
"this blank."
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: ../admin/admin.php:155
|
122 |
+
msgid "Type your new password again."
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: ../admin/admin.php:190
|
126 |
+
msgid "http://github.com/benhuson/password-protected"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: ../admin/admin.php:190
|
130 |
+
msgid "GitHub"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: ../admin/admin.php:204
|
134 |
+
msgid "Settings"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: ../admin/admin.php:218
|
138 |
+
msgid ""
|
139 |
+
"You have enabled password protection but not yet set a password. Please set "
|
140 |
+
"one below."
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: ../admin/admin.php:221
|
144 |
+
msgid ""
|
145 |
+
"You have enabled password protection and allowed administrators - other "
|
146 |
+
"users will still need to login to view the site."
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: ../theme/login.php:40
|
150 |
+
msgid ""
|
151 |
+
"<strong>ERROR</strong>: Cookies are blocked or not supported by your "
|
152 |
+
"browser. You must <a href='http://www.google.com/cookies.html'>enable "
|
153 |
+
"cookies</a> to use WordPress."
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: ../theme/login.php:122
|
157 |
+
msgid "Password"
|
158 |
+
msgstr ""
|
languages/readme.txt
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
********************************************************
|
2 |
+
|
3 |
+
Password Protected I18n
|
4 |
+
==============
|
5 |
+
You want to translate, help, or improve a translation!
|
6 |
+
|
7 |
+
Join our WP-Translations Community at
|
8 |
+
https://www.transifex.com/projects/p/password-protected/resource/password-protected/
|
9 |
+
|
10 |
+
More infos at http://wp-translations.org/
|
11 |
+
|
12 |
+
********************************************************
|
password-protected.php
CHANGED
@@ -4,8 +4,9 @@
|
|
4 |
Plugin Name: Password Protected
|
5 |
Plugin URI: http://wordpress.org/extend/plugins/password-protected/
|
6 |
Description: A very simple way to quickly password protect your WordPress site with a single password. Integrates seamlessly into your WordPress privacy settings.
|
7 |
-
Version: 1.6
|
8 |
Author: Ben Huson
|
|
|
9 |
Author URI: http://www.benhuson.co.uk/
|
10 |
License: GPLv2
|
11 |
*/
|
@@ -41,7 +42,7 @@ $Password_Protected = new Password_Protected();
|
|
41 |
|
42 |
class Password_Protected {
|
43 |
|
44 |
-
var $version = '1.
|
45 |
var $admin = null;
|
46 |
var $errors = null;
|
47 |
|
4 |
Plugin Name: Password Protected
|
5 |
Plugin URI: http://wordpress.org/extend/plugins/password-protected/
|
6 |
Description: A very simple way to quickly password protect your WordPress site with a single password. Integrates seamlessly into your WordPress privacy settings.
|
7 |
+
Version: 1.6.1
|
8 |
Author: Ben Huson
|
9 |
+
Text Domain: password-protected
|
10 |
Author URI: http://www.benhuson.co.uk/
|
11 |
License: GPLv2
|
12 |
*/
|
42 |
|
43 |
class Password_Protected {
|
44 |
|
45 |
+
var $version = '1.6.1';
|
46 |
var $admin = null;
|
47 |
var $errors = null;
|
48 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: husobj
|
|
3 |
Donate link: http://www.benhuson.co.uk/donate/
|
4 |
Tags: password, protect, password protect, login
|
5 |
Requires at least: 3.1
|
6 |
-
Tested up to: 3.
|
7 |
-
Stable tag: 1.6
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
A very simple way to quickly password protect your WordPress site with a single password.
|
@@ -69,6 +69,9 @@ If you can, please [fork the code](https://github.com/benhuson/password-protecte
|
|
69 |
|
70 |
== Changelog ==
|
71 |
|
|
|
|
|
|
|
72 |
= 1.6 =
|
73 |
* Robots.txt is now always accessible.
|
74 |
* Added support for Uber Login Logo plugin.
|
3 |
Donate link: http://www.benhuson.co.uk/donate/
|
4 |
Tags: password, protect, password protect, login
|
5 |
Requires at least: 3.1
|
6 |
+
Tested up to: 3.7.1
|
7 |
+
Stable tag: 1.6.1
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
A very simple way to quickly password protect your WordPress site with a single password.
|
69 |
|
70 |
== Changelog ==
|
71 |
|
72 |
+
= 1.6.1 =
|
73 |
+
* Language updates by wp-translations.org (Arabic, Dutch, French, Persian, Russian).
|
74 |
+
|
75 |
= 1.6 =
|
76 |
* Robots.txt is now always accessible.
|
77 |
* Added support for Uber Login Logo plugin.
|