Erident Custom Login and Dashboard - Version 3.5

Version Description

  • Option to keep default WordPress version on dashboard footer
  • Persian translation added
  • Security fix for CSRF
Download this release

Release Info

Developer libinvbabu
Plugin Icon 128x128 Erident Custom Login and Dashboard
Version 3.5
Comparing to
See all releases

Code changes from version 3.4.1 to 3.5

er-custom-login.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.eridenttech.com/wp-plugins/erident-custom-login-and-dashb
5
  Description: Customize completely your WordPress Login Screen and Dashboard. Add your company logo to login screen, change background colors, styles, button color etc. Customize your Dashboard footer text also for complete branding.
6
  Text Domain: erident-custom-login-and-dashboard
7
  Domain Path: /languages
8
- Version: 3.4.1
9
  Author: Libin V Babu
10
  Author URI: http://www.libin.in/
11
  License: GPL
@@ -54,8 +54,12 @@ function left_admin_footer_text_output($er_left) {
54
  $er_options = get_option('plugin_erident_settings');
55
  return stripslashes($er_options['dashboard_data_left']);
56
  }
57
-
58
- add_filter('update_footer', 'right_admin_footer_text_output', 11); //right side
 
 
 
 
59
  function right_admin_footer_text_output($er_right) {
60
  /*Get all options from db */
61
  $er_options = get_option('plugin_erident_settings');
@@ -357,9 +361,11 @@ function wp_erident_dashboard_html_page() {
357
 
358
  <?php
359
  if( isset($_POST['er_update_settings']) ) {
360
- $er_new_options = $_POST['er_options_up'];
361
- update_option( 'plugin_erident_settings', $er_new_options);
362
- echo '<div id="message" class="updated fade"><p><strong>' . __('Settings saved.') . '</strong></p></div>';
 
 
363
  } ?>
364
  <?php /*Get all options from db */
365
  $er_options = get_option('plugin_erident_settings');
@@ -385,7 +391,7 @@ value="<?php echo esc_html( stripslashes($er_options['dashboard_data_left'] ));
385
  <td><input class="er-textfield" name="er_options_up[dashboard_data_right]" type="text" id="wp_erident_dashboard_data_right"
386
  value="<?php echo esc_html( stripslashes($er_options['dashboard_data_right'] )); ?>" placeholder="Text for dashboard left right footer" />
387
  <br />
388
- <span class="description"><?php _e( 'This will replace the default "WordPress Version" on the bottom right side of dashboard', 'erident-custom-login-and-dashboard' ); ?></span>
389
  </td>
390
  </tr>
391
  </table>
@@ -836,7 +842,7 @@ value="<?php echo $er_options['login_bg_ypos']; ?>" />
836
  <p>
837
  <input type="submit" name="er_update_settings" class="button-primary" value="<?php _e('Save Changes') ?>" />
838
  </p>
839
-
840
  </form>
841
 
842
  <div class="postbox">
@@ -879,7 +885,7 @@ value="<?php echo $er_options['login_bg_ypos']; ?>" />
879
  <li class="login-page"><a href="<?php bloginfo( 'wpurl' ); ?>/wp-login.php" target="_blank"><?php _e( 'Open Your WP Login Page in a New Tab', 'erident-custom-login-and-dashboard' ); ?></a></li>
880
  <li><a href="http://wordpress.org/extend/plugins/erident-custom-login-and-dashboard/" target="_blank"><?php _e( 'Plugin Documentation', 'erident-custom-login-and-dashboard' ); ?></a></li>
881
  <li><a href="http://wordpress.org/support/plugin/erident-custom-login-and-dashboard" target="_blank"><?php _e( 'Plugin Support Page', 'erident-custom-login-and-dashboard' ); ?></a></li>
882
- <li><a href="http://wordpress.org/support/topic/suggestionsrequests-for-future-version-update?replies=1" target="_blank"><?php _e( 'Feature Request/Suggestions?', 'erident-custom-login-and-dashboard' ); ?></a></li>
883
  <li class="green"><a href="http://wordpress.org/support/view/plugin-reviews/erident-custom-login-and-dashboard" target="_blank"><?php _e( 'Got some Love? Give us a 5 star rating!', 'erident-custom-login-and-dashboard' ); ?></a></li>
884
  </ul>
885
  </div><!-- end .er_notice2 -->
@@ -893,6 +899,8 @@ value="<?php echo $er_options['login_bg_ypos']; ?>" />
893
  <li><?php _e( 'French by <a href="https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa" target="_blank">Guillaume Vaslin</a>', 'erident-custom-login-and-dashboard'); ?></li>
894
  <li><?php _e( 'German by <a href="http://www.starsofvietnam.net/" target="_blank">Peter Kaulfuss</a>', 'erident-custom-login-and-dashboard'); ?></li>
895
  <li><?php _e( 'Turkish by <a href="https://www.linkedin.com/profile/view?id=335577895" target="_blank">Muhammet Küçük</a>', 'erident-custom-login-and-dashboard'); ?></li>
 
 
896
  </ul>
897
  <p><?php _e( 'Do you wants to translate this plugin to your language? Email me!', 'erident-custom-login-and-dashboard'); ?></p>
898
  </div><!-- end .er_notice -->
5
  Description: Customize completely your WordPress Login Screen and Dashboard. Add your company logo to login screen, change background colors, styles, button color etc. Customize your Dashboard footer text also for complete branding.
6
  Text Domain: erident-custom-login-and-dashboard
7
  Domain Path: /languages
8
+ Version: 3.5
9
  Author: Libin V Babu
10
  Author URI: http://www.libin.in/
11
  License: GPL
54
  $er_options = get_option('plugin_erident_settings');
55
  return stripslashes($er_options['dashboard_data_left']);
56
  }
57
+
58
+ /* Dashboard Footer customisazion. Empty field means it will show default value */
59
+ $opt = right_admin_footer_text_output($er_right);
60
+ if ( !empty($opt)) {
61
+ add_filter('update_footer', 'right_admin_footer_text_output', 11); //right side
62
+ }
63
  function right_admin_footer_text_output($er_right) {
64
  /*Get all options from db */
65
  $er_options = get_option('plugin_erident_settings');
361
 
362
  <?php
363
  if( isset($_POST['er_update_settings']) ) {
364
+ if ( ! empty( $_POST ) && check_admin_referer( 'er_nonce_form', 'er_total_nonce' ) ) {
365
+ $er_new_options = $_POST['er_options_up'];
366
+ update_option( 'plugin_erident_settings', $er_new_options);
367
+ echo '<div id="message" class="updated fade"><p><strong>' . __('Settings saved.') . '</strong></p></div>';
368
+ }
369
  } ?>
370
  <?php /*Get all options from db */
371
  $er_options = get_option('plugin_erident_settings');
391
  <td><input class="er-textfield" name="er_options_up[dashboard_data_right]" type="text" id="wp_erident_dashboard_data_right"
392
  value="<?php echo esc_html( stripslashes($er_options['dashboard_data_right'] )); ?>" placeholder="Text for dashboard left right footer" />
393
  <br />
394
+ <span class="description"><?php _e( 'This will replace the default "WordPress Version" on the bottom right side of dashboard. Keep it as empty field for disabling this feature. Refresh the page again to see the result after saving.', 'erident-custom-login-and-dashboard' ); ?></span>
395
  </td>
396
  </tr>
397
  </table>
842
  <p>
843
  <input type="submit" name="er_update_settings" class="button-primary" value="<?php _e('Save Changes') ?>" />
844
  </p>
845
+ <?php wp_nonce_field( 'er_nonce_form', 'er_total_nonce' ); ?>
846
  </form>
847
 
848
  <div class="postbox">
885
  <li class="login-page"><a href="<?php bloginfo( 'wpurl' ); ?>/wp-login.php" target="_blank"><?php _e( 'Open Your WP Login Page in a New Tab', 'erident-custom-login-and-dashboard' ); ?></a></li>
886
  <li><a href="http://wordpress.org/extend/plugins/erident-custom-login-and-dashboard/" target="_blank"><?php _e( 'Plugin Documentation', 'erident-custom-login-and-dashboard' ); ?></a></li>
887
  <li><a href="http://wordpress.org/support/plugin/erident-custom-login-and-dashboard" target="_blank"><?php _e( 'Plugin Support Page', 'erident-custom-login-and-dashboard' ); ?></a></li>
888
+ <li><a href="https://wordpress.org/support/topic/suggestionsrequests-for-future-versions-2" target="_blank"><?php _e( 'Feature Request/Suggestions?', 'erident-custom-login-and-dashboard' ); ?></a></li>
889
  <li class="green"><a href="http://wordpress.org/support/view/plugin-reviews/erident-custom-login-and-dashboard" target="_blank"><?php _e( 'Got some Love? Give us a 5 star rating!', 'erident-custom-login-and-dashboard' ); ?></a></li>
890
  </ul>
891
  </div><!-- end .er_notice2 -->
899
  <li><?php _e( 'French by <a href="https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa" target="_blank">Guillaume Vaslin</a>', 'erident-custom-login-and-dashboard'); ?></li>
900
  <li><?php _e( 'German by <a href="http://www.starsofvietnam.net/" target="_blank">Peter Kaulfuss</a>', 'erident-custom-login-and-dashboard'); ?></li>
901
  <li><?php _e( 'Turkish by <a href="https://www.linkedin.com/profile/view?id=335577895" target="_blank">Muhammet Küçük</a>', 'erident-custom-login-and-dashboard'); ?></li>
902
+ <li><?php _e( 'Persian by <a href="https://about.me/reza.heydari" target="_blank">Reza Heydari</a>', 'erident-custom-login-and-dashboard'); ?></li>
903
+ <li><?php _e( 'Portuguese-Brazil by <a href="https://www.facebook.com/home.php?m2w&refid=8" target="_blank">Reza Heydari</a>', 'erident-custom-login-and-dashboard'); ?></li>
904
  </ul>
905
  <p><?php _e( 'Do you wants to translate this plugin to your language? Email me!', 'erident-custom-login-and-dashboard'); ?></p>
906
  </div><!-- end .er_notice -->
languages/en.mo CHANGED
Binary file
languages/en.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
- "POT-Creation-Date: 2015-05-11 10:40+0530\n"
5
- "PO-Revision-Date: 2015-05-11 10:40+0530\n"
6
  "Last-Translator: Libin <libin@libin.in>\n"
7
  "Language-Team: \n"
8
  "Language: en\n"
@@ -20,118 +20,119 @@ msgstr ""
20
  msgid "Settings"
21
  msgstr ""
22
 
23
- #: er-custom-login.php:230
24
  msgid "Please upload a valid .json file"
25
  msgstr ""
26
 
27
- #: er-custom-login.php:236
28
  msgid "Please upload a file to import"
29
  msgstr ""
30
 
31
- #: er-custom-login.php:243
32
  msgid "New settings imported successfully!"
33
  msgstr ""
34
 
35
- #: er-custom-login.php:332
36
  msgid "Custom Login and Dashboard"
37
  msgstr ""
38
 
39
- #: er-custom-login.php:353
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr ""
42
 
43
- #: er-custom-login.php:354
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
47
  msgstr ""
48
 
49
- #: er-custom-login.php:354
50
  msgid "Click on the header of each block to open it."
51
  msgstr ""
52
 
53
- #: er-custom-login.php:361
54
  msgid "Settings saved."
55
  msgstr ""
56
 
57
- #: er-custom-login.php:368
58
  msgid "Dashboard Settings"
59
  msgstr ""
60
 
61
- #: er-custom-login.php:369
62
  msgid ""
63
  "(These settings will be reflected when a user/admin logins to the WordPress "
64
  "Dashboard)"
65
  msgstr ""
66
 
67
- #: er-custom-login.php:374
68
  msgid "Enter the text for dashboard left side footer:"
69
  msgstr ""
70
 
71
- #: er-custom-login.php:379
72
  msgid ""
73
  "This will replace the default \"Thank you for creating with WordPress\" on "
74
  "the bottom left side of dashboard"
75
  msgstr ""
76
 
77
- #: er-custom-login.php:383
78
  msgid "Enter the text for dashboard right side footer:"
79
  msgstr ""
80
 
81
- #: er-custom-login.php:387
82
  msgid ""
83
  "This will replace the default \"WordPress Version\" on the bottom right side "
84
- "of dashboard"
 
85
  msgstr ""
86
 
87
- #: er-custom-login.php:396
88
  msgid "Login Screen Background"
89
  msgstr ""
90
 
91
- #: er-custom-login.php:397
92
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
93
  msgstr ""
94
 
95
- #: er-custom-login.php:402
96
  msgid "Login Screen Background Color:"
97
  msgstr ""
98
 
99
- #: er-custom-login.php:407 er-custom-login.php:617 er-custom-login.php:729
100
- #: er-custom-login.php:757 er-custom-login.php:786 er-custom-login.php:798
101
  msgid "Click the box to select a color."
102
  msgstr ""
103
 
104
- #: er-custom-login.php:412
105
  msgid "Login Screen Background Image:"
106
  msgstr ""
107
 
108
- #: er-custom-login.php:414 er-custom-login.php:632
109
  msgid "Add Background Image"
110
  msgstr ""
111
 
112
- #: er-custom-login.php:416
113
  msgid ""
114
  "Add your own pattern/image url for the screen background. Leave blank if you "
115
  "don't need any images."
116
  msgstr ""
117
 
118
- #: er-custom-login.php:420
119
  msgid "Login Screen Background Repeat"
120
  msgstr ""
121
 
122
- #: er-custom-login.php:458 er-custom-login.php:676
123
  msgid "Select an image repeat option from dropdown."
124
  msgstr ""
125
 
126
- #: er-custom-login.php:462 er-custom-login.php:681
127
  msgid "Background Position:"
128
  msgstr ""
129
 
130
- #: er-custom-login.php:463 er-custom-login.php:682
131
  msgid "Horizontal Position: "
132
  msgstr ""
133
 
134
- #: er-custom-login.php:468 er-custom-login.php:687
135
  msgid ""
136
  "The background-position property sets the starting position of a background "
137
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
@@ -140,11 +141,11 @@ msgid ""
140
  "cssref/pr_background-position.asp\" target=\"_blank\">More Info</a>"
141
  msgstr ""
142
 
143
- #: er-custom-login.php:473
144
  msgid "Background Size:"
145
  msgstr ""
146
 
147
- #: er-custom-login.php:477
148
  msgid ""
149
  "The background-size property specifies the size of a background image. If "
150
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
@@ -153,107 +154,107 @@ msgid ""
153
  "asp\" target=\"_blank\">More Info</a>"
154
  msgstr ""
155
 
156
- #: er-custom-login.php:488
157
  msgid "Login Screen Logo"
158
  msgstr ""
159
 
160
- #: er-custom-login.php:489
161
  msgid "(Change the default WordPress logo and powered by text)"
162
  msgstr ""
163
 
164
- #: er-custom-login.php:494
165
  msgid "Logo Url:"
166
  msgstr ""
167
 
168
- #: er-custom-login.php:496
169
  msgid "Add Logo"
170
  msgstr ""
171
 
172
- #: er-custom-login.php:498
173
  msgid ""
174
  "(URL path to image to replace default WordPress Logo. (You can upload your "
175
  "image with the WordPress media uploader)"
176
  msgstr ""
177
 
178
- #: er-custom-login.php:503
179
  msgid "Logo Width:"
180
  msgstr ""
181
 
182
- #: er-custom-login.php:507
183
  msgid "Your Logo width(Enter in pixels). Default: 274px"
184
  msgstr ""
185
 
186
- #: er-custom-login.php:511
187
  msgid "Logo Height:"
188
  msgstr ""
189
 
190
- #: er-custom-login.php:515
191
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
192
  msgstr ""
193
 
194
- #: er-custom-login.php:520
195
  msgid "Powered by Text:"
196
  msgstr ""
197
 
198
- #: er-custom-login.php:524
199
  msgid "Show when mouse hover over custom Login logo"
200
  msgstr ""
201
 
202
- #: er-custom-login.php:534
203
  msgid "Login Form Settings"
204
  msgstr ""
205
 
206
- #: er-custom-login.php:535
207
  msgid "(The following settings will change the Login Form style)"
208
  msgstr ""
209
 
210
- #: er-custom-login.php:540
211
  msgid "Login form width:"
212
  msgstr ""
213
 
214
- #: er-custom-login.php:544
215
  msgid "Total Form width(Enter in pixels). Default: 350px"
216
  msgstr ""
217
 
218
- #: er-custom-login.php:548
219
  msgid "Login Form Border Radius:"
220
  msgstr ""
221
 
222
- #: er-custom-login.php:552
223
  msgid ""
224
  "Border Radius of Login Form. This is the option to make the corners rounded."
225
  "(Enter in pixels)"
226
  msgstr ""
227
 
228
- #: er-custom-login.php:556
229
  msgid "Login Border Style"
230
  msgstr ""
231
 
232
- #: er-custom-login.php:600
233
  msgid "Select a Border Style option from dropdown."
234
  msgstr ""
235
 
236
- #: er-custom-login.php:604
237
  msgid "Login Border Thickness:"
238
  msgstr ""
239
 
240
- #: er-custom-login.php:608
241
  msgid "Thickness of Border (Enter value in pixels)"
242
  msgstr ""
243
 
244
- #: er-custom-login.php:612
245
  msgid "Login Border Color:"
246
  msgstr ""
247
 
248
- #: er-custom-login.php:621
249
  msgid "Login Form Background Color:"
250
  msgstr ""
251
 
252
- #: er-custom-login.php:625
253
  msgid "Background Opacity: "
254
  msgstr ""
255
 
256
- #: er-custom-login.php:627
257
  msgid ""
258
  "Click the box to select a color. Background Opacity will helps you to put "
259
  "transparent color over a background image. Possible values 0 to 1. Example: "
@@ -262,171 +263,171 @@ msgid ""
262
  "Info</a>"
263
  msgstr ""
264
 
265
- #: er-custom-login.php:631
266
  msgid "Login Form Background Image:"
267
  msgstr ""
268
 
269
- #: er-custom-login.php:634
270
  msgid ""
271
  "Add your own pattern/image url to the form background. Leave blank if you "
272
  "don't need any images."
273
  msgstr ""
274
 
275
- #: er-custom-login.php:638
276
  msgid "Login Form Background Repeat"
277
  msgstr ""
278
 
279
- #: er-custom-login.php:684
280
  msgid "Vertical Position: "
281
  msgstr ""
282
 
283
- #: er-custom-login.php:692
284
  msgid "Login Form Label Text Color"
285
  msgstr ""
286
 
287
- #: er-custom-login.php:697
288
  msgid ""
289
  "Click the box to select a color. This will change the color of label "
290
  "Username/Password"
291
  msgstr ""
292
 
293
- #: er-custom-login.php:701
294
  msgid "Login Form Label Text Size:"
295
  msgstr ""
296
 
297
- #: er-custom-login.php:704
298
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
299
  msgstr ""
300
 
301
- #: er-custom-login.php:708
302
  msgid "Login Form Input Text Color"
303
  msgstr ""
304
 
305
- #: er-custom-login.php:713
306
  msgid ""
307
  "Click the box to select a color. This will change the color of text inside "
308
  "text box."
309
  msgstr ""
310
 
311
- #: er-custom-login.php:717
312
  msgid "Login Form Input Text Size:"
313
  msgstr ""
314
 
315
- #: er-custom-login.php:720
316
  msgid "Font Size of text inside text box(Enter value in pixels)"
317
  msgstr ""
318
 
319
- #: er-custom-login.php:724
320
  msgid "Login Form Link Color"
321
  msgstr ""
322
 
323
- #: er-custom-login.php:734
324
  msgid "Enable link shadow?"
325
  msgstr ""
326
 
327
- #: er-custom-login.php:742 er-custom-login.php:771 er-custom-login.php:822
328
  msgid "Yes"
329
  msgstr ""
330
 
331
- #: er-custom-login.php:746 er-custom-login.php:775 er-custom-login.php:826
332
  msgid "No"
333
  msgstr ""
334
 
335
- #: er-custom-login.php:748 er-custom-login.php:777
336
  msgid "(Check an option)"
337
  msgstr ""
338
 
339
- #: er-custom-login.php:752
340
  msgid "Login Form Link Shadow Color"
341
  msgstr ""
342
 
343
- #: er-custom-login.php:763
344
  msgid "Enable form shadow?"
345
  msgstr ""
346
 
347
- #: er-custom-login.php:781
348
  msgid "Login Form Shadow Color"
349
  msgstr ""
350
 
351
- #: er-custom-login.php:793
352
  msgid "Login Button Color"
353
  msgstr ""
354
 
355
- #: er-custom-login.php:809
356
  msgid "Plugin Un-install Settings"
357
  msgstr ""
358
 
359
- #: er-custom-login.php:814
360
  msgid "Delete custom settings upon plugin deactivation?"
361
  msgstr ""
362
 
363
- #: er-custom-login.php:828
364
  msgid ""
365
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
366
  "plugin deactivation)"
367
  msgstr ""
368
 
369
- #: er-custom-login.php:836
370
  msgid "Save Changes"
371
  msgstr ""
372
 
373
- #: er-custom-login.php:843
374
  msgid "Export Settings"
375
  msgstr ""
376
 
377
- #: er-custom-login.php:845
378
  msgid ""
379
  "Export the plugin settings for this site as a .json file. This allows you to "
380
  "easily import the configuration into another site."
381
  msgstr ""
382
 
383
- #: er-custom-login.php:850
384
  msgid "Export"
385
  msgstr ""
386
 
387
- #: er-custom-login.php:858
388
  msgid "Import Settings"
389
  msgstr ""
390
 
391
- #: er-custom-login.php:860
392
  msgid ""
393
  "Import the plugin settings from a .json file. This file can be obtained by "
394
  "exporting the settings on another site using the form above."
395
  msgstr ""
396
 
397
- #: er-custom-login.php:868
398
  msgid "Import"
399
  msgstr ""
400
 
401
- #: er-custom-login.php:876
402
  msgid "Quick Links"
403
  msgstr ""
404
 
405
- #: er-custom-login.php:878
406
  msgid "Open Your WP Login Page in a New Tab"
407
  msgstr ""
408
 
409
- #: er-custom-login.php:879
410
  msgid "Plugin Documentation"
411
  msgstr ""
412
 
413
- #: er-custom-login.php:880
414
  msgid "Plugin Support Page"
415
  msgstr ""
416
 
417
- #: er-custom-login.php:881
418
  msgid "Feature Request/Suggestions?"
419
  msgstr ""
420
 
421
- #: er-custom-login.php:882
422
  msgid "Got some Love? Give us a 5 star rating!"
423
  msgstr ""
424
 
425
- #: er-custom-login.php:886
426
  msgid "Hire Me"
427
  msgstr ""
428
 
429
- #: er-custom-login.php:887
430
  msgid ""
431
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
432
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
@@ -434,34 +435,46 @@ msgid ""
434
  "www.libin.in\" target=\"_blank\">www.libin.in</a>"
435
  msgstr ""
436
 
437
- #: er-custom-login.php:889
438
  msgid "Translation Credits"
439
  msgstr ""
440
 
441
- #: er-custom-login.php:891
442
  msgid ""
443
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
444
  "\">Adriana De La Cuadra</a>"
445
  msgstr ""
446
 
447
- #: er-custom-login.php:892
448
  msgid ""
449
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
450
  "\" target=\"_blank\">Guillaume Vaslin</a>"
451
  msgstr ""
452
 
453
- #: er-custom-login.php:893
454
  msgid ""
455
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
456
  "Kaulfuss</a>"
457
  msgstr ""
458
 
459
- #: er-custom-login.php:894
460
  msgid ""
461
  "Turkish by <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
462
  "target=\"_blank\">Muhammet Küçük</a>"
463
  msgstr ""
464
 
465
- #: er-custom-login.php:896
 
 
 
 
 
 
 
 
 
 
 
 
466
  msgid "Do you wants to translate this plugin to your language? Email me!"
467
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
+ "POT-Creation-Date: 2015-06-10 18:19+0530\n"
5
+ "PO-Revision-Date: 2015-06-10 18:19+0530\n"
6
  "Last-Translator: Libin <libin@libin.in>\n"
7
  "Language-Team: \n"
8
  "Language: en\n"
20
  msgid "Settings"
21
  msgstr ""
22
 
23
+ #: er-custom-login.php:235
24
  msgid "Please upload a valid .json file"
25
  msgstr ""
26
 
27
+ #: er-custom-login.php:241
28
  msgid "Please upload a file to import"
29
  msgstr ""
30
 
31
+ #: er-custom-login.php:248
32
  msgid "New settings imported successfully!"
33
  msgstr ""
34
 
35
+ #: er-custom-login.php:337
36
  msgid "Custom Login and Dashboard"
37
  msgstr ""
38
 
39
+ #: er-custom-login.php:358
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr ""
42
 
43
+ #: er-custom-login.php:359
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
47
  msgstr ""
48
 
49
+ #: er-custom-login.php:359
50
  msgid "Click on the header of each block to open it."
51
  msgstr ""
52
 
53
+ #: er-custom-login.php:367
54
  msgid "Settings saved."
55
  msgstr ""
56
 
57
+ #: er-custom-login.php:375
58
  msgid "Dashboard Settings"
59
  msgstr ""
60
 
61
+ #: er-custom-login.php:376
62
  msgid ""
63
  "(These settings will be reflected when a user/admin logins to the WordPress "
64
  "Dashboard)"
65
  msgstr ""
66
 
67
+ #: er-custom-login.php:381
68
  msgid "Enter the text for dashboard left side footer:"
69
  msgstr ""
70
 
71
+ #: er-custom-login.php:386
72
  msgid ""
73
  "This will replace the default \"Thank you for creating with WordPress\" on "
74
  "the bottom left side of dashboard"
75
  msgstr ""
76
 
77
+ #: er-custom-login.php:390
78
  msgid "Enter the text for dashboard right side footer:"
79
  msgstr ""
80
 
81
+ #: er-custom-login.php:394
82
  msgid ""
83
  "This will replace the default \"WordPress Version\" on the bottom right side "
84
+ "of dashboard. Keep it as empty field for disabling this feature. Refresh the "
85
+ "page again to see the result after saving."
86
  msgstr ""
87
 
88
+ #: er-custom-login.php:403
89
  msgid "Login Screen Background"
90
  msgstr ""
91
 
92
+ #: er-custom-login.php:404
93
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
94
  msgstr ""
95
 
96
+ #: er-custom-login.php:409
97
  msgid "Login Screen Background Color:"
98
  msgstr ""
99
 
100
+ #: er-custom-login.php:414 er-custom-login.php:624 er-custom-login.php:736
101
+ #: er-custom-login.php:764 er-custom-login.php:793 er-custom-login.php:805
102
  msgid "Click the box to select a color."
103
  msgstr ""
104
 
105
+ #: er-custom-login.php:419
106
  msgid "Login Screen Background Image:"
107
  msgstr ""
108
 
109
+ #: er-custom-login.php:421 er-custom-login.php:639
110
  msgid "Add Background Image"
111
  msgstr ""
112
 
113
+ #: er-custom-login.php:423
114
  msgid ""
115
  "Add your own pattern/image url for the screen background. Leave blank if you "
116
  "don't need any images."
117
  msgstr ""
118
 
119
+ #: er-custom-login.php:427
120
  msgid "Login Screen Background Repeat"
121
  msgstr ""
122
 
123
+ #: er-custom-login.php:465 er-custom-login.php:683
124
  msgid "Select an image repeat option from dropdown."
125
  msgstr ""
126
 
127
+ #: er-custom-login.php:469 er-custom-login.php:688
128
  msgid "Background Position:"
129
  msgstr ""
130
 
131
+ #: er-custom-login.php:470 er-custom-login.php:689
132
  msgid "Horizontal Position: "
133
  msgstr ""
134
 
135
+ #: er-custom-login.php:475 er-custom-login.php:694
136
  msgid ""
137
  "The background-position property sets the starting position of a background "
138
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
141
  "cssref/pr_background-position.asp\" target=\"_blank\">More Info</a>"
142
  msgstr ""
143
 
144
+ #: er-custom-login.php:480
145
  msgid "Background Size:"
146
  msgstr ""
147
 
148
+ #: er-custom-login.php:484
149
  msgid ""
150
  "The background-size property specifies the size of a background image. If "
151
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
154
  "asp\" target=\"_blank\">More Info</a>"
155
  msgstr ""
156
 
157
+ #: er-custom-login.php:495
158
  msgid "Login Screen Logo"
159
  msgstr ""
160
 
161
+ #: er-custom-login.php:496
162
  msgid "(Change the default WordPress logo and powered by text)"
163
  msgstr ""
164
 
165
+ #: er-custom-login.php:501
166
  msgid "Logo Url:"
167
  msgstr ""
168
 
169
+ #: er-custom-login.php:503
170
  msgid "Add Logo"
171
  msgstr ""
172
 
173
+ #: er-custom-login.php:505
174
  msgid ""
175
  "(URL path to image to replace default WordPress Logo. (You can upload your "
176
  "image with the WordPress media uploader)"
177
  msgstr ""
178
 
179
+ #: er-custom-login.php:510
180
  msgid "Logo Width:"
181
  msgstr ""
182
 
183
+ #: er-custom-login.php:514
184
  msgid "Your Logo width(Enter in pixels). Default: 274px"
185
  msgstr ""
186
 
187
+ #: er-custom-login.php:518
188
  msgid "Logo Height:"
189
  msgstr ""
190
 
191
+ #: er-custom-login.php:522
192
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
193
  msgstr ""
194
 
195
+ #: er-custom-login.php:527
196
  msgid "Powered by Text:"
197
  msgstr ""
198
 
199
+ #: er-custom-login.php:531
200
  msgid "Show when mouse hover over custom Login logo"
201
  msgstr ""
202
 
203
+ #: er-custom-login.php:541
204
  msgid "Login Form Settings"
205
  msgstr ""
206
 
207
+ #: er-custom-login.php:542
208
  msgid "(The following settings will change the Login Form style)"
209
  msgstr ""
210
 
211
+ #: er-custom-login.php:547
212
  msgid "Login form width:"
213
  msgstr ""
214
 
215
+ #: er-custom-login.php:551
216
  msgid "Total Form width(Enter in pixels). Default: 350px"
217
  msgstr ""
218
 
219
+ #: er-custom-login.php:555
220
  msgid "Login Form Border Radius:"
221
  msgstr ""
222
 
223
+ #: er-custom-login.php:559
224
  msgid ""
225
  "Border Radius of Login Form. This is the option to make the corners rounded."
226
  "(Enter in pixels)"
227
  msgstr ""
228
 
229
+ #: er-custom-login.php:563
230
  msgid "Login Border Style"
231
  msgstr ""
232
 
233
+ #: er-custom-login.php:607
234
  msgid "Select a Border Style option from dropdown."
235
  msgstr ""
236
 
237
+ #: er-custom-login.php:611
238
  msgid "Login Border Thickness:"
239
  msgstr ""
240
 
241
+ #: er-custom-login.php:615
242
  msgid "Thickness of Border (Enter value in pixels)"
243
  msgstr ""
244
 
245
+ #: er-custom-login.php:619
246
  msgid "Login Border Color:"
247
  msgstr ""
248
 
249
+ #: er-custom-login.php:628
250
  msgid "Login Form Background Color:"
251
  msgstr ""
252
 
253
+ #: er-custom-login.php:632
254
  msgid "Background Opacity: "
255
  msgstr ""
256
 
257
+ #: er-custom-login.php:634
258
  msgid ""
259
  "Click the box to select a color. Background Opacity will helps you to put "
260
  "transparent color over a background image. Possible values 0 to 1. Example: "
263
  "Info</a>"
264
  msgstr ""
265
 
266
+ #: er-custom-login.php:638
267
  msgid "Login Form Background Image:"
268
  msgstr ""
269
 
270
+ #: er-custom-login.php:641
271
  msgid ""
272
  "Add your own pattern/image url to the form background. Leave blank if you "
273
  "don't need any images."
274
  msgstr ""
275
 
276
+ #: er-custom-login.php:645
277
  msgid "Login Form Background Repeat"
278
  msgstr ""
279
 
280
+ #: er-custom-login.php:691
281
  msgid "Vertical Position: "
282
  msgstr ""
283
 
284
+ #: er-custom-login.php:699
285
  msgid "Login Form Label Text Color"
286
  msgstr ""
287
 
288
+ #: er-custom-login.php:704
289
  msgid ""
290
  "Click the box to select a color. This will change the color of label "
291
  "Username/Password"
292
  msgstr ""
293
 
294
+ #: er-custom-login.php:708
295
  msgid "Login Form Label Text Size:"
296
  msgstr ""
297
 
298
+ #: er-custom-login.php:711
299
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
300
  msgstr ""
301
 
302
+ #: er-custom-login.php:715
303
  msgid "Login Form Input Text Color"
304
  msgstr ""
305
 
306
+ #: er-custom-login.php:720
307
  msgid ""
308
  "Click the box to select a color. This will change the color of text inside "
309
  "text box."
310
  msgstr ""
311
 
312
+ #: er-custom-login.php:724
313
  msgid "Login Form Input Text Size:"
314
  msgstr ""
315
 
316
+ #: er-custom-login.php:727
317
  msgid "Font Size of text inside text box(Enter value in pixels)"
318
  msgstr ""
319
 
320
+ #: er-custom-login.php:731
321
  msgid "Login Form Link Color"
322
  msgstr ""
323
 
324
+ #: er-custom-login.php:741
325
  msgid "Enable link shadow?"
326
  msgstr ""
327
 
328
+ #: er-custom-login.php:749 er-custom-login.php:778 er-custom-login.php:829
329
  msgid "Yes"
330
  msgstr ""
331
 
332
+ #: er-custom-login.php:753 er-custom-login.php:782 er-custom-login.php:833
333
  msgid "No"
334
  msgstr ""
335
 
336
+ #: er-custom-login.php:755 er-custom-login.php:784
337
  msgid "(Check an option)"
338
  msgstr ""
339
 
340
+ #: er-custom-login.php:759
341
  msgid "Login Form Link Shadow Color"
342
  msgstr ""
343
 
344
+ #: er-custom-login.php:770
345
  msgid "Enable form shadow?"
346
  msgstr ""
347
 
348
+ #: er-custom-login.php:788
349
  msgid "Login Form Shadow Color"
350
  msgstr ""
351
 
352
+ #: er-custom-login.php:800
353
  msgid "Login Button Color"
354
  msgstr ""
355
 
356
+ #: er-custom-login.php:816
357
  msgid "Plugin Un-install Settings"
358
  msgstr ""
359
 
360
+ #: er-custom-login.php:821
361
  msgid "Delete custom settings upon plugin deactivation?"
362
  msgstr ""
363
 
364
+ #: er-custom-login.php:835
365
  msgid ""
366
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
367
  "plugin deactivation)"
368
  msgstr ""
369
 
370
+ #: er-custom-login.php:843
371
  msgid "Save Changes"
372
  msgstr ""
373
 
374
+ #: er-custom-login.php:850
375
  msgid "Export Settings"
376
  msgstr ""
377
 
378
+ #: er-custom-login.php:852
379
  msgid ""
380
  "Export the plugin settings for this site as a .json file. This allows you to "
381
  "easily import the configuration into another site."
382
  msgstr ""
383
 
384
+ #: er-custom-login.php:857
385
  msgid "Export"
386
  msgstr ""
387
 
388
+ #: er-custom-login.php:865
389
  msgid "Import Settings"
390
  msgstr ""
391
 
392
+ #: er-custom-login.php:867
393
  msgid ""
394
  "Import the plugin settings from a .json file. This file can be obtained by "
395
  "exporting the settings on another site using the form above."
396
  msgstr ""
397
 
398
+ #: er-custom-login.php:875
399
  msgid "Import"
400
  msgstr ""
401
 
402
+ #: er-custom-login.php:883
403
  msgid "Quick Links"
404
  msgstr ""
405
 
406
+ #: er-custom-login.php:885
407
  msgid "Open Your WP Login Page in a New Tab"
408
  msgstr ""
409
 
410
+ #: er-custom-login.php:886
411
  msgid "Plugin Documentation"
412
  msgstr ""
413
 
414
+ #: er-custom-login.php:887
415
  msgid "Plugin Support Page"
416
  msgstr ""
417
 
418
+ #: er-custom-login.php:888
419
  msgid "Feature Request/Suggestions?"
420
  msgstr ""
421
 
422
+ #: er-custom-login.php:889
423
  msgid "Got some Love? Give us a 5 star rating!"
424
  msgstr ""
425
 
426
+ #: er-custom-login.php:893
427
  msgid "Hire Me"
428
  msgstr ""
429
 
430
+ #: er-custom-login.php:894
431
  msgid ""
432
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
433
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
435
  "www.libin.in\" target=\"_blank\">www.libin.in</a>"
436
  msgstr ""
437
 
438
+ #: er-custom-login.php:896
439
  msgid "Translation Credits"
440
  msgstr ""
441
 
442
+ #: er-custom-login.php:898
443
  msgid ""
444
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
445
  "\">Adriana De La Cuadra</a>"
446
  msgstr ""
447
 
448
+ #: er-custom-login.php:899
449
  msgid ""
450
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
451
  "\" target=\"_blank\">Guillaume Vaslin</a>"
452
  msgstr ""
453
 
454
+ #: er-custom-login.php:900
455
  msgid ""
456
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
457
  "Kaulfuss</a>"
458
  msgstr ""
459
 
460
+ #: er-custom-login.php:901
461
  msgid ""
462
  "Turkish by <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
463
  "target=\"_blank\">Muhammet Küçük</a>"
464
  msgstr ""
465
 
466
+ #: er-custom-login.php:902
467
+ msgid ""
468
+ "Persian by <a href=\"https://about.me/reza.heydari\" target=\"_blank\">Reza "
469
+ "Heydari</a>"
470
+ msgstr ""
471
+
472
+ #: er-custom-login.php:903
473
+ msgid ""
474
+ "Portuguese-Brazil by <a href=\"https://www.facebook.com/home.php?"
475
+ "m2w&refid=8\" target=\"_blank\">Reza Heydari</a>"
476
+ msgstr ""
477
+
478
+ #: er-custom-login.php:905
479
  msgid "Do you wants to translate this plugin to your language? Email me!"
480
  msgstr ""
languages/erident-custom-login-and-dashboard-de_DE.mo CHANGED
Binary file
languages/erident-custom-login-and-dashboard-de_DE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
- "POT-Creation-Date: 2015-05-11 10:41+0530\n"
5
- "PO-Revision-Date: 2015-05-11 10:41+0530\n"
6
  "Last-Translator: Peter Kaulfuß <info@peter-kaulfuss.eu>\n"
7
  "Language-Team: Peter Kaulfuß\n"
8
  "Language: de_DE\n"
@@ -20,27 +20,27 @@ msgstr ""
20
  msgid "Settings"
21
  msgstr "Einstellungen"
22
 
23
- #: er-custom-login.php:230
24
  msgid "Please upload a valid .json file"
25
  msgstr "Bitte wählen Sie eine gültige .json Datei zum Hochladen aus"
26
 
27
- #: er-custom-login.php:236
28
  msgid "Please upload a file to import"
29
  msgstr "Bitte laden Sie eine Datei zum Importieren hoch"
30
 
31
- #: er-custom-login.php:243
32
  msgid "New settings imported successfully!"
33
  msgstr "Die neuen Einstellungen wurden erfolgreich importiert!"
34
 
35
- #: er-custom-login.php:332
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Persönliches Login und Dashboard"
38
 
39
- #: er-custom-login.php:353
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "Erident Custom Login and Dashboard Einstellungen"
42
 
43
- #: er-custom-login.php:354
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
@@ -48,21 +48,21 @@ msgstr ""
48
  "Das Plugin lädt die Standard Einstellungen für die unten stehenden Optionen. "
49
  "Bitte ändern Sie die Einstellungen wie von Ihnen benötigt."
50
 
51
- #: er-custom-login.php:354
52
  msgid "Click on the header of each block to open it."
53
  msgstr ""
54
  "Klicken Sie auf die Überschriften der Blöcke, um die möglichen Einstellungen "
55
  "anzuzeigen."
56
 
57
- #: er-custom-login.php:361
58
  msgid "Settings saved."
59
  msgstr "Einstellungen gespeichert."
60
 
61
- #: er-custom-login.php:368
62
  msgid "Dashboard Settings"
63
  msgstr "Dashboard Einstellungen"
64
 
65
- #: er-custom-login.php:369
66
  msgid ""
67
  "(These settings will be reflected when a user/admin logins to the WordPress "
68
  "Dashboard)"
@@ -70,12 +70,12 @@ msgstr ""
70
  "(Diese Einstellungen werden wirksam, wenn sich ein Nutzer/Administrator an "
71
  "dem Dashboard von WordPress anmeldet)"
72
 
73
- #: er-custom-login.php:374
74
  msgid "Enter the text for dashboard left side footer:"
75
  msgstr ""
76
  "Geben Sie den Text für die linke Seite des Fußbereiches am DashBoard ein:"
77
 
78
- #: er-custom-login.php:379
79
  msgid ""
80
  "This will replace the default \"Thank you for creating with WordPress\" on "
81
  "the bottom left side of dashboard"
@@ -83,46 +83,49 @@ msgstr ""
83
  "Diese Einstellung wird den Standardtext \"Danke für das Vertrauen in "
84
  "WordPress.\" unten links auf dem Dashboard ersetzen"
85
 
86
- #: er-custom-login.php:383
87
  msgid "Enter the text for dashboard right side footer:"
88
  msgstr ""
89
  "Geben Sie den Text für die rechte Seite des Fußbereiches am DashBoard ein:"
90
 
91
- #: er-custom-login.php:387
92
  msgid ""
93
  "This will replace the default \"WordPress Version\" on the bottom right side "
94
- "of dashboard"
 
95
  msgstr ""
96
  "Diese Einstellung wird den Standardtext \"Version ...\" unten rechts auf dem "
97
- "Dashboard ersetzen"
 
 
98
 
99
- #: er-custom-login.php:396
100
  msgid "Login Screen Background"
101
  msgstr "Login Seite Hintergrund"
102
 
103
- #: er-custom-login.php:397
104
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
105
  msgstr ""
106
  "(Die folgenden Einstellungen werden auf der Seite \"wp-login.php\" wirksam)"
107
 
108
- #: er-custom-login.php:402
109
  msgid "Login Screen Background Color:"
110
  msgstr "Login Seite Hintergrundfarbe:"
111
 
112
- #: er-custom-login.php:407 er-custom-login.php:617 er-custom-login.php:729
113
- #: er-custom-login.php:757 er-custom-login.php:786 er-custom-login.php:798
114
  msgid "Click the box to select a color."
115
  msgstr "Klicken Sie die Box an, um eine Farbe auszuwählen."
116
 
117
- #: er-custom-login.php:412
118
  msgid "Login Screen Background Image:"
119
  msgstr "Login Seite Hintergrund Bild:"
120
 
121
- #: er-custom-login.php:414 er-custom-login.php:632
122
  msgid "Add Background Image"
123
  msgstr "Hinzufügen Hintergrundbild"
124
 
125
- #: er-custom-login.php:416
126
  msgid ""
127
  "Add your own pattern/image url for the screen background. Leave blank if you "
128
  "don't need any images."
@@ -131,25 +134,25 @@ msgstr ""
131
  "Hintergrund ein. Frei lassen, falls Sie kein Bild in den Hintergrund "
132
  "einfügen wollen."
133
 
134
- #: er-custom-login.php:420
135
  msgid "Login Screen Background Repeat"
136
  msgstr "Login Seite Hintergrund Wiederholung"
137
 
138
- #: er-custom-login.php:458 er-custom-login.php:676
139
  msgid "Select an image repeat option from dropdown."
140
  msgstr ""
141
  "Wählen Sie eine Option zur Wiederholung des Hintergrundbildes aus dem "
142
  "Auswahlmenü aus."
143
 
144
- #: er-custom-login.php:462 er-custom-login.php:681
145
  msgid "Background Position:"
146
  msgstr "Hintergrund Position:"
147
 
148
- #: er-custom-login.php:463 er-custom-login.php:682
149
  msgid "Horizontal Position: "
150
  msgstr "Horizontale Position:"
151
 
152
- #: er-custom-login.php:468 er-custom-login.php:687
153
  msgid ""
154
  "The background-position property sets the starting position of a background "
155
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
@@ -165,11 +168,11 @@ msgstr ""
165
  "<a href=\"http://www.w3schools.com/cssref/pr_background-position.asp\" "
166
  "target=\"_blank\">Weitere Informationen</a>"
167
 
168
- #: er-custom-login.php:473
169
  msgid "Background Size:"
170
  msgstr "Hintergund Größe:"
171
 
172
- #: er-custom-login.php:477
173
  msgid ""
174
  "The background-size property specifies the size of a background image. If "
175
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
@@ -184,23 +187,23 @@ msgstr ""
184
  "\"http://www.w3schools.com/cssref/css3_pr_background-size.asp\" target="
185
  "\"_blank\">Weitere Informationen</a>"
186
 
187
- #: er-custom-login.php:488
188
  msgid "Login Screen Logo"
189
  msgstr "Login Seite Logo"
190
 
191
- #: er-custom-login.php:489
192
  msgid "(Change the default WordPress logo and powered by text)"
193
  msgstr "(Ändert das Standard-Logo und den powered by Text von WordPress)"
194
 
195
- #: er-custom-login.php:494
196
  msgid "Logo Url:"
197
  msgstr "URL der Logo-Datei:"
198
 
199
- #: er-custom-login.php:496
200
  msgid "Add Logo"
201
  msgstr "Logo hinzufügen"
202
 
203
- #: er-custom-login.php:498
204
  msgid ""
205
  "(URL path to image to replace default WordPress Logo. (You can upload your "
206
  "image with the WordPress media uploader)"
@@ -209,55 +212,55 @@ msgstr ""
209
  "werden soll. (Sie können ihre Logo-Datei mit dem Medien-Uploader von "
210
  "Wordpress hochladen, und die URL zum Bild dann hier einfügen))"
211
 
212
- #: er-custom-login.php:503
213
  msgid "Logo Width:"
214
  msgstr "Logo Breite:"
215
 
216
- #: er-custom-login.php:507
217
  msgid "Your Logo width(Enter in pixels). Default: 274px"
218
  msgstr "Die Breite Ihres Logos (Wert in Pixel eingeben). Standard: 271px"
219
 
220
- #: er-custom-login.php:511
221
  msgid "Logo Height:"
222
  msgstr "Logo Höhe:"
223
 
224
- #: er-custom-login.php:515
225
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
226
  msgstr "Die Höhe Ihres Logos (Wert in Pixel eingeben). Standard: 63px"
227
 
228
- #: er-custom-login.php:520
229
  msgid "Powered by Text:"
230
  msgstr "Powered by Text:"
231
 
232
- #: er-custom-login.php:524
233
  msgid "Show when mouse hover over custom Login logo"
234
  msgstr "Wird angezeigt, wenn die Maus über dem Logo schwebt"
235
 
236
- #: er-custom-login.php:534
237
  msgid "Login Form Settings"
238
  msgstr "Login-Formular Einstellungen"
239
 
240
- #: er-custom-login.php:535
241
  msgid "(The following settings will change the Login Form style)"
242
  msgstr ""
243
  "(Die folgenden Einstellungen werden das Aussehen des Login-Formulars "
244
  "verändern)"
245
 
246
- #: er-custom-login.php:540
247
  msgid "Login form width:"
248
  msgstr "Login-Formular Breite:"
249
 
250
- #: er-custom-login.php:544
251
  msgid "Total Form width(Enter in pixels). Default: 350px"
252
  msgstr ""
253
  "Die gesamte Breite des Login-Formulars (Wert in Pixel eingeben). Standard: "
254
  "350px"
255
 
256
- #: er-custom-login.php:548
257
  msgid "Login Form Border Radius:"
258
  msgstr "Login-Formular Rahmen-Radius:"
259
 
260
- #: er-custom-login.php:552
261
  msgid ""
262
  "Border Radius of Login Form. This is the option to make the corners rounded."
263
  "(Enter in pixels)"
@@ -265,35 +268,35 @@ msgstr ""
265
  "Der Rahmen-Radius des Login-Formulars. Diese Einstellung bewirkt das die "
266
  "Ecken des Rahmens rund werden. (In Pixel eingeben)"
267
 
268
- #: er-custom-login.php:556
269
  msgid "Login Border Style"
270
  msgstr "Login-Formular Rahmen-Linienart"
271
 
272
- #: er-custom-login.php:600
273
  msgid "Select a Border Style option from dropdown."
274
  msgstr "Wählen Sie eine Rahmen-Linienart aus dem Auswahlmenü aus."
275
 
276
- #: er-custom-login.php:604
277
  msgid "Login Border Thickness:"
278
  msgstr "Login-Formular Rahmen Liniendicke"
279
 
280
- #: er-custom-login.php:608
281
  msgid "Thickness of Border (Enter value in pixels)"
282
  msgstr "Die Dicke der Rahmen-Linie (Einen Wert in Pixel eingeben)"
283
 
284
- #: er-custom-login.php:612
285
  msgid "Login Border Color:"
286
  msgstr "Login-Formular Rahmen Linienfarbe"
287
 
288
- #: er-custom-login.php:621
289
  msgid "Login Form Background Color:"
290
  msgstr "Login-Formular Hintergrund Farbe:"
291
 
292
- #: er-custom-login.php:625
293
  msgid "Background Opacity: "
294
  msgstr "Hintergund Transparenz:"
295
 
296
- #: er-custom-login.php:627
297
  msgid ""
298
  "Click the box to select a color. Background Opacity will helps you to put "
299
  "transparent color over a background image. Possible values 0 to 1. Example: "
@@ -308,11 +311,11 @@ msgstr ""
308
  "erident-custom-login-and-dashboard/faq/\" target=\"_blank\">Mehr "
309
  "Informationen</a>"
310
 
311
- #: er-custom-login.php:631
312
  msgid "Login Form Background Image:"
313
  msgstr "Login-Formular Hintergrund Bild:"
314
 
315
- #: er-custom-login.php:634
316
  msgid ""
317
  "Add your own pattern/image url to the form background. Leave blank if you "
318
  "don't need any images."
@@ -321,19 +324,19 @@ msgstr ""
321
  "Formular Hintergrund ein. Frei lassen, falls Sie kein Bild in den "
322
  "Hintergrund einfügen wollen."
323
 
324
- #: er-custom-login.php:638
325
  msgid "Login Form Background Repeat"
326
  msgstr "Login-Formular Hnitergrundbild Wiederholungen"
327
 
328
- #: er-custom-login.php:684
329
  msgid "Vertical Position: "
330
  msgstr "Vertikale Position:"
331
 
332
- #: er-custom-login.php:692
333
  msgid "Login Form Label Text Color"
334
  msgstr "Login-Formular Beschriftung Text-Farbe"
335
 
336
- #: er-custom-login.php:697
337
  msgid ""
338
  "Click the box to select a color. This will change the color of label "
339
  "Username/Password"
@@ -341,21 +344,21 @@ msgstr ""
341
  "Klicken Sie die Box an, um eine Farbe auszuwählen. Diese Option verändert "
342
  "die Farbe des Beschriftungstextes Benutzername / Passwort"
343
 
344
- #: er-custom-login.php:701
345
  msgid "Login Form Label Text Size:"
346
  msgstr "Login-Formular Beschriftung Text-Größe"
347
 
348
- #: er-custom-login.php:704
349
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
350
  msgstr ""
351
  "Schriftgröße des Beschriftungstextes der Formularfelder Benutzername / "
352
  "Passwort (Wert in Pixel eingeben)"
353
 
354
- #: er-custom-login.php:708
355
  msgid "Login Form Input Text Color"
356
  msgstr "Login-Formular Texteingabe Text-Farbe"
357
 
358
- #: er-custom-login.php:713
359
  msgid ""
360
  "Click the box to select a color. This will change the color of text inside "
361
  "text box."
@@ -363,62 +366,62 @@ msgstr ""
363
  "Klicken Sie die Box an, um eine Farbe auszuwählen. Diese Option verändert "
364
  "die Farbe des Eingabetextes in den Formularfeldern."
365
 
366
- #: er-custom-login.php:717
367
  msgid "Login Form Input Text Size:"
368
  msgstr "Login-Formular Texteingabe Text-Größe"
369
 
370
- #: er-custom-login.php:720
371
  msgid "Font Size of text inside text box(Enter value in pixels)"
372
  msgstr ""
373
  "Schriftgröße des Textes der in die Formularfelder eingegeben wird (Wert in "
374
  "Pixel eingeben)"
375
 
376
- #: er-custom-login.php:724
377
  msgid "Login Form Link Color"
378
  msgstr "Login-Formular Link-Farbe"
379
 
380
- #: er-custom-login.php:734
381
  msgid "Enable link shadow?"
382
  msgstr "Schatten am Link aktivieren?"
383
 
384
- #: er-custom-login.php:742 er-custom-login.php:771 er-custom-login.php:822
385
  msgid "Yes"
386
  msgstr "Ja"
387
 
388
- #: er-custom-login.php:746 er-custom-login.php:775 er-custom-login.php:826
389
  msgid "No"
390
  msgstr "Nein"
391
 
392
- #: er-custom-login.php:748 er-custom-login.php:777
393
  msgid "(Check an option)"
394
  msgstr "(eine Option auswählen)"
395
 
396
- #: er-custom-login.php:752
397
  msgid "Login Form Link Shadow Color"
398
  msgstr "Login-Forumlar Link-Schatten Farbe"
399
 
400
- #: er-custom-login.php:763
401
  msgid "Enable form shadow?"
402
  msgstr "Schatten des Formularfeldes aktivieren?"
403
 
404
- #: er-custom-login.php:781
405
  msgid "Login Form Shadow Color"
406
  msgstr "Login-Formular Formular-Schatten Farbe"
407
 
408
- #: er-custom-login.php:793
409
  msgid "Login Button Color"
410
  msgstr "Login-Knopf Farbe"
411
 
412
- #: er-custom-login.php:809
413
  msgid "Plugin Un-install Settings"
414
  msgstr "Plugin De-Installation Einstellungen"
415
 
416
- #: er-custom-login.php:814
417
  msgid "Delete custom settings upon plugin deactivation?"
418
  msgstr ""
419
  "Benutzerspezifische Einstellungen bei der Deaktivierung des Plugins löschen?"
420
 
421
- #: er-custom-login.php:828
422
  msgid ""
423
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
424
  "plugin deactivation)"
@@ -429,15 +432,15 @@ msgstr ""
429
  "DER OPTION \"JA\" WERDEN BEI DER NÄCHSTEN DEAKTIVIERUNG ALLE "
430
  "BENUTZERSPEZIFISCHEN EINSTELLUNGEN AUS DER DATENBANK GELÖSCHT!)"
431
 
432
- #: er-custom-login.php:836
433
  msgid "Save Changes"
434
  msgstr "Änderungen speichern"
435
 
436
- #: er-custom-login.php:843
437
  msgid "Export Settings"
438
  msgstr "Einstellungen exportieren"
439
 
440
- #: er-custom-login.php:845
441
  msgid ""
442
  "Export the plugin settings for this site as a .json file. This allows you to "
443
  "easily import the configuration into another site."
@@ -446,15 +449,15 @@ msgstr ""
446
  "Mit dieser Funktion können Sie die hier vorgenommenen Einstellungen einfach "
447
  "in eine andere WordPress-Seite übernehmen."
448
 
449
- #: er-custom-login.php:850
450
  msgid "Export"
451
  msgstr "Exportieren"
452
 
453
- #: er-custom-login.php:858
454
  msgid "Import Settings"
455
  msgstr "Einstellungen importieren"
456
 
457
- #: er-custom-login.php:860
458
  msgid ""
459
  "Import the plugin settings from a .json file. This file can be obtained by "
460
  "exporting the settings on another site using the form above."
@@ -464,39 +467,39 @@ msgstr ""
464
  "WordPress-Seite erzeugen, und damit diese Einstellungen einfach in die "
465
  "aktuelle WordPress-Seite übernehmen."
466
 
467
- #: er-custom-login.php:868
468
  msgid "Import"
469
  msgstr "Importieren"
470
 
471
- #: er-custom-login.php:876
472
  msgid "Quick Links"
473
  msgstr "Schnelle Hilfe - Quick Links"
474
 
475
- #: er-custom-login.php:878
476
  msgid "Open Your WP Login Page in a New Tab"
477
  msgstr "Die WP Login-Seite in einem neuen Tab öffnen"
478
 
479
- #: er-custom-login.php:879
480
  msgid "Plugin Documentation"
481
  msgstr "Dokumentation des Plugins"
482
 
483
- #: er-custom-login.php:880
484
  msgid "Plugin Support Page"
485
  msgstr "Support-Seite des Plugins"
486
 
487
- #: er-custom-login.php:881
488
  msgid "Feature Request/Suggestions?"
489
  msgstr "Neue Funktion gewünscht? Ideen ?"
490
 
491
- #: er-custom-login.php:882
492
  msgid "Got some Love? Give us a 5 star rating!"
493
  msgstr "Etwas Liebe geben? Geben Sie uns eine 5 Sterne Bewertung"
494
 
495
- #: er-custom-login.php:886
496
  msgid "Hire Me"
497
  msgstr "Engagieren Sie mich"
498
 
499
- #: er-custom-login.php:887
500
  msgid ""
501
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
502
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
@@ -509,11 +512,11 @@ msgstr ""
509
  "<br/>Online Portfolio: <a href=\"http://www.libin.in\" target=\"_blank\">www."
510
  "libin.in</a>"
511
 
512
- #: er-custom-login.php:889
513
  msgid "Translation Credits"
514
  msgstr "Vielen Dank für die Übersetzungen an: "
515
 
516
- #: er-custom-login.php:891
517
  msgid ""
518
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
519
  "\">Adriana De La Cuadra</a>"
@@ -521,7 +524,7 @@ msgstr ""
521
  "Spanisch von <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
522
  "\">Adriana De La Cuadra</a>"
523
 
524
- #: er-custom-login.php:892
525
  msgid ""
526
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
527
  "\" target=\"_blank\">Guillaume Vaslin</a>"
@@ -529,7 +532,7 @@ msgstr ""
529
  "Französisch von <a href=\"https://www.linkedin.com/pub/vaslin-"
530
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
531
 
532
- #: er-custom-login.php:893
533
  msgid ""
534
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
535
  "Kaulfuss</a>"
@@ -537,7 +540,7 @@ msgstr ""
537
  "Deutsch von <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
538
  "\">Peter Kaulfuss</a>"
539
 
540
- #: er-custom-login.php:894
541
  msgid ""
542
  "Turkish by <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
543
  "target=\"_blank\">Muhammet Küçük</a>"
@@ -545,7 +548,23 @@ msgstr ""
545
  "Turkish von <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
546
  "target=\"_blank\">Muhammet Küçük</a>"
547
 
548
- #: er-custom-login.php:896
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
549
  msgid "Do you wants to translate this plugin to your language? Email me!"
550
  msgstr ""
551
  "Sie möchten eine Übersetzung dieses Plugins in Ihrer Sprache beisteuern? "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
+ "POT-Creation-Date: 2015-06-10 18:20+0530\n"
5
+ "PO-Revision-Date: 2015-06-10 18:20+0530\n"
6
  "Last-Translator: Peter Kaulfuß <info@peter-kaulfuss.eu>\n"
7
  "Language-Team: Peter Kaulfuß\n"
8
  "Language: de_DE\n"
20
  msgid "Settings"
21
  msgstr "Einstellungen"
22
 
23
+ #: er-custom-login.php:235
24
  msgid "Please upload a valid .json file"
25
  msgstr "Bitte wählen Sie eine gültige .json Datei zum Hochladen aus"
26
 
27
+ #: er-custom-login.php:241
28
  msgid "Please upload a file to import"
29
  msgstr "Bitte laden Sie eine Datei zum Importieren hoch"
30
 
31
+ #: er-custom-login.php:248
32
  msgid "New settings imported successfully!"
33
  msgstr "Die neuen Einstellungen wurden erfolgreich importiert!"
34
 
35
+ #: er-custom-login.php:337
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Persönliches Login und Dashboard"
38
 
39
+ #: er-custom-login.php:358
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "Erident Custom Login and Dashboard Einstellungen"
42
 
43
+ #: er-custom-login.php:359
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
48
  "Das Plugin lädt die Standard Einstellungen für die unten stehenden Optionen. "
49
  "Bitte ändern Sie die Einstellungen wie von Ihnen benötigt."
50
 
51
+ #: er-custom-login.php:359
52
  msgid "Click on the header of each block to open it."
53
  msgstr ""
54
  "Klicken Sie auf die Überschriften der Blöcke, um die möglichen Einstellungen "
55
  "anzuzeigen."
56
 
57
+ #: er-custom-login.php:367
58
  msgid "Settings saved."
59
  msgstr "Einstellungen gespeichert."
60
 
61
+ #: er-custom-login.php:375
62
  msgid "Dashboard Settings"
63
  msgstr "Dashboard Einstellungen"
64
 
65
+ #: er-custom-login.php:376
66
  msgid ""
67
  "(These settings will be reflected when a user/admin logins to the WordPress "
68
  "Dashboard)"
70
  "(Diese Einstellungen werden wirksam, wenn sich ein Nutzer/Administrator an "
71
  "dem Dashboard von WordPress anmeldet)"
72
 
73
+ #: er-custom-login.php:381
74
  msgid "Enter the text for dashboard left side footer:"
75
  msgstr ""
76
  "Geben Sie den Text für die linke Seite des Fußbereiches am DashBoard ein:"
77
 
78
+ #: er-custom-login.php:386
79
  msgid ""
80
  "This will replace the default \"Thank you for creating with WordPress\" on "
81
  "the bottom left side of dashboard"
83
  "Diese Einstellung wird den Standardtext \"Danke für das Vertrauen in "
84
  "WordPress.\" unten links auf dem Dashboard ersetzen"
85
 
86
+ #: er-custom-login.php:390
87
  msgid "Enter the text for dashboard right side footer:"
88
  msgstr ""
89
  "Geben Sie den Text für die rechte Seite des Fußbereiches am DashBoard ein:"
90
 
91
+ #: er-custom-login.php:394
92
  msgid ""
93
  "This will replace the default \"WordPress Version\" on the bottom right side "
94
+ "of dashboard. Keep it as empty field for disabling this feature. Refresh the "
95
+ "page again to see the result after saving."
96
  msgstr ""
97
  "Diese Einstellung wird den Standardtext \"Version ...\" unten rechts auf dem "
98
+ "Dashboard ersetzen. Halten Sie es als leeres Feld für die Deaktivierung "
99
+ "dieser Funktion. Aktualisieren Sie die Seite erneut auf das Ergebnis nach "
100
+ "dem Speichern angezeigt."
101
 
102
+ #: er-custom-login.php:403
103
  msgid "Login Screen Background"
104
  msgstr "Login Seite Hintergrund"
105
 
106
+ #: er-custom-login.php:404
107
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
108
  msgstr ""
109
  "(Die folgenden Einstellungen werden auf der Seite \"wp-login.php\" wirksam)"
110
 
111
+ #: er-custom-login.php:409
112
  msgid "Login Screen Background Color:"
113
  msgstr "Login Seite Hintergrundfarbe:"
114
 
115
+ #: er-custom-login.php:414 er-custom-login.php:624 er-custom-login.php:736
116
+ #: er-custom-login.php:764 er-custom-login.php:793 er-custom-login.php:805
117
  msgid "Click the box to select a color."
118
  msgstr "Klicken Sie die Box an, um eine Farbe auszuwählen."
119
 
120
+ #: er-custom-login.php:419
121
  msgid "Login Screen Background Image:"
122
  msgstr "Login Seite Hintergrund Bild:"
123
 
124
+ #: er-custom-login.php:421 er-custom-login.php:639
125
  msgid "Add Background Image"
126
  msgstr "Hinzufügen Hintergrundbild"
127
 
128
+ #: er-custom-login.php:423
129
  msgid ""
130
  "Add your own pattern/image url for the screen background. Leave blank if you "
131
  "don't need any images."
134
  "Hintergrund ein. Frei lassen, falls Sie kein Bild in den Hintergrund "
135
  "einfügen wollen."
136
 
137
+ #: er-custom-login.php:427
138
  msgid "Login Screen Background Repeat"
139
  msgstr "Login Seite Hintergrund Wiederholung"
140
 
141
+ #: er-custom-login.php:465 er-custom-login.php:683
142
  msgid "Select an image repeat option from dropdown."
143
  msgstr ""
144
  "Wählen Sie eine Option zur Wiederholung des Hintergrundbildes aus dem "
145
  "Auswahlmenü aus."
146
 
147
+ #: er-custom-login.php:469 er-custom-login.php:688
148
  msgid "Background Position:"
149
  msgstr "Hintergrund Position:"
150
 
151
+ #: er-custom-login.php:470 er-custom-login.php:689
152
  msgid "Horizontal Position: "
153
  msgstr "Horizontale Position:"
154
 
155
+ #: er-custom-login.php:475 er-custom-login.php:694
156
  msgid ""
157
  "The background-position property sets the starting position of a background "
158
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
168
  "<a href=\"http://www.w3schools.com/cssref/pr_background-position.asp\" "
169
  "target=\"_blank\">Weitere Informationen</a>"
170
 
171
+ #: er-custom-login.php:480
172
  msgid "Background Size:"
173
  msgstr "Hintergund Größe:"
174
 
175
+ #: er-custom-login.php:484
176
  msgid ""
177
  "The background-size property specifies the size of a background image. If "
178
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
187
  "\"http://www.w3schools.com/cssref/css3_pr_background-size.asp\" target="
188
  "\"_blank\">Weitere Informationen</a>"
189
 
190
+ #: er-custom-login.php:495
191
  msgid "Login Screen Logo"
192
  msgstr "Login Seite Logo"
193
 
194
+ #: er-custom-login.php:496
195
  msgid "(Change the default WordPress logo and powered by text)"
196
  msgstr "(Ändert das Standard-Logo und den powered by Text von WordPress)"
197
 
198
+ #: er-custom-login.php:501
199
  msgid "Logo Url:"
200
  msgstr "URL der Logo-Datei:"
201
 
202
+ #: er-custom-login.php:503
203
  msgid "Add Logo"
204
  msgstr "Logo hinzufügen"
205
 
206
+ #: er-custom-login.php:505
207
  msgid ""
208
  "(URL path to image to replace default WordPress Logo. (You can upload your "
209
  "image with the WordPress media uploader)"
212
  "werden soll. (Sie können ihre Logo-Datei mit dem Medien-Uploader von "
213
  "Wordpress hochladen, und die URL zum Bild dann hier einfügen))"
214
 
215
+ #: er-custom-login.php:510
216
  msgid "Logo Width:"
217
  msgstr "Logo Breite:"
218
 
219
+ #: er-custom-login.php:514
220
  msgid "Your Logo width(Enter in pixels). Default: 274px"
221
  msgstr "Die Breite Ihres Logos (Wert in Pixel eingeben). Standard: 271px"
222
 
223
+ #: er-custom-login.php:518
224
  msgid "Logo Height:"
225
  msgstr "Logo Höhe:"
226
 
227
+ #: er-custom-login.php:522
228
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
229
  msgstr "Die Höhe Ihres Logos (Wert in Pixel eingeben). Standard: 63px"
230
 
231
+ #: er-custom-login.php:527
232
  msgid "Powered by Text:"
233
  msgstr "Powered by Text:"
234
 
235
+ #: er-custom-login.php:531
236
  msgid "Show when mouse hover over custom Login logo"
237
  msgstr "Wird angezeigt, wenn die Maus über dem Logo schwebt"
238
 
239
+ #: er-custom-login.php:541
240
  msgid "Login Form Settings"
241
  msgstr "Login-Formular Einstellungen"
242
 
243
+ #: er-custom-login.php:542
244
  msgid "(The following settings will change the Login Form style)"
245
  msgstr ""
246
  "(Die folgenden Einstellungen werden das Aussehen des Login-Formulars "
247
  "verändern)"
248
 
249
+ #: er-custom-login.php:547
250
  msgid "Login form width:"
251
  msgstr "Login-Formular Breite:"
252
 
253
+ #: er-custom-login.php:551
254
  msgid "Total Form width(Enter in pixels). Default: 350px"
255
  msgstr ""
256
  "Die gesamte Breite des Login-Formulars (Wert in Pixel eingeben). Standard: "
257
  "350px"
258
 
259
+ #: er-custom-login.php:555
260
  msgid "Login Form Border Radius:"
261
  msgstr "Login-Formular Rahmen-Radius:"
262
 
263
+ #: er-custom-login.php:559
264
  msgid ""
265
  "Border Radius of Login Form. This is the option to make the corners rounded."
266
  "(Enter in pixels)"
268
  "Der Rahmen-Radius des Login-Formulars. Diese Einstellung bewirkt das die "
269
  "Ecken des Rahmens rund werden. (In Pixel eingeben)"
270
 
271
+ #: er-custom-login.php:563
272
  msgid "Login Border Style"
273
  msgstr "Login-Formular Rahmen-Linienart"
274
 
275
+ #: er-custom-login.php:607
276
  msgid "Select a Border Style option from dropdown."
277
  msgstr "Wählen Sie eine Rahmen-Linienart aus dem Auswahlmenü aus."
278
 
279
+ #: er-custom-login.php:611
280
  msgid "Login Border Thickness:"
281
  msgstr "Login-Formular Rahmen Liniendicke"
282
 
283
+ #: er-custom-login.php:615
284
  msgid "Thickness of Border (Enter value in pixels)"
285
  msgstr "Die Dicke der Rahmen-Linie (Einen Wert in Pixel eingeben)"
286
 
287
+ #: er-custom-login.php:619
288
  msgid "Login Border Color:"
289
  msgstr "Login-Formular Rahmen Linienfarbe"
290
 
291
+ #: er-custom-login.php:628
292
  msgid "Login Form Background Color:"
293
  msgstr "Login-Formular Hintergrund Farbe:"
294
 
295
+ #: er-custom-login.php:632
296
  msgid "Background Opacity: "
297
  msgstr "Hintergund Transparenz:"
298
 
299
+ #: er-custom-login.php:634
300
  msgid ""
301
  "Click the box to select a color. Background Opacity will helps you to put "
302
  "transparent color over a background image. Possible values 0 to 1. Example: "
311
  "erident-custom-login-and-dashboard/faq/\" target=\"_blank\">Mehr "
312
  "Informationen</a>"
313
 
314
+ #: er-custom-login.php:638
315
  msgid "Login Form Background Image:"
316
  msgstr "Login-Formular Hintergrund Bild:"
317
 
318
+ #: er-custom-login.php:641
319
  msgid ""
320
  "Add your own pattern/image url to the form background. Leave blank if you "
321
  "don't need any images."
324
  "Formular Hintergrund ein. Frei lassen, falls Sie kein Bild in den "
325
  "Hintergrund einfügen wollen."
326
 
327
+ #: er-custom-login.php:645
328
  msgid "Login Form Background Repeat"
329
  msgstr "Login-Formular Hnitergrundbild Wiederholungen"
330
 
331
+ #: er-custom-login.php:691
332
  msgid "Vertical Position: "
333
  msgstr "Vertikale Position:"
334
 
335
+ #: er-custom-login.php:699
336
  msgid "Login Form Label Text Color"
337
  msgstr "Login-Formular Beschriftung Text-Farbe"
338
 
339
+ #: er-custom-login.php:704
340
  msgid ""
341
  "Click the box to select a color. This will change the color of label "
342
  "Username/Password"
344
  "Klicken Sie die Box an, um eine Farbe auszuwählen. Diese Option verändert "
345
  "die Farbe des Beschriftungstextes Benutzername / Passwort"
346
 
347
+ #: er-custom-login.php:708
348
  msgid "Login Form Label Text Size:"
349
  msgstr "Login-Formular Beschriftung Text-Größe"
350
 
351
+ #: er-custom-login.php:711
352
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
353
  msgstr ""
354
  "Schriftgröße des Beschriftungstextes der Formularfelder Benutzername / "
355
  "Passwort (Wert in Pixel eingeben)"
356
 
357
+ #: er-custom-login.php:715
358
  msgid "Login Form Input Text Color"
359
  msgstr "Login-Formular Texteingabe Text-Farbe"
360
 
361
+ #: er-custom-login.php:720
362
  msgid ""
363
  "Click the box to select a color. This will change the color of text inside "
364
  "text box."
366
  "Klicken Sie die Box an, um eine Farbe auszuwählen. Diese Option verändert "
367
  "die Farbe des Eingabetextes in den Formularfeldern."
368
 
369
+ #: er-custom-login.php:724
370
  msgid "Login Form Input Text Size:"
371
  msgstr "Login-Formular Texteingabe Text-Größe"
372
 
373
+ #: er-custom-login.php:727
374
  msgid "Font Size of text inside text box(Enter value in pixels)"
375
  msgstr ""
376
  "Schriftgröße des Textes der in die Formularfelder eingegeben wird (Wert in "
377
  "Pixel eingeben)"
378
 
379
+ #: er-custom-login.php:731
380
  msgid "Login Form Link Color"
381
  msgstr "Login-Formular Link-Farbe"
382
 
383
+ #: er-custom-login.php:741
384
  msgid "Enable link shadow?"
385
  msgstr "Schatten am Link aktivieren?"
386
 
387
+ #: er-custom-login.php:749 er-custom-login.php:778 er-custom-login.php:829
388
  msgid "Yes"
389
  msgstr "Ja"
390
 
391
+ #: er-custom-login.php:753 er-custom-login.php:782 er-custom-login.php:833
392
  msgid "No"
393
  msgstr "Nein"
394
 
395
+ #: er-custom-login.php:755 er-custom-login.php:784
396
  msgid "(Check an option)"
397
  msgstr "(eine Option auswählen)"
398
 
399
+ #: er-custom-login.php:759
400
  msgid "Login Form Link Shadow Color"
401
  msgstr "Login-Forumlar Link-Schatten Farbe"
402
 
403
+ #: er-custom-login.php:770
404
  msgid "Enable form shadow?"
405
  msgstr "Schatten des Formularfeldes aktivieren?"
406
 
407
+ #: er-custom-login.php:788
408
  msgid "Login Form Shadow Color"
409
  msgstr "Login-Formular Formular-Schatten Farbe"
410
 
411
+ #: er-custom-login.php:800
412
  msgid "Login Button Color"
413
  msgstr "Login-Knopf Farbe"
414
 
415
+ #: er-custom-login.php:816
416
  msgid "Plugin Un-install Settings"
417
  msgstr "Plugin De-Installation Einstellungen"
418
 
419
+ #: er-custom-login.php:821
420
  msgid "Delete custom settings upon plugin deactivation?"
421
  msgstr ""
422
  "Benutzerspezifische Einstellungen bei der Deaktivierung des Plugins löschen?"
423
 
424
+ #: er-custom-login.php:835
425
  msgid ""
426
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
427
  "plugin deactivation)"
432
  "DER OPTION \"JA\" WERDEN BEI DER NÄCHSTEN DEAKTIVIERUNG ALLE "
433
  "BENUTZERSPEZIFISCHEN EINSTELLUNGEN AUS DER DATENBANK GELÖSCHT!)"
434
 
435
+ #: er-custom-login.php:843
436
  msgid "Save Changes"
437
  msgstr "Änderungen speichern"
438
 
439
+ #: er-custom-login.php:850
440
  msgid "Export Settings"
441
  msgstr "Einstellungen exportieren"
442
 
443
+ #: er-custom-login.php:852
444
  msgid ""
445
  "Export the plugin settings for this site as a .json file. This allows you to "
446
  "easily import the configuration into another site."
449
  "Mit dieser Funktion können Sie die hier vorgenommenen Einstellungen einfach "
450
  "in eine andere WordPress-Seite übernehmen."
451
 
452
+ #: er-custom-login.php:857
453
  msgid "Export"
454
  msgstr "Exportieren"
455
 
456
+ #: er-custom-login.php:865
457
  msgid "Import Settings"
458
  msgstr "Einstellungen importieren"
459
 
460
+ #: er-custom-login.php:867
461
  msgid ""
462
  "Import the plugin settings from a .json file. This file can be obtained by "
463
  "exporting the settings on another site using the form above."
467
  "WordPress-Seite erzeugen, und damit diese Einstellungen einfach in die "
468
  "aktuelle WordPress-Seite übernehmen."
469
 
470
+ #: er-custom-login.php:875
471
  msgid "Import"
472
  msgstr "Importieren"
473
 
474
+ #: er-custom-login.php:883
475
  msgid "Quick Links"
476
  msgstr "Schnelle Hilfe - Quick Links"
477
 
478
+ #: er-custom-login.php:885
479
  msgid "Open Your WP Login Page in a New Tab"
480
  msgstr "Die WP Login-Seite in einem neuen Tab öffnen"
481
 
482
+ #: er-custom-login.php:886
483
  msgid "Plugin Documentation"
484
  msgstr "Dokumentation des Plugins"
485
 
486
+ #: er-custom-login.php:887
487
  msgid "Plugin Support Page"
488
  msgstr "Support-Seite des Plugins"
489
 
490
+ #: er-custom-login.php:888
491
  msgid "Feature Request/Suggestions?"
492
  msgstr "Neue Funktion gewünscht? Ideen ?"
493
 
494
+ #: er-custom-login.php:889
495
  msgid "Got some Love? Give us a 5 star rating!"
496
  msgstr "Etwas Liebe geben? Geben Sie uns eine 5 Sterne Bewertung"
497
 
498
+ #: er-custom-login.php:893
499
  msgid "Hire Me"
500
  msgstr "Engagieren Sie mich"
501
 
502
+ #: er-custom-login.php:894
503
  msgid ""
504
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
505
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
512
  "<br/>Online Portfolio: <a href=\"http://www.libin.in\" target=\"_blank\">www."
513
  "libin.in</a>"
514
 
515
+ #: er-custom-login.php:896
516
  msgid "Translation Credits"
517
  msgstr "Vielen Dank für die Übersetzungen an: "
518
 
519
+ #: er-custom-login.php:898
520
  msgid ""
521
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
522
  "\">Adriana De La Cuadra</a>"
524
  "Spanisch von <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
525
  "\">Adriana De La Cuadra</a>"
526
 
527
+ #: er-custom-login.php:899
528
  msgid ""
529
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
530
  "\" target=\"_blank\">Guillaume Vaslin</a>"
532
  "Französisch von <a href=\"https://www.linkedin.com/pub/vaslin-"
533
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
534
 
535
+ #: er-custom-login.php:900
536
  msgid ""
537
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
538
  "Kaulfuss</a>"
540
  "Deutsch von <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
541
  "\">Peter Kaulfuss</a>"
542
 
543
+ #: er-custom-login.php:901
544
  msgid ""
545
  "Turkish by <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
546
  "target=\"_blank\">Muhammet Küçük</a>"
548
  "Turkish von <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
549
  "target=\"_blank\">Muhammet Küçük</a>"
550
 
551
+ #: er-custom-login.php:902
552
+ msgid ""
553
+ "Persian by <a href=\"https://about.me/reza.heydari\" target=\"_blank\">Reza "
554
+ "Heydari</a>"
555
+ msgstr ""
556
+ "Persian von <a href=\"https://about.me/reza.heydari\" target=\"_blank\">Reza "
557
+ "Heydari</a>"
558
+
559
+ #: er-custom-login.php:903
560
+ msgid ""
561
+ "Portuguese-Brazil by <a href=\"https://www.facebook.com/home.php?"
562
+ "m2w&refid=8\" target=\"_blank\">Reza Heydari</a>"
563
+ msgstr ""
564
+ "Portuguese-Brazil von <a href=\"https://www.facebook.com/home.php?"
565
+ "m2w&refid=8\" target=\"_blank\">Reza Heydari</a>"
566
+
567
+ #: er-custom-login.php:905
568
  msgid "Do you wants to translate this plugin to your language? Email me!"
569
  msgstr ""
570
  "Sie möchten eine Übersetzung dieses Plugins in Ihrer Sprache beisteuern? "
languages/erident-custom-login-and-dashboard-es_ES.mo CHANGED
Binary file
languages/erident-custom-login-and-dashboard-es_ES.po CHANGED
@@ -1,11 +1,11 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
- "POT-Creation-Date: 2015-05-11 10:41+0530\n"
5
- "PO-Revision-Date: 2015-05-11 10:42+0530\n"
6
  "Last-Translator: Libin <libin@libin.in>\n"
7
  "Language-Team: \n"
8
- "Language: en\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -20,27 +20,27 @@ msgstr ""
20
  msgid "Settings"
21
  msgstr "Configuración"
22
 
23
- #: er-custom-login.php:230
24
  msgid "Please upload a valid .json file"
25
  msgstr "Por favor adjunte un archivo .json valido"
26
 
27
- #: er-custom-login.php:236
28
  msgid "Please upload a file to import"
29
  msgstr "Por favor adjunte un archivo a importar."
30
 
31
- #: er-custom-login.php:243
32
  msgid "New settings imported successfully!"
33
  msgstr "La nueva configuración fue importada exitosamente."
34
 
35
- #: er-custom-login.php:332
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Custom Login y Dashboard"
38
 
39
- #: er-custom-login.php:353
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "ERIDENT, Ingreso Customizado - Panel de Control"
42
 
43
- #: er-custom-login.php:354
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
@@ -48,19 +48,19 @@ msgstr ""
48
  "Los siguientes son las configuraciones predeterminadas de este plugin. "
49
  "Puedes ajustarlas a tus necesidades."
50
 
51
- #: er-custom-login.php:354
52
  msgid "Click on the header of each block to open it."
53
  msgstr "Para acceder a más opciones presiona los encabezados de cada sección."
54
 
55
- #: er-custom-login.php:361
56
  msgid "Settings saved."
57
  msgstr "Configuración Salvada"
58
 
59
- #: er-custom-login.php:368
60
  msgid "Dashboard Settings"
61
  msgstr "Configuración del panel"
62
 
63
- #: er-custom-login.php:369
64
  msgid ""
65
  "(These settings will be reflected when a user/admin logins to the WordPress "
66
  "Dashboard)"
@@ -68,11 +68,11 @@ msgstr ""
68
  "(Estos ajustes se reflejarán cuando un usuario / administrador inicia su "
69
  "sesión en el panel de control de WordPress)"
70
 
71
- #: er-custom-login.php:374
72
  msgid "Enter the text for dashboard left side footer:"
73
  msgstr "Texto para el panel del pie de página izquierdo:"
74
 
75
- #: er-custom-login.php:379
76
  msgid ""
77
  "This will replace the default \"Thank you for creating with WordPress\" on "
78
  "the bottom left side of dashboard"
@@ -80,44 +80,47 @@ msgstr ""
80
  "Esto reemplazará el valor por defecto \"Gracias por crear con WordPress \" "
81
  "en la parte inferior izquierda del cuadro de mandos"
82
 
83
- #: er-custom-login.php:383
84
  msgid "Enter the text for dashboard right side footer:"
85
  msgstr "Texto para el panel del pie de página derecho:"
86
 
87
- #: er-custom-login.php:387
88
  msgid ""
89
  "This will replace the default \"WordPress Version\" on the bottom right side "
90
- "of dashboard"
 
91
  msgstr ""
92
  "Esto reemplazará el valor por defecto \"WordPress Version \" en la parte "
93
- "inferior derecha del cuadro de mandos"
 
 
94
 
95
- #: er-custom-login.php:396
96
  msgid "Login Screen Background"
97
  msgstr "Fondo de la Pantalla de Ingreso"
98
 
99
- #: er-custom-login.php:397
100
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
101
  msgstr "(Estos ajustes se reflejarán en la página \"wp-login.php\")"
102
 
103
- #: er-custom-login.php:402
104
  msgid "Login Screen Background Color:"
105
  msgstr "Color del Fondo de la Pantalla de Ingreso:"
106
 
107
- #: er-custom-login.php:407 er-custom-login.php:617 er-custom-login.php:729
108
- #: er-custom-login.php:757 er-custom-login.php:786 er-custom-login.php:798
109
  msgid "Click the box to select a color."
110
  msgstr "Haz click en el cuadro para seleccionar un color."
111
 
112
- #: er-custom-login.php:412
113
  msgid "Login Screen Background Image:"
114
  msgstr "Imagen de Fondo de la Pantalla de Ingreso: "
115
 
116
- #: er-custom-login.php:414 er-custom-login.php:632
117
  msgid "Add Background Image"
118
  msgstr "Añadir imagen de fondo"
119
 
120
- #: er-custom-login.php:416
121
  msgid ""
122
  "Add your own pattern/image url for the screen background. Leave blank if you "
123
  "don't need any images."
@@ -125,23 +128,23 @@ msgstr ""
125
  "Añade el url de tu patrón/imagen para el fondo de la pantalla. Deja en "
126
  "blanco si no necesitas ninguna imagen."
127
 
128
- #: er-custom-login.php:420
129
  msgid "Login Screen Background Repeat"
130
  msgstr "Repetición de la Image de Fondo de la Pantalla de Ingreso:"
131
 
132
- #: er-custom-login.php:458 er-custom-login.php:676
133
  msgid "Select an image repeat option from dropdown."
134
  msgstr "Selecciona una opción de repetición."
135
 
136
- #: er-custom-login.php:462 er-custom-login.php:681
137
  msgid "Background Position:"
138
  msgstr "Posición de la Image de Fondo de la Pantalla de Ingreso: "
139
 
140
- #: er-custom-login.php:463 er-custom-login.php:682
141
  msgid "Horizontal Position: "
142
  msgstr "Posición horizontal:"
143
 
144
- #: er-custom-login.php:468 er-custom-login.php:687
145
  msgid ""
146
  "The background-position property sets the starting position of a background "
147
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
@@ -156,11 +159,11 @@ msgstr ""
156
  "\"http://www.w3schools.com/cssref/pr_background-position.asp\" target="
157
  "\"_blank\"> Más información </ a>"
158
 
159
- #: er-custom-login.php:473
160
  msgid "Background Size:"
161
  msgstr "Tamaño e la Image de Fondo de la Pantalla de Ingreso:"
162
 
163
- #: er-custom-login.php:477
164
  msgid ""
165
  "The background-size property specifies the size of a background image. If "
166
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
@@ -174,23 +177,23 @@ msgstr ""
174
  "contienen. <a href=\"http://www.w3schools.com/cssref/css3_pr_background-size."
175
  "asp\" target=\"_blank\"> Más información </ a>"
176
 
177
- #: er-custom-login.php:488
178
  msgid "Login Screen Logo"
179
  msgstr "Logo de la Pantalla de Ingreso"
180
 
181
- #: er-custom-login.php:489
182
  msgid "(Change the default WordPress logo and powered by text)"
183
  msgstr "(Cambia el logo de Wordpress y el texto \"powered by Wordpress\")"
184
 
185
- #: er-custom-login.php:494
186
  msgid "Logo Url:"
187
  msgstr "URL del Logo:"
188
 
189
- #: er-custom-login.php:496
190
  msgid "Add Logo"
191
  msgstr "Añadir Logo"
192
 
193
- #: er-custom-login.php:498
194
  msgid ""
195
  "(URL path to image to replace default WordPress Logo. (You can upload your "
196
  "image with the WordPress media uploader)"
@@ -198,86 +201,86 @@ msgstr ""
198
  "Ingresa el URL para reemplazar el logo de Wordpress. (Tu puedes subir tu "
199
  "image usando el cargador de medios de Wordpress)"
200
 
201
- #: er-custom-login.php:503
202
  msgid "Logo Width:"
203
  msgstr "Ancho del Logo:"
204
 
205
- #: er-custom-login.php:507
206
  msgid "Your Logo width(Enter in pixels). Default: 274px"
207
  msgstr "Anchura del logo. El valor predeterminado es 274px"
208
 
209
- #: er-custom-login.php:511
210
  msgid "Logo Height:"
211
  msgstr "Alto del Logo:"
212
 
213
- #: er-custom-login.php:515
214
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
215
  msgstr "Altura del logo. El valor predeterminado es 63px"
216
 
217
- #: er-custom-login.php:520
218
  msgid "Powered by Text:"
219
  msgstr "Desarrollado por:"
220
 
221
- #: er-custom-login.php:524
222
  msgid "Show when mouse hover over custom Login logo"
223
  msgstr "Este valor se muestra cuando se pasa el mouse sobre el logo"
224
 
225
- #: er-custom-login.php:534
226
  msgid "Login Form Settings"
227
  msgstr "Formato de la Pantalla de Ingreso"
228
 
229
- #: er-custom-login.php:535
230
  msgid "(The following settings will change the Login Form style)"
231
  msgstr ""
232
  "(Estos ajustes cambiarán el estilo del formato de la pantalla de ingreso)"
233
 
234
- #: er-custom-login.php:540
235
  msgid "Login form width:"
236
  msgstr "Ancho del Formato:"
237
 
238
- #: er-custom-login.php:544
239
  msgid "Total Form width(Enter in pixels). Default: 350px"
240
  msgstr "Ancho total del formato en píxeles. Tamaño predeterminado: 350px"
241
 
242
- #: er-custom-login.php:548
243
  msgid "Login Form Border Radius:"
244
  msgstr "Radio del Borde del Formato:"
245
 
246
- #: er-custom-login.php:552
247
  msgid ""
248
  "Border Radius of Login Form. This is the option to make the corners rounded."
249
  "(Enter in pixels)"
250
  msgstr "Usa esta opción para hacer las esquinas del formato redondas."
251
 
252
- #: er-custom-login.php:556
253
  msgid "Login Border Style"
254
  msgstr "Estilo del Borde del Formato:"
255
 
256
- #: er-custom-login.php:600
257
  msgid "Select a Border Style option from dropdown."
258
  msgstr "Selecciona una opción del menú."
259
 
260
- #: er-custom-login.php:604
261
  msgid "Login Border Thickness:"
262
  msgstr "Espesor del Borde del Formato:"
263
 
264
- #: er-custom-login.php:608
265
  msgid "Thickness of Border (Enter value in pixels)"
266
  msgstr "Entra el valor en píxeles."
267
 
268
- #: er-custom-login.php:612
269
  msgid "Login Border Color:"
270
  msgstr "Color del Borde del Formato:"
271
 
272
- #: er-custom-login.php:621
273
  msgid "Login Form Background Color:"
274
  msgstr "Color de Fondo del Formato:"
275
 
276
- #: er-custom-login.php:625
277
  msgid "Background Opacity: "
278
  msgstr "Opacidad de fondo:"
279
 
280
- #: er-custom-login.php:627
281
  msgid ""
282
  "Click the box to select a color. Background Opacity will helps you to put "
283
  "transparent color over a background image. Possible values 0 to 1. Example: "
@@ -291,30 +294,30 @@ msgstr ""
291
  "defecto: 1 <a href=\"https://wordpress.org/plugins/erident-custom-login-and-"
292
  "dashboard/faq/\" target=\"_blank\">Más información</a>"
293
 
294
- #: er-custom-login.php:631
295
  msgid "Login Form Background Image:"
296
  msgstr "Imagen de Fondo del Formato:"
297
 
298
- #: er-custom-login.php:634
299
  msgid ""
300
  "Add your own pattern/image url to the form background. Leave blank if you "
301
  "don't need any images."
302
  msgstr ""
303
  "Agrega tu propio patrón/imagen. Deja en blanco si no necesitas imágenes."
304
 
305
- #: er-custom-login.php:638
306
  msgid "Login Form Background Repeat"
307
  msgstr "Repetición de la Imagen de Fondo del Formato:"
308
 
309
- #: er-custom-login.php:684
310
  msgid "Vertical Position: "
311
  msgstr "Posición Vertical:"
312
 
313
- #: er-custom-login.php:692
314
  msgid "Login Form Label Text Color"
315
  msgstr "Color del Texto de las Etiquetas del Formato:"
316
 
317
- #: er-custom-login.php:697
318
  msgid ""
319
  "Click the box to select a color. This will change the color of label "
320
  "Username/Password"
@@ -322,79 +325,79 @@ msgstr ""
322
  "Haz click en el cuadro para seleccionar un color. Esta opción cambiara el "
323
  "color de las etiquetas \"usuario\" y \"contraseña\""
324
 
325
- #: er-custom-login.php:701
326
  msgid "Login Form Label Text Size:"
327
  msgstr "Tamaño del Texto de las Etiquetas del Formato:"
328
 
329
- #: er-custom-login.php:704
330
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
331
  msgstr "Entra el valor en píxeles."
332
 
333
- #: er-custom-login.php:708
334
  msgid "Login Form Input Text Color"
335
  msgstr "Color del Texto de los Campos del Formato:"
336
 
337
- #: er-custom-login.php:713
338
  msgid ""
339
  "Click the box to select a color. This will change the color of text inside "
340
  "text box."
341
  msgstr "Haz click en el cuadro para seleccionar un color."
342
 
343
- #: er-custom-login.php:717
344
  msgid "Login Form Input Text Size:"
345
  msgstr "Tamaño del Texto de los Campos del Formato:"
346
 
347
- #: er-custom-login.php:720
348
  msgid "Font Size of text inside text box(Enter value in pixels)"
349
  msgstr "Entra el valor en píxeles."
350
 
351
- #: er-custom-login.php:724
352
  msgid "Login Form Link Color"
353
  msgstr "Color de los enlaces:"
354
 
355
- #: er-custom-login.php:734
356
  msgid "Enable link shadow?"
357
  msgstr "Deseas habilitar la sombra en los enlaces?"
358
 
359
- #: er-custom-login.php:742 er-custom-login.php:771 er-custom-login.php:822
360
  msgid "Yes"
361
  msgstr "sí"
362
 
363
- #: er-custom-login.php:746 er-custom-login.php:775 er-custom-login.php:826
364
  msgid "No"
365
  msgstr "no"
366
 
367
- #: er-custom-login.php:748 er-custom-login.php:777
368
  msgid "(Check an option)"
369
  msgstr "(Marca una opción)"
370
 
371
- #: er-custom-login.php:752
372
  msgid "Login Form Link Shadow Color"
373
  msgstr "Color de la Sombra del Formato:"
374
 
375
- #: er-custom-login.php:763
376
  msgid "Enable form shadow?"
377
  msgstr "Activar forma de sombra?"
378
 
379
- #: er-custom-login.php:781
380
  msgid "Login Form Shadow Color"
381
  msgstr "Color de la Sombra del Formato:"
382
 
383
- #: er-custom-login.php:793
384
  msgid "Login Button Color"
385
  msgstr "Color del Botón del Formato:"
386
 
387
- #: er-custom-login.php:809
388
  msgid "Plugin Un-install Settings"
389
  msgstr "Opción para Desinstalar el Plugin"
390
 
391
- #: er-custom-login.php:814
392
  msgid "Delete custom settings upon plugin deactivation?"
393
  msgstr ""
394
  "Deseas borrar las configuraciones que has customizado una vez el plugin sea "
395
  "desactivado?"
396
 
397
- #: er-custom-login.php:828
398
  msgid ""
399
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
400
  "plugin deactivation)"
@@ -402,15 +405,15 @@ msgstr ""
402
  "(Si seleccionas \"sí\" todas los cambios que hayas hecho a la configuración "
403
  "serán borrados de la base de datos una vez el plugin sea desactivado)"
404
 
405
- #: er-custom-login.php:836
406
  msgid "Save Changes"
407
  msgstr "Guardar cambios"
408
 
409
- #: er-custom-login.php:843
410
  msgid "Export Settings"
411
  msgstr "Exportar Configuración"
412
 
413
- #: er-custom-login.php:845
414
  msgid ""
415
  "Export the plugin settings for this site as a .json file. This allows you to "
416
  "easily import the configuration into another site."
@@ -418,15 +421,15 @@ msgstr ""
418
  "Exportar la configuración del plugin de este sitio web en formato .json. "
419
  "Esto permite importar la configuración a otro sitio."
420
 
421
- #: er-custom-login.php:850
422
  msgid "Export"
423
  msgstr "exportación"
424
 
425
- #: er-custom-login.php:858
426
  msgid "Import Settings"
427
  msgstr "Importar Configuración"
428
 
429
- #: er-custom-login.php:860
430
  msgid ""
431
  "Import the plugin settings from a .json file. This file can be obtained by "
432
  "exporting the settings on another site using the form above."
@@ -435,39 +438,39 @@ msgstr ""
435
  "puedeobtainer al exportar la configuración de otro sitio web usando el "
436
  "formato de arriba."
437
 
438
- #: er-custom-login.php:868
439
  msgid "Import"
440
  msgstr "importación"
441
 
442
- #: er-custom-login.php:876
443
  msgid "Quick Links"
444
  msgstr "Enlaces Rápidos"
445
 
446
- #: er-custom-login.php:878
447
  msgid "Open Your WP Login Page in a New Tab"
448
  msgstr "Abrir una WP Login Página en una nueva pestaña"
449
 
450
- #: er-custom-login.php:879
451
  msgid "Plugin Documentation"
452
  msgstr "Documentación del Plugin"
453
 
454
- #: er-custom-login.php:880
455
  msgid "Plugin Support Page"
456
  msgstr "Página de Soporte Plugin"
457
 
458
- #: er-custom-login.php:881
459
  msgid "Feature Request/Suggestions?"
460
  msgstr "Sugerencias?"
461
 
462
- #: er-custom-login.php:882
463
  msgid "Got some Love? Give us a 5 star rating!"
464
  msgstr "¿Tienes algo de amor? Danos un 5 estrellas!"
465
 
466
- #: er-custom-login.php:886
467
  msgid "Hire Me"
468
  msgstr "Contratamé"
469
 
470
- #: er-custom-login.php:887
471
  msgid ""
472
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
473
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
@@ -480,11 +483,11 @@ msgstr ""
480
  "portafolio en linea: <a href=\"http://www.libin.in\" target=\"_blank\">www."
481
  "libin.in</a>"
482
 
483
- #: er-custom-login.php:889
484
  msgid "Translation Credits"
485
  msgstr "Traducción"
486
 
487
- #: er-custom-login.php:891
488
  msgid ""
489
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
490
  "\">Adriana De La Cuadra</a>"
@@ -492,7 +495,7 @@ msgstr ""
492
  "Traducida al Español por <a href=\"http://www.linkedin.com/in/adrifolio\" "
493
  "target=\"_blank\">Adriana De La Cuadra</a>"
494
 
495
- #: er-custom-login.php:892
496
  msgid ""
497
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
498
  "\" target=\"_blank\">Guillaume Vaslin</a>"
@@ -500,7 +503,7 @@ msgstr ""
500
  "Traducción al Francés por<a href=\"https://www.linkedin.com/pub/vaslin-"
501
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
502
 
503
- #: er-custom-login.php:893
504
  msgid ""
505
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
506
  "Kaulfuss</a>"
@@ -508,7 +511,7 @@ msgstr ""
508
  "Alemán por <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
509
  "\">Peter Kaulfuss</a>"
510
 
511
- #: er-custom-login.php:894
512
  msgid ""
513
  "Turkish by <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
514
  "target=\"_blank\">Muhammet Küçük</a>"
@@ -516,7 +519,23 @@ msgstr ""
516
  "Turkish por <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
517
  "target=\"_blank\">Muhammet Küçük</a>"
518
 
519
- #: er-custom-login.php:896
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
520
  msgid "Do you wants to translate this plugin to your language? Email me!"
521
  msgstr ""
522
  "¿Usted quiere traducir este plugin en tu idioma? Envíeme un correo "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
+ "POT-Creation-Date: 2015-06-10 18:20+0530\n"
5
+ "PO-Revision-Date: 2015-06-10 18:20+0530\n"
6
  "Last-Translator: Libin <libin@libin.in>\n"
7
  "Language-Team: \n"
8
+ "Language: es\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
20
  msgid "Settings"
21
  msgstr "Configuración"
22
 
23
+ #: er-custom-login.php:235
24
  msgid "Please upload a valid .json file"
25
  msgstr "Por favor adjunte un archivo .json valido"
26
 
27
+ #: er-custom-login.php:241
28
  msgid "Please upload a file to import"
29
  msgstr "Por favor adjunte un archivo a importar."
30
 
31
+ #: er-custom-login.php:248
32
  msgid "New settings imported successfully!"
33
  msgstr "La nueva configuración fue importada exitosamente."
34
 
35
+ #: er-custom-login.php:337
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Custom Login y Dashboard"
38
 
39
+ #: er-custom-login.php:358
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "ERIDENT, Ingreso Customizado - Panel de Control"
42
 
43
+ #: er-custom-login.php:359
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
48
  "Los siguientes son las configuraciones predeterminadas de este plugin. "
49
  "Puedes ajustarlas a tus necesidades."
50
 
51
+ #: er-custom-login.php:359
52
  msgid "Click on the header of each block to open it."
53
  msgstr "Para acceder a más opciones presiona los encabezados de cada sección."
54
 
55
+ #: er-custom-login.php:367
56
  msgid "Settings saved."
57
  msgstr "Configuración Salvada"
58
 
59
+ #: er-custom-login.php:375
60
  msgid "Dashboard Settings"
61
  msgstr "Configuración del panel"
62
 
63
+ #: er-custom-login.php:376
64
  msgid ""
65
  "(These settings will be reflected when a user/admin logins to the WordPress "
66
  "Dashboard)"
68
  "(Estos ajustes se reflejarán cuando un usuario / administrador inicia su "
69
  "sesión en el panel de control de WordPress)"
70
 
71
+ #: er-custom-login.php:381
72
  msgid "Enter the text for dashboard left side footer:"
73
  msgstr "Texto para el panel del pie de página izquierdo:"
74
 
75
+ #: er-custom-login.php:386
76
  msgid ""
77
  "This will replace the default \"Thank you for creating with WordPress\" on "
78
  "the bottom left side of dashboard"
80
  "Esto reemplazará el valor por defecto \"Gracias por crear con WordPress \" "
81
  "en la parte inferior izquierda del cuadro de mandos"
82
 
83
+ #: er-custom-login.php:390
84
  msgid "Enter the text for dashboard right side footer:"
85
  msgstr "Texto para el panel del pie de página derecho:"
86
 
87
+ #: er-custom-login.php:394
88
  msgid ""
89
  "This will replace the default \"WordPress Version\" on the bottom right side "
90
+ "of dashboard. Keep it as empty field for disabling this feature. Refresh the "
91
+ "page again to see the result after saving."
92
  msgstr ""
93
  "Esto reemplazará el valor por defecto \"WordPress Version \" en la parte "
94
+ "inferior derecha del cuadro de mandos. Mantenerlo como campo vacío para "
95
+ "desactivar esta función. Actualizar la página de nuevo para ver el resultado "
96
+ "después de guardar."
97
 
98
+ #: er-custom-login.php:403
99
  msgid "Login Screen Background"
100
  msgstr "Fondo de la Pantalla de Ingreso"
101
 
102
+ #: er-custom-login.php:404
103
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
104
  msgstr "(Estos ajustes se reflejarán en la página \"wp-login.php\")"
105
 
106
+ #: er-custom-login.php:409
107
  msgid "Login Screen Background Color:"
108
  msgstr "Color del Fondo de la Pantalla de Ingreso:"
109
 
110
+ #: er-custom-login.php:414 er-custom-login.php:624 er-custom-login.php:736
111
+ #: er-custom-login.php:764 er-custom-login.php:793 er-custom-login.php:805
112
  msgid "Click the box to select a color."
113
  msgstr "Haz click en el cuadro para seleccionar un color."
114
 
115
+ #: er-custom-login.php:419
116
  msgid "Login Screen Background Image:"
117
  msgstr "Imagen de Fondo de la Pantalla de Ingreso: "
118
 
119
+ #: er-custom-login.php:421 er-custom-login.php:639
120
  msgid "Add Background Image"
121
  msgstr "Añadir imagen de fondo"
122
 
123
+ #: er-custom-login.php:423
124
  msgid ""
125
  "Add your own pattern/image url for the screen background. Leave blank if you "
126
  "don't need any images."
128
  "Añade el url de tu patrón/imagen para el fondo de la pantalla. Deja en "
129
  "blanco si no necesitas ninguna imagen."
130
 
131
+ #: er-custom-login.php:427
132
  msgid "Login Screen Background Repeat"
133
  msgstr "Repetición de la Image de Fondo de la Pantalla de Ingreso:"
134
 
135
+ #: er-custom-login.php:465 er-custom-login.php:683
136
  msgid "Select an image repeat option from dropdown."
137
  msgstr "Selecciona una opción de repetición."
138
 
139
+ #: er-custom-login.php:469 er-custom-login.php:688
140
  msgid "Background Position:"
141
  msgstr "Posición de la Image de Fondo de la Pantalla de Ingreso: "
142
 
143
+ #: er-custom-login.php:470 er-custom-login.php:689
144
  msgid "Horizontal Position: "
145
  msgstr "Posición horizontal:"
146
 
147
+ #: er-custom-login.php:475 er-custom-login.php:694
148
  msgid ""
149
  "The background-position property sets the starting position of a background "
150
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
159
  "\"http://www.w3schools.com/cssref/pr_background-position.asp\" target="
160
  "\"_blank\"> Más información </ a>"
161
 
162
+ #: er-custom-login.php:480
163
  msgid "Background Size:"
164
  msgstr "Tamaño e la Image de Fondo de la Pantalla de Ingreso:"
165
 
166
+ #: er-custom-login.php:484
167
  msgid ""
168
  "The background-size property specifies the size of a background image. If "
169
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
177
  "contienen. <a href=\"http://www.w3schools.com/cssref/css3_pr_background-size."
178
  "asp\" target=\"_blank\"> Más información </ a>"
179
 
180
+ #: er-custom-login.php:495
181
  msgid "Login Screen Logo"
182
  msgstr "Logo de la Pantalla de Ingreso"
183
 
184
+ #: er-custom-login.php:496
185
  msgid "(Change the default WordPress logo and powered by text)"
186
  msgstr "(Cambia el logo de Wordpress y el texto \"powered by Wordpress\")"
187
 
188
+ #: er-custom-login.php:501
189
  msgid "Logo Url:"
190
  msgstr "URL del Logo:"
191
 
192
+ #: er-custom-login.php:503
193
  msgid "Add Logo"
194
  msgstr "Añadir Logo"
195
 
196
+ #: er-custom-login.php:505
197
  msgid ""
198
  "(URL path to image to replace default WordPress Logo. (You can upload your "
199
  "image with the WordPress media uploader)"
201
  "Ingresa el URL para reemplazar el logo de Wordpress. (Tu puedes subir tu "
202
  "image usando el cargador de medios de Wordpress)"
203
 
204
+ #: er-custom-login.php:510
205
  msgid "Logo Width:"
206
  msgstr "Ancho del Logo:"
207
 
208
+ #: er-custom-login.php:514
209
  msgid "Your Logo width(Enter in pixels). Default: 274px"
210
  msgstr "Anchura del logo. El valor predeterminado es 274px"
211
 
212
+ #: er-custom-login.php:518
213
  msgid "Logo Height:"
214
  msgstr "Alto del Logo:"
215
 
216
+ #: er-custom-login.php:522
217
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
218
  msgstr "Altura del logo. El valor predeterminado es 63px"
219
 
220
+ #: er-custom-login.php:527
221
  msgid "Powered by Text:"
222
  msgstr "Desarrollado por:"
223
 
224
+ #: er-custom-login.php:531
225
  msgid "Show when mouse hover over custom Login logo"
226
  msgstr "Este valor se muestra cuando se pasa el mouse sobre el logo"
227
 
228
+ #: er-custom-login.php:541
229
  msgid "Login Form Settings"
230
  msgstr "Formato de la Pantalla de Ingreso"
231
 
232
+ #: er-custom-login.php:542
233
  msgid "(The following settings will change the Login Form style)"
234
  msgstr ""
235
  "(Estos ajustes cambiarán el estilo del formato de la pantalla de ingreso)"
236
 
237
+ #: er-custom-login.php:547
238
  msgid "Login form width:"
239
  msgstr "Ancho del Formato:"
240
 
241
+ #: er-custom-login.php:551
242
  msgid "Total Form width(Enter in pixels). Default: 350px"
243
  msgstr "Ancho total del formato en píxeles. Tamaño predeterminado: 350px"
244
 
245
+ #: er-custom-login.php:555
246
  msgid "Login Form Border Radius:"
247
  msgstr "Radio del Borde del Formato:"
248
 
249
+ #: er-custom-login.php:559
250
  msgid ""
251
  "Border Radius of Login Form. This is the option to make the corners rounded."
252
  "(Enter in pixels)"
253
  msgstr "Usa esta opción para hacer las esquinas del formato redondas."
254
 
255
+ #: er-custom-login.php:563
256
  msgid "Login Border Style"
257
  msgstr "Estilo del Borde del Formato:"
258
 
259
+ #: er-custom-login.php:607
260
  msgid "Select a Border Style option from dropdown."
261
  msgstr "Selecciona una opción del menú."
262
 
263
+ #: er-custom-login.php:611
264
  msgid "Login Border Thickness:"
265
  msgstr "Espesor del Borde del Formato:"
266
 
267
+ #: er-custom-login.php:615
268
  msgid "Thickness of Border (Enter value in pixels)"
269
  msgstr "Entra el valor en píxeles."
270
 
271
+ #: er-custom-login.php:619
272
  msgid "Login Border Color:"
273
  msgstr "Color del Borde del Formato:"
274
 
275
+ #: er-custom-login.php:628
276
  msgid "Login Form Background Color:"
277
  msgstr "Color de Fondo del Formato:"
278
 
279
+ #: er-custom-login.php:632
280
  msgid "Background Opacity: "
281
  msgstr "Opacidad de fondo:"
282
 
283
+ #: er-custom-login.php:634
284
  msgid ""
285
  "Click the box to select a color. Background Opacity will helps you to put "
286
  "transparent color over a background image. Possible values 0 to 1. Example: "
294
  "defecto: 1 <a href=\"https://wordpress.org/plugins/erident-custom-login-and-"
295
  "dashboard/faq/\" target=\"_blank\">Más información</a>"
296
 
297
+ #: er-custom-login.php:638
298
  msgid "Login Form Background Image:"
299
  msgstr "Imagen de Fondo del Formato:"
300
 
301
+ #: er-custom-login.php:641
302
  msgid ""
303
  "Add your own pattern/image url to the form background. Leave blank if you "
304
  "don't need any images."
305
  msgstr ""
306
  "Agrega tu propio patrón/imagen. Deja en blanco si no necesitas imágenes."
307
 
308
+ #: er-custom-login.php:645
309
  msgid "Login Form Background Repeat"
310
  msgstr "Repetición de la Imagen de Fondo del Formato:"
311
 
312
+ #: er-custom-login.php:691
313
  msgid "Vertical Position: "
314
  msgstr "Posición Vertical:"
315
 
316
+ #: er-custom-login.php:699
317
  msgid "Login Form Label Text Color"
318
  msgstr "Color del Texto de las Etiquetas del Formato:"
319
 
320
+ #: er-custom-login.php:704
321
  msgid ""
322
  "Click the box to select a color. This will change the color of label "
323
  "Username/Password"
325
  "Haz click en el cuadro para seleccionar un color. Esta opción cambiara el "
326
  "color de las etiquetas \"usuario\" y \"contraseña\""
327
 
328
+ #: er-custom-login.php:708
329
  msgid "Login Form Label Text Size:"
330
  msgstr "Tamaño del Texto de las Etiquetas del Formato:"
331
 
332
+ #: er-custom-login.php:711
333
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
334
  msgstr "Entra el valor en píxeles."
335
 
336
+ #: er-custom-login.php:715
337
  msgid "Login Form Input Text Color"
338
  msgstr "Color del Texto de los Campos del Formato:"
339
 
340
+ #: er-custom-login.php:720
341
  msgid ""
342
  "Click the box to select a color. This will change the color of text inside "
343
  "text box."
344
  msgstr "Haz click en el cuadro para seleccionar un color."
345
 
346
+ #: er-custom-login.php:724
347
  msgid "Login Form Input Text Size:"
348
  msgstr "Tamaño del Texto de los Campos del Formato:"
349
 
350
+ #: er-custom-login.php:727
351
  msgid "Font Size of text inside text box(Enter value in pixels)"
352
  msgstr "Entra el valor en píxeles."
353
 
354
+ #: er-custom-login.php:731
355
  msgid "Login Form Link Color"
356
  msgstr "Color de los enlaces:"
357
 
358
+ #: er-custom-login.php:741
359
  msgid "Enable link shadow?"
360
  msgstr "Deseas habilitar la sombra en los enlaces?"
361
 
362
+ #: er-custom-login.php:749 er-custom-login.php:778 er-custom-login.php:829
363
  msgid "Yes"
364
  msgstr "sí"
365
 
366
+ #: er-custom-login.php:753 er-custom-login.php:782 er-custom-login.php:833
367
  msgid "No"
368
  msgstr "no"
369
 
370
+ #: er-custom-login.php:755 er-custom-login.php:784
371
  msgid "(Check an option)"
372
  msgstr "(Marca una opción)"
373
 
374
+ #: er-custom-login.php:759
375
  msgid "Login Form Link Shadow Color"
376
  msgstr "Color de la Sombra del Formato:"
377
 
378
+ #: er-custom-login.php:770
379
  msgid "Enable form shadow?"
380
  msgstr "Activar forma de sombra?"
381
 
382
+ #: er-custom-login.php:788
383
  msgid "Login Form Shadow Color"
384
  msgstr "Color de la Sombra del Formato:"
385
 
386
+ #: er-custom-login.php:800
387
  msgid "Login Button Color"
388
  msgstr "Color del Botón del Formato:"
389
 
390
+ #: er-custom-login.php:816
391
  msgid "Plugin Un-install Settings"
392
  msgstr "Opción para Desinstalar el Plugin"
393
 
394
+ #: er-custom-login.php:821
395
  msgid "Delete custom settings upon plugin deactivation?"
396
  msgstr ""
397
  "Deseas borrar las configuraciones que has customizado una vez el plugin sea "
398
  "desactivado?"
399
 
400
+ #: er-custom-login.php:835
401
  msgid ""
402
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
403
  "plugin deactivation)"
405
  "(Si seleccionas \"sí\" todas los cambios que hayas hecho a la configuración "
406
  "serán borrados de la base de datos una vez el plugin sea desactivado)"
407
 
408
+ #: er-custom-login.php:843
409
  msgid "Save Changes"
410
  msgstr "Guardar cambios"
411
 
412
+ #: er-custom-login.php:850
413
  msgid "Export Settings"
414
  msgstr "Exportar Configuración"
415
 
416
+ #: er-custom-login.php:852
417
  msgid ""
418
  "Export the plugin settings for this site as a .json file. This allows you to "
419
  "easily import the configuration into another site."
421
  "Exportar la configuración del plugin de este sitio web en formato .json. "
422
  "Esto permite importar la configuración a otro sitio."
423
 
424
+ #: er-custom-login.php:857
425
  msgid "Export"
426
  msgstr "exportación"
427
 
428
+ #: er-custom-login.php:865
429
  msgid "Import Settings"
430
  msgstr "Importar Configuración"
431
 
432
+ #: er-custom-login.php:867
433
  msgid ""
434
  "Import the plugin settings from a .json file. This file can be obtained by "
435
  "exporting the settings on another site using the form above."
438
  "puedeobtainer al exportar la configuración de otro sitio web usando el "
439
  "formato de arriba."
440
 
441
+ #: er-custom-login.php:875
442
  msgid "Import"
443
  msgstr "importación"
444
 
445
+ #: er-custom-login.php:883
446
  msgid "Quick Links"
447
  msgstr "Enlaces Rápidos"
448
 
449
+ #: er-custom-login.php:885
450
  msgid "Open Your WP Login Page in a New Tab"
451
  msgstr "Abrir una WP Login Página en una nueva pestaña"
452
 
453
+ #: er-custom-login.php:886
454
  msgid "Plugin Documentation"
455
  msgstr "Documentación del Plugin"
456
 
457
+ #: er-custom-login.php:887
458
  msgid "Plugin Support Page"
459
  msgstr "Página de Soporte Plugin"
460
 
461
+ #: er-custom-login.php:888
462
  msgid "Feature Request/Suggestions?"
463
  msgstr "Sugerencias?"
464
 
465
+ #: er-custom-login.php:889
466
  msgid "Got some Love? Give us a 5 star rating!"
467
  msgstr "¿Tienes algo de amor? Danos un 5 estrellas!"
468
 
469
+ #: er-custom-login.php:893
470
  msgid "Hire Me"
471
  msgstr "Contratamé"
472
 
473
+ #: er-custom-login.php:894
474
  msgid ""
475
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
476
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
483
  "portafolio en linea: <a href=\"http://www.libin.in\" target=\"_blank\">www."
484
  "libin.in</a>"
485
 
486
+ #: er-custom-login.php:896
487
  msgid "Translation Credits"
488
  msgstr "Traducción"
489
 
490
+ #: er-custom-login.php:898
491
  msgid ""
492
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
493
  "\">Adriana De La Cuadra</a>"
495
  "Traducida al Español por <a href=\"http://www.linkedin.com/in/adrifolio\" "
496
  "target=\"_blank\">Adriana De La Cuadra</a>"
497
 
498
+ #: er-custom-login.php:899
499
  msgid ""
500
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
501
  "\" target=\"_blank\">Guillaume Vaslin</a>"
503
  "Traducción al Francés por<a href=\"https://www.linkedin.com/pub/vaslin-"
504
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
505
 
506
+ #: er-custom-login.php:900
507
  msgid ""
508
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
509
  "Kaulfuss</a>"
511
  "Alemán por <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
512
  "\">Peter Kaulfuss</a>"
513
 
514
+ #: er-custom-login.php:901
515
  msgid ""
516
  "Turkish by <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
517
  "target=\"_blank\">Muhammet Küçük</a>"
519
  "Turkish por <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
520
  "target=\"_blank\">Muhammet Küçük</a>"
521
 
522
+ #: er-custom-login.php:902
523
+ msgid ""
524
+ "Persian by <a href=\"https://about.me/reza.heydari\" target=\"_blank\">Reza "
525
+ "Heydari</a>"
526
+ msgstr ""
527
+ "Persian por <a href=\"https://about.me/reza.heydari\" target=\"_blank\">Reza "
528
+ "Heydari</a>"
529
+
530
+ #: er-custom-login.php:903
531
+ msgid ""
532
+ "Portuguese-Brazil by <a href=\"https://www.facebook.com/home.php?"
533
+ "m2w&refid=8\" target=\"_blank\">Reza Heydari</a>"
534
+ msgstr ""
535
+ "Portuguese-Brazil por <a href=\"https://www.facebook.com/home.php?"
536
+ "m2w&refid=8\" target=\"_blank\">Reza Heydari</a>"
537
+
538
+ #: er-custom-login.php:905
539
  msgid "Do you wants to translate this plugin to your language? Email me!"
540
  msgstr ""
541
  "¿Usted quiere traducir este plugin en tu idioma? Envíeme un correo "
languages/erident-custom-login-and-dashboard-fa_IR.mo ADDED
Binary file
languages/erident-custom-login-and-dashboard-fa_IR.po ADDED
@@ -0,0 +1,1007 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: erident-custom-login-and-dashboard\n"
4
+ "POT-Creation-Date: 2015-06-10 18:20+0530\n"
5
+ "PO-Revision-Date: 2015-06-10 18:21+0530\n"
6
+ "Last-Translator: Reza Heydari <webdev.irh@gmail.com>\n"
7
+ "Language-Team: webdev.irh@gmail.com <webdev.irh@gmail.com>\n"
8
+ "Language: fa\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.11\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../tags/1.0/er-custom-login.php:46 ../tags/1.1/er-custom-login.php:46
19
+ #: ../tags/1.2/er-custom-login.php:44 ../tags/1.3/er-custom-login.php:44
20
+ #: ../tags/1.5.1/er-custom-login.php:44 ../tags/1.5/er-custom-login.php:44
21
+ #: ../tags/2.0.0/er-custom-login.php:44 ../tags/2.0.1/er-custom-login.php:44
22
+ #: ../tags/2.1.0/er-custom-login.php:44 ../tags/2.1.1/er-custom-login.php:44
23
+ #: ../tags/2.2.0/er-custom-login.php:40 ../tags/2.2.1/er-custom-login.php:40
24
+ #: ../tags/2.3.0/er-custom-login.php:44 ../tags/2.3.1/er-custom-login.php:44
25
+ #: ../tags/3.0/er-custom-login.php:44 ../tags/3.1/er-custom-login.php:44
26
+ #: ../tags/3.2/er-custom-login.php:44 ../tags/3.3.1/er-custom-login.php:44
27
+ #: ../tags/3.3/er-custom-login.php:44 ../tags/3.4.1/er-custom-login.php:44
28
+ #: ../tags/3.4/er-custom-login.php:44 ../trunk/er-custom-login.php:44
29
+ msgid "Settings"
30
+ msgstr "تنظیمات"
31
+
32
+ #: ../tags/1.0/er-custom-login.php:548 ../tags/1.1/er-custom-login.php:612
33
+ #: ../tags/1.2/er-custom-login.php:630 ../tags/1.3/er-custom-login.php:678
34
+ #: ../tags/1.5.1/er-custom-login.php:715 ../tags/1.5/er-custom-login.php:715
35
+ #: ../tags/2.0.0/er-custom-login.php:747 ../tags/2.0.1/er-custom-login.php:747
36
+ #: ../tags/2.1.0/er-custom-login.php:760 ../tags/2.1.1/er-custom-login.php:760
37
+ #: ../tags/2.2.0/er-custom-login.php:751 ../tags/2.2.1/er-custom-login.php:755
38
+ #: ../tags/2.3.0/er-custom-login.php:800 ../tags/2.3.1/er-custom-login.php:800
39
+ #: ../tags/3.0/er-custom-login.php:815 ../tags/3.1/er-custom-login.php:819
40
+ #: ../tags/3.2/er-custom-login.php:819 ../tags/3.3.1/er-custom-login.php:830
41
+ #: ../tags/3.3/er-custom-login.php:829 ../tags/3.4.1/er-custom-login.php:837
42
+ #: ../tags/3.4/er-custom-login.php:836 ../trunk/er-custom-login.php:843
43
+ msgid "Save Changes"
44
+ msgstr "ذخیره تغییرات"
45
+
46
+ #: ../tags/2.3.0/er-custom-login.php:298 ../tags/2.3.1/er-custom-login.php:298
47
+ #: ../tags/3.0/er-custom-login.php:312 ../tags/3.1/er-custom-login.php:316
48
+ #: ../tags/3.2/er-custom-login.php:316 ../tags/3.3.1/er-custom-login.php:326
49
+ #: ../tags/3.3/er-custom-login.php:325 ../tags/3.4.1/er-custom-login.php:333
50
+ #: ../tags/3.4/er-custom-login.php:332 ../trunk/er-custom-login.php:337
51
+ msgid "Custom Login and Dashboard"
52
+ msgstr "پیشخوان و صفحه ورود سفارشی"
53
+
54
+ #: ../tags/2.3.0/er-custom-login.php:319 ../tags/2.3.1/er-custom-login.php:319
55
+ #: ../tags/3.0/er-custom-login.php:333 ../tags/3.1/er-custom-login.php:337
56
+ #: ../tags/3.2/er-custom-login.php:337 ../tags/3.3.1/er-custom-login.php:347
57
+ #: ../tags/3.3/er-custom-login.php:346 ../tags/3.4.1/er-custom-login.php:354
58
+ #: ../tags/3.4/er-custom-login.php:353 ../trunk/er-custom-login.php:358
59
+ msgid "Erident Custom Login and Dashboard Settings"
60
+ msgstr "تنظیمات صفحه ورود و پیشخوان سفارشی اریدنت"
61
+
62
+ #: ../tags/2.3.0/er-custom-login.php:320 ../tags/2.3.1/er-custom-login.php:320
63
+ #: ../tags/3.0/er-custom-login.php:334 ../tags/3.1/er-custom-login.php:338
64
+ #: ../tags/3.2/er-custom-login.php:338 ../tags/3.3.1/er-custom-login.php:348
65
+ #: ../tags/3.3/er-custom-login.php:347 ../tags/3.4.1/er-custom-login.php:355
66
+ #: ../tags/3.4/er-custom-login.php:354 ../trunk/er-custom-login.php:359
67
+ msgid ""
68
+ "Plugin Loads default values for all below entries. Please change the values "
69
+ "to yours."
70
+ msgstr ""
71
+ "افزونه مقادیر پیش فرض را برای همه ورودی های زیر بارگزاری کرده است. لطفاً "
72
+ "مقادیر را مطابق میلتان سفارشی کرده و تغییر دهید."
73
+
74
+ #: ../tags/2.3.0/er-custom-login.php:320 ../tags/2.3.1/er-custom-login.php:320
75
+ #: ../tags/3.0/er-custom-login.php:334 ../tags/3.1/er-custom-login.php:338
76
+ #: ../tags/3.2/er-custom-login.php:338 ../tags/3.3.1/er-custom-login.php:348
77
+ #: ../tags/3.3/er-custom-login.php:347 ../tags/3.4.1/er-custom-login.php:355
78
+ #: ../tags/3.4/er-custom-login.php:354 ../trunk/er-custom-login.php:359
79
+ msgid "Click on the header of each block to open it."
80
+ msgstr "برای بازشدن هر بخش بر روی نوار عنوان آن کلیک کنید."
81
+
82
+ #: ../tags/2.3.0/er-custom-login.php:326 ../tags/2.3.1/er-custom-login.php:326
83
+ #: ../tags/3.0/er-custom-login.php:348 ../tags/3.1/er-custom-login.php:352
84
+ #: ../tags/3.2/er-custom-login.php:352 ../tags/3.3.1/er-custom-login.php:362
85
+ #: ../tags/3.3/er-custom-login.php:361 ../tags/3.4.1/er-custom-login.php:369
86
+ #: ../tags/3.4/er-custom-login.php:368 ../trunk/er-custom-login.php:375
87
+ msgid "Dashboard Settings"
88
+ msgstr "تنظیمات پیشخوان"
89
+
90
+ #: ../tags/2.3.0/er-custom-login.php:327 ../tags/2.3.1/er-custom-login.php:327
91
+ #: ../tags/3.0/er-custom-login.php:349 ../tags/3.1/er-custom-login.php:353
92
+ #: ../tags/3.2/er-custom-login.php:353 ../tags/3.3.1/er-custom-login.php:363
93
+ #: ../tags/3.3/er-custom-login.php:362 ../tags/3.4.1/er-custom-login.php:370
94
+ #: ../tags/3.4/er-custom-login.php:369 ../trunk/er-custom-login.php:376
95
+ msgid ""
96
+ "(These settings will be reflected when a user/admin logins to the WordPress "
97
+ "Dashboard)"
98
+ msgstr "(این تنظیمات بر روی پیشخوان وردپرس اعمال می شود)"
99
+
100
+ #: ../tags/2.3.0/er-custom-login.php:332 ../tags/2.3.1/er-custom-login.php:332
101
+ #: ../tags/3.0/er-custom-login.php:354 ../tags/3.1/er-custom-login.php:358
102
+ #: ../tags/3.2/er-custom-login.php:358 ../tags/3.3.1/er-custom-login.php:368
103
+ #: ../tags/3.3/er-custom-login.php:367 ../tags/3.4.1/er-custom-login.php:375
104
+ #: ../tags/3.4/er-custom-login.php:374 ../trunk/er-custom-login.php:381
105
+ msgid "Enter the text for dashboard left side footer:"
106
+ msgstr "متن مربوط به پانوشت سمت راست پیشخوان را وارد کنید."
107
+
108
+ #: ../tags/2.3.0/er-custom-login.php:337 ../tags/2.3.1/er-custom-login.php:337
109
+ #: ../tags/3.0/er-custom-login.php:359 ../tags/3.1/er-custom-login.php:363
110
+ #: ../tags/3.2/er-custom-login.php:363 ../tags/3.3.1/er-custom-login.php:373
111
+ #: ../tags/3.3/er-custom-login.php:372 ../tags/3.4.1/er-custom-login.php:380
112
+ #: ../tags/3.4/er-custom-login.php:379 ../trunk/er-custom-login.php:386
113
+ msgid ""
114
+ "This will replace the default \"Thank you for creating with WordPress\" on "
115
+ "the bottom left side of dashboard"
116
+ msgstr ""
117
+ "این متن جایگزین متن تشکر پیش فرض وردپرس در سمت راست پانوشت پیشخوان خواهد شد."
118
+
119
+ #: ../tags/2.3.0/er-custom-login.php:341 ../tags/2.3.1/er-custom-login.php:341
120
+ #: ../tags/3.0/er-custom-login.php:363 ../tags/3.1/er-custom-login.php:367
121
+ #: ../tags/3.2/er-custom-login.php:367 ../tags/3.3.1/er-custom-login.php:377
122
+ #: ../tags/3.3/er-custom-login.php:376 ../tags/3.4.1/er-custom-login.php:384
123
+ #: ../tags/3.4/er-custom-login.php:383 ../trunk/er-custom-login.php:390
124
+ msgid "Enter the text for dashboard right side footer:"
125
+ msgstr "متن مربوط به پانوشت سمت چپ پیشخوان را وارد کنید."
126
+
127
+ #: ../tags/2.3.0/er-custom-login.php:345 ../tags/2.3.1/er-custom-login.php:345
128
+ #: ../tags/3.0/er-custom-login.php:367 ../tags/3.1/er-custom-login.php:371
129
+ #: ../tags/3.2/er-custom-login.php:371 ../tags/3.3.1/er-custom-login.php:381
130
+ #: ../tags/3.3/er-custom-login.php:380 ../tags/3.4.1/er-custom-login.php:388
131
+ #: ../tags/3.4/er-custom-login.php:387
132
+ msgid ""
133
+ "This will replace the default \"WordPress Version\" on the bottom right side "
134
+ "of dashboard"
135
+ msgstr "این متن جایگزین متن نسخه وردپرس در سمت چپ پانوشت پیشخوان خواهد شد."
136
+
137
+ #: ../tags/2.3.0/er-custom-login.php:354 ../tags/2.3.1/er-custom-login.php:354
138
+ #: ../tags/3.0/er-custom-login.php:376 ../tags/3.1/er-custom-login.php:380
139
+ #: ../tags/3.2/er-custom-login.php:380 ../tags/3.3.1/er-custom-login.php:390
140
+ #: ../tags/3.3/er-custom-login.php:389 ../tags/3.4.1/er-custom-login.php:397
141
+ #: ../tags/3.4/er-custom-login.php:396 ../trunk/er-custom-login.php:403
142
+ msgid "Login Screen Background"
143
+ msgstr "پس زمینه صفحه ورود"
144
+
145
+ #: ../tags/2.3.0/er-custom-login.php:355 ../tags/2.3.1/er-custom-login.php:355
146
+ #: ../tags/3.0/er-custom-login.php:377 ../tags/3.1/er-custom-login.php:381
147
+ #: ../tags/3.2/er-custom-login.php:381 ../tags/3.3.1/er-custom-login.php:391
148
+ #: ../tags/3.3/er-custom-login.php:390 ../tags/3.4.1/er-custom-login.php:398
149
+ #: ../tags/3.4/er-custom-login.php:397 ../trunk/er-custom-login.php:404
150
+ msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
151
+ msgstr "(تنظیمات زیر بر روی فایل \"wp-login.php\" تاثیر می گذارند.)"
152
+
153
+ #: ../tags/2.3.0/er-custom-login.php:360 ../tags/2.3.1/er-custom-login.php:360
154
+ #: ../tags/3.0/er-custom-login.php:382 ../tags/3.1/er-custom-login.php:386
155
+ #: ../tags/3.2/er-custom-login.php:386 ../tags/3.3.1/er-custom-login.php:396
156
+ #: ../tags/3.3/er-custom-login.php:395 ../tags/3.4.1/er-custom-login.php:403
157
+ #: ../tags/3.4/er-custom-login.php:402 ../trunk/er-custom-login.php:409
158
+ msgid "Login Screen Background Color:"
159
+ msgstr "رنگ پس زمینه صفحه ورود:"
160
+
161
+ #: ../tags/2.3.0/er-custom-login.php:365 ../tags/2.3.0/er-custom-login.php:577
162
+ #: ../tags/2.3.0/er-custom-login.php:586 ../tags/2.3.0/er-custom-login.php:689
163
+ #: ../tags/2.3.0/er-custom-login.php:717 ../tags/2.3.0/er-custom-login.php:746
164
+ #: ../tags/2.3.0/er-custom-login.php:758 ../tags/2.3.1/er-custom-login.php:365
165
+ #: ../tags/2.3.1/er-custom-login.php:577 ../tags/2.3.1/er-custom-login.php:586
166
+ #: ../tags/2.3.1/er-custom-login.php:689 ../tags/2.3.1/er-custom-login.php:717
167
+ #: ../tags/2.3.1/er-custom-login.php:746 ../tags/2.3.1/er-custom-login.php:758
168
+ #: ../tags/3.0/er-custom-login.php:387 ../tags/3.0/er-custom-login.php:597
169
+ #: ../tags/3.0/er-custom-login.php:606 ../tags/3.0/er-custom-login.php:708
170
+ #: ../tags/3.0/er-custom-login.php:736 ../tags/3.0/er-custom-login.php:765
171
+ #: ../tags/3.0/er-custom-login.php:777 ../tags/3.1/er-custom-login.php:391
172
+ #: ../tags/3.1/er-custom-login.php:601 ../tags/3.1/er-custom-login.php:610
173
+ #: ../tags/3.1/er-custom-login.php:712 ../tags/3.1/er-custom-login.php:740
174
+ #: ../tags/3.1/er-custom-login.php:769 ../tags/3.1/er-custom-login.php:781
175
+ #: ../tags/3.2/er-custom-login.php:391 ../tags/3.2/er-custom-login.php:601
176
+ #: ../tags/3.2/er-custom-login.php:610 ../tags/3.2/er-custom-login.php:712
177
+ #: ../tags/3.2/er-custom-login.php:740 ../tags/3.2/er-custom-login.php:769
178
+ #: ../tags/3.2/er-custom-login.php:781 ../tags/3.3.1/er-custom-login.php:401
179
+ #: ../tags/3.3.1/er-custom-login.php:611 ../tags/3.3.1/er-custom-login.php:723
180
+ #: ../tags/3.3.1/er-custom-login.php:751 ../tags/3.3.1/er-custom-login.php:780
181
+ #: ../tags/3.3.1/er-custom-login.php:792 ../tags/3.3/er-custom-login.php:400
182
+ #: ../tags/3.3/er-custom-login.php:610 ../tags/3.3/er-custom-login.php:722
183
+ #: ../tags/3.3/er-custom-login.php:750 ../tags/3.3/er-custom-login.php:779
184
+ #: ../tags/3.3/er-custom-login.php:791 ../tags/3.4.1/er-custom-login.php:408
185
+ #: ../tags/3.4.1/er-custom-login.php:618 ../tags/3.4.1/er-custom-login.php:730
186
+ #: ../tags/3.4.1/er-custom-login.php:758 ../tags/3.4.1/er-custom-login.php:787
187
+ #: ../tags/3.4.1/er-custom-login.php:799 ../tags/3.4/er-custom-login.php:407
188
+ #: ../tags/3.4/er-custom-login.php:617 ../tags/3.4/er-custom-login.php:729
189
+ #: ../tags/3.4/er-custom-login.php:757 ../tags/3.4/er-custom-login.php:786
190
+ #: ../tags/3.4/er-custom-login.php:798 ../trunk/er-custom-login.php:414
191
+ #: ../trunk/er-custom-login.php:624 ../trunk/er-custom-login.php:736
192
+ #: ../trunk/er-custom-login.php:764 ../trunk/er-custom-login.php:793
193
+ #: ../trunk/er-custom-login.php:805
194
+ msgid "Click the box to select a color."
195
+ msgstr "برای انتخاب زنگ درون کادر کلیک کنید."
196
+
197
+ #: ../tags/2.3.0/er-custom-login.php:370 ../tags/2.3.1/er-custom-login.php:370
198
+ #: ../tags/3.0/er-custom-login.php:392 ../tags/3.1/er-custom-login.php:396
199
+ #: ../tags/3.2/er-custom-login.php:396 ../tags/3.3.1/er-custom-login.php:406
200
+ #: ../tags/3.3/er-custom-login.php:405 ../tags/3.4.1/er-custom-login.php:413
201
+ #: ../tags/3.4/er-custom-login.php:412 ../trunk/er-custom-login.php:419
202
+ msgid "Login Screen Background Image:"
203
+ msgstr "تصویر پس زمینه صفحه ورود"
204
+
205
+ #: ../tags/2.3.0/er-custom-login.php:374 ../tags/2.3.1/er-custom-login.php:374
206
+ #: ../tags/3.0/er-custom-login.php:396 ../tags/3.1/er-custom-login.php:400
207
+ #: ../tags/3.2/er-custom-login.php:400 ../tags/3.3.1/er-custom-login.php:410
208
+ #: ../tags/3.3/er-custom-login.php:409 ../tags/3.4.1/er-custom-login.php:417
209
+ #: ../tags/3.4/er-custom-login.php:416 ../trunk/er-custom-login.php:423
210
+ msgid ""
211
+ "Add your own pattern/image url for the screen background. Leave blank if you "
212
+ "don't need any images."
213
+ msgstr ""
214
+ "مسیر تصویر الگوی خود را برای تصویر پس زمبنه وارد کنید. اگر به این کار تمایلی "
215
+ "ندارید این گزینه را خالی رها کنید."
216
+
217
+ #: ../tags/2.3.0/er-custom-login.php:378 ../tags/2.3.1/er-custom-login.php:378
218
+ #: ../tags/3.0/er-custom-login.php:400 ../tags/3.1/er-custom-login.php:404
219
+ #: ../tags/3.2/er-custom-login.php:404 ../tags/3.3.1/er-custom-login.php:414
220
+ #: ../tags/3.3/er-custom-login.php:413 ../tags/3.4.1/er-custom-login.php:421
221
+ #: ../tags/3.4/er-custom-login.php:420 ../trunk/er-custom-login.php:427
222
+ msgid "Login Screen Background Repeat"
223
+ msgstr "تکرار پس زمبنه صفحه ورود"
224
+
225
+ #: ../tags/2.3.0/er-custom-login.php:417 ../tags/2.3.0/er-custom-login.php:636
226
+ #: ../tags/2.3.1/er-custom-login.php:417 ../tags/2.3.1/er-custom-login.php:636
227
+ #: ../tags/3.0/er-custom-login.php:438 ../tags/3.0/er-custom-login.php:655
228
+ #: ../tags/3.1/er-custom-login.php:442 ../tags/3.1/er-custom-login.php:659
229
+ #: ../tags/3.2/er-custom-login.php:442 ../tags/3.2/er-custom-login.php:659
230
+ #: ../tags/3.3.1/er-custom-login.php:452 ../tags/3.3.1/er-custom-login.php:670
231
+ #: ../tags/3.3/er-custom-login.php:451 ../tags/3.3/er-custom-login.php:669
232
+ #: ../tags/3.4.1/er-custom-login.php:459 ../tags/3.4.1/er-custom-login.php:677
233
+ #: ../tags/3.4/er-custom-login.php:458 ../tags/3.4/er-custom-login.php:676
234
+ #: ../trunk/er-custom-login.php:465 ../trunk/er-custom-login.php:683
235
+ msgid "Select an image repeat option from dropdown."
236
+ msgstr "یکی از گزینه های تکرار را از لیست انتخاب کنید."
237
+
238
+ #: ../tags/2.3.0/er-custom-login.php:421 ../tags/2.3.0/er-custom-login.php:641
239
+ #: ../tags/2.3.1/er-custom-login.php:421 ../tags/2.3.1/er-custom-login.php:641
240
+ #: ../tags/3.0/er-custom-login.php:442 ../tags/3.0/er-custom-login.php:660
241
+ #: ../tags/3.1/er-custom-login.php:446 ../tags/3.1/er-custom-login.php:664
242
+ #: ../tags/3.2/er-custom-login.php:446 ../tags/3.2/er-custom-login.php:664
243
+ #: ../tags/3.3.1/er-custom-login.php:456 ../tags/3.3.1/er-custom-login.php:675
244
+ #: ../tags/3.3/er-custom-login.php:455 ../tags/3.3/er-custom-login.php:674
245
+ #: ../tags/3.4.1/er-custom-login.php:463 ../tags/3.4.1/er-custom-login.php:682
246
+ #: ../tags/3.4/er-custom-login.php:462 ../tags/3.4/er-custom-login.php:681
247
+ #: ../trunk/er-custom-login.php:469 ../trunk/er-custom-login.php:688
248
+ msgid "Background Position:"
249
+ msgstr "موقعیت پس زمینه:"
250
+
251
+ #: ../tags/2.3.0/er-custom-login.php:422 ../tags/2.3.0/er-custom-login.php:642
252
+ #: ../tags/2.3.1/er-custom-login.php:422 ../tags/2.3.1/er-custom-login.php:642
253
+ #: ../tags/3.0/er-custom-login.php:443 ../tags/3.0/er-custom-login.php:661
254
+ #: ../tags/3.1/er-custom-login.php:447 ../tags/3.1/er-custom-login.php:665
255
+ #: ../tags/3.2/er-custom-login.php:447 ../tags/3.2/er-custom-login.php:665
256
+ #: ../tags/3.3.1/er-custom-login.php:457 ../tags/3.3.1/er-custom-login.php:676
257
+ #: ../tags/3.3/er-custom-login.php:456 ../tags/3.3/er-custom-login.php:675
258
+ #: ../tags/3.4.1/er-custom-login.php:464 ../tags/3.4.1/er-custom-login.php:683
259
+ #: ../tags/3.4/er-custom-login.php:463 ../tags/3.4/er-custom-login.php:682
260
+ #: ../trunk/er-custom-login.php:470 ../trunk/er-custom-login.php:689
261
+ msgid "Horizontal Position: "
262
+ msgstr "موقعیت افقی:"
263
+
264
+ #: ../tags/2.3.0/er-custom-login.php:427 ../tags/2.3.0/er-custom-login.php:647
265
+ #: ../tags/2.3.1/er-custom-login.php:427 ../tags/2.3.1/er-custom-login.php:647
266
+ #: ../tags/3.0/er-custom-login.php:448 ../tags/3.0/er-custom-login.php:666
267
+ #: ../tags/3.1/er-custom-login.php:452 ../tags/3.1/er-custom-login.php:670
268
+ #: ../tags/3.2/er-custom-login.php:452 ../tags/3.2/er-custom-login.php:670
269
+ #: ../tags/3.3.1/er-custom-login.php:462 ../tags/3.3.1/er-custom-login.php:681
270
+ #: ../tags/3.3/er-custom-login.php:461 ../tags/3.3/er-custom-login.php:680
271
+ #: ../tags/3.4.1/er-custom-login.php:469 ../tags/3.4.1/er-custom-login.php:688
272
+ #: ../tags/3.4/er-custom-login.php:468 ../tags/3.4/er-custom-login.php:687
273
+ #: ../trunk/er-custom-login.php:475 ../trunk/er-custom-login.php:694
274
+ msgid ""
275
+ "The background-position property sets the starting position of a background "
276
+ "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
277
+ "or \"%\" at the end of value. This will not show any changes if you set the "
278
+ "Background Repeat option as \"Repeat\". <a href=\"http://www.w3schools.com/"
279
+ "cssref/pr_background-position.asp\" target=\"_blank\">More Info</a>"
280
+ msgstr ""
281
+ "گزینه «موقعیت پس زمینه» برای تعیین موقعیت شروع پس زمینه استفاده می شود. اگر "
282
+ "مقدار را به \"پیکسل\" یا \"درصد\", وارد می کنید \"px\" یا \"%\" را در "
283
+ "انتهای مقدار وارد کنید،. اگر مقدار گزینه «تکرار پس زمینه» را \"Repeat\" "
284
+ "بگزارید هیچ تغییری اتفاق نمی افتد.. <a href=\"http://www.w3schools.com/"
285
+ "cssref/pr_background-position.asp\" target=\"_blank\">اطلاعات بیشتر در زمینه "
286
+ "تکرار پس زمینه</a>"
287
+
288
+ #: ../tags/2.3.0/er-custom-login.php:432 ../tags/2.3.1/er-custom-login.php:432
289
+ #: ../tags/3.0/er-custom-login.php:453 ../tags/3.1/er-custom-login.php:457
290
+ #: ../tags/3.2/er-custom-login.php:457 ../tags/3.3.1/er-custom-login.php:467
291
+ #: ../tags/3.3/er-custom-login.php:466 ../tags/3.4.1/er-custom-login.php:474
292
+ #: ../tags/3.4/er-custom-login.php:473 ../trunk/er-custom-login.php:480
293
+ msgid "Background Size:"
294
+ msgstr "اندازه پس زمینه:"
295
+
296
+ #: ../tags/2.3.0/er-custom-login.php:436 ../tags/2.3.1/er-custom-login.php:436
297
+ #: ../tags/3.0/er-custom-login.php:457 ../tags/3.1/er-custom-login.php:461
298
+ #: ../tags/3.2/er-custom-login.php:461 ../tags/3.3.1/er-custom-login.php:471
299
+ #: ../tags/3.3/er-custom-login.php:470 ../tags/3.4.1/er-custom-login.php:478
300
+ #: ../tags/3.4/er-custom-login.php:477 ../trunk/er-custom-login.php:484
301
+ msgid ""
302
+ "The background-size property specifies the size of a background image. If "
303
+ "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
304
+ "at the end of value. Possible values: auto, length, percentage, cover, "
305
+ "contain. <a href=\"http://www.w3schools.com/cssref/css3_pr_background-size."
306
+ "asp\" target=\"_blank\">More Info</a>"
307
+ msgstr ""
308
+ "گزینه «اندازه پس زمینه» برای تعیین اندازه پس زمینه استفاده می شود. اگر مقدار "
309
+ "را به \"پیکسل\" یا \"درصد\", وارد می کنید \"px\" یا \"%\" را در انتهای "
310
+ "مقدار وارد کنید. مقادیر قابل قبول: auto, length, percentage, cover, "
311
+ "contain. <a href=\"http://www.w3schools.com/cssref/css3_pr_background-size."
312
+ "asp\" target=\"_blank\">اطلاعات بیشتر</a>"
313
+
314
+ #: ../tags/2.3.0/er-custom-login.php:447 ../tags/2.3.1/er-custom-login.php:447
315
+ #: ../tags/3.0/er-custom-login.php:468 ../tags/3.1/er-custom-login.php:472
316
+ #: ../tags/3.2/er-custom-login.php:472 ../tags/3.3.1/er-custom-login.php:482
317
+ #: ../tags/3.3/er-custom-login.php:481 ../tags/3.4.1/er-custom-login.php:489
318
+ #: ../tags/3.4/er-custom-login.php:488 ../trunk/er-custom-login.php:495
319
+ msgid "Login Screen Logo"
320
+ msgstr "لوگوی صفحه ورود"
321
+
322
+ #: ../tags/2.3.0/er-custom-login.php:448 ../tags/2.3.1/er-custom-login.php:448
323
+ #: ../tags/3.0/er-custom-login.php:469 ../tags/3.1/er-custom-login.php:473
324
+ #: ../tags/3.2/er-custom-login.php:473 ../tags/3.3.1/er-custom-login.php:483
325
+ #: ../tags/3.3/er-custom-login.php:482 ../tags/3.4.1/er-custom-login.php:490
326
+ #: ../tags/3.4/er-custom-login.php:489 ../trunk/er-custom-login.php:496
327
+ msgid "(Change the default WordPress logo and powered by text)"
328
+ msgstr "(تغییر لوگو و متن نیروگرفته از وردپرس)"
329
+
330
+ #: ../tags/2.3.0/er-custom-login.php:453 ../tags/2.3.1/er-custom-login.php:453
331
+ #: ../tags/3.0/er-custom-login.php:474 ../tags/3.1/er-custom-login.php:478
332
+ #: ../tags/3.2/er-custom-login.php:478 ../tags/3.3.1/er-custom-login.php:488
333
+ #: ../tags/3.3/er-custom-login.php:487 ../tags/3.4.1/er-custom-login.php:495
334
+ #: ../tags/3.4/er-custom-login.php:494 ../trunk/er-custom-login.php:501
335
+ msgid "Logo Url:"
336
+ msgstr "مسیر URL لوگو:"
337
+
338
+ #: ../tags/2.3.0/er-custom-login.php:455 ../tags/2.3.1/er-custom-login.php:455
339
+ #: ../tags/3.0/er-custom-login.php:476 ../tags/3.1/er-custom-login.php:480
340
+ #: ../tags/3.2/er-custom-login.php:480 ../tags/3.3.1/er-custom-login.php:490
341
+ #: ../tags/3.3/er-custom-login.php:489
342
+ msgid "Default Logo Size 274px × 63px"
343
+ msgstr "به طور پیش فرض اندازه 274px × لوگو 63px"
344
+
345
+ #: ../tags/2.3.0/er-custom-login.php:457 ../tags/2.3.1/er-custom-login.php:457
346
+ #: ../tags/3.0/er-custom-login.php:478 ../tags/3.1/er-custom-login.php:482
347
+ #: ../tags/3.2/er-custom-login.php:482 ../tags/3.3.1/er-custom-login.php:492
348
+ #: ../tags/3.3/er-custom-login.php:491 ../tags/3.4.1/er-custom-login.php:499
349
+ #: ../tags/3.4/er-custom-login.php:498 ../trunk/er-custom-login.php:505
350
+ msgid ""
351
+ "(URL path to image to replace default WordPress Logo. (You can upload your "
352
+ "image with the WordPress media uploader)"
353
+ msgstr ""
354
+ "(مسیر تصویری که مایلید جایگزین لوگوی پیش فرض وردپرس گردد. می توانید از "
355
+ "آپلودر رسانه وردپرس برای بارگزاری تصویر موردنظرتان استفاده کنید)"
356
+
357
+ #: ../tags/2.3.0/er-custom-login.php:462 ../tags/2.3.1/er-custom-login.php:462
358
+ #: ../tags/3.0/er-custom-login.php:483 ../tags/3.1/er-custom-login.php:487
359
+ #: ../tags/3.2/er-custom-login.php:487 ../tags/3.3.1/er-custom-login.php:497
360
+ #: ../tags/3.3/er-custom-login.php:496 ../tags/3.4.1/er-custom-login.php:504
361
+ #: ../tags/3.4/er-custom-login.php:503 ../trunk/er-custom-login.php:510
362
+ msgid "Logo Width:"
363
+ msgstr "عرض لوگو:"
364
+
365
+ #: ../tags/2.3.0/er-custom-login.php:466 ../tags/2.3.1/er-custom-login.php:466
366
+ #: ../tags/3.0/er-custom-login.php:487 ../tags/3.1/er-custom-login.php:491
367
+ #: ../tags/3.2/er-custom-login.php:491 ../tags/3.3.1/er-custom-login.php:501
368
+ #: ../tags/3.3/er-custom-login.php:500 ../tags/3.4.1/er-custom-login.php:508
369
+ #: ../tags/3.4/er-custom-login.php:507 ../trunk/er-custom-login.php:514
370
+ msgid "Your Logo width(Enter in pixels). Default: 274px"
371
+ msgstr "عرض لوگو (پیکسل) پیشفرض: 274px"
372
+
373
+ #: ../tags/2.3.0/er-custom-login.php:470 ../tags/2.3.1/er-custom-login.php:470
374
+ #: ../tags/3.0/er-custom-login.php:491 ../tags/3.1/er-custom-login.php:495
375
+ #: ../tags/3.2/er-custom-login.php:495 ../tags/3.3.1/er-custom-login.php:505
376
+ #: ../tags/3.3/er-custom-login.php:504 ../tags/3.4.1/er-custom-login.php:512
377
+ #: ../tags/3.4/er-custom-login.php:511 ../trunk/er-custom-login.php:518
378
+ msgid "Logo Height:"
379
+ msgstr "طول لوگو:"
380
+
381
+ #: ../tags/2.3.0/er-custom-login.php:474 ../tags/2.3.1/er-custom-login.php:474
382
+ #: ../tags/3.0/er-custom-login.php:495 ../tags/3.1/er-custom-login.php:499
383
+ #: ../tags/3.2/er-custom-login.php:499 ../tags/3.3.1/er-custom-login.php:509
384
+ #: ../tags/3.3/er-custom-login.php:508 ../tags/3.4.1/er-custom-login.php:516
385
+ #: ../tags/3.4/er-custom-login.php:515 ../trunk/er-custom-login.php:522
386
+ msgid "Your Logo Height(Enter in pixels). Default: 63px"
387
+ msgstr "طول لوگو (پیکسل) پیشفرض: 63px"
388
+
389
+ #: ../tags/2.3.0/er-custom-login.php:479 ../tags/2.3.1/er-custom-login.php:479
390
+ #: ../tags/3.0/er-custom-login.php:500 ../tags/3.1/er-custom-login.php:504
391
+ #: ../tags/3.2/er-custom-login.php:504 ../tags/3.3.1/er-custom-login.php:514
392
+ #: ../tags/3.3/er-custom-login.php:513 ../tags/3.4.1/er-custom-login.php:521
393
+ #: ../tags/3.4/er-custom-login.php:520 ../trunk/er-custom-login.php:527
394
+ msgid "Powered by Text:"
395
+ msgstr "متن نیرو گرفته از: "
396
+
397
+ #: ../tags/2.3.0/er-custom-login.php:483 ../tags/2.3.1/er-custom-login.php:483
398
+ #: ../tags/3.0/er-custom-login.php:504 ../tags/3.1/er-custom-login.php:508
399
+ #: ../tags/3.2/er-custom-login.php:508 ../tags/3.3.1/er-custom-login.php:518
400
+ #: ../tags/3.3/er-custom-login.php:517 ../tags/3.4.1/er-custom-login.php:525
401
+ #: ../tags/3.4/er-custom-login.php:524 ../trunk/er-custom-login.php:531
402
+ msgid "Show when mouse hover over custom Login logo"
403
+ msgstr "زمانی که نشانگر ماوس بر روی لوگو قراربگیرد نمایش داده می شود."
404
+
405
+ #: ../tags/2.3.0/er-custom-login.php:493 ../tags/2.3.1/er-custom-login.php:493
406
+ #: ../tags/3.0/er-custom-login.php:514 ../tags/3.1/er-custom-login.php:518
407
+ #: ../tags/3.2/er-custom-login.php:518 ../tags/3.3.1/er-custom-login.php:528
408
+ #: ../tags/3.3/er-custom-login.php:527 ../tags/3.4.1/er-custom-login.php:535
409
+ #: ../tags/3.4/er-custom-login.php:534 ../trunk/er-custom-login.php:541
410
+ msgid "Login Form Settings"
411
+ msgstr "تنظیمات فرم ورود"
412
+
413
+ #: ../tags/2.3.0/er-custom-login.php:494 ../tags/2.3.1/er-custom-login.php:494
414
+ #: ../tags/3.0/er-custom-login.php:515 ../tags/3.1/er-custom-login.php:519
415
+ #: ../tags/3.2/er-custom-login.php:519 ../tags/3.3.1/er-custom-login.php:529
416
+ #: ../tags/3.3/er-custom-login.php:528 ../tags/3.4.1/er-custom-login.php:536
417
+ #: ../tags/3.4/er-custom-login.php:535 ../trunk/er-custom-login.php:542
418
+ msgid "(The following settings will change the Login Form style)"
419
+ msgstr "(تنظیمات زیر سبک فرم ورود را تغییر می دهد)"
420
+
421
+ #: ../tags/2.3.0/er-custom-login.php:499 ../tags/2.3.1/er-custom-login.php:499
422
+ #: ../tags/3.0/er-custom-login.php:520 ../tags/3.1/er-custom-login.php:524
423
+ #: ../tags/3.2/er-custom-login.php:524 ../tags/3.3.1/er-custom-login.php:534
424
+ #: ../tags/3.3/er-custom-login.php:533 ../tags/3.4.1/er-custom-login.php:541
425
+ #: ../tags/3.4/er-custom-login.php:540 ../trunk/er-custom-login.php:547
426
+ msgid "Login form width:"
427
+ msgstr "عرض فرم ورود: "
428
+
429
+ #: ../tags/2.3.0/er-custom-login.php:503 ../tags/2.3.1/er-custom-login.php:503
430
+ #: ../tags/3.0/er-custom-login.php:524 ../tags/3.1/er-custom-login.php:528
431
+ #: ../tags/3.2/er-custom-login.php:528 ../tags/3.3.1/er-custom-login.php:538
432
+ #: ../tags/3.3/er-custom-login.php:537 ../tags/3.4.1/er-custom-login.php:545
433
+ #: ../tags/3.4/er-custom-login.php:544 ../trunk/er-custom-login.php:551
434
+ msgid "Total Form width(Enter in pixels). Default: 350px"
435
+ msgstr "کل عرض فرم (به پیکسل). پیش فرض: 350px"
436
+
437
+ #: ../tags/2.3.0/er-custom-login.php:507 ../tags/2.3.1/er-custom-login.php:507
438
+ #: ../tags/3.0/er-custom-login.php:528 ../tags/3.1/er-custom-login.php:532
439
+ #: ../tags/3.2/er-custom-login.php:532 ../tags/3.3.1/er-custom-login.php:542
440
+ #: ../tags/3.3/er-custom-login.php:541 ../tags/3.4.1/er-custom-login.php:549
441
+ #: ../tags/3.4/er-custom-login.php:548 ../trunk/er-custom-login.php:555
442
+ msgid "Login Form Border Radius:"
443
+ msgstr "اندازه قوس مرز فرم ورود: "
444
+
445
+ #: ../tags/2.3.0/er-custom-login.php:511 ../tags/2.3.1/er-custom-login.php:511
446
+ #: ../tags/3.0/er-custom-login.php:532 ../tags/3.1/er-custom-login.php:536
447
+ #: ../tags/3.2/er-custom-login.php:536 ../tags/3.3.1/er-custom-login.php:546
448
+ #: ../tags/3.3/er-custom-login.php:545 ../tags/3.4.1/er-custom-login.php:553
449
+ #: ../tags/3.4/er-custom-login.php:552 ../trunk/er-custom-login.php:559
450
+ msgid ""
451
+ "Border Radius of Login Form. This is the option to make the corners rounded."
452
+ "(Enter in pixels)"
453
+ msgstr ""
454
+ "این گزینه باعث قوس دار شدن کنج های فرم ورود می شود. مقدار را به پیکسل وارد "
455
+ "کنید."
456
+
457
+ #: ../tags/2.3.0/er-custom-login.php:515 ../tags/2.3.1/er-custom-login.php:515
458
+ #: ../tags/3.0/er-custom-login.php:536 ../tags/3.1/er-custom-login.php:540
459
+ #: ../tags/3.2/er-custom-login.php:540 ../tags/3.3.1/er-custom-login.php:550
460
+ #: ../tags/3.3/er-custom-login.php:549 ../tags/3.4.1/er-custom-login.php:557
461
+ #: ../tags/3.4/er-custom-login.php:556 ../trunk/er-custom-login.php:563
462
+ msgid "Login Border Style"
463
+ msgstr "استایل مرز فرم ورود"
464
+
465
+ #: ../tags/2.3.0/er-custom-login.php:560 ../tags/2.3.1/er-custom-login.php:560
466
+ #: ../tags/3.0/er-custom-login.php:580 ../tags/3.1/er-custom-login.php:584
467
+ #: ../tags/3.2/er-custom-login.php:584 ../tags/3.3.1/er-custom-login.php:594
468
+ #: ../tags/3.3/er-custom-login.php:593 ../tags/3.4.1/er-custom-login.php:601
469
+ #: ../tags/3.4/er-custom-login.php:600 ../trunk/er-custom-login.php:607
470
+ msgid "Select a Border Style option from dropdown."
471
+ msgstr "یکی از گزینه های لیست را انتخاب کنید."
472
+
473
+ #: ../tags/2.3.0/er-custom-login.php:564 ../tags/2.3.1/er-custom-login.php:564
474
+ #: ../tags/3.0/er-custom-login.php:584 ../tags/3.1/er-custom-login.php:588
475
+ #: ../tags/3.2/er-custom-login.php:588 ../tags/3.3.1/er-custom-login.php:598
476
+ #: ../tags/3.3/er-custom-login.php:597 ../tags/3.4.1/er-custom-login.php:605
477
+ #: ../tags/3.4/er-custom-login.php:604 ../trunk/er-custom-login.php:611
478
+ msgid "Login Border Thickness:"
479
+ msgstr "ضخامت مرز فرم ورود:"
480
+
481
+ #: ../tags/2.3.0/er-custom-login.php:568 ../tags/2.3.1/er-custom-login.php:568
482
+ #: ../tags/3.0/er-custom-login.php:588 ../tags/3.1/er-custom-login.php:592
483
+ #: ../tags/3.2/er-custom-login.php:592 ../tags/3.3.1/er-custom-login.php:602
484
+ #: ../tags/3.3/er-custom-login.php:601 ../tags/3.4.1/er-custom-login.php:609
485
+ #: ../tags/3.4/er-custom-login.php:608 ../trunk/er-custom-login.php:615
486
+ msgid "Thickness of Border (Enter value in pixels)"
487
+ msgstr "ضخامت مرز (به پیکسل)"
488
+
489
+ #: ../tags/2.3.0/er-custom-login.php:572 ../tags/2.3.1/er-custom-login.php:572
490
+ #: ../tags/3.0/er-custom-login.php:592 ../tags/3.1/er-custom-login.php:596
491
+ #: ../tags/3.2/er-custom-login.php:596 ../tags/3.3.1/er-custom-login.php:606
492
+ #: ../tags/3.3/er-custom-login.php:605 ../tags/3.4.1/er-custom-login.php:613
493
+ #: ../tags/3.4/er-custom-login.php:612 ../trunk/er-custom-login.php:619
494
+ msgid "Login Border Color:"
495
+ msgstr "رنگ مرز فرم ورود:"
496
+
497
+ #: ../tags/2.3.0/er-custom-login.php:581 ../tags/2.3.1/er-custom-login.php:581
498
+ #: ../tags/3.0/er-custom-login.php:601 ../tags/3.1/er-custom-login.php:605
499
+ #: ../tags/3.2/er-custom-login.php:605 ../tags/3.3.1/er-custom-login.php:615
500
+ #: ../tags/3.3/er-custom-login.php:614 ../tags/3.4.1/er-custom-login.php:622
501
+ #: ../tags/3.4/er-custom-login.php:621 ../trunk/er-custom-login.php:628
502
+ msgid "Login Form Background Color:"
503
+ msgstr "رنگ پس زمینه فرم ورود:"
504
+
505
+ #: ../tags/2.3.0/er-custom-login.php:590 ../tags/2.3.1/er-custom-login.php:590
506
+ #: ../tags/3.0/er-custom-login.php:610 ../tags/3.1/er-custom-login.php:614
507
+ #: ../tags/3.2/er-custom-login.php:614 ../tags/3.3.1/er-custom-login.php:625
508
+ #: ../tags/3.3/er-custom-login.php:624 ../tags/3.4.1/er-custom-login.php:632
509
+ #: ../tags/3.4/er-custom-login.php:631 ../trunk/er-custom-login.php:638
510
+ msgid "Login Form Background Image:"
511
+ msgstr "تصویر پس زمینه فرم ورود:"
512
+
513
+ #: ../tags/2.3.0/er-custom-login.php:593 ../tags/2.3.1/er-custom-login.php:593
514
+ #: ../tags/3.0/er-custom-login.php:613 ../tags/3.1/er-custom-login.php:617
515
+ #: ../tags/3.2/er-custom-login.php:617 ../tags/3.3.1/er-custom-login.php:628
516
+ #: ../tags/3.3/er-custom-login.php:627 ../tags/3.4.1/er-custom-login.php:635
517
+ #: ../tags/3.4/er-custom-login.php:634 ../trunk/er-custom-login.php:641
518
+ msgid ""
519
+ "Add your own pattern/image url to the form background. Leave blank if you "
520
+ "don't need any images."
521
+ msgstr ""
522
+ "مسیر تصویر الگوی خودتان را برای پس زمینه فرم ورود وارد کنید. در صورت عدم "
523
+ "تمایل این گزینه را خالی رها کنید. "
524
+
525
+ #: ../tags/2.3.0/er-custom-login.php:597 ../tags/2.3.1/er-custom-login.php:597
526
+ #: ../tags/3.0/er-custom-login.php:617 ../tags/3.1/er-custom-login.php:621
527
+ #: ../tags/3.2/er-custom-login.php:621 ../tags/3.3.1/er-custom-login.php:632
528
+ #: ../tags/3.3/er-custom-login.php:631 ../tags/3.4.1/er-custom-login.php:639
529
+ #: ../tags/3.4/er-custom-login.php:638 ../trunk/er-custom-login.php:645
530
+ msgid "Login Form Background Repeat"
531
+ msgstr "تکرار پس زمینه فرم ورود"
532
+
533
+ #: ../tags/2.3.0/er-custom-login.php:644 ../tags/2.3.1/er-custom-login.php:644
534
+ #: ../tags/3.0/er-custom-login.php:663 ../tags/3.1/er-custom-login.php:667
535
+ #: ../tags/3.2/er-custom-login.php:667 ../tags/3.3.1/er-custom-login.php:678
536
+ #: ../tags/3.3/er-custom-login.php:677 ../tags/3.4.1/er-custom-login.php:685
537
+ #: ../tags/3.4/er-custom-login.php:684 ../trunk/er-custom-login.php:691
538
+ msgid "Vertical Position: "
539
+ msgstr "موقعیت عمودی:"
540
+
541
+ #: ../tags/2.3.0/er-custom-login.php:652 ../tags/2.3.1/er-custom-login.php:652
542
+ #: ../tags/3.0/er-custom-login.php:671 ../tags/3.1/er-custom-login.php:675
543
+ #: ../tags/3.2/er-custom-login.php:675 ../tags/3.3.1/er-custom-login.php:686
544
+ #: ../tags/3.3/er-custom-login.php:685 ../tags/3.4.1/er-custom-login.php:693
545
+ #: ../tags/3.4/er-custom-login.php:692 ../trunk/er-custom-login.php:699
546
+ msgid "Login Form Label Text Color"
547
+ msgstr "رنگ متن برچسب های فرم ورود"
548
+
549
+ #: ../tags/2.3.0/er-custom-login.php:657 ../tags/2.3.1/er-custom-login.php:657
550
+ #: ../tags/3.0/er-custom-login.php:676 ../tags/3.1/er-custom-login.php:680
551
+ #: ../tags/3.2/er-custom-login.php:680 ../tags/3.3.1/er-custom-login.php:691
552
+ #: ../tags/3.3/er-custom-login.php:690 ../tags/3.4.1/er-custom-login.php:698
553
+ #: ../tags/3.4/er-custom-login.php:697 ../trunk/er-custom-login.php:704
554
+ msgid ""
555
+ "Click the box to select a color. This will change the color of label "
556
+ "Username/Password"
557
+ msgstr ""
558
+ "برای انتخاب رنگ درون کادر کلیک کنید. این گزینه رنگ برچسب های نام کاربری و "
559
+ "رمز عبور را تغییر میدهد."
560
+
561
+ #: ../tags/2.3.0/er-custom-login.php:661 ../tags/2.3.1/er-custom-login.php:661
562
+ #: ../tags/3.0/er-custom-login.php:680 ../tags/3.1/er-custom-login.php:684
563
+ #: ../tags/3.2/er-custom-login.php:684 ../tags/3.3.1/er-custom-login.php:695
564
+ #: ../tags/3.3/er-custom-login.php:694 ../tags/3.4.1/er-custom-login.php:702
565
+ #: ../tags/3.4/er-custom-login.php:701 ../trunk/er-custom-login.php:708
566
+ msgid "Login Form Label Text Size:"
567
+ msgstr "اندازه متن برچسب های فرم ورود"
568
+
569
+ #: ../tags/2.3.0/er-custom-login.php:664 ../tags/2.3.1/er-custom-login.php:664
570
+ #: ../tags/3.0/er-custom-login.php:683 ../tags/3.1/er-custom-login.php:687
571
+ #: ../tags/3.2/er-custom-login.php:687 ../tags/3.3.1/er-custom-login.php:698
572
+ #: ../tags/3.3/er-custom-login.php:697 ../tags/3.4.1/er-custom-login.php:705
573
+ #: ../tags/3.4/er-custom-login.php:704 ../trunk/er-custom-login.php:711
574
+ msgid "Font Size of Label Username/Password(Enter value in pixels)"
575
+ msgstr "اندازه متن برچسب های نام کاربری و رمز عبور (به پیکسل)"
576
+
577
+ #: ../tags/2.3.0/er-custom-login.php:668 ../tags/2.3.1/er-custom-login.php:668
578
+ #: ../tags/3.0/er-custom-login.php:687 ../tags/3.1/er-custom-login.php:691
579
+ #: ../tags/3.2/er-custom-login.php:691 ../tags/3.3.1/er-custom-login.php:702
580
+ #: ../tags/3.3/er-custom-login.php:701 ../tags/3.4.1/er-custom-login.php:709
581
+ #: ../tags/3.4/er-custom-login.php:708 ../trunk/er-custom-login.php:715
582
+ msgid "Login Form Input Text Color"
583
+ msgstr "رنگ متون درون کادرهای متن فرم ورود"
584
+
585
+ #: ../tags/2.3.0/er-custom-login.php:673 ../tags/2.3.1/er-custom-login.php:673
586
+ #: ../tags/3.0/er-custom-login.php:692 ../tags/3.1/er-custom-login.php:696
587
+ #: ../tags/3.2/er-custom-login.php:696 ../tags/3.3.1/er-custom-login.php:707
588
+ #: ../tags/3.3/er-custom-login.php:706 ../tags/3.4.1/er-custom-login.php:714
589
+ #: ../tags/3.4/er-custom-login.php:713 ../trunk/er-custom-login.php:720
590
+ msgid ""
591
+ "Click the box to select a color. This will change the color of text inside "
592
+ "text box."
593
+ msgstr ""
594
+ "برای انتخاب رنگ درون کادر کلیک کنید. این گزینه رنگ متون داخل کادرهای ورد متن "
595
+ "فرم ورود را تغییر میدهد."
596
+
597
+ #: ../tags/2.3.0/er-custom-login.php:677 ../tags/2.3.1/er-custom-login.php:677
598
+ #: ../tags/3.0/er-custom-login.php:696 ../tags/3.1/er-custom-login.php:700
599
+ #: ../tags/3.2/er-custom-login.php:700 ../tags/3.3.1/er-custom-login.php:711
600
+ #: ../tags/3.3/er-custom-login.php:710 ../tags/3.4.1/er-custom-login.php:718
601
+ #: ../tags/3.4/er-custom-login.php:717 ../trunk/er-custom-login.php:724
602
+ msgid "Login Form Input Text Size:"
603
+ msgstr "اندازه متون درون کادرهای متن فرم ورود"
604
+
605
+ #: ../tags/2.3.0/er-custom-login.php:680 ../tags/2.3.1/er-custom-login.php:680
606
+ #: ../tags/3.0/er-custom-login.php:699 ../tags/3.1/er-custom-login.php:703
607
+ #: ../tags/3.2/er-custom-login.php:703 ../tags/3.3.1/er-custom-login.php:714
608
+ #: ../tags/3.3/er-custom-login.php:713 ../tags/3.4.1/er-custom-login.php:721
609
+ #: ../tags/3.4/er-custom-login.php:720 ../trunk/er-custom-login.php:727
610
+ msgid "Font Size of text inside text box(Enter value in pixels)"
611
+ msgstr "اندازه متون داخل کادرهای ورد متن فرم ورود (به پیکسل)"
612
+
613
+ #: ../tags/2.3.0/er-custom-login.php:684 ../tags/2.3.1/er-custom-login.php:684
614
+ #: ../tags/3.0/er-custom-login.php:703 ../tags/3.1/er-custom-login.php:707
615
+ #: ../tags/3.2/er-custom-login.php:707 ../tags/3.3.1/er-custom-login.php:718
616
+ #: ../tags/3.3/er-custom-login.php:717 ../tags/3.4.1/er-custom-login.php:725
617
+ #: ../tags/3.4/er-custom-login.php:724 ../trunk/er-custom-login.php:731
618
+ msgid "Login Form Link Color"
619
+ msgstr "رنگ پیوند فرم ورود"
620
+
621
+ #: ../tags/2.3.0/er-custom-login.php:694 ../tags/2.3.1/er-custom-login.php:694
622
+ #: ../tags/3.0/er-custom-login.php:713 ../tags/3.1/er-custom-login.php:717
623
+ #: ../tags/3.2/er-custom-login.php:717 ../tags/3.3.1/er-custom-login.php:728
624
+ #: ../tags/3.3/er-custom-login.php:727 ../tags/3.4.1/er-custom-login.php:735
625
+ #: ../tags/3.4/er-custom-login.php:734 ../trunk/er-custom-login.php:741
626
+ msgid "Enable link shadow?"
627
+ msgstr "فعال کردن سایه پیوند؟"
628
+
629
+ #: ../tags/2.3.0/er-custom-login.php:702 ../tags/2.3.0/er-custom-login.php:731
630
+ #: ../tags/2.3.0/er-custom-login.php:782 ../tags/2.3.1/er-custom-login.php:702
631
+ #: ../tags/2.3.1/er-custom-login.php:731 ../tags/2.3.1/er-custom-login.php:782
632
+ #: ../tags/3.0/er-custom-login.php:721 ../tags/3.0/er-custom-login.php:750
633
+ #: ../tags/3.0/er-custom-login.php:801 ../tags/3.1/er-custom-login.php:725
634
+ #: ../tags/3.1/er-custom-login.php:754 ../tags/3.1/er-custom-login.php:805
635
+ #: ../tags/3.2/er-custom-login.php:725 ../tags/3.2/er-custom-login.php:754
636
+ #: ../tags/3.2/er-custom-login.php:805 ../tags/3.3.1/er-custom-login.php:736
637
+ #: ../tags/3.3.1/er-custom-login.php:765 ../tags/3.3.1/er-custom-login.php:816
638
+ #: ../tags/3.3/er-custom-login.php:735 ../tags/3.3/er-custom-login.php:764
639
+ #: ../tags/3.3/er-custom-login.php:815 ../tags/3.4.1/er-custom-login.php:743
640
+ #: ../tags/3.4.1/er-custom-login.php:772 ../tags/3.4.1/er-custom-login.php:823
641
+ #: ../tags/3.4/er-custom-login.php:742 ../tags/3.4/er-custom-login.php:771
642
+ #: ../tags/3.4/er-custom-login.php:822 ../trunk/er-custom-login.php:749
643
+ #: ../trunk/er-custom-login.php:778 ../trunk/er-custom-login.php:829
644
+ msgid "Yes"
645
+ msgstr "بله"
646
+
647
+ #: ../tags/2.3.0/er-custom-login.php:706 ../tags/2.3.0/er-custom-login.php:735
648
+ #: ../tags/2.3.0/er-custom-login.php:786 ../tags/2.3.1/er-custom-login.php:706
649
+ #: ../tags/2.3.1/er-custom-login.php:735 ../tags/2.3.1/er-custom-login.php:786
650
+ #: ../tags/3.0/er-custom-login.php:725 ../tags/3.0/er-custom-login.php:754
651
+ #: ../tags/3.0/er-custom-login.php:805 ../tags/3.1/er-custom-login.php:729
652
+ #: ../tags/3.1/er-custom-login.php:758 ../tags/3.1/er-custom-login.php:809
653
+ #: ../tags/3.2/er-custom-login.php:729 ../tags/3.2/er-custom-login.php:758
654
+ #: ../tags/3.2/er-custom-login.php:809 ../tags/3.3.1/er-custom-login.php:740
655
+ #: ../tags/3.3.1/er-custom-login.php:769 ../tags/3.3.1/er-custom-login.php:820
656
+ #: ../tags/3.3/er-custom-login.php:739 ../tags/3.3/er-custom-login.php:768
657
+ #: ../tags/3.3/er-custom-login.php:819 ../tags/3.4.1/er-custom-login.php:747
658
+ #: ../tags/3.4.1/er-custom-login.php:776 ../tags/3.4.1/er-custom-login.php:827
659
+ #: ../tags/3.4/er-custom-login.php:746 ../tags/3.4/er-custom-login.php:775
660
+ #: ../tags/3.4/er-custom-login.php:826 ../trunk/er-custom-login.php:753
661
+ #: ../trunk/er-custom-login.php:782 ../trunk/er-custom-login.php:833
662
+ msgid "No"
663
+ msgstr "خیر"
664
+
665
+ #: ../tags/2.3.0/er-custom-login.php:708 ../tags/2.3.0/er-custom-login.php:737
666
+ #: ../tags/2.3.1/er-custom-login.php:708 ../tags/2.3.1/er-custom-login.php:737
667
+ #: ../tags/3.0/er-custom-login.php:727 ../tags/3.0/er-custom-login.php:756
668
+ #: ../tags/3.1/er-custom-login.php:731 ../tags/3.1/er-custom-login.php:760
669
+ #: ../tags/3.2/er-custom-login.php:731 ../tags/3.2/er-custom-login.php:760
670
+ #: ../tags/3.3.1/er-custom-login.php:742 ../tags/3.3.1/er-custom-login.php:771
671
+ #: ../tags/3.3/er-custom-login.php:741 ../tags/3.3/er-custom-login.php:770
672
+ #: ../tags/3.4.1/er-custom-login.php:749 ../tags/3.4.1/er-custom-login.php:778
673
+ #: ../tags/3.4/er-custom-login.php:748 ../tags/3.4/er-custom-login.php:777
674
+ #: ../trunk/er-custom-login.php:755 ../trunk/er-custom-login.php:784
675
+ msgid "(Check an option)"
676
+ msgstr "(یک گزینه را تیک بزنید)"
677
+
678
+ #: ../tags/2.3.0/er-custom-login.php:712 ../tags/2.3.1/er-custom-login.php:712
679
+ #: ../tags/3.0/er-custom-login.php:731 ../tags/3.1/er-custom-login.php:735
680
+ #: ../tags/3.2/er-custom-login.php:735 ../tags/3.3.1/er-custom-login.php:746
681
+ #: ../tags/3.3/er-custom-login.php:745 ../tags/3.4.1/er-custom-login.php:753
682
+ #: ../tags/3.4/er-custom-login.php:752 ../trunk/er-custom-login.php:759
683
+ msgid "Login Form Link Shadow Color"
684
+ msgstr "رنگ سایه پیوند فرم ورود"
685
+
686
+ #: ../tags/2.3.0/er-custom-login.php:723 ../tags/2.3.1/er-custom-login.php:723
687
+ #: ../tags/3.0/er-custom-login.php:742 ../tags/3.1/er-custom-login.php:746
688
+ #: ../tags/3.2/er-custom-login.php:746 ../tags/3.3.1/er-custom-login.php:757
689
+ #: ../tags/3.3/er-custom-login.php:756 ../tags/3.4.1/er-custom-login.php:764
690
+ #: ../tags/3.4/er-custom-login.php:763 ../trunk/er-custom-login.php:770
691
+ msgid "Enable form shadow?"
692
+ msgstr "فعال کردن سایه فرم؟"
693
+
694
+ #: ../tags/2.3.0/er-custom-login.php:741 ../tags/2.3.1/er-custom-login.php:741
695
+ #: ../tags/3.0/er-custom-login.php:760 ../tags/3.1/er-custom-login.php:764
696
+ #: ../tags/3.2/er-custom-login.php:764 ../tags/3.3.1/er-custom-login.php:775
697
+ #: ../tags/3.3/er-custom-login.php:774 ../tags/3.4.1/er-custom-login.php:782
698
+ #: ../tags/3.4/er-custom-login.php:781 ../trunk/er-custom-login.php:788
699
+ msgid "Login Form Shadow Color"
700
+ msgstr "رنگ سایه فرم ورود"
701
+
702
+ #: ../tags/2.3.0/er-custom-login.php:753 ../tags/2.3.1/er-custom-login.php:753
703
+ #: ../tags/3.0/er-custom-login.php:772 ../tags/3.1/er-custom-login.php:776
704
+ #: ../tags/3.2/er-custom-login.php:776 ../tags/3.3.1/er-custom-login.php:787
705
+ #: ../tags/3.3/er-custom-login.php:786 ../tags/3.4.1/er-custom-login.php:794
706
+ #: ../tags/3.4/er-custom-login.php:793 ../trunk/er-custom-login.php:800
707
+ msgid "Login Button Color"
708
+ msgstr "رنگ کلید ورود"
709
+
710
+ #: ../tags/2.3.0/er-custom-login.php:769 ../tags/2.3.1/er-custom-login.php:769
711
+ #: ../tags/3.0/er-custom-login.php:788 ../tags/3.1/er-custom-login.php:792
712
+ #: ../tags/3.2/er-custom-login.php:792 ../tags/3.3.1/er-custom-login.php:803
713
+ #: ../tags/3.3/er-custom-login.php:802 ../tags/3.4.1/er-custom-login.php:810
714
+ #: ../tags/3.4/er-custom-login.php:809 ../trunk/er-custom-login.php:816
715
+ msgid "Plugin Un-install Settings"
716
+ msgstr "تنظیمات حذف و غیر فعال کردن افزونه"
717
+
718
+ #: ../tags/2.3.0/er-custom-login.php:774 ../tags/2.3.1/er-custom-login.php:774
719
+ #: ../tags/3.0/er-custom-login.php:793 ../tags/3.1/er-custom-login.php:797
720
+ #: ../tags/3.2/er-custom-login.php:797 ../tags/3.3.1/er-custom-login.php:808
721
+ #: ../tags/3.3/er-custom-login.php:807 ../tags/3.4.1/er-custom-login.php:815
722
+ #: ../tags/3.4/er-custom-login.php:814 ../trunk/er-custom-login.php:821
723
+ msgid "Delete custom settings upon plugin deactivation?"
724
+ msgstr ""
725
+ "آیا مایلید تنظیمات سفارشی شده افزونه وقتی افزونه غیرفعال می شود حذف گردد؟"
726
+
727
+ #: ../tags/2.3.0/er-custom-login.php:788 ../tags/2.3.1/er-custom-login.php:788
728
+ #: ../tags/3.0/er-custom-login.php:807 ../tags/3.1/er-custom-login.php:811
729
+ #: ../tags/3.2/er-custom-login.php:811 ../tags/3.3.1/er-custom-login.php:822
730
+ #: ../tags/3.3/er-custom-login.php:821 ../tags/3.4.1/er-custom-login.php:829
731
+ #: ../tags/3.4/er-custom-login.php:828 ../trunk/er-custom-login.php:835
732
+ msgid ""
733
+ "(If you set \"Yes\" all custom settings will be deleted from database upon "
734
+ "plugin deactivation)"
735
+ msgstr ""
736
+ "(اگر بله را انتخاب کنید تمام تنظیماتی که تاکنون سفارشی کرده اید هنگام "
737
+ "غیرفعال کردن افزونه از پایگاه داده وردپرس حذف خواهد شد) "
738
+
739
+ #: ../tags/2.3.0/er-custom-login.php:808 ../tags/2.3.1/er-custom-login.php:809
740
+ #: ../tags/3.0/er-custom-login.php:857 ../tags/3.1/er-custom-login.php:861
741
+ #: ../tags/3.2/er-custom-login.php:861 ../tags/3.3.1/er-custom-login.php:872
742
+ #: ../tags/3.3/er-custom-login.php:871 ../tags/3.4.1/er-custom-login.php:879
743
+ #: ../tags/3.4/er-custom-login.php:878 ../trunk/er-custom-login.php:885
744
+ msgid "Open Your WP Login Page in a New Tab"
745
+ msgstr "بازشدن صفحه ورود وردپرس در زبانه جدید"
746
+
747
+ #: ../tags/2.3.0/er-custom-login.php:809 ../tags/2.3.1/er-custom-login.php:810
748
+ #: ../tags/3.0/er-custom-login.php:858 ../tags/3.1/er-custom-login.php:862
749
+ #: ../tags/3.2/er-custom-login.php:862 ../tags/3.3.1/er-custom-login.php:873
750
+ #: ../tags/3.3/er-custom-login.php:872 ../tags/3.4.1/er-custom-login.php:880
751
+ #: ../tags/3.4/er-custom-login.php:879 ../trunk/er-custom-login.php:886
752
+ msgid "Plugin Documentation"
753
+ msgstr "مستندات افزونه"
754
+
755
+ #: ../tags/2.3.0/er-custom-login.php:810 ../tags/2.3.1/er-custom-login.php:811
756
+ #: ../tags/3.0/er-custom-login.php:859 ../tags/3.1/er-custom-login.php:863
757
+ #: ../tags/3.2/er-custom-login.php:863 ../tags/3.3.1/er-custom-login.php:874
758
+ #: ../tags/3.3/er-custom-login.php:873 ../tags/3.4.1/er-custom-login.php:881
759
+ #: ../tags/3.4/er-custom-login.php:880 ../trunk/er-custom-login.php:887
760
+ msgid "Plugin Support Page"
761
+ msgstr "صفحه پشتیبانی افزونه"
762
+
763
+ #: ../tags/2.3.0/er-custom-login.php:811 ../tags/2.3.1/er-custom-login.php:812
764
+ #: ../tags/3.0/er-custom-login.php:860 ../tags/3.1/er-custom-login.php:864
765
+ #: ../tags/3.2/er-custom-login.php:864 ../tags/3.3.1/er-custom-login.php:875
766
+ #: ../tags/3.3/er-custom-login.php:874 ../tags/3.4.1/er-custom-login.php:882
767
+ #: ../tags/3.4/er-custom-login.php:881 ../trunk/er-custom-login.php:888
768
+ msgid "Feature Request/Suggestions?"
769
+ msgstr "درخواست ویژگی جدید یا پیشنهاد یا انتقادی دارید؟"
770
+
771
+ #: ../tags/2.3.0/er-custom-login.php:812 ../tags/2.3.1/er-custom-login.php:813
772
+ #: ../tags/3.0/er-custom-login.php:861 ../tags/3.1/er-custom-login.php:865
773
+ #: ../tags/3.2/er-custom-login.php:865 ../tags/3.3.1/er-custom-login.php:876
774
+ #: ../tags/3.3/er-custom-login.php:875 ../tags/3.4.1/er-custom-login.php:883
775
+ #: ../tags/3.4/er-custom-login.php:882 ../trunk/er-custom-login.php:889
776
+ msgid "Got some Love? Give us a 5 star rating!"
777
+ msgstr "دوستداری یک حرکت دوستانه انجام بدی؟ پس به ما یک امتیاز 5 ستاره بده!"
778
+
779
+ #: ../tags/2.3.0/er-custom-login.php:816 ../tags/2.3.1/er-custom-login.php:817
780
+ #: ../tags/3.0/er-custom-login.php:865 ../tags/3.1/er-custom-login.php:869
781
+ #: ../tags/3.2/er-custom-login.php:869 ../tags/3.3.1/er-custom-login.php:880
782
+ #: ../tags/3.3/er-custom-login.php:879 ../tags/3.4.1/er-custom-login.php:887
783
+ #: ../tags/3.4/er-custom-login.php:886 ../trunk/er-custom-login.php:893
784
+ msgid "Hire Me"
785
+ msgstr "مرا استخدام کن"
786
+
787
+ #: ../tags/2.3.0/er-custom-login.php:817 ../tags/2.3.1/er-custom-login.php:818
788
+ #: ../tags/3.0/er-custom-login.php:866 ../tags/3.1/er-custom-login.php:870
789
+ #: ../tags/3.2/er-custom-login.php:870 ../tags/3.3.1/er-custom-login.php:881
790
+ #: ../tags/3.3/er-custom-login.php:880 ../tags/3.4.1/er-custom-login.php:888
791
+ #: ../tags/3.4/er-custom-login.php:887 ../trunk/er-custom-login.php:894
792
+ msgid ""
793
+ "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
794
+ "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
795
+ "libin@libin.in\">libin@libin.in</a> <br/>Online Portfolio: <a href=\"http://"
796
+ "www.libin.in\" target=\"_blank\">www.libin.in</a>"
797
+ msgstr ""
798
+ "سلام من لیبین هستم، یک توسعه دهنده حرفه ای وردپرس، آماده همکاری در پروژه های "
799
+ "شما بصورت فریلنسری.<br/><br/>ایمیل من:<a href=\"mailto:libin@libin.in"
800
+ "\">libin@libin.in</a><br/>مشاهده نمونه کارهای من بصورت آنلاین:<a href="
801
+ "\"http://www.libin.in\" target=\"_blank\">www.libin.in</a>"
802
+
803
+ #: ../tags/2.3.1/er-custom-login.php:807 ../tags/3.0/er-custom-login.php:855
804
+ #: ../tags/3.1/er-custom-login.php:859 ../tags/3.2/er-custom-login.php:859
805
+ #: ../tags/3.3.1/er-custom-login.php:870 ../tags/3.3/er-custom-login.php:869
806
+ #: ../tags/3.4.1/er-custom-login.php:877 ../tags/3.4/er-custom-login.php:876
807
+ #: ../trunk/er-custom-login.php:883
808
+ msgid "Quick Links"
809
+ msgstr "دسترسی سریع"
810
+
811
+ #: ../tags/2.3.1/er-custom-login.php:820 ../tags/3.0/er-custom-login.php:868
812
+ #: ../tags/3.1/er-custom-login.php:872 ../tags/3.2/er-custom-login.php:872
813
+ #: ../tags/3.3.1/er-custom-login.php:883 ../tags/3.3/er-custom-login.php:882
814
+ #: ../tags/3.4.1/er-custom-login.php:890 ../tags/3.4/er-custom-login.php:889
815
+ #: ../trunk/er-custom-login.php:896
816
+ msgid "Translation Credits"
817
+ msgstr "دستاندرکاران ترجمه"
818
+
819
+ #: ../tags/2.3.1/er-custom-login.php:822 ../tags/3.0/er-custom-login.php:870
820
+ #: ../tags/3.1/er-custom-login.php:874 ../tags/3.2/er-custom-login.php:874
821
+ #: ../tags/3.3.1/er-custom-login.php:885 ../tags/3.3/er-custom-login.php:884
822
+ #: ../tags/3.4.1/er-custom-login.php:892 ../tags/3.4/er-custom-login.php:891
823
+ #: ../trunk/er-custom-login.php:898
824
+ msgid ""
825
+ "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
826
+ "\">Adriana De La Cuadra</a>"
827
+ msgstr ""
828
+ "اسپانیایی توسط <a href=\"http://www.linkedin.com/in/adrifolio\" target="
829
+ "\"_blank\">Adriana De La Cuadra</a>"
830
+
831
+ #: ../tags/2.3.1/er-custom-login.php:824 ../tags/3.0/er-custom-login.php:873
832
+ #: ../tags/3.1/er-custom-login.php:877 ../tags/3.2/er-custom-login.php:878
833
+ #: ../tags/3.3.1/er-custom-login.php:889 ../tags/3.3/er-custom-login.php:888
834
+ #: ../tags/3.4.1/er-custom-login.php:897 ../tags/3.4/er-custom-login.php:896
835
+ #: ../trunk/er-custom-login.php:905
836
+ msgid "Do you wants to translate this plugin to your language? Email me!"
837
+ msgstr ""
838
+ "مایل به ترجمه این افزونه به زبان خودتان هستید؟ فایل ترجمه را برای من ایمیل "
839
+ "کنید!"
840
+
841
+ #: ../tags/3.0/er-custom-login.php:215 ../tags/3.1/er-custom-login.php:215
842
+ #: ../tags/3.2/er-custom-login.php:215 ../tags/3.3.1/er-custom-login.php:224
843
+ #: ../tags/3.3/er-custom-login.php:223 ../tags/3.4.1/er-custom-login.php:231
844
+ #: ../tags/3.4/er-custom-login.php:230 ../trunk/er-custom-login.php:235
845
+ msgid "Please upload a valid .json file"
846
+ msgstr "لطفاً یک فایل json معتبر بارگزاری کنید."
847
+
848
+ #: ../tags/3.0/er-custom-login.php:221 ../tags/3.1/er-custom-login.php:221
849
+ #: ../tags/3.2/er-custom-login.php:221 ../tags/3.3.1/er-custom-login.php:230
850
+ #: ../tags/3.3/er-custom-login.php:229 ../tags/3.4.1/er-custom-login.php:237
851
+ #: ../tags/3.4/er-custom-login.php:236 ../trunk/er-custom-login.php:241
852
+ msgid "Please upload a file to import"
853
+ msgstr "لطفاً یک فایل برای درون ریزی آپلود کنید"
854
+
855
+ #: ../tags/3.0/er-custom-login.php:228 ../tags/3.1/er-custom-login.php:228
856
+ #: ../tags/3.2/er-custom-login.php:228 ../tags/3.3.1/er-custom-login.php:237
857
+ #: ../tags/3.3/er-custom-login.php:236 ../tags/3.4.1/er-custom-login.php:244
858
+ #: ../tags/3.4/er-custom-login.php:243 ../trunk/er-custom-login.php:248
859
+ msgid "New settings imported successfully!"
860
+ msgstr "تنظیمات جدید با موفقیت وارد شد!"
861
+
862
+ #: ../tags/3.0/er-custom-login.php:341 ../tags/3.1/er-custom-login.php:345
863
+ #: ../tags/3.2/er-custom-login.php:345 ../tags/3.3.1/er-custom-login.php:355
864
+ #: ../tags/3.3/er-custom-login.php:354 ../tags/3.4.1/er-custom-login.php:362
865
+ #: ../tags/3.4/er-custom-login.php:361 ../trunk/er-custom-login.php:367
866
+ msgid "Settings saved."
867
+ msgstr "تغییرات ذخیره شد."
868
+
869
+ #: ../tags/3.0/er-custom-login.php:822 ../tags/3.1/er-custom-login.php:826
870
+ #: ../tags/3.2/er-custom-login.php:826 ../tags/3.3.1/er-custom-login.php:837
871
+ #: ../tags/3.3/er-custom-login.php:836 ../tags/3.4.1/er-custom-login.php:844
872
+ #: ../tags/3.4/er-custom-login.php:843 ../trunk/er-custom-login.php:850
873
+ msgid "Export Settings"
874
+ msgstr "برون بری تنظیمات"
875
+
876
+ #: ../tags/3.0/er-custom-login.php:824 ../tags/3.1/er-custom-login.php:828
877
+ #: ../tags/3.2/er-custom-login.php:828 ../tags/3.3.1/er-custom-login.php:839
878
+ #: ../tags/3.3/er-custom-login.php:838 ../tags/3.4.1/er-custom-login.php:846
879
+ #: ../tags/3.4/er-custom-login.php:845 ../trunk/er-custom-login.php:852
880
+ msgid ""
881
+ "Export the plugin settings for this site as a .json file. This allows you to "
882
+ "easily import the configuration into another site."
883
+ msgstr ""
884
+ "برون بری تنظیمات افزونه در این سایت در قالب یک فایل json. این امکان به شما "
885
+ "اجازه می دهد تا تنظیمات حاضر را در سایت دیگری درون ریزی کرده و استفاده کنید."
886
+
887
+ #: ../tags/3.0/er-custom-login.php:829 ../tags/3.1/er-custom-login.php:833
888
+ #: ../tags/3.2/er-custom-login.php:833 ../tags/3.3.1/er-custom-login.php:844
889
+ #: ../tags/3.3/er-custom-login.php:843 ../tags/3.4.1/er-custom-login.php:851
890
+ #: ../tags/3.4/er-custom-login.php:850 ../trunk/er-custom-login.php:857
891
+ msgid "Export"
892
+ msgstr "برون بری"
893
+
894
+ #: ../tags/3.0/er-custom-login.php:837 ../tags/3.1/er-custom-login.php:841
895
+ #: ../tags/3.2/er-custom-login.php:841 ../tags/3.3.1/er-custom-login.php:852
896
+ #: ../tags/3.3/er-custom-login.php:851 ../tags/3.4.1/er-custom-login.php:859
897
+ #: ../tags/3.4/er-custom-login.php:858 ../trunk/er-custom-login.php:865
898
+ msgid "Import Settings"
899
+ msgstr "تنظیمات درون ریزی"
900
+
901
+ #: ../tags/3.0/er-custom-login.php:839 ../tags/3.1/er-custom-login.php:843
902
+ #: ../tags/3.2/er-custom-login.php:843 ../tags/3.3.1/er-custom-login.php:854
903
+ #: ../tags/3.3/er-custom-login.php:853 ../tags/3.4.1/er-custom-login.php:861
904
+ #: ../tags/3.4/er-custom-login.php:860 ../trunk/er-custom-login.php:867
905
+ msgid ""
906
+ "Import the plugin settings from a .json file. This file can be obtained by "
907
+ "exporting the settings on another site using the form above."
908
+ msgstr ""
909
+ "درون ریزی تنظیمات افزونه از یک فایل json. این فایل را می توان از فرم بالا در "
910
+ "یک سایت دیگر که این افزونه بر روی آن نصب شده بدست آورد."
911
+
912
+ #: ../tags/3.0/er-custom-login.php:847 ../tags/3.1/er-custom-login.php:851
913
+ #: ../tags/3.2/er-custom-login.php:851 ../tags/3.3.1/er-custom-login.php:862
914
+ #: ../tags/3.3/er-custom-login.php:861 ../tags/3.4.1/er-custom-login.php:869
915
+ #: ../tags/3.4/er-custom-login.php:868 ../trunk/er-custom-login.php:875
916
+ msgid "Import"
917
+ msgstr "درون ریزی"
918
+
919
+ #: ../tags/3.0/er-custom-login.php:871 ../tags/3.1/er-custom-login.php:875
920
+ #: ../tags/3.2/er-custom-login.php:875 ../tags/3.3.1/er-custom-login.php:886
921
+ #: ../tags/3.3/er-custom-login.php:885 ../tags/3.4.1/er-custom-login.php:893
922
+ #: ../tags/3.4/er-custom-login.php:892 ../trunk/er-custom-login.php:899
923
+ msgid ""
924
+ "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
925
+ "\" target=\"_blank\">Guillaume Vaslin</a>"
926
+ msgstr ""
927
+ "فرانسوی توسط <a href=\"https://www.linkedin.com/pub/vaslin-"
928
+ "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
929
+
930
+ #: ../tags/3.2/er-custom-login.php:876 ../tags/3.3.1/er-custom-login.php:887
931
+ #: ../tags/3.3/er-custom-login.php:886 ../tags/3.4.1/er-custom-login.php:894
932
+ #: ../tags/3.4/er-custom-login.php:893 ../trunk/er-custom-login.php:900
933
+ msgid ""
934
+ "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
935
+ "Kaulfuss</a>"
936
+ msgstr ""
937
+ "آلمانی توسط <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
938
+ "\">Peter Kaulfuss</a>"
939
+
940
+ #: ../tags/3.3.1/er-custom-login.php:619 ../tags/3.3/er-custom-login.php:618
941
+ #: ../tags/3.4.1/er-custom-login.php:626 ../tags/3.4/er-custom-login.php:625
942
+ #: ../trunk/er-custom-login.php:632
943
+ msgid "Background Opacity: "
944
+ msgstr "درصد تاری پس زمینه (Opacity):"
945
+
946
+ #: ../tags/3.3.1/er-custom-login.php:621 ../tags/3.3/er-custom-login.php:620
947
+ #: ../tags/3.4.1/er-custom-login.php:628 ../tags/3.4/er-custom-login.php:627
948
+ #: ../trunk/er-custom-login.php:634
949
+ msgid ""
950
+ "Click the box to select a color. Background Opacity will helps you to put "
951
+ "transparent color over a background image. Possible values 0 to 1. Example: "
952
+ "0.5 means 50% transparency. Default: 1 <a href=\"https://wordpress.org/"
953
+ "plugins/erident-custom-login-and-dashboard/faq/\" target=\"_blank\">More "
954
+ "Info</a>"
955
+ msgstr ""
956
+ "برای انتخا رنگ درون کادر کلیک کنید. تاری پس زمینه کمک می کند تا یک زنگ شفاف "
957
+ "را روی تصویر پس زمینه قرار دهید. مقادیر مجاز از 0 تا 1. مثال: 0.5 یعنی 50% "
958
+ "شفافیت. پیش فرض: 1 <a href=\"https://wordpress.org/plugins/erident-custom-"
959
+ "login-and-dashboard/faq/\" target=\"_blank\">اطلاعات بیشتر</a>"
960
+
961
+ #: ../tags/3.4.1/er-custom-login.php:415 ../tags/3.4.1/er-custom-login.php:633
962
+ #: ../tags/3.4/er-custom-login.php:414 ../tags/3.4/er-custom-login.php:632
963
+ #: ../trunk/er-custom-login.php:421 ../trunk/er-custom-login.php:639
964
+ msgid "Add Background Image"
965
+ msgstr "اضافه کردن تصویر پس زمینه"
966
+
967
+ #: ../tags/3.4.1/er-custom-login.php:497 ../tags/3.4/er-custom-login.php:496
968
+ #: ../trunk/er-custom-login.php:503
969
+ msgid "Add Logo"
970
+ msgstr "اضافه کردن لوگو"
971
+
972
+ #: ../tags/3.4.1/er-custom-login.php:895 ../tags/3.4/er-custom-login.php:894
973
+ #: ../trunk/er-custom-login.php:901
974
+ msgid ""
975
+ "Turkish by <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
976
+ "target=\"_blank\">Muhammet Küçük</a>"
977
+ msgstr ""
978
+ "ترکی توسط <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
979
+ "target=\"_blank\">Muhammet Küçük</a>"
980
+
981
+ #: ../trunk/er-custom-login.php:394
982
+ msgid ""
983
+ "This will replace the default \"WordPress Version\" on the bottom right side "
984
+ "of dashboard. Keep it as empty field for disabling this feature. Refresh the "
985
+ "page again to see the result after saving."
986
+ msgstr ""
987
+ "این متن جایگزین متن نسخه وردپرس در سمت چپ پانوشت پیشخوان خواهد شد. آن را به "
988
+ "عنوان زمینه خالی برای غیر فعال کردن این ویژگی. دوباره صفحه را تازه کنید برای "
989
+ "دیدن نتیجه پس از ذخیره. برای غیرفعال کردن این ویژگی گزینه آن را خالی رها "
990
+ "کنید. برای دیدن نتیجه پس از ذخیره تغییرات صفحه را مجدداً بارگزاری (تازه سازی) "
991
+ "کنید."
992
+
993
+ #: ../trunk/er-custom-login.php:902
994
+ msgid ""
995
+ "Persian by <a href=\"https://about.me/reza.heydari\" target=\"_blank\">Reza "
996
+ "Heydari</a>"
997
+ msgstr ""
998
+ "فارسی شده توسط <a href=\"https://about.me/reza.heydari\" target=\"_blank"
999
+ "\">Reza Heydari</a>"
1000
+
1001
+ #: ../trunk/er-custom-login.php:903
1002
+ msgid ""
1003
+ "Portuguese-Brazil by <a href=\"https://www.facebook.com/home.php?"
1004
+ "m2w&refid=8\" target=\"_blank\">Reza Heydari</a>"
1005
+ msgstr ""
1006
+ "پرتغالی برزیل-توسط <a href=\"https://www.facebook.com/home.php?m2w&refid=8\" "
1007
+ "target=\"_blank\">Reza Heydari</a>"
languages/erident-custom-login-and-dashboard-fr_FR.mo CHANGED
Binary file
languages/erident-custom-login-and-dashboard-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
- "POT-Creation-Date: 2015-05-11 10:42+0530\n"
5
- "PO-Revision-Date: 2015-05-11 10:42+0530\n"
6
  "Last-Translator: Guillaume Vaslin <moskito7@wanadoo.fr>\n"
7
  "Language-Team: \n"
8
  "Language: fr\n"
@@ -20,27 +20,27 @@ msgstr ""
20
  msgid "Settings"
21
  msgstr "Réglages"
22
 
23
- #: er-custom-login.php:230
24
  msgid "Please upload a valid .json file"
25
  msgstr "Veuillez charger un fichier .json valide"
26
 
27
- #: er-custom-login.php:236
28
  msgid "Please upload a file to import"
29
  msgstr "Veuillez charger un fichier à importer"
30
 
31
- #: er-custom-login.php:243
32
  msgid "New settings imported successfully!"
33
  msgstr "Nouveaux réglages importés avec succès !"
34
 
35
- #: er-custom-login.php:332
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Connexion et tableau de bord personnalisés"
38
 
39
- #: er-custom-login.php:353
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "Réglages d'Erident Custom Login and Dashboard"
42
 
43
- #: er-custom-login.php:354
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
@@ -48,19 +48,19 @@ msgstr ""
48
  "L'extension charge les valeurs par défaut pour toutes les entrées ci-"
49
  "dessous. Veuillez entrer vos propres données."
50
 
51
- #: er-custom-login.php:354
52
  msgid "Click on the header of each block to open it."
53
  msgstr "Cliquez sur le titre de chaque bloc pour l'ouvrir."
54
 
55
- #: er-custom-login.php:361
56
  msgid "Settings saved."
57
  msgstr "Réglages sauvegardés."
58
 
59
- #: er-custom-login.php:368
60
  msgid "Dashboard Settings"
61
  msgstr "Réglages du tableau de bord"
62
 
63
- #: er-custom-login.php:369
64
  msgid ""
65
  "(These settings will be reflected when a user/admin logins to the WordPress "
66
  "Dashboard)"
@@ -68,11 +68,11 @@ msgstr ""
68
  "(Ces réglages seront renvoyés quand un utilisateur/administrateur se "
69
  "connectera au tableau de bord de WordPress)"
70
 
71
- #: er-custom-login.php:374
72
  msgid "Enter the text for dashboard left side footer:"
73
  msgstr "Entrez le texte qui sera situé en bas à gauche du tableau de bord : "
74
 
75
- #: er-custom-login.php:379
76
  msgid ""
77
  "This will replace the default \"Thank you for creating with WordPress\" on "
78
  "the bottom left side of dashboard"
@@ -80,43 +80,46 @@ msgstr ""
80
  "Ceci remplacera le texte \"Merci d'utiliser WordPress\" en bas à gauche du "
81
  "tableau de bord"
82
 
83
- #: er-custom-login.php:383
84
  msgid "Enter the text for dashboard right side footer:"
85
  msgstr "Entrez le texte qui sera situé en bas à droite du tableau de bord : "
86
 
87
- #: er-custom-login.php:387
88
  msgid ""
89
  "This will replace the default \"WordPress Version\" on the bottom right side "
90
- "of dashboard"
 
91
  msgstr ""
92
- "Ceci remplacera \"Version de WordPress\" en bas à droite du tableau de bord"
 
 
93
 
94
- #: er-custom-login.php:396
95
  msgid "Login Screen Background"
96
  msgstr "Fond de l'écran de connexion"
97
 
98
- #: er-custom-login.php:397
99
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
100
  msgstr "(Les réglages suivants seront envoyés dans la page \"wp-login.php\")"
101
 
102
- #: er-custom-login.php:402
103
  msgid "Login Screen Background Color:"
104
  msgstr "Couleur du fond de l'écran de connexion : "
105
 
106
- #: er-custom-login.php:407 er-custom-login.php:617 er-custom-login.php:729
107
- #: er-custom-login.php:757 er-custom-login.php:786 er-custom-login.php:798
108
  msgid "Click the box to select a color."
109
  msgstr "Cliquez sur la boîte pour sélectionner une couleur."
110
 
111
- #: er-custom-login.php:412
112
  msgid "Login Screen Background Image:"
113
  msgstr "Image de fond de l'écran de connexion : "
114
 
115
- #: er-custom-login.php:414 er-custom-login.php:632
116
  msgid "Add Background Image"
117
  msgstr "Ajouter l'image de fond"
118
 
119
- #: er-custom-login.php:416
120
  msgid ""
121
  "Add your own pattern/image url for the screen background. Leave blank if you "
122
  "don't need any images."
@@ -124,25 +127,25 @@ msgstr ""
124
  "Ajoutez l'url de votre propre motif/image pour le fond de l'écran. Laissez "
125
  "ce champ blanc si vous ne souhaitez pas utiliser d'images."
126
 
127
- #: er-custom-login.php:420
128
  msgid "Login Screen Background Repeat"
129
  msgstr "Répétition du fond de l'écran de connexion"
130
 
131
- #: er-custom-login.php:458 er-custom-login.php:676
132
  msgid "Select an image repeat option from dropdown."
133
  msgstr ""
134
  "Sélectionnez une option de répétition pour l'image à partir du menu "
135
  "déroulant."
136
 
137
- #: er-custom-login.php:462 er-custom-login.php:681
138
  msgid "Background Position:"
139
  msgstr "Positionnement du fond : "
140
 
141
- #: er-custom-login.php:463 er-custom-login.php:682
142
  msgid "Horizontal Position: "
143
  msgstr "Positionnement horizontal : "
144
 
145
- #: er-custom-login.php:468 er-custom-login.php:687
146
  msgid ""
147
  "The background-position property sets the starting position of a background "
148
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
@@ -157,11 +160,11 @@ msgstr ""
157
  "w3schools.com/cssref/pr_background-position.asp\" target=\"_blank\">Plus "
158
  "d'infos</a>"
159
 
160
- #: er-custom-login.php:473
161
  msgid "Background Size:"
162
  msgstr "Taille du fond : "
163
 
164
- #: er-custom-login.php:477
165
  msgid ""
166
  "The background-size property specifies the size of a background image. If "
167
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
@@ -175,23 +178,23 @@ msgstr ""
175
  "percentage, cover, contain. <a href=\"http://www.w3schools.com/cssref/"
176
  "css3_pr_background-size.asp\" target=\"_blank\">Plus d'infos</a>"
177
 
178
- #: er-custom-login.php:488
179
  msgid "Login Screen Logo"
180
  msgstr "Logo de l'écran de connexion"
181
 
182
- #: er-custom-login.php:489
183
  msgid "(Change the default WordPress logo and powered by text)"
184
  msgstr "(Change le logo WordPress par défaut ainsi que le texte propulsé par)"
185
 
186
- #: er-custom-login.php:494
187
  msgid "Logo Url:"
188
  msgstr "Url du logo : "
189
 
190
- #: er-custom-login.php:496
191
  msgid "Add Logo"
192
  msgstr "Ajouter Logo"
193
 
194
- #: er-custom-login.php:498
195
  msgid ""
196
  "(URL path to image to replace default WordPress Logo. (You can upload your "
197
  "image with the WordPress media uploader)"
@@ -199,53 +202,53 @@ msgstr ""
199
  "Url de l'image pour remplacer le logo WordPress par défaut. (Vous pouvez "
200
  "envoyer votre image avec l'outil d'envoi de médias interne à WordPress)"
201
 
202
- #: er-custom-login.php:503
203
  msgid "Logo Width:"
204
  msgstr "Largeur du logo : "
205
 
206
- #: er-custom-login.php:507
207
  msgid "Your Logo width(Enter in pixels). Default: 274px"
208
  msgstr "Largeur de votre logo (entrez-la en pixels). Par défaut : 274 px"
209
 
210
- #: er-custom-login.php:511
211
  msgid "Logo Height:"
212
  msgstr "Hauteur du logo : "
213
 
214
- #: er-custom-login.php:515
215
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
216
  msgstr "Hauteur de votre logo (entrez-la en pixels). Par défaut : 63 px"
217
 
218
- #: er-custom-login.php:520
219
  msgid "Powered by Text:"
220
  msgstr "Texte propulsé par : "
221
 
222
- #: er-custom-login.php:524
223
  msgid "Show when mouse hover over custom Login logo"
224
  msgstr ""
225
  "Montré quand la souris passe au-dessus du logo de connexion personnalisé"
226
 
227
- #: er-custom-login.php:534
228
  msgid "Login Form Settings"
229
  msgstr "Réglages du formulaire de connexion"
230
 
231
- #: er-custom-login.php:535
232
  msgid "(The following settings will change the Login Form style)"
233
  msgstr ""
234
  "(Les réglages suivants vont changer le style du formulaire de connexion)"
235
 
236
- #: er-custom-login.php:540
237
  msgid "Login form width:"
238
  msgstr "Largeur du formulaire de connexion : "
239
 
240
- #: er-custom-login.php:544
241
  msgid "Total Form width(Enter in pixels). Default: 350px"
242
  msgstr "Largeur totale du formulaire (Entrez-la en pixels). Par défaut : 350px"
243
 
244
- #: er-custom-login.php:548
245
  msgid "Login Form Border Radius:"
246
  msgstr "Radius de la bordure du formulaire de connexion : "
247
 
248
- #: er-custom-login.php:552
249
  msgid ""
250
  "Border Radius of Login Form. This is the option to make the corners rounded."
251
  "(Enter in pixels)"
@@ -253,35 +256,35 @@ msgstr ""
253
  "Radius de la bordure du formulaire de connexion. Cette option permet "
254
  "d'obtenir des coins arrondis. (Entrez la valeur en pixels)"
255
 
256
- #: er-custom-login.php:556
257
  msgid "Login Border Style"
258
  msgstr "Style de la bordure du formulaire de connexion"
259
 
260
- #: er-custom-login.php:600
261
  msgid "Select a Border Style option from dropdown."
262
  msgstr "Sélectionnez une option de style à partir de la liste déroulante."
263
 
264
- #: er-custom-login.php:604
265
  msgid "Login Border Thickness:"
266
  msgstr "Finesse de la bordure du formulaire de connexion : "
267
 
268
- #: er-custom-login.php:608
269
  msgid "Thickness of Border (Enter value in pixels)"
270
  msgstr "Finesse de la bordure (Entrez-là en pixels)"
271
 
272
- #: er-custom-login.php:612
273
  msgid "Login Border Color:"
274
  msgstr "Couleur de la bordure de la fenêtre de connexion : "
275
 
276
- #: er-custom-login.php:621
277
  msgid "Login Form Background Color:"
278
  msgstr "Couleur de fond du formulaire de connexion : "
279
 
280
- #: er-custom-login.php:625
281
  msgid "Background Opacity: "
282
  msgstr "Opacité du fond : "
283
 
284
- #: er-custom-login.php:627
285
  msgid ""
286
  "Click the box to select a color. Background Opacity will helps you to put "
287
  "transparent color over a background image. Possible values 0 to 1. Example: "
@@ -296,11 +299,11 @@ msgstr ""
296
  "plugins/erident-custom-login-and-dashboard/faq/\" target=\"_blank\">Plus "
297
  "d'infos</a>"
298
 
299
- #: er-custom-login.php:631
300
  msgid "Login Form Background Image:"
301
  msgstr "Image de fond du formulaire de connexion : "
302
 
303
- #: er-custom-login.php:634
304
  msgid ""
305
  "Add your own pattern/image url to the form background. Leave blank if you "
306
  "don't need any images."
@@ -308,19 +311,19 @@ msgstr ""
308
  "Ajoutez l'url de votre propre motif/image pour le fond du formulaire. "
309
  "Laissez ce champ blanc si vous ne souhaitez pas utiliser d'images."
310
 
311
- #: er-custom-login.php:638
312
  msgid "Login Form Background Repeat"
313
  msgstr "Répétition du fond du formulaire de connexion"
314
 
315
- #: er-custom-login.php:684
316
  msgid "Vertical Position: "
317
  msgstr "Positionnement vertical : "
318
 
319
- #: er-custom-login.php:692
320
  msgid "Login Form Label Text Color"
321
  msgstr "Couleur du texte des étiquettes du formulaire de connexion"
322
 
323
- #: er-custom-login.php:697
324
  msgid ""
325
  "Click the box to select a color. This will change the color of label "
326
  "Username/Password"
@@ -328,21 +331,21 @@ msgstr ""
328
  "Cliquez sur la boîte pour sélectionner une couleur. Ceci changera la couleur "
329
  "de l'étiquette Utilisateur/Mot de passe"
330
 
331
- #: er-custom-login.php:701
332
  msgid "Login Form Label Text Size:"
333
  msgstr "Taille du texte des étiquettes du formulaire de connexion : "
334
 
335
- #: er-custom-login.php:704
336
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
337
  msgstr ""
338
  "Taille des caractères de l'étiquette Utilisateur/Mot de passe (Entrez la "
339
  "valeur en pixels)"
340
 
341
- #: er-custom-login.php:708
342
  msgid "Login Form Input Text Color"
343
  msgstr "Couleur du texte entré dans le formulaire de connexion"
344
 
345
- #: er-custom-login.php:713
346
  msgid ""
347
  "Click the box to select a color. This will change the color of text inside "
348
  "text box."
@@ -350,62 +353,62 @@ msgstr ""
350
  "Cliquez sur la boîte pour sélectionner une couleur. Ceci changera la couleur "
351
  "du texte dans le champ de texte."
352
 
353
- #: er-custom-login.php:717
354
  msgid "Login Form Input Text Size:"
355
  msgstr "Taille du texte saisi dans le formulaire de connexion"
356
 
357
- #: er-custom-login.php:720
358
  msgid "Font Size of text inside text box(Enter value in pixels)"
359
  msgstr ""
360
  "Taille des caractères saisis dans les champs de caractères (Entrez la valeur "
361
  "en pixels)"
362
 
363
- #: er-custom-login.php:724
364
  msgid "Login Form Link Color"
365
  msgstr "Couleur des liens dans le formulaire de connexion"
366
 
367
- #: er-custom-login.php:734
368
  msgid "Enable link shadow?"
369
  msgstr "Activer l'ombre du lien ? "
370
 
371
- #: er-custom-login.php:742 er-custom-login.php:771 er-custom-login.php:822
372
  msgid "Yes"
373
  msgstr "Oui"
374
 
375
- #: er-custom-login.php:746 er-custom-login.php:775 er-custom-login.php:826
376
  msgid "No"
377
  msgstr "Non"
378
 
379
- #: er-custom-login.php:748 er-custom-login.php:777
380
  msgid "(Check an option)"
381
  msgstr "(Vérifiez une option)"
382
 
383
- #: er-custom-login.php:752
384
  msgid "Login Form Link Shadow Color"
385
  msgstr "Couleur de l'ombre du lien dans le formulaire de connexion"
386
 
387
- #: er-custom-login.php:763
388
  msgid "Enable form shadow?"
389
  msgstr "Activer l'ombre du formulaire ?"
390
 
391
- #: er-custom-login.php:781
392
  msgid "Login Form Shadow Color"
393
  msgstr "Couleur de l'ombre du formulaire de connexion"
394
 
395
- #: er-custom-login.php:793
396
  msgid "Login Button Color"
397
  msgstr "Couleur du bouton de connexion"
398
 
399
- #: er-custom-login.php:809
400
  msgid "Plugin Un-install Settings"
401
  msgstr "Réglages de la désinstallation de l'extension"
402
 
403
- #: er-custom-login.php:814
404
  msgid "Delete custom settings upon plugin deactivation?"
405
  msgstr ""
406
  "Effacer les réglages personnalisés lors de la désactivation de l'extension"
407
 
408
- #: er-custom-login.php:828
409
  msgid ""
410
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
411
  "plugin deactivation)"
@@ -413,15 +416,15 @@ msgstr ""
413
  "(Si vous laissez sur \"oui\" tous les réglages personnalisés seront effacés "
414
  "de la base de données lors de la désactivation de l'extension)"
415
 
416
- #: er-custom-login.php:836
417
  msgid "Save Changes"
418
  msgstr "Sauvegarder les changements"
419
 
420
- #: er-custom-login.php:843
421
  msgid "Export Settings"
422
  msgstr "Exporter les réglages"
423
 
424
- #: er-custom-login.php:845
425
  msgid ""
426
  "Export the plugin settings for this site as a .json file. This allows you to "
427
  "easily import the configuration into another site."
@@ -429,15 +432,15 @@ msgstr ""
429
  "Exporter les réglages de l'extension sous la forme d'un fichier .json. Ceci "
430
  "vous permettra d'importer la configuration dans un autre site."
431
 
432
- #: er-custom-login.php:850
433
  msgid "Export"
434
  msgstr "Exporter"
435
 
436
- #: er-custom-login.php:858
437
  msgid "Import Settings"
438
  msgstr "Réglages d'importation"
439
 
440
- #: er-custom-login.php:860
441
  msgid ""
442
  "Import the plugin settings from a .json file. This file can be obtained by "
443
  "exporting the settings on another site using the form above."
@@ -446,39 +449,39 @@ msgstr ""
446
  "obtenu en exportant les réglages d'un autre site en utilisant le formulaire "
447
  "ci-dessus."
448
 
449
- #: er-custom-login.php:868
450
  msgid "Import"
451
  msgstr "Importer"
452
 
453
- #: er-custom-login.php:876
454
  msgid "Quick Links"
455
  msgstr "Liens rapides"
456
 
457
- #: er-custom-login.php:878
458
  msgid "Open Your WP Login Page in a New Tab"
459
  msgstr "Ouvrir votre page de connexion WP dans un nouvel onglet"
460
 
461
- #: er-custom-login.php:879
462
  msgid "Plugin Documentation"
463
  msgstr "Documentation de l'extension"
464
 
465
- #: er-custom-login.php:880
466
  msgid "Plugin Support Page"
467
  msgstr "Page de support de l'extension"
468
 
469
- #: er-custom-login.php:881
470
  msgid "Feature Request/Suggestions?"
471
  msgstr "Une requête/suggestion de fonctionnalité ?"
472
 
473
- #: er-custom-login.php:882
474
  msgid "Got some Love? Give us a 5 star rating!"
475
  msgstr "Vous aimez ? Donnez-nous une note de 5 étoiles !"
476
 
477
- #: er-custom-login.php:886
478
  msgid "Hire Me"
479
  msgstr "Louez moi"
480
 
481
- #: er-custom-login.php:887
482
  msgid ""
483
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
484
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
@@ -491,11 +494,11 @@ msgstr ""
491
  "libin@libin.in\">libin@libin.in</a> <br/>Portfolio en ligne : <a href="
492
  "\"http://www.libin.in\" target=\"_blank\">www.libin.in</a>"
493
 
494
- #: er-custom-login.php:889
495
  msgid "Translation Credits"
496
  msgstr "Crédits de traduction"
497
 
498
- #: er-custom-login.php:891
499
  msgid ""
500
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
501
  "\">Adriana De La Cuadra</a>"
@@ -503,7 +506,7 @@ msgstr ""
503
  "Espagnol par <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
504
  "\">Adriana De La Cuadra</a>"
505
 
506
- #: er-custom-login.php:892
507
  msgid ""
508
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
509
  "\" target=\"_blank\">Guillaume Vaslin</a>"
@@ -511,7 +514,7 @@ msgstr ""
511
  "Français par <a href=\"https://www.linkedin.com/pub/vaslin-"
512
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
513
 
514
- #: er-custom-login.php:893
515
  msgid ""
516
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
517
  "Kaulfuss</a>"
@@ -519,7 +522,7 @@ msgstr ""
519
  "Allemande par <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
520
  "\">Peter Kaulfuss</a>"
521
 
522
- #: er-custom-login.php:894
523
  msgid ""
524
  "Turkish by <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
525
  "target=\"_blank\">Muhammet Küçük</a>"
@@ -527,7 +530,23 @@ msgstr ""
527
  "Turkish par <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
528
  "target=\"_blank\">Muhammet Küçük</a>"
529
 
530
- #: er-custom-login.php:896
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
531
  msgid "Do you wants to translate this plugin to your language? Email me!"
532
  msgstr ""
533
  "Vous voulez traduire cette extension dans votre langue ? Envoyez-moi un "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
+ "POT-Creation-Date: 2015-06-10 18:21+0530\n"
5
+ "PO-Revision-Date: 2015-06-10 18:22+0530\n"
6
  "Last-Translator: Guillaume Vaslin <moskito7@wanadoo.fr>\n"
7
  "Language-Team: \n"
8
  "Language: fr\n"
20
  msgid "Settings"
21
  msgstr "Réglages"
22
 
23
+ #: er-custom-login.php:235
24
  msgid "Please upload a valid .json file"
25
  msgstr "Veuillez charger un fichier .json valide"
26
 
27
+ #: er-custom-login.php:241
28
  msgid "Please upload a file to import"
29
  msgstr "Veuillez charger un fichier à importer"
30
 
31
+ #: er-custom-login.php:248
32
  msgid "New settings imported successfully!"
33
  msgstr "Nouveaux réglages importés avec succès !"
34
 
35
+ #: er-custom-login.php:337
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Connexion et tableau de bord personnalisés"
38
 
39
+ #: er-custom-login.php:358
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "Réglages d'Erident Custom Login and Dashboard"
42
 
43
+ #: er-custom-login.php:359
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
48
  "L'extension charge les valeurs par défaut pour toutes les entrées ci-"
49
  "dessous. Veuillez entrer vos propres données."
50
 
51
+ #: er-custom-login.php:359
52
  msgid "Click on the header of each block to open it."
53
  msgstr "Cliquez sur le titre de chaque bloc pour l'ouvrir."
54
 
55
+ #: er-custom-login.php:367
56
  msgid "Settings saved."
57
  msgstr "Réglages sauvegardés."
58
 
59
+ #: er-custom-login.php:375
60
  msgid "Dashboard Settings"
61
  msgstr "Réglages du tableau de bord"
62
 
63
+ #: er-custom-login.php:376
64
  msgid ""
65
  "(These settings will be reflected when a user/admin logins to the WordPress "
66
  "Dashboard)"
68
  "(Ces réglages seront renvoyés quand un utilisateur/administrateur se "
69
  "connectera au tableau de bord de WordPress)"
70
 
71
+ #: er-custom-login.php:381
72
  msgid "Enter the text for dashboard left side footer:"
73
  msgstr "Entrez le texte qui sera situé en bas à gauche du tableau de bord : "
74
 
75
+ #: er-custom-login.php:386
76
  msgid ""
77
  "This will replace the default \"Thank you for creating with WordPress\" on "
78
  "the bottom left side of dashboard"
80
  "Ceci remplacera le texte \"Merci d'utiliser WordPress\" en bas à gauche du "
81
  "tableau de bord"
82
 
83
+ #: er-custom-login.php:390
84
  msgid "Enter the text for dashboard right side footer:"
85
  msgstr "Entrez le texte qui sera situé en bas à droite du tableau de bord : "
86
 
87
+ #: er-custom-login.php:394
88
  msgid ""
89
  "This will replace the default \"WordPress Version\" on the bottom right side "
90
+ "of dashboard. Keep it as empty field for disabling this feature. Refresh the "
91
+ "page again to see the result after saving."
92
  msgstr ""
93
+ "Ceci remplacera \"Version de WordPress\" en bas à droite du tableau de bord. "
94
+ "Gardez-le comme champ vide pour désactiver cette fonctionnalité. Actualiser "
95
+ "à nouveau la page pour voir le résultat après l'enregistrement."
96
 
97
+ #: er-custom-login.php:403
98
  msgid "Login Screen Background"
99
  msgstr "Fond de l'écran de connexion"
100
 
101
+ #: er-custom-login.php:404
102
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
103
  msgstr "(Les réglages suivants seront envoyés dans la page \"wp-login.php\")"
104
 
105
+ #: er-custom-login.php:409
106
  msgid "Login Screen Background Color:"
107
  msgstr "Couleur du fond de l'écran de connexion : "
108
 
109
+ #: er-custom-login.php:414 er-custom-login.php:624 er-custom-login.php:736
110
+ #: er-custom-login.php:764 er-custom-login.php:793 er-custom-login.php:805
111
  msgid "Click the box to select a color."
112
  msgstr "Cliquez sur la boîte pour sélectionner une couleur."
113
 
114
+ #: er-custom-login.php:419
115
  msgid "Login Screen Background Image:"
116
  msgstr "Image de fond de l'écran de connexion : "
117
 
118
+ #: er-custom-login.php:421 er-custom-login.php:639
119
  msgid "Add Background Image"
120
  msgstr "Ajouter l'image de fond"
121
 
122
+ #: er-custom-login.php:423
123
  msgid ""
124
  "Add your own pattern/image url for the screen background. Leave blank if you "
125
  "don't need any images."
127
  "Ajoutez l'url de votre propre motif/image pour le fond de l'écran. Laissez "
128
  "ce champ blanc si vous ne souhaitez pas utiliser d'images."
129
 
130
+ #: er-custom-login.php:427
131
  msgid "Login Screen Background Repeat"
132
  msgstr "Répétition du fond de l'écran de connexion"
133
 
134
+ #: er-custom-login.php:465 er-custom-login.php:683
135
  msgid "Select an image repeat option from dropdown."
136
  msgstr ""
137
  "Sélectionnez une option de répétition pour l'image à partir du menu "
138
  "déroulant."
139
 
140
+ #: er-custom-login.php:469 er-custom-login.php:688
141
  msgid "Background Position:"
142
  msgstr "Positionnement du fond : "
143
 
144
+ #: er-custom-login.php:470 er-custom-login.php:689
145
  msgid "Horizontal Position: "
146
  msgstr "Positionnement horizontal : "
147
 
148
+ #: er-custom-login.php:475 er-custom-login.php:694
149
  msgid ""
150
  "The background-position property sets the starting position of a background "
151
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
160
  "w3schools.com/cssref/pr_background-position.asp\" target=\"_blank\">Plus "
161
  "d'infos</a>"
162
 
163
+ #: er-custom-login.php:480
164
  msgid "Background Size:"
165
  msgstr "Taille du fond : "
166
 
167
+ #: er-custom-login.php:484
168
  msgid ""
169
  "The background-size property specifies the size of a background image. If "
170
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
178
  "percentage, cover, contain. <a href=\"http://www.w3schools.com/cssref/"
179
  "css3_pr_background-size.asp\" target=\"_blank\">Plus d'infos</a>"
180
 
181
+ #: er-custom-login.php:495
182
  msgid "Login Screen Logo"
183
  msgstr "Logo de l'écran de connexion"
184
 
185
+ #: er-custom-login.php:496
186
  msgid "(Change the default WordPress logo and powered by text)"
187
  msgstr "(Change le logo WordPress par défaut ainsi que le texte propulsé par)"
188
 
189
+ #: er-custom-login.php:501
190
  msgid "Logo Url:"
191
  msgstr "Url du logo : "
192
 
193
+ #: er-custom-login.php:503
194
  msgid "Add Logo"
195
  msgstr "Ajouter Logo"
196
 
197
+ #: er-custom-login.php:505
198
  msgid ""
199
  "(URL path to image to replace default WordPress Logo. (You can upload your "
200
  "image with the WordPress media uploader)"
202
  "Url de l'image pour remplacer le logo WordPress par défaut. (Vous pouvez "
203
  "envoyer votre image avec l'outil d'envoi de médias interne à WordPress)"
204
 
205
+ #: er-custom-login.php:510
206
  msgid "Logo Width:"
207
  msgstr "Largeur du logo : "
208
 
209
+ #: er-custom-login.php:514
210
  msgid "Your Logo width(Enter in pixels). Default: 274px"
211
  msgstr "Largeur de votre logo (entrez-la en pixels). Par défaut : 274 px"
212
 
213
+ #: er-custom-login.php:518
214
  msgid "Logo Height:"
215
  msgstr "Hauteur du logo : "
216
 
217
+ #: er-custom-login.php:522
218
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
219
  msgstr "Hauteur de votre logo (entrez-la en pixels). Par défaut : 63 px"
220
 
221
+ #: er-custom-login.php:527
222
  msgid "Powered by Text:"
223
  msgstr "Texte propulsé par : "
224
 
225
+ #: er-custom-login.php:531
226
  msgid "Show when mouse hover over custom Login logo"
227
  msgstr ""
228
  "Montré quand la souris passe au-dessus du logo de connexion personnalisé"
229
 
230
+ #: er-custom-login.php:541
231
  msgid "Login Form Settings"
232
  msgstr "Réglages du formulaire de connexion"
233
 
234
+ #: er-custom-login.php:542
235
  msgid "(The following settings will change the Login Form style)"
236
  msgstr ""
237
  "(Les réglages suivants vont changer le style du formulaire de connexion)"
238
 
239
+ #: er-custom-login.php:547
240
  msgid "Login form width:"
241
  msgstr "Largeur du formulaire de connexion : "
242
 
243
+ #: er-custom-login.php:551
244
  msgid "Total Form width(Enter in pixels). Default: 350px"
245
  msgstr "Largeur totale du formulaire (Entrez-la en pixels). Par défaut : 350px"
246
 
247
+ #: er-custom-login.php:555
248
  msgid "Login Form Border Radius:"
249
  msgstr "Radius de la bordure du formulaire de connexion : "
250
 
251
+ #: er-custom-login.php:559
252
  msgid ""
253
  "Border Radius of Login Form. This is the option to make the corners rounded."
254
  "(Enter in pixels)"
256
  "Radius de la bordure du formulaire de connexion. Cette option permet "
257
  "d'obtenir des coins arrondis. (Entrez la valeur en pixels)"
258
 
259
+ #: er-custom-login.php:563
260
  msgid "Login Border Style"
261
  msgstr "Style de la bordure du formulaire de connexion"
262
 
263
+ #: er-custom-login.php:607
264
  msgid "Select a Border Style option from dropdown."
265
  msgstr "Sélectionnez une option de style à partir de la liste déroulante."
266
 
267
+ #: er-custom-login.php:611
268
  msgid "Login Border Thickness:"
269
  msgstr "Finesse de la bordure du formulaire de connexion : "
270
 
271
+ #: er-custom-login.php:615
272
  msgid "Thickness of Border (Enter value in pixels)"
273
  msgstr "Finesse de la bordure (Entrez-là en pixels)"
274
 
275
+ #: er-custom-login.php:619
276
  msgid "Login Border Color:"
277
  msgstr "Couleur de la bordure de la fenêtre de connexion : "
278
 
279
+ #: er-custom-login.php:628
280
  msgid "Login Form Background Color:"
281
  msgstr "Couleur de fond du formulaire de connexion : "
282
 
283
+ #: er-custom-login.php:632
284
  msgid "Background Opacity: "
285
  msgstr "Opacité du fond : "
286
 
287
+ #: er-custom-login.php:634
288
  msgid ""
289
  "Click the box to select a color. Background Opacity will helps you to put "
290
  "transparent color over a background image. Possible values 0 to 1. Example: "
299
  "plugins/erident-custom-login-and-dashboard/faq/\" target=\"_blank\">Plus "
300
  "d'infos</a>"
301
 
302
+ #: er-custom-login.php:638
303
  msgid "Login Form Background Image:"
304
  msgstr "Image de fond du formulaire de connexion : "
305
 
306
+ #: er-custom-login.php:641
307
  msgid ""
308
  "Add your own pattern/image url to the form background. Leave blank if you "
309
  "don't need any images."
311
  "Ajoutez l'url de votre propre motif/image pour le fond du formulaire. "
312
  "Laissez ce champ blanc si vous ne souhaitez pas utiliser d'images."
313
 
314
+ #: er-custom-login.php:645
315
  msgid "Login Form Background Repeat"
316
  msgstr "Répétition du fond du formulaire de connexion"
317
 
318
+ #: er-custom-login.php:691
319
  msgid "Vertical Position: "
320
  msgstr "Positionnement vertical : "
321
 
322
+ #: er-custom-login.php:699
323
  msgid "Login Form Label Text Color"
324
  msgstr "Couleur du texte des étiquettes du formulaire de connexion"
325
 
326
+ #: er-custom-login.php:704
327
  msgid ""
328
  "Click the box to select a color. This will change the color of label "
329
  "Username/Password"
331
  "Cliquez sur la boîte pour sélectionner une couleur. Ceci changera la couleur "
332
  "de l'étiquette Utilisateur/Mot de passe"
333
 
334
+ #: er-custom-login.php:708
335
  msgid "Login Form Label Text Size:"
336
  msgstr "Taille du texte des étiquettes du formulaire de connexion : "
337
 
338
+ #: er-custom-login.php:711
339
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
340
  msgstr ""
341
  "Taille des caractères de l'étiquette Utilisateur/Mot de passe (Entrez la "
342
  "valeur en pixels)"
343
 
344
+ #: er-custom-login.php:715
345
  msgid "Login Form Input Text Color"
346
  msgstr "Couleur du texte entré dans le formulaire de connexion"
347
 
348
+ #: er-custom-login.php:720
349
  msgid ""
350
  "Click the box to select a color. This will change the color of text inside "
351
  "text box."
353
  "Cliquez sur la boîte pour sélectionner une couleur. Ceci changera la couleur "
354
  "du texte dans le champ de texte."
355
 
356
+ #: er-custom-login.php:724
357
  msgid "Login Form Input Text Size:"
358
  msgstr "Taille du texte saisi dans le formulaire de connexion"
359
 
360
+ #: er-custom-login.php:727
361
  msgid "Font Size of text inside text box(Enter value in pixels)"
362
  msgstr ""
363
  "Taille des caractères saisis dans les champs de caractères (Entrez la valeur "
364
  "en pixels)"
365
 
366
+ #: er-custom-login.php:731
367
  msgid "Login Form Link Color"
368
  msgstr "Couleur des liens dans le formulaire de connexion"
369
 
370
+ #: er-custom-login.php:741
371
  msgid "Enable link shadow?"
372
  msgstr "Activer l'ombre du lien ? "
373
 
374
+ #: er-custom-login.php:749 er-custom-login.php:778 er-custom-login.php:829
375
  msgid "Yes"
376
  msgstr "Oui"
377
 
378
+ #: er-custom-login.php:753 er-custom-login.php:782 er-custom-login.php:833
379
  msgid "No"
380
  msgstr "Non"
381
 
382
+ #: er-custom-login.php:755 er-custom-login.php:784
383
  msgid "(Check an option)"
384
  msgstr "(Vérifiez une option)"
385
 
386
+ #: er-custom-login.php:759
387
  msgid "Login Form Link Shadow Color"
388
  msgstr "Couleur de l'ombre du lien dans le formulaire de connexion"
389
 
390
+ #: er-custom-login.php:770
391
  msgid "Enable form shadow?"
392
  msgstr "Activer l'ombre du formulaire ?"
393
 
394
+ #: er-custom-login.php:788
395
  msgid "Login Form Shadow Color"
396
  msgstr "Couleur de l'ombre du formulaire de connexion"
397
 
398
+ #: er-custom-login.php:800
399
  msgid "Login Button Color"
400
  msgstr "Couleur du bouton de connexion"
401
 
402
+ #: er-custom-login.php:816
403
  msgid "Plugin Un-install Settings"
404
  msgstr "Réglages de la désinstallation de l'extension"
405
 
406
+ #: er-custom-login.php:821
407
  msgid "Delete custom settings upon plugin deactivation?"
408
  msgstr ""
409
  "Effacer les réglages personnalisés lors de la désactivation de l'extension"
410
 
411
+ #: er-custom-login.php:835
412
  msgid ""
413
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
414
  "plugin deactivation)"
416
  "(Si vous laissez sur \"oui\" tous les réglages personnalisés seront effacés "
417
  "de la base de données lors de la désactivation de l'extension)"
418
 
419
+ #: er-custom-login.php:843
420
  msgid "Save Changes"
421
  msgstr "Sauvegarder les changements"
422
 
423
+ #: er-custom-login.php:850
424
  msgid "Export Settings"
425
  msgstr "Exporter les réglages"
426
 
427
+ #: er-custom-login.php:852
428
  msgid ""
429
  "Export the plugin settings for this site as a .json file. This allows you to "
430
  "easily import the configuration into another site."
432
  "Exporter les réglages de l'extension sous la forme d'un fichier .json. Ceci "
433
  "vous permettra d'importer la configuration dans un autre site."
434
 
435
+ #: er-custom-login.php:857
436
  msgid "Export"
437
  msgstr "Exporter"
438
 
439
+ #: er-custom-login.php:865
440
  msgid "Import Settings"
441
  msgstr "Réglages d'importation"
442
 
443
+ #: er-custom-login.php:867
444
  msgid ""
445
  "Import the plugin settings from a .json file. This file can be obtained by "
446
  "exporting the settings on another site using the form above."
449
  "obtenu en exportant les réglages d'un autre site en utilisant le formulaire "
450
  "ci-dessus."
451
 
452
+ #: er-custom-login.php:875
453
  msgid "Import"
454
  msgstr "Importer"
455
 
456
+ #: er-custom-login.php:883
457
  msgid "Quick Links"
458
  msgstr "Liens rapides"
459
 
460
+ #: er-custom-login.php:885
461
  msgid "Open Your WP Login Page in a New Tab"
462
  msgstr "Ouvrir votre page de connexion WP dans un nouvel onglet"
463
 
464
+ #: er-custom-login.php:886
465
  msgid "Plugin Documentation"
466
  msgstr "Documentation de l'extension"
467
 
468
+ #: er-custom-login.php:887
469
  msgid "Plugin Support Page"
470
  msgstr "Page de support de l'extension"
471
 
472
+ #: er-custom-login.php:888
473
  msgid "Feature Request/Suggestions?"
474
  msgstr "Une requête/suggestion de fonctionnalité ?"
475
 
476
+ #: er-custom-login.php:889
477
  msgid "Got some Love? Give us a 5 star rating!"
478
  msgstr "Vous aimez ? Donnez-nous une note de 5 étoiles !"
479
 
480
+ #: er-custom-login.php:893
481
  msgid "Hire Me"
482
  msgstr "Louez moi"
483
 
484
+ #: er-custom-login.php:894
485
  msgid ""
486
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
487
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
494
  "libin@libin.in\">libin@libin.in</a> <br/>Portfolio en ligne : <a href="
495
  "\"http://www.libin.in\" target=\"_blank\">www.libin.in</a>"
496
 
497
+ #: er-custom-login.php:896
498
  msgid "Translation Credits"
499
  msgstr "Crédits de traduction"
500
 
501
+ #: er-custom-login.php:898
502
  msgid ""
503
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
504
  "\">Adriana De La Cuadra</a>"
506
  "Espagnol par <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
507
  "\">Adriana De La Cuadra</a>"
508
 
509
+ #: er-custom-login.php:899
510
  msgid ""
511
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
512
  "\" target=\"_blank\">Guillaume Vaslin</a>"
514
  "Français par <a href=\"https://www.linkedin.com/pub/vaslin-"
515
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
516
 
517
+ #: er-custom-login.php:900
518
  msgid ""
519
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
520
  "Kaulfuss</a>"
522
  "Allemande par <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
523
  "\">Peter Kaulfuss</a>"
524
 
525
+ #: er-custom-login.php:901
526
  msgid ""
527
  "Turkish by <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
528
  "target=\"_blank\">Muhammet Küçük</a>"
530
  "Turkish par <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
531
  "target=\"_blank\">Muhammet Küçük</a>"
532
 
533
+ #: er-custom-login.php:902
534
+ msgid ""
535
+ "Persian by <a href=\"https://about.me/reza.heydari\" target=\"_blank\">Reza "
536
+ "Heydari</a>"
537
+ msgstr ""
538
+ "Persian par <a href=\"https://about.me/reza.heydari\" target=\"_blank\">Reza "
539
+ "Heydari</a>"
540
+
541
+ #: er-custom-login.php:903
542
+ msgid ""
543
+ "Portuguese-Brazil by <a href=\"https://www.facebook.com/home.php?"
544
+ "m2w&refid=8\" target=\"_blank\">Reza Heydari</a>"
545
+ msgstr ""
546
+ "Portuguese-Brazil par <a href=\"https://www.facebook.com/home.php?"
547
+ "m2w&refid=8\" target=\"_blank\">Reza Heydari</a>"
548
+
549
+ #: er-custom-login.php:905
550
  msgid "Do you wants to translate this plugin to your language? Email me!"
551
  msgstr ""
552
  "Vous voulez traduire cette extension dans votre langue ? Envoyez-moi un "
languages/erident-custom-login-and-dashboard-pt_BR.mo ADDED
Binary file
languages/erident-custom-login-and-dashboard-pt_BR.po ADDED
@@ -0,0 +1,548 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Erident\n"
4
+ "POT-Creation-Date: 2015-06-10 18:22+0530\n"
5
+ "PO-Revision-Date: 2015-06-10 18:22+0530\n"
6
+ "Last-Translator: Libin <libin@libin.in>\n"
7
+ "Language-Team: \n"
8
+ "Language: pt_BR\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.11\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
15
+ "X-Poedit-KeywordsList: __;_e\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: er-custom-login.php:44
20
+ msgid "Settings"
21
+ msgstr "Configurações"
22
+
23
+ #: er-custom-login.php:235
24
+ msgid "Please upload a valid .json file"
25
+ msgstr "Por favor, carregue um arquivo .json válido"
26
+
27
+ #: er-custom-login.php:241
28
+ msgid "Please upload a file to import"
29
+ msgstr "Carregar arquivo para importação"
30
+
31
+ #: er-custom-login.php:248
32
+ msgid "New settings imported successfully!"
33
+ msgstr "Novas configurações importadas com sucesso"
34
+
35
+ #: er-custom-login.php:337
36
+ msgid "Custom Login and Dashboard"
37
+ msgstr "Custom Login e Painel de Controle"
38
+
39
+ #: er-custom-login.php:358
40
+ msgid "Erident Custom Login and Dashboard Settings"
41
+ msgstr "Configurações Erident Custom Login e Painel de Controle"
42
+
43
+ #: er-custom-login.php:359
44
+ msgid ""
45
+ "Plugin Loads default values for all below entries. Please change the values "
46
+ "to yours."
47
+ msgstr ""
48
+ "O Plugin carregou o valor padrão para todas as entradas. Por favor, mude os "
49
+ "valores a seu gosto."
50
+
51
+ #: er-custom-login.php:359
52
+ msgid "Click on the header of each block to open it."
53
+ msgstr "Clique sobre o cabeçalho para abrir determinado bloco"
54
+
55
+ #: er-custom-login.php:367
56
+ msgid "Settings saved."
57
+ msgstr "Configurações salvas."
58
+
59
+ #: er-custom-login.php:375
60
+ msgid "Dashboard Settings"
61
+ msgstr "Configurações do Painel de Controle"
62
+
63
+ #: er-custom-login.php:376
64
+ msgid ""
65
+ "(These settings will be reflected when a user/admin logins to the WordPress "
66
+ "Dashboard)"
67
+ msgstr ""
68
+ "(Estas configurações refletirão quando um usuário/administrador efetuar "
69
+ "login no Painel de Controle do Wordpress)"
70
+
71
+ #: er-custom-login.php:381
72
+ msgid "Enter the text for dashboard left side footer:"
73
+ msgstr "Digite o texto para o rodapé esquerdo do Painel de Controle:"
74
+
75
+ #: er-custom-login.php:386
76
+ msgid ""
77
+ "This will replace the default \"Thank you for creating with WordPress\" on "
78
+ "the bottom left side of dashboard"
79
+ msgstr ""
80
+ "Esta configuração irá repor a frase padrão \"Thank you for creating with "
81
+ "Wordpress\" no lado inferior esquerdo do Painel de Controle."
82
+
83
+ #: er-custom-login.php:390
84
+ msgid "Enter the text for dashboard right side footer:"
85
+ msgstr "Digite o texto para o rodapé direito do Painel de Controle:"
86
+
87
+ #: er-custom-login.php:394
88
+ msgid ""
89
+ "This will replace the default \"WordPress Version\" on the bottom right side "
90
+ "of dashboard. Keep it as empty field for disabling this feature. Refresh the "
91
+ "page again to see the result after saving."
92
+ msgstr ""
93
+ "Isto irá repor a frase padrão \"WordPress Version\" no lado inferior direito "
94
+ "do Painel de Controle. Deixe em branco este campo para desabilitar esta "
95
+ "opção. Atualize a página novamente para ver as mudanças depois de salvar."
96
+
97
+ #: er-custom-login.php:403
98
+ msgid "Login Screen Background"
99
+ msgstr "Fundo da tela de Login"
100
+
101
+ #: er-custom-login.php:404
102
+ msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
103
+ msgstr "(Estas configurações irão aparecer na página \"wp-login.php\")"
104
+
105
+ #: er-custom-login.php:409
106
+ msgid "Login Screen Background Color:"
107
+ msgstr "Cor de fundo da tela de Login"
108
+
109
+ #: er-custom-login.php:414 er-custom-login.php:624 er-custom-login.php:736
110
+ #: er-custom-login.php:764 er-custom-login.php:793 er-custom-login.php:805
111
+ msgid "Click the box to select a color."
112
+ msgstr "Clique no campo acima para selecionar a Cor:"
113
+
114
+ #: er-custom-login.php:419
115
+ msgid "Login Screen Background Image:"
116
+ msgstr "Imagem de fundo da tela de Login:"
117
+
118
+ #: er-custom-login.php:421 er-custom-login.php:639
119
+ msgid "Add Background Image"
120
+ msgstr "Adicione uma imagem de fundo"
121
+
122
+ #: er-custom-login.php:423
123
+ msgid ""
124
+ "Add your own pattern/image url for the screen background. Leave blank if you "
125
+ "don't need any images."
126
+ msgstr ""
127
+ "Adicione a URL da imagem para o fundo da tela. Deixe em branco caso não "
128
+ "queira utilizar uma imagem."
129
+
130
+ #: er-custom-login.php:427
131
+ msgid "Login Screen Background Repeat"
132
+ msgstr "Repetição do fundo da tela de Login"
133
+
134
+ #: er-custom-login.php:465 er-custom-login.php:683
135
+ msgid "Select an image repeat option from dropdown."
136
+ msgstr "Selecione um método de repetição no menu acima."
137
+
138
+ #: er-custom-login.php:469 er-custom-login.php:688
139
+ msgid "Background Position:"
140
+ msgstr "Posição de Fundo:"
141
+
142
+ #: er-custom-login.php:470 er-custom-login.php:689
143
+ msgid "Horizontal Position: "
144
+ msgstr "Posição Horizontal:"
145
+
146
+ #: er-custom-login.php:475 er-custom-login.php:694
147
+ msgid ""
148
+ "The background-position property sets the starting position of a background "
149
+ "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
150
+ "or \"%\" at the end of value. This will not show any changes if you set the "
151
+ "Background Repeat option as \"Repeat\". <a href=\"http://www.w3schools.com/"
152
+ "cssref/pr_background-position.asp\" target=\"_blank\">More Info</a>"
153
+ msgstr ""
154
+ "As propriedades de posição de fundo altera a posição inicial da imagem de "
155
+ "fundo. Se você informar um valor em \"pixels\" ou \"porcentagem\", adicione "
156
+ "\"px\" ou \"%\" no final do valor indicado. Isto não irá alterar nada se for "
157
+ "alterado para \"Repetir (repeat)\" no menu de repetição de Fundo. <a href="
158
+ "\"http://www.w3schools.com/cssref/pr_background-position.asp\" target="
159
+ "\"_blank\">Maiores informações (em inglês)</a>"
160
+
161
+ #: er-custom-login.php:480
162
+ msgid "Background Size:"
163
+ msgstr "Tamanho de Fundo:"
164
+
165
+ #: er-custom-login.php:484
166
+ msgid ""
167
+ "The background-size property specifies the size of a background image. If "
168
+ "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
169
+ "at the end of value. Possible values: auto, length, percentage, cover, "
170
+ "contain. <a href=\"http://www.w3schools.com/cssref/css3_pr_background-size."
171
+ "asp\" target=\"_blank\">More Info</a>"
172
+ msgstr ""
173
+ "As propriedades do Tamanho de Fundo especificam o tamanho que a imagem de "
174
+ "fundo terá. Se você informar o valor em \"pixels\" ou \"porcentagem\", "
175
+ "adicione \"px\" ou \"%\" ao final de cada valor. Outro valores possiveis: "
176
+ "auto, length, percentage, cover, contain. <a href=\"http://www.w3schools.com/"
177
+ "cssref/css3_pr_background-size.asp\" target=\"_blank\">Maiores informações "
178
+ "(em inglês)</a>"
179
+
180
+ #: er-custom-login.php:495
181
+ msgid "Login Screen Logo"
182
+ msgstr "Logotipo da tela de Login"
183
+
184
+ #: er-custom-login.php:496
185
+ msgid "(Change the default WordPress logo and powered by text)"
186
+ msgstr ""
187
+ "(Altera o logotipo padrão do Wordpress e o texto exibido \"Desenvolvido por "
188
+ "(powered)\""
189
+
190
+ #: er-custom-login.php:501
191
+ msgid "Logo Url:"
192
+ msgstr "Logotipo URL"
193
+
194
+ #: er-custom-login.php:503
195
+ msgid "Add Logo"
196
+ msgstr "Adicionar Logotipo"
197
+
198
+ #: er-custom-login.php:505
199
+ msgid ""
200
+ "(URL path to image to replace default WordPress Logo. (You can upload your "
201
+ "image with the WordPress media uploader)"
202
+ msgstr ""
203
+ "URL é o caminho para a imagem que irá repor o logotipo padrão do WordPress. "
204
+ "(Você pode realizar o carregamento da imagem pela biblioteca de media do "
205
+ "WordPress)"
206
+
207
+ #: er-custom-login.php:510
208
+ msgid "Logo Width:"
209
+ msgstr "Largura do Logotipo:"
210
+
211
+ #: er-custom-login.php:514
212
+ msgid "Your Logo width(Enter in pixels). Default: 274px"
213
+ msgstr "Insira o valor da largura do logotipo (em pixels). Valor padrão: 274px"
214
+
215
+ #: er-custom-login.php:518
216
+ msgid "Logo Height:"
217
+ msgstr "Altura do Logotipo"
218
+
219
+ #: er-custom-login.php:522
220
+ msgid "Your Logo Height(Enter in pixels). Default: 63px"
221
+ msgstr "Insira o valor da altura do logotipo (em pixels). Valor padrão: 60px"
222
+
223
+ #: er-custom-login.php:527
224
+ msgid "Powered by Text:"
225
+ msgstr "Texto Desenvolvido por (Powered by):"
226
+
227
+ #: er-custom-login.php:531
228
+ msgid "Show when mouse hover over custom Login logo"
229
+ msgstr "Exibe a mensagem quando passar o mouse em cima do logotipo de login."
230
+
231
+ #: er-custom-login.php:541
232
+ msgid "Login Form Settings"
233
+ msgstr "Configurações do formulário de Login"
234
+
235
+ #: er-custom-login.php:542
236
+ msgid "(The following settings will change the Login Form style)"
237
+ msgstr "(Estas configurações vão alterar o estilo do formulário de Login)"
238
+
239
+ #: er-custom-login.php:547
240
+ msgid "Login form width:"
241
+ msgstr "Largura do formulário de Login:"
242
+
243
+ #: er-custom-login.php:551
244
+ msgid "Total Form width(Enter in pixels). Default: 350px"
245
+ msgstr ""
246
+ "Largura total do formulário (Insira valor em pixels). Valor padrão: 350px"
247
+
248
+ #: er-custom-login.php:555
249
+ msgid "Login Form Border Radius:"
250
+ msgstr "Curvatura da borda do formulário de Login:"
251
+
252
+ #: er-custom-login.php:559
253
+ msgid ""
254
+ "Border Radius of Login Form. This is the option to make the corners rounded."
255
+ "(Enter in pixels)"
256
+ msgstr ""
257
+ "Curvatura da borda do formulário de Login. Esta opção cria os cantos "
258
+ "arredondados do formulário. (Insira os valores em pixels)"
259
+
260
+ #: er-custom-login.php:563
261
+ msgid "Login Border Style"
262
+ msgstr "Estilo de Bordas do Formulário"
263
+
264
+ #: er-custom-login.php:607
265
+ msgid "Select a Border Style option from dropdown."
266
+ msgstr "Selecione o estilo da borda no menu acima."
267
+
268
+ #: er-custom-login.php:611
269
+ msgid "Login Border Thickness:"
270
+ msgstr "Espessura da borda do Formulário:"
271
+
272
+ #: er-custom-login.php:615
273
+ msgid "Thickness of Border (Enter value in pixels)"
274
+ msgstr "Espessura da borda (Insira o valor em pixels)"
275
+
276
+ #: er-custom-login.php:619
277
+ msgid "Login Border Color:"
278
+ msgstr "Cor da borda do Formulário:"
279
+
280
+ #: er-custom-login.php:628
281
+ msgid "Login Form Background Color:"
282
+ msgstr "Cor de fundo do Formulário de Login:"
283
+
284
+ #: er-custom-login.php:632
285
+ msgid "Background Opacity: "
286
+ msgstr "Opacidade do Fundo:"
287
+
288
+ #: er-custom-login.php:634
289
+ msgid ""
290
+ "Click the box to select a color. Background Opacity will helps you to put "
291
+ "transparent color over a background image. Possible values 0 to 1. Example: "
292
+ "0.5 means 50% transparency. Default: 1 <a href=\"https://wordpress.org/"
293
+ "plugins/erident-custom-login-and-dashboard/faq/\" target=\"_blank\">More "
294
+ "Info</a>"
295
+ msgstr ""
296
+ "Clique na caixa para selecionar a Cor. A Opacidade de Fundo irá adicionar um "
297
+ "efeito de transparência na cor sobre o fundo da imagem. Os valores a ser "
298
+ "utilizados são 0 a 1. Por Exemplo: 0.5 determina 50% da transparência. Valor "
299
+ "padrão: 1 <a href=\"https://wordpress.org/plugins/erident-custom-login-and-"
300
+ "dashboard/faq/\" target=\"_blank\">Mais informações (em inglês)</a>"
301
+
302
+ #: er-custom-login.php:638
303
+ msgid "Login Form Background Image:"
304
+ msgstr "Imagem de Fundo do Formulário de Login:"
305
+
306
+ #: er-custom-login.php:641
307
+ msgid ""
308
+ "Add your own pattern/image url to the form background. Leave blank if you "
309
+ "don't need any images."
310
+ msgstr ""
311
+ "Adicione a URL da imagem para o fundo do formulário de Login. Deixe em "
312
+ "branco caso não queira utilizar uma imagem."
313
+
314
+ #: er-custom-login.php:645
315
+ msgid "Login Form Background Repeat"
316
+ msgstr "Repetição da imagem de fundo do Formulário de Login"
317
+
318
+ #: er-custom-login.php:691
319
+ msgid "Vertical Position: "
320
+ msgstr "Posição Vertical:"
321
+
322
+ #: er-custom-login.php:699
323
+ msgid "Login Form Label Text Color"
324
+ msgstr "Cor da Label do Formulário de Contato"
325
+
326
+ #: er-custom-login.php:704
327
+ msgid ""
328
+ "Click the box to select a color. This will change the color of label "
329
+ "Username/Password"
330
+ msgstr ""
331
+ "Clique na caixa para selecionar a Cor. Irá mudar a cor dos Labels Nome do "
332
+ "Usuário / Senha"
333
+
334
+ #: er-custom-login.php:708
335
+ msgid "Login Form Label Text Size:"
336
+ msgstr "Tamanho do Label do formulário de Contato:"
337
+
338
+ #: er-custom-login.php:711
339
+ msgid "Font Size of Label Username/Password(Enter value in pixels)"
340
+ msgstr ""
341
+ "Tamanho da Fonte do Label Nome do Usuário / Senha (Insira o valor em pixels)"
342
+
343
+ #: er-custom-login.php:715
344
+ msgid "Login Form Input Text Color"
345
+ msgstr "Cor do Campo de Texto do Formulário de Contato"
346
+
347
+ #: er-custom-login.php:720
348
+ msgid ""
349
+ "Click the box to select a color. This will change the color of text inside "
350
+ "text box."
351
+ msgstr ""
352
+ "Clique na caixa para selecionar a Cor. Irá alterar a cor interna do Campo de "
353
+ "Texto."
354
+
355
+ #: er-custom-login.php:724
356
+ msgid "Login Form Input Text Size:"
357
+ msgstr "Tamanho do Campo de Texto do formulário de Login:"
358
+
359
+ #: er-custom-login.php:727
360
+ msgid "Font Size of text inside text box(Enter value in pixels)"
361
+ msgstr "Tamanho da Fonte do Campo de Texto (Insira o valor em pixels)"
362
+
363
+ #: er-custom-login.php:731
364
+ msgid "Login Form Link Color"
365
+ msgstr "Cor dos Links do Formulário de Login"
366
+
367
+ #: er-custom-login.php:741
368
+ msgid "Enable link shadow?"
369
+ msgstr "Habilitar sombra dos Links?"
370
+
371
+ #: er-custom-login.php:749 er-custom-login.php:778 er-custom-login.php:829
372
+ msgid "Yes"
373
+ msgstr "Sim"
374
+
375
+ #: er-custom-login.php:753 er-custom-login.php:782 er-custom-login.php:833
376
+ msgid "No"
377
+ msgstr "Não"
378
+
379
+ #: er-custom-login.php:755 er-custom-login.php:784
380
+ msgid "(Check an option)"
381
+ msgstr "(Marque uma opção)"
382
+
383
+ #: er-custom-login.php:759
384
+ msgid "Login Form Link Shadow Color"
385
+ msgstr "Cor da Sombra dos Links do formulário de Contato"
386
+
387
+ #: er-custom-login.php:770
388
+ msgid "Enable form shadow?"
389
+ msgstr "Habilitar sombra do Formulário?"
390
+
391
+ #: er-custom-login.php:788
392
+ msgid "Login Form Shadow Color"
393
+ msgstr "Cor da sombra do formulário de Contato"
394
+
395
+ #: er-custom-login.php:800
396
+ msgid "Login Button Color"
397
+ msgstr "Cor do botão do formulário de Contato"
398
+
399
+ #: er-custom-login.php:816
400
+ msgid "Plugin Un-install Settings"
401
+ msgstr "Configurações de Instalação/Desinstalação do plugin"
402
+
403
+ #: er-custom-login.php:821
404
+ msgid "Delete custom settings upon plugin deactivation?"
405
+ msgstr "Excluir todas as configurações feitas quando desativar o plugin?"
406
+
407
+ #: er-custom-login.php:835
408
+ msgid ""
409
+ "(If you set \"Yes\" all custom settings will be deleted from database upon "
410
+ "plugin deactivation)"
411
+ msgstr ""
412
+ "(Se marcar \"Sim\", todas as configurações serão excluidas do banco de dados "
413
+ "quando realizar a desativação do plugin)"
414
+
415
+ #: er-custom-login.php:843
416
+ msgid "Save Changes"
417
+ msgstr "Salvar"
418
+
419
+ #: er-custom-login.php:850
420
+ msgid "Export Settings"
421
+ msgstr "Exportar Configurações"
422
+
423
+ #: er-custom-login.php:852
424
+ msgid ""
425
+ "Export the plugin settings for this site as a .json file. This allows you to "
426
+ "easily import the configuration into another site."
427
+ msgstr ""
428
+ "Exportar as configurações do plugin deste site como um arquivo com a "
429
+ "extenção \".json\". Este arquivo facilitará a importação das configurações "
430
+ "para outro site."
431
+
432
+ #: er-custom-login.php:857
433
+ msgid "Export"
434
+ msgstr "Exportar"
435
+
436
+ #: er-custom-login.php:865
437
+ msgid "Import Settings"
438
+ msgstr "Importar Configurações"
439
+
440
+ #: er-custom-login.php:867
441
+ msgid ""
442
+ "Import the plugin settings from a .json file. This file can be obtained by "
443
+ "exporting the settings on another site using the form above."
444
+ msgstr ""
445
+ "Importar a arquivo json, que contém as configurações do plugin. Este arquivo "
446
+ "poderá ser obtido pela exportação das configurações de um outro respectivo "
447
+ "site usando o formulário acima."
448
+
449
+ #: er-custom-login.php:875
450
+ msgid "Import"
451
+ msgstr "Importar"
452
+
453
+ #: er-custom-login.php:883
454
+ msgid "Quick Links"
455
+ msgstr "Links Rápidos"
456
+
457
+ #: er-custom-login.php:885
458
+ msgid "Open Your WP Login Page in a New Tab"
459
+ msgstr "Abrir a página de Login em uma nova aba."
460
+
461
+ #: er-custom-login.php:886
462
+ msgid "Plugin Documentation"
463
+ msgstr "Documentação do Plugin"
464
+
465
+ #: er-custom-login.php:887
466
+ msgid "Plugin Support Page"
467
+ msgstr "Página de Suporte para o Plugin"
468
+
469
+ #: er-custom-login.php:888
470
+ msgid "Feature Request/Suggestions?"
471
+ msgstr "Gostaria de dar uma sugestão/incluisão de caracteristica?"
472
+
473
+ #: er-custom-login.php:889
474
+ msgid "Got some Love? Give us a 5 star rating!"
475
+ msgstr "Gostou? Avalie em 5 estrelas!"
476
+
477
+ #: er-custom-login.php:893
478
+ msgid "Hire Me"
479
+ msgstr "Contrate-me"
480
+
481
+ #: er-custom-login.php:894
482
+ msgid ""
483
+ "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
484
+ "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
485
+ "libin@libin.in\">libin@libin.in</a> <br/>Online Portfolio: <a href=\"http://"
486
+ "www.libin.in\" target=\"_blank\">www.libin.in</a>"
487
+ msgstr ""
488
+ "Hey, Eu sou Libin, um desenvolvedor Front End / WordPress. Você poderá me "
489
+ "contratar para projetos livres. <br/> <br/>Mande-me um E-mail: <a href="
490
+ "\"mailto:libin@libin.in\">libin@libin.in</a><br/>Visite meu Portfólio: <a "
491
+ "href=\"http://www.libin.in\" target=\"_blank\">www.libin.in</a>"
492
+
493
+ #: er-custom-login.php:896
494
+ msgid "Translation Credits"
495
+ msgstr "Créditos aos Tradutores"
496
+
497
+ #: er-custom-login.php:898
498
+ msgid ""
499
+ "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
500
+ "\">Adriana De La Cuadra</a>"
501
+ msgstr ""
502
+ "Espanhol por <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
503
+ "\">Adriana De La Cuadra</a>"
504
+
505
+ #: er-custom-login.php:899
506
+ msgid ""
507
+ "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
508
+ "\" target=\"_blank\">Guillaume Vaslin</a>"
509
+ msgstr ""
510
+ "Francês por <a href=\"https://www.linkedin.com/pub/vaslin-"
511
+ "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
512
+
513
+ #: er-custom-login.php:900
514
+ msgid ""
515
+ "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
516
+ "Kaulfuss</a>"
517
+ msgstr ""
518
+ "Alemão por <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
519
+ "\">Peter Kaulfuss</a>"
520
+
521
+ #: er-custom-login.php:901
522
+ msgid ""
523
+ "Turkish by <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
524
+ "target=\"_blank\">Muhammet Küçük</a>"
525
+ msgstr ""
526
+ "Turco por <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
527
+ "target=\"_blank\">Muhammet Küçük</a>"
528
+
529
+ #: er-custom-login.php:902
530
+ msgid ""
531
+ "Persian by <a href=\"https://about.me/reza.heydari\" target=\"_blank\">Reza "
532
+ "Heydari</a>"
533
+ msgstr ""
534
+ "Persa por <a href=\"https://about.me/reza.heydari\" target=\"_blank\">Reza "
535
+ "Heydari</a>"
536
+
537
+ #: er-custom-login.php:903
538
+ msgid ""
539
+ "Portuguese-Brazil by <a href=\"https://www.facebook.com/home.php?"
540
+ "m2w&refid=8\" target=\"_blank\">Reza Heydari</a>"
541
+ msgstr ""
542
+ "Portuguese-Brazil por <a href=\"https://www.facebook.com/home.php?"
543
+ "m2w&refid=8\" target=\"_blank\">Reza Heydari</a>"
544
+
545
+ #: er-custom-login.php:905
546
+ msgid "Do you wants to translate this plugin to your language? Email me!"
547
+ msgstr ""
548
+ "Você gostaria de traduzir este plugin para o seu idioma? Mande-me um E-mail!"
languages/erident-custom-login-and-dashboard-tr_TR.mo CHANGED
Binary file
languages/erident-custom-login-and-dashboard-tr_TR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
- "POT-Creation-Date: 2015-05-11 10:42+0530\n"
5
- "PO-Revision-Date: 2015-05-11 10:42+0530\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: tr\n"
@@ -20,45 +20,45 @@ msgstr ""
20
  msgid "Settings"
21
  msgstr "Ayarlar"
22
 
23
- #: er-custom-login.php:230
24
  msgid "Please upload a valid .json file"
25
  msgstr "Lütfen geçerli bir .json dosyası yükleyin"
26
 
27
- #: er-custom-login.php:236
28
  msgid "Please upload a file to import"
29
  msgstr "Lütfen içe aktaracağınız dosyayı upload ediniz"
30
 
31
- #: er-custom-login.php:243
32
  msgid "New settings imported successfully!"
33
  msgstr "Yeni ayarlar başarı ile içe aktarıldı"
34
 
35
- #: er-custom-login.php:332
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Giriş ve Başlangıç Ekranı Düzenleme Bölümü"
38
 
39
- #: er-custom-login.php:353
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "Erident Login ve Dashboard Ayarlarını Düzenleme"
42
 
43
- #: er-custom-login.php:354
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
47
  msgstr "Eklenti varsayılan değerleri "
48
 
49
- #: er-custom-login.php:354
50
  msgid "Click on the header of each block to open it."
51
  msgstr "Başlıklara tıklayarak ayarlarını açabilirsiniz."
52
 
53
- #: er-custom-login.php:361
54
  msgid "Settings saved."
55
  msgstr "Ayarlar kaydedildi"
56
 
57
- #: er-custom-login.php:368
58
  msgid "Dashboard Settings"
59
  msgstr "Başlangıç Ayarları"
60
 
61
- #: er-custom-login.php:369
62
  msgid ""
63
  "(These settings will be reflected when a user/admin logins to the WordPress "
64
  "Dashboard)"
@@ -66,11 +66,11 @@ msgstr ""
66
  "(Bu ayarlar bir Kullanıcı ya da Yönetici WordPress Başlangıç bölümüne "
67
  "girdiğinde gözükecektir)"
68
 
69
- #: er-custom-login.php:374
70
  msgid "Enter the text for dashboard left side footer:"
71
  msgstr "Başlangıç bölümünde sol alt köşede bulunan metni değiştirin:"
72
 
73
- #: er-custom-login.php:379
74
  msgid ""
75
  "This will replace the default \"Thank you for creating with WordPress\" on "
76
  "the bottom left side of dashboard"
@@ -78,44 +78,46 @@ msgstr ""
78
  "Burası başlangıç ekraninda sol alttaki varsayılan \"Wordpress Versiyon\"u "
79
  "değiştirecektir"
80
 
81
- #: er-custom-login.php:383
82
  msgid "Enter the text for dashboard right side footer:"
83
  msgstr "Başlangıç bölümünde sağ alt köşede bulunan metni değiştirin:"
84
 
85
- #: er-custom-login.php:387
86
  msgid ""
87
  "This will replace the default \"WordPress Version\" on the bottom right side "
88
- "of dashboard"
 
89
  msgstr ""
90
  "Burası başlangıç ekraninda sağ alttaki varsayılan \"Wordpress Versiyon\"u "
91
- "değiştirecektir"
 
92
 
93
- #: er-custom-login.php:396
94
  msgid "Login Screen Background"
95
  msgstr "Giriş Ekranı Arkaplanı"
96
 
97
- #: er-custom-login.php:397
98
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
99
  msgstr "(Aşağıdaki ayarlar \"wp-login.php\" sayfasını etkileyecektir)"
100
 
101
- #: er-custom-login.php:402
102
  msgid "Login Screen Background Color:"
103
  msgstr "Giriş Ekranı Arkaplan Rengi"
104
 
105
- #: er-custom-login.php:407 er-custom-login.php:617 er-custom-login.php:729
106
- #: er-custom-login.php:757 er-custom-login.php:786 er-custom-login.php:798
107
  msgid "Click the box to select a color."
108
  msgstr "Renk seçmek için kutucuğa tıklayınız"
109
 
110
- #: er-custom-login.php:412
111
  msgid "Login Screen Background Image:"
112
  msgstr "Giriş Ekranı Arkaplan Resmi:"
113
 
114
- #: er-custom-login.php:414 er-custom-login.php:632
115
  msgid "Add Background Image"
116
  msgstr "Arka Plan Resim Ekle"
117
 
118
- #: er-custom-login.php:416
119
  msgid ""
120
  "Add your own pattern/image url for the screen background. Leave blank if you "
121
  "don't need any images."
@@ -123,23 +125,23 @@ msgstr ""
123
  "Arkaplan olarak kendi deseninizi veya görselinizin linkini ekleyin. Eğer "
124
  "fotoğraf eklemeyecekseniz , boş bırakın"
125
 
126
- #: er-custom-login.php:420
127
  msgid "Login Screen Background Repeat"
128
  msgstr "Oturum açma ekranı arka plan tekrarlayın"
129
 
130
- #: er-custom-login.php:458 er-custom-login.php:676
131
  msgid "Select an image repeat option from dropdown."
132
  msgstr "Açılan listeden bir görüntü yineleme seçeneğini seçin."
133
 
134
- #: er-custom-login.php:462 er-custom-login.php:681
135
  msgid "Background Position:"
136
  msgstr "Arkaplan Pozisyonu:"
137
 
138
- #: er-custom-login.php:463 er-custom-login.php:682
139
  msgid "Horizontal Position: "
140
  msgstr "Yatay konumu:"
141
 
142
- #: er-custom-login.php:468 er-custom-login.php:687
143
  msgid ""
144
  "The background-position property sets the starting position of a background "
145
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
@@ -154,11 +156,11 @@ msgstr ""
154
  "\"_blank\">Daha Fazla Bilgi</a> yaparsanız , bir değişiklik "
155
  "göstermeyecektir ."
156
 
157
- #: er-custom-login.php:473
158
  msgid "Background Size:"
159
  msgstr "Arkaplan Boyutu:"
160
 
161
- #: er-custom-login.php:477
162
  msgid ""
163
  "The background-size property specifies the size of a background image. If "
164
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
@@ -172,25 +174,25 @@ msgstr ""
172
  "<a href=\"http://www.w3schools.com/cssref/css3_pr_background-size.asp\" "
173
  "target=\"_blank\">Daha fazla Bilgi</a>"
174
 
175
- #: er-custom-login.php:488
176
  msgid "Login Screen Logo"
177
  msgstr "Giriş Ekranı Logosu"
178
 
179
- #: er-custom-login.php:489
180
  msgid "(Change the default WordPress logo and powered by text)"
181
  msgstr ""
182
  "(Varsayılan Wordpress logosu ve Mouse üzerine gelince gelen yazıyı "
183
  "değiştirin)"
184
 
185
- #: er-custom-login.php:494
186
  msgid "Logo Url:"
187
  msgstr "Logo Url'si:"
188
 
189
- #: er-custom-login.php:496
190
  msgid "Add Logo"
191
  msgstr "Logo ekle"
192
 
193
- #: er-custom-login.php:498
194
  msgid ""
195
  "(URL path to image to replace default WordPress Logo. (You can upload your "
196
  "image with the WordPress media uploader)"
@@ -198,51 +200,51 @@ msgstr ""
198
  "(Link varsayılan WordPress Logosunu değiştirecektir. (Wordpress medya "
199
  "yükleyicisi ile resim yükleyebilirsiniz)"
200
 
201
- #: er-custom-login.php:503
202
  msgid "Logo Width:"
203
  msgstr "Logo Genişliği:"
204
 
205
- #: er-custom-login.php:507
206
  msgid "Your Logo width(Enter in pixels). Default: 274px"
207
  msgstr "Logonuzun Genişliği(Piksel olarak giriniz). Varsayılan 274 pikseldir"
208
 
209
- #: er-custom-login.php:511
210
  msgid "Logo Height:"
211
  msgstr "Logo Yüksekliği"
212
 
213
- #: er-custom-login.php:515
214
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
215
  msgstr "Logonuzun Yüksekliği(Piksel olarak giriniz). Varsayılan 274 pikseldir"
216
 
217
- #: er-custom-login.php:520
218
  msgid "Powered by Text:"
219
  msgstr "Mouse'unuz logonun üzerine gelince yazacak olan metin"
220
 
221
- #: er-custom-login.php:524
222
  msgid "Show when mouse hover over custom Login logo"
223
  msgstr "Mouse'unuz giriş logosunun üstüne gelince vurgulayın"
224
 
225
- #: er-custom-login.php:534
226
  msgid "Login Form Settings"
227
  msgstr "Giriş Formu Ayarları"
228
 
229
- #: er-custom-login.php:535
230
  msgid "(The following settings will change the Login Form style)"
231
  msgstr "(Aşağıdaki ayarlar , Giriş formu stilini değiştirecektir)"
232
 
233
- #: er-custom-login.php:540
234
  msgid "Login form width:"
235
  msgstr "Giriş formu genişliği:"
236
 
237
- #: er-custom-login.php:544
238
  msgid "Total Form width(Enter in pixels). Default: 350px"
239
  msgstr "Toplam form genişliği(Piksel olarak giriniz). Varsayılan : 350 Piksel"
240
 
241
- #: er-custom-login.php:548
242
  msgid "Login Form Border Radius:"
243
  msgstr "Giriş formu çerçeve Çapı"
244
 
245
- #: er-custom-login.php:552
246
  msgid ""
247
  "Border Radius of Login Form. This is the option to make the corners rounded."
248
  "(Enter in pixels)"
@@ -250,35 +252,35 @@ msgstr ""
250
  "Giriş formundaki çerçeve çapını girin . Bu ayar köşeler yuvarlak ise "
251
  "kullanılır(Piksel olarak girin)"
252
 
253
- #: er-custom-login.php:556
254
  msgid "Login Border Style"
255
  msgstr "Giriş çerçeve stili"
256
 
257
- #: er-custom-login.php:600
258
  msgid "Select a Border Style option from dropdown."
259
  msgstr "Bir çerçeve stili seçin"
260
 
261
- #: er-custom-login.php:604
262
  msgid "Login Border Thickness:"
263
  msgstr "Giriş çerçevesi kalınlığı:"
264
 
265
- #: er-custom-login.php:608
266
  msgid "Thickness of Border (Enter value in pixels)"
267
  msgstr "Çerçevenin kalınlığı (değerleri piksel olarak giriniz)"
268
 
269
- #: er-custom-login.php:612
270
  msgid "Login Border Color:"
271
  msgstr "Giriş çerçeve rengi:"
272
 
273
- #: er-custom-login.php:621
274
  msgid "Login Form Background Color:"
275
  msgstr "Giriş Formu Arkaplan Rengi:"
276
 
277
- #: er-custom-login.php:625
278
  msgid "Background Opacity: "
279
  msgstr "Arkaplan Saydamlığı:"
280
 
281
- #: er-custom-login.php:627
282
  msgid ""
283
  "Click the box to select a color. Background Opacity will helps you to put "
284
  "transparent color over a background image. Possible values 0 to 1. Example: "
@@ -292,11 +294,11 @@ msgstr ""
292
  "href=\"https://wordpress.org/plugins/erident-custom-login-and-dashboard/faq/"
293
  "\" target=\"_blank\">Daha Fazla Bilgi</a>"
294
 
295
- #: er-custom-login.php:631
296
  msgid "Login Form Background Image:"
297
  msgstr "Giriş Ekranı Arkaplan Resmi:"
298
 
299
- #: er-custom-login.php:634
300
  msgid ""
301
  "Add your own pattern/image url to the form background. Leave blank if you "
302
  "don't need any images."
@@ -304,19 +306,19 @@ msgstr ""
304
  "Arkaplan olarak kendi deseninizi veya görselinizin linkini ekleyin. Eğer "
305
  "fotoğraf eklemeyecekseniz , boş bırakın"
306
 
307
- #: er-custom-login.php:638
308
  msgid "Login Form Background Repeat"
309
  msgstr "Giriş Ekranı Arkaplanı"
310
 
311
- #: er-custom-login.php:684
312
  msgid "Vertical Position: "
313
  msgstr "Diket Pozisyon:"
314
 
315
- #: er-custom-login.php:692
316
  msgid "Login Form Label Text Color"
317
  msgstr "Giriş Formu etiketi metin rengi"
318
 
319
- #: er-custom-login.php:697
320
  msgid ""
321
  "Click the box to select a color. This will change the color of label "
322
  "Username/Password"
@@ -324,20 +326,20 @@ msgstr ""
324
  "Renk seçmek için kutuya tıklayınız .Bu ayar Kullanıcı Adı/Şifre etiketinin "
325
  "rengini değiştirecektir."
326
 
327
- #: er-custom-login.php:701
328
  msgid "Login Form Label Text Size:"
329
  msgstr "Giriş formu etiketi metin boyutu:"
330
 
331
- #: er-custom-login.php:704
332
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
333
  msgstr ""
334
  "Kullanıcı Adı/Şifre etiketlerinin Yazı boyutu?(Değeri piksel olarak giriniz)"
335
 
336
- #: er-custom-login.php:708
337
  msgid "Login Form Input Text Color"
338
  msgstr "Giriş formu metin rengi"
339
 
340
- #: er-custom-login.php:713
341
  msgid ""
342
  "Click the box to select a color. This will change the color of text inside "
343
  "text box."
@@ -345,59 +347,59 @@ msgstr ""
345
  "Renk seçmek için kutuya tıklayınız .Bu ayar metin kutusunun içindeki metnin "
346
  "rengini değiştirecektir."
347
 
348
- #: er-custom-login.php:717
349
  msgid "Login Form Input Text Size:"
350
  msgstr "Giriş Formu girilen metin boyutu:"
351
 
352
- #: er-custom-login.php:720
353
  msgid "Font Size of text inside text box(Enter value in pixels)"
354
  msgstr "Metin kutusunun içindeki yazı boyutu(Değeri piksel olarak giriniz)"
355
 
356
- #: er-custom-login.php:724
357
  msgid "Login Form Link Color"
358
  msgstr "Giriş formu bağlantı rengi"
359
 
360
- #: er-custom-login.php:734
361
  msgid "Enable link shadow?"
362
  msgstr "Linklerdeki gölgelemeyi aktifleştir ?"
363
 
364
- #: er-custom-login.php:742 er-custom-login.php:771 er-custom-login.php:822
365
  msgid "Yes"
366
  msgstr "Evet"
367
 
368
- #: er-custom-login.php:746 er-custom-login.php:775 er-custom-login.php:826
369
  msgid "No"
370
  msgstr "Hayır"
371
 
372
- #: er-custom-login.php:748 er-custom-login.php:777
373
  msgid "(Check an option)"
374
  msgstr "(Bir seçenek seçin)"
375
 
376
- #: er-custom-login.php:752
377
  msgid "Login Form Link Shadow Color"
378
  msgstr "Giriş Formu Bağlantısı Gölge Rengi"
379
 
380
- #: er-custom-login.php:763
381
  msgid "Enable form shadow?"
382
  msgstr "Gölgeleri Aktifleştir?"
383
 
384
- #: er-custom-login.php:781
385
  msgid "Login Form Shadow Color"
386
  msgstr "Giriş Formu Gölge Rengi"
387
 
388
- #: er-custom-login.php:793
389
  msgid "Login Button Color"
390
  msgstr "Giriş Yap butonu rengi"
391
 
392
- #: er-custom-login.php:809
393
  msgid "Plugin Un-install Settings"
394
  msgstr "Eklenti Silme Ayarları."
395
 
396
- #: er-custom-login.php:814
397
  msgid "Delete custom settings upon plugin deactivation?"
398
  msgstr "Yapılan ayarları sil ve eklentiyi etkinsizleştir ?"
399
 
400
- #: er-custom-login.php:828
401
  msgid ""
402
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
403
  "plugin deactivation)"
@@ -405,15 +407,15 @@ msgstr ""
405
  "(Eğer \"Yes\" i seçerseniz bütün düzenlenen ayarlar veritabanınızdan "
406
  "silinecek eklentiyi etkinsizleştirecektir)"
407
 
408
- #: er-custom-login.php:836
409
  msgid "Save Changes"
410
  msgstr "Değişiklikleri Kaydet"
411
 
412
- #: er-custom-login.php:843
413
  msgid "Export Settings"
414
  msgstr "Ayarları dışa aktar"
415
 
416
- #: er-custom-login.php:845
417
  msgid ""
418
  "Export the plugin settings for this site as a .json file. This allows you to "
419
  "easily import the configuration into another site."
@@ -421,15 +423,15 @@ msgstr ""
421
  "Bu sitenizin eklenti ayarlarını .json dosyası olarak dışa aktarabilirsiniz. "
422
  "Böylece ayarlarınızı kolaylıkla başka bir siteye aktarabilirsiniz ."
423
 
424
- #: er-custom-login.php:850
425
  msgid "Export"
426
  msgstr "Dışa Aktar"
427
 
428
- #: er-custom-login.php:858
429
  msgid "Import Settings"
430
  msgstr "Ayarları İçe Aktarın"
431
 
432
- #: er-custom-login.php:860
433
  msgid ""
434
  "Import the plugin settings from a .json file. This file can be obtained by "
435
  "exporting the settings on another site using the form above."
@@ -437,39 +439,39 @@ msgstr ""
437
  "Eklenti ayarlarını bir .json dosyasından aktarın.Bu dosya başka bir siteden "
438
  "dışarı aktardığınız ayar olabilir ."
439
 
440
- #: er-custom-login.php:868
441
  msgid "Import"
442
  msgstr "İçe Aktar"
443
 
444
- #: er-custom-login.php:876
445
  msgid "Quick Links"
446
  msgstr "Hazır Bağlantılar"
447
 
448
- #: er-custom-login.php:878
449
  msgid "Open Your WP Login Page in a New Tab"
450
  msgstr "WP giriş ekranınızı yeni bir sekmede açın"
451
 
452
- #: er-custom-login.php:879
453
  msgid "Plugin Documentation"
454
  msgstr "Eklenti Belgeleri"
455
 
456
- #: er-custom-login.php:880
457
  msgid "Plugin Support Page"
458
  msgstr "Eklenti Destek Sayfası"
459
 
460
- #: er-custom-login.php:881
461
  msgid "Feature Request/Suggestions?"
462
  msgstr "Özellik İsteiğiniz/Önerileriniz?"
463
 
464
- #: er-custom-login.php:882
465
  msgid "Got some Love? Give us a 5 star rating!"
466
  msgstr "Beğendiniz mi? Bize 5 yıldız verin!"
467
 
468
- #: er-custom-login.php:886
469
  msgid "Hire Me"
470
  msgstr "Beni İşe Alın"
471
 
472
- #: er-custom-login.php:887
473
  msgid ""
474
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
475
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
@@ -482,11 +484,11 @@ msgstr ""
482
  "\">libin@libin.in</a> <br/>Online Portfolyo: <a href=\"http://www.libin.in\" "
483
  "target=\"_blank\">www.libin.in</a>"
484
 
485
- #: er-custom-login.php:889
486
  msgid "Translation Credits"
487
  msgstr "Çeviride Katkısı Bulunanlar"
488
 
489
- #: er-custom-login.php:891
490
  msgid ""
491
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
492
  "\">Adriana De La Cuadra</a>"
@@ -494,7 +496,7 @@ msgstr ""
494
  "İspanyolcaya çeviren <a href=\"http://www.linkedin.com/in/adrifolio\" "
495
  "target=\"_blank\">Adriana De La Cuadra</a>"
496
 
497
- #: er-custom-login.php:892
498
  msgid ""
499
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
500
  "\" target=\"_blank\">Guillaume Vaslin</a>"
@@ -502,7 +504,7 @@ msgstr ""
502
  "Fransızcaya çeviren <a href=\"https://www.linkedin.com/pub/vaslin-"
503
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
504
 
505
- #: er-custom-login.php:893
506
  msgid ""
507
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
508
  "Kaulfuss</a>"
@@ -510,7 +512,7 @@ msgstr ""
510
  "Almancaya çeviren <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
511
  "\">Peter Kaulfuss</a>"
512
 
513
- #: er-custom-login.php:894
514
  msgid ""
515
  "Turkish by <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
516
  "target=\"_blank\">Muhammet Küçük</a>"
@@ -518,7 +520,23 @@ msgstr ""
518
  "Turkish çeviren <a href=\"https://www.linkedin.com/profile/view?"
519
  "id=335577895\" target=\"_blank\">Muhammet Küçük</a>"
520
 
521
- #: er-custom-login.php:896
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
522
  msgid "Do you wants to translate this plugin to your language? Email me!"
523
  msgstr "Bu eklentiyi kendi dilinize mi çevirmek istiyorsunuz? Bana mail atın!"
524
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
+ "POT-Creation-Date: 2015-06-10 18:22+0530\n"
5
+ "PO-Revision-Date: 2015-06-10 18:22+0530\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: tr\n"
20
  msgid "Settings"
21
  msgstr "Ayarlar"
22
 
23
+ #: er-custom-login.php:235
24
  msgid "Please upload a valid .json file"
25
  msgstr "Lütfen geçerli bir .json dosyası yükleyin"
26
 
27
+ #: er-custom-login.php:241
28
  msgid "Please upload a file to import"
29
  msgstr "Lütfen içe aktaracağınız dosyayı upload ediniz"
30
 
31
+ #: er-custom-login.php:248
32
  msgid "New settings imported successfully!"
33
  msgstr "Yeni ayarlar başarı ile içe aktarıldı"
34
 
35
+ #: er-custom-login.php:337
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Giriş ve Başlangıç Ekranı Düzenleme Bölümü"
38
 
39
+ #: er-custom-login.php:358
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "Erident Login ve Dashboard Ayarlarını Düzenleme"
42
 
43
+ #: er-custom-login.php:359
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
47
  msgstr "Eklenti varsayılan değerleri "
48
 
49
+ #: er-custom-login.php:359
50
  msgid "Click on the header of each block to open it."
51
  msgstr "Başlıklara tıklayarak ayarlarını açabilirsiniz."
52
 
53
+ #: er-custom-login.php:367
54
  msgid "Settings saved."
55
  msgstr "Ayarlar kaydedildi"
56
 
57
+ #: er-custom-login.php:375
58
  msgid "Dashboard Settings"
59
  msgstr "Başlangıç Ayarları"
60
 
61
+ #: er-custom-login.php:376
62
  msgid ""
63
  "(These settings will be reflected when a user/admin logins to the WordPress "
64
  "Dashboard)"
66
  "(Bu ayarlar bir Kullanıcı ya da Yönetici WordPress Başlangıç bölümüne "
67
  "girdiğinde gözükecektir)"
68
 
69
+ #: er-custom-login.php:381
70
  msgid "Enter the text for dashboard left side footer:"
71
  msgstr "Başlangıç bölümünde sol alt köşede bulunan metni değiştirin:"
72
 
73
+ #: er-custom-login.php:386
74
  msgid ""
75
  "This will replace the default \"Thank you for creating with WordPress\" on "
76
  "the bottom left side of dashboard"
78
  "Burası başlangıç ekraninda sol alttaki varsayılan \"Wordpress Versiyon\"u "
79
  "değiştirecektir"
80
 
81
+ #: er-custom-login.php:390
82
  msgid "Enter the text for dashboard right side footer:"
83
  msgstr "Başlangıç bölümünde sağ alt köşede bulunan metni değiştirin:"
84
 
85
+ #: er-custom-login.php:394
86
  msgid ""
87
  "This will replace the default \"WordPress Version\" on the bottom right side "
88
+ "of dashboard. Keep it as empty field for disabling this feature. Refresh the "
89
+ "page again to see the result after saving."
90
  msgstr ""
91
  "Burası başlangıç ekraninda sağ alttaki varsayılan \"Wordpress Versiyon\"u "
92
+ "değiştirecektir. Bu özelliği devre dışı bırakmak için boş alan olarak tutun. "
93
+ "Kaydettikten sonra sonucu görmek için tekrar sayfayı yenileyin."
94
 
95
+ #: er-custom-login.php:403
96
  msgid "Login Screen Background"
97
  msgstr "Giriş Ekranı Arkaplanı"
98
 
99
+ #: er-custom-login.php:404
100
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
101
  msgstr "(Aşağıdaki ayarlar \"wp-login.php\" sayfasını etkileyecektir)"
102
 
103
+ #: er-custom-login.php:409
104
  msgid "Login Screen Background Color:"
105
  msgstr "Giriş Ekranı Arkaplan Rengi"
106
 
107
+ #: er-custom-login.php:414 er-custom-login.php:624 er-custom-login.php:736
108
+ #: er-custom-login.php:764 er-custom-login.php:793 er-custom-login.php:805
109
  msgid "Click the box to select a color."
110
  msgstr "Renk seçmek için kutucuğa tıklayınız"
111
 
112
+ #: er-custom-login.php:419
113
  msgid "Login Screen Background Image:"
114
  msgstr "Giriş Ekranı Arkaplan Resmi:"
115
 
116
+ #: er-custom-login.php:421 er-custom-login.php:639
117
  msgid "Add Background Image"
118
  msgstr "Arka Plan Resim Ekle"
119
 
120
+ #: er-custom-login.php:423
121
  msgid ""
122
  "Add your own pattern/image url for the screen background. Leave blank if you "
123
  "don't need any images."
125
  "Arkaplan olarak kendi deseninizi veya görselinizin linkini ekleyin. Eğer "
126
  "fotoğraf eklemeyecekseniz , boş bırakın"
127
 
128
+ #: er-custom-login.php:427
129
  msgid "Login Screen Background Repeat"
130
  msgstr "Oturum açma ekranı arka plan tekrarlayın"
131
 
132
+ #: er-custom-login.php:465 er-custom-login.php:683
133
  msgid "Select an image repeat option from dropdown."
134
  msgstr "Açılan listeden bir görüntü yineleme seçeneğini seçin."
135
 
136
+ #: er-custom-login.php:469 er-custom-login.php:688
137
  msgid "Background Position:"
138
  msgstr "Arkaplan Pozisyonu:"
139
 
140
+ #: er-custom-login.php:470 er-custom-login.php:689
141
  msgid "Horizontal Position: "
142
  msgstr "Yatay konumu:"
143
 
144
+ #: er-custom-login.php:475 er-custom-login.php:694
145
  msgid ""
146
  "The background-position property sets the starting position of a background "
147
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
156
  "\"_blank\">Daha Fazla Bilgi</a> yaparsanız , bir değişiklik "
157
  "göstermeyecektir ."
158
 
159
+ #: er-custom-login.php:480
160
  msgid "Background Size:"
161
  msgstr "Arkaplan Boyutu:"
162
 
163
+ #: er-custom-login.php:484
164
  msgid ""
165
  "The background-size property specifies the size of a background image. If "
166
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
174
  "<a href=\"http://www.w3schools.com/cssref/css3_pr_background-size.asp\" "
175
  "target=\"_blank\">Daha fazla Bilgi</a>"
176
 
177
+ #: er-custom-login.php:495
178
  msgid "Login Screen Logo"
179
  msgstr "Giriş Ekranı Logosu"
180
 
181
+ #: er-custom-login.php:496
182
  msgid "(Change the default WordPress logo and powered by text)"
183
  msgstr ""
184
  "(Varsayılan Wordpress logosu ve Mouse üzerine gelince gelen yazıyı "
185
  "değiştirin)"
186
 
187
+ #: er-custom-login.php:501
188
  msgid "Logo Url:"
189
  msgstr "Logo Url'si:"
190
 
191
+ #: er-custom-login.php:503
192
  msgid "Add Logo"
193
  msgstr "Logo ekle"
194
 
195
+ #: er-custom-login.php:505
196
  msgid ""
197
  "(URL path to image to replace default WordPress Logo. (You can upload your "
198
  "image with the WordPress media uploader)"
200
  "(Link varsayılan WordPress Logosunu değiştirecektir. (Wordpress medya "
201
  "yükleyicisi ile resim yükleyebilirsiniz)"
202
 
203
+ #: er-custom-login.php:510
204
  msgid "Logo Width:"
205
  msgstr "Logo Genişliği:"
206
 
207
+ #: er-custom-login.php:514
208
  msgid "Your Logo width(Enter in pixels). Default: 274px"
209
  msgstr "Logonuzun Genişliği(Piksel olarak giriniz). Varsayılan 274 pikseldir"
210
 
211
+ #: er-custom-login.php:518
212
  msgid "Logo Height:"
213
  msgstr "Logo Yüksekliği"
214
 
215
+ #: er-custom-login.php:522
216
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
217
  msgstr "Logonuzun Yüksekliği(Piksel olarak giriniz). Varsayılan 274 pikseldir"
218
 
219
+ #: er-custom-login.php:527
220
  msgid "Powered by Text:"
221
  msgstr "Mouse'unuz logonun üzerine gelince yazacak olan metin"
222
 
223
+ #: er-custom-login.php:531
224
  msgid "Show when mouse hover over custom Login logo"
225
  msgstr "Mouse'unuz giriş logosunun üstüne gelince vurgulayın"
226
 
227
+ #: er-custom-login.php:541
228
  msgid "Login Form Settings"
229
  msgstr "Giriş Formu Ayarları"
230
 
231
+ #: er-custom-login.php:542
232
  msgid "(The following settings will change the Login Form style)"
233
  msgstr "(Aşağıdaki ayarlar , Giriş formu stilini değiştirecektir)"
234
 
235
+ #: er-custom-login.php:547
236
  msgid "Login form width:"
237
  msgstr "Giriş formu genişliği:"
238
 
239
+ #: er-custom-login.php:551
240
  msgid "Total Form width(Enter in pixels). Default: 350px"
241
  msgstr "Toplam form genişliği(Piksel olarak giriniz). Varsayılan : 350 Piksel"
242
 
243
+ #: er-custom-login.php:555
244
  msgid "Login Form Border Radius:"
245
  msgstr "Giriş formu çerçeve Çapı"
246
 
247
+ #: er-custom-login.php:559
248
  msgid ""
249
  "Border Radius of Login Form. This is the option to make the corners rounded."
250
  "(Enter in pixels)"
252
  "Giriş formundaki çerçeve çapını girin . Bu ayar köşeler yuvarlak ise "
253
  "kullanılır(Piksel olarak girin)"
254
 
255
+ #: er-custom-login.php:563
256
  msgid "Login Border Style"
257
  msgstr "Giriş çerçeve stili"
258
 
259
+ #: er-custom-login.php:607
260
  msgid "Select a Border Style option from dropdown."
261
  msgstr "Bir çerçeve stili seçin"
262
 
263
+ #: er-custom-login.php:611
264
  msgid "Login Border Thickness:"
265
  msgstr "Giriş çerçevesi kalınlığı:"
266
 
267
+ #: er-custom-login.php:615
268
  msgid "Thickness of Border (Enter value in pixels)"
269
  msgstr "Çerçevenin kalınlığı (değerleri piksel olarak giriniz)"
270
 
271
+ #: er-custom-login.php:619
272
  msgid "Login Border Color:"
273
  msgstr "Giriş çerçeve rengi:"
274
 
275
+ #: er-custom-login.php:628
276
  msgid "Login Form Background Color:"
277
  msgstr "Giriş Formu Arkaplan Rengi:"
278
 
279
+ #: er-custom-login.php:632
280
  msgid "Background Opacity: "
281
  msgstr "Arkaplan Saydamlığı:"
282
 
283
+ #: er-custom-login.php:634
284
  msgid ""
285
  "Click the box to select a color. Background Opacity will helps you to put "
286
  "transparent color over a background image. Possible values 0 to 1. Example: "
294
  "href=\"https://wordpress.org/plugins/erident-custom-login-and-dashboard/faq/"
295
  "\" target=\"_blank\">Daha Fazla Bilgi</a>"
296
 
297
+ #: er-custom-login.php:638
298
  msgid "Login Form Background Image:"
299
  msgstr "Giriş Ekranı Arkaplan Resmi:"
300
 
301
+ #: er-custom-login.php:641
302
  msgid ""
303
  "Add your own pattern/image url to the form background. Leave blank if you "
304
  "don't need any images."
306
  "Arkaplan olarak kendi deseninizi veya görselinizin linkini ekleyin. Eğer "
307
  "fotoğraf eklemeyecekseniz , boş bırakın"
308
 
309
+ #: er-custom-login.php:645
310
  msgid "Login Form Background Repeat"
311
  msgstr "Giriş Ekranı Arkaplanı"
312
 
313
+ #: er-custom-login.php:691
314
  msgid "Vertical Position: "
315
  msgstr "Diket Pozisyon:"
316
 
317
+ #: er-custom-login.php:699
318
  msgid "Login Form Label Text Color"
319
  msgstr "Giriş Formu etiketi metin rengi"
320
 
321
+ #: er-custom-login.php:704
322
  msgid ""
323
  "Click the box to select a color. This will change the color of label "
324
  "Username/Password"
326
  "Renk seçmek için kutuya tıklayınız .Bu ayar Kullanıcı Adı/Şifre etiketinin "
327
  "rengini değiştirecektir."
328
 
329
+ #: er-custom-login.php:708
330
  msgid "Login Form Label Text Size:"
331
  msgstr "Giriş formu etiketi metin boyutu:"
332
 
333
+ #: er-custom-login.php:711
334
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
335
  msgstr ""
336
  "Kullanıcı Adı/Şifre etiketlerinin Yazı boyutu?(Değeri piksel olarak giriniz)"
337
 
338
+ #: er-custom-login.php:715
339
  msgid "Login Form Input Text Color"
340
  msgstr "Giriş formu metin rengi"
341
 
342
+ #: er-custom-login.php:720
343
  msgid ""
344
  "Click the box to select a color. This will change the color of text inside "
345
  "text box."
347
  "Renk seçmek için kutuya tıklayınız .Bu ayar metin kutusunun içindeki metnin "
348
  "rengini değiştirecektir."
349
 
350
+ #: er-custom-login.php:724
351
  msgid "Login Form Input Text Size:"
352
  msgstr "Giriş Formu girilen metin boyutu:"
353
 
354
+ #: er-custom-login.php:727
355
  msgid "Font Size of text inside text box(Enter value in pixels)"
356
  msgstr "Metin kutusunun içindeki yazı boyutu(Değeri piksel olarak giriniz)"
357
 
358
+ #: er-custom-login.php:731
359
  msgid "Login Form Link Color"
360
  msgstr "Giriş formu bağlantı rengi"
361
 
362
+ #: er-custom-login.php:741
363
  msgid "Enable link shadow?"
364
  msgstr "Linklerdeki gölgelemeyi aktifleştir ?"
365
 
366
+ #: er-custom-login.php:749 er-custom-login.php:778 er-custom-login.php:829
367
  msgid "Yes"
368
  msgstr "Evet"
369
 
370
+ #: er-custom-login.php:753 er-custom-login.php:782 er-custom-login.php:833
371
  msgid "No"
372
  msgstr "Hayır"
373
 
374
+ #: er-custom-login.php:755 er-custom-login.php:784
375
  msgid "(Check an option)"
376
  msgstr "(Bir seçenek seçin)"
377
 
378
+ #: er-custom-login.php:759
379
  msgid "Login Form Link Shadow Color"
380
  msgstr "Giriş Formu Bağlantısı Gölge Rengi"
381
 
382
+ #: er-custom-login.php:770
383
  msgid "Enable form shadow?"
384
  msgstr "Gölgeleri Aktifleştir?"
385
 
386
+ #: er-custom-login.php:788
387
  msgid "Login Form Shadow Color"
388
  msgstr "Giriş Formu Gölge Rengi"
389
 
390
+ #: er-custom-login.php:800
391
  msgid "Login Button Color"
392
  msgstr "Giriş Yap butonu rengi"
393
 
394
+ #: er-custom-login.php:816
395
  msgid "Plugin Un-install Settings"
396
  msgstr "Eklenti Silme Ayarları."
397
 
398
+ #: er-custom-login.php:821
399
  msgid "Delete custom settings upon plugin deactivation?"
400
  msgstr "Yapılan ayarları sil ve eklentiyi etkinsizleştir ?"
401
 
402
+ #: er-custom-login.php:835
403
  msgid ""
404
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
405
  "plugin deactivation)"
407
  "(Eğer \"Yes\" i seçerseniz bütün düzenlenen ayarlar veritabanınızdan "
408
  "silinecek eklentiyi etkinsizleştirecektir)"
409
 
410
+ #: er-custom-login.php:843
411
  msgid "Save Changes"
412
  msgstr "Değişiklikleri Kaydet"
413
 
414
+ #: er-custom-login.php:850
415
  msgid "Export Settings"
416
  msgstr "Ayarları dışa aktar"
417
 
418
+ #: er-custom-login.php:852
419
  msgid ""
420
  "Export the plugin settings for this site as a .json file. This allows you to "
421
  "easily import the configuration into another site."
423
  "Bu sitenizin eklenti ayarlarını .json dosyası olarak dışa aktarabilirsiniz. "
424
  "Böylece ayarlarınızı kolaylıkla başka bir siteye aktarabilirsiniz ."
425
 
426
+ #: er-custom-login.php:857
427
  msgid "Export"
428
  msgstr "Dışa Aktar"
429
 
430
+ #: er-custom-login.php:865
431
  msgid "Import Settings"
432
  msgstr "Ayarları İçe Aktarın"
433
 
434
+ #: er-custom-login.php:867
435
  msgid ""
436
  "Import the plugin settings from a .json file. This file can be obtained by "
437
  "exporting the settings on another site using the form above."
439
  "Eklenti ayarlarını bir .json dosyasından aktarın.Bu dosya başka bir siteden "
440
  "dışarı aktardığınız ayar olabilir ."
441
 
442
+ #: er-custom-login.php:875
443
  msgid "Import"
444
  msgstr "İçe Aktar"
445
 
446
+ #: er-custom-login.php:883
447
  msgid "Quick Links"
448
  msgstr "Hazır Bağlantılar"
449
 
450
+ #: er-custom-login.php:885
451
  msgid "Open Your WP Login Page in a New Tab"
452
  msgstr "WP giriş ekranınızı yeni bir sekmede açın"
453
 
454
+ #: er-custom-login.php:886
455
  msgid "Plugin Documentation"
456
  msgstr "Eklenti Belgeleri"
457
 
458
+ #: er-custom-login.php:887
459
  msgid "Plugin Support Page"
460
  msgstr "Eklenti Destek Sayfası"
461
 
462
+ #: er-custom-login.php:888
463
  msgid "Feature Request/Suggestions?"
464
  msgstr "Özellik İsteiğiniz/Önerileriniz?"
465
 
466
+ #: er-custom-login.php:889
467
  msgid "Got some Love? Give us a 5 star rating!"
468
  msgstr "Beğendiniz mi? Bize 5 yıldız verin!"
469
 
470
+ #: er-custom-login.php:893
471
  msgid "Hire Me"
472
  msgstr "Beni İşe Alın"
473
 
474
+ #: er-custom-login.php:894
475
  msgid ""
476
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
477
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
484
  "\">libin@libin.in</a> <br/>Online Portfolyo: <a href=\"http://www.libin.in\" "
485
  "target=\"_blank\">www.libin.in</a>"
486
 
487
+ #: er-custom-login.php:896
488
  msgid "Translation Credits"
489
  msgstr "Çeviride Katkısı Bulunanlar"
490
 
491
+ #: er-custom-login.php:898
492
  msgid ""
493
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
494
  "\">Adriana De La Cuadra</a>"
496
  "İspanyolcaya çeviren <a href=\"http://www.linkedin.com/in/adrifolio\" "
497
  "target=\"_blank\">Adriana De La Cuadra</a>"
498
 
499
+ #: er-custom-login.php:899
500
  msgid ""
501
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
502
  "\" target=\"_blank\">Guillaume Vaslin</a>"
504
  "Fransızcaya çeviren <a href=\"https://www.linkedin.com/pub/vaslin-"
505
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
506
 
507
+ #: er-custom-login.php:900
508
  msgid ""
509
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
510
  "Kaulfuss</a>"
512
  "Almancaya çeviren <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
513
  "\">Peter Kaulfuss</a>"
514
 
515
+ #: er-custom-login.php:901
516
  msgid ""
517
  "Turkish by <a href=\"https://www.linkedin.com/profile/view?id=335577895\" "
518
  "target=\"_blank\">Muhammet Küçük</a>"
520
  "Turkish çeviren <a href=\"https://www.linkedin.com/profile/view?"
521
  "id=335577895\" target=\"_blank\">Muhammet Küçük</a>"
522
 
523
+ #: er-custom-login.php:902
524
+ msgid ""
525
+ "Persian by <a href=\"https://about.me/reza.heydari\" target=\"_blank\">Reza "
526
+ "Heydari</a>"
527
+ msgstr ""
528
+ "Persian çeviren <a href=\"https://about.me/reza.heydari\" target=\"_blank"
529
+ "\">Reza Heydari</a>"
530
+
531
+ #: er-custom-login.php:903
532
+ msgid ""
533
+ "Portuguese-Brazil by <a href=\"https://www.facebook.com/home.php?"
534
+ "m2w&refid=8\" target=\"_blank\">Reza Heydari</a>"
535
+ msgstr ""
536
+ "Portuguese-Brazil çeviren <a href=\"https://www.facebook.com/home.php?"
537
+ "m2w&refid=8\" target=\"_blank\">Reza Heydari</a>"
538
+
539
+ #: er-custom-login.php:905
540
  msgid "Do you wants to translate this plugin to your language? Email me!"
541
  msgstr "Bu eklentiyi kendi dilinize mi çevirmek istiyorsunuz? Bana mail atın!"
542
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.libin.in
4
  Tags: login, customisation, admin, dashboard, customise, erident, custom, form, logo, customize, branding
5
  Requires at least: 3.0.0
6
  Tested up to: 4.2.2
7
- Stable tag: 3.4.1
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -15,7 +15,7 @@ Customize completely your WordPress Login Screen easily. Add your logo, change b
15
  TOP RATED PLUGIN for Login Page Customization!!! Customize completely your WordPress Login Screen and Dashboard easily. Add your company logo to login screen, change background images, colors, styles etc. Customize your Dashboard footer text also for complete branding. Now faster and better db performance!
16
 
17
  * New*: Upload logo and background images with WordPress media uploader right from the settings page
18
- * New*: Turkish Translation available along with German, French and Spanish!
19
  * New*: Now supports opacity on login form background!
20
  * New*: Import/Export Settings feature available!
21
 
@@ -24,7 +24,7 @@ visit the WordPress [support forum](http://wordpress.org/support/plugin/erident-
24
 
25
  **Features:**
26
 
27
- 1. Change footer texts on Admin Dashboard
28
  1. Add Image/Color Backgrounds to Login Screen.
29
  1. Add Image/Color Background to Login Form with opacity.
30
  1. Pick color using awesome jQuery color picker
@@ -44,8 +44,8 @@ visit the WordPress [support forum](http://wordpress.org/support/plugin/erident-
44
 
45
  (These settings will be reflected when a user/admin logins to the WordPress Dashboard.)
46
 
47
- * Change text for dashboard left side footer:
48
- * Chenge text for dashboard right side footer:
49
 
50
  **Login Screen Settings**
51
 
@@ -124,12 +124,17 @@ You can achieve it by either using a transparent png/gif image or you can use th
124
 
125
  == Changelog ==
126
 
 
 
 
 
 
127
  = 3.4.1 =
128
  * Fixed function for php older version
129
 
130
  = 3.4 =
131
  * Supports WordPress media uploader inside the settings page
132
- * Turkish translations added
133
 
134
  = 3.3.1 =
135
  * Extended link shadow enable/disable option to login button as well
@@ -210,5 +215,5 @@ You can achieve it by either using a transparent png/gif image or you can use th
210
 
211
  == Upgrade Notice ==
212
 
213
- = 3.4.1 =
214
- Fixed function for php older version
4
  Tags: login, customisation, admin, dashboard, customise, erident, custom, form, logo, customize, branding
5
  Requires at least: 3.0.0
6
  Tested up to: 4.2.2
7
+ Stable tag: 3.5
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
15
  TOP RATED PLUGIN for Login Page Customization!!! Customize completely your WordPress Login Screen and Dashboard easily. Add your company logo to login screen, change background images, colors, styles etc. Customize your Dashboard footer text also for complete branding. Now faster and better db performance!
16
 
17
  * New*: Upload logo and background images with WordPress media uploader right from the settings page
18
+ * New*: Persian, Portuguese-Brazil & Turkish Translations available along with German, French and Spanish!
19
  * New*: Now supports opacity on login form background!
20
  * New*: Import/Export Settings feature available!
21
 
24
 
25
  **Features:**
26
 
27
+ 1. Change footer texts on Admin Dashboard or keep it as default
28
  1. Add Image/Color Backgrounds to Login Screen.
29
  1. Add Image/Color Background to Login Form with opacity.
30
  1. Pick color using awesome jQuery color picker
44
 
45
  (These settings will be reflected when a user/admin logins to the WordPress Dashboard.)
46
 
47
+ * Change text for dashboard left side footer.
48
+ * Change text for dashboard right side footer (Keep the field empty for default WordPress version).
49
 
50
  **Login Screen Settings**
51
 
124
 
125
  == Changelog ==
126
 
127
+ = 3.5 =
128
+ * Option to keep default WordPress version on dashboard footer
129
+ * Persian translation added
130
+ * Security fix for CSRF
131
+
132
  = 3.4.1 =
133
  * Fixed function for php older version
134
 
135
  = 3.4 =
136
  * Supports WordPress media uploader inside the settings page
137
+ * Turkish translation added
138
 
139
  = 3.3.1 =
140
  * Extended link shadow enable/disable option to login button as well
215
 
216
  == Upgrade Notice ==
217
 
218
+ = 3.5 =
219
+ New feature, translations and security fix.