Erident Custom Login and Dashboard - Version 3.0

Version Description

  • Huge database performance upgrade on backend
  • Added Import/Export settings feature
  • Added French translation
  • Improved UI with latest WordPress 3.9
Download this release

Release Info

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

Code changes from version 2.3.1 to 3.0

er-custom-login.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.eridenttech.com/wp-plugins/erident-custom-login-and-dashb
5
  Description: Customize completely your WordPress Login Screen and Dashboard. Add your company logo to login screen, change background colors, styles, button color etc. Customize your Dashboard footer text also for complete branding.
6
  Text Domain: erident-custom-login-and-dashboard
7
  Domain Path: /languages
8
- Version: 2.3.1
9
  Author: Libin V Babu
10
  Author URI: http://www.libin.in/
11
  License: GPL
@@ -50,61 +50,35 @@ add_filter('plugin_action_links', 'er_add_settings_link', 10, 2 );
50
 
51
  add_filter('admin_footer_text', 'left_admin_footer_text_output'); //left side
52
  function left_admin_footer_text_output($er_left) {
53
- $er_left = get_option('wp_erident_dashboard_data_left');
54
- return $er_left;
 
55
  }
56
 
57
  add_filter('update_footer', 'right_admin_footer_text_output', 11); //right side
58
  function right_admin_footer_text_output($er_right) {
59
- $er_right = get_option('wp_erident_dashboard_data_right');
60
- return $er_right;
 
61
  }
62
 
63
  /* Login Logo */
64
  function er_login_logo() {
65
- $er_logo = get_option('wp_erident_dashboard_image_logo');
66
- $er_logo_width = get_option('wp_erident_dashboard_image_logo_width');
67
- $er_logo_height = get_option('wp_erident_dashboard_image_logo_height');
68
-
69
- $er_login_width = get_option('wp_erident_dashboard_login_width');
70
- $er_login_radius = get_option('wp_erident_dashboard_login_radius');
71
- $er_login_border = get_option('wp_erident_dashboard_login_border');
72
- $er_login_border_thick = get_option('wp_erident_dashboard_border_thick');
73
- $er_login_border_color = get_option('wp_erident_dashboard_border_color');
74
- $er_login_bg = get_option('wp_erident_dashboard_login_bg');
75
- $er_login_text_color = get_option('wp_erident_dashboard_text_color');
76
- $er_login_input_text_color = get_option('wp_erident_dashboard_input_text_color');
77
- $er_login_label_text_size = get_option('wp_erident_dashboard_label_text_size');
78
- $er_login_input_text_size = get_option('wp_erident_dashboard_input_text_size');
79
- $er_login_link_color = get_option('wp_erident_dashboard_link_color');
80
- $er_login_button_color = get_option('wp_erident_dashboard_button_color');
81
-
82
- $check_shadow = get_option('wp_erident_dashboard_check_shadow');
83
- if($check_shadow == "Yes") {
84
- $er_login_link_shadow = get_option('wp_erident_dashboard_link_shadow').' 0 1px 0';
85
  }
86
  else {
87
  $er_login_link_shadow = "none";
88
  }
89
- $check_fshadow = get_option('wp_erident_dashboard_check_form_shadow');
90
- if($check_fshadow == "Yes") {
91
- $er_login_form_shadow = '0 4px 10px -1px '.get_option('wp_erident_dashboard_form_shadow');
92
  }
93
  else {
94
  $er_login_form_shadow = "none";
95
  }
96
-
97
- $er_top_bg_color = get_option('wp_erident_top_bg_color');
98
- $er_top_bg_image = get_option('wp_erident_top_bg_image');
99
- $er_top_bg_repeat = get_option('wp_erident_top_bg_repeat');
100
- $er_top_bg_xpos = get_option('wp_erident_top_bg_xpos');
101
- $er_top_bg_ypos = get_option('wp_erident_top_bg_ypos');
102
- $er_top_bg_size = get_option('wp_erident_top_bg_size');
103
-
104
- $er_login_bg_image = get_option('wp_erident_login_bg_image');
105
- $er_login_bg_repeat = get_option('wp_erident_login_bg_repeat');
106
- $er_login_bg_xpos = get_option('wp_erident_login_bg_xpos');
107
- $er_login_bg_ypos = get_option('wp_erident_login_bg_ypos');
108
 
109
 
110
  function er_hex2rgb( $colour ) {
@@ -123,7 +97,7 @@ function er_login_logo() {
123
  $b = hexdec( $b );
124
  return array( 'red' => $r, 'green' => $g, 'blue' => $b );
125
  }
126
- $btnrgba = er_hex2rgb( $er_login_button_color );
127
  ?>
128
  <style type="text/css">
129
  /* Styles loading from Erident Custom Login and Dashboard Plugin*/
@@ -131,45 +105,45 @@ function er_login_logo() {
131
  background: none !important;
132
  }
133
  html body.login {
134
- background: <?php echo $er_top_bg_color ?> url(<?php echo $er_top_bg_image ?>) <?php echo $er_top_bg_repeat ?> <?php echo $er_top_bg_xpos ?> <?php echo $er_top_bg_ypos ?> !important;
135
- background-size: <?php echo $er_top_bg_size ?> !important;
136
  }
137
  body.login div#login h1 a {
138
- background-image: url(<?php echo $er_logo ?>);
139
  padding-bottom: 30px;
140
  margin: 0 auto;
141
- background-size: <?php echo $er_logo_width ?>px <?php echo $er_logo_height ?>px;
142
- width: <?php echo $er_logo_width ?>px;
143
- height: <?php echo $er_logo_height ?>px;
144
  }
145
  body.login #login {
146
- width:<?php echo $er_login_width ?>px;
147
  }
148
  .login form {
149
- border-radius:<?php echo $er_login_radius ?>px;
150
- border:<?php echo $er_login_border_thick ?>px <?php echo $er_login_border ?> <?php echo $er_login_border_color ?>;
151
- background:<?php echo $er_login_bg ?> url(<?php echo $er_login_bg_image ?>) <?php echo $er_login_bg_repeat ?> <?php echo $er_login_bg_xpos ?> <?php echo $er_login_bg_ypos ?>;
152
  -moz-box-shadow: <?php echo $er_login_form_shadow ?>;
153
  -webkit-box-shadow: <?php echo $er_login_form_shadow ?>;
154
  box-shadow: <?php echo $er_login_form_shadow ?>;
155
  }
156
  body.login div#login form p label {
157
- color:<?php echo $er_login_text_color ?>;
158
- font-size:<?php echo $er_login_label_text_size ?>px;
159
  }
160
  body.login #loginform p.submit .button-primary {
161
- background: <?php echo $er_login_button_color ?> !important;
162
  border: none !important;
163
  }
164
  body.login #loginform p.submit .button-primary:hover, body.login #loginform p.submit .button-primary:focus {
165
  background: rgba(<?php echo $btnrgba['red'];?>,<?php echo $btnrgba['green']?>,<?php echo $btnrgba['blue']?>, 0.9) !important;
166
  }
167
  body.login div#login form .input, .login input[type="text"] {
168
- color: <?php echo $er_login_input_text_color ?>;
169
- font-size:<?php echo $er_login_input_text_size ?>px;
170
  }
171
  body.login #nav a, body.login #backtoblog a {
172
- color: <?php echo $er_login_link_color ?> !important;
173
  }
174
  body.login #nav, body.login #backtoblog {
175
  text-shadow: <?php echo $er_login_link_shadow ?>;
@@ -186,12 +160,78 @@ function my_login_logo_url() {
186
  add_filter( 'login_headerurl', 'my_login_logo_url' );
187
 
188
  function er_login_logo_url_title() {
189
- $er_power_text = get_option('wp_erident_dashboard_power_text');
190
- return $er_power_text;
 
191
  }
192
  add_filter( 'login_headertitle', 'er_login_logo_url_title' );
193
 
194
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  /* Runs when plugin is activated */
196
  register_activation_hook(__FILE__,'wp_erident_dashboard_install');
197
 
@@ -200,86 +240,60 @@ register_deactivation_hook( __FILE__, 'wp_erident_dashboard_remove' );
200
 
201
  function wp_erident_dashboard_install() {
202
  /* Creates new database field */
203
- add_option("wp_erident_dashboard_data_left", 'Powered by YourWebsiteName', '', 'yes');
204
- add_option("wp_erident_dashboard_data_right", '&copy; 2014 All Rights Reserved', '', 'yes');
205
- add_option("wp_erident_dashboard_image_logo", plugins_url('images/default-logo.png', __FILE__), '', 'yes');
206
- add_option("wp_erident_dashboard_image_logo_width", '274', '', 'yes');
207
- add_option("wp_erident_dashboard_image_logo_height", '63', '', 'yes');
208
- add_option("wp_erident_dashboard_power_text", 'Powered by YourWebsiteName', '', 'yes');
209
-
210
- add_option("wp_erident_dashboard_login_width", '350', '', 'yes');
211
- add_option("wp_erident_dashboard_login_radius", '10', '', 'yes');
212
- add_option("wp_erident_dashboard_login_border", 'solid', '', 'yes');
213
- add_option("wp_erident_dashboard_border_thick", '4', '', 'yes');
214
- add_option("wp_erident_dashboard_border_color", '#0069A0', '', 'yes');
215
- add_option("wp_erident_dashboard_login_bg", '#dbdbdb', '', 'yes');
216
- add_option("wp_erident_dashboard_text_color", '#000000', '', 'yes');
217
- add_option("wp_erident_dashboard_input_text_color", '#555555', '', 'yes');
218
- add_option("wp_erident_dashboard_label_text_size", '14', '', 'yes');
219
- add_option("wp_erident_dashboard_input_text_size", '24', '', 'yes');
220
-
221
- add_option("wp_erident_dashboard_link_color", '#21759B', '', 'yes');
222
- add_option("wp_erident_dashboard_check_shadow", 'Yes', '', 'yes');
223
- add_option("wp_erident_dashboard_link_shadow", '#ffffff', '', 'yes');
224
- add_option("wp_erident_dashboard_check_form_shadow", 'Yes', '', 'yes');
225
- add_option("wp_erident_dashboard_form_shadow", '#C8C8C8', '', 'yes');
226
- add_option("wp_erident_dashboard_button_color", '#5E5E5E', '', 'yes');
227
-
228
-
229
- add_option("wp_erident_top_bg_color", '#f9fad2', '', 'yes');
230
- add_option("wp_erident_top_bg_image", plugins_url('images/top_bg.jpg', __FILE__), '', 'yes');
231
- add_option("wp_erident_top_bg_repeat", 'repeat', '', 'yes');
232
- add_option("wp_erident_top_bg_xpos", 'top', '', 'yes');
233
- add_option("wp_erident_top_bg_ypos", 'left', '', 'yes');
234
- add_option("wp_erident_login_bg_image", plugins_url('images/form_bg.jpg', __FILE__), '', 'yes');
235
- add_option("wp_erident_login_bg_repeat", 'repeat', '', 'yes');
236
- add_option("wp_erident_login_bg_xpos", 'top', '', 'yes');
237
- add_option("wp_erident_login_bg_ypos", 'left', '', 'yes');
238
- add_option("wp_erident_top_bg_size", 'auto', '', 'yes');
239
-
240
- add_option("wp_erident_dashboard_delete_db", 'No', '', 'yes');
 
 
 
 
 
 
 
241
  }
242
 
243
  function wp_erident_dashboard_remove() {
244
- $check_db = get_option('wp_erident_dashboard_delete_db');
245
- if($check_db == "Yes") {
 
 
246
  /* Deletes the database field */
247
- delete_option('wp_erident_dashboard_data_left');
248
- delete_option('wp_erident_dashboard_data_right');
249
- delete_option('wp_erident_dashboard_image_logo');
250
- delete_option('wp_erident_dashboard_image_logo_width');
251
- delete_option('wp_erident_dashboard_image_logo_height');
252
- delete_option('wp_erident_dashboard_power_text');
253
-
254
- delete_option('wp_erident_dashboard_login_width');
255
- delete_option('wp_erident_dashboard_login_radius');
256
- delete_option('wp_erident_dashboard_login_border');
257
- delete_option('wp_erident_dashboard_border_thick');
258
- delete_option('wp_erident_dashboard_border_color');
259
- delete_option('wp_erident_dashboard_login_bg');
260
- delete_option('wp_erident_dashboard_text_color');
261
- delete_option('wp_erident_dashboard_input_text_color');
262
- delete_option('wp_erident_dashboard_label_text_size');
263
- delete_option('wp_erident_dashboard_input_text_size');
264
- delete_option('wp_erident_dashboard_link_color');
265
- delete_option('wp_erident_dashboard_check_shadow');
266
- delete_option('wp_erident_dashboard_link_shadow');
267
- delete_option('wp_erident_dashboard_check_form_shadow');
268
- delete_option('wp_erident_dashboard_form_shadow');
269
- delete_option('wp_erident_dashboard_button_color');
270
-
271
- delete_option('wp_erident_top_bg_color');
272
- delete_option('wp_erident_top_bg_image');
273
- delete_option('wp_erident_top_bg_repeat');
274
- delete_option('wp_erident_top_bg_xpos');
275
- delete_option('wp_erident_top_bg_ypos');
276
- delete_option('wp_erident_login_bg_image');
277
- delete_option('wp_erident_login_bg_repeat');
278
- delete_option('wp_erident_login_bg_xpos');
279
- delete_option('wp_erident_login_bg_ypos');
280
- delete_option('wp_erident_top_bg_size');
281
-
282
- delete_option('wp_erident_dashboard_delete_db');
283
  }
284
  else { }
285
  }
@@ -318,9 +332,17 @@ function wp_erident_dashboard_html_page() {
318
  <div id="icon-options-general" class="icon32"><br></div>
319
  <h2><?php _e( 'Erident Custom Login and Dashboard Settings', 'erident-custom-login-and-dashboard' ); ?></h2>
320
  <p><i><?php _e( 'Plugin Loads default values for all below entries. Please change the values to yours.', 'erident-custom-login-and-dashboard' ); ?></i><br/><span style="background: #f9ff0a;"><?php _e( 'Click on the header of each block to open it.', 'erident-custom-login-and-dashboard' ); ?></span></p>
321
- <form class="wp-erident-dashboard" method="post" action="options.php">
322
- <?php wp_nonce_field('update-options'); ?>
323
-
 
 
 
 
 
 
 
 
324
  <div class="postbox">
325
  <div class="handlediv" title="Click to toggle"><br></div>
326
  <h3 class="hndle" title="Click to toggle"><span><?php _e( 'Dashboard Settings', 'erident-custom-login-and-dashboard' ); ?></span>
@@ -331,16 +353,16 @@ function wp_erident_dashboard_html_page() {
331
  <tr valign="top">
332
  <th scope="row"><?php _e( 'Enter the text for dashboard left side footer:', 'erident-custom-login-and-dashboard' ); ?></th>
333
  <td>
334
- <input class="er-textfield" name="wp_erident_dashboard_data_left" type="text" id="wp_erident_dashboard_data_left"
335
- value="<?php echo esc_html( get_option('wp_erident_dashboard_data_left') ); ?>" placeholder="Text for dashboard left side footer" />
336
  <br />
337
  <span class="description"><?php _e( 'This will replace the default "Thank you for creating with WordPress" on the bottom left side of dashboard', 'erident-custom-login-and-dashboard' ); ?></span>
338
  </td>
339
  </tr>
340
  <tr valign="top">
341
  <th scope="row"><?php _e( 'Enter the text for dashboard right side footer:', 'erident-custom-login-and-dashboard' ); ?></th>
342
- <td><input class="er-textfield" name="wp_erident_dashboard_data_right" type="text" id="wp_erident_dashboard_data_right"
343
- value="<?php echo esc_html( get_option('wp_erident_dashboard_data_right') ); ?>" placeholder="Text for dashboard left right footer" />
344
  <br />
345
  <span class="description"><?php _e( 'This will replace the default "WordPress Version" on the bottom right side of dashboard', 'erident-custom-login-and-dashboard' ); ?></span>
346
  </td>
@@ -359,7 +381,7 @@ value="<?php echo esc_html( get_option('wp_erident_dashboard_data_right') ); ?>"
359
  <tr valign="top">
360
  <th scope="row"><?php _e( 'Login Screen Background Color:', 'erident-custom-login-and-dashboard' ); ?></th>
361
  <td>
362
- <input class="er-textfield-small" type="text" id="wp_erident_top_bg_color" name="wp_erident_top_bg_color" value="<?php echo get_option('wp_erident_top_bg_color'); ?>" />
363
  <div id="ilctabscolorpicker4"></div>
364
  <br />
365
  <span class="description"><?php _e( 'Click the box to select a color.', 'erident-custom-login-and-dashboard' ); ?></span>
@@ -368,8 +390,8 @@ value="<?php echo esc_html( get_option('wp_erident_dashboard_data_right') ); ?>"
368
 
369
  <tr valign="top">
370
  <th scope="row"><?php _e( 'Login Screen Background Image:', 'erident-custom-login-and-dashboard' ); ?></th>
371
- <td><input class="er-textfield" name="wp_erident_top_bg_image" type="text" id="wp_erident_top_bg_image"
372
- value="<?php echo get_option('wp_erident_top_bg_image'); ?>" />
373
  <br />
374
  <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>
375
  </td>
@@ -378,8 +400,7 @@ value="<?php echo get_option('wp_erident_top_bg_image'); ?>" />
378
  <th scope="row"><?php _e( 'Login Screen Background Repeat', 'erident-custom-login-and-dashboard' ); ?></th>
379
  <td>
380
  <?php
381
- $er_screen_repeat = get_option('wp_erident_top_bg_repeat');
382
- switch($er_screen_repeat)
383
  {
384
  case 'none':
385
  $er_screen_a='selected="selected"';
@@ -406,7 +427,7 @@ value="<?php echo get_option('wp_erident_top_bg_image'); ?>" />
406
  break;
407
  }
408
  ?>
409
- <select class="er-textfield-small" name="wp_erident_top_bg_repeat" id="wp_erident_top_bg_repeat">
410
  <option value="no-repeat" <?php echo $er_screen_a; ?>>No Repeat</option>
411
  <option value="repeat" <?php echo $er_screen_b; ?>>Repeat</option>
412
  <option value="repeat-x" <?php echo $er_screen_c; ?>>Repeat-x</option>
@@ -419,10 +440,10 @@ value="<?php echo get_option('wp_erident_top_bg_image'); ?>" />
419
  </tr>
420
  <tr valign="top">
421
  <th scope="row"><?php _e( 'Background Position:', 'erident-custom-login-and-dashboard' ); ?></th>
422
- <td><?php _e( 'Horizontal Position: ', 'erident-custom-login-and-dashboard' ); ?> <input class="er-textfield-small" name="wp_erident_top_bg_xpos" type="text" id="wp_erident_top_bg_xpos"
423
- value="<?php echo get_option('wp_erident_top_bg_xpos'); ?>" />
424
- Vertical Position: <input class="er-textfield-small" name="wp_erident_top_bg_ypos" type="text" id="wp_erident_top_bg_ypos"
425
- value="<?php echo get_option('wp_erident_top_bg_ypos'); ?>" />
426
  <br />
427
  <span class="description"><?php _e( 'The background-position property sets the starting position of a background image. If you entering the value in "pixels" or "percentage", add "px" or "%" at the end of value. This will not show any changes if you set the Background Repeat option as "Repeat". <a href="http://www.w3schools.com/cssref/pr_background-position.asp" target="_blank">More Info</a>', 'erident-custom-login-and-dashboard' ); ?></span>
428
  </td>
@@ -430,8 +451,8 @@ value="<?php echo get_option('wp_erident_top_bg_ypos'); ?>" />
430
 
431
  <tr valign="top">
432
  <th scope="row"><?php _e( 'Background Size:', 'erident-custom-login-and-dashboard' ); ?></th>
433
- <td><input class="er-textfield-small" name="wp_erident_top_bg_size" type="text" id="wp_erident_top_bg_size"
434
- value="<?php echo get_option('wp_erident_top_bg_size'); ?>" />
435
  <br />
436
  <span class="description"><?php _e( 'The background-size property specifies the size of a background image. If you entering the value in "pixels" or "percentage", add "px" or "%" at the end of value. Possible values: auto, length, percentage, cover, contain. <a href="http://www.w3schools.com/cssref/css3_pr_background-size.asp" target="_blank">More Info</a>', 'erident-custom-login-and-dashboard' ); ?></span>
437
  </td>
@@ -451,8 +472,8 @@ value="<?php echo get_option('wp_erident_top_bg_size'); ?>" />
451
  <table>
452
  <tr valign="top">
453
  <th scope="row"><?php _e( 'Logo Url:', 'erident-custom-login-and-dashboard' ); ?></th>
454
- <td><input class="er-textfield" name="wp_erident_dashboard_image_logo" type="text" id="wp_erident_dashboard_image_logo"
455
- value="<?php echo get_option('wp_erident_dashboard_image_logo'); ?>" /> <span class="description"><?php _e( 'Default Logo Size 274px × 63px', 'erident-custom-login-and-dashboard' ); ?></span>
456
  <br />
457
  <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>
458
  </td>
@@ -460,16 +481,16 @@ value="<?php echo get_option('wp_erident_dashboard_image_logo'); ?>" /> <span cl
460
 
461
  <tr valign="top">
462
  <th scope="row"><?php _e( 'Logo Width:', 'erident-custom-login-and-dashboard' ); ?></th>
463
- <td><input class="er-textfield-small" name="wp_erident_dashboard_image_logo_width" type="text" id="wp_erident_dashboard_image_logo_width"
464
- value="<?php echo get_option('wp_erident_dashboard_image_logo_width'); ?>" />px
465
  <br />
466
  <span class="description"><?php _e( 'Your Logo width(Enter in pixels). Default: 274px', 'erident-custom-login-and-dashboard' ); ?></span>
467
  </td>
468
  </tr>
469
  <tr valign="top">
470
  <th scope="row"><?php _e( 'Logo Height:', 'erident-custom-login-and-dashboard' ); ?></th>
471
- <td><input class="er-textfield-small" name="wp_erident_dashboard_image_logo_height" type="text" id="wp_erident_dashboard_image_logo_height"
472
- value="<?php echo get_option('wp_erident_dashboard_image_logo_height'); ?>" />px
473
  <br />
474
  <span class="description"><?php _e( 'Your Logo Height(Enter in pixels). Default: 63px', 'erident-custom-login-and-dashboard' ); ?></span>
475
  </td>
@@ -477,8 +498,8 @@ value="<?php echo get_option('wp_erident_dashboard_image_logo_height'); ?>" />px
477
 
478
  <tr valign="top">
479
  <th scope="row"><?php _e( 'Powered by Text:', 'erident-custom-login-and-dashboard' ); ?></th>
480
- <td><input class="er-textfield" name="wp_erident_dashboard_power_text" type="text" id="wp_erident_dashboard_power_text"
481
- value="<?php echo get_option('wp_erident_dashboard_power_text'); ?>" />
482
  <br />
483
  <span class="description"><?php _e( 'Show when mouse hover over custom Login logo', 'erident-custom-login-and-dashboard' ); ?></span>
484
  </td>
@@ -497,16 +518,16 @@ value="<?php echo get_option('wp_erident_dashboard_power_text'); ?>" />
497
  <table>
498
  <tr valign="top">
499
  <th scope="row"><?php _e( 'Login form width:', 'erident-custom-login-and-dashboard' ); ?></th>
500
- <td><input class="er-textfield-small" name="wp_erident_dashboard_login_width" type="text" id="wp_erident_dashboard_login_width"
501
- value="<?php echo get_option('wp_erident_dashboard_login_width'); ?>" />px
502
  <br />
503
  <span class="description"><?php _e( 'Total Form width(Enter in pixels). Default: 350px', 'erident-custom-login-and-dashboard' ); ?></span>
504
  </td>
505
  </tr>
506
  <tr valign="top">
507
  <th scope="row"><?php _e( 'Login Form Border Radius:', 'erident-custom-login-and-dashboard' ); ?></th>
508
- <td><input class="er-textfield-small" name="wp_erident_dashboard_login_radius" type="text" id="wp_erident_dashboard_login_radius"
509
- value="<?php echo get_option('wp_erident_dashboard_login_radius'); ?>" />px
510
  <br />
511
  <span class="description"><?php _e( 'Border Radius of Login Form. This is the option to make the corners rounded.(Enter in pixels)', 'erident-custom-login-and-dashboard' ); ?></span>
512
  </td>
@@ -515,8 +536,7 @@ value="<?php echo get_option('wp_erident_dashboard_login_radius'); ?>" />px
515
  <th scope="row"><?php _e( 'Login Border Style', 'erident-custom-login-and-dashboard' ); ?></th>
516
  <td>
517
  <?php
518
- $er_border = get_option('wp_erident_dashboard_login_border');
519
- switch($er_border)
520
  {
521
  case 'none':
522
  $er_a='selected="selected"';
@@ -548,7 +568,7 @@ value="<?php echo get_option('wp_erident_dashboard_login_radius'); ?>" />px
548
  break;
549
  }
550
  ?>
551
- <select class="er-textfield-small" name="wp_erident_dashboard_login_border" id="wp_erident_dashboard_login_border">
552
  <option value="none" <?php echo $er_a; ?>>None</option>
553
  <option value="solid" <?php echo $er_b; ?>>Solid</option>
554
  <option value="dotted" <?php echo $er_c; ?>>Dotted</option>
@@ -562,8 +582,8 @@ value="<?php echo get_option('wp_erident_dashboard_login_radius'); ?>" />px
562
  </tr>
563
  <tr valign="top">
564
  <th scope="row"><?php _e( 'Login Border Thickness:', 'erident-custom-login-and-dashboard' ); ?></th>
565
- <td><input class="er-textfield-small" name="wp_erident_dashboard_border_thick" type="text" id="wp_erident_dashboard_border_thick"
566
- value="<?php echo get_option('wp_erident_dashboard_border_thick'); ?>" />px
567
  <br />
568
  <span class="description"><?php _e( 'Thickness of Border (Enter value in pixels)', 'erident-custom-login-and-dashboard' ); ?></span>
569
  </td>
@@ -571,7 +591,7 @@ value="<?php echo get_option('wp_erident_dashboard_border_thick'); ?>" />px
571
  <tr valign="top">
572
  <th scope="row"><?php _e( 'Login Border Color:', 'erident-custom-login-and-dashboard' ); ?></th>
573
  <td>
574
- <input class="er-textfield-small" type="text" id="wp_erident_dashboard_border_color" name="wp_erident_dashboard_border_color" value="<?php echo get_option('wp_erident_dashboard_border_color'); ?>" />
575
  <div id="ilctabscolorpicker"></div>
576
  <br />
577
  <span class="description"><?php _e( 'Click the box to select a color.', 'erident-custom-login-and-dashboard' ); ?></span>
@@ -580,7 +600,7 @@ value="<?php echo get_option('wp_erident_dashboard_border_thick'); ?>" />px
580
  <tr valign="top">
581
  <th scope="row"><?php _e( 'Login Form Background Color:', 'erident-custom-login-and-dashboard' ); ?></th>
582
  <td>
583
- <input class="er-textfield-small" type="text" id="wp_erident_dashboard_login_bg" name="wp_erident_dashboard_login_bg" value="<?php echo get_option('wp_erident_dashboard_login_bg'); ?>" />
584
  <div id="ilctabscolorpicker2"></div>
585
  <br />
586
  <span class="description"><?php _e( 'Click the box to select a color.', 'erident-custom-login-and-dashboard' ); ?></span>
@@ -588,7 +608,7 @@ value="<?php echo get_option('wp_erident_dashboard_border_thick'); ?>" />px
588
  </tr>
589
  <tr valign="top">
590
  <th scope="row"><?php _e( 'Login Form Background Image:', 'erident-custom-login-and-dashboard' ); ?></th>
591
- <td><input class="er-textfield" name="wp_erident_login_bg_image" type="text" id="wp_erident_login_bg_image" value="<?php echo get_option('wp_erident_login_bg_image'); ?>" />
592
  <br />
593
  <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>
594
  </td>
@@ -597,8 +617,7 @@ value="<?php echo get_option('wp_erident_dashboard_border_thick'); ?>" />px
597
  <th scope="row"><?php _e( 'Login Form Background Repeat', 'erident-custom-login-and-dashboard' ); ?></th>
598
  <td>
599
  <?php
600
- $er_form_repeat = get_option('wp_erident_login_bg_repeat');
601
- switch($er_form_repeat)
602
  {
603
  case 'none':
604
  $er_login_a='selected="selected"';
@@ -625,7 +644,7 @@ value="<?php echo get_option('wp_erident_dashboard_border_thick'); ?>" />px
625
  break;
626
  }
627
  ?>
628
- <select class="er-textfield-small" name="wp_erident_login_bg_repeat" id="wp_erident_login_bg_repeat">
629
  <option value="no-repeat" <?php echo $er_login_a; ?>>No Repeat</option>
630
  <option value="repeat" <?php echo $er_login_b; ?>>Repeat</option>
631
  <option value="repeat-x" <?php echo $er_login_c; ?>>Repeat-x</option>
@@ -639,10 +658,10 @@ value="<?php echo get_option('wp_erident_dashboard_border_thick'); ?>" />px
639
 
640
  <tr valign="top">
641
  <th scope="row"><?php _e( 'Background Position:', 'erident-custom-login-and-dashboard' ); ?></th>
642
- <td><?php _e( 'Horizontal Position: ', 'erident-custom-login-and-dashboard' ); ?><input class="er-textfield-small" name="wp_erident_login_bg_xpos" type="text" id="wp_erident_login_bg_xpos"
643
- value="<?php echo get_option('wp_erident_login_bg_xpos'); ?>" />
644
- <?php _e( 'Vertical Position: ', 'erident-custom-login-and-dashboard' ); ?><input class="er-textfield-small" name="wp_erident_login_bg_ypos" type="text" id="wp_erident_login_bg_ypos"
645
- value="<?php echo get_option('wp_erident_login_bg_ypos'); ?>" />
646
  <br />
647
  <span class="description"><?php _e( 'The background-position property sets the starting position of a background image. If you entering the value in "pixels" or "percentage", add "px" or "%" at the end of value. This will not show any changes if you set the Background Repeat option as "Repeat". <a href="http://www.w3schools.com/cssref/pr_background-position.asp" target="_blank">More Info</a>', 'erident-custom-login-and-dashboard' ); ?></span>
648
  </td>
@@ -651,7 +670,7 @@ value="<?php echo get_option('wp_erident_login_bg_ypos'); ?>" />
651
  <tr valign="top">
652
  <th scope="row"><?php _e( 'Login Form Label Text Color', 'erident-custom-login-and-dashboard' ); ?></th>
653
  <td>
654
- <input class="er-textfield-small" type="text" id="wp_erident_dashboard_text_color" name="wp_erident_dashboard_text_color" value="<?php echo get_option('wp_erident_dashboard_text_color'); ?>" />
655
  <div id="ilctabscolorpicker3"></div>
656
  <br />
657
  <span class="description"><?php _e( 'Click the box to select a color. This will change the color of label Username/Password', 'erident-custom-login-and-dashboard' ); ?></span>
@@ -659,7 +678,7 @@ value="<?php echo get_option('wp_erident_login_bg_ypos'); ?>" />
659
  </tr>
660
  <tr valign="top">
661
  <th scope="row"><?php _e( 'Login Form Label Text Size:', 'erident-custom-login-and-dashboard' ); ?></th>
662
- <td><input class="er-textfield-small" name="wp_erident_dashboard_label_text_size" type="text" id="wp_erident_dashboard_label_text_size" value="<?php echo get_option('wp_erident_dashboard_label_text_size'); ?>" />px
663
  <br />
664
  <span class="description"><?php _e( 'Font Size of Label Username/Password(Enter value in pixels)', 'erident-custom-login-and-dashboard' ); ?></span>
665
  </td>
@@ -667,7 +686,7 @@ value="<?php echo get_option('wp_erident_login_bg_ypos'); ?>" />
667
  <tr valign="top">
668
  <th scope="row"><?php _e( 'Login Form Input Text Color', 'erident-custom-login-and-dashboard' ); ?></th>
669
  <td>
670
- <input class="er-textfield-small" type="text" id="wp_erident_dashboard_input_text_color" name="wp_erident_dashboard_input_text_color" value="<?php echo get_option('wp_erident_dashboard_input_text_color'); ?>" />
671
  <div id="ilctabscolorpicker8"></div>
672
  <br />
673
  <span class="description"><?php _e( 'Click the box to select a color. This will change the color of text inside text box.', 'erident-custom-login-and-dashboard' ); ?></span>
@@ -675,7 +694,7 @@ value="<?php echo get_option('wp_erident_login_bg_ypos'); ?>" />
675
  </tr>
676
  <tr valign="top">
677
  <th scope="row"><?php _e( 'Login Form Input Text Size:', 'erident-custom-login-and-dashboard' ); ?></th>
678
- <td><input class="er-textfield-small" name="wp_erident_dashboard_input_text_size" type="text" id="wp_erident_dashboard_input_text_size" value="<?php echo get_option('wp_erident_dashboard_input_text_size'); ?>" />px
679
  <br />
680
  <span class="description"><?php _e( 'Font Size of text inside text box(Enter value in pixels)', 'erident-custom-login-and-dashboard' ); ?></span>
681
  </td>
@@ -683,7 +702,7 @@ value="<?php echo get_option('wp_erident_login_bg_ypos'); ?>" />
683
  <tr valign="top">
684
  <th scope="row"><?php _e( 'Login Form Link Color', 'erident-custom-login-and-dashboard' ); ?></th>
685
  <td>
686
- <input class="er-textfield-small" type="text" id="wp_erident_dashboard_link_color" name="wp_erident_dashboard_link_color" value="<?php echo get_option('wp_erident_dashboard_link_color'); ?>" />
687
  <div id="ilctabscolorpicker5"></div>
688
  <br />
689
  <span class="description"><?php _e( 'Click the box to select a color.', 'erident-custom-login-and-dashboard' ); ?></span>
@@ -694,15 +713,15 @@ value="<?php echo get_option('wp_erident_login_bg_ypos'); ?>" />
694
  <th scope="row"><?php _e( 'Enable link shadow?', 'erident-custom-login-and-dashboard' ); ?></th>
695
  <td>
696
  <?php
697
- $check_sh = get_option('wp_erident_dashboard_check_shadow');
698
  if($check_sh == 'Yes') { $sx = "checked"; $sy = ''; } else { $sy = "checked"; $sx = ''; } ?>
699
 
700
  <label>
701
- <input type="radio" name="wp_erident_dashboard_check_shadow" value="Yes" id="wp_erident_dashboard_check_shadow_0" <?php echo $sx; ?> onclick="$('#hide-this').show('normal')" />
702
  <?php _e( 'Yes', 'erident-custom-login-and-dashboard' ); ?></label>
703
 
704
  <label>
705
- <input type="radio" name="wp_erident_dashboard_check_shadow" value="No" id="wp_erident_dashboard_check_shadow_1" <?php echo $sy; ?> onclick="$('#hide-this').hide('normal')" />
706
  <?php _e( 'No', 'erident-custom-login-and-dashboard' ); ?></label>
707
  <br />
708
  <span class="description"><?php _e( '(Check an option)', 'erident-custom-login-and-dashboard' ); ?></span>
@@ -711,7 +730,7 @@ value="<?php echo get_option('wp_erident_login_bg_ypos'); ?>" />
711
  <tr valign="top" id="hide-this">
712
  <th scope="row"><?php _e( 'Login Form Link Shadow Color', 'erident-custom-login-and-dashboard' ); ?></th>
713
  <td>
714
- <input class="er-textfield-small" type="text" id="wp_erident_dashboard_link_shadow" name="wp_erident_dashboard_link_shadow" value="<?php echo get_option('wp_erident_dashboard_link_shadow'); ?>" />
715
  <div id="ilctabscolorpicker6"></div>
716
  <br />
717
  <span class="description"><?php _e( 'Click the box to select a color.', 'erident-custom-login-and-dashboard' ); ?></span>
@@ -723,15 +742,15 @@ value="<?php echo get_option('wp_erident_login_bg_ypos'); ?>" />
723
  <th scope="row"><?php _e( 'Enable form shadow?', 'erident-custom-login-and-dashboard' ); ?></th>
724
  <td>
725
  <?php
726
- $check_fsh = get_option('wp_erident_dashboard_check_form_shadow');
727
  if($check_fsh == 'Yes') { $fsx = "checked"; $fsy = ''; } else { $fsy = "checked"; $fsx = ''; } ?>
728
 
729
  <label>
730
- <input type="radio" name="wp_erident_dashboard_check_form_shadow" value="Yes" id="wp_erident_dashboard_check_form_shadow_0" <?php echo $fsx; ?> onclick="$('#hide-this2').show('normal')" />
731
  <?php _e( 'Yes', 'erident-custom-login-and-dashboard' ); ?></label>
732
 
733
  <label>
734
- <input type="radio" name="wp_erident_dashboard_check_form_shadow" value="No" id="wp_erident_dashboard_check_form_shadow_1" <?php echo $fsy; ?> onclick="$('#hide-this2').hide('normal')" />
735
  <?php _e( 'No', 'erident-custom-login-and-dashboard' ); ?></label>
736
  <br />
737
  <span class="description"><?php _e( '(Check an option)', 'erident-custom-login-and-dashboard' ); ?></span>
@@ -740,7 +759,7 @@ value="<?php echo get_option('wp_erident_login_bg_ypos'); ?>" />
740
  <tr valign="top" id="hide-this2">
741
  <th scope="row"><?php _e( 'Login Form Shadow Color', 'erident-custom-login-and-dashboard' ); ?></th>
742
  <td>
743
- <input class="er-textfield-small" type="text" id="wp_erident_dashboard_form_shadow" name="wp_erident_dashboard_form_shadow" value="<?php echo get_option('wp_erident_dashboard_form_shadow'); ?>" />
744
  <div id="ilctabscolorpicker7"></div>
745
  <br />
746
  <span class="description"><?php _e( 'Click the box to select a color.', 'erident-custom-login-and-dashboard' ); ?></span>
@@ -752,7 +771,7 @@ value="<?php echo get_option('wp_erident_login_bg_ypos'); ?>" />
752
  <tr valign="top">
753
  <th scope="row"><?php _e( 'Login Button Color', 'erident-custom-login-and-dashboard' ); ?></th>
754
  <td>
755
- <input class="er-textfield-small" type="text" id="wp_erident_dashboard_button_color" name="wp_erident_dashboard_button_color" value="<?php echo get_option('wp_erident_dashboard_button_color'); ?>" />
756
  <div id="ilctabscolorpicker9"></div>
757
  <br />
758
  <span class="description"><?php _e( 'Click the box to select a color.', 'erident-custom-login-and-dashboard' ); ?></span>
@@ -774,15 +793,15 @@ value="<?php echo get_option('wp_erident_login_bg_ypos'); ?>" />
774
  <th scope="row"><?php _e( 'Delete custom settings upon plugin deactivation?', 'erident-custom-login-and-dashboard' ); ?></th>
775
  <td>
776
  <?php
777
- $check = get_option('wp_erident_dashboard_delete_db');
778
  if($check == 'Yes') { $x = "checked"; $y = ''; } else { $y = "checked"; $x = ''; } ?>
779
 
780
  <label>
781
- <input type="radio" name="wp_erident_dashboard_delete_db" value="Yes" id="wp_erident_dashboard_delete_db_0" <?php echo $x; ?> />
782
  <?php _e( 'Yes', 'erident-custom-login-and-dashboard' ); ?></label>
783
 
784
  <label>
785
- <input type="radio" name="wp_erident_dashboard_delete_db" value="No" id="wp_erident_dashboard_delete_db_1" <?php echo $y; ?> />
786
  <?php _e( 'No', 'erident-custom-login-and-dashboard' ); ?></label>
787
  <br />
788
  <span class="description"><?php _e( '(If you set "Yes" all custom settings will be deleted from database upon plugin deactivation)', 'erident-custom-login-and-dashboard' ); ?></span>
@@ -791,17 +810,46 @@ value="<?php echo get_option('wp_erident_login_bg_ypos'); ?>" />
791
  </table>
792
  </div><!-- end inside -->
793
  </div><!-- end postbox -->
794
-
795
-
796
- <input type="hidden" name="action" value="update" />
797
- <input type="hidden" name="page_options" value="wp_erident_dashboard_data_left,wp_erident_dashboard_data_right,wp_erident_dashboard_image_logo,wp_erident_dashboard_image_logo_width,wp_erident_dashboard_image_logo_height,wp_erident_dashboard_power_text,wp_erident_dashboard_login_width,wp_erident_dashboard_login_radius,wp_erident_dashboard_login_border,wp_erident_dashboard_border_thick,wp_erident_dashboard_border_color,wp_erident_dashboard_login_bg,wp_erident_dashboard_text_color,wp_erident_dashboard_delete_db,wp_erident_top_bg_color,wp_erident_top_bg_image,wp_erident_top_bg_repeat,wp_erident_login_bg_image,wp_erident_login_bg_repeat,wp_erident_dashboard_link_color,wp_erident_dashboard_link_shadow,wp_erident_dashboard_check_shadow,wp_erident_dashboard_form_shadow,wp_erident_dashboard_check_form_shadow,wp_erident_top_bg_xpos,wp_erident_top_bg_ypos,wp_erident_login_bg_xpos,wp_erident_login_bg_ypos,wp_erident_dashboard_input_text_color,wp_erident_dashboard_label_text_size,wp_erident_dashboard_input_text_size,wp_erident_top_bg_size,wp_erident_dashboard_button_color" />
798
-
799
  <p>
800
- <input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
801
  </p>
802
 
803
  </form>
804
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
805
  <div class="bottom-notices">
806
  <div class="er_notice2">
807
  <h3><?php _e( 'Quick Links', 'erident-custom-login-and-dashboard' ); ?></h3>
@@ -820,6 +868,7 @@ value="<?php echo get_option('wp_erident_login_bg_ypos'); ?>" />
820
  <h3><?php _e( 'Translation Credits', 'erident-custom-login-and-dashboard'); ?></h3>
821
  <ul>
822
  <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>
 
823
  </ul>
824
  <p><?php _e( 'Do you wants to translate this plugin to your language? Email me!', 'erident-custom-login-and-dashboard'); ?></p>
825
  </div><!-- end .er_notice -->
5
  Description: Customize completely your WordPress Login Screen and Dashboard. Add your company logo to login screen, change background colors, styles, button color etc. Customize your Dashboard footer text also for complete branding.
6
  Text Domain: erident-custom-login-and-dashboard
7
  Domain Path: /languages
8
+ Version: 3.0
9
  Author: Libin V Babu
10
  Author URI: http://www.libin.in/
11
  License: GPL
50
 
51
  add_filter('admin_footer_text', 'left_admin_footer_text_output'); //left side
52
  function left_admin_footer_text_output($er_left) {
53
+ /*Get all options from db */
54
+ $er_options = get_option('plugin_erident_settings');
55
+ return $er_options['dashboard_data_left'];
56
  }
57
 
58
  add_filter('update_footer', 'right_admin_footer_text_output', 11); //right side
59
  function right_admin_footer_text_output($er_right) {
60
+ /*Get all options from db */
61
+ $er_options = get_option('plugin_erident_settings');
62
+ return $er_options['dashboard_data_right'];
63
  }
64
 
65
  /* Login Logo */
66
  function er_login_logo() {
67
+ /*Get all options from db */
68
+ $er_options = get_option('plugin_erident_settings');
69
+
70
+ if($er_options['dashboard_check_shadow'] == "Yes") {
71
+ $er_login_link_shadow = $er_options['dashboard_link_shadow'].' 0 1px 0';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  }
73
  else {
74
  $er_login_link_shadow = "none";
75
  }
76
+ if($er_options['dashboard_check_form_shadow'] == "Yes") {
77
+ $er_login_form_shadow = '0 4px 10px -1px '.$er_options['dashboard_form_shadow'];
 
78
  }
79
  else {
80
  $er_login_form_shadow = "none";
81
  }
 
 
 
 
 
 
 
 
 
 
 
 
82
 
83
 
84
  function er_hex2rgb( $colour ) {
97
  $b = hexdec( $b );
98
  return array( 'red' => $r, 'green' => $g, 'blue' => $b );
99
  }
100
+ $btnrgba = er_hex2rgb( $er_options['dashboard_button_color'] );
101
  ?>
102
  <style type="text/css">
103
  /* Styles loading from Erident Custom Login and Dashboard Plugin*/
105
  background: none !important;
106
  }
107
  html body.login {
108
+ background: <?php echo $er_options['top_bg_color'] ?> url(<?php echo $er_options['top_bg_image'] ?>) <?php echo $er_options['top_bg_repeat'] ?> <?php echo $er_options['top_bg_xpos'] ?> <?php echo $er_options['top_bg_ypos'] ?> !important;
109
+ background-size: <?php echo $er_options['top_bg_size'] ?> !important;
110
  }
111
  body.login div#login h1 a {
112
+ background-image: url(<?php echo $er_options['dashboard_image_logo'] ?>);
113
  padding-bottom: 30px;
114
  margin: 0 auto;
115
+ background-size: <?php echo $er_options['dashboard_image_logo_width'] ?>px <?php echo $er_options['dashboard_image_logo_height'] ?>px;
116
+ width: <?php echo $er_options['dashboard_image_logo_width'] ?>px;
117
+ height: <?php echo $er_options['dashboard_image_logo_height'] ?>px;
118
  }
119
  body.login #login {
120
+ width:<?php echo $er_options['dashboard_login_width'] ?>px;
121
  }
122
  .login form {
123
+ border-radius:<?php echo $er_options['dashboard_login_radius'] ?>px;
124
+ border:<?php echo $er_options['dashboard_border_thick'] ?>px <?php echo $er_options['dashboard_login_border'] ?> <?php echo $er_options['dashboard_border_color'] ?>;
125
+ background:<?php echo $er_options['dashboard_login_bg'] ?> url(<?php echo $er_options['login_bg_image'] ?>) <?php echo $er_options['login_bg_repeat'] ?> <?php echo $er_options['login_bg_xpos'] ?> <?php echo $er_options['login_bg_ypos'] ?>;
126
  -moz-box-shadow: <?php echo $er_login_form_shadow ?>;
127
  -webkit-box-shadow: <?php echo $er_login_form_shadow ?>;
128
  box-shadow: <?php echo $er_login_form_shadow ?>;
129
  }
130
  body.login div#login form p label {
131
+ color:<?php echo $er_options['dashboard_text_color'] ?>;
132
+ font-size:<?php echo $er_options['dashboard_label_text_size'] ?>px;
133
  }
134
  body.login #loginform p.submit .button-primary {
135
+ background: <?php echo $er_options['dashboard_button_color'] ?> !important;
136
  border: none !important;
137
  }
138
  body.login #loginform p.submit .button-primary:hover, body.login #loginform p.submit .button-primary:focus {
139
  background: rgba(<?php echo $btnrgba['red'];?>,<?php echo $btnrgba['green']?>,<?php echo $btnrgba['blue']?>, 0.9) !important;
140
  }
141
  body.login div#login form .input, .login input[type="text"] {
142
+ color: <?php echo $er_options['dashboard_input_text_color'] ?>;
143
+ font-size:<?php echo $er_options['dashboard_input_text_size'] ?>px;
144
  }
145
  body.login #nav a, body.login #backtoblog a {
146
+ color: <?php echo $er_options['dashboard_link_color'] ?> !important;
147
  }
148
  body.login #nav, body.login #backtoblog {
149
  text-shadow: <?php echo $er_login_link_shadow ?>;
160
  add_filter( 'login_headerurl', 'my_login_logo_url' );
161
 
162
  function er_login_logo_url_title() {
163
+ /*Get all options from db */
164
+ $er_options = get_option('plugin_erident_settings');
165
+ return $er_options['dashboard_power_text'];
166
  }
167
  add_filter( 'login_headertitle', 'er_login_logo_url_title' );
168
 
169
 
170
+ /**
171
+ * Process a settings export that generates a .json file of the erident settings
172
+ */
173
+ function er_process_settings_export() {
174
+
175
+ if( empty( $_POST['er_action'] ) || 'export_settings' != $_POST['er_action'] )
176
+ return;
177
+
178
+ if( ! wp_verify_nonce( $_POST['er_export_nonce'], 'er_export_nonce' ) )
179
+ return;
180
+
181
+ if( ! current_user_can( 'manage_options' ) )
182
+ return;
183
+
184
+ $settings = get_option( 'plugin_erident_settings' );
185
+
186
+ ignore_user_abort( true );
187
+
188
+ nocache_headers();
189
+ header( 'Content-Type: application/json; charset=utf-8' );
190
+ header( 'Content-Disposition: attachment; filename=erident-settings-export-' . date( 'm-d-Y' ) . '.json' );
191
+ header( "Expires: 0" );
192
+
193
+ echo json_encode( $settings );
194
+ exit;
195
+ }
196
+ add_action( 'admin_init', 'er_process_settings_export' );
197
+
198
+ /**
199
+ * Process a settings import from a json file
200
+ */
201
+ function er_process_settings_import() {
202
+
203
+ if( empty( $_POST['er_action'] ) || 'import_settings' != $_POST['er_action'] )
204
+ return;
205
+
206
+ if( ! wp_verify_nonce( $_POST['er_import_nonce'], 'er_import_nonce' ) )
207
+ return;
208
+
209
+ if( ! current_user_can( 'manage_options' ) )
210
+ return;
211
+
212
+ $extension = end( explode( '.', $_FILES['import_file']['name'] ) );
213
+
214
+ if( $extension != 'json' ) {
215
+ wp_die( __( 'Please upload a valid .json file' ) );
216
+ }
217
+
218
+ $import_file = $_FILES['import_file']['tmp_name'];
219
+
220
+ if( empty( $import_file ) ) {
221
+ wp_die( __( 'Please upload a file to import' ) );
222
+ }
223
+
224
+ // Retrieve the settings from the file and convert the json object to an array.
225
+ $settings = (array) json_decode( file_get_contents( $import_file ) );
226
+
227
+ update_option( 'plugin_erident_settings', $settings );
228
+ echo '<div id="message" class="updated fade"><p><strong>' . __('New settings imported successfully!') . '</strong></p></div>';
229
+
230
+ }
231
+ add_action( 'admin_init', 'er_process_settings_import' );
232
+
233
+
234
+
235
  /* Runs when plugin is activated */
236
  register_activation_hook(__FILE__,'wp_erident_dashboard_install');
237
 
240
 
241
  function wp_erident_dashboard_install() {
242
  /* Creates new database field */
243
+
244
+ $er_new_options = array(
245
+ 'dashboard_data_left' => 'Powered by YourWebsiteName',
246
+ 'dashboard_data_right' => '&copy; 2014 All Rights Reserved',
247
+ 'dashboard_image_logo' => plugins_url('images/default-logo.png', __FILE__),
248
+ 'dashboard_image_logo_width' => '274',
249
+ 'dashboard_image_logo_height' => '63',
250
+ 'dashboard_power_text' => 'Powered by YourWebsiteName',
251
+ 'dashboard_login_width' => '350',
252
+ 'dashboard_login_radius' => '10',
253
+ 'dashboard_login_border' => 'solid',
254
+ 'dashboard_border_thick' => '4',
255
+ 'dashboard_border_color' => '#0069A0',
256
+ 'dashboard_login_bg' => '#dbdbdb',
257
+ 'dashboard_text_color' => '#000000',
258
+ 'dashboard_input_text_color' => '#555555',
259
+ 'dashboard_label_text_size' => '14',
260
+ 'dashboard_input_text_size' => '24',
261
+ 'dashboard_link_color' => '#21759B',
262
+ 'dashboard_check_shadow' => 'Yes',
263
+ 'dashboard_link_shadow' => '#ffffff',
264
+ 'dashboard_check_form_shadow' => 'Yes',
265
+ 'dashboard_form_shadow' => '#C8C8C8',
266
+ 'dashboard_button_color' => '#5E5E5E',
267
+ 'top_bg_color' => '#f9fad2',
268
+ 'top_bg_image' => plugins_url('images/top_bg.jpg', __FILE__),
269
+ 'top_bg_repeat' => 'repeat',
270
+ 'top_bg_xpos' => 'top',
271
+ 'top_bg_ypos' => 'left',
272
+ 'login_bg_image' => plugins_url('images/form_bg.jpg', __FILE__),
273
+ 'login_bg_repeat' => 'repeat',
274
+ 'login_bg_xpos' => 'top',
275
+ 'login_bg_ypos' => 'left',
276
+ 'top_bg_size' => 'auto',
277
+ 'dashboard_delete_db' => 'No'
278
+ );
279
+
280
+ // if old options exist, update to new system
281
+ foreach( $er_new_options as $key => $value ) {
282
+ $existing = get_option( 'wp_erident_' . $key );
283
+ $er_new_options[$key] = $existing;
284
+ delete_option( 'wp_erident_' . $key );
285
+ }
286
+
287
+ add_option( 'plugin_erident_settings', $er_new_options );
288
  }
289
 
290
  function wp_erident_dashboard_remove() {
291
+ /*Get all options from db */
292
+ $er_options = get_option('plugin_erident_settings');
293
+
294
+ if($er_options['dashboard_delete_db'] == "Yes") {
295
  /* Deletes the database field */
296
+ delete_option('plugin_erident_settings');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
297
  }
298
  else { }
299
  }
332
  <div id="icon-options-general" class="icon32"><br></div>
333
  <h2><?php _e( 'Erident Custom Login and Dashboard Settings', 'erident-custom-login-and-dashboard' ); ?></h2>
334
  <p><i><?php _e( 'Plugin Loads default values for all below entries. Please change the values to yours.', 'erident-custom-login-and-dashboard' ); ?></i><br/><span style="background: #f9ff0a;"><?php _e( 'Click on the header of each block to open it.', 'erident-custom-login-and-dashboard' ); ?></span></p>
335
+ <form class="wp-erident-dashboard" method="post">
336
+
337
+ <?php
338
+ if( isset($_POST['er_update_settings']) ) {
339
+ $er_new_options = $_POST['er_options_up'];
340
+ update_option( 'plugin_erident_settings', $er_new_options);
341
+ echo '<div id="message" class="updated fade"><p><strong>' . __('Settings saved.') . '</strong></p></div>';
342
+ } ?>
343
+ <?php /*Get all options from db */
344
+ $er_options = get_option('plugin_erident_settings');
345
+ ?>
346
  <div class="postbox">
347
  <div class="handlediv" title="Click to toggle"><br></div>
348
  <h3 class="hndle" title="Click to toggle"><span><?php _e( 'Dashboard Settings', 'erident-custom-login-and-dashboard' ); ?></span>
353
  <tr valign="top">
354
  <th scope="row"><?php _e( 'Enter the text for dashboard left side footer:', 'erident-custom-login-and-dashboard' ); ?></th>
355
  <td>
356
+ <input class="er-textfield" name="er_options_up[dashboard_data_left]" type="text" id="wp_erident_dashboard_data_left"
357
+ value="<?php echo esc_html( $er_options['dashboard_data_left'] ); ?>" placeholder="Text for dashboard left side footer" />
358
  <br />
359
  <span class="description"><?php _e( 'This will replace the default "Thank you for creating with WordPress" on the bottom left side of dashboard', 'erident-custom-login-and-dashboard' ); ?></span>
360
  </td>
361
  </tr>
362
  <tr valign="top">
363
  <th scope="row"><?php _e( 'Enter the text for dashboard right side footer:', 'erident-custom-login-and-dashboard' ); ?></th>
364
+ <td><input class="er-textfield" name="er_options_up[dashboard_data_right]" type="text" id="wp_erident_dashboard_data_right"
365
+ value="<?php echo esc_html( $er_options['dashboard_data_right'] ); ?>" placeholder="Text for dashboard left right footer" />
366
  <br />
367
  <span class="description"><?php _e( 'This will replace the default "WordPress Version" on the bottom right side of dashboard', 'erident-custom-login-and-dashboard' ); ?></span>
368
  </td>
381
  <tr valign="top">
382
  <th scope="row"><?php _e( 'Login Screen Background Color:', 'erident-custom-login-and-dashboard' ); ?></th>
383
  <td>
384
+ <input class="er-textfield-small" type="text" id="wp_erident_top_bg_color" name="er_options_up[top_bg_color]" value="<?php echo $er_options['top_bg_color']; ?>" />
385
  <div id="ilctabscolorpicker4"></div>
386
  <br />
387
  <span class="description"><?php _e( 'Click the box to select a color.', 'erident-custom-login-and-dashboard' ); ?></span>
390
 
391
  <tr valign="top">
392
  <th scope="row"><?php _e( 'Login Screen Background Image:', 'erident-custom-login-and-dashboard' ); ?></th>
393
+ <td><input class="er-textfield" name="er_options_up[top_bg_image]" type="text" id="wp_erident_top_bg_image"
394
+ value="<?php echo $er_options['top_bg_image']; ?>" />
395
  <br />
396
  <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>
397
  </td>
400
  <th scope="row"><?php _e( 'Login Screen Background Repeat', 'erident-custom-login-and-dashboard' ); ?></th>
401
  <td>
402
  <?php
403
+ switch($er_options['top_bg_repeat'])
 
404
  {
405
  case 'none':
406
  $er_screen_a='selected="selected"';
427
  break;
428
  }
429
  ?>
430
+ <select class="er-textfield-small" name="er_options_up[top_bg_repeat]" id="wp_erident_top_bg_repeat">
431
  <option value="no-repeat" <?php echo $er_screen_a; ?>>No Repeat</option>
432
  <option value="repeat" <?php echo $er_screen_b; ?>>Repeat</option>
433
  <option value="repeat-x" <?php echo $er_screen_c; ?>>Repeat-x</option>
440
  </tr>
441
  <tr valign="top">
442
  <th scope="row"><?php _e( 'Background Position:', 'erident-custom-login-and-dashboard' ); ?></th>
443
+ <td><?php _e( 'Horizontal Position: ', 'erident-custom-login-and-dashboard' ); ?> <input class="er-textfield-small" name="er_options_up[top_bg_xpos]" type="text" id="wp_erident_top_bg_xpos"
444
+ value="<?php echo $er_options['top_bg_xpos']; ?>" />
445
+ Vertical Position: <input class="er-textfield-small" name="er_options_up[top_bg_ypos]" type="text" id="wp_erident_top_bg_ypos"
446
+ value="<?php echo $er_options['top_bg_ypos']; ?>" />
447
  <br />
448
  <span class="description"><?php _e( 'The background-position property sets the starting position of a background image. If you entering the value in "pixels" or "percentage", add "px" or "%" at the end of value. This will not show any changes if you set the Background Repeat option as "Repeat". <a href="http://www.w3schools.com/cssref/pr_background-position.asp" target="_blank">More Info</a>', 'erident-custom-login-and-dashboard' ); ?></span>
449
  </td>
451
 
452
  <tr valign="top">
453
  <th scope="row"><?php _e( 'Background Size:', 'erident-custom-login-and-dashboard' ); ?></th>
454
+ <td><input class="er-textfield-small" name="er_options_up[top_bg_size]" type="text" id="wp_erident_top_bg_size"
455
+ value="<?php echo $er_options['top_bg_size']; ?>" />
456
  <br />
457
  <span class="description"><?php _e( 'The background-size property specifies the size of a background image. If you entering the value in "pixels" or "percentage", add "px" or "%" at the end of value. Possible values: auto, length, percentage, cover, contain. <a href="http://www.w3schools.com/cssref/css3_pr_background-size.asp" target="_blank">More Info</a>', 'erident-custom-login-and-dashboard' ); ?></span>
458
  </td>
472
  <table>
473
  <tr valign="top">
474
  <th scope="row"><?php _e( 'Logo Url:', 'erident-custom-login-and-dashboard' ); ?></th>
475
+ <td><input class="er-textfield" name="er_options_up[dashboard_image_logo]" type="text" id="wp_erident_dashboard_image_logo"
476
+ value="<?php echo $er_options['dashboard_image_logo']; ?>" /> <span class="description"><?php _e( 'Default Logo Size 274px × 63px', 'erident-custom-login-and-dashboard' ); ?></span>
477
  <br />
478
  <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>
479
  </td>
481
 
482
  <tr valign="top">
483
  <th scope="row"><?php _e( 'Logo Width:', 'erident-custom-login-and-dashboard' ); ?></th>
484
+ <td><input class="er-textfield-small" name="er_options_up[dashboard_image_logo_width]" type="text" id="wp_erident_dashboard_image_logo_width"
485
+ value="<?php echo $er_options['dashboard_image_logo_width']; ?>" />px
486
  <br />
487
  <span class="description"><?php _e( 'Your Logo width(Enter in pixels). Default: 274px', 'erident-custom-login-and-dashboard' ); ?></span>
488
  </td>
489
  </tr>
490
  <tr valign="top">
491
  <th scope="row"><?php _e( 'Logo Height:', 'erident-custom-login-and-dashboard' ); ?></th>
492
+ <td><input class="er-textfield-small" name="er_options_up[dashboard_image_logo_height]" type="text" id="wp_erident_dashboard_image_logo_height"
493
+ value="<?php echo $er_options['dashboard_image_logo_height']; ?>" />px
494
  <br />
495
  <span class="description"><?php _e( 'Your Logo Height(Enter in pixels). Default: 63px', 'erident-custom-login-and-dashboard' ); ?></span>
496
  </td>
498
 
499
  <tr valign="top">
500
  <th scope="row"><?php _e( 'Powered by Text:', 'erident-custom-login-and-dashboard' ); ?></th>
501
+ <td><input class="er-textfield" name="er_options_up[dashboard_power_text]" type="text" id="wp_erident_dashboard_power_text"
502
+ value="<?php echo $er_options['dashboard_power_text']; ?>" />
503
  <br />
504
  <span class="description"><?php _e( 'Show when mouse hover over custom Login logo', 'erident-custom-login-and-dashboard' ); ?></span>
505
  </td>
518
  <table>
519
  <tr valign="top">
520
  <th scope="row"><?php _e( 'Login form width:', 'erident-custom-login-and-dashboard' ); ?></th>
521
+ <td><input class="er-textfield-small" name="er_options_up[dashboard_login_width]" type="text" id="wp_erident_dashboard_login_width"
522
+ value="<?php echo $er_options['dashboard_login_width']; ?>" />px
523
  <br />
524
  <span class="description"><?php _e( 'Total Form width(Enter in pixels). Default: 350px', 'erident-custom-login-and-dashboard' ); ?></span>
525
  </td>
526
  </tr>
527
  <tr valign="top">
528
  <th scope="row"><?php _e( 'Login Form Border Radius:', 'erident-custom-login-and-dashboard' ); ?></th>
529
+ <td><input class="er-textfield-small" name="er_options_up[dashboard_login_radius]" type="text" id="wp_erident_dashboard_login_radius"
530
+ value="<?php echo $er_options['dashboard_login_radius']; ?>" />px
531
  <br />
532
  <span class="description"><?php _e( 'Border Radius of Login Form. This is the option to make the corners rounded.(Enter in pixels)', 'erident-custom-login-and-dashboard' ); ?></span>
533
  </td>
536
  <th scope="row"><?php _e( 'Login Border Style', 'erident-custom-login-and-dashboard' ); ?></th>
537
  <td>
538
  <?php
539
+ switch($er_options['dashboard_login_border'])
 
540
  {
541
  case 'none':
542
  $er_a='selected="selected"';
568
  break;
569
  }
570
  ?>
571
+ <select class="er-textfield-small" name="er_options_up[dashboard_login_border]" id="wp_erident_dashboard_login_border">
572
  <option value="none" <?php echo $er_a; ?>>None</option>
573
  <option value="solid" <?php echo $er_b; ?>>Solid</option>
574
  <option value="dotted" <?php echo $er_c; ?>>Dotted</option>
582
  </tr>
583
  <tr valign="top">
584
  <th scope="row"><?php _e( 'Login Border Thickness:', 'erident-custom-login-and-dashboard' ); ?></th>
585
+ <td><input class="er-textfield-small" name="er_options_up[dashboard_border_thick]" type="text" id="wp_erident_dashboard_border_thick"
586
+ value="<?php echo $er_options['dashboard_border_thick']; ?>" />px
587
  <br />
588
  <span class="description"><?php _e( 'Thickness of Border (Enter value in pixels)', 'erident-custom-login-and-dashboard' ); ?></span>
589
  </td>
591
  <tr valign="top">
592
  <th scope="row"><?php _e( 'Login Border Color:', 'erident-custom-login-and-dashboard' ); ?></th>
593
  <td>
594
+ <input class="er-textfield-small" type="text" id="wp_erident_dashboard_border_color" name="er_options_up[dashboard_border_color]" value="<?php echo $er_options['dashboard_border_color']; ?>" />
595
  <div id="ilctabscolorpicker"></div>
596
  <br />
597
  <span class="description"><?php _e( 'Click the box to select a color.', 'erident-custom-login-and-dashboard' ); ?></span>
600
  <tr valign="top">
601
  <th scope="row"><?php _e( 'Login Form Background Color:', 'erident-custom-login-and-dashboard' ); ?></th>
602
  <td>
603
+ <input class="er-textfield-small" type="text" id="wp_erident_dashboard_login_bg" name="er_options_up[dashboard_login_bg]" value="<?php echo $er_options['dashboard_login_bg']; ?>" />
604
  <div id="ilctabscolorpicker2"></div>
605
  <br />
606
  <span class="description"><?php _e( 'Click the box to select a color.', 'erident-custom-login-and-dashboard' ); ?></span>
608
  </tr>
609
  <tr valign="top">
610
  <th scope="row"><?php _e( 'Login Form Background Image:', 'erident-custom-login-and-dashboard' ); ?></th>
611
+ <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']; ?>" />
612
  <br />
613
  <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>
614
  </td>
617
  <th scope="row"><?php _e( 'Login Form Background Repeat', 'erident-custom-login-and-dashboard' ); ?></th>
618
  <td>
619
  <?php
620
+ switch($er_options['login_bg_repeat'])
 
621
  {
622
  case 'none':
623
  $er_login_a='selected="selected"';
644
  break;
645
  }
646
  ?>
647
+ <select class="er-textfield-small" name="er_options_up[login_bg_repeat]" id="wp_erident_login_bg_repeat">
648
  <option value="no-repeat" <?php echo $er_login_a; ?>>No Repeat</option>
649
  <option value="repeat" <?php echo $er_login_b; ?>>Repeat</option>
650
  <option value="repeat-x" <?php echo $er_login_c; ?>>Repeat-x</option>
658
 
659
  <tr valign="top">
660
  <th scope="row"><?php _e( 'Background Position:', 'erident-custom-login-and-dashboard' ); ?></th>
661
+ <td><?php _e( 'Horizontal Position: ', 'erident-custom-login-and-dashboard' ); ?><input class="er-textfield-small" name="er_options_up[login_bg_xpos]" type="text" id="wp_erident_login_bg_xpos"
662
+ value="<?php echo $er_options['login_bg_xpos']; ?>" />
663
+ <?php _e( 'Vertical Position: ', 'erident-custom-login-and-dashboard' ); ?><input class="er-textfield-small" name="er_options_up[login_bg_ypos]" type="text" id="wp_erident_login_bg_ypos"
664
+ value="<?php echo $er_options['login_bg_ypos']; ?>" />
665
  <br />
666
  <span class="description"><?php _e( 'The background-position property sets the starting position of a background image. If you entering the value in "pixels" or "percentage", add "px" or "%" at the end of value. This will not show any changes if you set the Background Repeat option as "Repeat". <a href="http://www.w3schools.com/cssref/pr_background-position.asp" target="_blank">More Info</a>', 'erident-custom-login-and-dashboard' ); ?></span>
667
  </td>
670
  <tr valign="top">
671
  <th scope="row"><?php _e( 'Login Form Label Text Color', 'erident-custom-login-and-dashboard' ); ?></th>
672
  <td>
673
+ <input class="er-textfield-small" type="text" id="wp_erident_dashboard_text_color" name="er_options_up[dashboard_text_color]" value="<?php echo $er_options['dashboard_text_color']; ?>" />
674
  <div id="ilctabscolorpicker3"></div>
675
  <br />
676
  <span class="description"><?php _e( 'Click the box to select a color. This will change the color of label Username/Password', 'erident-custom-login-and-dashboard' ); ?></span>
678
  </tr>
679
  <tr valign="top">
680
  <th scope="row"><?php _e( 'Login Form Label Text Size:', 'erident-custom-login-and-dashboard' ); ?></th>
681
+ <td><input class="er-textfield-small" name="er_options_up[dashboard_label_text_size]" type="text" id="wp_erident_dashboard_label_text_size" value="<?php echo $er_options['dashboard_label_text_size']; ?>" />px
682
  <br />
683
  <span class="description"><?php _e( 'Font Size of Label Username/Password(Enter value in pixels)', 'erident-custom-login-and-dashboard' ); ?></span>
684
  </td>
686
  <tr valign="top">
687
  <th scope="row"><?php _e( 'Login Form Input Text Color', 'erident-custom-login-and-dashboard' ); ?></th>
688
  <td>
689
+ <input class="er-textfield-small" type="text" id="wp_erident_dashboard_input_text_color" name="er_options_up[dashboard_input_text_color]" value="<?php echo $er_options['dashboard_input_text_color']; ?>" />
690
  <div id="ilctabscolorpicker8"></div>
691
  <br />
692
  <span class="description"><?php _e( 'Click the box to select a color. This will change the color of text inside text box.', 'erident-custom-login-and-dashboard' ); ?></span>
694
  </tr>
695
  <tr valign="top">
696
  <th scope="row"><?php _e( 'Login Form Input Text Size:', 'erident-custom-login-and-dashboard' ); ?></th>
697
+ <td><input class="er-textfield-small" name="er_options_up[dashboard_input_text_size]" type="text" id="wp_erident_dashboard_input_text_size" value="<?php echo $er_options['dashboard_input_text_size']; ?>" />px
698
  <br />
699
  <span class="description"><?php _e( 'Font Size of text inside text box(Enter value in pixels)', 'erident-custom-login-and-dashboard' ); ?></span>
700
  </td>
702
  <tr valign="top">
703
  <th scope="row"><?php _e( 'Login Form Link Color', 'erident-custom-login-and-dashboard' ); ?></th>
704
  <td>
705
+ <input class="er-textfield-small" type="text" id="wp_erident_dashboard_link_color" name="er_options_up[dashboard_link_color]" value="<?php echo $er_options['dashboard_link_color']; ?>" />
706
  <div id="ilctabscolorpicker5"></div>
707
  <br />
708
  <span class="description"><?php _e( 'Click the box to select a color.', 'erident-custom-login-and-dashboard' ); ?></span>
713
  <th scope="row"><?php _e( 'Enable link shadow?', 'erident-custom-login-and-dashboard' ); ?></th>
714
  <td>
715
  <?php
716
+ $check_sh = $er_options['dashboard_check_shadow'];
717
  if($check_sh == 'Yes') { $sx = "checked"; $sy = ''; } else { $sy = "checked"; $sx = ''; } ?>
718
 
719
  <label>
720
+ <input type="radio" name="er_options_up[dashboard_check_shadow]" value="Yes" id="wp_erident_dashboard_check_shadow_0" <?php echo $sx; ?> onclick="$('#hide-this').show('normal')" />
721
  <?php _e( 'Yes', 'erident-custom-login-and-dashboard' ); ?></label>
722
 
723
  <label>
724
+ <input type="radio" name="er_options_up[dashboard_check_shadow]" value="No" id="wp_erident_dashboard_check_shadow_1" <?php echo $sy; ?> onclick="$('#hide-this').hide('normal')" />
725
  <?php _e( 'No', 'erident-custom-login-and-dashboard' ); ?></label>
726
  <br />
727
  <span class="description"><?php _e( '(Check an option)', 'erident-custom-login-and-dashboard' ); ?></span>
730
  <tr valign="top" id="hide-this">
731
  <th scope="row"><?php _e( 'Login Form Link Shadow Color', 'erident-custom-login-and-dashboard' ); ?></th>
732
  <td>
733
+ <input class="er-textfield-small" type="text" id="wp_erident_dashboard_link_shadow" name="er_options_up[dashboard_link_shadow]" value="<?php echo $er_options['dashboard_link_shadow']; ?>" />
734
  <div id="ilctabscolorpicker6"></div>
735
  <br />
736
  <span class="description"><?php _e( 'Click the box to select a color.', 'erident-custom-login-and-dashboard' ); ?></span>
742
  <th scope="row"><?php _e( 'Enable form shadow?', 'erident-custom-login-and-dashboard' ); ?></th>
743
  <td>
744
  <?php
745
+ $check_fsh = $er_options['dashboard_check_form_shadow'];
746
  if($check_fsh == 'Yes') { $fsx = "checked"; $fsy = ''; } else { $fsy = "checked"; $fsx = ''; } ?>
747
 
748
  <label>
749
+ <input type="radio" name="er_options_up[dashboard_check_form_shadow]" value="Yes" id="wp_erident_dashboard_check_form_shadow_0" <?php echo $fsx; ?> onclick="$('#hide-this2').show('normal')" />
750
  <?php _e( 'Yes', 'erident-custom-login-and-dashboard' ); ?></label>
751
 
752
  <label>
753
+ <input type="radio" name="er_options_up[dashboard_check_form_shadow]" value="No" id="wp_erident_dashboard_check_form_shadow_1" <?php echo $fsy; ?> onclick="$('#hide-this2').hide('normal')" />
754
  <?php _e( 'No', 'erident-custom-login-and-dashboard' ); ?></label>
755
  <br />
756
  <span class="description"><?php _e( '(Check an option)', 'erident-custom-login-and-dashboard' ); ?></span>
759
  <tr valign="top" id="hide-this2">
760
  <th scope="row"><?php _e( 'Login Form Shadow Color', 'erident-custom-login-and-dashboard' ); ?></th>
761
  <td>
762
+ <input class="er-textfield-small" type="text" id="wp_erident_dashboard_form_shadow" name="er_options_up[dashboard_form_shadow]" value="<?php echo $er_options['dashboard_form_shadow']; ?>" />
763
  <div id="ilctabscolorpicker7"></div>
764
  <br />
765
  <span class="description"><?php _e( 'Click the box to select a color.', 'erident-custom-login-and-dashboard' ); ?></span>
771
  <tr valign="top">
772
  <th scope="row"><?php _e( 'Login Button Color', 'erident-custom-login-and-dashboard' ); ?></th>
773
  <td>
774
+ <input class="er-textfield-small" type="text" id="wp_erident_dashboard_button_color" name="er_options_up[dashboard_button_color]" value="<?php echo $er_options['dashboard_button_color']; ?>" />
775
  <div id="ilctabscolorpicker9"></div>
776
  <br />
777
  <span class="description"><?php _e( 'Click the box to select a color.', 'erident-custom-login-and-dashboard' ); ?></span>
793
  <th scope="row"><?php _e( 'Delete custom settings upon plugin deactivation?', 'erident-custom-login-and-dashboard' ); ?></th>
794
  <td>
795
  <?php
796
+ $check = $er_options['dashboard_delete_db'];
797
  if($check == 'Yes') { $x = "checked"; $y = ''; } else { $y = "checked"; $x = ''; } ?>
798
 
799
  <label>
800
+ <input type="radio" name="er_options_up[dashboard_delete_db]" value="Yes" id="wp_erident_dashboard_delete_db_0" <?php echo $x; ?> />
801
  <?php _e( 'Yes', 'erident-custom-login-and-dashboard' ); ?></label>
802
 
803
  <label>
804
+ <input type="radio" name="er_options_up[dashboard_delete_db]" value="No" id="wp_erident_dashboard_delete_db_1" <?php echo $y; ?> />
805
  <?php _e( 'No', 'erident-custom-login-and-dashboard' ); ?></label>
806
  <br />
807
  <span class="description"><?php _e( '(If you set "Yes" all custom settings will be deleted from database upon plugin deactivation)', 'erident-custom-login-and-dashboard' ); ?></span>
810
  </table>
811
  </div><!-- end inside -->
812
  </div><!-- end postbox -->
813
+
 
 
 
 
814
  <p>
815
+ <input type="submit" name="er_update_settings" class="button-primary" value="<?php _e('Save Changes') ?>" />
816
  </p>
817
 
818
  </form>
819
 
820
+ <div class="postbox">
821
+ <div class="handlediv" title="Click to toggle"><br></div>
822
+ <h3 class="hndle" title="Click to toggle"><span><?php _e( 'Export Settings', 'erident-custom-login-and-dashboard' ); ?></span></h3>
823
+ <div class="inside">
824
+ <p><?php _e( 'Export the plugin settings for this site as a .json file. This allows you to easily import the configuration into another site.', 'erident-custom-login-and-dashboard' ); ?></p>
825
+ <form method="post">
826
+ <p><input type="hidden" name="er_action" value="export_settings" /></p>
827
+ <p>
828
+ <?php wp_nonce_field( 'er_export_nonce', 'er_export_nonce' ); ?>
829
+ <?php submit_button( __( 'Export' ), 'secondary', 'submit', false ); ?>
830
+ </p>
831
+ </form>
832
+ </div><!-- .inside -->
833
+ </div><!-- .postbox -->
834
+
835
+ <div class="postbox">
836
+ <div class="handlediv" title="Click to toggle"><br></div>
837
+ <h3 class="hndle" title="Click to toggle"><span><?php _e( 'Import Settings', 'erident-custom-login-and-dashboard' ); ?></span></h3>
838
+ <div class="inside">
839
+ <p><?php _e( 'Import the plugin settings from a .json file. This file can be obtained by exporting the settings on another site using the form above.', 'erident-custom-login-and-dashboard' ); ?></p>
840
+ <form method="post" enctype="multipart/form-data">
841
+ <p>
842
+ <input type="file" name="import_file"/>
843
+ </p>
844
+ <p>
845
+ <input type="hidden" name="er_action" value="import_settings" />
846
+ <?php wp_nonce_field( 'er_import_nonce', 'er_import_nonce' ); ?>
847
+ <?php submit_button( __( 'Import' ), 'secondary', 'submit', false ); ?>
848
+ </p>
849
+ </form>
850
+ </div><!-- .inside -->
851
+ </div><!-- .postbox -->
852
+
853
  <div class="bottom-notices">
854
  <div class="er_notice2">
855
  <h3><?php _e( 'Quick Links', 'erident-custom-login-and-dashboard' ); ?></h3>
868
  <h3><?php _e( 'Translation Credits', 'erident-custom-login-and-dashboard'); ?></h3>
869
  <ul>
870
  <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>
871
+ <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>
872
  </ul>
873
  <p><?php _e( 'Do you wants to translate this plugin to your language? Email me!', 'erident-custom-login-and-dashboard'); ?></p>
874
  </div><!-- end .er_notice -->
languages/en.mo CHANGED
Binary file
languages/en.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
- "POT-Creation-Date: 2014-05-27 12:39+0530\n"
5
- "PO-Revision-Date: 2014-05-27 12:40+0530\n"
6
  "Last-Translator: Libin <libin@libin.in>\n"
7
  "Language-Team: \n"
8
  "Language: en\n"
@@ -20,99 +20,115 @@ msgstr ""
20
  msgid "Settings"
21
  msgstr ""
22
 
23
- #: er-custom-login.php:298
 
 
 
 
 
 
 
 
 
 
 
 
24
  msgid "Custom Login and Dashboard"
25
  msgstr ""
26
 
27
- #: er-custom-login.php:319
28
  msgid "Erident Custom Login and Dashboard Settings"
29
  msgstr ""
30
 
31
- #: er-custom-login.php:320
32
  msgid ""
33
  "Plugin Loads default values for all below entries. Please change the values "
34
  "to yours."
35
  msgstr ""
36
 
37
- #: er-custom-login.php:320
38
  msgid "Click on the header of each block to open it."
39
  msgstr ""
40
 
41
- #: er-custom-login.php:326
 
 
 
 
42
  msgid "Dashboard Settings"
43
  msgstr ""
44
 
45
- #: er-custom-login.php:327
46
  msgid ""
47
  "(These settings will be reflected when a user/admin logins to the WordPress "
48
  "Dashboard)"
49
  msgstr ""
50
 
51
- #: er-custom-login.php:332
52
  msgid "Enter the text for dashboard left side footer:"
53
  msgstr ""
54
 
55
- #: er-custom-login.php:337
56
  msgid ""
57
  "This will replace the default \"Thank you for creating with WordPress\" on "
58
  "the bottom left side of dashboard"
59
  msgstr ""
60
 
61
- #: er-custom-login.php:341
62
  msgid "Enter the text for dashboard right side footer:"
63
  msgstr ""
64
 
65
- #: er-custom-login.php:345
66
  msgid ""
67
  "This will replace the default \"WordPress Version\" on the bottom right side "
68
  "of dashboard"
69
  msgstr ""
70
 
71
- #: er-custom-login.php:354
72
  msgid "Login Screen Background"
73
  msgstr ""
74
 
75
- #: er-custom-login.php:355
76
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
77
  msgstr ""
78
 
79
- #: er-custom-login.php:360
80
  msgid "Login Screen Background Color:"
81
  msgstr ""
82
 
83
- #: er-custom-login.php:365 er-custom-login.php:577 er-custom-login.php:586
84
- #: er-custom-login.php:689 er-custom-login.php:717 er-custom-login.php:746
85
- #: er-custom-login.php:758
86
  msgid "Click the box to select a color."
87
  msgstr ""
88
 
89
- #: er-custom-login.php:370
90
  msgid "Login Screen Background Image:"
91
  msgstr ""
92
 
93
- #: er-custom-login.php:374
94
  msgid ""
95
  "Add your own pattern/image url for the screen background. Leave blank if you "
96
  "don't need any images."
97
  msgstr ""
98
 
99
- #: er-custom-login.php:378
100
  msgid "Login Screen Background Repeat"
101
  msgstr ""
102
 
103
- #: er-custom-login.php:417 er-custom-login.php:636
104
  msgid "Select an image repeat option from dropdown."
105
  msgstr ""
106
 
107
- #: er-custom-login.php:421 er-custom-login.php:641
108
  msgid "Background Position:"
109
  msgstr ""
110
 
111
- #: er-custom-login.php:422 er-custom-login.php:642
112
  msgid "Horizontal Position: "
113
  msgstr ""
114
 
115
- #: er-custom-login.php:427 er-custom-login.php:647
116
  msgid ""
117
  "The background-position property sets the starting position of a background "
118
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
@@ -121,11 +137,11 @@ msgid ""
121
  "cssref/pr_background-position.asp\" target=\"_blank\">More Info</a>"
122
  msgstr ""
123
 
124
- #: er-custom-login.php:432
125
  msgid "Background Size:"
126
  msgstr ""
127
 
128
- #: er-custom-login.php:436
129
  msgid ""
130
  "The background-size property specifies the size of a background image. If "
131
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
@@ -134,239 +150,267 @@ msgid ""
134
  "asp\" target=\"_blank\">More Info</a>"
135
  msgstr ""
136
 
137
- #: er-custom-login.php:447
138
  msgid "Login Screen Logo"
139
  msgstr ""
140
 
141
- #: er-custom-login.php:448
142
  msgid "(Change the default WordPress logo and powered by text)"
143
  msgstr ""
144
 
145
- #: er-custom-login.php:453
146
  msgid "Logo Url:"
147
  msgstr ""
148
 
149
- #: er-custom-login.php:455
150
  msgid "Default Logo Size 274px × 63px"
151
  msgstr ""
152
 
153
- #: er-custom-login.php:457
154
  msgid ""
155
  "(URL path to image to replace default WordPress Logo. (You can upload your "
156
  "image with the WordPress media uploader)"
157
  msgstr ""
158
 
159
- #: er-custom-login.php:462
160
  msgid "Logo Width:"
161
  msgstr ""
162
 
163
- #: er-custom-login.php:466
164
  msgid "Your Logo width(Enter in pixels). Default: 274px"
165
  msgstr ""
166
 
167
- #: er-custom-login.php:470
168
  msgid "Logo Height:"
169
  msgstr ""
170
 
171
- #: er-custom-login.php:474
172
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
173
  msgstr ""
174
 
175
- #: er-custom-login.php:479
176
  msgid "Powered by Text:"
177
  msgstr ""
178
 
179
- #: er-custom-login.php:483
180
  msgid "Show when mouse hover over custom Login logo"
181
  msgstr ""
182
 
183
- #: er-custom-login.php:493
184
  msgid "Login Form Settings"
185
  msgstr ""
186
 
187
- #: er-custom-login.php:494
188
  msgid "(The following settings will change the Login Form style)"
189
  msgstr ""
190
 
191
- #: er-custom-login.php:499
192
  msgid "Login form width:"
193
  msgstr ""
194
 
195
- #: er-custom-login.php:503
196
  msgid "Total Form width(Enter in pixels). Default: 350px"
197
  msgstr ""
198
 
199
- #: er-custom-login.php:507
200
  msgid "Login Form Border Radius:"
201
  msgstr ""
202
 
203
- #: er-custom-login.php:511
204
  msgid ""
205
  "Border Radius of Login Form. This is the option to make the corners rounded."
206
  "(Enter in pixels)"
207
  msgstr ""
208
 
209
- #: er-custom-login.php:515
210
  msgid "Login Border Style"
211
  msgstr ""
212
 
213
- #: er-custom-login.php:560
214
  msgid "Select a Border Style option from dropdown."
215
  msgstr ""
216
 
217
- #: er-custom-login.php:564
218
  msgid "Login Border Thickness:"
219
  msgstr ""
220
 
221
- #: er-custom-login.php:568
222
  msgid "Thickness of Border (Enter value in pixels)"
223
  msgstr ""
224
 
225
- #: er-custom-login.php:572
226
  msgid "Login Border Color:"
227
  msgstr ""
228
 
229
- #: er-custom-login.php:581
230
  msgid "Login Form Background Color:"
231
  msgstr ""
232
 
233
- #: er-custom-login.php:590
234
  msgid "Login Form Background Image:"
235
  msgstr ""
236
 
237
- #: er-custom-login.php:593
238
  msgid ""
239
  "Add your own pattern/image url to the form background. Leave blank if you "
240
  "don't need any images."
241
  msgstr ""
242
 
243
- #: er-custom-login.php:597
244
  msgid "Login Form Background Repeat"
245
  msgstr ""
246
 
247
- #: er-custom-login.php:644
248
  msgid "Vertical Position: "
249
  msgstr ""
250
 
251
- #: er-custom-login.php:652
252
  msgid "Login Form Label Text Color"
253
  msgstr ""
254
 
255
- #: er-custom-login.php:657
256
  msgid ""
257
  "Click the box to select a color. This will change the color of label "
258
  "Username/Password"
259
  msgstr ""
260
 
261
- #: er-custom-login.php:661
262
  msgid "Login Form Label Text Size:"
263
  msgstr ""
264
 
265
- #: er-custom-login.php:664
266
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
267
  msgstr ""
268
 
269
- #: er-custom-login.php:668
270
  msgid "Login Form Input Text Color"
271
  msgstr ""
272
 
273
- #: er-custom-login.php:673
274
  msgid ""
275
  "Click the box to select a color. This will change the color of text inside "
276
  "text box."
277
  msgstr ""
278
 
279
- #: er-custom-login.php:677
280
  msgid "Login Form Input Text Size:"
281
  msgstr ""
282
 
283
- #: er-custom-login.php:680
284
  msgid "Font Size of text inside text box(Enter value in pixels)"
285
  msgstr ""
286
 
287
- #: er-custom-login.php:684
288
  msgid "Login Form Link Color"
289
  msgstr ""
290
 
291
- #: er-custom-login.php:694
292
  msgid "Enable link shadow?"
293
  msgstr ""
294
 
295
- #: er-custom-login.php:702 er-custom-login.php:731 er-custom-login.php:782
296
  msgid "Yes"
297
  msgstr ""
298
 
299
- #: er-custom-login.php:706 er-custom-login.php:735 er-custom-login.php:786
300
  msgid "No"
301
  msgstr ""
302
 
303
- #: er-custom-login.php:708 er-custom-login.php:737
304
  msgid "(Check an option)"
305
  msgstr ""
306
 
307
- #: er-custom-login.php:712
308
  msgid "Login Form Link Shadow Color"
309
  msgstr ""
310
 
311
- #: er-custom-login.php:723
312
  msgid "Enable form shadow?"
313
  msgstr ""
314
 
315
- #: er-custom-login.php:741
316
  msgid "Login Form Shadow Color"
317
  msgstr ""
318
 
319
- #: er-custom-login.php:753
320
  msgid "Login Button Color"
321
  msgstr ""
322
 
323
- #: er-custom-login.php:769
324
  msgid "Plugin Un-install Settings"
325
  msgstr ""
326
 
327
- #: er-custom-login.php:774
328
  msgid "Delete custom settings upon plugin deactivation?"
329
  msgstr ""
330
 
331
- #: er-custom-login.php:788
332
  msgid ""
333
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
334
  "plugin deactivation)"
335
  msgstr ""
336
 
337
- #: er-custom-login.php:800
338
  msgid "Save Changes"
339
  msgstr ""
340
 
341
- #: er-custom-login.php:807
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
342
  msgid "Quick Links"
343
  msgstr ""
344
 
345
- #: er-custom-login.php:809
346
  msgid "Open Your WP Login Page in a New Tab"
347
  msgstr ""
348
 
349
- #: er-custom-login.php:810
350
  msgid "Plugin Documentation"
351
  msgstr ""
352
 
353
- #: er-custom-login.php:811
354
  msgid "Plugin Support Page"
355
  msgstr ""
356
 
357
- #: er-custom-login.php:812
358
  msgid "Feature Request/Suggestions?"
359
  msgstr ""
360
 
361
- #: er-custom-login.php:813
362
  msgid "Got some Love? Give us a 5 star rating!"
363
  msgstr ""
364
 
365
- #: er-custom-login.php:817
366
  msgid "Hire Me"
367
  msgstr ""
368
 
369
- #: er-custom-login.php:818
370
  msgid ""
371
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
372
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
@@ -374,16 +418,22 @@ msgid ""
374
  "www.libin.in\" target=\"_blank\">www.libin.in</a>"
375
  msgstr ""
376
 
377
- #: er-custom-login.php:820
378
  msgid "Translation Credits"
379
  msgstr ""
380
 
381
- #: er-custom-login.php:822
382
  msgid ""
383
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
384
  "\">Adriana De La Cuadra</a>"
385
  msgstr ""
386
 
387
- #: er-custom-login.php:824
 
 
 
 
 
 
388
  msgid "Do you wants to translate this plugin to your language? Email me!"
389
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
+ "POT-Creation-Date: 2014-07-10 12:22+0530\n"
5
+ "PO-Revision-Date: 2014-07-10 12:22+0530\n"
6
  "Last-Translator: Libin <libin@libin.in>\n"
7
  "Language-Team: \n"
8
  "Language: en\n"
20
  msgid "Settings"
21
  msgstr ""
22
 
23
+ #: er-custom-login.php:215
24
+ msgid "Please upload a valid .json file"
25
+ msgstr ""
26
+
27
+ #: er-custom-login.php:221
28
+ msgid "Please upload a file to import"
29
+ msgstr ""
30
+
31
+ #: er-custom-login.php:228
32
+ msgid "New settings imported successfully!"
33
+ msgstr ""
34
+
35
+ #: er-custom-login.php:313
36
  msgid "Custom Login and Dashboard"
37
  msgstr ""
38
 
39
+ #: er-custom-login.php:334
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr ""
42
 
43
+ #: er-custom-login.php:335
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:335
50
  msgid "Click on the header of each block to open it."
51
  msgstr ""
52
 
53
+ #: er-custom-login.php:342
54
+ msgid "Settings saved."
55
+ msgstr ""
56
+
57
+ #: er-custom-login.php:349
58
  msgid "Dashboard Settings"
59
  msgstr ""
60
 
61
+ #: er-custom-login.php:350
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:355
68
  msgid "Enter the text for dashboard left side footer:"
69
  msgstr ""
70
 
71
+ #: er-custom-login.php:360
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:364
78
  msgid "Enter the text for dashboard right side footer:"
79
  msgstr ""
80
 
81
+ #: er-custom-login.php:368
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:377
88
  msgid "Login Screen Background"
89
  msgstr ""
90
 
91
+ #: er-custom-login.php:378
92
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
93
  msgstr ""
94
 
95
+ #: er-custom-login.php:383
96
  msgid "Login Screen Background Color:"
97
  msgstr ""
98
 
99
+ #: er-custom-login.php:388 er-custom-login.php:598 er-custom-login.php:607
100
+ #: er-custom-login.php:709 er-custom-login.php:737 er-custom-login.php:766
101
+ #: er-custom-login.php:778
102
  msgid "Click the box to select a color."
103
  msgstr ""
104
 
105
+ #: er-custom-login.php:393
106
  msgid "Login Screen Background Image:"
107
  msgstr ""
108
 
109
+ #: er-custom-login.php:397
110
  msgid ""
111
  "Add your own pattern/image url for the screen background. Leave blank if you "
112
  "don't need any images."
113
  msgstr ""
114
 
115
+ #: er-custom-login.php:401
116
  msgid "Login Screen Background Repeat"
117
  msgstr ""
118
 
119
+ #: er-custom-login.php:439 er-custom-login.php:656
120
  msgid "Select an image repeat option from dropdown."
121
  msgstr ""
122
 
123
+ #: er-custom-login.php:443 er-custom-login.php:661
124
  msgid "Background Position:"
125
  msgstr ""
126
 
127
+ #: er-custom-login.php:444 er-custom-login.php:662
128
  msgid "Horizontal Position: "
129
  msgstr ""
130
 
131
+ #: er-custom-login.php:449 er-custom-login.php:667
132
  msgid ""
133
  "The background-position property sets the starting position of a background "
134
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
137
  "cssref/pr_background-position.asp\" target=\"_blank\">More Info</a>"
138
  msgstr ""
139
 
140
+ #: er-custom-login.php:454
141
  msgid "Background Size:"
142
  msgstr ""
143
 
144
+ #: er-custom-login.php:458
145
  msgid ""
146
  "The background-size property specifies the size of a background image. If "
147
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
150
  "asp\" target=\"_blank\">More Info</a>"
151
  msgstr ""
152
 
153
+ #: er-custom-login.php:469
154
  msgid "Login Screen Logo"
155
  msgstr ""
156
 
157
+ #: er-custom-login.php:470
158
  msgid "(Change the default WordPress logo and powered by text)"
159
  msgstr ""
160
 
161
+ #: er-custom-login.php:475
162
  msgid "Logo Url:"
163
  msgstr ""
164
 
165
+ #: er-custom-login.php:477
166
  msgid "Default Logo Size 274px × 63px"
167
  msgstr ""
168
 
169
+ #: er-custom-login.php:479
170
  msgid ""
171
  "(URL path to image to replace default WordPress Logo. (You can upload your "
172
  "image with the WordPress media uploader)"
173
  msgstr ""
174
 
175
+ #: er-custom-login.php:484
176
  msgid "Logo Width:"
177
  msgstr ""
178
 
179
+ #: er-custom-login.php:488
180
  msgid "Your Logo width(Enter in pixels). Default: 274px"
181
  msgstr ""
182
 
183
+ #: er-custom-login.php:492
184
  msgid "Logo Height:"
185
  msgstr ""
186
 
187
+ #: er-custom-login.php:496
188
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
189
  msgstr ""
190
 
191
+ #: er-custom-login.php:501
192
  msgid "Powered by Text:"
193
  msgstr ""
194
 
195
+ #: er-custom-login.php:505
196
  msgid "Show when mouse hover over custom Login logo"
197
  msgstr ""
198
 
199
+ #: er-custom-login.php:515
200
  msgid "Login Form Settings"
201
  msgstr ""
202
 
203
+ #: er-custom-login.php:516
204
  msgid "(The following settings will change the Login Form style)"
205
  msgstr ""
206
 
207
+ #: er-custom-login.php:521
208
  msgid "Login form width:"
209
  msgstr ""
210
 
211
+ #: er-custom-login.php:525
212
  msgid "Total Form width(Enter in pixels). Default: 350px"
213
  msgstr ""
214
 
215
+ #: er-custom-login.php:529
216
  msgid "Login Form Border Radius:"
217
  msgstr ""
218
 
219
+ #: er-custom-login.php:533
220
  msgid ""
221
  "Border Radius of Login Form. This is the option to make the corners rounded."
222
  "(Enter in pixels)"
223
  msgstr ""
224
 
225
+ #: er-custom-login.php:537
226
  msgid "Login Border Style"
227
  msgstr ""
228
 
229
+ #: er-custom-login.php:581
230
  msgid "Select a Border Style option from dropdown."
231
  msgstr ""
232
 
233
+ #: er-custom-login.php:585
234
  msgid "Login Border Thickness:"
235
  msgstr ""
236
 
237
+ #: er-custom-login.php:589
238
  msgid "Thickness of Border (Enter value in pixels)"
239
  msgstr ""
240
 
241
+ #: er-custom-login.php:593
242
  msgid "Login Border Color:"
243
  msgstr ""
244
 
245
+ #: er-custom-login.php:602
246
  msgid "Login Form Background Color:"
247
  msgstr ""
248
 
249
+ #: er-custom-login.php:611
250
  msgid "Login Form Background Image:"
251
  msgstr ""
252
 
253
+ #: er-custom-login.php:614
254
  msgid ""
255
  "Add your own pattern/image url to the form background. Leave blank if you "
256
  "don't need any images."
257
  msgstr ""
258
 
259
+ #: er-custom-login.php:618
260
  msgid "Login Form Background Repeat"
261
  msgstr ""
262
 
263
+ #: er-custom-login.php:664
264
  msgid "Vertical Position: "
265
  msgstr ""
266
 
267
+ #: er-custom-login.php:672
268
  msgid "Login Form Label Text Color"
269
  msgstr ""
270
 
271
+ #: er-custom-login.php:677
272
  msgid ""
273
  "Click the box to select a color. This will change the color of label "
274
  "Username/Password"
275
  msgstr ""
276
 
277
+ #: er-custom-login.php:681
278
  msgid "Login Form Label Text Size:"
279
  msgstr ""
280
 
281
+ #: er-custom-login.php:684
282
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
283
  msgstr ""
284
 
285
+ #: er-custom-login.php:688
286
  msgid "Login Form Input Text Color"
287
  msgstr ""
288
 
289
+ #: er-custom-login.php:693
290
  msgid ""
291
  "Click the box to select a color. This will change the color of text inside "
292
  "text box."
293
  msgstr ""
294
 
295
+ #: er-custom-login.php:697
296
  msgid "Login Form Input Text Size:"
297
  msgstr ""
298
 
299
+ #: er-custom-login.php:700
300
  msgid "Font Size of text inside text box(Enter value in pixels)"
301
  msgstr ""
302
 
303
+ #: er-custom-login.php:704
304
  msgid "Login Form Link Color"
305
  msgstr ""
306
 
307
+ #: er-custom-login.php:714
308
  msgid "Enable link shadow?"
309
  msgstr ""
310
 
311
+ #: er-custom-login.php:722 er-custom-login.php:751 er-custom-login.php:802
312
  msgid "Yes"
313
  msgstr ""
314
 
315
+ #: er-custom-login.php:726 er-custom-login.php:755 er-custom-login.php:806
316
  msgid "No"
317
  msgstr ""
318
 
319
+ #: er-custom-login.php:728 er-custom-login.php:757
320
  msgid "(Check an option)"
321
  msgstr ""
322
 
323
+ #: er-custom-login.php:732
324
  msgid "Login Form Link Shadow Color"
325
  msgstr ""
326
 
327
+ #: er-custom-login.php:743
328
  msgid "Enable form shadow?"
329
  msgstr ""
330
 
331
+ #: er-custom-login.php:761
332
  msgid "Login Form Shadow Color"
333
  msgstr ""
334
 
335
+ #: er-custom-login.php:773
336
  msgid "Login Button Color"
337
  msgstr ""
338
 
339
+ #: er-custom-login.php:789
340
  msgid "Plugin Un-install Settings"
341
  msgstr ""
342
 
343
+ #: er-custom-login.php:794
344
  msgid "Delete custom settings upon plugin deactivation?"
345
  msgstr ""
346
 
347
+ #: er-custom-login.php:808
348
  msgid ""
349
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
350
  "plugin deactivation)"
351
  msgstr ""
352
 
353
+ #: er-custom-login.php:816
354
  msgid "Save Changes"
355
  msgstr ""
356
 
357
+ #: er-custom-login.php:823
358
+ msgid "Export Settings"
359
+ msgstr ""
360
+
361
+ #: er-custom-login.php:825
362
+ msgid ""
363
+ "Export the plugin settings for this site as a .json file. This allows you to "
364
+ "easily import the configuration into another site."
365
+ msgstr ""
366
+
367
+ #: er-custom-login.php:830
368
+ msgid "Export"
369
+ msgstr ""
370
+
371
+ #: er-custom-login.php:838
372
+ msgid "Import Settings"
373
+ msgstr ""
374
+
375
+ #: er-custom-login.php:840
376
+ msgid ""
377
+ "Import the plugin settings from a .json file. This file can be obtained by "
378
+ "exporting the settings on another site using the form above."
379
+ msgstr ""
380
+
381
+ #: er-custom-login.php:848
382
+ msgid "Import"
383
+ msgstr ""
384
+
385
+ #: er-custom-login.php:856
386
  msgid "Quick Links"
387
  msgstr ""
388
 
389
+ #: er-custom-login.php:858
390
  msgid "Open Your WP Login Page in a New Tab"
391
  msgstr ""
392
 
393
+ #: er-custom-login.php:859
394
  msgid "Plugin Documentation"
395
  msgstr ""
396
 
397
+ #: er-custom-login.php:860
398
  msgid "Plugin Support Page"
399
  msgstr ""
400
 
401
+ #: er-custom-login.php:861
402
  msgid "Feature Request/Suggestions?"
403
  msgstr ""
404
 
405
+ #: er-custom-login.php:862
406
  msgid "Got some Love? Give us a 5 star rating!"
407
  msgstr ""
408
 
409
+ #: er-custom-login.php:866
410
  msgid "Hire Me"
411
  msgstr ""
412
 
413
+ #: er-custom-login.php:867
414
  msgid ""
415
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
416
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
418
  "www.libin.in\" target=\"_blank\">www.libin.in</a>"
419
  msgstr ""
420
 
421
+ #: er-custom-login.php:869
422
  msgid "Translation Credits"
423
  msgstr ""
424
 
425
+ #: er-custom-login.php:871
426
  msgid ""
427
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
428
  "\">Adriana De La Cuadra</a>"
429
  msgstr ""
430
 
431
+ #: er-custom-login.php:872
432
+ msgid ""
433
+ "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
434
+ "\" target=\"_blank\">Guillaume Vaslin</a>"
435
+ msgstr ""
436
+
437
+ #: er-custom-login.php:874
438
  msgid "Do you wants to translate this plugin to your language? Email me!"
439
  msgstr ""
languages/erident-custom-login-and-dashboard-es_ES.mo CHANGED
Binary file
languages/erident-custom-login-and-dashboard-es_ES.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
- "POT-Creation-Date: 2014-05-27 12:42+0530\n"
5
- "PO-Revision-Date: 2014-05-27 12:42+0530\n"
6
  "Last-Translator: Libin <libin@libin.in>\n"
7
  "Language-Team: \n"
8
  "Language: en\n"
@@ -20,15 +20,27 @@ msgstr ""
20
  msgid "Settings"
21
  msgstr "Configuración"
22
 
23
- #: er-custom-login.php:298
 
 
 
 
 
 
 
 
 
 
 
 
24
  msgid "Custom Login and Dashboard"
25
  msgstr "Custom Login y Dashboard"
26
 
27
- #: er-custom-login.php:319
28
  msgid "Erident Custom Login and Dashboard Settings"
29
  msgstr "ERIDENT, Ingreso Customizado - Panel de Control"
30
 
31
- #: er-custom-login.php:320
32
  msgid ""
33
  "Plugin Loads default values for all below entries. Please change the values "
34
  "to yours."
@@ -36,15 +48,19 @@ msgstr ""
36
  "Los siguientes son las configuraciones predeterminadas de este plugin. "
37
  "Puedes ajustarlas a tus necesidades."
38
 
39
- #: er-custom-login.php:320
40
  msgid "Click on the header of each block to open it."
41
  msgstr "Para acceder a más opciones presiona los encabezados de cada sección."
42
 
43
- #: er-custom-login.php:326
 
 
 
 
44
  msgid "Dashboard Settings"
45
  msgstr "Configuración del panel"
46
 
47
- #: er-custom-login.php:327
48
  msgid ""
49
  "(These settings will be reflected when a user/admin logins to the WordPress "
50
  "Dashboard)"
@@ -52,11 +68,11 @@ msgstr ""
52
  "(Estos ajustes se reflejarán cuando un usuario / administrador inicia su "
53
  "sesión en el panel de control de WordPress)"
54
 
55
- #: er-custom-login.php:332
56
  msgid "Enter the text for dashboard left side footer:"
57
  msgstr "Texto para el panel del pie de página izquierdo:"
58
 
59
- #: er-custom-login.php:337
60
  msgid ""
61
  "This will replace the default \"Thank you for creating with WordPress\" on "
62
  "the bottom left side of dashboard"
@@ -64,11 +80,11 @@ msgstr ""
64
  "Esto reemplazará el valor por defecto \"Gracias por crear con WordPress \" "
65
  "en la parte inferior izquierda del cuadro de mandos"
66
 
67
- #: er-custom-login.php:341
68
  msgid "Enter the text for dashboard right side footer:"
69
  msgstr "Texto para el panel del pie de página derecho:"
70
 
71
- #: er-custom-login.php:345
72
  msgid ""
73
  "This will replace the default \"WordPress Version\" on the bottom right side "
74
  "of dashboard"
@@ -76,29 +92,29 @@ msgstr ""
76
  "Esto reemplazará el valor por defecto \"WordPress Version \" en la parte "
77
  "inferior derecha del cuadro de mandos"
78
 
79
- #: er-custom-login.php:354
80
  msgid "Login Screen Background"
81
  msgstr "Fondo de la Pantalla de Ingreso"
82
 
83
- #: er-custom-login.php:355
84
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
85
  msgstr "(Estos ajustes se reflejarán en la página \"wp-login.php\")"
86
 
87
- #: er-custom-login.php:360
88
  msgid "Login Screen Background Color:"
89
  msgstr "Color del Fondo de la Pantalla de Ingreso:"
90
 
91
- #: er-custom-login.php:365 er-custom-login.php:577 er-custom-login.php:586
92
- #: er-custom-login.php:689 er-custom-login.php:717 er-custom-login.php:746
93
- #: er-custom-login.php:758
94
  msgid "Click the box to select a color."
95
  msgstr "Haz click en el cuadro para seleccionar un color."
96
 
97
- #: er-custom-login.php:370
98
  msgid "Login Screen Background Image:"
99
  msgstr "Imagen de Fondo de la Pantalla de Ingreso: "
100
 
101
- #: er-custom-login.php:374
102
  msgid ""
103
  "Add your own pattern/image url for the screen background. Leave blank if you "
104
  "don't need any images."
@@ -106,23 +122,23 @@ msgstr ""
106
  "Añade el url de tu patrón/imagen para el fondo de la pantalla. Deja en "
107
  "blanco si no necesitas ninguna imagen."
108
 
109
- #: er-custom-login.php:378
110
  msgid "Login Screen Background Repeat"
111
  msgstr "Repetición de la Image de Fondo de la Pantalla de Ingreso:"
112
 
113
- #: er-custom-login.php:417 er-custom-login.php:636
114
  msgid "Select an image repeat option from dropdown."
115
  msgstr "Selecciona una opción de repetición."
116
 
117
- #: er-custom-login.php:421 er-custom-login.php:641
118
  msgid "Background Position:"
119
  msgstr "Posición de la Image de Fondo de la Pantalla de Ingreso: "
120
 
121
- #: er-custom-login.php:422 er-custom-login.php:642
122
  msgid "Horizontal Position: "
123
  msgstr "Posición horizontal:"
124
 
125
- #: er-custom-login.php:427 er-custom-login.php:647
126
  msgid ""
127
  "The background-position property sets the starting position of a background "
128
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
@@ -137,11 +153,11 @@ msgstr ""
137
  "\"http://www.w3schools.com/cssref/pr_background-position.asp\" target="
138
  "\"_blank\"> Más información </ a>"
139
 
140
- #: er-custom-login.php:432
141
  msgid "Background Size:"
142
  msgstr "Tamaño e la Image de Fondo de la Pantalla de Ingreso:"
143
 
144
- #: er-custom-login.php:436
145
  msgid ""
146
  "The background-size property specifies the size of a background image. If "
147
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
@@ -155,23 +171,23 @@ msgstr ""
155
  "contienen. <a href=\"http://www.w3schools.com/cssref/css3_pr_background-size."
156
  "asp\" target=\"_blank\"> Más información </ a>"
157
 
158
- #: er-custom-login.php:447
159
  msgid "Login Screen Logo"
160
  msgstr "Logo de la Pantalla de Ingreso"
161
 
162
- #: er-custom-login.php:448
163
  msgid "(Change the default WordPress logo and powered by text)"
164
  msgstr "(Cambia el logo de Wordpress y el texto \"powered by Wordpress\")"
165
 
166
- #: er-custom-login.php:453
167
  msgid "Logo Url:"
168
  msgstr "URL del Logo:"
169
 
170
- #: er-custom-login.php:455
171
  msgid "Default Logo Size 274px × 63px"
172
  msgstr "Tamaño predeterminado 274 x 63 px"
173
 
174
- #: er-custom-login.php:457
175
  msgid ""
176
  "(URL path to image to replace default WordPress Logo. (You can upload your "
177
  "image with the WordPress media uploader)"
@@ -179,105 +195,105 @@ msgstr ""
179
  "Ingresa el URL para reemplazar el logo de Wordpress. (Tu puedes subir tu "
180
  "image usando el cargador de medios de Wordpress)"
181
 
182
- #: er-custom-login.php:462
183
  msgid "Logo Width:"
184
  msgstr "Ancho del Logo:"
185
 
186
- #: er-custom-login.php:466
187
  msgid "Your Logo width(Enter in pixels). Default: 274px"
188
  msgstr "Anchura del logo. El valor predeterminado es 274px"
189
 
190
- #: er-custom-login.php:470
191
  msgid "Logo Height:"
192
  msgstr "Alto del Logo:"
193
 
194
- #: er-custom-login.php:474
195
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
196
  msgstr "Altura del logo. El valor predeterminado es 63px"
197
 
198
- #: er-custom-login.php:479
199
  msgid "Powered by Text:"
200
  msgstr "Desarrollado por:"
201
 
202
- #: er-custom-login.php:483
203
  msgid "Show when mouse hover over custom Login logo"
204
  msgstr "Este valor se muestra cuando se pasa el mouse sobre el logo"
205
 
206
- #: er-custom-login.php:493
207
  msgid "Login Form Settings"
208
  msgstr "Formato de la Pantalla de Ingreso"
209
 
210
- #: er-custom-login.php:494
211
  msgid "(The following settings will change the Login Form style)"
212
  msgstr ""
213
  "(Estos ajustes cambiarán el estilo del formato de la pantalla de ingreso)"
214
 
215
- #: er-custom-login.php:499
216
  msgid "Login form width:"
217
  msgstr "Ancho del Formato:"
218
 
219
- #: er-custom-login.php:503
220
  msgid "Total Form width(Enter in pixels). Default: 350px"
221
  msgstr "Ancho total del formato en píxeles. Tamaño predeterminado: 350px"
222
 
223
- #: er-custom-login.php:507
224
  msgid "Login Form Border Radius:"
225
  msgstr "Radio del Borde del Formato:"
226
 
227
- #: er-custom-login.php:511
228
  msgid ""
229
  "Border Radius of Login Form. This is the option to make the corners rounded."
230
  "(Enter in pixels)"
231
  msgstr "Usa esta opción para hacer las esquinas del formato redondas."
232
 
233
- #: er-custom-login.php:515
234
  msgid "Login Border Style"
235
  msgstr "Estilo del Borde del Formato:"
236
 
237
- #: er-custom-login.php:560
238
  msgid "Select a Border Style option from dropdown."
239
  msgstr "Selecciona una opción del menú."
240
 
241
- #: er-custom-login.php:564
242
  msgid "Login Border Thickness:"
243
  msgstr "Espesor del Borde del Formato:"
244
 
245
- #: er-custom-login.php:568
246
  msgid "Thickness of Border (Enter value in pixels)"
247
  msgstr "Entra el valor en píxeles."
248
 
249
- #: er-custom-login.php:572
250
  msgid "Login Border Color:"
251
  msgstr "Color del Borde del Formato:"
252
 
253
- #: er-custom-login.php:581
254
  msgid "Login Form Background Color:"
255
  msgstr "Color de Fondo del Formato:"
256
 
257
- #: er-custom-login.php:590
258
  msgid "Login Form Background Image:"
259
  msgstr "Imagen de Fondo del Formato:"
260
 
261
- #: er-custom-login.php:593
262
  msgid ""
263
  "Add your own pattern/image url to the form background. Leave blank if you "
264
  "don't need any images."
265
  msgstr ""
266
  "Agrega tu propio patrón/imagen. Deja en blanco si no necesitas imágenes."
267
 
268
- #: er-custom-login.php:597
269
  msgid "Login Form Background Repeat"
270
  msgstr "Repetición de la Imagen de Fondo del Formato:"
271
 
272
- #: er-custom-login.php:644
273
  msgid "Vertical Position: "
274
  msgstr "Posición Vertical:"
275
 
276
- #: er-custom-login.php:652
277
  msgid "Login Form Label Text Color"
278
  msgstr "Color del Texto de las Etiquetas del Formato:"
279
 
280
- #: er-custom-login.php:657
281
  msgid ""
282
  "Click the box to select a color. This will change the color of label "
283
  "Username/Password"
@@ -285,79 +301,79 @@ msgstr ""
285
  "Haz click en el cuadro para seleccionar un color. Esta opción cambiara el "
286
  "color de las etiquetas \"usuario\" y \"contraseña\""
287
 
288
- #: er-custom-login.php:661
289
  msgid "Login Form Label Text Size:"
290
  msgstr "Tamaño del Texto de las Etiquetas del Formato:"
291
 
292
- #: er-custom-login.php:664
293
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
294
  msgstr "Entra el valor en píxeles."
295
 
296
- #: er-custom-login.php:668
297
  msgid "Login Form Input Text Color"
298
  msgstr "Color del Texto de los Campos del Formato:"
299
 
300
- #: er-custom-login.php:673
301
  msgid ""
302
  "Click the box to select a color. This will change the color of text inside "
303
  "text box."
304
  msgstr "Haz click en el cuadro para seleccionar un color."
305
 
306
- #: er-custom-login.php:677
307
  msgid "Login Form Input Text Size:"
308
  msgstr "Tamaño del Texto de los Campos del Formato:"
309
 
310
- #: er-custom-login.php:680
311
  msgid "Font Size of text inside text box(Enter value in pixels)"
312
  msgstr "Entra el valor en píxeles."
313
 
314
- #: er-custom-login.php:684
315
  msgid "Login Form Link Color"
316
  msgstr "Color de los enlaces:"
317
 
318
- #: er-custom-login.php:694
319
  msgid "Enable link shadow?"
320
  msgstr "Deseas habilitar la sombra en los enlaces?"
321
 
322
- #: er-custom-login.php:702 er-custom-login.php:731 er-custom-login.php:782
323
  msgid "Yes"
324
  msgstr "sí"
325
 
326
- #: er-custom-login.php:706 er-custom-login.php:735 er-custom-login.php:786
327
  msgid "No"
328
  msgstr "no"
329
 
330
- #: er-custom-login.php:708 er-custom-login.php:737
331
  msgid "(Check an option)"
332
  msgstr "(Marca una opción)"
333
 
334
- #: er-custom-login.php:712
335
  msgid "Login Form Link Shadow Color"
336
  msgstr "Color de la Sombra del Formato:"
337
 
338
- #: er-custom-login.php:723
339
  msgid "Enable form shadow?"
340
  msgstr "Activar forma de sombra?"
341
 
342
- #: er-custom-login.php:741
343
  msgid "Login Form Shadow Color"
344
  msgstr "Color de la Sombra del Formato:"
345
 
346
- #: er-custom-login.php:753
347
  msgid "Login Button Color"
348
  msgstr "Color del Botón del Formato:"
349
 
350
- #: er-custom-login.php:769
351
  msgid "Plugin Un-install Settings"
352
  msgstr "Opción para Desinstalar el Plugin"
353
 
354
- #: er-custom-login.php:774
355
  msgid "Delete custom settings upon plugin deactivation?"
356
  msgstr ""
357
  "Deseas borrar las configuraciones que has customizado una vez el plugin sea "
358
  "desactivado?"
359
 
360
- #: er-custom-login.php:788
361
  msgid ""
362
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
363
  "plugin deactivation)"
@@ -365,39 +381,72 @@ msgstr ""
365
  "(Si seleccionas \"sí\" todas los cambios que hayas hecho a la configuración "
366
  "serán borrados de la base de datos una vez el plugin sea desactivado)"
367
 
368
- #: er-custom-login.php:800
369
  msgid "Save Changes"
370
  msgstr "Guardar cambios"
371
 
372
- #: er-custom-login.php:807
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
373
  msgid "Quick Links"
374
  msgstr "Enlaces Rápidos"
375
 
376
- #: er-custom-login.php:809
377
  msgid "Open Your WP Login Page in a New Tab"
378
  msgstr "Abrir una WP Login Página en una nueva pestaña"
379
 
380
- #: er-custom-login.php:810
381
  msgid "Plugin Documentation"
382
  msgstr "Documentación del Plugin"
383
 
384
- #: er-custom-login.php:811
385
  msgid "Plugin Support Page"
386
  msgstr "Página de Soporte Plugin"
387
 
388
- #: er-custom-login.php:812
389
  msgid "Feature Request/Suggestions?"
390
  msgstr "Sugerencias?"
391
 
392
- #: er-custom-login.php:813
393
  msgid "Got some Love? Give us a 5 star rating!"
394
  msgstr "¿Tienes algo de amor? Danos un 5 estrellas!"
395
 
396
- #: er-custom-login.php:817
397
  msgid "Hire Me"
398
  msgstr "Contratamé"
399
 
400
- #: er-custom-login.php:818
401
  msgid ""
402
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
403
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
@@ -410,11 +459,11 @@ msgstr ""
410
  "portafolio en linea: <a href=\"http://www.libin.in\" target=\"_blank\">www."
411
  "libin.in</a>"
412
 
413
- #: er-custom-login.php:820
414
  msgid "Translation Credits"
415
  msgstr "Traducción"
416
 
417
- #: er-custom-login.php:822
418
  msgid ""
419
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
420
  "\">Adriana De La Cuadra</a>"
@@ -422,7 +471,15 @@ msgstr ""
422
  "Traducida al Español por <a href=\"http://www.linkedin.com/in/adrifolio\" "
423
  "target=\"_blank\">Adriana De La Cuadra</a>"
424
 
425
- #: er-custom-login.php:824
 
 
 
 
 
 
 
 
426
  msgid "Do you wants to translate this plugin to your language? Email me!"
427
  msgstr ""
428
  "¿Usted quiere traducir este plugin en tu idioma? Envíeme un correo "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
+ "POT-Creation-Date: 2014-07-10 12:22+0530\n"
5
+ "PO-Revision-Date: 2014-07-10 12:22+0530\n"
6
  "Last-Translator: Libin <libin@libin.in>\n"
7
  "Language-Team: \n"
8
  "Language: en\n"
20
  msgid "Settings"
21
  msgstr "Configuración"
22
 
23
+ #: er-custom-login.php:215
24
+ msgid "Please upload a valid .json file"
25
+ msgstr "Por favor, sube un archivo json. Válida"
26
+
27
+ #: er-custom-login.php:221
28
+ msgid "Please upload a file to import"
29
+ msgstr "Por favor, sube un archivo a la importación"
30
+
31
+ #: er-custom-login.php:228
32
+ msgid "New settings imported successfully!"
33
+ msgstr "Nuevos ajustes importan correctamente!"
34
+
35
+ #: er-custom-login.php:313
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Custom Login y Dashboard"
38
 
39
+ #: er-custom-login.php:334
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "ERIDENT, Ingreso Customizado - Panel de Control"
42
 
43
+ #: er-custom-login.php:335
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:335
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:342
56
+ msgid "Settings saved."
57
+ msgstr "Configuración guardada."
58
+
59
+ #: er-custom-login.php:349
60
  msgid "Dashboard Settings"
61
  msgstr "Configuración del panel"
62
 
63
+ #: er-custom-login.php:350
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:355
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:360
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:364
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:368
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:377
96
  msgid "Login Screen Background"
97
  msgstr "Fondo de la Pantalla de Ingreso"
98
 
99
+ #: er-custom-login.php:378
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:383
104
  msgid "Login Screen Background Color:"
105
  msgstr "Color del Fondo de la Pantalla de Ingreso:"
106
 
107
+ #: er-custom-login.php:388 er-custom-login.php:598 er-custom-login.php:607
108
+ #: er-custom-login.php:709 er-custom-login.php:737 er-custom-login.php:766
109
+ #: er-custom-login.php:778
110
  msgid "Click the box to select a color."
111
  msgstr "Haz click en el cuadro para seleccionar un color."
112
 
113
+ #: er-custom-login.php:393
114
  msgid "Login Screen Background Image:"
115
  msgstr "Imagen de Fondo de la Pantalla de Ingreso: "
116
 
117
+ #: er-custom-login.php:397
118
  msgid ""
119
  "Add your own pattern/image url for the screen background. Leave blank if you "
120
  "don't need any images."
122
  "Añade el url de tu patrón/imagen para el fondo de la pantalla. Deja en "
123
  "blanco si no necesitas ninguna imagen."
124
 
125
+ #: er-custom-login.php:401
126
  msgid "Login Screen Background Repeat"
127
  msgstr "Repetición de la Image de Fondo de la Pantalla de Ingreso:"
128
 
129
+ #: er-custom-login.php:439 er-custom-login.php:656
130
  msgid "Select an image repeat option from dropdown."
131
  msgstr "Selecciona una opción de repetición."
132
 
133
+ #: er-custom-login.php:443 er-custom-login.php:661
134
  msgid "Background Position:"
135
  msgstr "Posición de la Image de Fondo de la Pantalla de Ingreso: "
136
 
137
+ #: er-custom-login.php:444 er-custom-login.php:662
138
  msgid "Horizontal Position: "
139
  msgstr "Posición horizontal:"
140
 
141
+ #: er-custom-login.php:449 er-custom-login.php:667
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
  "\"http://www.w3schools.com/cssref/pr_background-position.asp\" target="
154
  "\"_blank\"> Más información </ a>"
155
 
156
+ #: er-custom-login.php:454
157
  msgid "Background Size:"
158
  msgstr "Tamaño e la Image de Fondo de la Pantalla de Ingreso:"
159
 
160
+ #: er-custom-login.php:458
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
  "contienen. <a href=\"http://www.w3schools.com/cssref/css3_pr_background-size."
172
  "asp\" target=\"_blank\"> Más información </ a>"
173
 
174
+ #: er-custom-login.php:469
175
  msgid "Login Screen Logo"
176
  msgstr "Logo de la Pantalla de Ingreso"
177
 
178
+ #: er-custom-login.php:470
179
  msgid "(Change the default WordPress logo and powered by text)"
180
  msgstr "(Cambia el logo de Wordpress y el texto \"powered by Wordpress\")"
181
 
182
+ #: er-custom-login.php:475
183
  msgid "Logo Url:"
184
  msgstr "URL del Logo:"
185
 
186
+ #: er-custom-login.php:477
187
  msgid "Default Logo Size 274px × 63px"
188
  msgstr "Tamaño predeterminado 274 x 63 px"
189
 
190
+ #: er-custom-login.php:479
191
  msgid ""
192
  "(URL path to image to replace default WordPress Logo. (You can upload your "
193
  "image with the WordPress media uploader)"
195
  "Ingresa el URL para reemplazar el logo de Wordpress. (Tu puedes subir tu "
196
  "image usando el cargador de medios de Wordpress)"
197
 
198
+ #: er-custom-login.php:484
199
  msgid "Logo Width:"
200
  msgstr "Ancho del Logo:"
201
 
202
+ #: er-custom-login.php:488
203
  msgid "Your Logo width(Enter in pixels). Default: 274px"
204
  msgstr "Anchura del logo. El valor predeterminado es 274px"
205
 
206
+ #: er-custom-login.php:492
207
  msgid "Logo Height:"
208
  msgstr "Alto del Logo:"
209
 
210
+ #: er-custom-login.php:496
211
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
212
  msgstr "Altura del logo. El valor predeterminado es 63px"
213
 
214
+ #: er-custom-login.php:501
215
  msgid "Powered by Text:"
216
  msgstr "Desarrollado por:"
217
 
218
+ #: er-custom-login.php:505
219
  msgid "Show when mouse hover over custom Login logo"
220
  msgstr "Este valor se muestra cuando se pasa el mouse sobre el logo"
221
 
222
+ #: er-custom-login.php:515
223
  msgid "Login Form Settings"
224
  msgstr "Formato de la Pantalla de Ingreso"
225
 
226
+ #: er-custom-login.php:516
227
  msgid "(The following settings will change the Login Form style)"
228
  msgstr ""
229
  "(Estos ajustes cambiarán el estilo del formato de la pantalla de ingreso)"
230
 
231
+ #: er-custom-login.php:521
232
  msgid "Login form width:"
233
  msgstr "Ancho del Formato:"
234
 
235
+ #: er-custom-login.php:525
236
  msgid "Total Form width(Enter in pixels). Default: 350px"
237
  msgstr "Ancho total del formato en píxeles. Tamaño predeterminado: 350px"
238
 
239
+ #: er-custom-login.php:529
240
  msgid "Login Form Border Radius:"
241
  msgstr "Radio del Borde del Formato:"
242
 
243
+ #: er-custom-login.php:533
244
  msgid ""
245
  "Border Radius of Login Form. This is the option to make the corners rounded."
246
  "(Enter in pixels)"
247
  msgstr "Usa esta opción para hacer las esquinas del formato redondas."
248
 
249
+ #: er-custom-login.php:537
250
  msgid "Login Border Style"
251
  msgstr "Estilo del Borde del Formato:"
252
 
253
+ #: er-custom-login.php:581
254
  msgid "Select a Border Style option from dropdown."
255
  msgstr "Selecciona una opción del menú."
256
 
257
+ #: er-custom-login.php:585
258
  msgid "Login Border Thickness:"
259
  msgstr "Espesor del Borde del Formato:"
260
 
261
+ #: er-custom-login.php:589
262
  msgid "Thickness of Border (Enter value in pixels)"
263
  msgstr "Entra el valor en píxeles."
264
 
265
+ #: er-custom-login.php:593
266
  msgid "Login Border Color:"
267
  msgstr "Color del Borde del Formato:"
268
 
269
+ #: er-custom-login.php:602
270
  msgid "Login Form Background Color:"
271
  msgstr "Color de Fondo del Formato:"
272
 
273
+ #: er-custom-login.php:611
274
  msgid "Login Form Background Image:"
275
  msgstr "Imagen de Fondo del Formato:"
276
 
277
+ #: er-custom-login.php:614
278
  msgid ""
279
  "Add your own pattern/image url to the form background. Leave blank if you "
280
  "don't need any images."
281
  msgstr ""
282
  "Agrega tu propio patrón/imagen. Deja en blanco si no necesitas imágenes."
283
 
284
+ #: er-custom-login.php:618
285
  msgid "Login Form Background Repeat"
286
  msgstr "Repetición de la Imagen de Fondo del Formato:"
287
 
288
+ #: er-custom-login.php:664
289
  msgid "Vertical Position: "
290
  msgstr "Posición Vertical:"
291
 
292
+ #: er-custom-login.php:672
293
  msgid "Login Form Label Text Color"
294
  msgstr "Color del Texto de las Etiquetas del Formato:"
295
 
296
+ #: er-custom-login.php:677
297
  msgid ""
298
  "Click the box to select a color. This will change the color of label "
299
  "Username/Password"
301
  "Haz click en el cuadro para seleccionar un color. Esta opción cambiara el "
302
  "color de las etiquetas \"usuario\" y \"contraseña\""
303
 
304
+ #: er-custom-login.php:681
305
  msgid "Login Form Label Text Size:"
306
  msgstr "Tamaño del Texto de las Etiquetas del Formato:"
307
 
308
+ #: er-custom-login.php:684
309
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
310
  msgstr "Entra el valor en píxeles."
311
 
312
+ #: er-custom-login.php:688
313
  msgid "Login Form Input Text Color"
314
  msgstr "Color del Texto de los Campos del Formato:"
315
 
316
+ #: er-custom-login.php:693
317
  msgid ""
318
  "Click the box to select a color. This will change the color of text inside "
319
  "text box."
320
  msgstr "Haz click en el cuadro para seleccionar un color."
321
 
322
+ #: er-custom-login.php:697
323
  msgid "Login Form Input Text Size:"
324
  msgstr "Tamaño del Texto de los Campos del Formato:"
325
 
326
+ #: er-custom-login.php:700
327
  msgid "Font Size of text inside text box(Enter value in pixels)"
328
  msgstr "Entra el valor en píxeles."
329
 
330
+ #: er-custom-login.php:704
331
  msgid "Login Form Link Color"
332
  msgstr "Color de los enlaces:"
333
 
334
+ #: er-custom-login.php:714
335
  msgid "Enable link shadow?"
336
  msgstr "Deseas habilitar la sombra en los enlaces?"
337
 
338
+ #: er-custom-login.php:722 er-custom-login.php:751 er-custom-login.php:802
339
  msgid "Yes"
340
  msgstr "sí"
341
 
342
+ #: er-custom-login.php:726 er-custom-login.php:755 er-custom-login.php:806
343
  msgid "No"
344
  msgstr "no"
345
 
346
+ #: er-custom-login.php:728 er-custom-login.php:757
347
  msgid "(Check an option)"
348
  msgstr "(Marca una opción)"
349
 
350
+ #: er-custom-login.php:732
351
  msgid "Login Form Link Shadow Color"
352
  msgstr "Color de la Sombra del Formato:"
353
 
354
+ #: er-custom-login.php:743
355
  msgid "Enable form shadow?"
356
  msgstr "Activar forma de sombra?"
357
 
358
+ #: er-custom-login.php:761
359
  msgid "Login Form Shadow Color"
360
  msgstr "Color de la Sombra del Formato:"
361
 
362
+ #: er-custom-login.php:773
363
  msgid "Login Button Color"
364
  msgstr "Color del Botón del Formato:"
365
 
366
+ #: er-custom-login.php:789
367
  msgid "Plugin Un-install Settings"
368
  msgstr "Opción para Desinstalar el Plugin"
369
 
370
+ #: er-custom-login.php:794
371
  msgid "Delete custom settings upon plugin deactivation?"
372
  msgstr ""
373
  "Deseas borrar las configuraciones que has customizado una vez el plugin sea "
374
  "desactivado?"
375
 
376
+ #: er-custom-login.php:808
377
  msgid ""
378
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
379
  "plugin deactivation)"
381
  "(Si seleccionas \"sí\" todas los cambios que hayas hecho a la configuración "
382
  "serán borrados de la base de datos una vez el plugin sea desactivado)"
383
 
384
+ #: er-custom-login.php:816
385
  msgid "Save Changes"
386
  msgstr "Guardar cambios"
387
 
388
+ #: er-custom-login.php:823
389
+ msgid "Export Settings"
390
+ msgstr "Configuración de exportación"
391
+
392
+ #: er-custom-login.php:825
393
+ msgid ""
394
+ "Export the plugin settings for this site as a .json file. This allows you to "
395
+ "easily import the configuration into another site."
396
+ msgstr ""
397
+ "Exportación de la configuración del plugin de este sitio como un archivo "
398
+ "json.. Esto le permite importar fácilmente la configuración en otro sitio."
399
+
400
+ #: er-custom-login.php:830
401
+ msgid "Export"
402
+ msgstr "exportación"
403
+
404
+ #: er-custom-login.php:838
405
+ msgid "Import Settings"
406
+ msgstr "Configuración de importación"
407
+
408
+ #: er-custom-login.php:840
409
+ msgid ""
410
+ "Import the plugin settings from a .json file. This file can be obtained by "
411
+ "exporting the settings on another site using the form above."
412
+ msgstr ""
413
+ "Importar la configuración del plugin desde un archivo json.. Este archivo se "
414
+ "puede obtener mediante la exportación de la configuración de otro sitio "
415
+ "utilizando el formulario de arriba."
416
+
417
+ #: er-custom-login.php:848
418
+ msgid "Import"
419
+ msgstr "importación"
420
+
421
+ #: er-custom-login.php:856
422
  msgid "Quick Links"
423
  msgstr "Enlaces Rápidos"
424
 
425
+ #: er-custom-login.php:858
426
  msgid "Open Your WP Login Page in a New Tab"
427
  msgstr "Abrir una WP Login Página en una nueva pestaña"
428
 
429
+ #: er-custom-login.php:859
430
  msgid "Plugin Documentation"
431
  msgstr "Documentación del Plugin"
432
 
433
+ #: er-custom-login.php:860
434
  msgid "Plugin Support Page"
435
  msgstr "Página de Soporte Plugin"
436
 
437
+ #: er-custom-login.php:861
438
  msgid "Feature Request/Suggestions?"
439
  msgstr "Sugerencias?"
440
 
441
+ #: er-custom-login.php:862
442
  msgid "Got some Love? Give us a 5 star rating!"
443
  msgstr "¿Tienes algo de amor? Danos un 5 estrellas!"
444
 
445
+ #: er-custom-login.php:866
446
  msgid "Hire Me"
447
  msgstr "Contratamé"
448
 
449
+ #: er-custom-login.php:867
450
  msgid ""
451
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
452
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
459
  "portafolio en linea: <a href=\"http://www.libin.in\" target=\"_blank\">www."
460
  "libin.in</a>"
461
 
462
+ #: er-custom-login.php:869
463
  msgid "Translation Credits"
464
  msgstr "Traducción"
465
 
466
+ #: er-custom-login.php:871
467
  msgid ""
468
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
469
  "\">Adriana De La Cuadra</a>"
471
  "Traducida al Español por <a href=\"http://www.linkedin.com/in/adrifolio\" "
472
  "target=\"_blank\">Adriana De La Cuadra</a>"
473
 
474
+ #: er-custom-login.php:872
475
+ msgid ""
476
+ "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
477
+ "\" target=\"_blank\">Guillaume Vaslin</a>"
478
+ msgstr ""
479
+ "Francés por <a href=\"https://www.linkedin.com/pub/vaslin-"
480
+ "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
481
+
482
+ #: er-custom-login.php:874
483
  msgid "Do you wants to translate this plugin to your language? Email me!"
484
  msgstr ""
485
  "¿Usted quiere traducir este plugin en tu idioma? Envíeme un correo "
languages/erident-custom-login-and-dashboard-fr_FR.mo ADDED
Binary file
languages/erident-custom-login-and-dashboard-fr_FR.po ADDED
@@ -0,0 +1,496 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Erident\n"
4
+ "POT-Creation-Date: 2014-07-10 12:22+0530\n"
5
+ "PO-Revision-Date: 2014-07-10 12:22+0530\n"
6
+ "Last-Translator: Libin <libin@libin.in>\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.4\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-KeywordsList: __;_e\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: er-custom-login.php:44
20
+ msgid "Settings"
21
+ msgstr "Réglages"
22
+
23
+ #: er-custom-login.php:215
24
+ msgid "Please upload a valid .json file"
25
+ msgstr "Veuillez charger un fichier .json valide"
26
+
27
+ #: er-custom-login.php:221
28
+ msgid "Please upload a file to import"
29
+ msgstr "Veuillez charger un fichier à importer"
30
+
31
+ #: er-custom-login.php:228
32
+ msgid "New settings imported successfully!"
33
+ msgstr "Nouveaux réglages importés avec succès !"
34
+
35
+ #: er-custom-login.php:313
36
+ msgid "Custom Login and Dashboard"
37
+ msgstr "Connexion et tableau de bord personnalisés"
38
+
39
+ #: er-custom-login.php:334
40
+ msgid "Erident Custom Login and Dashboard Settings"
41
+ msgstr "Réglages d'Erident Custom Login and Dashboard"
42
+
43
+ #: er-custom-login.php:335
44
+ msgid ""
45
+ "Plugin Loads default values for all below entries. Please change the values "
46
+ "to yours."
47
+ 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:335
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:342
56
+ msgid "Settings saved."
57
+ msgstr "Réglages sauvegardés."
58
+
59
+ #: er-custom-login.php:349
60
+ msgid "Dashboard Settings"
61
+ msgstr "Réglages du tableau de bord"
62
+
63
+ #: er-custom-login.php:350
64
+ msgid ""
65
+ "(These settings will be reflected when a user/admin logins to the WordPress "
66
+ "Dashboard)"
67
+ 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:355
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:360
76
+ msgid ""
77
+ "This will replace the default \"Thank you for creating with WordPress\" on "
78
+ "the bottom left side of dashboard"
79
+ msgstr ""
80
+ "Ceci remplacera le texte \"Merci d'utiliser WordPress\" en bas à gauche du "
81
+ "tableau de bord"
82
+
83
+ #: er-custom-login.php:364
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:368
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:377
95
+ msgid "Login Screen Background"
96
+ msgstr "Fond de l'écran de connexion"
97
+
98
+ #: er-custom-login.php:378
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:383
103
+ msgid "Login Screen Background Color:"
104
+ msgstr "Couleur du fond de l'écran de connexion : "
105
+
106
+ #: er-custom-login.php:388 er-custom-login.php:598 er-custom-login.php:607
107
+ #: er-custom-login.php:709 er-custom-login.php:737 er-custom-login.php:766
108
+ #: er-custom-login.php:778
109
+ msgid "Click the box to select a color."
110
+ msgstr "Cliquez sur la boîte pour sélectionner une couleur."
111
+
112
+ #: er-custom-login.php:393
113
+ msgid "Login Screen Background Image:"
114
+ msgstr "Image de fond de l'écran de connexion : "
115
+
116
+ #: er-custom-login.php:397
117
+ msgid ""
118
+ "Add your own pattern/image url for the screen background. Leave blank if you "
119
+ "don't need any images."
120
+ msgstr ""
121
+ "Ajoutez l'url de votre propre motif/image pour le fond de l'écran. Laissez "
122
+ "ce champ blanc si vous ne souhaitez pas utiliser d'images."
123
+
124
+ #: er-custom-login.php:401
125
+ msgid "Login Screen Background Repeat"
126
+ msgstr "Répétition du fond de l'écran de connexion"
127
+
128
+ #: er-custom-login.php:439 er-custom-login.php:656
129
+ msgid "Select an image repeat option from dropdown."
130
+ msgstr ""
131
+ "Sélectionnez une option de répétition pour l'image à partir du menu "
132
+ "déroulant."
133
+
134
+ #: er-custom-login.php:443 er-custom-login.php:661
135
+ msgid "Background Position:"
136
+ msgstr "Positionnement du fond : "
137
+
138
+ #: er-custom-login.php:444 er-custom-login.php:662
139
+ msgid "Horizontal Position: "
140
+ msgstr "Positionnement horizontal : "
141
+
142
+ #: er-custom-login.php:449 er-custom-login.php:667
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
+ "Les propriétés du positionnement du fond réglent le point de départ de "
151
+ "l'image de fond. Si vous entrez une valeur en \"pixels\" ou \"pourcentages"
152
+ "\", ajoutez \"px\" ou \"%\" à la fin de la valeur. Ceci ne changera rien si "
153
+ "vous choisissez une option de répétition pour le fond. <a href=\"http://www."
154
+ "w3schools.com/cssref/pr_background-position.asp\" target=\"_blank\">Plus "
155
+ "d'infos</a>"
156
+
157
+ #: er-custom-login.php:454
158
+ msgid "Background Size:"
159
+ msgstr "Taille du fond : "
160
+
161
+ #: er-custom-login.php:458
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
+ "Les propriétés de taille du fond spécifient la taille de l'image de fond. Si "
170
+ "vous entrez une valeur en \"pixels\" ou \"pourcentage\", ajoutez\"px\" ou \"%"
171
+ "\" à la fin de la valeur. Les valeurs possibles sont : auto, length, "
172
+ "percentage, cover, contain. <a href=\"http://www.w3schools.com/cssref/"
173
+ "css3_pr_background-size.asp\" target=\"_blank\">Plus d'infos</a>"
174
+
175
+ #: er-custom-login.php:469
176
+ msgid "Login Screen Logo"
177
+ msgstr "Logo de l'écran de connexion"
178
+
179
+ #: er-custom-login.php:470
180
+ msgid "(Change the default WordPress logo and powered by text)"
181
+ msgstr "(Change le logo WordPress par défaut ainsi que le texte propulsé par)"
182
+
183
+ #: er-custom-login.php:475
184
+ msgid "Logo Url:"
185
+ msgstr "Url du logo : "
186
+
187
+ #: er-custom-login.php:477
188
+ msgid "Default Logo Size 274px × 63px"
189
+ msgstr "Taille par défaut du logo 274px × 63px"
190
+
191
+ #: er-custom-login.php:479
192
+ msgid ""
193
+ "(URL path to image to replace default WordPress Logo. (You can upload your "
194
+ "image with the WordPress media uploader)"
195
+ msgstr ""
196
+ "Url de l'image pour remplacer le logo WordPress par défaut. (Vous pouvez "
197
+ "envoyer votre image avec l'outil d'envoi de médias interne à WordPress)"
198
+
199
+ #: er-custom-login.php:484
200
+ msgid "Logo Width:"
201
+ msgstr "Largeur du logo : "
202
+
203
+ #: er-custom-login.php:488
204
+ msgid "Your Logo width(Enter in pixels). Default: 274px"
205
+ msgstr "Largeur de votre logo (entrez-la en pixels). Par défaut : 274 px"
206
+
207
+ #: er-custom-login.php:492
208
+ msgid "Logo Height:"
209
+ msgstr "Hauteur du logo : "
210
+
211
+ #: er-custom-login.php:496
212
+ msgid "Your Logo Height(Enter in pixels). Default: 63px"
213
+ msgstr "Hauteur de votre logo (entrez-la en pixels). Par défaut : 63 px"
214
+
215
+ #: er-custom-login.php:501
216
+ msgid "Powered by Text:"
217
+ msgstr "Texte propulsé par : "
218
+
219
+ #: er-custom-login.php:505
220
+ msgid "Show when mouse hover over custom Login logo"
221
+ msgstr ""
222
+ "Montré quand la souris passe au-dessus du logo de connexion personnalisé"
223
+
224
+ #: er-custom-login.php:515
225
+ msgid "Login Form Settings"
226
+ msgstr "Réglages du formulaire de connexion"
227
+
228
+ #: er-custom-login.php:516
229
+ msgid "(The following settings will change the Login Form style)"
230
+ msgstr ""
231
+ "(Les réglages suivants vont changer le style du formulaire de connexion)"
232
+
233
+ #: er-custom-login.php:521
234
+ msgid "Login form width:"
235
+ msgstr "Largeur du formulaire de connexion : "
236
+
237
+ #: er-custom-login.php:525
238
+ msgid "Total Form width(Enter in pixels). Default: 350px"
239
+ msgstr "Largeur totale du formulaire (Entrez-la en pixels). Par défaut : 350px"
240
+
241
+ #: er-custom-login.php:529
242
+ msgid "Login Form Border Radius:"
243
+ msgstr "Radius de la bordure du formulaire de connexion : "
244
+
245
+ #: er-custom-login.php:533
246
+ msgid ""
247
+ "Border Radius of Login Form. This is the option to make the corners rounded."
248
+ "(Enter in pixels)"
249
+ msgstr ""
250
+ "Radius de la bordure du formulaire de connexion. Cette option permet "
251
+ "d'obtenir des coins arrondis. (Entrez la valeur en pixels)"
252
+
253
+ #: er-custom-login.php:537
254
+ msgid "Login Border Style"
255
+ msgstr "Style de la bordure du formulaire de connexion"
256
+
257
+ #: er-custom-login.php:581
258
+ msgid "Select a Border Style option from dropdown."
259
+ msgstr "Sélectionnez une option de style à partir de la liste déroulante."
260
+
261
+ #: er-custom-login.php:585
262
+ msgid "Login Border Thickness:"
263
+ msgstr "Finesse de la bordure du formulaire de connexion : "
264
+
265
+ #: er-custom-login.php:589
266
+ msgid "Thickness of Border (Enter value in pixels)"
267
+ msgstr "Finesse de la bordure (Entrez-là en pixels)"
268
+
269
+ #: er-custom-login.php:593
270
+ msgid "Login Border Color:"
271
+ msgstr "Couleur de la bordure de la fenêtre de connexion : "
272
+
273
+ #: er-custom-login.php:602
274
+ msgid "Login Form Background Color:"
275
+ msgstr "Couleur de fond du formulaire de connexion : "
276
+
277
+ #: er-custom-login.php:611
278
+ msgid "Login Form Background Image:"
279
+ msgstr "Image de fond du formulaire de connexion : "
280
+
281
+ #: er-custom-login.php:614
282
+ msgid ""
283
+ "Add your own pattern/image url to the form background. Leave blank if you "
284
+ "don't need any images."
285
+ msgstr ""
286
+ "Ajoutez l'url de votre propre motif/image pour le fond du formulaire. "
287
+ "Laissez ce champ blanc si vous ne souhaitez pas utiliser d'images."
288
+
289
+ #: er-custom-login.php:618
290
+ msgid "Login Form Background Repeat"
291
+ msgstr "Répétition du fond du formulaire de connexion"
292
+
293
+ #: er-custom-login.php:664
294
+ msgid "Vertical Position: "
295
+ msgstr "Positionnement vertical : "
296
+
297
+ #: er-custom-login.php:672
298
+ msgid "Login Form Label Text Color"
299
+ msgstr "Couleur du texte des étiquettes du formulaire de connexion"
300
+
301
+ #: er-custom-login.php:677
302
+ msgid ""
303
+ "Click the box to select a color. This will change the color of label "
304
+ "Username/Password"
305
+ msgstr ""
306
+ "Cliquez sur la boîte pour sélectionner une couleur. Ceci changera la couleur "
307
+ "de l'étiquette Utilisateur/Mot de passe"
308
+
309
+ #: er-custom-login.php:681
310
+ msgid "Login Form Label Text Size:"
311
+ msgstr "Taille du texte des étiquettes du formulaire de connexion : "
312
+
313
+ #: er-custom-login.php:684
314
+ msgid "Font Size of Label Username/Password(Enter value in pixels)"
315
+ msgstr ""
316
+ "Taille des caractères de l'étiquette Utilisateur/Mot de passe (Entrez la "
317
+ "valeur en pixels)"
318
+
319
+ #: er-custom-login.php:688
320
+ msgid "Login Form Input Text Color"
321
+ msgstr "Couleur du texte entré dans le formulaire de connexion"
322
+
323
+ #: er-custom-login.php:693
324
+ msgid ""
325
+ "Click the box to select a color. This will change the color of text inside "
326
+ "text box."
327
+ msgstr ""
328
+ "Cliquez sur la boîte pour sélectionner une couleur. Ceci changera la couleur "
329
+ "du texte dans le champ de texte."
330
+
331
+ #: er-custom-login.php:697
332
+ msgid "Login Form Input Text Size:"
333
+ msgstr "Taille du texte saisi dans le formulaire de connexion"
334
+
335
+ #: er-custom-login.php:700
336
+ msgid "Font Size of text inside text box(Enter value in pixels)"
337
+ msgstr ""
338
+ "Taille des caractères saisis dans les champs de caractères (Entrez la valeur "
339
+ "en pixels)"
340
+
341
+ #: er-custom-login.php:704
342
+ msgid "Login Form Link Color"
343
+ msgstr "Couleur des liens dans le formulaire de connexion"
344
+
345
+ #: er-custom-login.php:714
346
+ msgid "Enable link shadow?"
347
+ msgstr "Activer l'ombre du lien ? "
348
+
349
+ #: er-custom-login.php:722 er-custom-login.php:751 er-custom-login.php:802
350
+ msgid "Yes"
351
+ msgstr "Oui"
352
+
353
+ #: er-custom-login.php:726 er-custom-login.php:755 er-custom-login.php:806
354
+ msgid "No"
355
+ msgstr "Non"
356
+
357
+ #: er-custom-login.php:728 er-custom-login.php:757
358
+ msgid "(Check an option)"
359
+ msgstr "(Vérifiez une option)"
360
+
361
+ #: er-custom-login.php:732
362
+ msgid "Login Form Link Shadow Color"
363
+ msgstr "Couleur de l'ombre du lien dans le formulaire de connexion"
364
+
365
+ #: er-custom-login.php:743
366
+ msgid "Enable form shadow?"
367
+ msgstr "Activer l'ombre du formulaire ?"
368
+
369
+ #: er-custom-login.php:761
370
+ msgid "Login Form Shadow Color"
371
+ msgstr "Couleur de l'ombre du formulaire de connexion"
372
+
373
+ #: er-custom-login.php:773
374
+ msgid "Login Button Color"
375
+ msgstr "Couleur du bouton de connexion"
376
+
377
+ #: er-custom-login.php:789
378
+ msgid "Plugin Un-install Settings"
379
+ msgstr "Réglages de la désinstallation de l'extension"
380
+
381
+ #: er-custom-login.php:794
382
+ msgid "Delete custom settings upon plugin deactivation?"
383
+ msgstr ""
384
+ "Effacer les réglages personnalisés lors de la désactivation de l'extension"
385
+
386
+ #: er-custom-login.php:808
387
+ msgid ""
388
+ "(If you set \"Yes\" all custom settings will be deleted from database upon "
389
+ "plugin deactivation)"
390
+ msgstr ""
391
+ "(Si vous laissez sur \"oui\" tous les réglages personnalisés seront effacés "
392
+ "de la base de données lors de la désactivation de l'extension)"
393
+
394
+ #: er-custom-login.php:816
395
+ msgid "Save Changes"
396
+ msgstr "Sauvegarder les changements"
397
+
398
+ #: er-custom-login.php:823
399
+ msgid "Export Settings"
400
+ msgstr "Exporter les réglages"
401
+
402
+ #: er-custom-login.php:825
403
+ msgid ""
404
+ "Export the plugin settings for this site as a .json file. This allows you to "
405
+ "easily import the configuration into another site."
406
+ msgstr ""
407
+ "Exporter les réglages de l'extension sous la forme d'un fichier .json. Ceci "
408
+ "vous permettra d'importer la configuration dans un autre site."
409
+
410
+ #: er-custom-login.php:830
411
+ msgid "Export"
412
+ msgstr "Exporter"
413
+
414
+ #: er-custom-login.php:838
415
+ msgid "Import Settings"
416
+ msgstr "Réglages d'importation"
417
+
418
+ #: er-custom-login.php:840
419
+ msgid ""
420
+ "Import the plugin settings from a .json file. This file can be obtained by "
421
+ "exporting the settings on another site using the form above."
422
+ msgstr ""
423
+ "Importer les réglages à partir d'un fichier .json. Ce fichier peut être "
424
+ "obtenu en exportant les réglages d'un autre site en utilisant le formulaire "
425
+ "ci-dessus."
426
+
427
+ #: er-custom-login.php:848
428
+ msgid "Import"
429
+ msgstr "Importer"
430
+
431
+ #: er-custom-login.php:856
432
+ msgid "Quick Links"
433
+ msgstr "Liens courts"
434
+
435
+ #: er-custom-login.php:858
436
+ msgid "Open Your WP Login Page in a New Tab"
437
+ msgstr "Ouvrir votre page de connexion WP dans un nouvel onglet"
438
+
439
+ #: er-custom-login.php:859
440
+ msgid "Plugin Documentation"
441
+ msgstr "Documentation de l'extension"
442
+
443
+ #: er-custom-login.php:860
444
+ msgid "Plugin Support Page"
445
+ msgstr "Page de support de l'extension"
446
+
447
+ #: er-custom-login.php:861
448
+ msgid "Feature Request/Suggestions?"
449
+ msgstr "Une requête/suggestion de fonctionnalité ?"
450
+
451
+ #: er-custom-login.php:862
452
+ msgid "Got some Love? Give us a 5 star rating!"
453
+ msgstr "Vous aimez ? Donnez-nous une note de 5 étoiles !"
454
+
455
+ #: er-custom-login.php:866
456
+ msgid "Hire Me"
457
+ msgstr "Louez moi"
458
+
459
+ #: er-custom-login.php:867
460
+ msgid ""
461
+ "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
462
+ "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
463
+ "libin@libin.in\">libin@libin.in</a> <br/>Online Portfolio: <a href=\"http://"
464
+ "www.libin.in\" target=\"_blank\">www.libin.in</a>"
465
+ msgstr ""
466
+ "Salut, je m'appelle Libin, je suis ingénieur en interface et développeur "
467
+ "professionnel pour WordPress. Vous pouvez louer mes services pour des "
468
+ "projets personnels. <br/><br/>Envoyez-moi un e-mail : <a href=\"mailto:"
469
+ "libin@libin.in\">libin@libin.in</a> <br/>Portfolio en ligne : <a href="
470
+ "\"http://www.libin.in\" target=\"_blank\">www.libin.in</a>"
471
+
472
+ #: er-custom-login.php:869
473
+ msgid "Translation Credits"
474
+ msgstr "Crédits de traduction"
475
+
476
+ #: er-custom-login.php:871
477
+ msgid ""
478
+ "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
479
+ "\">Adriana De La Cuadra</a>"
480
+ msgstr ""
481
+ "Espagnol par <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
482
+ "\">Adriana De La Cuadra</a>"
483
+
484
+ #: er-custom-login.php:872
485
+ msgid ""
486
+ "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
487
+ "\" target=\"_blank\">Guillaume Vaslin</a>"
488
+ msgstr ""
489
+ "Français par <a href=\"https://www.linkedin.com/pub/vaslin-"
490
+ "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
491
+
492
+ #: er-custom-login.php:874
493
+ msgid "Do you wants to translate this plugin to your language? Email me!"
494
+ msgstr ""
495
+ "Vous voulez traduire cette extension dans votre langue ? Envoyez-moi un "
496
+ "mail !"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.libin.in
4
  Tags: login, customisation, admin, dashboard, customise, erident, custom, form, logo, customize, branding
5
  Requires at least: 3.0.0
6
  Tested up to: 3.9.1
7
- Stable tag: 2.3.1
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -12,9 +12,10 @@ Customize completely your WordPress Login Screen and Dashboard easily. Add your
12
 
13
  == Description ==
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.
16
 
17
- New*: Spanish Translation available!
 
18
 
19
  Fastest support for the plugin. If you have any queries,
20
  visit the WordPress [support forum](http://wordpress.org/support/plugin/erident-custom-login-and-dashboard).
@@ -26,11 +27,12 @@ visit the WordPress [support forum](http://wordpress.org/support/plugin/erident-
26
  1. Add Image/Color Background to Login Form.
27
  1. Pick color using awesome jQuery color picker
28
  1. Change Texts/Links Color and size on Login Form
29
- 1. Replace the WordPress Logo on the Login Form with your own (Now support your own size logo).
30
  1. Enable/Disable shadow for the Links on Login Form
31
  1. Enable/Disable shadow for the Login Form
32
  1. Change Login button Color
33
  1. Preserve previous settings upon WordPress/plugins update!
 
34
 
35
  **Erident Custom Login and Dashboard Settings:**
36
 
@@ -72,8 +74,11 @@ visit the WordPress [support forum](http://wordpress.org/support/plugin/erident-
72
 
73
  * Delete custom settings upon plugin deactivation or not
74
 
 
 
75
  Enjoy your completely branded WordPress Version. Don't forget to [rate the plugin](http://wordpress.org/support/view/plugin-reviews/erident-custom-login-and-dashboard) :)
76
 
 
77
  == Installation ==
78
 
79
  This section describes how to install the plugin and get it working.
@@ -103,6 +108,9 @@ By default you will not lose any of your previous settings. Check the Plugin Un-
103
  = I want some custom changes. How can I do that? =
104
  You can edit the plugin's php file through WordPress plugin editor. But once you made an update the changes you made will disappear. So make sure to backup your changes before updating. Or inform us [Suggestions/requests](http://wordpress.org/support/topic/suggestionsrequests-for-future-version-update?replies=1) for future version
105
 
 
 
 
106
  == Screenshots ==
107
 
108
  1. The complete options on the settings page.
@@ -110,6 +118,12 @@ You can edit the plugin's php file through WordPress plugin editor. But once you
110
 
111
  == Changelog ==
112
 
 
 
 
 
 
 
113
  = 2.3.1 =
114
  * Fixed one function conflict with some themes.
115
 
@@ -167,5 +181,5 @@ You can edit the plugin's php file through WordPress plugin editor. But once you
167
 
168
  == Upgrade Notice ==
169
 
170
- = 2.3.1 =
171
- Important function update.
4
  Tags: login, customisation, admin, dashboard, customise, erident, custom, form, logo, customize, branding
5
  Requires at least: 3.0.0
6
  Tested up to: 3.9.1
7
+ Stable tag: 3.0
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
12
 
13
  == Description ==
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*: Import/Export Settings feature available!
18
+ New*: French, Spanish Translation available!
19
 
20
  Fastest support for the plugin. If you have any queries,
21
  visit the WordPress [support forum](http://wordpress.org/support/plugin/erident-custom-login-and-dashboard).
27
  1. Add Image/Color Background to Login Form.
28
  1. Pick color using awesome jQuery color picker
29
  1. Change Texts/Links Color and size on Login Form
30
+ 1. Replace the WordPress Logo on the Login Form with your own
31
  1. Enable/Disable shadow for the Links on Login Form
32
  1. Enable/Disable shadow for the Login Form
33
  1. Change Login button Color
34
  1. Preserve previous settings upon WordPress/plugins update!
35
+ 1. Import/Export all plugin settings between websites.
36
 
37
  **Erident Custom Login and Dashboard Settings:**
38
 
74
 
75
  * Delete custom settings upon plugin deactivation or not
76
 
77
+ **Import/Export all plugin settings between different websites**
78
+
79
  Enjoy your completely branded WordPress Version. Don't forget to [rate the plugin](http://wordpress.org/support/view/plugin-reviews/erident-custom-login-and-dashboard) :)
80
 
81
+
82
  == Installation ==
83
 
84
  This section describes how to install the plugin and get it working.
108
  = I want some custom changes. How can I do that? =
109
  You can edit the plugin's php file through WordPress plugin editor. But once you made an update the changes you made will disappear. So make sure to backup your changes before updating. Or inform us [Suggestions/requests](http://wordpress.org/support/topic/suggestionsrequests-for-future-version-update?replies=1) for future version
110
 
111
+ = Can I export settings? =
112
+ Yeah! With version 3.0 Import/Export plugin settings feature added. Your life made easy.
113
+
114
  == Screenshots ==
115
 
116
  1. The complete options on the settings page.
118
 
119
  == Changelog ==
120
 
121
+ = 3.0 =
122
+ * Huge database performance upgrade on backend
123
+ * Added Import/Export settings feature
124
+ * Added French translation
125
+ * Improved UI with latest WordPress 3.9
126
+
127
  = 2.3.1 =
128
  * Fixed one function conflict with some themes.
129
 
181
 
182
  == Upgrade Notice ==
183
 
184
+ = 3.0 =
185
+ Import/Export feature, new translations and faster performance.
screenshot-1.png CHANGED
Binary file