Password Protected - Version 1.7.2

Version Description

  • Added 'password_protected_login_redirect' filter.
  • Fix always allow access to robots.txt.
  • Updated translations.
Download this release

Release Info

Developer husobj
Plugin Icon 128x128 Password Protected
Version 1.7.2
Comparing to
See all releases

Code changes from version 1.7.1 to 1.7.2

admin/admin.php CHANGED
@@ -47,8 +47,9 @@ class Password_Protected_Admin {
47
  */
48
  function add_help_tabs() {
49
  global $wp_version;
50
- if ( version_compare( $wp_version, '3.3', '<' ) )
51
  return;
 
52
  do_action( 'password_protected_help_tabs', get_current_screen() );
53
  }
54
 
@@ -219,23 +220,85 @@ class Password_Protected_Admin {
219
  * Warns the user if they have enabled password protection but not entered a password
220
  */
221
  function password_protected_admin_notices(){
222
- $current_screen = get_current_screen();
223
- if ( $current_screen->id == 'options-' . $this->options_group ) {
 
 
 
 
 
 
 
 
 
 
 
224
  $status = get_option( 'password_protected_status' );
225
  $pwd = get_option( 'password_protected_password' );
226
  if ( (bool) $status && empty( $pwd ) ) {
227
- echo '<div class="error"><p>' . __( 'You have enabled password protection but not yet set a password. Please set one below.', 'password-protected' ) . '</p></div>';
228
  }
229
  if ( current_user_can( 'manage_options' ) && ( (bool) get_option( 'password_protected_administrators' ) || (bool) get_option( 'password_protected_users' ) ) ) {
230
  if ( (bool) get_option( 'password_protected_administrators' ) && (bool) get_option( 'password_protected_users' ) ) {
231
- echo '<div class="error"><p>' . __( 'You have enabled password protection and allowed administrators and logged in users - other users will still need to login to view the site.', 'password-protected' ) . '</p></div>';
232
  } elseif ( (bool) get_option( 'password_protected_administrators' ) ) {
233
- echo '<div class="error"><p>' . __( 'You have enabled password protection and allowed administrators - other users will still need to login to view the site.', 'password-protected' ) . '</p></div>';
234
  } elseif ( (bool) get_option( 'password_protected_users' ) ) {
235
- echo '<div class="error"><p>' . __( 'You have enabled password protection and allowed logged in users - other users will still need to login to view the site.', 'password-protected' ) . '</p></div>';
236
  }
237
  }
238
  }
239
  }
240
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
  }
47
  */
48
  function add_help_tabs() {
49
  global $wp_version;
50
+ if ( version_compare( $wp_version, '3.3', '<' ) ) {
51
  return;
52
+ }
53
  do_action( 'password_protected_help_tabs', get_current_screen() );
54
  }
55
 
220
  * Warns the user if they have enabled password protection but not entered a password
221
  */
222
  function password_protected_admin_notices(){
223
+ global $Password_Protected;
224
+
225
+ // Check Support
226
+ $screens = $this->plugin_screen_ids( array( 'dashboard', 'plugins' ) );
227
+ if ( $this->is_current_screen( $screens ) ) {
228
+ $supported = $Password_Protected->is_plugin_supported();
229
+ if ( is_wp_error( $supported ) ) {
230
+ echo $this->admin_error_display( $supported->get_error_message( $supported->get_error_code() ) );
231
+ }
232
+ }
233
+
234
+ // Settings
235
+ if ( $this->is_current_screen( $this->plugin_screen_ids() ) ) {
236
  $status = get_option( 'password_protected_status' );
237
  $pwd = get_option( 'password_protected_password' );
238
  if ( (bool) $status && empty( $pwd ) ) {
239
+ echo $this->admin_error_display( __( 'You have enabled password protection but not yet set a password. Please set one below.', 'password-protected' ) );
240
  }
241
  if ( current_user_can( 'manage_options' ) && ( (bool) get_option( 'password_protected_administrators' ) || (bool) get_option( 'password_protected_users' ) ) ) {
242
  if ( (bool) get_option( 'password_protected_administrators' ) && (bool) get_option( 'password_protected_users' ) ) {
243
+ echo $this->admin_error_display( __( 'You have enabled password protection and allowed administrators and logged in users - other users will still need to enter a password to view the site.', 'password-protected' ) );
244
  } elseif ( (bool) get_option( 'password_protected_administrators' ) ) {
245
+ echo $this->admin_error_display( __( 'You have enabled password protection and allowed administrators - other users will still need to enter a password to view the site.', 'password-protected' ) );
246
  } elseif ( (bool) get_option( 'password_protected_users' ) ) {
247
+ echo $this->admin_error_display( __( 'You have enabled password protection and allowed logged in users - other users will still need to enter a password to view the site.', 'password-protected' ) );
248
  }
249
  }
250
  }
251
  }
252
 
253
+ /**
254
+ * Admin Error Display
255
+ *
256
+ * Returns a string wrapped in HTML to display an admin error.
257
+ *
258
+ * @param string $string Error string.
259
+ * @return string HTML error.
260
+ */
261
+ function admin_error_display( $string ) {
262
+ return '<div class="error"><p>' . $string . '</p></div>';
263
+ }
264
+
265
+ /**
266
+ * Is Current Screen
267
+ *
268
+ * Checks wether the admin is displaying a specific screen.
269
+ *
270
+ * @param string|array $screen_id Admin screen ID(s).
271
+ * @return boolean
272
+ */
273
+ function is_current_screen( $screen_id ) {
274
+ if ( function_exists( 'get_current_screen' ) ) {
275
+ $current_screen = get_current_screen();
276
+ if ( ! is_array( $screen_id ) ) {
277
+ $screen_id = array( $screen_id );
278
+ }
279
+ if ( in_array( $current_screen->id, $screen_id ) ) {
280
+ return true;
281
+ }
282
+ }
283
+ return false;
284
+ }
285
+
286
+ /**
287
+ * Plugin Screen IDs
288
+ *
289
+ * @param string|array $screen_id Additional screen IDs to add to the returned array.
290
+ * @return array Screen IDs.
291
+ */
292
+ function plugin_screen_ids( $screen_id = '' ) {
293
+ $screen_ids = array( 'options-' . $this->options_group, 'settings_page_' . $this->options_group );
294
+ if ( ! empty( $screen_id ) ) {
295
+ if ( is_array( $screen_id ) ) {
296
+ $screen_ids = array_merge( $screen_ids, $screen_id );
297
+ } else {
298
+ $screen_ids[] = $screen_id;
299
+ }
300
+ }
301
+ return $screen_ids;
302
+ }
303
+
304
  }
languages/password-protected-ca.mo CHANGED
Binary file
languages/password-protected-ca.po CHANGED
@@ -6,8 +6,8 @@ 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: 2014-02-18 08:12-0000\n"
10
- "PO-Revision-Date: 2014-02-24 23:30-0000\n"
11
  "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
12
  "Language-Team: Catalan (http://www.transifex.com/projects/p/wp-translations/"
13
  "language/ca/)\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Generator: Poedit 1.6.2\n"
20
  "X-Poedit-Basepath: ./\n"
21
- "X-Poedit-KeywordsList: __;_e\n"
22
  "X-Poedit-SearchPath-0: ..\n"
23
 
24
  #: ../password-protected.php:115
@@ -27,10 +27,12 @@ msgid ""
27
  "Feeds are not available for this site. Please visit the <a href=\"%s"
28
  "\">website</a>."
29
  msgstr ""
 
 
30
 
31
  #: ../password-protected.php:181
32
  msgid "Incorrect Password"
33
- msgstr ""
34
 
35
  #: ../admin/admin.php:26 ../admin/admin.php:63
36
  msgid "Password Protected"
@@ -49,6 +51,8 @@ msgid ""
49
  "<p><strong>Password Protected Status</strong><br />Turn on/off password "
50
  "protection.</p>"
51
  msgstr ""
 
 
52
 
53
  #: ../admin/admin.php:65
54
  msgid ""
@@ -58,6 +62,11 @@ msgid ""
58
  "site in the Theme Customizer. Also allow RSS Feeds to be accessed when the "
59
  "site is password protected.</p>"
60
  msgstr ""
 
 
 
 
 
61
 
62
  #: ../admin/admin.php:66
63
  msgid ""
@@ -65,6 +74,10 @@ msgid ""
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:82
70
  msgid "Password Protected Status"
@@ -72,7 +85,7 @@ msgstr "Estat de protecció per contrasenya"
72
 
73
  #: ../admin/admin.php:89
74
  msgid "Protected Permissions"
75
- msgstr ""
76
 
77
  #: ../admin/admin.php:96
78
  msgid "New Password"
@@ -83,8 +96,8 @@ msgid ""
83
  "New password not saved. When setting a new password please enter it in both "
84
  "fields."
85
  msgstr ""
86
- "La nova contrasenya no ha estat desada. A l'hora de configurar la "
87
- "contrasenya, introdueix-la als dos camps."
88
 
89
  #: ../admin/admin.php:123
90
  msgid "New password not saved. Password fields did not match."
@@ -99,7 +112,7 @@ msgid ""
99
  "Password protect your web site. Users will be asked to enter a password to "
100
  "view the site."
101
  msgstr ""
102
- "Protegeix per contrasenya la teva web: Els usuaris hauran d'introduir una "
103
  "contrasenya per veure la web."
104
 
105
  #: ../admin/admin.php:139
@@ -108,11 +121,11 @@ msgid ""
108
  "tab at the top of this page."
109
  msgstr ""
110
  "Per més informació sobre la configuració de protecció per contrasenya, "
111
- "consulta l'apartat \"Ajuda\" de la part superior d'aquesta pàgina."
112
 
113
  #: ../admin/admin.php:146
114
  msgid "Enabled"
115
- msgstr "Activat"
116
 
117
  #: ../admin/admin.php:153
118
  msgid "Allow Administrators"
@@ -120,7 +133,7 @@ msgstr "Permetre administradors"
120
 
121
  #: ../admin/admin.php:154
122
  msgid "Allow Logged In Users"
123
- msgstr ""
124
 
125
  #: ../admin/admin.php:155
126
  msgid "Allow RSS Feeds"
@@ -140,41 +153,60 @@ msgstr "Teclegeu la contrasenya nova una altra vegada."
140
 
141
  #: ../admin/admin.php:198
142
  msgid "http://github.com/benhuson/password-protected"
143
- msgstr ""
144
 
145
  #: ../admin/admin.php:198
146
  msgid "GitHub"
 
 
 
 
 
 
147
  msgstr ""
 
 
 
 
 
 
148
 
149
- #: ../admin/admin.php:212
150
  msgid "Settings"
151
  msgstr "Opcions"
152
 
153
- #: ../admin/admin.php:226
154
  msgid ""
155
  "You have enabled password protection but not yet set a password. Please set "
156
  "one below."
157
  msgstr ""
158
- "Heu activat la protecció amb contrasenya però no heu configurar cap "
159
- "contrasenya. Si us plau, introdueix-ne una més abaix."
160
 
161
- #: ../admin/admin.php:230
162
  msgid ""
163
  "You have enabled password protection and allowed administrators and logged "
164
  "in users - other users will still need to login to view the site."
165
  msgstr ""
 
 
 
166
 
167
- #: ../admin/admin.php:232
168
  msgid ""
169
  "You have enabled password protection and allowed administrators - other "
170
  "users will still need to login to view the site."
171
  msgstr ""
 
 
172
 
173
- #: ../admin/admin.php:234
174
  msgid ""
175
  "You have enabled password protection and allowed logged in users - other "
176
  "users will still need to login to view the site."
177
  msgstr ""
 
 
178
 
179
  #: ../theme/login.php:40
180
  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: 2014-02-27 20:46-0000\n"
10
+ "PO-Revision-Date: 2014-04-15 00:04-0000\n"
11
  "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
12
  "Language-Team: Catalan (http://www.transifex.com/projects/p/wp-translations/"
13
  "language/ca/)\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Generator: Poedit 1.6.2\n"
20
  "X-Poedit-Basepath: ./\n"
21
+ "X-Poedit-KeywordsList: __;_e;_ex;_x\n"
22
  "X-Poedit-SearchPath-0: ..\n"
23
 
24
  #: ../password-protected.php:115
27
  "Feeds are not available for this site. Please visit the <a href=\"%s"
28
  "\">website</a>."
29
  msgstr ""
30
+ "Els feeds RSS no són disponibles per aquesta web. Si us plau, visiteu "
31
+ "aquesta <a href=\"%s\">pàgina</a>."
32
 
33
  #: ../password-protected.php:181
34
  msgid "Incorrect Password"
35
+ msgstr "Contrasenya incorrecta"
36
 
37
  #: ../admin/admin.php:26 ../admin/admin.php:63
38
  msgid "Password Protected"
51
  "<p><strong>Password Protected Status</strong><br />Turn on/off password "
52
  "protection.</p>"
53
  msgstr ""
54
+ "<p><strong>Estat de protecció amb contrasenya</strong><br />Activar/"
55
+ "Desactivar la protecció amb contrasenya.</p>"
56
 
57
  #: ../admin/admin.php:65
58
  msgid ""
62
  "site in the Theme Customizer. Also allow RSS Feeds to be accessed when the "
63
  "site is password protected.</p>"
64
  msgstr ""
65
+ "<p><strong>Permisos protegits</strong><br />Permetre accés d'usuaris "
66
+ "connectats i administradors sense haver d'introduir una contrasenya. Heu "
67
+ "d'habilitar aquesta opció perquè sigui possible previsualitzar la pàgina a "
68
+ "l'apartat \"Personalitzar tema/plantilla\". També permet l'accés als feeds "
69
+ "RSS quan la pàgina és protegida amb contrasenya.</p>"
70
 
71
  #: ../admin/admin.php:66
72
  msgid ""
74
  "into both fields. You cannot set an `empty` password. To disable password "
75
  "protection uncheck the Enabled checkbox.</p>"
76
  msgstr ""
77
+ "<p><strong>Camps de contrasenya</strong><br />Per configurar una nova "
78
+ "contrasenya, introduïu-la als dos camps. No podeu utilitzar una contrasenya "
79
+ "`buida` . Per deshabilitar la protecció amb contrasenya desmarqueu l'opció "
80
+ "\"Activada\".</p>"
81
 
82
  #: ../admin/admin.php:82
83
  msgid "Password Protected Status"
85
 
86
  #: ../admin/admin.php:89
87
  msgid "Protected Permissions"
88
+ msgstr "Permisos protegits"
89
 
90
  #: ../admin/admin.php:96
91
  msgid "New Password"
96
  "New password not saved. When setting a new password please enter it in both "
97
  "fields."
98
  msgstr ""
99
+ "La nova contrasenya no ha estat desada. A l'hora de configurar una nova "
100
+ "contrasenya, introduïu-la als dos camps."
101
 
102
  #: ../admin/admin.php:123
103
  msgid "New password not saved. Password fields did not match."
112
  "Password protect your web site. Users will be asked to enter a password to "
113
  "view the site."
114
  msgstr ""
115
+ "Protegiu amb contrasenya la vostra web: Els usuaris hauran d'introduir una "
116
  "contrasenya per veure la web."
117
 
118
  #: ../admin/admin.php:139
121
  "tab at the top of this page."
122
  msgstr ""
123
  "Per més informació sobre la configuració de protecció per contrasenya, "
124
+ "consulteu l'apartat \"Ajuda\" de la part superior d'aquesta pàgina."
125
 
126
  #: ../admin/admin.php:146
127
  msgid "Enabled"
128
+ msgstr "Activada"
129
 
130
  #: ../admin/admin.php:153
131
  msgid "Allow Administrators"
133
 
134
  #: ../admin/admin.php:154
135
  msgid "Allow Logged In Users"
136
+ msgstr "Permetre usuaris connectats"
137
 
138
  #: ../admin/admin.php:155
139
  msgid "Allow RSS Feeds"
153
 
154
  #: ../admin/admin.php:198
155
  msgid "http://github.com/benhuson/password-protected"
156
+ msgstr "http://github.com/benhuson/password-protected"
157
 
158
  #: ../admin/admin.php:198
159
  msgid "GitHub"
160
+ msgstr "GitHub"
161
+
162
+ #: ../admin/admin.php:199
163
+ msgid ""
164
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
165
+ "protected/"
166
  msgstr ""
167
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
168
+ "protected/"
169
+
170
+ #: ../admin/admin.php:199
171
+ msgid "Translate"
172
+ msgstr "Traduir"
173
 
174
+ #: ../admin/admin.php:213
175
  msgid "Settings"
176
  msgstr "Opcions"
177
 
178
+ #: ../admin/admin.php:227
179
  msgid ""
180
  "You have enabled password protection but not yet set a password. Please set "
181
  "one below."
182
  msgstr ""
183
+ "Heu activat la protecció amb contrasenya però no heu configurat cap "
184
+ "contrasenya. Si us plau, introduïu-ne una més abaix."
185
 
186
+ #: ../admin/admin.php:231
187
  msgid ""
188
  "You have enabled password protection and allowed administrators and logged "
189
  "in users - other users will still need to login to view the site."
190
  msgstr ""
191
+ "Heu activat la protecció amb contrasenya i heu permès els administradors i "
192
+ "usuaris connectats - altres usuaris hauran d'iniciar sessió per veure la "
193
+ "pàgina."
194
 
195
+ #: ../admin/admin.php:233
196
  msgid ""
197
  "You have enabled password protection and allowed administrators - other "
198
  "users will still need to login to view the site."
199
  msgstr ""
200
+ "Heu activat la protecció amb contrasenya i heu permès els administrators - "
201
+ "altres usuaris hauran d'iniciar sessió per veure la web."
202
 
203
+ #: ../admin/admin.php:235
204
  msgid ""
205
  "You have enabled password protection and allowed logged in users - other "
206
  "users will still need to login to view the site."
207
  msgstr ""
208
+ "Heu activat la protecció amb contrasenya i heu permès els usuaris connectats "
209
+ "- altres usuaris hauran d'iniciar sessió per veure la pàgina."
210
 
211
  #: ../theme/login.php:40
212
  msgid ""
languages/password-protected-da_DK.mo ADDED
Binary file
languages/password-protected-da_DK.po CHANGED
@@ -1,14 +1,16 @@
1
  # Copyright (C) 2013 Password Protected
2
  # This file is distributed under the same license as the Password Protected package.
3
  # Translators:
 
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Password Protected\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/password-protected\n"
8
- "POT-Creation-Date: 2014-02-18 08:12-0000\n"
9
- "PO-Revision-Date: 2014-02-21 08:37+0000\n"
10
- "Last-Translator: Francois-Xavier Bénard <fxb@wp-translations.org>\n"
11
- "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/wp-translations/language/da_DK/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
@@ -16,19 +18,21 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Generator: Poedit 1.6.2\n"
18
  "X-Poedit-Basepath: ./\n"
19
- "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SearchPath-0: ..\n"
21
 
22
  #: ../password-protected.php:115
23
  #, php-format
24
  msgid ""
25
- "Feeds are not available for this site. Please visit the <a "
26
- "href=\"%s\">website</a>."
27
  msgstr ""
 
 
28
 
29
  #: ../password-protected.php:181
30
  msgid "Incorrect Password"
31
- msgstr ""
32
 
33
  #: ../admin/admin.php:26 ../admin/admin.php:63
34
  msgid "Password Protected"
@@ -36,7 +40,7 @@ msgstr "Adgangskodebeskyttet"
36
 
37
  #: ../admin/admin.php:36
38
  msgid "Password Protected Settings"
39
- msgstr ""
40
 
41
  #: ../admin/admin.php:40
42
  msgid "Save Changes"
@@ -47,6 +51,8 @@ msgid ""
47
  "<p><strong>Password Protected Status</strong><br />Turn on/off password "
48
  "protection.</p>"
49
  msgstr ""
 
 
50
 
51
  #: ../admin/admin.php:65
52
  msgid ""
@@ -56,6 +62,11 @@ msgid ""
56
  "site in the Theme Customizer. Also allow RSS Feeds to be accessed when the "
57
  "site is password protected.</p>"
58
  msgstr ""
 
 
 
 
 
59
 
60
  #: ../admin/admin.php:66
61
  msgid ""
@@ -63,14 +74,18 @@ msgid ""
63
  "into both fields. You cannot set an `empty` password. To disable password "
64
  "protection uncheck the Enabled checkbox.</p>"
65
  msgstr ""
 
 
 
 
66
 
67
  #: ../admin/admin.php:82
68
  msgid "Password Protected Status"
69
- msgstr ""
70
 
71
  #: ../admin/admin.php:89
72
  msgid "Protected Permissions"
73
- msgstr ""
74
 
75
  #: ../admin/admin.php:96
76
  msgid "New Password"
@@ -81,26 +96,32 @@ msgid ""
81
  "New password not saved. When setting a new password please enter it in both "
82
  "fields."
83
  msgstr ""
 
 
84
 
85
  #: ../admin/admin.php:123
86
  msgid "New password not saved. Password fields did not match."
87
- msgstr ""
88
 
89
  #: ../admin/admin.php:126
90
  msgid "New password saved."
91
- msgstr ""
92
 
93
  #: ../admin/admin.php:138
94
  msgid ""
95
  "Password protect your web site. Users will be asked to enter a password to "
96
  "view the site."
97
  msgstr ""
 
 
98
 
99
  #: ../admin/admin.php:139
100
  msgid ""
101
  "For more information about Password Protected settings, view the \"Help\" "
102
  "tab at the top of this page."
103
  msgstr ""
 
 
104
 
105
  #: ../admin/admin.php:146
106
  msgid "Enabled"
@@ -108,21 +129,23 @@ msgstr "Aktiveret"
108
 
109
  #: ../admin/admin.php:153
110
  msgid "Allow Administrators"
111
- msgstr ""
112
 
113
  #: ../admin/admin.php:154
114
  msgid "Allow Logged In Users"
115
- msgstr ""
116
 
117
  #: ../admin/admin.php:155
118
  msgid "Allow RSS Feeds"
119
- msgstr ""
120
 
121
  #: ../admin/admin.php:162
122
  msgid ""
123
  "If you would like to change the password type a new one. Otherwise leave "
124
  "this blank."
125
- msgstr "Hvis du vil &#230;ndre brugerens kodeord, skal du skrive et nyt. Ellers skal du bare lade v&#230;re med at udfylde feltet."
 
 
126
 
127
  #: ../admin/admin.php:163
128
  msgid "Type your new password again."
@@ -130,46 +153,70 @@ msgstr "Skriv dit kodeord igen."
130
 
131
  #: ../admin/admin.php:198
132
  msgid "http://github.com/benhuson/password-protected"
133
- msgstr ""
134
 
135
  #: ../admin/admin.php:198
136
  msgid "GitHub"
 
 
 
 
 
 
137
  msgstr ""
 
 
 
 
 
 
138
 
139
- #: ../admin/admin.php:212
140
  msgid "Settings"
141
  msgstr "Indstillinger"
142
 
143
- #: ../admin/admin.php:226
144
  msgid ""
145
  "You have enabled password protection but not yet set a password. Please set "
146
  "one below."
147
  msgstr ""
 
 
148
 
149
- #: ../admin/admin.php:230
150
  msgid ""
151
  "You have enabled password protection and allowed administrators and logged "
152
  "in users - other users will still need to login to view the site."
153
  msgstr ""
 
 
 
154
 
155
- #: ../admin/admin.php:232
156
  msgid ""
157
  "You have enabled password protection and allowed administrators - other "
158
  "users will still need to login to view the site."
159
  msgstr ""
 
 
160
 
161
- #: ../admin/admin.php:234
162
  msgid ""
163
  "You have enabled password protection and allowed logged in users - other "
164
  "users will still need to login to view the site."
165
  msgstr ""
 
 
166
 
167
  #: ../theme/login.php:40
168
  msgid ""
169
  "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
170
  "browser. You must <a href='http://www.google.com/cookies.html'>enable "
171
  "cookies</a> to use WordPress."
172
- msgstr "<strong>FEJL</strong>: Cookies er blokeret eller ikke underst&#248;ttet af din browser. Du skal <a href='http://www.google.com/cookies.html'>aktivere cookies</a> for at bruge WordPress."
 
 
 
173
 
174
  #: ../theme/login.php:125
175
  msgid "Password"
1
  # Copyright (C) 2013 Password Protected
2
  # This file is distributed under the same license as the Password Protected package.
3
  # Translators:
4
+ # Lars Koudal, 2014
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: 2014-02-27 20:46-0000\n"
10
+ "PO-Revision-Date: 2014-04-15 00:04-0000\n"
11
+ "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
12
+ "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/wp-"
13
+ "translations/language/da_DK/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Generator: Poedit 1.6.2\n"
20
  "X-Poedit-Basepath: ./\n"
21
+ "X-Poedit-KeywordsList: __;_e;_ex;_x\n"
22
  "X-Poedit-SearchPath-0: ..\n"
23
 
24
  #: ../password-protected.php:115
25
  #, php-format
26
  msgid ""
27
+ "Feeds are not available for this site. Please visit the <a href=\"%s"
28
+ "\">website</a>."
29
  msgstr ""
30
+ "RSS-feeds er ikke tilgængelige for denne hjemmeside. Besøg <a href=\"%s\"> "
31
+ "hjemmesiden</a>."
32
 
33
  #: ../password-protected.php:181
34
  msgid "Incorrect Password"
35
+ msgstr "Forkert adgangskode"
36
 
37
  #: ../admin/admin.php:26 ../admin/admin.php:63
38
  msgid "Password Protected"
40
 
41
  #: ../admin/admin.php:36
42
  msgid "Password Protected Settings"
43
+ msgstr "Adgangskodebeskyttet indstillinger"
44
 
45
  #: ../admin/admin.php:40
46
  msgid "Save Changes"
51
  "<p><strong>Password Protected Status</strong><br />Turn on/off password "
52
  "protection.</p>"
53
  msgstr ""
54
+ "<p><strong>Adgangsbeskyttet status</strong><br />Tænd / sluk for "
55
+ "adgangskodebeskyttelse</p>"
56
 
57
  #: ../admin/admin.php:65
58
  msgid ""
62
  "site in the Theme Customizer. Also allow RSS Feeds to be accessed when the "
63
  "site is password protected.</p>"
64
  msgstr ""
65
+ "<p><strong>Beskyttelsesindstillinger</strong><br />Tillad adgang for logget "
66
+ "ind brugere og administratorer uden at behøve at indtaste en adgangskode. Du "
67
+ "bliver nødt til at aktivere denne indstilling, hvis du vil lade "
68
+ "administratorer være i stand til at få vist hjemmesiden i tema editoren. "
69
+ "Tillader også RSS-feeds når hjemmesiden er beskyttet med adgangskode.</p>"
70
 
71
  #: ../admin/admin.php:66
72
  msgid ""
74
  "into both fields. You cannot set an `empty` password. To disable password "
75
  "protection uncheck the Enabled checkbox.</p>"
76
  msgstr ""
77
+ "<p><strong>Adgangskode felter</strong><br />Du kan indstille en ny "
78
+ "adgangskode ved at indtaste det i begge felter. Du kan ikke sætte en `tom` "
79
+ "adgangskode. For at deaktivere adgangskodebeskyttelse fjern markeringen i "
80
+ "afkrydsningsfeltet.</p>"
81
 
82
  #: ../admin/admin.php:82
83
  msgid "Password Protected Status"
84
+ msgstr "Adgangskodebeskyttet status"
85
 
86
  #: ../admin/admin.php:89
87
  msgid "Protected Permissions"
88
+ msgstr "Beskyttelse indstillinger"
89
 
90
  #: ../admin/admin.php:96
91
  msgid "New Password"
96
  "New password not saved. When setting a new password please enter it in both "
97
  "fields."
98
  msgstr ""
99
+ "Ny adgangskode ikke gemt. Ved indstiling af ny adgangskode skal du indtaste "
100
+ "det i begge felter."
101
 
102
  #: ../admin/admin.php:123
103
  msgid "New password not saved. Password fields did not match."
104
+ msgstr "Nyt adgangskode ikke gemt. Adgangskode felterne matchede ikke."
105
 
106
  #: ../admin/admin.php:126
107
  msgid "New password saved."
108
+ msgstr "Nyt password gemt."
109
 
110
  #: ../admin/admin.php:138
111
  msgid ""
112
  "Password protect your web site. Users will be asked to enter a password to "
113
  "view the site."
114
  msgstr ""
115
+ "Beskyt din hjemmeside med adgangskode. Besøgende vil blive spurgt efter en "
116
+ "adgangskode for at besøge hjemmesiden."
117
 
118
  #: ../admin/admin.php:139
119
  msgid ""
120
  "For more information about Password Protected settings, view the \"Help\" "
121
  "tab at the top of this page."
122
  msgstr ""
123
+ "For mere information om Adgangskodebeskyttelse indstillingerne, kig på "
124
+ "\"Hjælp\" fanen øverst på denne side."
125
 
126
  #: ../admin/admin.php:146
127
  msgid "Enabled"
129
 
130
  #: ../admin/admin.php:153
131
  msgid "Allow Administrators"
132
+ msgstr "Tillad administratorer"
133
 
134
  #: ../admin/admin.php:154
135
  msgid "Allow Logged In Users"
136
+ msgstr "Tillad brugere der er logget ind"
137
 
138
  #: ../admin/admin.php:155
139
  msgid "Allow RSS Feeds"
140
+ msgstr "Tillad RSS-feeds"
141
 
142
  #: ../admin/admin.php:162
143
  msgid ""
144
  "If you would like to change the password type a new one. Otherwise leave "
145
  "this blank."
146
+ msgstr ""
147
+ "Hvis du vil &#230;ndre brugerens kodeord, skal du skrive et nyt. Ellers skal "
148
+ "du bare lade v&#230;re med at udfylde feltet."
149
 
150
  #: ../admin/admin.php:163
151
  msgid "Type your new password again."
153
 
154
  #: ../admin/admin.php:198
155
  msgid "http://github.com/benhuson/password-protected"
156
+ msgstr "http://github.com/benhuson/password-protected"
157
 
158
  #: ../admin/admin.php:198
159
  msgid "GitHub"
160
+ msgstr "GitHub"
161
+
162
+ #: ../admin/admin.php:199
163
+ msgid ""
164
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
165
+ "protected/"
166
  msgstr ""
167
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
168
+ "protected/"
169
+
170
+ #: ../admin/admin.php:199
171
+ msgid "Translate"
172
+ msgstr "Oversæt"
173
 
174
+ #: ../admin/admin.php:213
175
  msgid "Settings"
176
  msgstr "Indstillinger"
177
 
178
+ #: ../admin/admin.php:227
179
  msgid ""
180
  "You have enabled password protection but not yet set a password. Please set "
181
  "one below."
182
  msgstr ""
183
+ "Du har aktiveret adgangskodebeskyttelse, men du har ikke angivet en "
184
+ "adgangskode. Indtast venligst en nedenfor. "
185
 
186
+ #: ../admin/admin.php:231
187
  msgid ""
188
  "You have enabled password protection and allowed administrators and logged "
189
  "in users - other users will still need to login to view the site."
190
  msgstr ""
191
+ "Du har aktiveret adgangskodebeskyttelse og givet adgang til administratorer "
192
+ "og brugere der er logget ind - andre besøgende skal stadig logge ind for at "
193
+ "se hjemmesiden."
194
 
195
+ #: ../admin/admin.php:233
196
  msgid ""
197
  "You have enabled password protection and allowed administrators - other "
198
  "users will still need to login to view the site."
199
  msgstr ""
200
+ "Du har aktiveret adgangskodebeskyttelse og givet adgang til administratorer. "
201
+ "Andre besøgende skal stadig logge ind for at se hjemmesiden."
202
 
203
+ #: ../admin/admin.php:235
204
  msgid ""
205
  "You have enabled password protection and allowed logged in users - other "
206
  "users will still need to login to view the site."
207
  msgstr ""
208
+ "Du har aktiveret adgangskodebeskyttelse og givet adgang til brugere der er "
209
+ "logget ind - andre besøgende skal stadig logge ind for at se hjemmesiden."
210
 
211
  #: ../theme/login.php:40
212
  msgid ""
213
  "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
214
  "browser. You must <a href='http://www.google.com/cookies.html'>enable "
215
  "cookies</a> to use WordPress."
216
+ msgstr ""
217
+ "<strong>FEJL</strong>: Cookies er blokeret eller ikke underst&#248;ttet af "
218
+ "din browser. Du skal <a href='http://www.google.com/cookies.html'>aktivere "
219
+ "cookies</a> for at bruge WordPress."
220
 
221
  #: ../theme/login.php:125
222
  msgid "Password"
languages/password-protected-de_DE.mo ADDED
Binary file
languages/password-protected-de_DE.po CHANGED
@@ -1,14 +1,17 @@
1
  # Copyright (C) 2013 Password Protected
2
  # This file is distributed under the same license as the Password Protected package.
3
  # Translators:
 
 
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Password Protected\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/password-protected\n"
8
- "POT-Creation-Date: 2014-02-18 08:12-0000\n"
9
- "PO-Revision-Date: 2014-02-21 08:37+0000\n"
10
- "Last-Translator: Francois-Xavier Bénard <fxb@wp-translations.org>\n"
11
- "Language-Team: German (Germany) (http://www.transifex.com/projects/p/wp-translations/language/de_DE/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
@@ -16,19 +19,29 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Generator: Poedit 1.6.2\n"
18
  "X-Poedit-Basepath: ./\n"
19
- "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SearchPath-0: ..\n"
21
 
22
  #: ../password-protected.php:115
23
  #, php-format
24
  msgid ""
25
- "Feeds are not available for this site. Please visit the <a "
26
- "href=\"%s\">website</a>."
27
  msgstr ""
 
 
28
 
29
- #: ../password-protected.php:181
30
  msgid "Incorrect Password"
 
 
 
 
 
 
31
  msgstr ""
 
 
32
 
33
  #: ../admin/admin.php:26 ../admin/admin.php:63
34
  msgid "Password Protected"
@@ -36,7 +49,7 @@ msgstr "Passwortgeschützt"
36
 
37
  #: ../admin/admin.php:36
38
  msgid "Password Protected Settings"
39
- msgstr ""
40
 
41
  #: ../admin/admin.php:40
42
  msgid "Save Changes"
@@ -47,6 +60,7 @@ msgid ""
47
  "<p><strong>Password Protected Status</strong><br />Turn on/off password "
48
  "protection.</p>"
49
  msgstr ""
 
50
 
51
  #: ../admin/admin.php:65
52
  msgid ""
@@ -56,6 +70,11 @@ msgid ""
56
  "site in the Theme Customizer. Also allow RSS Feeds to be accessed when the "
57
  "site is password protected.</p>"
58
  msgstr ""
 
 
 
 
 
59
 
60
  #: ../admin/admin.php:66
61
  msgid ""
@@ -63,14 +82,17 @@ msgid ""
63
  "into both fields. You cannot set an `empty` password. To disable password "
64
  "protection uncheck the Enabled checkbox.</p>"
65
  msgstr ""
 
 
 
66
 
67
  #: ../admin/admin.php:82
68
  msgid "Password Protected Status"
69
- msgstr ""
70
 
71
  #: ../admin/admin.php:89
72
  msgid "Protected Permissions"
73
- msgstr ""
74
 
75
  #: ../admin/admin.php:96
76
  msgid "New Password"
@@ -81,48 +103,58 @@ msgid ""
81
  "New password not saved. When setting a new password please enter it in both "
82
  "fields."
83
  msgstr ""
 
 
84
 
85
  #: ../admin/admin.php:123
86
  msgid "New password not saved. Password fields did not match."
87
  msgstr ""
 
 
88
 
89
  #: ../admin/admin.php:126
90
  msgid "New password saved."
91
- msgstr ""
92
 
93
  #: ../admin/admin.php:138
94
  msgid ""
95
  "Password protect your web site. Users will be asked to enter a password to "
96
  "view the site."
97
  msgstr ""
 
 
98
 
99
  #: ../admin/admin.php:139
100
  msgid ""
101
  "For more information about Password Protected settings, view the \"Help\" "
102
  "tab at the top of this page."
103
  msgstr ""
 
 
104
 
105
  #: ../admin/admin.php:146
106
  msgid "Enabled"
107
- msgstr "Erlaubt"
108
 
109
  #: ../admin/admin.php:153
110
  msgid "Allow Administrators"
111
- msgstr ""
112
 
113
  #: ../admin/admin.php:154
114
  msgid "Allow Logged In Users"
115
- msgstr ""
116
 
117
  #: ../admin/admin.php:155
118
  msgid "Allow RSS Feeds"
119
- msgstr ""
120
 
121
  #: ../admin/admin.php:162
122
  msgid ""
123
  "If you would like to change the password type a new one. Otherwise leave "
124
  "this blank."
125
- msgstr "Wenn du das Passwort ändern möchtest, trage hier ein Neues ein. Ansonsten kannst du die Felder leer lassen."
 
 
126
 
127
  #: ../admin/admin.php:163
128
  msgid "Type your new password again."
@@ -130,47 +162,73 @@ msgstr "Gib dein neues Passwort nochmals ein."
130
 
131
  #: ../admin/admin.php:198
132
  msgid "http://github.com/benhuson/password-protected"
133
- msgstr ""
134
 
135
  #: ../admin/admin.php:198
136
  msgid "GitHub"
 
 
 
 
 
 
137
  msgstr ""
 
 
 
 
 
 
138
 
139
- #: ../admin/admin.php:212
140
  msgid "Settings"
141
  msgstr "Einstellungen"
142
 
143
- #: ../admin/admin.php:226
144
  msgid ""
145
  "You have enabled password protection but not yet set a password. Please set "
146
  "one below."
147
  msgstr ""
 
 
148
 
149
- #: ../admin/admin.php:230
150
  msgid ""
151
  "You have enabled password protection and allowed administrators and logged "
152
- "in users - other users will still need to login to view the site."
153
  msgstr ""
 
 
 
154
 
155
- #: ../admin/admin.php:232
156
  msgid ""
157
  "You have enabled password protection and allowed administrators - other "
158
- "users will still need to login to view the site."
159
  msgstr ""
 
 
 
160
 
161
- #: ../admin/admin.php:234
162
  msgid ""
163
  "You have enabled password protection and allowed logged in users - other "
164
- "users will still need to login to view the site."
165
  msgstr ""
 
 
 
166
 
167
  #: ../theme/login.php:40
168
  msgid ""
169
  "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
170
  "browser. You must <a href='http://www.google.com/cookies.html'>enable "
171
  "cookies</a> to use WordPress."
172
- msgstr "<strong>Fehler:</strong> Cookies werden von deinem Browser blockiert oder nicht unterstützt. Um WordPress zu benutzen, musst du <a href='http://www.google.com/cookies.html'>Cookies erlauben</a>."
 
 
 
173
 
174
- #: ../theme/login.php:125
175
  msgid "Password"
176
  msgstr "Passwort"
1
  # Copyright (C) 2013 Password Protected
2
  # This file is distributed under the same license as the Password Protected package.
3
  # Translators:
4
+ # Lars, 2014
5
+ # Kolja Nolte <puhbaer3@gmail.com>, 2014
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: 2014-04-15 00:07-0000\n"
11
+ "PO-Revision-Date: 2014-06-05 07:46-0000\n"
12
+ "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
13
+ "Language-Team: German (Germany) (http://www.transifex.com/projects/p/"
14
+ "password-protected/language/de_DE/)\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
  "X-Generator: Poedit 1.6.2\n"
21
  "X-Poedit-Basepath: ./\n"
22
+ "X-Poedit-KeywordsList: __;_e;_ex;_x\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
  #: ../password-protected.php:115
26
  #, php-format
27
  msgid ""
28
+ "Feeds are not available for this site. Please visit the <a href=\"%s"
29
+ "\">website</a>."
30
  msgstr ""
31
+ "Es sind keine Feeds für diese Seite vorhanden. Bitte besuche die <a href=\"%s"
32
+ "\">Website</a>."
33
 
34
+ #: ../password-protected.php:183
35
  msgid "Incorrect Password"
36
+ msgstr "Falsches Passwort"
37
+
38
+ #: ../password-protected.php:427
39
+ msgid ""
40
+ "The Password Protected plugin does not work with WP Engine hosting. Please "
41
+ "disable it."
42
  msgstr ""
43
+ "Das Password-Protected-Plugin funktioniert nicht mit WP Engine Hosting. "
44
+ "Bitte deaktiviere es."
45
 
46
  #: ../admin/admin.php:26 ../admin/admin.php:63
47
  msgid "Password Protected"
49
 
50
  #: ../admin/admin.php:36
51
  msgid "Password Protected Settings"
52
+ msgstr "Einstellungen › Password Protected"
53
 
54
  #: ../admin/admin.php:40
55
  msgid "Save Changes"
60
  "<p><strong>Password Protected Status</strong><br />Turn on/off password "
61
  "protection.</p>"
62
  msgstr ""
63
+ "<p><strong>Status</strong><br />Aktiviert/deaktiviert den Passwortschutz.</p>"
64
 
65
  #: ../admin/admin.php:65
66
  msgid ""
70
  "site in the Theme Customizer. Also allow RSS Feeds to be accessed when the "
71
  "site is password protected.</p>"
72
  msgstr ""
73
+ "<p><strong>Berechtigungen</strong><br />Erlaubt den Zugriff für eingeloggte "
74
+ "Benutzer und Administratoren ohne die Eingabe des festgelegten Passwortes. "
75
+ "Du musst diese Option aktivieren, wenn Administratoren eine Vorschau der "
76
+ "Seite im \"Design anpassen\" Modus sehen können sollen. Erlaube außerdem RSS-"
77
+ "Feeds, wenn die Seite passwortgeschützt ist.</p>"
78
 
79
  #: ../admin/admin.php:66
80
  msgid ""
82
  "into both fields. You cannot set an `empty` password. To disable password "
83
  "protection uncheck the Enabled checkbox.</p>"
84
  msgstr ""
85
+ "<p><strong>Password-Felder</strong><br />Um ein neues Passwort festzulegen, "
86
+ "trage es in beide Felder ein. Du kannst kein \"leeres\" Passwort setzen. Um "
87
+ "den Passwortschutz zu deaktivieren, deaktiviere die \"Status\"-Checkbox.</p>"
88
 
89
  #: ../admin/admin.php:82
90
  msgid "Password Protected Status"
91
+ msgstr "Passwortschutz-Status"
92
 
93
  #: ../admin/admin.php:89
94
  msgid "Protected Permissions"
95
+ msgstr "Berechtigungen"
96
 
97
  #: ../admin/admin.php:96
98
  msgid "New Password"
103
  "New password not saved. When setting a new password please enter it in both "
104
  "fields."
105
  msgstr ""
106
+ "Dein neues Passwort wurde nicht gespeichert. Zum Festlegen eines neuen "
107
+ "Passwortes muss dieses in beide Felder eingetragen werden."
108
 
109
  #: ../admin/admin.php:123
110
  msgid "New password not saved. Password fields did not match."
111
  msgstr ""
112
+ "Dein neues Passwort wurde nicht gespeichert. Die Passwort-Felder stimmen "
113
+ "nicht überein."
114
 
115
  #: ../admin/admin.php:126
116
  msgid "New password saved."
117
+ msgstr "Neues Passwort gespeichert."
118
 
119
  #: ../admin/admin.php:138
120
  msgid ""
121
  "Password protect your web site. Users will be asked to enter a password to "
122
  "view the site."
123
  msgstr ""
124
+ "Schütze deine Website mit einem Passwort. Benutzer werden aufgefordert ein "
125
+ "Passwort einzugeben, um die Seite betreten zu können."
126
 
127
  #: ../admin/admin.php:139
128
  msgid ""
129
  "For more information about Password Protected settings, view the \"Help\" "
130
  "tab at the top of this page."
131
  msgstr ""
132
+ "Für mehr Informationen zu den Einstellungen von \"Password Protected\" "
133
+ "klicke auf den \"Hilfe\"-Tab oben auf dieser Seite."
134
 
135
  #: ../admin/admin.php:146
136
  msgid "Enabled"
137
+ msgstr "aktiv"
138
 
139
  #: ../admin/admin.php:153
140
  msgid "Allow Administrators"
141
+ msgstr "Erlaube Administratoren"
142
 
143
  #: ../admin/admin.php:154
144
  msgid "Allow Logged In Users"
145
+ msgstr "Erlaube eingeloggte Benutzer"
146
 
147
  #: ../admin/admin.php:155
148
  msgid "Allow RSS Feeds"
149
+ msgstr "Erlaube RSS-Feeds."
150
 
151
  #: ../admin/admin.php:162
152
  msgid ""
153
  "If you would like to change the password type a new one. Otherwise leave "
154
  "this blank."
155
+ msgstr ""
156
+ "Wenn du das Passwort ändern möchtest, trage hier ein Neues ein. Ansonsten "
157
+ "kannst du die Felder leer lassen."
158
 
159
  #: ../admin/admin.php:163
160
  msgid "Type your new password again."
162
 
163
  #: ../admin/admin.php:198
164
  msgid "http://github.com/benhuson/password-protected"
165
+ msgstr "http://github.com/benhuson/password-protected"
166
 
167
  #: ../admin/admin.php:198
168
  msgid "GitHub"
169
+ msgstr "Github"
170
+
171
+ #: ../admin/admin.php:199
172
+ msgid ""
173
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
174
+ "protected/"
175
  msgstr ""
176
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
177
+ "protected/"
178
+
179
+ #: ../admin/admin.php:199
180
+ msgid "Translate"
181
+ msgstr "Übersetzungen"
182
 
183
+ #: ../admin/admin.php:213
184
  msgid "Settings"
185
  msgstr "Einstellungen"
186
 
187
+ #: ../admin/admin.php:238
188
  msgid ""
189
  "You have enabled password protection but not yet set a password. Please set "
190
  "one below."
191
  msgstr ""
192
+ "Du hast den Passwortschutz aktiviert aber kein Passwort festgelegt. Bitte "
193
+ "trage ein Passwort in das entsprechende Feld unten ein."
194
 
195
+ #: ../admin/admin.php:242
196
  msgid ""
197
  "You have enabled password protection and allowed administrators and logged "
198
+ "in users - other users will still need to enter a password to view the site."
199
  msgstr ""
200
+ "Du hast den Passwortschutz aktiviert. Administratoren und eingeloggte "
201
+ "Benutzer haben Zugriff auf die Seite; andere Besucher müssen das Passwort "
202
+ "eingeben."
203
 
204
+ #: ../admin/admin.php:244
205
  msgid ""
206
  "You have enabled password protection and allowed administrators - other "
207
+ "users will still need to enter a password to view the site."
208
  msgstr ""
209
+ "Du hast den Passwortschutz aktiviert. Administratoren und eingeloggte "
210
+ "Benutzer haben Zugriff auf die Seite; andere Besucher müssen das Passwort "
211
+ "eingeben."
212
 
213
+ #: ../admin/admin.php:246
214
  msgid ""
215
  "You have enabled password protection and allowed logged in users - other "
216
+ "users will still need to enter a password to view the site."
217
  msgstr ""
218
+ "Du hast den Passwortschutz aktiviert. Administratoren und eingeloggte "
219
+ "Benutzer haben Zugriff auf die Seite; andere Besucher müssen das Passwort "
220
+ "eingeben."
221
 
222
  #: ../theme/login.php:40
223
  msgid ""
224
  "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
225
  "browser. You must <a href='http://www.google.com/cookies.html'>enable "
226
  "cookies</a> to use WordPress."
227
+ msgstr ""
228
+ "<strong>Fehler:</strong> Cookies werden von deinem Browser blockiert oder "
229
+ "nicht unterstützt. Um WordPress zu benutzen, musst du <a href='http://www."
230
+ "google.com/cookies.html'>Cookies erlauben</a>."
231
 
232
+ #: ../theme/login.php:132
233
  msgid "Password"
234
  msgstr "Passwort"
languages/password-protected-es_ES.mo CHANGED
Binary file
languages/password-protected-es_ES.po CHANGED
@@ -6,11 +6,11 @@ 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: 2014-02-18 08:12-0000\n"
10
- "PO-Revision-Date: 2014-02-24 23:30-0000\n"
11
  "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
12
- "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/wp-"
13
- "translations/language/es_ES/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Generator: Poedit 1.6.2\n"
20
  "X-Poedit-Basepath: ./\n"
21
- "X-Poedit-KeywordsList: __;_e\n"
22
  "X-Poedit-SearchPath-0: ..\n"
23
 
24
  #: ../password-protected.php:115
@@ -30,10 +30,18 @@ msgstr ""
30
  "Los Feeds no están disponibles en este sitio. Por favor, entra <a href=\"%s"
31
  "\">aquí</a>."
32
 
33
- #: ../password-protected.php:181
34
  msgid "Incorrect Password"
35
  msgstr "Contraseña incorrecta"
36
 
 
 
 
 
 
 
 
 
37
  #: ../admin/admin.php:26 ../admin/admin.php:63
38
  msgid "Password Protected"
39
  msgstr "Protegida con contraseña"
@@ -160,11 +168,23 @@ msgstr "http://github.com/benhuson/password-protected"
160
  msgid "GitHub"
161
  msgstr "GitHub"
162
 
163
- #: ../admin/admin.php:212
 
 
 
 
 
 
 
 
 
 
 
 
164
  msgid "Settings"
165
  msgstr "Ajustes"
166
 
167
- #: ../admin/admin.php:226
168
  msgid ""
169
  "You have enabled password protection but not yet set a password. Please set "
170
  "one below."
@@ -172,30 +192,30 @@ msgstr ""
172
  "Has activado la protección por contraseña pero todavía no has introducido "
173
  "una contraseña. Por favor, introduce una abajo."
174
 
175
- #: ../admin/admin.php:230
176
  msgid ""
177
  "You have enabled password protection and allowed administrators and logged "
178
- "in users - other users will still need to login to view the site."
179
  msgstr ""
180
  "Has activado la protección por contraseña y permitido el acceso a "
181
  "administradores y usuarios identificados. Otros usuarios todavía necesitarán "
182
  "introducir la contraseña para ver el sitio."
183
 
184
- #: ../admin/admin.php:232
185
  msgid ""
186
  "You have enabled password protection and allowed administrators - other "
187
- "users will still need to login to view the site."
188
  msgstr ""
189
  "Has activado la protección por contraseña y permitido el acceso a "
190
  "administradores. Otros usuarios todavía necesitarán introducir la contraseña "
191
  "para ver el sitio."
192
 
193
- #: ../admin/admin.php:234
194
  msgid ""
195
  "You have enabled password protection and allowed logged in users - other "
196
- "users will still need to login to view the site."
197
  msgstr ""
198
- "Has activado la protección por contraseña y permitido el acceso a usuarios "
199
  "identificados. Otros usuarios todavía necesitarán introducir la contraseña "
200
  "para ver el sitio."
201
 
@@ -209,6 +229,6 @@ msgstr ""
209
  "navegador. Debes <a href='http://www.google.com/cookies.html'>habilitar las "
210
  "cookies</a> para usar WordPress."
211
 
212
- #: ../theme/login.php:125
213
  msgid "Password"
214
  msgstr "Contraseña"
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: 2014-04-15 00:07-0000\n"
10
+ "PO-Revision-Date: 2014-06-05 07:46-0000\n"
11
  "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
12
+ "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/password-"
13
+ "protected/language/es_ES/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Generator: Poedit 1.6.2\n"
20
  "X-Poedit-Basepath: ./\n"
21
+ "X-Poedit-KeywordsList: __;_e;_ex;_x\n"
22
  "X-Poedit-SearchPath-0: ..\n"
23
 
24
  #: ../password-protected.php:115
30
  "Los Feeds no están disponibles en este sitio. Por favor, entra <a href=\"%s"
31
  "\">aquí</a>."
32
 
33
+ #: ../password-protected.php:183
34
  msgid "Incorrect Password"
35
  msgstr "Contraseña incorrecta"
36
 
37
+ #: ../password-protected.php:427
38
+ msgid ""
39
+ "The Password Protected plugin does not work with WP Engine hosting. Please "
40
+ "disable it."
41
+ msgstr ""
42
+ "El plugin protección por contraseña no funciona con alojamiento WP Engine. "
43
+ "Por favor, deshabilitalo."
44
+
45
  #: ../admin/admin.php:26 ../admin/admin.php:63
46
  msgid "Password Protected"
47
  msgstr "Protegida con contraseña"
168
  msgid "GitHub"
169
  msgstr "GitHub"
170
 
171
+ #: ../admin/admin.php:199
172
+ msgid ""
173
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
174
+ "protected/"
175
+ msgstr ""
176
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
177
+ "protected/"
178
+
179
+ #: ../admin/admin.php:199
180
+ msgid "Translate"
181
+ msgstr "Traducir"
182
+
183
+ #: ../admin/admin.php:213
184
  msgid "Settings"
185
  msgstr "Ajustes"
186
 
187
+ #: ../admin/admin.php:238
188
  msgid ""
189
  "You have enabled password protection but not yet set a password. Please set "
190
  "one below."
192
  "Has activado la protección por contraseña pero todavía no has introducido "
193
  "una contraseña. Por favor, introduce una abajo."
194
 
195
+ #: ../admin/admin.php:242
196
  msgid ""
197
  "You have enabled password protection and allowed administrators and logged "
198
+ "in users - other users will still need to enter a password to view the site."
199
  msgstr ""
200
  "Has activado la protección por contraseña y permitido el acceso a "
201
  "administradores y usuarios identificados. Otros usuarios todavía necesitarán "
202
  "introducir la contraseña para ver el sitio."
203
 
204
+ #: ../admin/admin.php:244
205
  msgid ""
206
  "You have enabled password protection and allowed administrators - other "
207
+ "users will still need to enter a password to view the site."
208
  msgstr ""
209
  "Has activado la protección por contraseña y permitido el acceso a "
210
  "administradores. Otros usuarios todavía necesitarán introducir la contraseña "
211
  "para ver el sitio."
212
 
213
+ #: ../admin/admin.php:246
214
  msgid ""
215
  "You have enabled password protection and allowed logged in users - other "
216
+ "users will still need to enter a password to view the site."
217
  msgstr ""
218
+ "Has activado la protección por contraseña y permitido el acceso usuarios "
219
  "identificados. Otros usuarios todavía necesitarán introducir la contraseña "
220
  "para ver el sitio."
221
 
229
  "navegador. Debes <a href='http://www.google.com/cookies.html'>habilitar las "
230
  "cookies</a> para usar WordPress."
231
 
232
+ #: ../theme/login.php:132
233
  msgid "Password"
234
  msgstr "Contraseña"
languages/password-protected-fr_FR.mo CHANGED
Binary file
languages/password-protected-fr_FR.po CHANGED
@@ -1,67 +1,86 @@
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: 2014-02-24 23:30-0000\n"
12
  "Last-Translator: Ben Huson <ben@thewhiteroom.net>\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.6.2\n"
 
 
 
21
 
22
- #. Plugin Name of the plugin/theme
23
- #: admin/admin.php:25 admin/admin.php:60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  msgid "Password Protected"
25
  msgstr "Password Protected"
26
 
27
- #: admin/admin.php:35
28
  msgid "Password Protected Settings"
29
  msgstr "Réglages de Password Protected"
30
 
31
- #: admin/admin.php:39
32
  msgid "Save Changes"
33
  msgstr "Enregistrer les modifications"
34
 
35
- #: admin/admin.php:61
36
  msgid ""
37
- "<p><strong>Enabled Checkbox</strong><br />Turn on/off password protection.</"
38
- "p>"
39
  msgstr ""
40
- "<p><strong>Activer la case à cocher</strong><br />Activer/désactiver la "
41
  "protection par mot de passe.</p>"
42
 
43
- #: admin/admin.php:62
44
  msgid ""
45
- "<p><strong>Allow RSS Feeds Checkbox</strong><br />RSS Feeds will be able to "
46
- "accessed even when the site is password protected.</p>"
 
 
 
47
  msgstr ""
48
- "<p><strong>Activer la case à cocher des flux RSS</strong><br />Les flux RSS "
49
- "auront l'accès même lorsque le site est protégé de mot de passe.</p>"
50
-
51
- #: admin/admin.php:63
52
- msgid ""
53
- "<p><strong>Allow Administrators Checkbox</strong><br />Administrators will "
54
- "not need to enter a password to view the site (providing they are logged in "
55
- "of course). You will also need to enable this option if you want "
56
- "administrators to be able to preview the site in the Theme Customizer.</p>"
57
- msgstr ""
58
- "<p><strong>Activer la case à cocher des administrateurs</strong><br />Les "
59
- "administrateurs ne devront pas entrer de mot de passe pour accéder au site "
60
- "(à condition qu'ils soient connectés bien sûr). Vous devrez aussi activer "
61
- "cette option si vous souhaitez que les administrateurs puissent accéder à "
62
- "l'aperçu du site dans le thème Customizer.</p>"
63
-
64
- #: admin/admin.php:64
65
  msgid ""
66
  "<p><strong>Password Fields</strong><br />To set a new password, enter it "
67
  "into both fields. You cannot set an `empty` password. To disable password "
@@ -72,15 +91,19 @@ msgstr ""
72
  "mot de passe « vide ». Pour désactiver le mot de passe protection décochez "
73
  "la case d'activation.</p>"
74
 
75
- #: admin/admin.php:90
76
  msgid "Password Protected Status"
77
  msgstr "État de Password Protected "
78
 
79
- #: admin/admin.php:97
 
 
 
 
80
  msgid "New Password"
81
  msgstr "Nouveau mot de passe"
82
 
83
- #: admin/admin.php:117
84
  msgid ""
85
  "New password not saved. When setting a new password please enter it in both "
86
  "fields."
@@ -88,17 +111,17 @@ msgstr ""
88
  "Le nouveau mot de passe n'est pas enregistré. Quand vous configurez un "
89
  "nouveau mot de passe, entrez le dans les deux champs."
90
 
91
- #: admin/admin.php:120
92
  msgid "New password not saved. Password fields did not match."
93
  msgstr ""
94
  "Le nouveau mot de passe n'est pas enregistré. Les champs ne correspondent "
95
  "pas."
96
 
97
- #: admin/admin.php:123
98
  msgid "New password saved."
99
  msgstr "Nouveau mot de passe enregistré."
100
 
101
- #: admin/admin.php:135
102
  msgid ""
103
  "Password protect your web site. Users will be asked to enter a password to "
104
  "view the site."
@@ -106,7 +129,7 @@ msgstr ""
106
  "Protéger votre site avec un mot de passe. Les utilisateurs devront saisir un "
107
  "mot de passe pour accéder au site."
108
 
109
- #: admin/admin.php:136
110
  msgid ""
111
  "For more information about Password Protected settings, view the \"Help\" "
112
  "tab at the top of this page."
@@ -114,31 +137,59 @@ msgstr ""
114
  "Pour plus d'infos sur les réglages de Password Protected, rendez-vous dans "
115
  "l'onglet \"Aide\" en haut de la page."
116
 
117
- #: admin/admin.php:143
118
  msgid "Enabled"
119
  msgstr "Activé"
120
 
121
- #: admin/admin.php:144
122
- msgid "Allow RSS Feeds"
123
- msgstr "Autoriser les flux RSS"
124
-
125
- #: admin/admin.php:145
126
  msgid "Allow Administrators"
127
  msgstr "Autoriser les administrateurs"
128
 
129
- #: admin/admin.php:152
 
 
 
 
 
 
 
 
130
  msgid ""
131
  "If you would like to change the password type a new one. Otherwise leave "
132
  "this blank."
133
  msgstr ""
134
- "Si vous souhaitez changer le mot de passe, tapez en un nouveau. Sinon, "
135
- "laissez les champs vides."
136
 
137
- #: admin/admin.php:153
138
  msgid "Type your new password again."
139
  msgstr "Veuillez saisir une deuxième fois votre mot de passe."
140
 
141
- #: admin/admin.php:185
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  msgid ""
143
  "You have enabled password protection but not yet set a password. Please set "
144
  "one below."
@@ -146,28 +197,34 @@ msgstr ""
146
  "Vous avez activé la protection par mot de passe, mais n'en avez pas défini "
147
  "un. S'il vous plaît en définir un ci-dessous."
148
 
149
- #: admin/admin.php:188
150
  msgid ""
151
- "You have enabled password protection and allowed administrators - other "
152
- "users will still need to login to view the site."
153
  msgstr ""
154
  "Vous avez activé la protection par mot de passe et autorisé les "
155
- "administrateurs - les autres utilisateurs devront toujours se connecter pour "
156
- "accéder à votre site."
157
 
158
- #: password-protected.php:110
159
  msgid ""
160
- "Feeds are not available for this site. Please visit the <a href=\"%s"
161
- "\">website</a>."
162
  msgstr ""
163
- "Les flux ne sont pas disponibles sur ce site. S'il vous plaît rendez-vous "
164
- "sur le <a href=\"%s\">site web</a>."
 
165
 
166
- #: password-protected.php:155
167
- msgid "Incorrect Password"
168
- msgstr "Mot de passe incorrect"
 
 
 
 
 
169
 
170
- #: theme/login.php:40
171
  msgid ""
172
  "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
173
  "browser. You must <a href='http://www.google.com/cookies.html'>enable "
@@ -177,35 +234,6 @@ msgstr ""
177
  "reconnus pas votre navigateur. Vous devez <a href='http://www.google.com/"
178
  "cookies.html'>activer les cookies</a> pour utiliser WordPress."
179
 
180
- #: theme/login.php:122
181
  msgid "Password"
182
  msgstr "Mot de passe"
183
-
184
- #: theme/login.php:126
185
- msgid "Remember Me"
186
- msgstr "Se souvenir de moi"
187
-
188
- #: theme/login.php:129
189
- msgid "Log In"
190
- msgstr "Se connecter"
191
-
192
- #. Plugin URI of the plugin/theme
193
- msgid "http://wordpress.org/extend/plugins/password-protected/"
194
- msgstr "http://wordpress.org/extend/plugins/password-protected/"
195
-
196
- #. Description of the plugin/theme
197
- msgid ""
198
- "A very simple way to quickly password protect your WordPress site with a "
199
- "single password. Integrates seamlessly into your WordPress privacy settings."
200
- msgstr ""
201
- "Un moyen très simple de rapidement protéger votre site WordPress avec un "
202
- "seul mot de passe. S'intègre parfaitement dans vos paramètres de "
203
- "confidentialité de WordPress."
204
-
205
- #. Author of the plugin/theme
206
- msgid "Ben Huson"
207
- msgstr "Ben Huson"
208
-
209
- #. Author URI of the plugin/theme
210
- msgid "http://www.benhuson.co.uk/"
211
- msgstr "http://www.benhuson.co.uk/"
1
  # Copyright (C) 2013 Password Protected
2
  # This file is distributed under the same license as the Password Protected package.
3
  # Translators:
4
+ # Calinou, 2014
5
+ # FxB <fxb@wp-translations.org>, 2013-2014
6
+ # FxB <fxb@wp-translations.org>, 2013
7
+ # Jean-Christophe Brebion <pro@jcbrebion.com>, 2014
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: Password Protected\n"
11
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/password-protected\n"
12
+ "POT-Creation-Date: 2014-04-15 00:07-0000\n"
13
+ "PO-Revision-Date: 2014-06-05 07:45-0000\n"
14
  "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
15
+ "Language-Team: French (France) (http://www.transifex.com/projects/p/password-"
16
+ "protected/language/fr_FR/)\n"
17
  "MIME-Version: 1.0\n"
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
  "Content-Transfer-Encoding: 8bit\n"
20
  "Language: fr_FR\n"
21
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
22
  "X-Generator: Poedit 1.6.2\n"
23
+ "X-Poedit-Basepath: ./\n"
24
+ "X-Poedit-KeywordsList: __;_e;_ex;_x\n"
25
+ "X-Poedit-SearchPath-0: ..\n"
26
 
27
+ #: ../password-protected.php:115
28
+ #, php-format
29
+ msgid ""
30
+ "Feeds are not available for this site. Please visit the <a href=\"%s"
31
+ "\">website</a>."
32
+ msgstr ""
33
+ "Les flux ne sont pas disponibles sur ce site. S'il vous plaît rendez-vous "
34
+ "sur le <a href=\"%s\">site web</a>."
35
+
36
+ #: ../password-protected.php:183
37
+ msgid "Incorrect Password"
38
+ msgstr "Mot de passe incorrect"
39
+
40
+ #: ../password-protected.php:427
41
+ msgid ""
42
+ "The Password Protected plugin does not work with WP Engine hosting. Please "
43
+ "disable it."
44
+ msgstr ""
45
+ "Le plugin Password Protected n'est pas compatible avec l'hébergeur WP "
46
+ "Engine. Veuillez le désactiver."
47
+
48
+ #: ../admin/admin.php:26 ../admin/admin.php:63
49
  msgid "Password Protected"
50
  msgstr "Password Protected"
51
 
52
+ #: ../admin/admin.php:36
53
  msgid "Password Protected Settings"
54
  msgstr "Réglages de Password Protected"
55
 
56
+ #: ../admin/admin.php:40
57
  msgid "Save Changes"
58
  msgstr "Enregistrer les modifications"
59
 
60
+ #: ../admin/admin.php:64
61
  msgid ""
62
+ "<p><strong>Password Protected Status</strong><br />Turn on/off password "
63
+ "protection.</p>"
64
  msgstr ""
65
+ "<p><strong>État de Password Protected</strong><br />Activer/désactiver la "
66
  "protection par mot de passe.</p>"
67
 
68
+ #: ../admin/admin.php:65
69
  msgid ""
70
+ "<p><strong>Protected Permissions</strong><br />Allow access for logged in "
71
+ "users and administrators without needing to enter a password. You will need "
72
+ "to enable this option if you want administrators to be able to preview the "
73
+ "site in the Theme Customizer. Also allow RSS Feeds to be accessed when the "
74
+ "site is password protected.</p>"
75
  msgstr ""
76
+ "<p><strong>Droits d'accès protégés</strong><br />Permet l'accès aux "
77
+ "utilisateurs et aux administrateurs connectés sans avoir à entrer de mot de "
78
+ "passe. Vous devrez aussi activer cette option si vous souhaitez que les "
79
+ "administrateurs puissent accéder à l'aperçu du site dans le thème "
80
+ "Customizer. Permet aussi d’accéder aux flux RSS quand le site est protégé "
81
+ "par mot de passe.</p>"
82
+
83
+ #: ../admin/admin.php:66
 
 
 
 
 
 
 
 
 
84
  msgid ""
85
  "<p><strong>Password Fields</strong><br />To set a new password, enter it "
86
  "into both fields. You cannot set an `empty` password. To disable password "
91
  "mot de passe « vide ». Pour désactiver le mot de passe protection décochez "
92
  "la case d'activation.</p>"
93
 
94
+ #: ../admin/admin.php:82
95
  msgid "Password Protected Status"
96
  msgstr "État de Password Protected "
97
 
98
+ #: ../admin/admin.php:89
99
+ msgid "Protected Permissions"
100
+ msgstr "Droits d'accès protégés"
101
+
102
+ #: ../admin/admin.php:96
103
  msgid "New Password"
104
  msgstr "Nouveau mot de passe"
105
 
106
+ #: ../admin/admin.php:120
107
  msgid ""
108
  "New password not saved. When setting a new password please enter it in both "
109
  "fields."
111
  "Le nouveau mot de passe n'est pas enregistré. Quand vous configurez un "
112
  "nouveau mot de passe, entrez le dans les deux champs."
113
 
114
+ #: ../admin/admin.php:123
115
  msgid "New password not saved. Password fields did not match."
116
  msgstr ""
117
  "Le nouveau mot de passe n'est pas enregistré. Les champs ne correspondent "
118
  "pas."
119
 
120
+ #: ../admin/admin.php:126
121
  msgid "New password saved."
122
  msgstr "Nouveau mot de passe enregistré."
123
 
124
+ #: ../admin/admin.php:138
125
  msgid ""
126
  "Password protect your web site. Users will be asked to enter a password to "
127
  "view the site."
129
  "Protéger votre site avec un mot de passe. Les utilisateurs devront saisir un "
130
  "mot de passe pour accéder au site."
131
 
132
+ #: ../admin/admin.php:139
133
  msgid ""
134
  "For more information about Password Protected settings, view the \"Help\" "
135
  "tab at the top of this page."
137
  "Pour plus d'infos sur les réglages de Password Protected, rendez-vous dans "
138
  "l'onglet \"Aide\" en haut de la page."
139
 
140
+ #: ../admin/admin.php:146
141
  msgid "Enabled"
142
  msgstr "Activé"
143
 
144
+ #: ../admin/admin.php:153
 
 
 
 
145
  msgid "Allow Administrators"
146
  msgstr "Autoriser les administrateurs"
147
 
148
+ #: ../admin/admin.php:154
149
+ msgid "Allow Logged In Users"
150
+ msgstr "Autoriser les utilisateurs connectés"
151
+
152
+ #: ../admin/admin.php:155
153
+ msgid "Allow RSS Feeds"
154
+ msgstr "Autoriser les flux RSS"
155
+
156
+ #: ../admin/admin.php:162
157
  msgid ""
158
  "If you would like to change the password type a new one. Otherwise leave "
159
  "this blank."
160
  msgstr ""
161
+ "Si vous souhaitez changer le mot de passe, tapez-en un nouveau. Sinon, "
162
+ "laissez le champ vide."
163
 
164
+ #: ../admin/admin.php:163
165
  msgid "Type your new password again."
166
  msgstr "Veuillez saisir une deuxième fois votre mot de passe."
167
 
168
+ #: ../admin/admin.php:198
169
+ msgid "http://github.com/benhuson/password-protected"
170
+ msgstr "http://github.com/benhuson/password-protected"
171
+
172
+ #: ../admin/admin.php:198
173
+ msgid "GitHub"
174
+ msgstr "GitHub"
175
+
176
+ #: ../admin/admin.php:199
177
+ msgid ""
178
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
179
+ "protected/"
180
+ msgstr ""
181
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
182
+ "protected/"
183
+
184
+ #: ../admin/admin.php:199
185
+ msgid "Translate"
186
+ msgstr "Traduire"
187
+
188
+ #: ../admin/admin.php:213
189
+ msgid "Settings"
190
+ msgstr "Réglages"
191
+
192
+ #: ../admin/admin.php:238
193
  msgid ""
194
  "You have enabled password protection but not yet set a password. Please set "
195
  "one below."
197
  "Vous avez activé la protection par mot de passe, mais n'en avez pas défini "
198
  "un. S'il vous plaît en définir un ci-dessous."
199
 
200
+ #: ../admin/admin.php:242
201
  msgid ""
202
+ "You have enabled password protection and allowed administrators and logged "
203
+ "in users - other users will still need to enter a password to view the site."
204
  msgstr ""
205
  "Vous avez activé la protection par mot de passe et autorisé les "
206
+ "administrateurs et utilisateurs connectés - les autres utilisateurs devront "
207
+ "entrer un mot de passe pour consulter le site."
208
 
209
+ #: ../admin/admin.php:244
210
  msgid ""
211
+ "You have enabled password protection and allowed administrators - other "
212
+ "users will still need to enter a password to view the site."
213
  msgstr ""
214
+ "Vous avez activé la protection par mot de passe et autorisé les "
215
+ "administrateurs - les autres utilisateurs devront entrer un mot de passe "
216
+ "pour consulter le site."
217
 
218
+ #: ../admin/admin.php:246
219
+ msgid ""
220
+ "You have enabled password protection and allowed logged in users - other "
221
+ "users will still need to enter a password to view the site."
222
+ msgstr ""
223
+ "Vous avez activé la protection par mot de passe et autorisé les utilisateurs "
224
+ "connectés - les autres utilisateurs devront entrer un mot de passe pour "
225
+ "consulter le site."
226
 
227
+ #: ../theme/login.php:40
228
  msgid ""
229
  "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
230
  "browser. You must <a href='http://www.google.com/cookies.html'>enable "
234
  "reconnus pas votre navigateur. Vous devez <a href='http://www.google.com/"
235
  "cookies.html'>activer les cookies</a> pour utiliser WordPress."
236
 
237
+ #: ../theme/login.php:132
238
  msgid "Password"
239
  msgstr "Mot de passe"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/password-protected-km.mo ADDED
Binary file
languages/password-protected-km.po ADDED
@@ -0,0 +1,219 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2013 Password Protected
2
+ # This file is distributed under the same license as the Password Protected package.
3
+ # Translators:
4
+ # Sovichet Tep, 2014
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: 2014-04-15 00:07-0000\n"
10
+ "PO-Revision-Date: 2014-06-05 07:45-0000\n"
11
+ "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
12
+ "Language-Team: Khmer (http://www.transifex.com/projects/p/password-protected/"
13
+ "language/km/)\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Language: km\n"
18
+ "Plural-Forms: nplurals=1; plural=0;\n"
19
+ "X-Generator: Poedit 1.6.2\n"
20
+ "X-Poedit-Basepath: ./\n"
21
+ "X-Poedit-KeywordsList: __;_e;_ex;_x\n"
22
+ "X-Poedit-SearchPath-0: ..\n"
23
+
24
+ #: ../password-protected.php:115
25
+ #, php-format
26
+ msgid ""
27
+ "Feeds are not available for this site. Please visit the <a href=\"%s"
28
+ "\">website</a>."
29
+ msgstr "មិន​មាន Feed សម្រាប់​វេបសាយ​នេះ​ទេ។ សូម​ចូល​មើល <a href=\"%s\">វេបសាយ</a>។"
30
+
31
+ #: ../password-protected.php:183
32
+ msgid "Incorrect Password"
33
+ msgstr "ខុស​ពាក្យ​សម្ងាត់"
34
+
35
+ #: ../password-protected.php:427
36
+ msgid ""
37
+ "The Password Protected plugin does not work with WP Engine hosting. Please "
38
+ "disable it."
39
+ msgstr "កម្មវិធី Password Protected មិន​ដើរ​ជាមួយ​ម៉ាស៊ីន​ផ្ទុក WP Engine ទេ។ សូម​បិទ​វា។"
40
+
41
+ #: ../admin/admin.php:26 ../admin/admin.php:63
42
+ msgid "Password Protected"
43
+ msgstr "Password Protected"
44
+
45
+ #: ../admin/admin.php:36
46
+ msgid "Password Protected Settings"
47
+ msgstr "ការ​កំណត់ Password Protected"
48
+
49
+ #: ../admin/admin.php:40
50
+ msgid "Save Changes"
51
+ msgstr "រក្សាទុក​បន្លាស់​ប្ដូរ"
52
+
53
+ #: ../admin/admin.php:64
54
+ msgid ""
55
+ "<p><strong>Password Protected Status</strong><br />Turn on/off password "
56
+ "protection.</p>"
57
+ msgstr ""
58
+ "<p><strong>ស្ថានភាព Password Protected</strong><br />បិទ​ឬ​បើក​ការ​ការពារ​ដោយ​ពាក្យ​"
59
+ "សម្ងាត់។</p>"
60
+
61
+ #: ../admin/admin.php:65
62
+ msgid ""
63
+ "<p><strong>Protected Permissions</strong><br />Allow access for logged in "
64
+ "users and administrators without needing to enter a password. You will need "
65
+ "to enable this option if you want administrators to be able to preview the "
66
+ "site in the Theme Customizer. Also allow RSS Feeds to be accessed when the "
67
+ "site is password protected.</p>"
68
+ msgstr ""
69
+ "<p><strong>សិទ្ធិ​ដែល​ត្រូវ​បាន​ការពារ</strong><br />អនុញ្ញាត​សិទ្ធិ​ចូល​ទៅ​ដល់​អ្នក​ប្រើ​ដែល​បាន​ភ្ជាប់​ចូល​"
70
+ "គណនី និង​អភិបាល ដោយ​មិន​បាច់​វាយ​បញ្ចុល​ពាក្យ​សម្ងាត់​ទៀត​ទេ។ អ្នក​នឹង​ត្រូវ​បើក​ជម្រើស​នេះ ប្រសិន​បើ​អ្នក​ចង់​ឲ្យ​"
71
+ "អភិបាល​អាច​មើល​វេបសាយ​ជាមុន​នៅ​ក្នុង ប្រដាប់​កែ​តម្រូវ​សំបក​រូបរាង (Theme Customizer)។ អ្នក​ក៏​អាច​"
72
+ "អនុញ្ញាត​ឲ្យ​ចូល​ទៅ RSS Feeds បាន​នៅ​ពេល​ដែល​វេបសាយ​ត្រូវ​បាន​ការពារ​ដោយ​ពាក្យ​សម្ងាត់។</p>"
73
+
74
+ #: ../admin/admin.php:66
75
+ msgid ""
76
+ "<p><strong>Password Fields</strong><br />To set a new password, enter it "
77
+ "into both fields. You cannot set an `empty` password. To disable password "
78
+ "protection uncheck the Enabled checkbox.</p>"
79
+ msgstr ""
80
+ "<p><strong>វាល​ពាក្យសម្ងាត់</strong><br />ដើម្បី​កំណត់​ពាក្យ​សម្ងាត់​ថ្មី​មួយ សូម​បញ្ចូល​វា​ទៅ​ក្នុង​វាល​"
81
+ "ទាំងពីរ។ អ្នក​មិន​អាច​កំណត់​ពាក្យ​សម្ងាត់ `ទទេ` បាន​ឡើយ។ ដើម្បី​បិទ​ការ​ការពារ​ដោយ​ពាក្យ​សម្ងាត់ សូម​ដកធីក​ពី​"
82
+ "ប្រអប់ \"បាន​បើក\"។</p>"
83
+
84
+ #: ../admin/admin.php:82
85
+ msgid "Password Protected Status"
86
+ msgstr "ស្ថានភាព Password Protected"
87
+
88
+ #: ../admin/admin.php:89
89
+ msgid "Protected Permissions"
90
+ msgstr "សិទ្ធិ​ដែល​ត្រូវ​បាន​ការពារ"
91
+
92
+ #: ../admin/admin.php:96
93
+ msgid "New Password"
94
+ msgstr "ពាក្យ​សម្ងាត់​ថ្មី"
95
+
96
+ #: ../admin/admin.php:120
97
+ msgid ""
98
+ "New password not saved. When setting a new password please enter it in both "
99
+ "fields."
100
+ msgstr "មិន​បាន​រក្សាទុក​ពាក្យ​សម្ងាត់​ថ្មី។ នៅ​ពេល​កំណត់​ពាក្យ​សម្ងាត់​ថ្មី សូម​បញ្ចូល​វា​ទៅ​ក្នុង​វាល​ទាំង​ពីរ។"
101
+
102
+ #: ../admin/admin.php:123
103
+ msgid "New password not saved. Password fields did not match."
104
+ msgstr "មិន​បាន​រក្សាទុក​ពាក្យ​សម្ងាត់​ថ្មី។ វាល​ពាក្យ​សម្ងាត់​មិន​ត្រូវ​គ្នា។"
105
+
106
+ #: ../admin/admin.php:126
107
+ msgid "New password saved."
108
+ msgstr "បាន​រក្សាទុក​ពាក្យ​សម្ងាត់​ថ្មី។"
109
+
110
+ #: ../admin/admin.php:138
111
+ msgid ""
112
+ "Password protect your web site. Users will be asked to enter a password to "
113
+ "view the site."
114
+ msgstr ""
115
+ "ពាក្យ​សម្ងាត់​ការពារ​វេបសាយ​របស់​អ្នក។ អ្នក​ប្រើ​នានា​ត្រូវ​វាយ​បញ្ចូល​ពាក្យ​សម្ងាត់ ដើម្បី​អាច​មើល​វេបសាយ​"
116
+ "បាន។"
117
+
118
+ #: ../admin/admin.php:139
119
+ msgid ""
120
+ "For more information about Password Protected settings, view the \"Help\" "
121
+ "tab at the top of this page."
122
+ msgstr ""
123
+ "សម្រាប់​ព័ត៌មាន​បន្ថែម​អំពី​ការ​កំណត់ Password Protected សូម​មើល​ផ្ទាំង \"ជំនួយ\" ដែល​ស្ថិត​នៅ​ផ្នែក​ខាង​"
124
+ "លើ​នៃ​ទំព័រ​នេះ។"
125
+
126
+ #: ../admin/admin.php:146
127
+ msgid "Enabled"
128
+ msgstr "បាន​បើក"
129
+
130
+ #: ../admin/admin.php:153
131
+ msgid "Allow Administrators"
132
+ msgstr "អនុញ្ញាត​អភិបាល"
133
+
134
+ #: ../admin/admin.php:154
135
+ msgid "Allow Logged In Users"
136
+ msgstr "អនុញ្ញាត​អ្នក​ប្រើ​ដែល​បាន​ភ្ជាប់​ចូល"
137
+
138
+ #: ../admin/admin.php:155
139
+ msgid "Allow RSS Feeds"
140
+ msgstr "អនុញ្ញាត RSS Feeds"
141
+
142
+ #: ../admin/admin.php:162
143
+ msgid ""
144
+ "If you would like to change the password type a new one. Otherwise leave "
145
+ "this blank."
146
+ msgstr "វាយ​បញ្ចូល​ពាក្យ​សម្ងាត់​ថ្មី ប្រសិន​បើ​អ្នក​ចង់​ប្ដូរ។ បើ​មិន​ចង់​ទេ ទុក​វា​ឲ្យ​នៅ​ទទេ​ចុះ។"
147
+
148
+ #: ../admin/admin.php:163
149
+ msgid "Type your new password again."
150
+ msgstr "វាយ​បញ្ចូល​ពាក្យ​សម្ងាត់​ថ្មី​ម្ដង​ទៀត។"
151
+
152
+ #: ../admin/admin.php:198
153
+ msgid "http://github.com/benhuson/password-protected"
154
+ msgstr "http://github.com/benhuson/password-protected"
155
+
156
+ #: ../admin/admin.php:198
157
+ msgid "GitHub"
158
+ msgstr "GitHub"
159
+
160
+ #: ../admin/admin.php:199
161
+ msgid ""
162
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
163
+ "protected/"
164
+ msgstr ""
165
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
166
+ "protected/"
167
+
168
+ #: ../admin/admin.php:199
169
+ msgid "Translate"
170
+ msgstr "បក​ប្រែ"
171
+
172
+ #: ../admin/admin.php:213
173
+ msgid "Settings"
174
+ msgstr "ការ​កំណត់"
175
+
176
+ #: ../admin/admin.php:238
177
+ msgid ""
178
+ "You have enabled password protection but not yet set a password. Please set "
179
+ "one below."
180
+ msgstr ""
181
+ "អ្នក​បាន​បើក​ការ​ការពារ​ដោយ​ពាក្យ​សម្ងាត់ ប៉ុន្តែ​មិន​ទាន់​បាន​កំណត់​ពាក្យ​សម្ងាត់​ទេ។ សូម​កំណត់​មួយ​នៅ​ខាង​ក្រោម។"
182
+
183
+ #: ../admin/admin.php:242
184
+ msgid ""
185
+ "You have enabled password protection and allowed administrators and logged "
186
+ "in users - other users will still need to enter a password to view the site."
187
+ msgstr ""
188
+ "អ្នក​បាន​អនុញ្ញាត​ការ​ការពារ​ដោយ​ពាក្យ​សម្ងាត់ និង​បាន​អនុញ្ញាត​ដល់​អភិបាល​និង​អ្នក​ប្រើ​ដែល​បាន​ភ្ជាប់​ចូល។ ដោយ​"
189
+ "ឡែក អ្នក​ប្រើ​ដទៃ​ទៀត នៅ​តែ​ត្រូវ​វាយ​បញ្ចូល​ពាក្យ​សម្ងាត់ ដើម្បី​មើល​វេបសាយ។"
190
+
191
+ #: ../admin/admin.php:244
192
+ msgid ""
193
+ "You have enabled password protection and allowed administrators - other "
194
+ "users will still need to enter a password to view the site."
195
+ msgstr ""
196
+ "អ្នក​បាន​បើក​ការ​ការពារ​ដោយ​ពាក្យ​សម្ងាត់ និង​បាន​អនុញ្ញាត​ដល់​អភិបាល។ ដោយ​ឡែក អ្នក​ប្រើ​ដទៃ​ទៀត នៅ​តែ​"
197
+ "ត្រូវ​វាយ​បញ្ចូល​ពាក្យ​សម្ងាត់ ដើម្បី​មើល​វេបសាយ។"
198
+
199
+ #: ../admin/admin.php:246
200
+ msgid ""
201
+ "You have enabled password protection and allowed logged in users - other "
202
+ "users will still need to enter a password to view the site."
203
+ msgstr ""
204
+ "អ្នក​បាន​បើក​ការ​ការពារ​ដោយ​ពាក្យ​សម្ងាត់ និង​បាន​អនុញ្ញាត​ដល់​អ្នក​ប្រើ​ដែល​បាន​ភ្ជាប់​ចូល។ ដោយ​ឡែក អ្នក​ប្រើ​"
205
+ "ដទៃ​ទៀត នៅ​តែ​ត្រូវ​វាយ​បញ្ចូល​ពាក្យ​សម្ងាត់ ដើម្បី​មើល​វេបសាយ។"
206
+
207
+ #: ../theme/login.php:40
208
+ msgid ""
209
+ "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
210
+ "browser. You must <a href='http://www.google.com/cookies.html'>enable "
211
+ "cookies</a> to use WordPress."
212
+ msgstr ""
213
+ "<strong>កំហុស</strong>៖ ខូគី​ត្រូវ​បាន​ទប់​ស្កាត់ ឬ​ក៏​កម្មវិធី​អ៊ីនធឺណិត​មិន​ស្គាល់។ អ្នក​ត្រូវតែ <a "
214
+ "href='http://www.google.com/cookies.html'>អនុញ្ញាត​ខូគី</a> ដើម្បី​អាច​ប្រើ WordPress "
215
+ "បាន។"
216
+
217
+ #: ../theme/login.php:132
218
+ msgid "Password"
219
+ msgstr "ពាក្យ​សម្ងាត់។"
languages/password-protected-pl_PL.mo ADDED
Binary file
languages/password-protected-pl_PL.po CHANGED
@@ -1,42 +1,47 @@
1
  # Copyright (C) 2013 Password Protected
2
  # This file is distributed under the same license as the Password Protected package.
3
  # Translators:
 
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Password Protected\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/password-protected\n"
8
- "POT-Creation-Date: 2014-02-18 08:12-0000\n"
9
- "PO-Revision-Date: 2014-02-21 08:37+0000\n"
10
- "Last-Translator: Francois-Xavier Bénard <fxb@wp-translations.org>\n"
11
- "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/wp-translations/language/pl_PL/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Language: pl_PL\n"
16
- "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
17
  "X-Generator: Poedit 1.6.2\n"
18
  "X-Poedit-Basepath: ./\n"
19
- "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SearchPath-0: ..\n"
21
 
22
  #: ../password-protected.php:115
23
  #, php-format
24
  msgid ""
25
- "Feeds are not available for this site. Please visit the <a "
26
- "href=\"%s\">website</a>."
27
  msgstr ""
 
 
28
 
29
  #: ../password-protected.php:181
30
  msgid "Incorrect Password"
31
- msgstr ""
32
 
33
  #: ../admin/admin.php:26 ../admin/admin.php:63
34
  msgid "Password Protected"
35
- msgstr "Zabezpieczony hasłem"
36
 
37
  #: ../admin/admin.php:36
38
  msgid "Password Protected Settings"
39
- msgstr ""
40
 
41
  #: ../admin/admin.php:40
42
  msgid "Save Changes"
@@ -47,6 +52,8 @@ msgid ""
47
  "<p><strong>Password Protected Status</strong><br />Turn on/off password "
48
  "protection.</p>"
49
  msgstr ""
 
 
50
 
51
  #: ../admin/admin.php:65
52
  msgid ""
@@ -56,6 +63,10 @@ msgid ""
56
  "site in the Theme Customizer. Also allow RSS Feeds to be accessed when the "
57
  "site is password protected.</p>"
58
  msgstr ""
 
 
 
 
59
 
60
  #: ../admin/admin.php:66
61
  msgid ""
@@ -63,14 +74,17 @@ msgid ""
63
  "into both fields. You cannot set an `empty` password. To disable password "
64
  "protection uncheck the Enabled checkbox.</p>"
65
  msgstr ""
 
 
 
66
 
67
  #: ../admin/admin.php:82
68
  msgid "Password Protected Status"
69
- msgstr ""
70
 
71
  #: ../admin/admin.php:89
72
  msgid "Protected Permissions"
73
- msgstr ""
74
 
75
  #: ../admin/admin.php:96
76
  msgid "New Password"
@@ -80,27 +94,33 @@ msgstr "Nowe hasło"
80
  msgid ""
81
  "New password not saved. When setting a new password please enter it in both "
82
  "fields."
83
- msgstr ""
84
 
85
  #: ../admin/admin.php:123
86
  msgid "New password not saved. Password fields did not match."
87
  msgstr ""
 
 
88
 
89
  #: ../admin/admin.php:126
90
  msgid "New password saved."
91
- msgstr ""
92
 
93
  #: ../admin/admin.php:138
94
  msgid ""
95
  "Password protect your web site. Users will be asked to enter a password to "
96
  "view the site."
97
  msgstr ""
 
 
98
 
99
  #: ../admin/admin.php:139
100
  msgid ""
101
  "For more information about Password Protected settings, view the \"Help\" "
102
  "tab at the top of this page."
103
  msgstr ""
 
 
104
 
105
  #: ../admin/admin.php:146
106
  msgid "Enabled"
@@ -108,21 +128,23 @@ msgstr "Włączone"
108
 
109
  #: ../admin/admin.php:153
110
  msgid "Allow Administrators"
111
- msgstr ""
112
 
113
  #: ../admin/admin.php:154
114
  msgid "Allow Logged In Users"
115
- msgstr ""
116
 
117
  #: ../admin/admin.php:155
118
  msgid "Allow RSS Feeds"
119
- msgstr ""
120
 
121
  #: ../admin/admin.php:162
122
  msgid ""
123
  "If you would like to change the password type a new one. Otherwise leave "
124
  "this blank."
125
- msgstr "Jeżeli chcesz zmienić swoje hasło wprowadź tutaj nowe, w przeciwnym wypadku pozostaw to pole puste."
 
 
126
 
127
  #: ../admin/admin.php:163
128
  msgid "Type your new password again."
@@ -130,46 +152,73 @@ msgstr "Wprowadź swoje nowe hasło ponownie."
130
 
131
  #: ../admin/admin.php:198
132
  msgid "http://github.com/benhuson/password-protected"
133
- msgstr ""
134
 
135
  #: ../admin/admin.php:198
136
  msgid "GitHub"
 
 
 
 
 
 
137
  msgstr ""
 
 
 
 
 
 
138
 
139
- #: ../admin/admin.php:212
140
  msgid "Settings"
141
  msgstr "Ustawienia"
142
 
143
- #: ../admin/admin.php:226
144
  msgid ""
145
  "You have enabled password protection but not yet set a password. Please set "
146
  "one below."
147
  msgstr ""
 
 
148
 
149
- #: ../admin/admin.php:230
150
  msgid ""
151
  "You have enabled password protection and allowed administrators and logged "
152
  "in users - other users will still need to login to view the site."
153
  msgstr ""
 
 
 
 
154
 
155
- #: ../admin/admin.php:232
156
  msgid ""
157
  "You have enabled password protection and allowed administrators - other "
158
  "users will still need to login to view the site."
159
  msgstr ""
 
 
 
160
 
161
- #: ../admin/admin.php:234
162
  msgid ""
163
  "You have enabled password protection and allowed logged in users - other "
164
  "users will still need to login to view the site."
165
  msgstr ""
 
 
 
166
 
167
  #: ../theme/login.php:40
168
  msgid ""
169
  "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
170
  "browser. You must <a href='http://www.google.com/cookies.html'>enable "
171
  "cookies</a> to use WordPress."
172
- msgstr "<strong>BŁĄD</strong>: Ciasteczka są blokowane lub nieobsługiwane przez Twoją przeglądarkę. Musisz <a href='http://www.google.com/cookies.html'>włączyć obsługę ciasteczek</a>, by móc używać WordPressa."
 
 
 
173
 
174
  #: ../theme/login.php:125
175
  msgid "Password"
1
  # Copyright (C) 2013 Password Protected
2
  # This file is distributed under the same license as the Password Protected package.
3
  # Translators:
4
+ # marcinkuder <marcin.kuder@gmail.com>, 2014
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: 2014-02-27 20:46-0000\n"
10
+ "PO-Revision-Date: 2014-04-15 00:05-0000\n"
11
+ "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
12
+ "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/wp-"
13
+ "translations/language/pl_PL/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: pl_PL\n"
18
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
19
+ "|| n%100>=20) ? 1 : 2);\n"
20
  "X-Generator: Poedit 1.6.2\n"
21
  "X-Poedit-Basepath: ./\n"
22
+ "X-Poedit-KeywordsList: __;_e;_ex;_x\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
  #: ../password-protected.php:115
26
  #, php-format
27
  msgid ""
28
+ "Feeds are not available for this site. Please visit the <a href=\"%s"
29
+ "\">website</a>."
30
  msgstr ""
31
+ "Kanały RSS nie są dostępne dla tej strony. Więcej informacji pod poniższym "
32
+ "<a href=\"%s\">linkiem</a>."
33
 
34
  #: ../password-protected.php:181
35
  msgid "Incorrect Password"
36
+ msgstr "Nieprawidłowe hasło"
37
 
38
  #: ../admin/admin.php:26 ../admin/admin.php:63
39
  msgid "Password Protected"
40
+ msgstr "Zabezpieczenie hasłem"
41
 
42
  #: ../admin/admin.php:36
43
  msgid "Password Protected Settings"
44
+ msgstr "Ustawienia wtyczki"
45
 
46
  #: ../admin/admin.php:40
47
  msgid "Save Changes"
52
  "<p><strong>Password Protected Status</strong><br />Turn on/off password "
53
  "protection.</p>"
54
  msgstr ""
55
+ "<p><strong>\n"
56
+ "Status zabezpieczeń</strong><br />Włącz lub wyłącz zabezpieczenie hasłem.</p>"
57
 
58
  #: ../admin/admin.php:65
59
  msgid ""
63
  "site in the Theme Customizer. Also allow RSS Feeds to be accessed when the "
64
  "site is password protected.</p>"
65
  msgstr ""
66
+ "<p><strong>Wyjątki</strong><br />Zezwól administratorom i/lub zalogowanym "
67
+ "użytkownikom na dostęp bez konieczności podawania hasła. Ta opcja musi być "
68
+ "włączona aby administratorzy mieli możliwość podglądu strony w edytorze "
69
+ "motywów. Dodatkowo, kanały RSS również mogą być dostępne bez hasła.</p>"
70
 
71
  #: ../admin/admin.php:66
72
  msgid ""
74
  "into both fields. You cannot set an `empty` password. To disable password "
75
  "protection uncheck the Enabled checkbox.</p>"
76
  msgstr ""
77
+ "<p><strong>Pola z hasłem</strong><br />Aby ustawić lub zmienić hasło, "
78
+ "uzupełnij oba pola. Hasło nie może być puste. Jeśli chcesz wyłączyć hasło, "
79
+ "odznacz opcję \"Włączone\" w statusie zabezpieczeń.</p>"
80
 
81
  #: ../admin/admin.php:82
82
  msgid "Password Protected Status"
83
+ msgstr "Status zabezpieczeń "
84
 
85
  #: ../admin/admin.php:89
86
  msgid "Protected Permissions"
87
+ msgstr "Wyjątki "
88
 
89
  #: ../admin/admin.php:96
90
  msgid "New Password"
94
  msgid ""
95
  "New password not saved. When setting a new password please enter it in both "
96
  "fields."
97
+ msgstr "Nie udało się zmienić hasła. Proszę wpisać hasło w obu polach. "
98
 
99
  #: ../admin/admin.php:123
100
  msgid "New password not saved. Password fields did not match."
101
  msgstr ""
102
+ "Nie udało się zmienić hasła. Hasło i jego potwierdzenie muszą być "
103
+ "identyczne. "
104
 
105
  #: ../admin/admin.php:126
106
  msgid "New password saved."
107
+ msgstr "Hasło zostało zmienione. "
108
 
109
  #: ../admin/admin.php:138
110
  msgid ""
111
  "Password protect your web site. Users will be asked to enter a password to "
112
  "view the site."
113
  msgstr ""
114
+ "Zabezpiecz swoją stronę hasłem. Aby wyświetlić zawartość strony, użytkownicy "
115
+ "będą musieli wprowadzić hasło."
116
 
117
  #: ../admin/admin.php:139
118
  msgid ""
119
  "For more information about Password Protected settings, view the \"Help\" "
120
  "tab at the top of this page."
121
  msgstr ""
122
+ "Więcej informacji o ustawieniach wtyczki dostępnych jest w zakładce \"Pomoc"
123
+ "\" na górze strony."
124
 
125
  #: ../admin/admin.php:146
126
  msgid "Enabled"
128
 
129
  #: ../admin/admin.php:153
130
  msgid "Allow Administrators"
131
+ msgstr "Wpuszczaj administratorów"
132
 
133
  #: ../admin/admin.php:154
134
  msgid "Allow Logged In Users"
135
+ msgstr "Wpuszczaj zalogowanych użytkowników "
136
 
137
  #: ../admin/admin.php:155
138
  msgid "Allow RSS Feeds"
139
+ msgstr "Kanał RSS nie wymaga hasła "
140
 
141
  #: ../admin/admin.php:162
142
  msgid ""
143
  "If you would like to change the password type a new one. Otherwise leave "
144
  "this blank."
145
+ msgstr ""
146
+ "Jeżeli chcesz zmienić swoje hasło wprowadź tutaj nowe, w przeciwnym wypadku "
147
+ "pozostaw to pole puste."
148
 
149
  #: ../admin/admin.php:163
150
  msgid "Type your new password again."
152
 
153
  #: ../admin/admin.php:198
154
  msgid "http://github.com/benhuson/password-protected"
155
+ msgstr "http://github.com/benhuson/password-protected"
156
 
157
  #: ../admin/admin.php:198
158
  msgid "GitHub"
159
+ msgstr "GitHub"
160
+
161
+ #: ../admin/admin.php:199
162
+ msgid ""
163
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
164
+ "protected/"
165
  msgstr ""
166
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
167
+ "protected/"
168
+
169
+ #: ../admin/admin.php:199
170
+ msgid "Translate"
171
+ msgstr "Przetłumacz"
172
 
173
+ #: ../admin/admin.php:213
174
  msgid "Settings"
175
  msgstr "Ustawienia"
176
 
177
+ #: ../admin/admin.php:227
178
  msgid ""
179
  "You have enabled password protection but not yet set a password. Please set "
180
  "one below."
181
  msgstr ""
182
+ "Włączyłeś zabezpieczenie strony hasłem ale nie ustawiłeś hasła. Proszę "
183
+ "wypełnić poniższe pola."
184
 
185
+ #: ../admin/admin.php:231
186
  msgid ""
187
  "You have enabled password protection and allowed administrators and logged "
188
  "in users - other users will still need to login to view the site."
189
  msgstr ""
190
+ "Włączyłeś zabezpieczenie strony hasłem oraz zezwoliłeś administratorom i "
191
+ "zalogowanym użytkownikom na dostęp bez konieczności podawania hasła. "
192
+ "Pozostali, niezalogowani użytkownicy będą musieli podać hasło aby zobaczyć "
193
+ "stronę."
194
 
195
+ #: ../admin/admin.php:233
196
  msgid ""
197
  "You have enabled password protection and allowed administrators - other "
198
  "users will still need to login to view the site."
199
  msgstr ""
200
+ "Włączyłeś zabezpieczenie strony hasłem oraz zezwoliłeś administratorom na "
201
+ "dostęp bez konieczności podawania hasła. Pozostali użytkownicy będą musieli "
202
+ "podać hasło aby zobaczyć stronę."
203
 
204
+ #: ../admin/admin.php:235
205
  msgid ""
206
  "You have enabled password protection and allowed logged in users - other "
207
  "users will still need to login to view the site."
208
  msgstr ""
209
+ "Włączyłeś zabezpieczenie strony hasłem oraz zezwoliłeś zalogowanym "
210
+ "użytkownikom na dostęp bez konieczności podawania hasła. Pozostali "
211
+ "użytkownicy będą musieli podać hasło aby zobaczyć stronę."
212
 
213
  #: ../theme/login.php:40
214
  msgid ""
215
  "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
216
  "browser. You must <a href='http://www.google.com/cookies.html'>enable "
217
  "cookies</a> to use WordPress."
218
+ msgstr ""
219
+ "<strong>BŁĄD</strong>: Ciasteczka są blokowane lub nieobsługiwane przez "
220
+ "Twoją przeglądarkę. Musisz <a href='http://www.google.com/cookies."
221
+ "html'>włączyć obsługę ciasteczek</a>, by móc używać WordPressa."
222
 
223
  #: ../theme/login.php:125
224
  msgid "Password"
languages/password-protected-pt_BR.mo CHANGED
Binary file
languages/password-protected-pt_BR.po CHANGED
@@ -2,13 +2,14 @@
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>, 2014
 
5
  # Thiago Passamani <thiagopassamani@gmail.com>, 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: 2014-02-18 08:12-0000\n"
11
- "PO-Revision-Date: 2014-02-24 23:30-0000\n"
12
  "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
13
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/wp-"
14
  "translations/language/pt_BR/)\n"
@@ -19,7 +20,7 @@ msgstr ""
19
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
20
  "X-Generator: Poedit 1.6.2\n"
21
  "X-Poedit-Basepath: ./\n"
22
- "X-Poedit-KeywordsList: __;_e\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
  #: ../password-protected.php:115
@@ -28,6 +29,8 @@ msgid ""
28
  "Feeds are not available for this site. Please visit the <a href=\"%s"
29
  "\">website</a>."
30
  msgstr ""
 
 
31
 
32
  #: ../password-protected.php:181
33
  msgid "Incorrect Password"
@@ -35,11 +38,11 @@ msgstr "Senha incorreta"
35
 
36
  #: ../admin/admin.php:26 ../admin/admin.php:63
37
  msgid "Password Protected"
38
- msgstr "Password Protected"
39
 
40
  #: ../admin/admin.php:36
41
  msgid "Password Protected Settings"
42
- msgstr ""
43
 
44
  #: ../admin/admin.php:40
45
  msgid "Save Changes"
@@ -50,6 +53,8 @@ msgid ""
50
  "<p><strong>Password Protected Status</strong><br />Turn on/off password "
51
  "protection.</p>"
52
  msgstr ""
 
 
53
 
54
  #: ../admin/admin.php:65
55
  msgid ""
@@ -59,6 +64,11 @@ msgid ""
59
  "site in the Theme Customizer. Also allow RSS Feeds to be accessed when the "
60
  "site is password protected.</p>"
61
  msgstr ""
 
 
 
 
 
62
 
63
  #: ../admin/admin.php:66
64
  msgid ""
@@ -66,14 +76,17 @@ msgid ""
66
  "into both fields. You cannot set an `empty` password. To disable password "
67
  "protection uncheck the Enabled checkbox.</p>"
68
  msgstr ""
 
 
 
69
 
70
  #: ../admin/admin.php:82
71
  msgid "Password Protected Status"
72
- msgstr ""
73
 
74
  #: ../admin/admin.php:89
75
  msgid "Protected Permissions"
76
- msgstr ""
77
 
78
  #: ../admin/admin.php:96
79
  msgid "New Password"
@@ -84,6 +97,8 @@ msgid ""
84
  "New password not saved. When setting a new password please enter it in both "
85
  "fields."
86
  msgstr ""
 
 
87
 
88
  #: ../admin/admin.php:123
89
  msgid "New password not saved. Password fields did not match."
@@ -98,12 +113,14 @@ msgid ""
98
  "Password protect your web site. Users will be asked to enter a password to "
99
  "view the site."
100
  msgstr ""
 
 
101
 
102
  #: ../admin/admin.php:139
103
  msgid ""
104
  "For more information about Password Protected settings, view the \"Help\" "
105
  "tab at the top of this page."
106
- msgstr ""
107
 
108
  #: ../admin/admin.php:146
109
  msgid "Enabled"
@@ -115,7 +132,7 @@ msgstr "Permitir Administradores"
115
 
116
  #: ../admin/admin.php:154
117
  msgid "Allow Logged In Users"
118
- msgstr ""
119
 
120
  #: ../admin/admin.php:155
121
  msgid "Allow RSS Feeds"
@@ -141,33 +158,53 @@ msgstr "http://github.com/benhuson/password-protected"
141
  msgid "GitHub"
142
  msgstr "GitHub"
143
 
144
- #: ../admin/admin.php:212
 
 
 
 
 
 
 
 
 
 
 
 
145
  msgid "Settings"
146
  msgstr "Configurações"
147
 
148
- #: ../admin/admin.php:226
149
  msgid ""
150
  "You have enabled password protection but not yet set a password. Please set "
151
  "one below."
152
  msgstr ""
 
 
153
 
154
- #: ../admin/admin.php:230
155
  msgid ""
156
  "You have enabled password protection and allowed administrators and logged "
157
  "in users - other users will still need to login to view the site."
158
  msgstr ""
 
 
159
 
160
- #: ../admin/admin.php:232
161
  msgid ""
162
  "You have enabled password protection and allowed administrators - other "
163
  "users will still need to login to view the site."
164
  msgstr ""
 
 
165
 
166
- #: ../admin/admin.php:234
167
  msgid ""
168
  "You have enabled password protection and allowed logged in users - other "
169
  "users will still need to login to view the site."
170
  msgstr ""
 
 
171
 
172
  #: ../theme/login.php:40
173
  msgid ""
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>, 2014
5
+ # Rhapy <raphael.mendonca@hotmail.com>, 2014
6
  # Thiago Passamani <thiagopassamani@gmail.com>, 2013
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: Password Protected\n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/password-protected\n"
11
+ "POT-Creation-Date: 2014-02-27 20:46-0000\n"
12
+ "PO-Revision-Date: 2014-04-15 00:05-0000\n"
13
  "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
14
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/wp-"
15
  "translations/language/pt_BR/)\n"
20
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
21
  "X-Generator: Poedit 1.6.2\n"
22
  "X-Poedit-Basepath: ./\n"
23
+ "X-Poedit-KeywordsList: __;_e;_ex;_x\n"
24
  "X-Poedit-SearchPath-0: ..\n"
25
 
26
  #: ../password-protected.php:115
29
  "Feeds are not available for this site. Please visit the <a href=\"%s"
30
  "\">website</a>."
31
  msgstr ""
32
+ "Feeds não disponíveis para este site. Por favor, visite o <a href=\"%s"
33
+ "\">website</a>."
34
 
35
  #: ../password-protected.php:181
36
  msgid "Incorrect Password"
38
 
39
  #: ../admin/admin.php:26 ../admin/admin.php:63
40
  msgid "Password Protected"
41
+ msgstr "Proteção por Senha"
42
 
43
  #: ../admin/admin.php:36
44
  msgid "Password Protected Settings"
45
+ msgstr "Configurações de Protegido por Senha"
46
 
47
  #: ../admin/admin.php:40
48
  msgid "Save Changes"
53
  "<p><strong>Password Protected Status</strong><br />Turn on/off password "
54
  "protection.</p>"
55
  msgstr ""
56
+ "<p><strong>Password Protected Status</strong><br />Ativar/Desativar a "
57
+ "proteção por senha.</p>"
58
 
59
  #: ../admin/admin.php:65
60
  msgid ""
64
  "site in the Theme Customizer. Also allow RSS Feeds to be accessed when the "
65
  "site is password protected.</p>"
66
  msgstr ""
67
+ "<p><strong>Protected Permissions</strong><br />Permite acesso para usuários "
68
+ "logados e administradores sem necessidade de senha. Você necessitará "
69
+ "habilitar essa opção se desejar que administradores visualizem uma prévia do "
70
+ "seite no customizador de tema. Também permitir RSS Feeds para ser acessado "
71
+ "quando o site for protegido por senha.</p>"
72
 
73
  #: ../admin/admin.php:66
74
  msgid ""
76
  "into both fields. You cannot set an `empty` password. To disable password "
77
  "protection uncheck the Enabled checkbox.</p>"
78
  msgstr ""
79
+ "<p><strong>Campos de Senha</strong><br />Para definir uma nova senha, insira-"
80
+ "a em ambos os campos. Você não pode definir uma senha 'em branco'. Para "
81
+ "desabilitar a proteção por senha desmarque a caixa de seleção Ativada.</p>"
82
 
83
  #: ../admin/admin.php:82
84
  msgid "Password Protected Status"
85
+ msgstr "Password Protected Status"
86
 
87
  #: ../admin/admin.php:89
88
  msgid "Protected Permissions"
89
+ msgstr "Permissões de proteção."
90
 
91
  #: ../admin/admin.php:96
92
  msgid "New Password"
97
  "New password not saved. When setting a new password please enter it in both "
98
  "fields."
99
  msgstr ""
100
+ "A nova senha não foi salva. Quando definir uma nova senha, por favor insira "
101
+ "em ambos os campos."
102
 
103
  #: ../admin/admin.php:123
104
  msgid "New password not saved. Password fields did not match."
113
  "Password protect your web site. Users will be asked to enter a password to "
114
  "view the site."
115
  msgstr ""
116
+ "Seu Site esta protegido por senha. Usuários serão solicitados a informar a "
117
+ "senha para visualizar o site."
118
 
119
  #: ../admin/admin.php:139
120
  msgid ""
121
  "For more information about Password Protected settings, view the \"Help\" "
122
  "tab at the top of this page."
123
+ msgstr "para mais informaçoes sobre a configurção de Proteg"
124
 
125
  #: ../admin/admin.php:146
126
  msgid "Enabled"
132
 
133
  #: ../admin/admin.php:154
134
  msgid "Allow Logged In Users"
135
+ msgstr "Permitir usuários logados."
136
 
137
  #: ../admin/admin.php:155
138
  msgid "Allow RSS Feeds"
158
  msgid "GitHub"
159
  msgstr "GitHub"
160
 
161
+ #: ../admin/admin.php:199
162
+ msgid ""
163
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
164
+ "protected/"
165
+ msgstr ""
166
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
167
+ "protected/"
168
+
169
+ #: ../admin/admin.php:199
170
+ msgid "Translate"
171
+ msgstr "Traduzir"
172
+
173
+ #: ../admin/admin.php:213
174
  msgid "Settings"
175
  msgstr "Configurações"
176
 
177
+ #: ../admin/admin.php:227
178
  msgid ""
179
  "You have enabled password protection but not yet set a password. Please set "
180
  "one below."
181
  msgstr ""
182
+ "Você habilitou a proteção por senha, mas não definiu uma senha. Por favor "
183
+ "defina uma abaixo."
184
 
185
+ #: ../admin/admin.php:231
186
  msgid ""
187
  "You have enabled password protection and allowed administrators and logged "
188
  "in users - other users will still need to login to view the site."
189
  msgstr ""
190
+ "Você habilitou a proteção por senha e permitiu administradores e usuários "
191
+ "logados - outros usuários ainda necessitarão logar para visualizar o site."
192
 
193
+ #: ../admin/admin.php:233
194
  msgid ""
195
  "You have enabled password protection and allowed administrators - other "
196
  "users will still need to login to view the site."
197
  msgstr ""
198
+ "Você habilitou a proteção por senha e permitiu administradores - outros "
199
+ "usuários ainda necessitarão logar para visualizar o site."
200
 
201
+ #: ../admin/admin.php:235
202
  msgid ""
203
  "You have enabled password protection and allowed logged in users - other "
204
  "users will still need to login to view the site."
205
  msgstr ""
206
+ "Você habilitou a proteção por senha e permitiu usuários logados - outros "
207
+ "usuários ainda necessitarão logar para visualizar o site."
208
 
209
  #: ../theme/login.php:40
210
  msgid ""
languages/password-protected-pt_PT.mo CHANGED
Binary file
languages/password-protected-pt_PT.po CHANGED
@@ -2,16 +2,17 @@
2
  # This file is distributed under the same license as the Password Protected package.
3
  # Translators:
4
  # Júlio Reis <webmaster@arocha.org>, 2014
 
5
  # Júlio Reis <webmaster@arocha.org>, 2014
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: 2014-02-18 08:12-0000\n"
11
- "PO-Revision-Date: 2014-02-24 23:30-0000\n"
12
  "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
13
- "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/wp-"
14
- "translations/language/pt_PT/)\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
@@ -19,7 +20,7 @@ msgstr ""
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
  "X-Generator: Poedit 1.6.2\n"
21
  "X-Poedit-Basepath: ./\n"
22
- "X-Poedit-KeywordsList: __;_e\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
  #: ../password-protected.php:115
@@ -31,10 +32,18 @@ msgstr ""
31
  "Este sítio não disponibiliza feeds. Por favor, visite o <a href=\"%s"
32
  "\">website</a>."
33
 
34
- #: ../password-protected.php:181
35
  msgid "Incorrect Password"
36
  msgstr "Senha errada"
37
 
 
 
 
 
 
 
 
 
38
  #: ../admin/admin.php:26 ../admin/admin.php:63
39
  msgid "Password Protected"
40
  msgstr "Protegido por senha"
@@ -160,11 +169,23 @@ msgstr "http://github.com/benhuson/password-protected"
160
  msgid "GitHub"
161
  msgstr "GitHub"
162
 
163
- #: ../admin/admin.php:212
 
 
 
 
 
 
 
 
 
 
 
 
164
  msgid "Settings"
165
  msgstr "Configurações"
166
 
167
- #: ../admin/admin.php:226
168
  msgid ""
169
  "You have enabled password protection but not yet set a password. Please set "
170
  "one below."
@@ -172,27 +193,27 @@ msgstr ""
172
  "Ligou a opção de proteção com senha, mas ainda não indicou a senha. Por "
173
  "favor escreva-a abaixo."
174
 
175
- #: ../admin/admin.php:230
176
  msgid ""
177
  "You have enabled password protection and allowed administrators and logged "
178
- "in users - other users will still need to login to view the site."
179
  msgstr ""
180
  "Ligou a proteção por senha com acesso a administradores e utilizadores "
181
  "autenticados – os outros utilizadores terão que se autenticar para aceder ao "
182
  "sítio."
183
 
184
- #: ../admin/admin.php:232
185
  msgid ""
186
  "You have enabled password protection and allowed administrators - other "
187
- "users will still need to login to view the site."
188
  msgstr ""
189
  "Ligou a proteção por senha com acesso a administradores – os outros "
190
  "utilizadores terão que se autenticar para aceder ao sítio."
191
 
192
- #: ../admin/admin.php:234
193
  msgid ""
194
  "You have enabled password protection and allowed logged in users - other "
195
- "users will still need to login to view the site."
196
  msgstr ""
197
  "Ligou a proteção por senha com acesso a utilizadores autenticados – os "
198
  "outros utilizadores terão que se autenticar para aceder ao sítio."
@@ -207,6 +228,6 @@ msgstr ""
207
  "pelo seu browser. Deve <a href='http://www.google.com/cookies.html'>permitir "
208
  "cookies</a> para usar o WordPress."
209
 
210
- #: ../theme/login.php:125
211
  msgid "Password"
212
  msgstr "Senha"
2
  # This file is distributed under the same license as the Password Protected package.
3
  # Translators:
4
  # Júlio Reis <webmaster@arocha.org>, 2014
5
+ # rtbfreitas, 2014
6
  # Júlio Reis <webmaster@arocha.org>, 2014
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: Password Protected\n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/password-protected\n"
11
+ "POT-Creation-Date: 2014-04-15 00:07-0000\n"
12
+ "PO-Revision-Date: 2014-06-05 07:45-0000\n"
13
  "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
14
+ "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/"
15
+ "password-protected/language/pt_PT/)\n"
16
  "MIME-Version: 1.0\n"
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
  "X-Generator: Poedit 1.6.2\n"
22
  "X-Poedit-Basepath: ./\n"
23
+ "X-Poedit-KeywordsList: __;_e;_ex;_x\n"
24
  "X-Poedit-SearchPath-0: ..\n"
25
 
26
  #: ../password-protected.php:115
32
  "Este sítio não disponibiliza feeds. Por favor, visite o <a href=\"%s"
33
  "\">website</a>."
34
 
35
+ #: ../password-protected.php:183
36
  msgid "Incorrect Password"
37
  msgstr "Senha errada"
38
 
39
+ #: ../password-protected.php:427
40
+ msgid ""
41
+ "The Password Protected plugin does not work with WP Engine hosting. Please "
42
+ "disable it."
43
+ msgstr ""
44
+ "O plugin Protegido por senha não é compatível com o alojamento WP Engine. "
45
+ "Por favor desative-o."
46
+
47
  #: ../admin/admin.php:26 ../admin/admin.php:63
48
  msgid "Password Protected"
49
  msgstr "Protegido por senha"
169
  msgid "GitHub"
170
  msgstr "GitHub"
171
 
172
+ #: ../admin/admin.php:199
173
+ msgid ""
174
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
175
+ "protected/"
176
+ msgstr ""
177
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
178
+ "protected/"
179
+
180
+ #: ../admin/admin.php:199
181
+ msgid "Translate"
182
+ msgstr "Traduzir"
183
+
184
+ #: ../admin/admin.php:213
185
  msgid "Settings"
186
  msgstr "Configurações"
187
 
188
+ #: ../admin/admin.php:238
189
  msgid ""
190
  "You have enabled password protection but not yet set a password. Please set "
191
  "one below."
193
  "Ligou a opção de proteção com senha, mas ainda não indicou a senha. Por "
194
  "favor escreva-a abaixo."
195
 
196
+ #: ../admin/admin.php:242
197
  msgid ""
198
  "You have enabled password protection and allowed administrators and logged "
199
+ "in users - other users will still need to enter a password to view the site."
200
  msgstr ""
201
  "Ligou a proteção por senha com acesso a administradores e utilizadores "
202
  "autenticados – os outros utilizadores terão que se autenticar para aceder ao "
203
  "sítio."
204
 
205
+ #: ../admin/admin.php:244
206
  msgid ""
207
  "You have enabled password protection and allowed administrators - other "
208
+ "users will still need to enter a password to view the site."
209
  msgstr ""
210
  "Ligou a proteção por senha com acesso a administradores – os outros "
211
  "utilizadores terão que se autenticar para aceder ao sítio."
212
 
213
+ #: ../admin/admin.php:246
214
  msgid ""
215
  "You have enabled password protection and allowed logged in users - other "
216
+ "users will still need to enter a password to view the site."
217
  msgstr ""
218
  "Ligou a proteção por senha com acesso a utilizadores autenticados – os "
219
  "outros utilizadores terão que se autenticar para aceder ao sítio."
228
  "pelo seu browser. Deve <a href='http://www.google.com/cookies.html'>permitir "
229
  "cookies</a> para usar o WordPress."
230
 
231
+ #: ../theme/login.php:132
232
  msgid "Password"
233
  msgstr "Senha"
languages/password-protected-tr_TR.mo CHANGED
Binary file
languages/password-protected-tr_TR.po CHANGED
@@ -1,16 +1,17 @@
1
  # Copyright (C) 2013 Password Protected
2
  # This file is distributed under the same license as the Password Protected package.
3
  # Translators:
 
4
  # Mert Salih Kaplan <mail@mertskaplan.com>, 2014
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: 2014-02-18 08:12-0000\n"
10
- "PO-Revision-Date: 2014-02-24 23:30-0000\n"
11
  "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
12
- "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/wp-"
13
- "translations/language/tr_TR/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
@@ -18,7 +19,7 @@ msgstr ""
18
  "Plural-Forms: nplurals=1; plural=0;\n"
19
  "X-Generator: Poedit 1.6.2\n"
20
  "X-Poedit-Basepath: ./\n"
21
- "X-Poedit-KeywordsList: __;_e\n"
22
  "X-Poedit-SearchPath-0: ..\n"
23
 
24
  #: ../password-protected.php:115
@@ -27,28 +28,40 @@ msgid ""
27
  "Feeds are not available for this site. Please visit the <a href=\"%s"
28
  "\">website</a>."
29
  msgstr ""
 
 
30
 
31
- #: ../password-protected.php:181
32
  msgid "Incorrect Password"
33
- msgstr "Parola hatalı"
 
 
 
 
 
 
 
 
34
 
35
  #: ../admin/admin.php:26 ../admin/admin.php:63
36
  msgid "Password Protected"
37
- msgstr "Parola Korumalı"
38
 
39
  #: ../admin/admin.php:36
40
  msgid "Password Protected Settings"
41
- msgstr ""
42
 
43
  #: ../admin/admin.php:40
44
  msgid "Save Changes"
45
- msgstr "Değişiklikleri kaydet"
46
 
47
  #: ../admin/admin.php:64
48
  msgid ""
49
  "<p><strong>Password Protected Status</strong><br />Turn on/off password "
50
  "protection.</p>"
51
  msgstr ""
 
 
52
 
53
  #: ../admin/admin.php:65
54
  msgid ""
@@ -68,11 +81,11 @@ msgstr ""
68
 
69
  #: ../admin/admin.php:82
70
  msgid "Password Protected Status"
71
- msgstr ""
72
 
73
  #: ../admin/admin.php:89
74
  msgid "Protected Permissions"
75
- msgstr ""
76
 
77
  #: ../admin/admin.php:96
78
  msgid "New Password"
@@ -99,28 +112,32 @@ msgid ""
99
  "Password protect your web site. Users will be asked to enter a password to "
100
  "view the site."
101
  msgstr ""
 
 
102
 
103
  #: ../admin/admin.php:139
104
  msgid ""
105
  "For more information about Password Protected settings, view the \"Help\" "
106
  "tab at the top of this page."
107
  msgstr ""
 
 
108
 
109
  #: ../admin/admin.php:146
110
  msgid "Enabled"
111
- msgstr "Etkin"
112
 
113
  #: ../admin/admin.php:153
114
  msgid "Allow Administrators"
115
- msgstr ""
116
 
117
  #: ../admin/admin.php:154
118
  msgid "Allow Logged In Users"
119
- msgstr ""
120
 
121
  #: ../admin/admin.php:155
122
  msgid "Allow RSS Feeds"
123
- msgstr "RSS Beslemelerine izin ver"
124
 
125
  #: ../admin/admin.php:162
126
  msgid ""
@@ -132,43 +149,65 @@ msgstr ""
132
 
133
  #: ../admin/admin.php:163
134
  msgid "Type your new password again."
135
- msgstr "Yeni parolanızı tekrar girin."
136
 
137
  #: ../admin/admin.php:198
138
  msgid "http://github.com/benhuson/password-protected"
139
- msgstr ""
140
 
141
  #: ../admin/admin.php:198
142
  msgid "GitHub"
 
 
 
 
 
 
143
  msgstr ""
 
 
 
 
 
 
144
 
145
- #: ../admin/admin.php:212
146
  msgid "Settings"
147
  msgstr "Ayarlar"
148
 
149
- #: ../admin/admin.php:226
150
  msgid ""
151
  "You have enabled password protection but not yet set a password. Please set "
152
  "one below."
153
  msgstr ""
 
 
154
 
155
- #: ../admin/admin.php:230
156
  msgid ""
157
  "You have enabled password protection and allowed administrators and logged "
158
- "in users - other users will still need to login to view the site."
159
  msgstr ""
 
 
 
160
 
161
- #: ../admin/admin.php:232
162
  msgid ""
163
  "You have enabled password protection and allowed administrators - other "
164
- "users will still need to login to view the site."
165
  msgstr ""
 
 
166
 
167
- #: ../admin/admin.php:234
168
  msgid ""
169
  "You have enabled password protection and allowed logged in users - other "
170
- "users will still need to login to view the site."
171
  msgstr ""
 
 
 
172
 
173
  #: ../theme/login.php:40
174
  msgid ""
@@ -180,6 +219,6 @@ msgstr ""
180
  "desteklenmiyor. WordPress'i kullanabilmek için <a href='http://www.google."
181
  "com/cookies.html'>çerezleri etkinleştirmelisiniz</a>"
182
 
183
- #: ../theme/login.php:125
184
  msgid "Password"
185
  msgstr "Parola"
1
  # Copyright (C) 2013 Password Protected
2
  # This file is distributed under the same license as the Password Protected package.
3
  # Translators:
4
+ # Abdullah Pazarbasi <mail@abdullahpazarbasi.com>, 2014
5
  # Mert Salih Kaplan <mail@mertskaplan.com>, 2014
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: 2014-04-15 00:07-0000\n"
11
+ "PO-Revision-Date: 2014-06-05 07:45-0000\n"
12
  "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
13
+ "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/"
14
+ "password-protected/language/tr_TR/)\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
19
  "Plural-Forms: nplurals=1; plural=0;\n"
20
  "X-Generator: Poedit 1.6.2\n"
21
  "X-Poedit-Basepath: ./\n"
22
+ "X-Poedit-KeywordsList: __;_e;_ex;_x\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
  #: ../password-protected.php:115
28
  "Feeds are not available for this site. Please visit the <a href=\"%s"
29
  "\">website</a>."
30
  msgstr ""
31
+ "Beslemeler bu site için mevcut değil. Lütfen <a href=\"%s\">site</a>yi "
32
+ "ziyaret edin."
33
 
34
+ #: ../password-protected.php:183
35
  msgid "Incorrect Password"
36
+ msgstr "Hatalı Parola"
37
+
38
+ #: ../password-protected.php:427
39
+ msgid ""
40
+ "The Password Protected plugin does not work with WP Engine hosting. Please "
41
+ "disable it."
42
+ msgstr ""
43
+ "Password Protected eklentisi WP Engine host ile çalışmaz. Lütfen devredışı "
44
+ "bırakın."
45
 
46
  #: ../admin/admin.php:26 ../admin/admin.php:63
47
  msgid "Password Protected"
48
+ msgstr "Password Protected"
49
 
50
  #: ../admin/admin.php:36
51
  msgid "Password Protected Settings"
52
+ msgstr "Password Protected Ayarları"
53
 
54
  #: ../admin/admin.php:40
55
  msgid "Save Changes"
56
+ msgstr "Değişiklikleri Sakla"
57
 
58
  #: ../admin/admin.php:64
59
  msgid ""
60
  "<p><strong>Password Protected Status</strong><br />Turn on/off password "
61
  "protection.</p>"
62
  msgstr ""
63
+ "<p><strong>Password Protected Durumu</strong><br />Parola koruması aç/kapa.</"
64
+ "p>"
65
 
66
  #: ../admin/admin.php:65
67
  msgid ""
81
 
82
  #: ../admin/admin.php:82
83
  msgid "Password Protected Status"
84
+ msgstr "Password Protected Durumu"
85
 
86
  #: ../admin/admin.php:89
87
  msgid "Protected Permissions"
88
+ msgstr "Koruma Altındaki İzinler"
89
 
90
  #: ../admin/admin.php:96
91
  msgid "New Password"
112
  "Password protect your web site. Users will be asked to enter a password to "
113
  "view the site."
114
  msgstr ""
115
+ "Web sitenizi parola ile koruyun. Kullanıcıların siteyi görüntüleyebilmeleri "
116
+ "için parola girmeleri istenir."
117
 
118
  #: ../admin/admin.php:139
119
  msgid ""
120
  "For more information about Password Protected settings, view the \"Help\" "
121
  "tab at the top of this page."
122
  msgstr ""
123
+ "Password Protected ayarları ile ilgili daha fazla bilgi için bu sayfanın "
124
+ "tepesindeki \"Yardım\" sekmesini görüntüleyin."
125
 
126
  #: ../admin/admin.php:146
127
  msgid "Enabled"
128
+ msgstr "Devrede"
129
 
130
  #: ../admin/admin.php:153
131
  msgid "Allow Administrators"
132
+ msgstr "Yöneticilere İzin Ver"
133
 
134
  #: ../admin/admin.php:154
135
  msgid "Allow Logged In Users"
136
+ msgstr "Giriş Yapmış Kullanıcılara İzin Ver"
137
 
138
  #: ../admin/admin.php:155
139
  msgid "Allow RSS Feeds"
140
+ msgstr "RSS Beslemelerine İzin Ver"
141
 
142
  #: ../admin/admin.php:162
143
  msgid ""
149
 
150
  #: ../admin/admin.php:163
151
  msgid "Type your new password again."
152
+ msgstr "Yeni parolanızı tekrar yazın."
153
 
154
  #: ../admin/admin.php:198
155
  msgid "http://github.com/benhuson/password-protected"
156
+ msgstr "http://github.com/benhuson/password-protected"
157
 
158
  #: ../admin/admin.php:198
159
  msgid "GitHub"
160
+ msgstr "GitHub"
161
+
162
+ #: ../admin/admin.php:199
163
+ msgid ""
164
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
165
+ "protected/"
166
  msgstr ""
167
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
168
+ "protected/"
169
+
170
+ #: ../admin/admin.php:199
171
+ msgid "Translate"
172
+ msgstr "Çeviri Yap"
173
 
174
+ #: ../admin/admin.php:213
175
  msgid "Settings"
176
  msgstr "Ayarlar"
177
 
178
+ #: ../admin/admin.php:238
179
  msgid ""
180
  "You have enabled password protection but not yet set a password. Please set "
181
  "one below."
182
  msgstr ""
183
+ "Parola korumasını devreye aldınız fakat henüz bir parola belirlemediniz. "
184
+ "Lütfen aşğıdan bir tane belirleyin."
185
 
186
+ #: ../admin/admin.php:242
187
  msgid ""
188
  "You have enabled password protection and allowed administrators and logged "
189
+ "in users - other users will still need to enter a password to view the site."
190
  msgstr ""
191
+ "Parola korumasını devreye aldınız ve yöneticilere ve giriş yapmış "
192
+ "kullanıcılara izin verdiniz - diğer kullanıcılar siteyi görüntülemek için "
193
+ "halen bir parola girmek zorundalar."
194
 
195
+ #: ../admin/admin.php:244
196
  msgid ""
197
  "You have enabled password protection and allowed administrators - other "
198
+ "users will still need to enter a password to view the site."
199
  msgstr ""
200
+ "Parola korumasını devreye aldınız ve yöneticilere izin verdiniz - diğer "
201
+ "kullanıcılar siteyi görüntülemek için halen bir parola girmek zorundalar."
202
 
203
+ #: ../admin/admin.php:246
204
  msgid ""
205
  "You have enabled password protection and allowed logged in users - other "
206
+ "users will still need to enter a password to view the site."
207
  msgstr ""
208
+ "Parola korumasını devreye aldınız ve giriş yapmış kullanıcılara izin "
209
+ "verdiniz - diğer kullanıcılar siteyi görüntülemek için halen bir parola "
210
+ "girmek zorundalar."
211
 
212
  #: ../theme/login.php:40
213
  msgid ""
219
  "desteklenmiyor. WordPress'i kullanabilmek için <a href='http://www.google."
220
  "com/cookies.html'>çerezleri etkinleştirmelisiniz</a>"
221
 
222
+ #: ../theme/login.php:132
223
  msgid "Password"
224
  msgstr "Parola"
languages/password-protected-zh_CN.mo ADDED
Binary file
languages/password-protected-zh_CN.po CHANGED
@@ -1,14 +1,16 @@
1
  # Copyright (C) 2013 Password Protected
2
  # This file is distributed under the same license as the Password Protected package.
3
  # Translators:
 
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Password Protected\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/password-protected\n"
8
- "POT-Creation-Date: 2014-02-18 08:12-0000\n"
9
- "PO-Revision-Date: 2014-02-21 08:37+0000\n"
10
- "Last-Translator: Francois-Xavier Bénard <fxb@wp-translations.org>\n"
11
- "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/wp-translations/language/zh_CN/)\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
@@ -16,27 +18,33 @@ msgstr ""
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
  "X-Generator: Poedit 1.6.2\n"
18
  "X-Poedit-Basepath: ./\n"
19
- "X-Poedit-KeywordsList: __;_e\n"
20
  "X-Poedit-SearchPath-0: ..\n"
21
 
22
  #: ../password-protected.php:115
23
  #, php-format
24
  msgid ""
25
- "Feeds are not available for this site. Please visit the <a "
26
- "href=\"%s\">website</a>."
27
- msgstr ""
28
 
29
- #: ../password-protected.php:181
30
  msgid "Incorrect Password"
31
- msgstr ""
 
 
 
 
 
 
32
 
33
  #: ../admin/admin.php:26 ../admin/admin.php:63
34
  msgid "Password Protected"
35
- msgstr "密码保护"
36
 
37
  #: ../admin/admin.php:36
38
  msgid "Password Protected Settings"
39
- msgstr ""
40
 
41
  #: ../admin/admin.php:40
42
  msgid "Save Changes"
@@ -47,6 +55,7 @@ msgid ""
47
  "<p><strong>Password Protected Status</strong><br />Turn on/off password "
48
  "protection.</p>"
49
  msgstr ""
 
50
 
51
  #: ../admin/admin.php:65
52
  msgid ""
@@ -56,6 +65,9 @@ msgid ""
56
  "site in the Theme Customizer. Also allow RSS Feeds to be accessed when the "
57
  "site is password protected.</p>"
58
  msgstr ""
 
 
 
59
 
60
  #: ../admin/admin.php:66
61
  msgid ""
@@ -63,14 +75,16 @@ msgid ""
63
  "into both fields. You cannot set an `empty` password. To disable password "
64
  "protection uncheck the Enabled checkbox.</p>"
65
  msgstr ""
 
 
66
 
67
  #: ../admin/admin.php:82
68
  msgid "Password Protected Status"
69
- msgstr ""
70
 
71
  #: ../admin/admin.php:89
72
  msgid "Protected Permissions"
73
- msgstr ""
74
 
75
  #: ../admin/admin.php:96
76
  msgid "New Password"
@@ -80,49 +94,50 @@ msgstr "新密码"
80
  msgid ""
81
  "New password not saved. When setting a new password please enter it in both "
82
  "fields."
83
- msgstr ""
84
 
85
  #: ../admin/admin.php:123
86
  msgid "New password not saved. Password fields did not match."
87
- msgstr ""
88
 
89
  #: ../admin/admin.php:126
90
  msgid "New password saved."
91
- msgstr ""
92
 
93
  #: ../admin/admin.php:138
94
  msgid ""
95
  "Password protect your web site. Users will be asked to enter a password to "
96
  "view the site."
97
- msgstr ""
98
 
99
  #: ../admin/admin.php:139
100
  msgid ""
101
  "For more information about Password Protected settings, view the \"Help\" "
102
  "tab at the top of this page."
103
  msgstr ""
 
104
 
105
  #: ../admin/admin.php:146
106
  msgid "Enabled"
107
- msgstr "启用"
108
 
109
  #: ../admin/admin.php:153
110
  msgid "Allow Administrators"
111
- msgstr ""
112
 
113
  #: ../admin/admin.php:154
114
  msgid "Allow Logged In Users"
115
- msgstr ""
116
 
117
  #: ../admin/admin.php:155
118
  msgid "Allow RSS Feeds"
119
- msgstr ""
120
 
121
  #: ../admin/admin.php:162
122
  msgid ""
123
  "If you would like to change the password type a new one. Otherwise leave "
124
  "this blank."
125
- msgstr "如果您想修改您的密码,请在此输入新密码。不然请留空。"
126
 
127
  #: ../admin/admin.php:163
128
  msgid "Type your new password again."
@@ -130,47 +145,66 @@ msgstr "再输入一遍新密码。"
130
 
131
  #: ../admin/admin.php:198
132
  msgid "http://github.com/benhuson/password-protected"
133
- msgstr ""
134
 
135
  #: ../admin/admin.php:198
136
  msgid "GitHub"
 
 
 
 
 
 
137
  msgstr ""
 
 
 
 
 
 
138
 
139
- #: ../admin/admin.php:212
140
  msgid "Settings"
141
  msgstr "设置"
142
 
143
- #: ../admin/admin.php:226
144
  msgid ""
145
  "You have enabled password protection but not yet set a password. Please set "
146
  "one below."
147
- msgstr ""
148
 
149
- #: ../admin/admin.php:230
150
  msgid ""
151
  "You have enabled password protection and allowed administrators and logged "
152
- "in users - other users will still need to login to view the site."
153
  msgstr ""
 
 
154
 
155
- #: ../admin/admin.php:232
156
  msgid ""
157
  "You have enabled password protection and allowed administrators - other "
158
- "users will still need to login to view the site."
159
  msgstr ""
 
 
160
 
161
- #: ../admin/admin.php:234
162
  msgid ""
163
  "You have enabled password protection and allowed logged in users - other "
164
- "users will still need to login to view the site."
165
  msgstr ""
 
166
 
167
  #: ../theme/login.php:40
168
  msgid ""
169
  "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
170
  "browser. You must <a href='http://www.google.com/cookies.html'>enable "
171
  "cookies</a> to use WordPress."
172
- msgstr "<strong>错误</strong>:Cookies被阻止或者您的浏览器不支持。要使用WordPress,您必须<a href='http://www.google.com/cookies.html'>启用cookies</a>。"
 
 
173
 
174
- #: ../theme/login.php:125
175
  msgid "Password"
176
  msgstr "密码"
1
  # Copyright (C) 2013 Password Protected
2
  # This file is distributed under the same license as the Password Protected package.
3
  # Translators:
4
+ # mogita <chrisprc@gmail.com>, 2014
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: 2014-04-15 00:07-0000\n"
10
+ "PO-Revision-Date: 2014-06-05 07:45-0000\n"
11
+ "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
12
+ "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/password-"
13
+ "protected/language/zh_CN/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
18
  "Plural-Forms: nplurals=1; plural=0;\n"
19
  "X-Generator: Poedit 1.6.2\n"
20
  "X-Poedit-Basepath: ./\n"
21
+ "X-Poedit-KeywordsList: __;_e;_ex;_x\n"
22
  "X-Poedit-SearchPath-0: ..\n"
23
 
24
  #: ../password-protected.php:115
25
  #, php-format
26
  msgid ""
27
+ "Feeds are not available for this site. Please visit the <a href=\"%s"
28
+ "\">website</a>."
29
+ msgstr "此站点目前不公开订阅源。请尝试访问<a href=\"%s\">本网站</a>。"
30
 
31
+ #: ../password-protected.php:183
32
  msgid "Incorrect Password"
33
+ msgstr "密码不正确"
34
+
35
+ #: ../password-protected.php:427
36
+ msgid ""
37
+ "The Password Protected plugin does not work with WP Engine hosting. Please "
38
+ "disable it."
39
+ msgstr "Password Protected 插件无法在 WP Engine 主机上使用。请禁用此插件。"
40
 
41
  #: ../admin/admin.php:26 ../admin/admin.php:63
42
  msgid "Password Protected"
43
+ msgstr "Password Protected"
44
 
45
  #: ../admin/admin.php:36
46
  msgid "Password Protected Settings"
47
+ msgstr "Password Protected 设置"
48
 
49
  #: ../admin/admin.php:40
50
  msgid "Save Changes"
55
  "<p><strong>Password Protected Status</strong><br />Turn on/off password "
56
  "protection.</p>"
57
  msgstr ""
58
+ "<p><strong>Password Protected 状态</strong><br />打开/关闭密码保护。</p>"
59
 
60
  #: ../admin/admin.php:65
61
  msgid ""
65
  "site in the Theme Customizer. Also allow RSS Feeds to be accessed when the "
66
  "site is password protected.</p>"
67
  msgstr ""
68
+ "<p><strong>保护权限</strong><br />允许已登入的用户和管理员角色的用户直接查看"
69
+ "站点内容。如果你允许管理员角色的用户能够在主题自定义功能中查看预览,请启用这"
70
+ "个选项。同时,当站点启用密码保护时,请允许 RSS 订阅。</p>"
71
 
72
  #: ../admin/admin.php:66
73
  msgid ""
75
  "into both fields. You cannot set an `empty` password. To disable password "
76
  "protection uncheck the Enabled checkbox.</p>"
77
  msgstr ""
78
+ "<p><strong>密码保护</strong><br />要设置新密码,请在两个框内填写密码。不能设"
79
+ "置空密码。如果要停用密码保护,请取消「已启用」选项。</p>"
80
 
81
  #: ../admin/admin.php:82
82
  msgid "Password Protected Status"
83
+ msgstr "Password Protected 状态"
84
 
85
  #: ../admin/admin.php:89
86
  msgid "Protected Permissions"
87
+ msgstr "保护权限"
88
 
89
  #: ../admin/admin.php:96
90
  msgid "New Password"
94
  msgid ""
95
  "New password not saved. When setting a new password please enter it in both "
96
  "fields."
97
+ msgstr "未能保存新密码。要设置新密码,请将它同时填入两个框中。"
98
 
99
  #: ../admin/admin.php:123
100
  msgid "New password not saved. Password fields did not match."
101
+ msgstr "未能保存新密码。两次输入的密码不相同。"
102
 
103
  #: ../admin/admin.php:126
104
  msgid "New password saved."
105
+ msgstr "新密码已保存。"
106
 
107
  #: ../admin/admin.php:138
108
  msgid ""
109
  "Password protect your web site. Users will be asked to enter a password to "
110
  "view the site."
111
+ msgstr "用密码保护你的整个网站。要查看网站内容,访客必须输入密码。"
112
 
113
  #: ../admin/admin.php:139
114
  msgid ""
115
  "For more information about Password Protected settings, view the \"Help\" "
116
  "tab at the top of this page."
117
  msgstr ""
118
+ "更多关于 Password Protected 设置的信息,请查看此页面顶部的「帮助」标签。"
119
 
120
  #: ../admin/admin.php:146
121
  msgid "Enabled"
122
+ msgstr "已启用"
123
 
124
  #: ../admin/admin.php:153
125
  msgid "Allow Administrators"
126
+ msgstr "允许管理员"
127
 
128
  #: ../admin/admin.php:154
129
  msgid "Allow Logged In Users"
130
+ msgstr "允许已登入的用户"
131
 
132
  #: ../admin/admin.php:155
133
  msgid "Allow RSS Feeds"
134
+ msgstr "允许 RSS 订阅"
135
 
136
  #: ../admin/admin.php:162
137
  msgid ""
138
  "If you would like to change the password type a new one. Otherwise leave "
139
  "this blank."
140
+ msgstr "如果您想修改密码,请在此输入新密码。否则请留空。"
141
 
142
  #: ../admin/admin.php:163
143
  msgid "Type your new password again."
145
 
146
  #: ../admin/admin.php:198
147
  msgid "http://github.com/benhuson/password-protected"
148
+ msgstr "http://github.com/benhuson/password-protected"
149
 
150
  #: ../admin/admin.php:198
151
  msgid "GitHub"
152
+ msgstr "GitHub"
153
+
154
+ #: ../admin/admin.php:199
155
+ msgid ""
156
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
157
+ "protected/"
158
  msgstr ""
159
+ "https://www.transifex.com/projects/p/password-protected/resource/password-"
160
+ "protected/"
161
+
162
+ #: ../admin/admin.php:199
163
+ msgid "Translate"
164
+ msgstr "翻译"
165
 
166
+ #: ../admin/admin.php:213
167
  msgid "Settings"
168
  msgstr "设置"
169
 
170
+ #: ../admin/admin.php:238
171
  msgid ""
172
  "You have enabled password protection but not yet set a password. Please set "
173
  "one below."
174
+ msgstr "你已经启用了密码保护,但尚未设置密码。请在下面设置。"
175
 
176
+ #: ../admin/admin.php:242
177
  msgid ""
178
  "You have enabled password protection and allowed administrators and logged "
179
+ "in users - other users will still need to enter a password to view the site."
180
  msgstr ""
181
+ "你已启用密码保护,并允许管理员角色的成员和已登入的用户;其他用户必须输入密码"
182
+ "来查看站点内容。"
183
 
184
+ #: ../admin/admin.php:244
185
  msgid ""
186
  "You have enabled password protection and allowed administrators - other "
187
+ "users will still need to enter a password to view the site."
188
  msgstr ""
189
+ "你已经启用了密码保护,并允许管理员角色的成员访问;其他用户必须输入密码才可以"
190
+ "查看站点的内容。"
191
 
192
+ #: ../admin/admin.php:246
193
  msgid ""
194
  "You have enabled password protection and allowed logged in users - other "
195
+ "users will still need to enter a password to view the site."
196
  msgstr ""
197
+ "你已启用密码保护并允许已登入的用户;其他用户必须输入密码来查看站点内容。"
198
 
199
  #: ../theme/login.php:40
200
  msgid ""
201
  "<strong>ERROR</strong>: Cookies are blocked or not supported by your "
202
  "browser. You must <a href='http://www.google.com/cookies.html'>enable "
203
  "cookies</a> to use WordPress."
204
+ msgstr ""
205
+ "<strong>错误</strong>:Cookies 被阻止或者您的浏览器不支持。要使用 WordPress,"
206
+ "您必须<a href='http://www.google.com/cookies.html'>启用 cookies</a>。"
207
 
208
+ #: ../theme/login.php:132
209
  msgid "Password"
210
  msgstr "密码"
languages/password-protected.pot CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Password Protected\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/password-protected\n"
7
- "POT-Creation-Date: 2014-02-27 20:46-0000\n"
8
- "PO-Revision-Date: 2014-02-27 20:46-0000\n"
9
  "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
10
  "Language-Team: LANGUAGE\n"
11
  "Language: en_US\n"
@@ -25,10 +25,16 @@ msgid ""
25
  "\">website</a>."
26
  msgstr ""
27
 
28
- #: ../password-protected.php:181
29
  msgid "Incorrect Password"
30
  msgstr ""
31
 
 
 
 
 
 
 
32
  #: ../admin/admin.php:26 ../admin/admin.php:63
33
  msgid "Password Protected"
34
  msgstr ""
@@ -149,28 +155,28 @@ msgstr ""
149
  msgid "Settings"
150
  msgstr ""
151
 
152
- #: ../admin/admin.php:227
153
  msgid ""
154
  "You have enabled password protection but not yet set a password. Please set "
155
  "one below."
156
  msgstr ""
157
 
158
- #: ../admin/admin.php:231
159
  msgid ""
160
  "You have enabled password protection and allowed administrators and logged "
161
- "in users - other users will still need to login to view the site."
162
  msgstr ""
163
 
164
- #: ../admin/admin.php:233
165
  msgid ""
166
  "You have enabled password protection and allowed administrators - other "
167
- "users will still need to login to view the site."
168
  msgstr ""
169
 
170
- #: ../admin/admin.php:235
171
  msgid ""
172
  "You have enabled password protection and allowed logged in users - other "
173
- "users will still need to login to view the site."
174
  msgstr ""
175
 
176
  #: ../theme/login.php:40
@@ -180,6 +186,6 @@ msgid ""
180
  "cookies</a> to use WordPress."
181
  msgstr ""
182
 
183
- #: ../theme/login.php:125
184
  msgid "Password"
185
  msgstr ""
4
  msgstr ""
5
  "Project-Id-Version: Password Protected\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/password-protected\n"
7
+ "POT-Creation-Date: 2014-04-15 00:07-0000\n"
8
+ "PO-Revision-Date: 2014-04-15 00:07-0000\n"
9
  "Last-Translator: Ben Huson <ben@thewhiteroom.net>\n"
10
  "Language-Team: LANGUAGE\n"
11
  "Language: en_US\n"
25
  "\">website</a>."
26
  msgstr ""
27
 
28
+ #: ../password-protected.php:183
29
  msgid "Incorrect Password"
30
  msgstr ""
31
 
32
+ #: ../password-protected.php:427
33
+ msgid ""
34
+ "The Password Protected plugin does not work with WP Engine hosting. Please "
35
+ "disable it."
36
+ msgstr ""
37
+
38
  #: ../admin/admin.php:26 ../admin/admin.php:63
39
  msgid "Password Protected"
40
  msgstr ""
155
  msgid "Settings"
156
  msgstr ""
157
 
158
+ #: ../admin/admin.php:238
159
  msgid ""
160
  "You have enabled password protection but not yet set a password. Please set "
161
  "one below."
162
  msgstr ""
163
 
164
+ #: ../admin/admin.php:242
165
  msgid ""
166
  "You have enabled password protection and allowed administrators and logged "
167
+ "in users - other users will still need to enter a password to view the site."
168
  msgstr ""
169
 
170
+ #: ../admin/admin.php:244
171
  msgid ""
172
  "You have enabled password protection and allowed administrators - other "
173
+ "users will still need to enter a password to view the site."
174
  msgstr ""
175
 
176
+ #: ../admin/admin.php:246
177
  msgid ""
178
  "You have enabled password protection and allowed logged in users - other "
179
+ "users will still need to enter a password to view the site."
180
  msgstr ""
181
 
182
  #: ../theme/login.php:40
186
  "cookies</a> to use WordPress."
187
  msgstr ""
188
 
189
+ #: ../theme/login.php:132
190
  msgid "Password"
191
  msgstr ""
password-protected.php CHANGED
@@ -3,11 +3,11 @@
3
  /*
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.7.1
8
  Author: Ben Huson
9
  Text Domain: password-protected
10
- Author URI: http://www.benhuson.co.uk/
11
  License: GPLv2
12
  */
13
 
@@ -53,6 +53,7 @@ class Password_Protected {
53
  $this->errors = new WP_Error();
54
  register_activation_hook( __FILE__, array( &$this, 'install' ) );
55
  add_action( 'plugins_loaded', array( $this, 'load_plugin_textdomain' ) );
 
56
  add_action( 'init', array( $this, 'maybe_process_login' ), 1 );
57
  add_action( 'wp', array( $this, 'disable_feeds' ) );
58
  add_action( 'template_redirect', array( $this, 'maybe_show_login' ), 1 );
@@ -72,20 +73,29 @@ class Password_Protected {
72
  load_plugin_textdomain( 'password-protected', false, basename( dirname( __FILE__ ) ) . '/languages' );
73
  }
74
 
 
 
 
 
 
 
 
 
 
75
  /**
76
  * Is Active?
77
  *
78
  * @return boolean Is password protection active?
79
  */
80
  function is_active() {
 
81
 
82
  // Always allow access to robots.txt
83
- if ( is_robots() )
84
  return false;
 
85
 
86
  if ( (bool) get_option( 'password_protected_status' ) ) {
87
- if ( ! defined( 'DONOTCACHEPAGE' ) )
88
- define( 'DONOTCACHEPAGE', true );
89
  return true;
90
  }
91
  return false;
@@ -122,8 +132,9 @@ class Password_Protected {
122
  * @return boolean True/false.
123
  */
124
  function allow_feeds( $bool ) {
125
- if ( is_feed() && (bool) get_option( 'password_protected_feeds' ) )
126
  return 0;
 
127
  return $bool;
128
  }
129
 
@@ -134,8 +145,9 @@ class Password_Protected {
134
  * @return boolean True/false.
135
  */
136
  function allow_administrators( $bool ) {
137
- if ( ! is_admin() && current_user_can( 'manage_options' ) && (bool) get_option( 'password_protected_administrators' ) )
138
  return 0;
 
139
  return $bool;
140
  }
141
 
@@ -146,8 +158,9 @@ class Password_Protected {
146
  * @return boolean True/false.
147
  */
148
  function allow_users( $bool ) {
149
- if ( ! is_admin() && current_user_can( 'manage_options' ) && (bool) get_option( 'password_protected_users' ) )
150
  return 0;
 
151
  return $bool;
152
  }
153
 
@@ -171,8 +184,10 @@ class Password_Protected {
171
  // If correct password...
172
  if ( ( $this->encrypt_password( $password_protected_pwd ) == $pwd && $pwd != '' ) || apply_filters( 'password_protected_process_login', false, $password_protected_pwd ) ) {
173
  $this->set_auth_cookie();
174
- if ( ! empty( $_REQUEST['redirect_to'] ) ) {
175
- $this->safe_redirect( $_REQUEST['redirect_to'] );
 
 
176
  exit;
177
  }
178
  } else {
@@ -204,13 +219,16 @@ class Password_Protected {
204
  * Maybe Show Login
205
  */
206
  function maybe_show_login() {
 
207
  // Don't show login if not enabled
208
- if ( ! $this->is_active() )
209
  return;
 
210
 
211
  // Logged in
212
- if ( $this->validate_auth_cookie() )
213
  return;
 
214
 
215
  // Show login form
216
  if ( isset( $_REQUEST['password-protected'] ) && 'login' == $_REQUEST['password-protected'] ) {
@@ -266,8 +284,9 @@ class Password_Protected {
266
  $expired = $expiration;
267
 
268
  // Allow a grace period for POST and AJAX requests
269
- if ( defined( 'DOING_AJAX' ) || 'POST' == $_SERVER['REQUEST_METHOD'] )
270
  $expired += 3600;
 
271
 
272
  // Quick check to see if an honest cookie has expired
273
  if ( $expired < time() ) {
@@ -286,8 +305,9 @@ class Password_Protected {
286
  return false;
287
  }
288
 
289
- if ( $expiration < time() ) // AJAX/POST grace period set above
290
  $GLOBALS['login_grace_period'] = 1;
 
291
 
292
  return true;
293
  }
@@ -321,14 +341,16 @@ class Password_Protected {
321
  if ( empty( $cookie ) ) {
322
  $cookie_name = $this->cookie_name();
323
 
324
- if ( empty( $_COOKIE[$cookie_name] ) )
325
  return false;
 
326
  $cookie = $_COOKIE[$cookie_name];
327
  }
328
 
329
  $cookie_elements = explode( '|', $cookie );
330
- if ( count( $cookie_elements ) != 3 )
331
  return false;
 
332
 
333
  list( $site_id, $expiration, $hmac ) = $cookie_elements;
334
 
@@ -351,15 +373,17 @@ class Password_Protected {
351
  $expire = 0;
352
  }
353
 
354
- if ( '' === $secure )
355
  $secure = is_ssl();
 
356
 
357
  $secure_password_protected_cookie = apply_filters( 'password_protected_secure_password_protected_cookie', false, $secure );
358
  $password_protected_cookie = $this->generate_auth_cookie( $expiration, 'password_protected' );
359
 
360
  setcookie( $this->cookie_name(), $password_protected_cookie, $expire, COOKIEPATH, COOKIE_DOMAIN, $secure_password_protected_cookie, true );
361
- if ( COOKIEPATH != SITECOOKIEPATH )
362
  setcookie( $this->cookie_name(), $password_protected_cookie, $expire, SITECOOKIEPATH, COOKIE_DOMAIN, $secure_password_protected_cookie, true );
 
363
  }
364
 
365
  /**
@@ -410,4 +434,22 @@ class Password_Protected {
410
  wp_redirect( $location, $status );
411
  }
412
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
413
  }
3
  /*
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. Please note: This plugin does not restrict access to uploaded files and images and does not work on WP Engine or with some caching setups.
7
+ Version: 1.7.2
8
  Author: Ben Huson
9
  Text Domain: password-protected
10
+ Author URI: http://github.com/benhuson/password-protected/
11
  License: GPLv2
12
  */
13
 
53
  $this->errors = new WP_Error();
54
  register_activation_hook( __FILE__, array( &$this, 'install' ) );
55
  add_action( 'plugins_loaded', array( $this, 'load_plugin_textdomain' ) );
56
+ add_action( 'init', array( $this, 'disable_caching' ), 1 );
57
  add_action( 'init', array( $this, 'maybe_process_login' ), 1 );
58
  add_action( 'wp', array( $this, 'disable_feeds' ) );
59
  add_action( 'template_redirect', array( $this, 'maybe_show_login' ), 1 );
73
  load_plugin_textdomain( 'password-protected', false, basename( dirname( __FILE__ ) ) . '/languages' );
74
  }
75
 
76
+ /**
77
+ * Disable Page Caching
78
+ */
79
+ function disable_caching() {
80
+ if ( $this->is_active() && ! defined( 'DONOTCACHEPAGE' ) ) {
81
+ define( 'DONOTCACHEPAGE', true );
82
+ }
83
+ }
84
+
85
  /**
86
  * Is Active?
87
  *
88
  * @return boolean Is password protection active?
89
  */
90
  function is_active() {
91
+ global $wp_query;
92
 
93
  // Always allow access to robots.txt
94
+ if ( isset( $wp_query ) && is_robots() ) {
95
  return false;
96
+ }
97
 
98
  if ( (bool) get_option( 'password_protected_status' ) ) {
 
 
99
  return true;
100
  }
101
  return false;
132
  * @return boolean True/false.
133
  */
134
  function allow_feeds( $bool ) {
135
+ if ( is_feed() && (bool) get_option( 'password_protected_feeds' ) ) {
136
  return 0;
137
+ }
138
  return $bool;
139
  }
140
 
145
  * @return boolean True/false.
146
  */
147
  function allow_administrators( $bool ) {
148
+ if ( ! is_admin() && current_user_can( 'manage_options' ) && (bool) get_option( 'password_protected_administrators' ) ) {
149
  return 0;
150
+ }
151
  return $bool;
152
  }
153
 
158
  * @return boolean True/false.
159
  */
160
  function allow_users( $bool ) {
161
+ if ( ! is_admin() && current_user_can( 'manage_options' ) && (bool) get_option( 'password_protected_users' ) ) {
162
  return 0;
163
+ }
164
  return $bool;
165
  }
166
 
184
  // If correct password...
185
  if ( ( $this->encrypt_password( $password_protected_pwd ) == $pwd && $pwd != '' ) || apply_filters( 'password_protected_process_login', false, $password_protected_pwd ) ) {
186
  $this->set_auth_cookie();
187
+ $redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
188
+ $redirect_to = apply_filters( 'password_protected_login_redirect', $redirect_to );
189
+ if ( ! empty( $redirect_to ) ) {
190
+ $this->safe_redirect( $redirect_to );
191
  exit;
192
  }
193
  } else {
219
  * Maybe Show Login
220
  */
221
  function maybe_show_login() {
222
+
223
  // Don't show login if not enabled
224
+ if ( ! $this->is_active() ) {
225
  return;
226
+ }
227
 
228
  // Logged in
229
+ if ( $this->validate_auth_cookie() ) {
230
  return;
231
+ }
232
 
233
  // Show login form
234
  if ( isset( $_REQUEST['password-protected'] ) && 'login' == $_REQUEST['password-protected'] ) {
284
  $expired = $expiration;
285
 
286
  // Allow a grace period for POST and AJAX requests
287
+ if ( defined( 'DOING_AJAX' ) || 'POST' == $_SERVER['REQUEST_METHOD'] ) {
288
  $expired += 3600;
289
+ }
290
 
291
  // Quick check to see if an honest cookie has expired
292
  if ( $expired < time() ) {
305
  return false;
306
  }
307
 
308
+ if ( $expiration < time() ) { // AJAX/POST grace period set above
309
  $GLOBALS['login_grace_period'] = 1;
310
+ }
311
 
312
  return true;
313
  }
341
  if ( empty( $cookie ) ) {
342
  $cookie_name = $this->cookie_name();
343
 
344
+ if ( empty( $_COOKIE[$cookie_name] ) ) {
345
  return false;
346
+ }
347
  $cookie = $_COOKIE[$cookie_name];
348
  }
349
 
350
  $cookie_elements = explode( '|', $cookie );
351
+ if ( count( $cookie_elements ) != 3 ) {
352
  return false;
353
+ }
354
 
355
  list( $site_id, $expiration, $hmac ) = $cookie_elements;
356
 
373
  $expire = 0;
374
  }
375
 
376
+ if ( '' === $secure ) {
377
  $secure = is_ssl();
378
+ }
379
 
380
  $secure_password_protected_cookie = apply_filters( 'password_protected_secure_password_protected_cookie', false, $secure );
381
  $password_protected_cookie = $this->generate_auth_cookie( $expiration, 'password_protected' );
382
 
383
  setcookie( $this->cookie_name(), $password_protected_cookie, $expire, COOKIEPATH, COOKIE_DOMAIN, $secure_password_protected_cookie, true );
384
+ if ( COOKIEPATH != SITECOOKIEPATH ) {
385
  setcookie( $this->cookie_name(), $password_protected_cookie, $expire, SITECOOKIEPATH, COOKIE_DOMAIN, $secure_password_protected_cookie, true );
386
+ }
387
  }
388
 
389
  /**
434
  wp_redirect( $location, $status );
435
  }
436
 
437
+ /**
438
+ * Is Plugin Supported?
439
+ *
440
+ * Check to see if there are any known reasons why this plugin may not work in
441
+ * the user's hosting environment.
442
+ *
443
+ * @return boolean
444
+ */
445
+ static function is_plugin_supported() {
446
+
447
+ // WP Engine
448
+ if ( class_exists( 'WPE_API', false ) ) {
449
+ return new WP_Error( 'PASSWORD_PROTECTED_SUPPORT', __( 'The Password Protected plugin does not work with WP Engine hosting. Please disable it.', 'password-protected' ) );
450
+ }
451
+
452
+ return true;
453
+ }
454
+
455
  }
readme.txt CHANGED
@@ -1,10 +1,9 @@
1
  === Password Protected ===
2
  Contributors: husobj
3
- Donate link: http://www.benhuson.co.uk/donate/
4
  Tags: password, protect, password protect, login
5
  Requires at least: 3.2
6
  Tested up to: 3.9
7
- Stable tag: 1.7.1
8
  License: GPLv2 or later
9
 
10
  A very simple way to quickly password protect your WordPress site with a single password.
@@ -78,6 +77,11 @@ More instructions can be found at [wp-translations.org](http://wp-translations.o
78
 
79
  == Changelog ==
80
 
 
 
 
 
 
81
  = 1.7.1 =
82
  * Fix login template compatibility for WordPress 3.9
83
 
@@ -138,11 +142,14 @@ More instructions can be found at [wp-translations.org](http://wp-translations.o
138
 
139
  == Upgrade Notice ==
140
 
 
 
 
141
  = 1.7.1 =
142
- * Fix login template compatibility for WordPress 3.9
143
 
144
  = 1.7 =
145
- * Added 'password_protected_theme_file' filter and option to allow logged in users. Contribute to the translation of this plugin via our [Transifex page](https://www.transifex.com/projects/p/password-protected/resource/password-protected/).
146
 
147
  = 1.6.2 =
148
  Allow redirection to a different URL when logging out.
1
  === Password Protected ===
2
  Contributors: husobj
 
3
  Tags: password, protect, password protect, login
4
  Requires at least: 3.2
5
  Tested up to: 3.9
6
+ Stable tag: 1.7.2
7
  License: GPLv2 or later
8
 
9
  A very simple way to quickly password protect your WordPress site with a single password.
77
 
78
  == Changelog ==
79
 
80
+ = 1.7.2 =
81
+ * Added 'password_protected_login_redirect' filter.
82
+ * Fix always allow access to robots.txt.
83
+ * Updated translations.
84
+
85
  = 1.7.1 =
86
  * Fix login template compatibility for WordPress 3.9
87
 
142
 
143
  == Upgrade Notice ==
144
 
145
+ = 1.7.2 =
146
+ Added 'password_protected_login_redirect' filter.
147
+
148
  = 1.7.1 =
149
+ Fix login template compatibility for WordPress 3.9
150
 
151
  = 1.7 =
152
+ Added 'password_protected_theme_file' filter and option to allow logged in users. Contribute to the translation of this plugin via our [Transifex page](https://www.transifex.com/projects/p/password-protected/resource/password-protected/).
153
 
154
  = 1.6.2 =
155
  Allow redirection to a different URL when logging out.
theme/login.php CHANGED
@@ -13,8 +13,9 @@ global $Password_Protected, $error, $is_iphone;
13
  if ( ! function_exists( 'wp_shake_js' ) ) {
14
  function wp_shake_js() {
15
  global $is_iphone;
16
- if ( $is_iphone )
17
  return;
 
18
  ?>
19
  <script type="text/javascript">
20
  addLoadEvent = function(func){if(typeof jQuery!="undefined")jQuery(document).ready(func);else if(typeof wpOnload!='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}};
@@ -32,17 +33,20 @@ header( 'Content-Type: ' . get_bloginfo( 'html_type' ) . '; charset=' . get_blog
32
 
33
  // Set a cookie now to see if they are supported by the browser.
34
  setcookie( TEST_COOKIE, 'WP Cookie check', 0, COOKIEPATH, COOKIE_DOMAIN );
35
- if ( SITECOOKIEPATH != COOKIEPATH )
36
  setcookie( TEST_COOKIE, 'WP Cookie check', 0, SITECOOKIEPATH, COOKIE_DOMAIN );
 
37
 
38
  // If cookies are disabled we can't log in even with a valid password.
39
- if ( isset( $_POST['testcookie'] ) && empty( $_COOKIE[TEST_COOKIE] ) )
40
  $Password_Protected->errors->add( 'test_cookie', __( "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href='http://www.google.com/cookies.html'>enable cookies</a> to use WordPress.", 'password-protected' ) );
 
41
 
42
  // Shake it!
43
  $shake_error_codes = array( 'empty_password', 'incorrect_password' );
44
- if ( $Password_Protected->errors->get_error_code() && in_array( $Password_Protected->errors->get_error_code(), $shake_error_codes ) )
45
  add_action( 'password_protected_login_head', 'wp_shake_js', 12 );
 
46
 
47
  // Obey privacy setting
48
  add_action( 'password_protected_login_head', 'noindex' );
@@ -104,7 +108,9 @@ do_action( 'password_protected_login_head' );
104
 
105
  // Add message
106
  $message = apply_filters( 'password_protected_login_message', '' );
107
- if ( ! empty( $message ) ) echo $message . "\n";
 
 
108
 
109
  if ( $Password_Protected->errors->get_error_code() ) {
110
  $errors = '';
@@ -112,16 +118,19 @@ do_action( 'password_protected_login_head' );
112
  foreach ( $Password_Protected->errors->get_error_codes() as $code ) {
113
  $severity = $Password_Protected->errors->get_error_data( $code );
114
  foreach ( $Password_Protected->errors->get_error_messages( $code ) as $error ) {
115
- if ( 'message' == $severity )
116
  $messages .= ' ' . $error . "<br />\n";
117
- else
118
  $errors .= ' ' . $error . "<br />\n";
 
119
  }
120
  }
121
- if ( ! empty( $errors ) )
122
  echo '<div id="login_error">' . apply_filters( 'password_protected_login_errors', $errors ) . "</div>\n";
123
- if ( ! empty( $messages ) )
 
124
  echo '<p class="message">' . apply_filters( 'password_protected_login_messages', $messages ) . "</p>\n";
 
125
  }
126
  ?>
127
 
13
  if ( ! function_exists( 'wp_shake_js' ) ) {
14
  function wp_shake_js() {
15
  global $is_iphone;
16
+ if ( $is_iphone ) {
17
  return;
18
+ }
19
  ?>
20
  <script type="text/javascript">
21
  addLoadEvent = function(func){if(typeof jQuery!="undefined")jQuery(document).ready(func);else if(typeof wpOnload!='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}};
33
 
34
  // Set a cookie now to see if they are supported by the browser.
35
  setcookie( TEST_COOKIE, 'WP Cookie check', 0, COOKIEPATH, COOKIE_DOMAIN );
36
+ if ( SITECOOKIEPATH != COOKIEPATH ) {
37
  setcookie( TEST_COOKIE, 'WP Cookie check', 0, SITECOOKIEPATH, COOKIE_DOMAIN );
38
+ }
39
 
40
  // If cookies are disabled we can't log in even with a valid password.
41
+ if ( isset( $_POST['testcookie'] ) && empty( $_COOKIE[TEST_COOKIE] ) ) {
42
  $Password_Protected->errors->add( 'test_cookie', __( "<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href='http://www.google.com/cookies.html'>enable cookies</a> to use WordPress.", 'password-protected' ) );
43
+ }
44
 
45
  // Shake it!
46
  $shake_error_codes = array( 'empty_password', 'incorrect_password' );
47
+ if ( $Password_Protected->errors->get_error_code() && in_array( $Password_Protected->errors->get_error_code(), $shake_error_codes ) ) {
48
  add_action( 'password_protected_login_head', 'wp_shake_js', 12 );
49
+ }
50
 
51
  // Obey privacy setting
52
  add_action( 'password_protected_login_head', 'noindex' );
108
 
109
  // Add message
110
  $message = apply_filters( 'password_protected_login_message', '' );
111
+ if ( ! empty( $message ) ) {
112
+ echo $message . "\n";
113
+ }
114
 
115
  if ( $Password_Protected->errors->get_error_code() ) {
116
  $errors = '';
118
  foreach ( $Password_Protected->errors->get_error_codes() as $code ) {
119
  $severity = $Password_Protected->errors->get_error_data( $code );
120
  foreach ( $Password_Protected->errors->get_error_messages( $code ) as $error ) {
121
+ if ( 'message' == $severity ) {
122
  $messages .= ' ' . $error . "<br />\n";
123
+ } else {
124
  $errors .= ' ' . $error . "<br />\n";
125
+ }
126
  }
127
  }
128
+ if ( ! empty( $errors ) ) {
129
  echo '<div id="login_error">' . apply_filters( 'password_protected_login_errors', $errors ) . "</div>\n";
130
+ }
131
+ if ( ! empty( $messages ) ) {
132
  echo '<p class="message">' . apply_filters( 'password_protected_login_messages', $messages ) . "</p>\n";
133
+ }
134
  }
135
  ?>
136