Erident Custom Login and Dashboard - Version 3.4

Version Description

  • Supports WordPress media uploader inside the settings page
  • Turkish translations added
Download this release

Release Info

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

Code changes from version 3.3.1 to 3.4

er-custom-login.php CHANGED
@@ -5,13 +5,13 @@ 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.3.1
9
  Author: Libin V Babu
10
  Author URI: http://www.libin.in/
11
  License: GPL
12
  */
13
 
14
- /* Copyright 2014 Libin V Babu (email : libin@libin.in)
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License, version 2, as
@@ -62,6 +62,12 @@ function right_admin_footer_text_output($er_right) {
62
  return stripslashes($er_options['dashboard_data_right']);
63
  }
64
 
 
 
 
 
 
 
65
  /* Login Logo */
66
  function er_login_logo() {
67
  /*Get all options from db */
@@ -252,7 +258,7 @@ function wp_erident_dashboard_install() {
252
 
253
  $er_new_options = array(
254
  'dashboard_data_left' => 'Powered by YourWebsiteName',
255
- 'dashboard_data_right' => '© 2014 All Rights Reserved',
256
  'dashboard_image_logo' => plugins_url('images/default-logo.png', __FILE__),
257
  'dashboard_image_logo_width' => '274',
258
  'dashboard_image_logo_height' => '63',
@@ -405,7 +411,7 @@ value="<?php echo esc_html( stripslashes($er_options['dashboard_data_right'] ));
405
  <tr valign="top">
406
  <th scope="row"><?php _e( 'Login Screen Background Image:', 'erident-custom-login-and-dashboard' ); ?></th>
407
  <td><input class="er-textfield" name="er_options_up[top_bg_image]" type="text" id="wp_erident_top_bg_image"
408
- value="<?php echo $er_options['top_bg_image']; ?>" />
409
  <br />
410
  <span class="description"><?php _e( 'Add your own pattern/image url for the screen background. Leave blank if you don\'t need any images.', 'erident-custom-login-and-dashboard' ); ?></span>
411
  </td>
@@ -487,7 +493,7 @@ value="<?php echo $er_options['top_bg_size']; ?>" />
487
  <tr valign="top">
488
  <th scope="row"><?php _e( 'Logo Url:', 'erident-custom-login-and-dashboard' ); ?></th>
489
  <td><input class="er-textfield" name="er_options_up[dashboard_image_logo]" type="text" id="wp_erident_dashboard_image_logo"
490
- value="<?php echo $er_options['dashboard_image_logo']; ?>" /> <span class="description"><?php _e( 'Default Logo Size 274px × 63px', 'erident-custom-login-and-dashboard' ); ?></span>
491
  <br />
492
  <span class="description"><?php _e( '(URL path to image to replace default WordPress Logo. (You can upload your image with the WordPress media uploader)', 'erident-custom-login-and-dashboard' ); ?></span>
493
  </td>
@@ -623,7 +629,7 @@ value="<?php echo $er_options['dashboard_border_thick']; ?>" />px
623
  </tr>
624
  <tr valign="top">
625
  <th scope="row"><?php _e( 'Login Form Background Image:', 'erident-custom-login-and-dashboard' ); ?></th>
626
- <td><input class="er-textfield" name="er_options_up[login_bg_image]" type="text" id="wp_erident_login_bg_image" value="<?php echo $er_options['login_bg_image']; ?>" />
627
  <br />
628
  <span class="description"><?php _e( 'Add your own pattern/image url to the form background. Leave blank if you don\'t need any images.', 'erident-custom-login-and-dashboard' ); ?></span>
629
  </td>
@@ -885,6 +891,7 @@ value="<?php echo $er_options['login_bg_ypos']; ?>" />
885
  <li><?php _e( 'Spanish by <a href="http://www.linkedin.com/in/adrifolio" target="_blank">Adriana De La Cuadra</a>', 'erident-custom-login-and-dashboard'); ?></li>
886
  <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>
887
  <li><?php _e( 'German by <a href="http://www.starsofvietnam.net/" target="_blank">Peter Kaulfuss</a>', 'erident-custom-login-and-dashboard'); ?></li>
 
888
  </ul>
889
  <p><?php _e( 'Do you wants to translate this plugin to your language? Email me!', 'erident-custom-login-and-dashboard'); ?></p>
890
  </div><!-- end .er_notice -->
@@ -950,6 +957,22 @@ value="<?php echo $er_options['login_bg_ypos']; ?>" />
950
  jQuery(".postbox").on('click', '.hndle', function(){
951
  jQuery(this).siblings(".inside").slideToggle();
952
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
953
  });
954
 
955
  </script>
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
9
  Author: Libin V Babu
10
  Author URI: http://www.libin.in/
11
  License: GPL
12
  */
13
 
14
+ /* Copyright 2015 Libin V Babu (email : libin@libin.in)
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License, version 2, as
62
  return stripslashes($er_options['dashboard_data_right']);
63
  }
64
 
65
+ /* Adding media uploader */
66
+ add_action ( 'admin_enqueue_scripts', function () {
67
+ if (is_admin ())
68
+ wp_enqueue_media ();
69
+ } );
70
+
71
  /* Login Logo */
72
  function er_login_logo() {
73
  /*Get all options from db */
258
 
259
  $er_new_options = array(
260
  'dashboard_data_left' => 'Powered by YourWebsiteName',
261
+ 'dashboard_data_right' => '&copy; 2015 All Rights Reserved',
262
  'dashboard_image_logo' => plugins_url('images/default-logo.png', __FILE__),
263
  'dashboard_image_logo_width' => '274',
264
  'dashboard_image_logo_height' => '63',
411
  <tr valign="top">
412
  <th scope="row"><?php _e( 'Login Screen Background Image:', 'erident-custom-login-and-dashboard' ); ?></th>
413
  <td><input class="er-textfield" name="er_options_up[top_bg_image]" type="text" id="wp_erident_top_bg_image"
414
+ value="<?php echo $er_options['top_bg_image']; ?>" /><button class="set_custom_images button"><?php _e( 'Add Background Image', 'erident-custom-login-and-dashboard' ); ?></button>
415
  <br />
416
  <span class="description"><?php _e( 'Add your own pattern/image url for the screen background. Leave blank if you don\'t need any images.', 'erident-custom-login-and-dashboard' ); ?></span>
417
  </td>
493
  <tr valign="top">
494
  <th scope="row"><?php _e( 'Logo Url:', 'erident-custom-login-and-dashboard' ); ?></th>
495
  <td><input class="er-textfield" name="er_options_up[dashboard_image_logo]" type="text" id="wp_erident_dashboard_image_logo"
496
+ value="<?php echo $er_options['dashboard_image_logo']; ?>" class="regular-text process_custom_images" max="" min="1" step="1" /> <button class="set_custom_images button"><?php _e( 'Add Logo', 'erident-custom-login-and-dashboard' ); ?></button>
497
  <br />
498
  <span class="description"><?php _e( '(URL path to image to replace default WordPress Logo. (You can upload your image with the WordPress media uploader)', 'erident-custom-login-and-dashboard' ); ?></span>
499
  </td>
629
  </tr>
630
  <tr valign="top">
631
  <th scope="row"><?php _e( 'Login Form Background Image:', 'erident-custom-login-and-dashboard' ); ?></th>
632
+ <td><input class="er-textfield" name="er_options_up[login_bg_image]" type="text" id="wp_erident_login_bg_image" value="<?php echo $er_options['login_bg_image']; ?>" /><button class="set_custom_images button"><?php _e( 'Add Background Image', 'erident-custom-login-and-dashboard' ); ?></button>
633
  <br />
634
  <span class="description"><?php _e( 'Add your own pattern/image url to the form background. Leave blank if you don\'t need any images.', 'erident-custom-login-and-dashboard' ); ?></span>
635
  </td>
891
  <li><?php _e( 'Spanish by <a href="http://www.linkedin.com/in/adrifolio" target="_blank">Adriana De La Cuadra</a>', 'erident-custom-login-and-dashboard'); ?></li>
892
  <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>
893
  <li><?php _e( 'German by <a href="http://www.starsofvietnam.net/" target="_blank">Peter Kaulfuss</a>', 'erident-custom-login-and-dashboard'); ?></li>
894
+ <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>
895
  </ul>
896
  <p><?php _e( 'Do you wants to translate this plugin to your language? Email me!', 'erident-custom-login-and-dashboard'); ?></p>
897
  </div><!-- end .er_notice -->
957
  jQuery(".postbox").on('click', '.hndle', function(){
958
  jQuery(this).siblings(".inside").slideToggle();
959
  });
960
+
961
+ if (jQuery('.set_custom_images').length > 0) {
962
+ if ( typeof wp !== 'undefined' && wp.media && wp.media.editor) {
963
+ jQuery('.wrap').on('click', '.set_custom_images', function(e) {
964
+ e.preventDefault();
965
+ var button = jQuery(this);
966
+ var id = button.prev();
967
+ wp.media.editor.send.attachment = function(props, attachment) {
968
+ id.val(attachment.url);
969
+ };
970
+ wp.media.editor.open(button);
971
+ return false;
972
+ });
973
+ }
974
+ };
975
+
976
  });
977
 
978
  </script>
languages/en.mo CHANGED
Binary file
languages/en.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
- "POT-Creation-Date: 2014-10-31 14:47+0530\n"
5
- "PO-Revision-Date: 2014-10-31 14:47+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"
12
- "X-Generator: Poedit 1.6.7\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
@@ -20,114 +20,118 @@ msgstr ""
20
  msgid "Settings"
21
  msgstr ""
22
 
23
- #: er-custom-login.php:223
24
  msgid "Please upload a valid .json file"
25
  msgstr ""
26
 
27
- #: er-custom-login.php:229
28
  msgid "Please upload a file to import"
29
  msgstr ""
30
 
31
- #: er-custom-login.php:236
32
  msgid "New settings imported successfully!"
33
  msgstr ""
34
 
35
- #: er-custom-login.php:325
36
  msgid "Custom Login and Dashboard"
37
  msgstr ""
38
 
39
- #: er-custom-login.php:346
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr ""
42
 
43
- #: er-custom-login.php:347
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:347
50
  msgid "Click on the header of each block to open it."
51
  msgstr ""
52
 
53
- #: er-custom-login.php:354
54
  msgid "Settings saved."
55
  msgstr ""
56
 
57
- #: er-custom-login.php:361
58
  msgid "Dashboard Settings"
59
  msgstr ""
60
 
61
- #: er-custom-login.php:362
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:367
68
  msgid "Enter the text for dashboard left side footer:"
69
  msgstr ""
70
 
71
- #: er-custom-login.php:372
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:376
78
  msgid "Enter the text for dashboard right side footer:"
79
  msgstr ""
80
 
81
- #: er-custom-login.php:380
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:389
88
  msgid "Login Screen Background"
89
  msgstr ""
90
 
91
- #: er-custom-login.php:390
92
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
93
  msgstr ""
94
 
95
- #: er-custom-login.php:395
96
  msgid "Login Screen Background Color:"
97
  msgstr ""
98
 
99
- #: er-custom-login.php:400 er-custom-login.php:610 er-custom-login.php:722
100
- #: er-custom-login.php:750 er-custom-login.php:779 er-custom-login.php:791
101
  msgid "Click the box to select a color."
102
  msgstr ""
103
 
104
- #: er-custom-login.php:405
105
  msgid "Login Screen Background Image:"
106
  msgstr ""
107
 
108
- #: er-custom-login.php:409
 
 
 
 
109
  msgid ""
110
  "Add your own pattern/image url for the screen background. Leave blank if you "
111
  "don't need any images."
112
  msgstr ""
113
 
114
- #: er-custom-login.php:413
115
  msgid "Login Screen Background Repeat"
116
  msgstr ""
117
 
118
- #: er-custom-login.php:451 er-custom-login.php:669
119
  msgid "Select an image repeat option from dropdown."
120
  msgstr ""
121
 
122
- #: er-custom-login.php:455 er-custom-login.php:674
123
  msgid "Background Position:"
124
  msgstr ""
125
 
126
- #: er-custom-login.php:456 er-custom-login.php:675
127
  msgid "Horizontal Position: "
128
  msgstr ""
129
 
130
- #: er-custom-login.php:461 er-custom-login.php:680
131
  msgid ""
132
  "The background-position property sets the starting position of a background "
133
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
@@ -136,11 +140,11 @@ msgid ""
136
  "cssref/pr_background-position.asp\" target=\"_blank\">More Info</a>"
137
  msgstr ""
138
 
139
- #: er-custom-login.php:466
140
  msgid "Background Size:"
141
  msgstr ""
142
 
143
- #: er-custom-login.php:470
144
  msgid ""
145
  "The background-size property specifies the size of a background image. If "
146
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
@@ -149,107 +153,107 @@ msgid ""
149
  "asp\" target=\"_blank\">More Info</a>"
150
  msgstr ""
151
 
152
- #: er-custom-login.php:481
153
  msgid "Login Screen Logo"
154
  msgstr ""
155
 
156
- #: er-custom-login.php:482
157
  msgid "(Change the default WordPress logo and powered by text)"
158
  msgstr ""
159
 
160
- #: er-custom-login.php:487
161
  msgid "Logo Url:"
162
  msgstr ""
163
 
164
- #: er-custom-login.php:489
165
- msgid "Default Logo Size 274px × 63px"
166
  msgstr ""
167
 
168
- #: er-custom-login.php:491
169
  msgid ""
170
  "(URL path to image to replace default WordPress Logo. (You can upload your "
171
  "image with the WordPress media uploader)"
172
  msgstr ""
173
 
174
- #: er-custom-login.php:496
175
  msgid "Logo Width:"
176
  msgstr ""
177
 
178
- #: er-custom-login.php:500
179
  msgid "Your Logo width(Enter in pixels). Default: 274px"
180
  msgstr ""
181
 
182
- #: er-custom-login.php:504
183
  msgid "Logo Height:"
184
  msgstr ""
185
 
186
- #: er-custom-login.php:508
187
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
188
  msgstr ""
189
 
190
- #: er-custom-login.php:513
191
  msgid "Powered by Text:"
192
  msgstr ""
193
 
194
- #: er-custom-login.php:517
195
  msgid "Show when mouse hover over custom Login logo"
196
  msgstr ""
197
 
198
- #: er-custom-login.php:527
199
  msgid "Login Form Settings"
200
  msgstr ""
201
 
202
- #: er-custom-login.php:528
203
  msgid "(The following settings will change the Login Form style)"
204
  msgstr ""
205
 
206
- #: er-custom-login.php:533
207
  msgid "Login form width:"
208
  msgstr ""
209
 
210
- #: er-custom-login.php:537
211
  msgid "Total Form width(Enter in pixels). Default: 350px"
212
  msgstr ""
213
 
214
- #: er-custom-login.php:541
215
  msgid "Login Form Border Radius:"
216
  msgstr ""
217
 
218
- #: er-custom-login.php:545
219
  msgid ""
220
  "Border Radius of Login Form. This is the option to make the corners rounded."
221
  "(Enter in pixels)"
222
  msgstr ""
223
 
224
- #: er-custom-login.php:549
225
  msgid "Login Border Style"
226
  msgstr ""
227
 
228
- #: er-custom-login.php:593
229
  msgid "Select a Border Style option from dropdown."
230
  msgstr ""
231
 
232
- #: er-custom-login.php:597
233
  msgid "Login Border Thickness:"
234
  msgstr ""
235
 
236
- #: er-custom-login.php:601
237
  msgid "Thickness of Border (Enter value in pixels)"
238
  msgstr ""
239
 
240
- #: er-custom-login.php:605
241
  msgid "Login Border Color:"
242
  msgstr ""
243
 
244
- #: er-custom-login.php:614
245
  msgid "Login Form Background Color:"
246
  msgstr ""
247
 
248
- #: er-custom-login.php:618
249
  msgid "Background Opacity: "
250
  msgstr ""
251
 
252
- #: er-custom-login.php:620
253
  msgid ""
254
  "Click the box to select a color. Background Opacity will helps you to put "
255
  "transparent color over a background image. Possible values 0 to 1. Example: "
@@ -258,171 +262,171 @@ msgid ""
258
  "Info</a>"
259
  msgstr ""
260
 
261
- #: er-custom-login.php:624
262
  msgid "Login Form Background Image:"
263
  msgstr ""
264
 
265
- #: er-custom-login.php:627
266
  msgid ""
267
  "Add your own pattern/image url to the form background. Leave blank if you "
268
  "don't need any images."
269
  msgstr ""
270
 
271
- #: er-custom-login.php:631
272
  msgid "Login Form Background Repeat"
273
  msgstr ""
274
 
275
- #: er-custom-login.php:677
276
  msgid "Vertical Position: "
277
  msgstr ""
278
 
279
- #: er-custom-login.php:685
280
  msgid "Login Form Label Text Color"
281
  msgstr ""
282
 
283
- #: er-custom-login.php:690
284
  msgid ""
285
  "Click the box to select a color. This will change the color of label "
286
  "Username/Password"
287
  msgstr ""
288
 
289
- #: er-custom-login.php:694
290
  msgid "Login Form Label Text Size:"
291
  msgstr ""
292
 
293
- #: er-custom-login.php:697
294
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
295
  msgstr ""
296
 
297
- #: er-custom-login.php:701
298
  msgid "Login Form Input Text Color"
299
  msgstr ""
300
 
301
- #: er-custom-login.php:706
302
  msgid ""
303
  "Click the box to select a color. This will change the color of text inside "
304
  "text box."
305
  msgstr ""
306
 
307
- #: er-custom-login.php:710
308
  msgid "Login Form Input Text Size:"
309
  msgstr ""
310
 
311
- #: er-custom-login.php:713
312
  msgid "Font Size of text inside text box(Enter value in pixels)"
313
  msgstr ""
314
 
315
- #: er-custom-login.php:717
316
  msgid "Login Form Link Color"
317
  msgstr ""
318
 
319
- #: er-custom-login.php:727
320
  msgid "Enable link shadow?"
321
  msgstr ""
322
 
323
- #: er-custom-login.php:735 er-custom-login.php:764 er-custom-login.php:815
324
  msgid "Yes"
325
  msgstr ""
326
 
327
- #: er-custom-login.php:739 er-custom-login.php:768 er-custom-login.php:819
328
  msgid "No"
329
  msgstr ""
330
 
331
- #: er-custom-login.php:741 er-custom-login.php:770
332
  msgid "(Check an option)"
333
  msgstr ""
334
 
335
- #: er-custom-login.php:745
336
  msgid "Login Form Link Shadow Color"
337
  msgstr ""
338
 
339
- #: er-custom-login.php:756
340
  msgid "Enable form shadow?"
341
  msgstr ""
342
 
343
- #: er-custom-login.php:774
344
  msgid "Login Form Shadow Color"
345
  msgstr ""
346
 
347
- #: er-custom-login.php:786
348
  msgid "Login Button Color"
349
  msgstr ""
350
 
351
- #: er-custom-login.php:802
352
  msgid "Plugin Un-install Settings"
353
  msgstr ""
354
 
355
- #: er-custom-login.php:807
356
  msgid "Delete custom settings upon plugin deactivation?"
357
  msgstr ""
358
 
359
- #: er-custom-login.php:821
360
  msgid ""
361
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
362
  "plugin deactivation)"
363
  msgstr ""
364
 
365
- #: er-custom-login.php:829
366
  msgid "Save Changes"
367
  msgstr ""
368
 
369
- #: er-custom-login.php:836
370
  msgid "Export Settings"
371
  msgstr ""
372
 
373
- #: er-custom-login.php:838
374
  msgid ""
375
  "Export the plugin settings for this site as a .json file. This allows you to "
376
  "easily import the configuration into another site."
377
  msgstr ""
378
 
379
- #: er-custom-login.php:843
380
  msgid "Export"
381
  msgstr ""
382
 
383
- #: er-custom-login.php:851
384
  msgid "Import Settings"
385
  msgstr ""
386
 
387
- #: er-custom-login.php:853
388
  msgid ""
389
  "Import the plugin settings from a .json file. This file can be obtained by "
390
  "exporting the settings on another site using the form above."
391
  msgstr ""
392
 
393
- #: er-custom-login.php:861
394
  msgid "Import"
395
  msgstr ""
396
 
397
- #: er-custom-login.php:869
398
  msgid "Quick Links"
399
  msgstr ""
400
 
401
- #: er-custom-login.php:871
402
  msgid "Open Your WP Login Page in a New Tab"
403
  msgstr ""
404
 
405
- #: er-custom-login.php:872
406
  msgid "Plugin Documentation"
407
  msgstr ""
408
 
409
- #: er-custom-login.php:873
410
  msgid "Plugin Support Page"
411
  msgstr ""
412
 
413
- #: er-custom-login.php:874
414
  msgid "Feature Request/Suggestions?"
415
  msgstr ""
416
 
417
- #: er-custom-login.php:875
418
  msgid "Got some Love? Give us a 5 star rating!"
419
  msgstr ""
420
 
421
- #: er-custom-login.php:879
422
  msgid "Hire Me"
423
  msgstr ""
424
 
425
- #: er-custom-login.php:880
426
  msgid ""
427
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
428
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
@@ -430,28 +434,34 @@ msgid ""
430
  "www.libin.in\" target=\"_blank\">www.libin.in</a>"
431
  msgstr ""
432
 
433
- #: er-custom-login.php:882
434
  msgid "Translation Credits"
435
  msgstr ""
436
 
437
- #: er-custom-login.php:884
438
  msgid ""
439
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
440
  "\">Adriana De La Cuadra</a>"
441
  msgstr ""
442
 
443
- #: er-custom-login.php:885
444
  msgid ""
445
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
446
  "\" target=\"_blank\">Guillaume Vaslin</a>"
447
  msgstr ""
448
 
449
- #: er-custom-login.php:886
450
  msgid ""
451
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
452
  "Kaulfuss</a>"
453
  msgstr ""
454
 
455
- #: er-custom-login.php:888
 
 
 
 
 
 
456
  msgid "Do you wants to translate this plugin to your language? Email me!"
457
  msgstr ""
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"
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"
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
  "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
  "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
  "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
  "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 ""
languages/erident-custom-login-and-dashboard-de_DE.mo CHANGED
Binary file
languages/erident-custom-login-and-dashboard-de_DE.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
- "POT-Creation-Date: 2014-10-29 16:50+0530\n"
5
- "PO-Revision-Date: 2014-11-30 14:10+0100\n"
6
  "Last-Translator: Peter Kaulfuß <info@peter-kaulfuss.eu>\n"
7
  "Language-Team: Peter Kaulfuß\n"
8
  "Language: de_DE\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.9\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
@@ -20,27 +20,27 @@ msgstr ""
20
  msgid "Settings"
21
  msgstr "Einstellungen"
22
 
23
- #: er-custom-login.php:223
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:229
28
  msgid "Please upload a file to import"
29
  msgstr "Bitte laden Sie eine Datei zum Importieren hoch"
30
 
31
- #: er-custom-login.php:236
32
  msgid "New settings imported successfully!"
33
  msgstr "Die neuen Einstellungen wurden erfolgreich importiert!"
34
 
35
- #: er-custom-login.php:325
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Persönliches Login und Dashboard"
38
 
39
- #: er-custom-login.php:346
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "Erident Custom Login and Dashboard Einstellungen"
42
 
43
- #: er-custom-login.php:347
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:347
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:354
58
  msgid "Settings saved."
59
  msgstr "Einstellungen gespeichert."
60
 
61
- #: er-custom-login.php:361
62
  msgid "Dashboard Settings"
63
  msgstr "Dashboard Einstellungen"
64
 
65
- #: er-custom-login.php:362
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:367
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:372
79
  msgid ""
80
  "This will replace the default \"Thank you for creating with WordPress\" on "
81
  "the bottom left side of dashboard"
@@ -83,12 +83,12 @@ 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:376
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:380
92
  msgid ""
93
  "This will replace the default \"WordPress Version\" on the bottom right side "
94
  "of dashboard"
@@ -96,29 +96,33 @@ msgstr ""
96
  "Diese Einstellung wird den Standardtext \"Version ...\" unten rechts auf dem "
97
  "Dashboard ersetzen"
98
 
99
- #: er-custom-login.php:389
100
  msgid "Login Screen Background"
101
  msgstr "Login Seite Hintergrund"
102
 
103
- #: er-custom-login.php:390
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:395
109
  msgid "Login Screen Background Color:"
110
  msgstr "Login Seite Hintergrundfarbe:"
111
 
112
- #: er-custom-login.php:400 er-custom-login.php:610 er-custom-login.php:722
113
- #: er-custom-login.php:750 er-custom-login.php:779 er-custom-login.php:791
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:405
118
  msgid "Login Screen Background Image:"
119
  msgstr "Login Seite Hintergrund Bild:"
120
 
121
- #: er-custom-login.php:409
 
 
 
 
122
  msgid ""
123
  "Add your own pattern/image url for the screen background. Leave blank if you "
124
  "don't need any images."
@@ -127,25 +131,25 @@ msgstr ""
127
  "Hintergrund ein. Frei lassen, falls Sie kein Bild in den Hintergrund "
128
  "einfügen wollen."
129
 
130
- #: er-custom-login.php:413
131
  msgid "Login Screen Background Repeat"
132
  msgstr "Login Seite Hintergrund Wiederholung"
133
 
134
- #: er-custom-login.php:451 er-custom-login.php:669
135
  msgid "Select an image repeat option from dropdown."
136
  msgstr ""
137
  "Wählen Sie eine Option zur Wiederholung des Hintergrundbildes aus dem "
138
  "Auswahlmenü aus."
139
 
140
- #: er-custom-login.php:455 er-custom-login.php:674
141
  msgid "Background Position:"
142
  msgstr "Hintergrund Position:"
143
 
144
- #: er-custom-login.php:456 er-custom-login.php:675
145
  msgid "Horizontal Position: "
146
  msgstr "Horizontale Position:"
147
 
148
- #: er-custom-login.php:461 er-custom-login.php:680
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\" "
@@ -161,11 +165,11 @@ msgstr ""
161
  "<a href=\"http://www.w3schools.com/cssref/pr_background-position.asp\" "
162
  "target=\"_blank\">Weitere Informationen</a>"
163
 
164
- #: er-custom-login.php:466
165
  msgid "Background Size:"
166
  msgstr "Hintergund Größe:"
167
 
168
- #: er-custom-login.php:470
169
  msgid ""
170
  "The background-size property specifies the size of a background image. If "
171
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
@@ -180,23 +184,23 @@ msgstr ""
180
  "\"http://www.w3schools.com/cssref/css3_pr_background-size.asp\" target="
181
  "\"_blank\">Weitere Informationen</a>"
182
 
183
- #: er-custom-login.php:481
184
  msgid "Login Screen Logo"
185
  msgstr "Login Seite Logo"
186
 
187
- #: er-custom-login.php:482
188
  msgid "(Change the default WordPress logo and powered by text)"
189
  msgstr "(Ändert das Standard-Logo und den powered by Text von WordPress)"
190
 
191
- #: er-custom-login.php:487
192
  msgid "Logo Url:"
193
  msgstr "URL der Logo-Datei:"
194
 
195
- #: er-custom-login.php:489
196
- msgid "Default Logo Size 274px × 63px"
197
- msgstr "Standard Größe des Logos ist 274px x 63px"
198
 
199
- #: er-custom-login.php:491
200
  msgid ""
201
  "(URL path to image to replace default WordPress Logo. (You can upload your "
202
  "image with the WordPress media uploader)"
@@ -205,55 +209,55 @@ msgstr ""
205
  "werden soll. (Sie können ihre Logo-Datei mit dem Medien-Uploader von "
206
  "Wordpress hochladen, und die URL zum Bild dann hier einfügen))"
207
 
208
- #: er-custom-login.php:496
209
  msgid "Logo Width:"
210
  msgstr "Logo Breite:"
211
 
212
- #: er-custom-login.php:500
213
  msgid "Your Logo width(Enter in pixels). Default: 274px"
214
  msgstr "Die Breite Ihres Logos (Wert in Pixel eingeben). Standard: 271px"
215
 
216
- #: er-custom-login.php:504
217
  msgid "Logo Height:"
218
  msgstr "Logo Höhe:"
219
 
220
- #: er-custom-login.php:508
221
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
222
  msgstr "Die Höhe Ihres Logos (Wert in Pixel eingeben). Standard: 63px"
223
 
224
- #: er-custom-login.php:513
225
  msgid "Powered by Text:"
226
  msgstr "Powered by Text:"
227
 
228
- #: er-custom-login.php:517
229
  msgid "Show when mouse hover over custom Login logo"
230
  msgstr "Wird angezeigt, wenn die Maus über dem Logo schwebt"
231
 
232
- #: er-custom-login.php:527
233
  msgid "Login Form Settings"
234
  msgstr "Login-Formular Einstellungen"
235
 
236
- #: er-custom-login.php:528
237
  msgid "(The following settings will change the Login Form style)"
238
  msgstr ""
239
  "(Die folgenden Einstellungen werden das Aussehen des Login-Formulars "
240
  "verändern)"
241
 
242
- #: er-custom-login.php:533
243
  msgid "Login form width:"
244
  msgstr "Login-Formular Breite:"
245
 
246
- #: er-custom-login.php:537
247
  msgid "Total Form width(Enter in pixels). Default: 350px"
248
  msgstr ""
249
  "Die gesamte Breite des Login-Formulars (Wert in Pixel eingeben). Standard: "
250
  "350px"
251
 
252
- #: er-custom-login.php:541
253
  msgid "Login Form Border Radius:"
254
  msgstr "Login-Formular Rahmen-Radius:"
255
 
256
- #: er-custom-login.php:545
257
  msgid ""
258
  "Border Radius of Login Form. This is the option to make the corners rounded."
259
  "(Enter in pixels)"
@@ -261,35 +265,35 @@ msgstr ""
261
  "Der Rahmen-Radius des Login-Formulars. Diese Einstellung bewirkt das die "
262
  "Ecken des Rahmens rund werden. (In Pixel eingeben)"
263
 
264
- #: er-custom-login.php:549
265
  msgid "Login Border Style"
266
  msgstr "Login-Formular Rahmen-Linienart"
267
 
268
- #: er-custom-login.php:593
269
  msgid "Select a Border Style option from dropdown."
270
  msgstr "Wählen Sie eine Rahmen-Linienart aus dem Auswahlmenü aus."
271
 
272
- #: er-custom-login.php:597
273
  msgid "Login Border Thickness:"
274
  msgstr "Login-Formular Rahmen Liniendicke"
275
 
276
- #: er-custom-login.php:601
277
  msgid "Thickness of Border (Enter value in pixels)"
278
  msgstr "Die Dicke der Rahmen-Linie (Einen Wert in Pixel eingeben)"
279
 
280
- #: er-custom-login.php:605
281
  msgid "Login Border Color:"
282
  msgstr "Login-Formular Rahmen Linienfarbe"
283
 
284
- #: er-custom-login.php:614
285
  msgid "Login Form Background Color:"
286
  msgstr "Login-Formular Hintergrund Farbe:"
287
 
288
- #: er-custom-login.php:618
289
  msgid "Background Opacity: "
290
  msgstr "Hintergund Transparenz:"
291
 
292
- #: er-custom-login.php:620
293
  msgid ""
294
  "Click the box to select a color. Background Opacity will helps you to put "
295
  "transparent color over a background image. Possible values 0 to 1. Example: "
@@ -304,11 +308,11 @@ msgstr ""
304
  "erident-custom-login-and-dashboard/faq/\" target=\"_blank\">Mehr "
305
  "Informationen</a>"
306
 
307
- #: er-custom-login.php:624
308
  msgid "Login Form Background Image:"
309
  msgstr "Login-Formular Hintergrund Bild:"
310
 
311
- #: er-custom-login.php:627
312
  msgid ""
313
  "Add your own pattern/image url to the form background. Leave blank if you "
314
  "don't need any images."
@@ -317,19 +321,19 @@ msgstr ""
317
  "Formular Hintergrund ein. Frei lassen, falls Sie kein Bild in den "
318
  "Hintergrund einfügen wollen."
319
 
320
- #: er-custom-login.php:631
321
  msgid "Login Form Background Repeat"
322
  msgstr "Login-Formular Hnitergrundbild Wiederholungen"
323
 
324
- #: er-custom-login.php:677
325
  msgid "Vertical Position: "
326
  msgstr "Vertikale Position:"
327
 
328
- #: er-custom-login.php:685
329
  msgid "Login Form Label Text Color"
330
  msgstr "Login-Formular Beschriftung Text-Farbe"
331
 
332
- #: er-custom-login.php:690
333
  msgid ""
334
  "Click the box to select a color. This will change the color of label "
335
  "Username/Password"
@@ -337,21 +341,21 @@ msgstr ""
337
  "Klicken Sie die Box an, um eine Farbe auszuwählen. Diese Option verändert "
338
  "die Farbe des Beschriftungstextes Benutzername / Passwort"
339
 
340
- #: er-custom-login.php:694
341
  msgid "Login Form Label Text Size:"
342
  msgstr "Login-Formular Beschriftung Text-Größe"
343
 
344
- #: er-custom-login.php:697
345
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
346
  msgstr ""
347
  "Schriftgröße des Beschriftungstextes der Formularfelder Benutzername / "
348
  "Passwort (Wert in Pixel eingeben)"
349
 
350
- #: er-custom-login.php:701
351
  msgid "Login Form Input Text Color"
352
  msgstr "Login-Formular Texteingabe Text-Farbe"
353
 
354
- #: er-custom-login.php:706
355
  msgid ""
356
  "Click the box to select a color. This will change the color of text inside "
357
  "text box."
@@ -359,62 +363,62 @@ msgstr ""
359
  "Klicken Sie die Box an, um eine Farbe auszuwählen. Diese Option verändert "
360
  "die Farbe des Eingabetextes in den Formularfeldern."
361
 
362
- #: er-custom-login.php:710
363
  msgid "Login Form Input Text Size:"
364
  msgstr "Login-Formular Texteingabe Text-Größe"
365
 
366
- #: er-custom-login.php:713
367
  msgid "Font Size of text inside text box(Enter value in pixels)"
368
  msgstr ""
369
  "Schriftgröße des Textes der in die Formularfelder eingegeben wird (Wert in "
370
  "Pixel eingeben)"
371
 
372
- #: er-custom-login.php:717
373
  msgid "Login Form Link Color"
374
  msgstr "Login-Formular Link-Farbe"
375
 
376
- #: er-custom-login.php:727
377
  msgid "Enable link shadow?"
378
  msgstr "Schatten am Link aktivieren?"
379
 
380
- #: er-custom-login.php:735 er-custom-login.php:764 er-custom-login.php:815
381
  msgid "Yes"
382
  msgstr "Ja"
383
 
384
- #: er-custom-login.php:739 er-custom-login.php:768 er-custom-login.php:819
385
  msgid "No"
386
  msgstr "Nein"
387
 
388
- #: er-custom-login.php:741 er-custom-login.php:770
389
  msgid "(Check an option)"
390
  msgstr "(eine Option auswählen)"
391
 
392
- #: er-custom-login.php:745
393
  msgid "Login Form Link Shadow Color"
394
  msgstr "Login-Forumlar Link-Schatten Farbe"
395
 
396
- #: er-custom-login.php:756
397
  msgid "Enable form shadow?"
398
  msgstr "Schatten des Formularfeldes aktivieren?"
399
 
400
- #: er-custom-login.php:774
401
  msgid "Login Form Shadow Color"
402
  msgstr "Login-Formular Formular-Schatten Farbe"
403
 
404
- #: er-custom-login.php:786
405
  msgid "Login Button Color"
406
  msgstr "Login-Knopf Farbe"
407
 
408
- #: er-custom-login.php:802
409
  msgid "Plugin Un-install Settings"
410
  msgstr "Plugin De-Installation Einstellungen"
411
 
412
- #: er-custom-login.php:807
413
  msgid "Delete custom settings upon plugin deactivation?"
414
  msgstr ""
415
  "Benutzerspezifische Einstellungen bei der Deaktivierung des Plugins löschen?"
416
 
417
- #: er-custom-login.php:821
418
  msgid ""
419
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
420
  "plugin deactivation)"
@@ -425,15 +429,15 @@ msgstr ""
425
  "DER OPTION \"JA\" WERDEN BEI DER NÄCHSTEN DEAKTIVIERUNG ALLE "
426
  "BENUTZERSPEZIFISCHEN EINSTELLUNGEN AUS DER DATENBANK GELÖSCHT!)"
427
 
428
- #: er-custom-login.php:829
429
  msgid "Save Changes"
430
  msgstr "Änderungen speichern"
431
 
432
- #: er-custom-login.php:836
433
  msgid "Export Settings"
434
  msgstr "Einstellungen exportieren"
435
 
436
- #: er-custom-login.php:838
437
  msgid ""
438
  "Export the plugin settings for this site as a .json file. This allows you to "
439
  "easily import the configuration into another site."
@@ -442,15 +446,15 @@ msgstr ""
442
  "Mit dieser Funktion können Sie die hier vorgenommenen Einstellungen einfach "
443
  "in eine andere WordPress-Seite übernehmen."
444
 
445
- #: er-custom-login.php:843
446
  msgid "Export"
447
  msgstr "Exportieren"
448
 
449
- #: er-custom-login.php:851
450
  msgid "Import Settings"
451
  msgstr "Einstellungen importieren"
452
 
453
- #: er-custom-login.php:853
454
  msgid ""
455
  "Import the plugin settings from a .json file. This file can be obtained by "
456
  "exporting the settings on another site using the form above."
@@ -460,39 +464,39 @@ msgstr ""
460
  "WordPress-Seite erzeugen, und damit diese Einstellungen einfach in die "
461
  "aktuelle WordPress-Seite übernehmen."
462
 
463
- #: er-custom-login.php:861
464
  msgid "Import"
465
  msgstr "Importieren"
466
 
467
- #: er-custom-login.php:869
468
  msgid "Quick Links"
469
  msgstr "Schnelle Hilfe - Quick Links"
470
 
471
- #: er-custom-login.php:871
472
  msgid "Open Your WP Login Page in a New Tab"
473
  msgstr "Die WP Login-Seite in einem neuen Tab öffnen"
474
 
475
- #: er-custom-login.php:872
476
  msgid "Plugin Documentation"
477
  msgstr "Dokumentation des Plugins"
478
 
479
- #: er-custom-login.php:873
480
  msgid "Plugin Support Page"
481
  msgstr "Support-Seite des Plugins"
482
 
483
- #: er-custom-login.php:874
484
  msgid "Feature Request/Suggestions?"
485
  msgstr "Neue Funktion gewünscht? Ideen ?"
486
 
487
- #: er-custom-login.php:875
488
  msgid "Got some Love? Give us a 5 star rating!"
489
  msgstr "Etwas Liebe geben? Geben Sie uns eine 5 Sterne Bewertung"
490
 
491
- #: er-custom-login.php:879
492
  msgid "Hire Me"
493
  msgstr "Engagieren Sie mich"
494
 
495
- #: er-custom-login.php:880
496
  msgid ""
497
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
498
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
@@ -505,11 +509,11 @@ msgstr ""
505
  "<br/>Online Portfolio: <a href=\"http://www.libin.in\" target=\"_blank\">www."
506
  "libin.in</a>"
507
 
508
- #: er-custom-login.php:882
509
  msgid "Translation Credits"
510
  msgstr "Vielen Dank für die Übersetzungen an: "
511
 
512
- #: er-custom-login.php:884
513
  msgid ""
514
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
515
  "\">Adriana De La Cuadra</a>"
@@ -517,7 +521,7 @@ msgstr ""
517
  "Spanisch von <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
518
  "\">Adriana De La Cuadra</a>"
519
 
520
- #: er-custom-login.php:885
521
  msgid ""
522
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
523
  "\" target=\"_blank\">Guillaume Vaslin</a>"
@@ -525,7 +529,7 @@ msgstr ""
525
  "Französisch von <a href=\"https://www.linkedin.com/pub/vaslin-"
526
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
527
 
528
- #: er-custom-login.php:886
529
  msgid ""
530
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
531
  "Kaulfuss</a>"
@@ -533,8 +537,19 @@ msgstr ""
533
  "Deutsch von <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
534
  "\">Peter Kaulfuss</a>"
535
 
536
- #: er-custom-login.php:888
 
 
 
 
 
 
 
 
537
  msgid "Do you wants to translate this plugin to your language? Email me!"
538
  msgstr ""
539
  "Sie möchten eine Übersetzung dieses Plugins in Ihrer Sprache beisteuern? "
540
  "Senden Sie eine <a href=\"mailto:libin@libin.in\">Email</a> an mich!"
 
 
 
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"
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"
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
  "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
  "(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
  "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"
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
  "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
  "<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
  "\"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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "<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
  "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
  "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
  "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>"
544
+ 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? "
552
  "Senden Sie eine <a href=\"mailto:libin@libin.in\">Email</a> an mich!"
553
+
554
+ #~ msgid "Default Logo Size 274px × 63px"
555
+ #~ msgstr "Standard Größe des Logos ist 274px x 63px"
languages/erident-custom-login-and-dashboard-es_ES.mo CHANGED
Binary file
languages/erident-custom-login-and-dashboard-es_ES.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
- "POT-Creation-Date: 2014-10-31 14:47+0530\n"
5
- "PO-Revision-Date: 2014-10-31 14:47+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"
12
- "X-Generator: Poedit 1.6.7\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
@@ -20,27 +20,27 @@ msgstr ""
20
  msgid "Settings"
21
  msgstr "Configuración"
22
 
23
- #: er-custom-login.php:223
24
  msgid "Please upload a valid .json file"
25
  msgstr "Por favor adjunte un archivo .json valido"
26
 
27
- #: er-custom-login.php:229
28
  msgid "Please upload a file to import"
29
  msgstr "Por favor adjunte un archivo a importar."
30
 
31
- #: er-custom-login.php:236
32
  msgid "New settings imported successfully!"
33
  msgstr "La nueva configuración fue importada exitosamente."
34
 
35
- #: er-custom-login.php:325
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Custom Login y Dashboard"
38
 
39
- #: er-custom-login.php:346
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "ERIDENT, Ingreso Customizado - Panel de Control"
42
 
43
- #: er-custom-login.php:347
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:347
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:354
56
  msgid "Settings saved."
57
  msgstr "Configuración Salvada"
58
 
59
- #: er-custom-login.php:361
60
  msgid "Dashboard Settings"
61
  msgstr "Configuración del panel"
62
 
63
- #: er-custom-login.php:362
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:367
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:372
76
  msgid ""
77
  "This will replace the default \"Thank you for creating with WordPress\" on "
78
  "the bottom left side of dashboard"
@@ -80,11 +80,11 @@ 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:376
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:380
88
  msgid ""
89
  "This will replace the default \"WordPress Version\" on the bottom right side "
90
  "of dashboard"
@@ -92,28 +92,32 @@ 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:389
96
  msgid "Login Screen Background"
97
  msgstr "Fondo de la Pantalla de Ingreso"
98
 
99
- #: er-custom-login.php:390
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:395
104
  msgid "Login Screen Background Color:"
105
  msgstr "Color del Fondo de la Pantalla de Ingreso:"
106
 
107
- #: er-custom-login.php:400 er-custom-login.php:610 er-custom-login.php:722
108
- #: er-custom-login.php:750 er-custom-login.php:779 er-custom-login.php:791
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:405
113
  msgid "Login Screen Background Image:"
114
  msgstr "Imagen de Fondo de la Pantalla de Ingreso: "
115
 
116
- #: er-custom-login.php:409
 
 
 
 
117
  msgid ""
118
  "Add your own pattern/image url for the screen background. Leave blank if you "
119
  "don't need any images."
@@ -121,23 +125,23 @@ msgstr ""
121
  "Añade el url de tu patrón/imagen para el fondo de la pantalla. Deja en "
122
  "blanco si no necesitas ninguna imagen."
123
 
124
- #: er-custom-login.php:413
125
  msgid "Login Screen Background Repeat"
126
  msgstr "Repetición de la Image de Fondo de la Pantalla de Ingreso:"
127
 
128
- #: er-custom-login.php:451 er-custom-login.php:669
129
  msgid "Select an image repeat option from dropdown."
130
  msgstr "Selecciona una opción de repetición."
131
 
132
- #: er-custom-login.php:455 er-custom-login.php:674
133
  msgid "Background Position:"
134
  msgstr "Posición de la Image de Fondo de la Pantalla de Ingreso: "
135
 
136
- #: er-custom-login.php:456 er-custom-login.php:675
137
  msgid "Horizontal Position: "
138
  msgstr "Posición horizontal:"
139
 
140
- #: er-custom-login.php:461 er-custom-login.php:680
141
  msgid ""
142
  "The background-position property sets the starting position of a background "
143
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
@@ -152,11 +156,11 @@ msgstr ""
152
  "\"http://www.w3schools.com/cssref/pr_background-position.asp\" target="
153
  "\"_blank\"> Más información </ a>"
154
 
155
- #: er-custom-login.php:466
156
  msgid "Background Size:"
157
  msgstr "Tamaño e la Image de Fondo de la Pantalla de Ingreso:"
158
 
159
- #: er-custom-login.php:470
160
  msgid ""
161
  "The background-size property specifies the size of a background image. If "
162
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
@@ -170,23 +174,23 @@ msgstr ""
170
  "contienen. <a href=\"http://www.w3schools.com/cssref/css3_pr_background-size."
171
  "asp\" target=\"_blank\"> Más información </ a>"
172
 
173
- #: er-custom-login.php:481
174
  msgid "Login Screen Logo"
175
  msgstr "Logo de la Pantalla de Ingreso"
176
 
177
- #: er-custom-login.php:482
178
  msgid "(Change the default WordPress logo and powered by text)"
179
  msgstr "(Cambia el logo de Wordpress y el texto \"powered by Wordpress\")"
180
 
181
- #: er-custom-login.php:487
182
  msgid "Logo Url:"
183
  msgstr "URL del Logo:"
184
 
185
- #: er-custom-login.php:489
186
- msgid "Default Logo Size 274px × 63px"
187
- msgstr "Tamaño predeterminado 274 x 63 px"
188
 
189
- #: er-custom-login.php:491
190
  msgid ""
191
  "(URL path to image to replace default WordPress Logo. (You can upload your "
192
  "image with the WordPress media uploader)"
@@ -194,86 +198,86 @@ msgstr ""
194
  "Ingresa el URL para reemplazar el logo de Wordpress. (Tu puedes subir tu "
195
  "image usando el cargador de medios de Wordpress)"
196
 
197
- #: er-custom-login.php:496
198
  msgid "Logo Width:"
199
  msgstr "Ancho del Logo:"
200
 
201
- #: er-custom-login.php:500
202
  msgid "Your Logo width(Enter in pixels). Default: 274px"
203
  msgstr "Anchura del logo. El valor predeterminado es 274px"
204
 
205
- #: er-custom-login.php:504
206
  msgid "Logo Height:"
207
  msgstr "Alto del Logo:"
208
 
209
- #: er-custom-login.php:508
210
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
211
  msgstr "Altura del logo. El valor predeterminado es 63px"
212
 
213
- #: er-custom-login.php:513
214
  msgid "Powered by Text:"
215
  msgstr "Desarrollado por:"
216
 
217
- #: er-custom-login.php:517
218
  msgid "Show when mouse hover over custom Login logo"
219
  msgstr "Este valor se muestra cuando se pasa el mouse sobre el logo"
220
 
221
- #: er-custom-login.php:527
222
  msgid "Login Form Settings"
223
  msgstr "Formato de la Pantalla de Ingreso"
224
 
225
- #: er-custom-login.php:528
226
  msgid "(The following settings will change the Login Form style)"
227
  msgstr ""
228
  "(Estos ajustes cambiarán el estilo del formato de la pantalla de ingreso)"
229
 
230
- #: er-custom-login.php:533
231
  msgid "Login form width:"
232
  msgstr "Ancho del Formato:"
233
 
234
- #: er-custom-login.php:537
235
  msgid "Total Form width(Enter in pixels). Default: 350px"
236
  msgstr "Ancho total del formato en píxeles. Tamaño predeterminado: 350px"
237
 
238
- #: er-custom-login.php:541
239
  msgid "Login Form Border Radius:"
240
  msgstr "Radio del Borde del Formato:"
241
 
242
- #: er-custom-login.php:545
243
  msgid ""
244
  "Border Radius of Login Form. This is the option to make the corners rounded."
245
  "(Enter in pixels)"
246
  msgstr "Usa esta opción para hacer las esquinas del formato redondas."
247
 
248
- #: er-custom-login.php:549
249
  msgid "Login Border Style"
250
  msgstr "Estilo del Borde del Formato:"
251
 
252
- #: er-custom-login.php:593
253
  msgid "Select a Border Style option from dropdown."
254
  msgstr "Selecciona una opción del menú."
255
 
256
- #: er-custom-login.php:597
257
  msgid "Login Border Thickness:"
258
  msgstr "Espesor del Borde del Formato:"
259
 
260
- #: er-custom-login.php:601
261
  msgid "Thickness of Border (Enter value in pixels)"
262
  msgstr "Entra el valor en píxeles."
263
 
264
- #: er-custom-login.php:605
265
  msgid "Login Border Color:"
266
  msgstr "Color del Borde del Formato:"
267
 
268
- #: er-custom-login.php:614
269
  msgid "Login Form Background Color:"
270
  msgstr "Color de Fondo del Formato:"
271
 
272
- #: er-custom-login.php:618
273
  msgid "Background Opacity: "
274
  msgstr "Opacidad de fondo:"
275
 
276
- #: er-custom-login.php:620
277
  msgid ""
278
  "Click the box to select a color. Background Opacity will helps you to put "
279
  "transparent color over a background image. Possible values 0 to 1. Example: "
@@ -287,30 +291,30 @@ msgstr ""
287
  "defecto: 1 <a href=\"https://wordpress.org/plugins/erident-custom-login-and-"
288
  "dashboard/faq/\" target=\"_blank\">Más información</a>"
289
 
290
- #: er-custom-login.php:624
291
  msgid "Login Form Background Image:"
292
  msgstr "Imagen de Fondo del Formato:"
293
 
294
- #: er-custom-login.php:627
295
  msgid ""
296
  "Add your own pattern/image url to the form background. Leave blank if you "
297
  "don't need any images."
298
  msgstr ""
299
  "Agrega tu propio patrón/imagen. Deja en blanco si no necesitas imágenes."
300
 
301
- #: er-custom-login.php:631
302
  msgid "Login Form Background Repeat"
303
  msgstr "Repetición de la Imagen de Fondo del Formato:"
304
 
305
- #: er-custom-login.php:677
306
  msgid "Vertical Position: "
307
  msgstr "Posición Vertical:"
308
 
309
- #: er-custom-login.php:685
310
  msgid "Login Form Label Text Color"
311
  msgstr "Color del Texto de las Etiquetas del Formato:"
312
 
313
- #: er-custom-login.php:690
314
  msgid ""
315
  "Click the box to select a color. This will change the color of label "
316
  "Username/Password"
@@ -318,79 +322,79 @@ msgstr ""
318
  "Haz click en el cuadro para seleccionar un color. Esta opción cambiara el "
319
  "color de las etiquetas \"usuario\" y \"contraseña\""
320
 
321
- #: er-custom-login.php:694
322
  msgid "Login Form Label Text Size:"
323
  msgstr "Tamaño del Texto de las Etiquetas del Formato:"
324
 
325
- #: er-custom-login.php:697
326
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
327
  msgstr "Entra el valor en píxeles."
328
 
329
- #: er-custom-login.php:701
330
  msgid "Login Form Input Text Color"
331
  msgstr "Color del Texto de los Campos del Formato:"
332
 
333
- #: er-custom-login.php:706
334
  msgid ""
335
  "Click the box to select a color. This will change the color of text inside "
336
  "text box."
337
  msgstr "Haz click en el cuadro para seleccionar un color."
338
 
339
- #: er-custom-login.php:710
340
  msgid "Login Form Input Text Size:"
341
  msgstr "Tamaño del Texto de los Campos del Formato:"
342
 
343
- #: er-custom-login.php:713
344
  msgid "Font Size of text inside text box(Enter value in pixels)"
345
  msgstr "Entra el valor en píxeles."
346
 
347
- #: er-custom-login.php:717
348
  msgid "Login Form Link Color"
349
  msgstr "Color de los enlaces:"
350
 
351
- #: er-custom-login.php:727
352
  msgid "Enable link shadow?"
353
  msgstr "Deseas habilitar la sombra en los enlaces?"
354
 
355
- #: er-custom-login.php:735 er-custom-login.php:764 er-custom-login.php:815
356
  msgid "Yes"
357
  msgstr "sí"
358
 
359
- #: er-custom-login.php:739 er-custom-login.php:768 er-custom-login.php:819
360
  msgid "No"
361
  msgstr "no"
362
 
363
- #: er-custom-login.php:741 er-custom-login.php:770
364
  msgid "(Check an option)"
365
  msgstr "(Marca una opción)"
366
 
367
- #: er-custom-login.php:745
368
  msgid "Login Form Link Shadow Color"
369
  msgstr "Color de la Sombra del Formato:"
370
 
371
- #: er-custom-login.php:756
372
  msgid "Enable form shadow?"
373
  msgstr "Activar forma de sombra?"
374
 
375
- #: er-custom-login.php:774
376
  msgid "Login Form Shadow Color"
377
  msgstr "Color de la Sombra del Formato:"
378
 
379
- #: er-custom-login.php:786
380
  msgid "Login Button Color"
381
  msgstr "Color del Botón del Formato:"
382
 
383
- #: er-custom-login.php:802
384
  msgid "Plugin Un-install Settings"
385
  msgstr "Opción para Desinstalar el Plugin"
386
 
387
- #: er-custom-login.php:807
388
  msgid "Delete custom settings upon plugin deactivation?"
389
  msgstr ""
390
  "Deseas borrar las configuraciones que has customizado una vez el plugin sea "
391
  "desactivado?"
392
 
393
- #: er-custom-login.php:821
394
  msgid ""
395
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
396
  "plugin deactivation)"
@@ -398,15 +402,15 @@ msgstr ""
398
  "(Si seleccionas \"sí\" todas los cambios que hayas hecho a la configuración "
399
  "serán borrados de la base de datos una vez el plugin sea desactivado)"
400
 
401
- #: er-custom-login.php:829
402
  msgid "Save Changes"
403
  msgstr "Guardar cambios"
404
 
405
- #: er-custom-login.php:836
406
  msgid "Export Settings"
407
  msgstr "Exportar Configuración"
408
 
409
- #: er-custom-login.php:838
410
  msgid ""
411
  "Export the plugin settings for this site as a .json file. This allows you to "
412
  "easily import the configuration into another site."
@@ -414,15 +418,15 @@ msgstr ""
414
  "Exportar la configuración del plugin de este sitio web en formato .json. "
415
  "Esto permite importar la configuración a otro sitio."
416
 
417
- #: er-custom-login.php:843
418
  msgid "Export"
419
  msgstr "exportación"
420
 
421
- #: er-custom-login.php:851
422
  msgid "Import Settings"
423
  msgstr "Importar Configuración"
424
 
425
- #: er-custom-login.php:853
426
  msgid ""
427
  "Import the plugin settings from a .json file. This file can be obtained by "
428
  "exporting the settings on another site using the form above."
@@ -431,39 +435,39 @@ msgstr ""
431
  "puedeobtainer al exportar la configuración de otro sitio web usando el "
432
  "formato de arriba."
433
 
434
- #: er-custom-login.php:861
435
  msgid "Import"
436
  msgstr "importación"
437
 
438
- #: er-custom-login.php:869
439
  msgid "Quick Links"
440
  msgstr "Enlaces Rápidos"
441
 
442
- #: er-custom-login.php:871
443
  msgid "Open Your WP Login Page in a New Tab"
444
  msgstr "Abrir una WP Login Página en una nueva pestaña"
445
 
446
- #: er-custom-login.php:872
447
  msgid "Plugin Documentation"
448
  msgstr "Documentación del Plugin"
449
 
450
- #: er-custom-login.php:873
451
  msgid "Plugin Support Page"
452
  msgstr "Página de Soporte Plugin"
453
 
454
- #: er-custom-login.php:874
455
  msgid "Feature Request/Suggestions?"
456
  msgstr "Sugerencias?"
457
 
458
- #: er-custom-login.php:875
459
  msgid "Got some Love? Give us a 5 star rating!"
460
  msgstr "¿Tienes algo de amor? Danos un 5 estrellas!"
461
 
462
- #: er-custom-login.php:879
463
  msgid "Hire Me"
464
  msgstr "Contratamé"
465
 
466
- #: er-custom-login.php:880
467
  msgid ""
468
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
469
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
@@ -476,11 +480,11 @@ msgstr ""
476
  "portafolio en linea: <a href=\"http://www.libin.in\" target=\"_blank\">www."
477
  "libin.in</a>"
478
 
479
- #: er-custom-login.php:882
480
  msgid "Translation Credits"
481
  msgstr "Traducción"
482
 
483
- #: er-custom-login.php:884
484
  msgid ""
485
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
486
  "\">Adriana De La Cuadra</a>"
@@ -488,7 +492,7 @@ msgstr ""
488
  "Traducida al Español por <a href=\"http://www.linkedin.com/in/adrifolio\" "
489
  "target=\"_blank\">Adriana De La Cuadra</a>"
490
 
491
- #: er-custom-login.php:885
492
  msgid ""
493
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
494
  "\" target=\"_blank\">Guillaume Vaslin</a>"
@@ -496,7 +500,7 @@ msgstr ""
496
  "Traducción al Francés por<a href=\"https://www.linkedin.com/pub/vaslin-"
497
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
498
 
499
- #: er-custom-login.php:886
500
  msgid ""
501
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
502
  "Kaulfuss</a>"
@@ -504,8 +508,22 @@ msgstr ""
504
  "Alemán por <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
505
  "\">Peter Kaulfuss</a>"
506
 
507
- #: er-custom-login.php:888
 
 
 
 
 
 
 
 
508
  msgid "Do you wants to translate this plugin to your language? Email me!"
509
  msgstr ""
510
  "¿Usted quiere traducir este plugin en tu idioma? Envíeme un correo "
511
  "electrónico!"
 
 
 
 
 
 
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"
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"
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
  "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
  "(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
  "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"
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
  "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
  "\"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
  "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
  "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
  "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
  "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
  "(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
  "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
  "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
  "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
  "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
  "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
  "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>"
515
+ 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 "
523
  "electrónico!"
524
+
525
+ #~ msgid "Dutch by <a href=\"#\" target=\"_blank\">John Blom</a>"
526
+ #~ msgstr "Dutch poor <a href=\"#\" target=\"_blank\">John Blom</a>"
527
+
528
+ #~ msgid "Default Logo Size 274px × 63px"
529
+ #~ msgstr "Tamaño predeterminado 274 x 63 px"
languages/erident-custom-login-and-dashboard-fr_FR.mo CHANGED
Binary file
languages/erident-custom-login-and-dashboard-fr_FR.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
- "POT-Creation-Date: 2014-10-31 14:47+0530\n"
5
- "PO-Revision-Date: 2014-10-31 14:47+0530\n"
6
  "Last-Translator: Guillaume Vaslin <moskito7@wanadoo.fr>\n"
7
  "Language-Team: \n"
8
  "Language: fr\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.7\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
@@ -20,27 +20,27 @@ msgstr ""
20
  msgid "Settings"
21
  msgstr "Réglages"
22
 
23
- #: er-custom-login.php:223
24
  msgid "Please upload a valid .json file"
25
  msgstr "Veuillez charger un fichier .json valide"
26
 
27
- #: er-custom-login.php:229
28
  msgid "Please upload a file to import"
29
  msgstr "Veuillez charger un fichier à importer"
30
 
31
- #: er-custom-login.php:236
32
  msgid "New settings imported successfully!"
33
  msgstr "Nouveaux réglages importés avec succès !"
34
 
35
- #: er-custom-login.php:325
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Connexion et tableau de bord personnalisés"
38
 
39
- #: er-custom-login.php:346
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "Réglages d'Erident Custom Login and Dashboard"
42
 
43
- #: er-custom-login.php:347
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:347
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:354
56
  msgid "Settings saved."
57
  msgstr "Réglages sauvegardés."
58
 
59
- #: er-custom-login.php:361
60
  msgid "Dashboard Settings"
61
  msgstr "Réglages du tableau de bord"
62
 
63
- #: er-custom-login.php:362
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:367
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:372
76
  msgid ""
77
  "This will replace the default \"Thank you for creating with WordPress\" on "
78
  "the bottom left side of dashboard"
@@ -80,39 +80,43 @@ msgstr ""
80
  "Ceci remplacera le texte \"Merci d'utiliser WordPress\" en bas à gauche du "
81
  "tableau de bord"
82
 
83
- #: er-custom-login.php:376
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:380
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:389
95
  msgid "Login Screen Background"
96
  msgstr "Fond de l'écran de connexion"
97
 
98
- #: er-custom-login.php:390
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:395
103
  msgid "Login Screen Background Color:"
104
  msgstr "Couleur du fond de l'écran de connexion : "
105
 
106
- #: er-custom-login.php:400 er-custom-login.php:610 er-custom-login.php:722
107
- #: er-custom-login.php:750 er-custom-login.php:779 er-custom-login.php:791
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:405
112
  msgid "Login Screen Background Image:"
113
  msgstr "Image de fond de l'écran de connexion : "
114
 
115
- #: er-custom-login.php:409
 
 
 
 
116
  msgid ""
117
  "Add your own pattern/image url for the screen background. Leave blank if you "
118
  "don't need any images."
@@ -120,25 +124,25 @@ msgstr ""
120
  "Ajoutez l'url de votre propre motif/image pour le fond de l'écran. Laissez "
121
  "ce champ blanc si vous ne souhaitez pas utiliser d'images."
122
 
123
- #: er-custom-login.php:413
124
  msgid "Login Screen Background Repeat"
125
  msgstr "Répétition du fond de l'écran de connexion"
126
 
127
- #: er-custom-login.php:451 er-custom-login.php:669
128
  msgid "Select an image repeat option from dropdown."
129
  msgstr ""
130
  "Sélectionnez une option de répétition pour l'image à partir du menu "
131
  "déroulant."
132
 
133
- #: er-custom-login.php:455 er-custom-login.php:674
134
  msgid "Background Position:"
135
  msgstr "Positionnement du fond : "
136
 
137
- #: er-custom-login.php:456 er-custom-login.php:675
138
  msgid "Horizontal Position: "
139
  msgstr "Positionnement horizontal : "
140
 
141
- #: er-custom-login.php:461 er-custom-login.php:680
142
  msgid ""
143
  "The background-position property sets the starting position of a background "
144
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
@@ -153,11 +157,11 @@ msgstr ""
153
  "w3schools.com/cssref/pr_background-position.asp\" target=\"_blank\">Plus "
154
  "d'infos</a>"
155
 
156
- #: er-custom-login.php:466
157
  msgid "Background Size:"
158
  msgstr "Taille du fond : "
159
 
160
- #: er-custom-login.php:470
161
  msgid ""
162
  "The background-size property specifies the size of a background image. If "
163
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
@@ -171,23 +175,23 @@ msgstr ""
171
  "percentage, cover, contain. <a href=\"http://www.w3schools.com/cssref/"
172
  "css3_pr_background-size.asp\" target=\"_blank\">Plus d'infos</a>"
173
 
174
- #: er-custom-login.php:481
175
  msgid "Login Screen Logo"
176
  msgstr "Logo de l'écran de connexion"
177
 
178
- #: er-custom-login.php:482
179
  msgid "(Change the default WordPress logo and powered by text)"
180
  msgstr "(Change le logo WordPress par défaut ainsi que le texte propulsé par)"
181
 
182
- #: er-custom-login.php:487
183
  msgid "Logo Url:"
184
  msgstr "Url du logo : "
185
 
186
- #: er-custom-login.php:489
187
- msgid "Default Logo Size 274px × 63px"
188
- msgstr "Taille par défaut du logo 274px × 63px"
189
 
190
- #: er-custom-login.php:491
191
  msgid ""
192
  "(URL path to image to replace default WordPress Logo. (You can upload your "
193
  "image with the WordPress media uploader)"
@@ -195,53 +199,53 @@ msgstr ""
195
  "Url de l'image pour remplacer le logo WordPress par défaut. (Vous pouvez "
196
  "envoyer votre image avec l'outil d'envoi de médias interne à WordPress)"
197
 
198
- #: er-custom-login.php:496
199
  msgid "Logo Width:"
200
  msgstr "Largeur du logo : "
201
 
202
- #: er-custom-login.php:500
203
  msgid "Your Logo width(Enter in pixels). Default: 274px"
204
  msgstr "Largeur de votre logo (entrez-la en pixels). Par défaut : 274 px"
205
 
206
- #: er-custom-login.php:504
207
  msgid "Logo Height:"
208
  msgstr "Hauteur du logo : "
209
 
210
- #: er-custom-login.php:508
211
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
212
  msgstr "Hauteur de votre logo (entrez-la en pixels). Par défaut : 63 px"
213
 
214
- #: er-custom-login.php:513
215
  msgid "Powered by Text:"
216
  msgstr "Texte propulsé par : "
217
 
218
- #: er-custom-login.php:517
219
  msgid "Show when mouse hover over custom Login logo"
220
  msgstr ""
221
  "Montré quand la souris passe au-dessus du logo de connexion personnalisé"
222
 
223
- #: er-custom-login.php:527
224
  msgid "Login Form Settings"
225
  msgstr "Réglages du formulaire de connexion"
226
 
227
- #: er-custom-login.php:528
228
  msgid "(The following settings will change the Login Form style)"
229
  msgstr ""
230
  "(Les réglages suivants vont changer le style du formulaire de connexion)"
231
 
232
- #: er-custom-login.php:533
233
  msgid "Login form width:"
234
  msgstr "Largeur du formulaire de connexion : "
235
 
236
- #: er-custom-login.php:537
237
  msgid "Total Form width(Enter in pixels). Default: 350px"
238
  msgstr "Largeur totale du formulaire (Entrez-la en pixels). Par défaut : 350px"
239
 
240
- #: er-custom-login.php:541
241
  msgid "Login Form Border Radius:"
242
  msgstr "Radius de la bordure du formulaire de connexion : "
243
 
244
- #: er-custom-login.php:545
245
  msgid ""
246
  "Border Radius of Login Form. This is the option to make the corners rounded."
247
  "(Enter in pixels)"
@@ -249,35 +253,35 @@ msgstr ""
249
  "Radius de la bordure du formulaire de connexion. Cette option permet "
250
  "d'obtenir des coins arrondis. (Entrez la valeur en pixels)"
251
 
252
- #: er-custom-login.php:549
253
  msgid "Login Border Style"
254
  msgstr "Style de la bordure du formulaire de connexion"
255
 
256
- #: er-custom-login.php:593
257
  msgid "Select a Border Style option from dropdown."
258
  msgstr "Sélectionnez une option de style à partir de la liste déroulante."
259
 
260
- #: er-custom-login.php:597
261
  msgid "Login Border Thickness:"
262
  msgstr "Finesse de la bordure du formulaire de connexion : "
263
 
264
- #: er-custom-login.php:601
265
  msgid "Thickness of Border (Enter value in pixels)"
266
  msgstr "Finesse de la bordure (Entrez-là en pixels)"
267
 
268
- #: er-custom-login.php:605
269
  msgid "Login Border Color:"
270
  msgstr "Couleur de la bordure de la fenêtre de connexion : "
271
 
272
- #: er-custom-login.php:614
273
  msgid "Login Form Background Color:"
274
  msgstr "Couleur de fond du formulaire de connexion : "
275
 
276
- #: er-custom-login.php:618
277
  msgid "Background Opacity: "
278
  msgstr "Opacité du fond : "
279
 
280
- #: er-custom-login.php:620
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: "
@@ -292,11 +296,11 @@ msgstr ""
292
  "plugins/erident-custom-login-and-dashboard/faq/\" target=\"_blank\">Plus "
293
  "d'infos</a>"
294
 
295
- #: er-custom-login.php:624
296
  msgid "Login Form Background Image:"
297
  msgstr "Image de fond du formulaire de connexion : "
298
 
299
- #: er-custom-login.php:627
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 +308,19 @@ msgstr ""
304
  "Ajoutez l'url de votre propre motif/image pour le fond du formulaire. "
305
  "Laissez ce champ blanc si vous ne souhaitez pas utiliser d'images."
306
 
307
- #: er-custom-login.php:631
308
  msgid "Login Form Background Repeat"
309
  msgstr "Répétition du fond du formulaire de connexion"
310
 
311
- #: er-custom-login.php:677
312
  msgid "Vertical Position: "
313
  msgstr "Positionnement vertical : "
314
 
315
- #: er-custom-login.php:685
316
  msgid "Login Form Label Text Color"
317
  msgstr "Couleur du texte des étiquettes du formulaire de connexion"
318
 
319
- #: er-custom-login.php:690
320
  msgid ""
321
  "Click the box to select a color. This will change the color of label "
322
  "Username/Password"
@@ -324,21 +328,21 @@ msgstr ""
324
  "Cliquez sur la boîte pour sélectionner une couleur. Ceci changera la couleur "
325
  "de l'étiquette Utilisateur/Mot de passe"
326
 
327
- #: er-custom-login.php:694
328
  msgid "Login Form Label Text Size:"
329
  msgstr "Taille du texte des étiquettes du formulaire de connexion : "
330
 
331
- #: er-custom-login.php:697
332
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
333
  msgstr ""
334
  "Taille des caractères de l'étiquette Utilisateur/Mot de passe (Entrez la "
335
  "valeur en pixels)"
336
 
337
- #: er-custom-login.php:701
338
  msgid "Login Form Input Text Color"
339
  msgstr "Couleur du texte entré dans le formulaire de connexion"
340
 
341
- #: er-custom-login.php:706
342
  msgid ""
343
  "Click the box to select a color. This will change the color of text inside "
344
  "text box."
@@ -346,62 +350,62 @@ msgstr ""
346
  "Cliquez sur la boîte pour sélectionner une couleur. Ceci changera la couleur "
347
  "du texte dans le champ de texte."
348
 
349
- #: er-custom-login.php:710
350
  msgid "Login Form Input Text Size:"
351
  msgstr "Taille du texte saisi dans le formulaire de connexion"
352
 
353
- #: er-custom-login.php:713
354
  msgid "Font Size of text inside text box(Enter value in pixels)"
355
  msgstr ""
356
  "Taille des caractères saisis dans les champs de caractères (Entrez la valeur "
357
  "en pixels)"
358
 
359
- #: er-custom-login.php:717
360
  msgid "Login Form Link Color"
361
  msgstr "Couleur des liens dans le formulaire de connexion"
362
 
363
- #: er-custom-login.php:727
364
  msgid "Enable link shadow?"
365
  msgstr "Activer l'ombre du lien ? "
366
 
367
- #: er-custom-login.php:735 er-custom-login.php:764 er-custom-login.php:815
368
  msgid "Yes"
369
  msgstr "Oui"
370
 
371
- #: er-custom-login.php:739 er-custom-login.php:768 er-custom-login.php:819
372
  msgid "No"
373
  msgstr "Non"
374
 
375
- #: er-custom-login.php:741 er-custom-login.php:770
376
  msgid "(Check an option)"
377
  msgstr "(Vérifiez une option)"
378
 
379
- #: er-custom-login.php:745
380
  msgid "Login Form Link Shadow Color"
381
  msgstr "Couleur de l'ombre du lien dans le formulaire de connexion"
382
 
383
- #: er-custom-login.php:756
384
  msgid "Enable form shadow?"
385
  msgstr "Activer l'ombre du formulaire ?"
386
 
387
- #: er-custom-login.php:774
388
  msgid "Login Form Shadow Color"
389
  msgstr "Couleur de l'ombre du formulaire de connexion"
390
 
391
- #: er-custom-login.php:786
392
  msgid "Login Button Color"
393
  msgstr "Couleur du bouton de connexion"
394
 
395
- #: er-custom-login.php:802
396
  msgid "Plugin Un-install Settings"
397
  msgstr "Réglages de la désinstallation de l'extension"
398
 
399
- #: er-custom-login.php:807
400
  msgid "Delete custom settings upon plugin deactivation?"
401
  msgstr ""
402
  "Effacer les réglages personnalisés lors de la désactivation de l'extension"
403
 
404
- #: er-custom-login.php:821
405
  msgid ""
406
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
407
  "plugin deactivation)"
@@ -409,15 +413,15 @@ msgstr ""
409
  "(Si vous laissez sur \"oui\" tous les réglages personnalisés seront effacés "
410
  "de la base de données lors de la désactivation de l'extension)"
411
 
412
- #: er-custom-login.php:829
413
  msgid "Save Changes"
414
  msgstr "Sauvegarder les changements"
415
 
416
- #: er-custom-login.php:836
417
  msgid "Export Settings"
418
  msgstr "Exporter les réglages"
419
 
420
- #: er-custom-login.php:838
421
  msgid ""
422
  "Export the plugin settings for this site as a .json file. This allows you to "
423
  "easily import the configuration into another site."
@@ -425,15 +429,15 @@ msgstr ""
425
  "Exporter les réglages de l'extension sous la forme d'un fichier .json. Ceci "
426
  "vous permettra d'importer la configuration dans un autre site."
427
 
428
- #: er-custom-login.php:843
429
  msgid "Export"
430
  msgstr "Exporter"
431
 
432
- #: er-custom-login.php:851
433
  msgid "Import Settings"
434
  msgstr "Réglages d'importation"
435
 
436
- #: er-custom-login.php:853
437
  msgid ""
438
  "Import the plugin settings from a .json file. This file can be obtained by "
439
  "exporting the settings on another site using the form above."
@@ -442,39 +446,39 @@ msgstr ""
442
  "obtenu en exportant les réglages d'un autre site en utilisant le formulaire "
443
  "ci-dessus."
444
 
445
- #: er-custom-login.php:861
446
  msgid "Import"
447
  msgstr "Importer"
448
 
449
- #: er-custom-login.php:869
450
  msgid "Quick Links"
451
  msgstr "Liens rapides"
452
 
453
- #: er-custom-login.php:871
454
  msgid "Open Your WP Login Page in a New Tab"
455
  msgstr "Ouvrir votre page de connexion WP dans un nouvel onglet"
456
 
457
- #: er-custom-login.php:872
458
  msgid "Plugin Documentation"
459
  msgstr "Documentation de l'extension"
460
 
461
- #: er-custom-login.php:873
462
  msgid "Plugin Support Page"
463
  msgstr "Page de support de l'extension"
464
 
465
- #: er-custom-login.php:874
466
  msgid "Feature Request/Suggestions?"
467
  msgstr "Une requête/suggestion de fonctionnalité ?"
468
 
469
- #: er-custom-login.php:875
470
  msgid "Got some Love? Give us a 5 star rating!"
471
  msgstr "Vous aimez ? Donnez-nous une note de 5 étoiles !"
472
 
473
- #: er-custom-login.php:879
474
  msgid "Hire Me"
475
  msgstr "Louez moi"
476
 
477
- #: er-custom-login.php:880
478
  msgid ""
479
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
480
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
@@ -487,11 +491,11 @@ msgstr ""
487
  "libin@libin.in\">libin@libin.in</a> <br/>Portfolio en ligne : <a href="
488
  "\"http://www.libin.in\" target=\"_blank\">www.libin.in</a>"
489
 
490
- #: er-custom-login.php:882
491
  msgid "Translation Credits"
492
  msgstr "Crédits de traduction"
493
 
494
- #: er-custom-login.php:884
495
  msgid ""
496
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
497
  "\">Adriana De La Cuadra</a>"
@@ -499,7 +503,7 @@ msgstr ""
499
  "Espagnol par <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
500
  "\">Adriana De La Cuadra</a>"
501
 
502
- #: er-custom-login.php:885
503
  msgid ""
504
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
505
  "\" target=\"_blank\">Guillaume Vaslin</a>"
@@ -507,7 +511,7 @@ msgstr ""
507
  "Français par <a href=\"https://www.linkedin.com/pub/vaslin-"
508
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
509
 
510
- #: er-custom-login.php:886
511
  msgid ""
512
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
513
  "Kaulfuss</a>"
@@ -515,8 +519,19 @@ msgstr ""
515
  "Allemande par <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
516
  "\">Peter Kaulfuss</a>"
517
 
518
- #: er-custom-login.php:888
 
 
 
 
 
 
 
 
519
  msgid "Do you wants to translate this plugin to your language? Email me!"
520
  msgstr ""
521
  "Vous voulez traduire cette extension dans votre langue ? Envoyez-moi un "
522
  "mail !"
 
 
 
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"
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"
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
  "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
  "(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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "(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
  "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
  "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
  "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
  "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
  "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
  "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>"
526
+ 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 "
534
  "mail !"
535
+
536
+ #~ msgid "Default Logo Size 274px × 63px"
537
+ #~ msgstr "Taille par défaut du logo 274px × 63px"
languages/erident-custom-login-and-dashboard-tr_TR.mo ADDED
Binary file
languages/erident-custom-login-and-dashboard-tr_TR.po ADDED
@@ -0,0 +1,529 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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"
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=1; plural=0;\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 "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)"
65
+ 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"
77
+ 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."
122
+ 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\" "
146
+ "or \"%\" at the end of value. This will not show any changes if you set the "
147
+ "Background Repeat option as \"Repeat\". <a href=\"http://www.w3schools.com/"
148
+ "cssref/pr_background-position.asp\" target=\"_blank\">More Info</a>"
149
+ msgstr ""
150
+ "Arkaplan-pozisyonu özelliği arkaplan resminin pozisyonunu ayarlar . Eğer "
151
+ "girdiğiniz değerler \"pixels\" veya \"percentage\", değerlerin sonuna \"px"
152
+ "\" veya \"%\" ekleyin .Eğer Arkaplan Tekrar ayarını \"Repeat\". <a href="
153
+ "\"http://www.w3schools.com/cssref/pr_background-position.asp\" target="
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 \"%\" "
165
+ "at the end of value. Possible values: auto, length, percentage, cover, "
166
+ "contain. <a href=\"http://www.w3schools.com/cssref/css3_pr_background-size."
167
+ "asp\" target=\"_blank\">More Info</a>"
168
+ msgstr ""
169
+ "Background-boyutlu özelliği arka plan görüntüsünün boyutunu belirtir . Eğer "
170
+ "girdiğiniz değerler \"pixels\" veya \"percentage\", değerlerin sonuna \"px"
171
+ "\" veya \"%\" ekleyin . Olası değerler otomatik,uzunluk,yüzde,kapak,içerik "
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)"
197
+ 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)"
249
+ 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: "
285
+ "0.5 means 50% transparency. Default: 1 <a href=\"https://wordpress.org/"
286
+ "plugins/erident-custom-login-and-dashboard/faq/\" target=\"_blank\">More "
287
+ "Info</a>"
288
+ msgstr ""
289
+ "Renk seçmek için kutuya tıklayınız .Arkaplan saydamlığı size arkaplan "
290
+ "resminin üzerine transparanlık eklemede yardımcı olaraktır .Olası değerler 0 "
291
+ "dan 1'e kadardır . Örneğin 0.5 %50 saydamlık demektir . Varsayılan 1'dir <a "
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."
303
+ 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"
323
+ 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."
344
+ 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)"
404
+ 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."
420
+ 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."
436
+ 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:"
476
+ "libin@libin.in\">libin@libin.in</a> <br/>Online Portfolio: <a href=\"http://"
477
+ "www.libin.in\" target=\"_blank\">www.libin.in</a>"
478
+ msgstr ""
479
+ "Merhaba, Benim adım Libin, profesyonel bir Başlangıç aşaması Mühendisi/"
480
+ "Wordpress Geliştiricisiyim. Beni bağımsız projeleriniz için işe "
481
+ "alabilirsiniz .<br/><br/>Bana EMail Atın: <a href=\"mailto:libin@libin.in"
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>"
493
+ 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>"
501
+ 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>"
509
+ 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>"
517
+ 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
+
525
+ #~ msgid "Dutch by <a href=\"#\" target=\"_blank\">John Blom</a>"
526
+ #~ msgstr "Dutch çeviren <a href=\"#\" target=\"_blank\">John Blom</a>"
527
+
528
+ #~ msgid "Default Logo Size 274px × 63px"
529
+ #~ msgstr "Varsayılan Logo Genişlliği 274x63 pikseldir"
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: libinvbabu
3
  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.0.1
7
- Stable tag: 3.3.1
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -14,8 +14,9 @@ Customize completely your WordPress Login Screen easily. Add your logo, change b
14
 
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*: Now supports opacity on login form background!
18
- * New*: German, French and Spanish Translation available!
19
  * New*: Import/Export Settings feature available!
20
 
21
  Fastest support for the plugin. If you have any queries,
@@ -123,6 +124,10 @@ You can achieve it by either using a transparent png/gif image or you can use th
123
 
124
  == Changelog ==
125
 
 
 
 
 
126
  = 3.3.1 =
127
  * Extended link shadow enable/disable option to login button as well
128
  * Moved screenshots to assets directory
@@ -202,5 +207,5 @@ You can achieve it by either using a transparent png/gif image or you can use th
202
 
203
  == Upgrade Notice ==
204
 
205
- = 3.3.1 =
206
- New features added/light weight plugin
3
  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
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
14
 
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
 
22
  Fastest support for the plugin. If you have any queries,
124
 
125
  == Changelog ==
126
 
127
+ = 3.4 =
128
+ * Supports WordPress media uploader inside the settings page
129
+ * Turkish translations added
130
+
131
  = 3.3.1 =
132
  * Extended link shadow enable/disable option to login button as well
133
  * Moved screenshots to assets directory
207
 
208
  == Upgrade Notice ==
209
 
210
+ = 3.4 =
211
+ Supports media uploader and new translations