Erident Custom Login and Dashboard - Version 2.3.1

Version Description

  • Fixed one function conflict with some themes.
Download this release

Release Info

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

Code changes from version 2.3.0 to 2.3.1

er-admin.css CHANGED
@@ -53,6 +53,7 @@
53
  #ilctabscolorpicker9 {
54
  margin-top:-170px;
55
  }
 
56
  .er_notice {
57
  padding: 10px 20px;
58
  -moz-border-radius: 3px;
@@ -63,7 +64,7 @@
63
  margin: 10px 5px 10px 0;
64
 
65
  float: left;
66
- width: 40%;
67
  min-width: 310px;
68
  }
69
  .er_notice2 {
@@ -73,16 +74,16 @@
73
  margin: 10px 0px;
74
  padding:15px 20px;
75
 
76
- width: 32%;
77
  float: left;
78
- margin-right: 1%;
79
  min-width: 260px;
80
  }
81
  .wp-erident-dashboard select {
82
  height:30px;
83
  }
84
 
85
- .postbox, .er_notice, .er_notice2 {
86
  max-width:1100px;
87
  }
88
  .postbox .hndle {
53
  #ilctabscolorpicker9 {
54
  margin-top:-170px;
55
  }
56
+
57
  .er_notice {
58
  padding: 10px 20px;
59
  -moz-border-radius: 3px;
64
  margin: 10px 5px 10px 0;
65
 
66
  float: left;
67
+ width: 46%;
68
  min-width: 310px;
69
  }
70
  .er_notice2 {
74
  margin: 10px 0px;
75
  padding:15px 20px;
76
 
77
+ width: 45%;
78
  float: left;
79
+ margin-right: 10px;
80
  min-width: 260px;
81
  }
82
  .wp-erident-dashboard select {
83
  height:30px;
84
  }
85
 
86
+ .postbox, .bottom-notices {
87
  max-width:1100px;
88
  }
89
  .postbox .hndle {
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.0
9
  Author: Libin V Babu
10
  Author URI: http://www.libin.in/
11
  License: GPL
@@ -107,7 +107,7 @@ function er_login_logo() {
107
  $er_login_bg_ypos = get_option('wp_erident_login_bg_ypos');
108
 
109
 
110
- function hex2rgb( $colour ) {
111
  if ( $colour[0] == '#' ) {
112
  $colour = substr( $colour, 1 );
113
  }
@@ -123,7 +123,7 @@ function er_login_logo() {
123
  $b = hexdec( $b );
124
  return array( 'red' => $r, 'green' => $g, 'blue' => $b );
125
  }
126
- $btnrgba = hex2rgb( $er_login_button_color );
127
  ?>
128
  <style type="text/css">
129
  /* Styles loading from Erident Custom Login and Dashboard Plugin*/
@@ -802,21 +802,29 @@ value="<?php echo get_option('wp_erident_login_bg_ypos'); ?>" />
802
 
803
  </form>
804
 
805
- <div class="er_notice2">
806
- <h3>Quick Links</h3>
807
- <ul>
808
- <li class="login-page"><a href="<?php bloginfo( 'wpurl' ); ?>/wp-login.php" target="_blank"><?php _e( 'Open Your WP Login Page in a New Tab', 'erident-custom-login-and-dashboard' ); ?></a></li>
809
- <li><a href="http://wordpress.org/extend/plugins/erident-custom-login-and-dashboard/" target="_blank"><?php _e( 'Plugin Documentation', 'erident-custom-login-and-dashboard' ); ?></a></li>
810
- <li><a href="http://wordpress.org/support/plugin/erident-custom-login-and-dashboard" target="_blank"><?php _e( 'Plugin Support Page', 'erident-custom-login-and-dashboard' ); ?></a></li>
811
- <li><a href="http://wordpress.org/support/topic/suggestionsrequests-for-future-version-update?replies=1" target="_blank"><?php _e( 'Feature Request/Suggestions?', 'erident-custom-login-and-dashboard' ); ?></a></li>
812
- <li class="green"><a href="http://wordpress.org/support/view/plugin-reviews/erident-custom-login-and-dashboard" target="_blank"><?php _e( 'Got some Love? Give us a 5 star rating!', 'erident-custom-login-and-dashboard' ); ?></a></li>
813
- </ul>
814
- </div><!-- end .er_notice2 -->
 
815
  <div class="er_notice">
816
  <h3><?php _e( 'Hire Me', 'erident-custom-login-and-dashboard' ); ?></h3>
817
  <p><?php _e( 'Hey, I\'m Libin, a professional Front End Engineer/WordPress Developer. You can hire me for freelancing projects.<br/><br/>Email me: <a href="mailto:libin@libin.in">libin@libin.in</a> <br/>Online Portfolio: <a href="http://www.libin.in" target="_blank">www.libin.in</a>', 'erident-custom-login-and-dashboard' ); ?></p>
 
 
 
 
 
 
818
  </div><!-- end .er_notice -->
819
-
 
820
  </div>
821
  <script type="text/javascript">
822
 
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
107
  $er_login_bg_ypos = get_option('wp_erident_login_bg_ypos');
108
 
109
 
110
+ function er_hex2rgb( $colour ) {
111
  if ( $colour[0] == '#' ) {
112
  $colour = substr( $colour, 1 );
113
  }
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*/
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>
808
+ <ul>
809
+ <li class="login-page"><a href="<?php bloginfo( 'wpurl' ); ?>/wp-login.php" target="_blank"><?php _e( 'Open Your WP Login Page in a New Tab', 'erident-custom-login-and-dashboard' ); ?></a></li>
810
+ <li><a href="http://wordpress.org/extend/plugins/erident-custom-login-and-dashboard/" target="_blank"><?php _e( 'Plugin Documentation', 'erident-custom-login-and-dashboard' ); ?></a></li>
811
+ <li><a href="http://wordpress.org/support/plugin/erident-custom-login-and-dashboard" target="_blank"><?php _e( 'Plugin Support Page', 'erident-custom-login-and-dashboard' ); ?></a></li>
812
+ <li><a href="http://wordpress.org/support/topic/suggestionsrequests-for-future-version-update?replies=1" target="_blank"><?php _e( 'Feature Request/Suggestions?', 'erident-custom-login-and-dashboard' ); ?></a></li>
813
+ <li class="green"><a href="http://wordpress.org/support/view/plugin-reviews/erident-custom-login-and-dashboard" target="_blank"><?php _e( 'Got some Love? Give us a 5 star rating!', 'erident-custom-login-and-dashboard' ); ?></a></li>
814
+ </ul>
815
+ </div><!-- end .er_notice2 -->
816
  <div class="er_notice">
817
  <h3><?php _e( 'Hire Me', 'erident-custom-login-and-dashboard' ); ?></h3>
818
  <p><?php _e( 'Hey, I\'m Libin, a professional Front End Engineer/WordPress Developer. You can hire me for freelancing projects.<br/><br/>Email me: <a href="mailto:libin@libin.in">libin@libin.in</a> <br/>Online Portfolio: <a href="http://www.libin.in" target="_blank">www.libin.in</a>', 'erident-custom-login-and-dashboard' ); ?></p>
819
+
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 -->
826
+ </div>
827
+
828
  </div>
829
  <script type="text/javascript">
830
 
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-04-23 14:44+0530\n"
5
- "PO-Revision-Date: 2014-04-23 14:54+0530\n"
6
  "Last-Translator: Libin <libin@libin.in>\n"
7
  "Language-Team: \n"
8
  "Language: en\n"
@@ -16,99 +16,103 @@ msgstr ""
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: er-custom-login.php:42
20
  msgid "Settings"
21
  msgstr ""
22
 
23
- #: er-custom-login.php:317
 
 
 
 
24
  msgid "Erident Custom Login and Dashboard Settings"
25
  msgstr ""
26
 
27
- #: er-custom-login.php:318
28
  msgid ""
29
  "Plugin Loads default values for all below entries. Please change the values "
30
  "to yours."
31
  msgstr ""
32
 
33
- #: er-custom-login.php:318
34
  msgid "Click on the header of each block to open it."
35
  msgstr ""
36
 
37
- #: er-custom-login.php:324
38
  msgid "Dashboard Settings"
39
  msgstr ""
40
 
41
- #: er-custom-login.php:325
42
  msgid ""
43
  "(These settings will be reflected when a user/admin logins to the WordPress "
44
  "Dashboard)"
45
  msgstr ""
46
 
47
- #: er-custom-login.php:330
48
  msgid "Enter the text for dashboard left side footer:"
49
  msgstr ""
50
 
51
- #: er-custom-login.php:335
52
  msgid ""
53
  "This will replace the default \"Thank you for creating with WordPress\" on "
54
  "the bottom left side of dashboard"
55
  msgstr ""
56
 
57
- #: er-custom-login.php:339
58
  msgid "Enter the text for dashboard right side footer:"
59
  msgstr ""
60
 
61
- #: er-custom-login.php:343
62
  msgid ""
63
  "This will replace the default \"WordPress Version\" on the bottom right side "
64
  "of dashboard"
65
  msgstr ""
66
 
67
- #: er-custom-login.php:352
68
  msgid "Login Screen Background"
69
  msgstr ""
70
 
71
- #: er-custom-login.php:353
72
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
73
  msgstr ""
74
 
75
- #: er-custom-login.php:358
76
  msgid "Login Screen Background Color:"
77
  msgstr ""
78
 
79
- #: er-custom-login.php:363 er-custom-login.php:575 er-custom-login.php:584
80
- #: er-custom-login.php:687 er-custom-login.php:715 er-custom-login.php:744
81
- #: er-custom-login.php:756
82
  msgid "Click the box to select a color."
83
  msgstr ""
84
 
85
- #: er-custom-login.php:368
86
  msgid "Login Screen Background Image:"
87
  msgstr ""
88
 
89
- #: er-custom-login.php:372
90
  msgid ""
91
  "Add your own pattern/image url for the screen background. Leave blank if you "
92
  "don't need any images."
93
  msgstr ""
94
 
95
- #: er-custom-login.php:376
96
  msgid "Login Screen Background Repeat"
97
  msgstr ""
98
 
99
- #: er-custom-login.php:415 er-custom-login.php:634
100
  msgid "Select an image repeat option from dropdown."
101
  msgstr ""
102
 
103
- #: er-custom-login.php:419 er-custom-login.php:639
104
  msgid "Background Position:"
105
  msgstr ""
106
 
107
- #: er-custom-login.php:420 er-custom-login.php:640
108
  msgid "Horizontal Position: "
109
  msgstr ""
110
 
111
- #: er-custom-login.php:425 er-custom-login.php:645
112
  msgid ""
113
  "The background-position property sets the starting position of a background "
114
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
@@ -117,11 +121,11 @@ msgid ""
117
  "cssref/pr_background-position.asp\" target=\"_blank\">More Info</a>"
118
  msgstr ""
119
 
120
- #: er-custom-login.php:430
121
  msgid "Background Size:"
122
  msgstr ""
123
 
124
- #: er-custom-login.php:434
125
  msgid ""
126
  "The background-size property specifies the size of a background image. If "
127
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
@@ -130,238 +134,256 @@ msgid ""
130
  "asp\" target=\"_blank\">More Info</a>"
131
  msgstr ""
132
 
133
- #: er-custom-login.php:445
134
  msgid "Login Screen Logo"
135
  msgstr ""
136
 
137
- #: er-custom-login.php:446
138
  msgid "(Change the default WordPress logo and powered by text)"
139
  msgstr ""
140
 
141
- #: er-custom-login.php:451
142
  msgid "Logo Url:"
143
  msgstr ""
144
 
145
- #: er-custom-login.php:453
146
  msgid "Default Logo Size 274px × 63px"
147
  msgstr ""
148
 
149
- #: er-custom-login.php:455
150
  msgid ""
151
  "(URL path to image to replace default WordPress Logo. (You can upload your "
152
  "image with the WordPress media uploader)"
153
  msgstr ""
154
 
155
- #: er-custom-login.php:460
156
  msgid "Logo Width:"
157
  msgstr ""
158
 
159
- #: er-custom-login.php:464
160
  msgid "Your Logo width(Enter in pixels). Default: 274px"
161
  msgstr ""
162
 
163
- #: er-custom-login.php:468
164
  msgid "Logo Height:"
165
  msgstr ""
166
 
167
- #: er-custom-login.php:472
168
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
169
  msgstr ""
170
 
171
- #: er-custom-login.php:477
172
  msgid "Powered by Text:"
173
  msgstr ""
174
 
175
- #: er-custom-login.php:481
176
  msgid "Show when mouse hover over custom Login logo"
177
  msgstr ""
178
 
179
- #: er-custom-login.php:491
180
  msgid "Login Form Settings"
181
  msgstr ""
182
 
183
- #: er-custom-login.php:492
184
  msgid "(The following settings will change the Login Form style)"
185
  msgstr ""
186
 
187
- #: er-custom-login.php:497
188
  msgid "Login form width:"
189
  msgstr ""
190
 
191
- #: er-custom-login.php:501
192
  msgid "Total Form width(Enter in pixels). Default: 350px"
193
  msgstr ""
194
 
195
- #: er-custom-login.php:505
196
  msgid "Login Form Border Radius:"
197
  msgstr ""
198
 
199
- #: er-custom-login.php:509
200
  msgid ""
201
  "Border Radius of Login Form. This is the option to make the corners rounded."
202
  "(Enter in pixels)"
203
  msgstr ""
204
 
205
- #: er-custom-login.php:513
206
  msgid "Login Border Style"
207
  msgstr ""
208
 
209
- #: er-custom-login.php:558
210
  msgid "Select a Border Style option from dropdown."
211
  msgstr ""
212
 
213
- #: er-custom-login.php:562
214
  msgid "Login Border Thickness:"
215
  msgstr ""
216
 
217
- #: er-custom-login.php:566
218
  msgid "Thickness of Border (Enter value in pixels)"
219
  msgstr ""
220
 
221
- #: er-custom-login.php:570
222
  msgid "Login Border Color:"
223
  msgstr ""
224
 
225
- #: er-custom-login.php:579
226
  msgid "Login Form Background Color:"
227
  msgstr ""
228
 
229
- #: er-custom-login.php:588
230
  msgid "Login Form Background Image:"
231
  msgstr ""
232
 
233
- #: er-custom-login.php:591
234
  msgid ""
235
  "Add your own pattern/image url to the form background. Leave blank if you "
236
  "don't need any images."
237
  msgstr ""
238
 
239
- #: er-custom-login.php:595
240
  msgid "Login Form Background Repeat"
241
  msgstr ""
242
 
243
- #: er-custom-login.php:642
244
  msgid "Vertical Position: "
245
  msgstr ""
246
 
247
- #: er-custom-login.php:650
248
  msgid "Login Form Label Text Color"
249
  msgstr ""
250
 
251
- #: er-custom-login.php:655
252
  msgid ""
253
  "Click the box to select a color. This will change the color of label "
254
  "Username/Password"
255
  msgstr ""
256
 
257
- #: er-custom-login.php:659
258
  msgid "Login Form Label Text Size:"
259
  msgstr ""
260
 
261
- #: er-custom-login.php:662
262
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
263
  msgstr ""
264
 
265
- #: er-custom-login.php:666
266
  msgid "Login Form Input Text Color"
267
  msgstr ""
268
 
269
- #: er-custom-login.php:671
270
  msgid ""
271
  "Click the box to select a color. This will change the color of text inside "
272
  "text box."
273
  msgstr ""
274
 
275
- #: er-custom-login.php:675
276
  msgid "Login Form Input Text Size:"
277
  msgstr ""
278
 
279
- #: er-custom-login.php:678
280
  msgid "Font Size of text inside text box(Enter value in pixels)"
281
  msgstr ""
282
 
283
- #: er-custom-login.php:682
284
  msgid "Login Form Link Color"
285
  msgstr ""
286
 
287
- #: er-custom-login.php:692
288
  msgid "Enable link shadow?"
289
  msgstr ""
290
 
291
- #: er-custom-login.php:700 er-custom-login.php:729 er-custom-login.php:780
292
  msgid "Yes"
293
  msgstr ""
294
 
295
- #: er-custom-login.php:704 er-custom-login.php:733 er-custom-login.php:784
296
  msgid "No"
297
  msgstr ""
298
 
299
- #: er-custom-login.php:706 er-custom-login.php:735
300
  msgid "(Check an option)"
301
  msgstr ""
302
 
303
- #: er-custom-login.php:710
304
  msgid "Login Form Link Shadow Color"
305
  msgstr ""
306
 
307
- #: er-custom-login.php:721
308
  msgid "Enable form shadow?"
309
  msgstr ""
310
 
311
- #: er-custom-login.php:739
312
  msgid "Login Form Shadow Color"
313
  msgstr ""
314
 
315
- #: er-custom-login.php:751
316
  msgid "Login Button Color"
317
  msgstr ""
318
 
319
- #: er-custom-login.php:767
320
  msgid "Plugin Un-install Settings"
321
  msgstr ""
322
 
323
- #: er-custom-login.php:772
324
  msgid "Delete custom settings upon plugin deactivation?"
325
  msgstr ""
326
 
327
- #: er-custom-login.php:786
328
  msgid ""
329
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
330
  "plugin deactivation)"
331
  msgstr ""
332
 
333
- #: er-custom-login.php:798
334
  msgid "Save Changes"
335
  msgstr ""
336
 
337
- #: er-custom-login.php:806
 
 
 
 
338
  msgid "Open Your WP Login Page in a New Tab"
339
  msgstr ""
340
 
341
- #: er-custom-login.php:807
342
  msgid "Plugin Documentation"
343
  msgstr ""
344
 
345
- #: er-custom-login.php:808
346
  msgid "Plugin Support Page"
347
  msgstr ""
348
 
349
- #: er-custom-login.php:809
350
  msgid "Feature Request/Suggestions?"
351
  msgstr ""
352
 
353
- #: er-custom-login.php:810
354
  msgid "Got some Love? Give us a 5 star rating!"
355
  msgstr ""
356
 
357
- #: er-custom-login.php:814
358
  msgid "Hire Me"
359
  msgstr ""
360
 
361
- #: er-custom-login.php:815
362
  msgid ""
363
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
364
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
365
  "libin@libin.in\">libin@libin.in</a> <br/>Online Portfolio: <a href=\"http://"
366
  "www.libin.in\" target=\"_blank\">www.libin.in</a>"
367
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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"
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 ""
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
  "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
  "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:"
373
  "libin@libin.in\">libin@libin.in</a> <br/>Online Portfolio: <a href=\"http://"
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 ""
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-04-23 15:32+0530\n"
5
- "PO-Revision-Date: 2014-04-23 15:50+0530\n"
6
  "Last-Translator: Libin <libin@libin.in>\n"
7
  "Language-Team: \n"
8
  "Language: en\n"
@@ -26,19 +26,19 @@ msgstr "Custom Login y Dashboard"
26
 
27
  #: er-custom-login.php:319
28
  msgid "Erident Custom Login and Dashboard Settings"
29
- msgstr "Erident Custom Login y Configuración del panel"
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
- "Valores predeterminados Cargas Programas para todas las entradas de abajo. "
37
- "Por favor cambia los valores a la suya."
38
 
39
  #: er-custom-login.php:320
40
  msgid "Click on the header of each block to open it."
41
- msgstr "Haga clic en el encabezado de cada bloque para abrirlo."
42
 
43
  #: er-custom-login.php:326
44
  msgid "Dashboard Settings"
@@ -49,12 +49,12 @@ msgid ""
49
  "(These settings will be reflected when a user/admin logins to the WordPress "
50
  "Dashboard)"
51
  msgstr ""
52
- "(Estos ajustes se reflejarán cuando un usuario / administrador inicios de "
53
- "sesión en el panel de WordPress)"
54
 
55
  #: er-custom-login.php:332
56
  msgid "Enter the text for dashboard left side footer:"
57
- msgstr "Introduzca el texto para el salpicadero izquierda pie lado:"
58
 
59
  #: er-custom-login.php:337
60
  msgid ""
@@ -66,7 +66,7 @@ msgstr ""
66
 
67
  #: er-custom-login.php:341
68
  msgid "Enter the text for dashboard right side footer:"
69
- msgstr "Introduzca el texto para el salpicadero derecho pie lado:"
70
 
71
  #: er-custom-login.php:345
72
  msgid ""
@@ -78,45 +78,45 @@ msgstr ""
78
 
79
  #: er-custom-login.php:354
80
  msgid "Login Screen Background"
81
- msgstr "Antecedentes pantalla de login"
82
 
83
  #: er-custom-login.php:355
84
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
85
- msgstr "(Los siguientes 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 "Login Background Color de la pantalla:"
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 "Haga clic en el cuadro para seleccionar un color."
96
 
97
  #: er-custom-login.php:370
98
  msgid "Login Screen Background Image:"
99
- msgstr "Acceda pantalla Imagen de fondo:"
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."
105
  msgstr ""
106
- "Añade tu url patrón / imagen de fondo de la pantalla. Dejar en blanco si no "
107
- "necesitas ninguna imagen."
108
 
109
  #: er-custom-login.php:378
110
  msgid "Login Screen Background Repeat"
111
- msgstr "Pantalla de Ingreso de fondo Repetir"
112
 
113
  #: er-custom-login.php:417 er-custom-login.php:636
114
  msgid "Select an image repeat option from dropdown."
115
- msgstr "Seleccione una opción de repetición de imagen desplegable."
116
 
117
  #: er-custom-login.php:421 er-custom-login.php:641
118
  msgid "Background Position:"
119
- msgstr "Antecedentes Posición:"
120
 
121
  #: er-custom-login.php:422 er-custom-login.php:642
122
  msgid "Horizontal Position: "
@@ -131,15 +131,15 @@ msgid ""
131
  "cssref/pr_background-position.asp\" target=\"_blank\">More Info</a>"
132
  msgstr ""
133
  "La propiedad background-position ajusta la posición de partida de una imagen "
134
- "de fondo. Si usted entra en el valor de \"píxeles \" o \"porcentaje \", "
135
- "añada \"px \" o \"% \" al final del valor. Esto no mostrará ningún cambio si "
136
- "se establece la opción de repetición de fondo como \"Repetir \". <a href="
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 del fondo:"
143
 
144
  #: er-custom-login.php:436
145
  msgid ""
@@ -157,119 +157,117 @@ msgstr ""
157
 
158
  #: er-custom-login.php:447
159
  msgid "Login Screen Logo"
160
- msgstr "Pantalla de Login Logo"
161
 
162
  #: er-custom-login.php:448
163
  msgid "(Change the default WordPress logo and powered by text)"
164
- msgstr "(Cambiar el logo de WordPress por defecto y funciona con el texto)"
165
 
166
  #: er-custom-login.php:453
167
  msgid "Logo Url:"
168
- msgstr "Logo Url:"
169
 
170
  #: er-custom-login.php:455
171
  msgid "Default Logo Size 274px × 63px"
172
- msgstr "Logo por Defecto Tamaño 274px x 63px"
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)"
178
  msgstr ""
179
- "(Ruta URL a la imagen para reemplazar por defecto de WordPress Logo. (Usted "
180
- "puede subir su imagen con el cargador de medios de WordPress)"
181
 
182
  #: er-custom-login.php:462
183
  msgid "Logo Width:"
184
- msgstr "Logo Ancho:"
185
 
186
  #: er-custom-login.php:466
187
  msgid "Your Logo width(Enter in pixels). Default: 274px"
188
- msgstr "Su anchura Logo (Introduzca en píxeles). Por defecto: 274px"
189
 
190
  #: er-custom-login.php:470
191
  msgid "Logo Height:"
192
- msgstr "Logo Altura:"
193
 
194
  #: er-custom-login.php:474
195
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
196
- msgstr "Añade su logotipo Altura (Introduzca en píxeles). Por defecto: 63px"
197
 
198
  #: er-custom-login.php:479
199
  msgid "Powered by Text:"
200
- msgstr "Desarrollado por Texto:"
201
 
202
  #: er-custom-login.php:483
203
  msgid "Show when mouse hover over custom Login logo"
204
- msgstr "Mostrar al cursor del mouse sobre la costumbre Entrar logo"
205
 
206
  #: er-custom-login.php:493
207
  msgid "Login Form Settings"
208
- msgstr "Entrar Configuración Form"
209
 
210
  #: er-custom-login.php:494
211
  msgid "(The following settings will change the Login Form style)"
212
- msgstr "(La siguiente configuración cambiar el estilo de formulario de acceso)"
 
213
 
214
  #: er-custom-login.php:499
215
  msgid "Login form width:"
216
- msgstr "Login ancho del formulario:"
217
 
218
  #: er-custom-login.php:503
219
  msgid "Total Form width(Enter in pixels). Default: 350px"
220
- msgstr "Ancho Forma (En Enter en píxeles). Por defecto: 350px"
221
 
222
  #: er-custom-login.php:507
223
  msgid "Login Form Border Radius:"
224
- msgstr "Formulario de acceso Border Radio:"
225
 
226
  #: er-custom-login.php:511
227
  msgid ""
228
  "Border Radius of Login Form. This is the option to make the corners rounded."
229
  "(Enter in pixels)"
230
- msgstr ""
231
- "Border Radio del Formulario de acceso. Esta es la opción de hacer las "
232
- "esquinas redondeadas. (Introduzca en píxeles)"
233
 
234
  #: er-custom-login.php:515
235
  msgid "Login Border Style"
236
- msgstr "Acceda Estilo de borde"
237
 
238
  #: er-custom-login.php:560
239
  msgid "Select a Border Style option from dropdown."
240
- msgstr "Seleccione una opción de Estilo de borde del menú desplegable."
241
 
242
  #: er-custom-login.php:564
243
  msgid "Login Border Thickness:"
244
- msgstr "Acceda grosor del borde:"
245
 
246
  #: er-custom-login.php:568
247
  msgid "Thickness of Border (Enter value in pixels)"
248
- msgstr "Espesor de la Frontera (Introduzca el valor en píxeles)"
249
 
250
  #: er-custom-login.php:572
251
  msgid "Login Border Color:"
252
- msgstr "Acceda Color del borde:"
253
 
254
  #: er-custom-login.php:581
255
  msgid "Login Form Background Color:"
256
- msgstr "Login Form Color de fondo:"
257
 
258
  #: er-custom-login.php:590
259
  msgid "Login Form Background Image:"
260
- msgstr "Formulario de acceso Imagen de fondo:"
261
 
262
  #: er-custom-login.php:593
263
  msgid ""
264
  "Add your own pattern/image url to the form background. Leave blank if you "
265
  "don't need any images."
266
  msgstr ""
267
- "Añade tu url patrón / imagen para el fondo del formulario. Dejar en blanco "
268
- "si no necesitas ninguna imagen."
269
 
270
  #: er-custom-login.php:597
271
  msgid "Login Form Background Repeat"
272
- msgstr "Login Formulario de fondo Repetir"
273
 
274
  #: er-custom-login.php:644
275
  msgid "Vertical Position: "
@@ -277,55 +275,49 @@ msgstr "Posición Vertical:"
277
 
278
  #: er-custom-login.php:652
279
  msgid "Login Form Label Text Color"
280
- msgstr "Login Form Label Color del texto"
281
 
282
  #: er-custom-login.php:657
283
  msgid ""
284
  "Click the box to select a color. This will change the color of label "
285
  "Username/Password"
286
  msgstr ""
287
- "Haga clic en el cuadro para seleccionar un color. Esto va a cambiar el color "
288
- "de la etiqueta de nombre de usuario / contraseña"
289
 
290
  #: er-custom-login.php:661
291
  msgid "Login Form Label Text Size:"
292
- msgstr "Login Form Label Tamaño del texto:"
293
 
294
  #: er-custom-login.php:664
295
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
296
- msgstr ""
297
- "Tamaño de la Fuente de la Marca de Usuario / Contraseña (Introduzca el valor "
298
- "en píxeles)"
299
 
300
  #: er-custom-login.php:668
301
  msgid "Login Form Input Text Color"
302
- msgstr "Formulario de acceso de entrada de texto en color"
303
 
304
  #: er-custom-login.php:673
305
  msgid ""
306
  "Click the box to select a color. This will change the color of text inside "
307
  "text box."
308
- msgstr ""
309
- "Haga clic en el cuadro para seleccionar un color. Esto va a cambiar el color "
310
- "del texto dentro de la caja de texto."
311
 
312
  #: er-custom-login.php:677
313
  msgid "Login Form Input Text Size:"
314
- msgstr "Formulario de acceso de entrada Tamaño del texto:"
315
 
316
  #: er-custom-login.php:680
317
  msgid "Font Size of text inside text box(Enter value in pixels)"
318
- msgstr ""
319
- "Tamaño de fuente del texto dentro de la caja de texto (Introducir el valor "
320
- "en píxeles)"
321
 
322
  #: er-custom-login.php:684
323
  msgid "Login Form Link Color"
324
- msgstr "Formulario de acceso Enlace color"
325
 
326
  #: er-custom-login.php:694
327
  msgid "Enable link shadow?"
328
- msgstr "Activar enlace sombra?"
329
 
330
  #: er-custom-login.php:702 er-custom-login.php:731 er-custom-login.php:782
331
  msgid "Yes"
@@ -337,11 +329,11 @@ msgstr "no"
337
 
338
  #: er-custom-login.php:708 er-custom-login.php:737
339
  msgid "(Check an option)"
340
- msgstr "(Marque una opción)"
341
 
342
  #: er-custom-login.php:712
343
  msgid "Login Form Link Shadow Color"
344
- msgstr "Formulario de acceso Vínculo Color de sombra"
345
 
346
  #: er-custom-login.php:723
347
  msgid "Enable form shadow?"
@@ -349,66 +341,89 @@ msgstr "Activar forma de sombra?"
349
 
350
  #: er-custom-login.php:741
351
  msgid "Login Form Shadow Color"
352
- msgstr "Login Form Color de sombra"
353
 
354
  #: er-custom-login.php:753
355
  msgid "Login Button Color"
356
- msgstr "Botón Inicio de sesión en color"
357
 
358
  #: er-custom-login.php:769
359
  msgid "Plugin Un-install Settings"
360
- msgstr "Programas desinstalar Configuración"
361
 
362
  #: er-custom-login.php:774
363
  msgid "Delete custom settings upon plugin deactivation?"
364
  msgstr ""
365
- "Eliminar una configuración personalizada a la desactivación de plugins?"
 
366
 
367
  #: er-custom-login.php:788
368
  msgid ""
369
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
370
  "plugin deactivation)"
371
  msgstr ""
372
- "(Si establece \"Sí \" todos los ajustes personalizados se borrarán de la "
373
- "base de datos tras la desactivación plugin)"
374
 
375
  #: er-custom-login.php:800
376
  msgid "Save Changes"
377
  msgstr "Guardar cambios"
378
 
379
- #: er-custom-login.php:808
 
 
 
 
380
  msgid "Open Your WP Login Page in a New Tab"
381
  msgstr "Abrir una WP Login Página en una nueva pestaña"
382
 
383
- #: er-custom-login.php:809
384
  msgid "Plugin Documentation"
385
- msgstr "Documentación Plugin"
386
 
387
- #: er-custom-login.php:810
388
  msgid "Plugin Support Page"
389
- msgstr "Soporte Plugin Página"
390
 
391
- #: er-custom-login.php:811
392
  msgid "Feature Request/Suggestions?"
393
- msgstr "Pedido de funciones / Sugerencias?"
394
 
395
- #: er-custom-login.php:812
396
  msgid "Got some Love? Give us a 5 star rating!"
397
  msgstr "¿Tienes algo de amor? Danos un 5 estrellas!"
398
 
399
- #: er-custom-login.php:816
400
  msgid "Hire Me"
401
- msgstr "alquiler de mí"
402
 
403
- #: er-custom-login.php:817
404
  msgid ""
405
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
406
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
407
  "libin@libin.in\">libin@libin.in</a> <br/>Online Portfolio: <a href=\"http://"
408
  "www.libin.in\" target=\"_blank\">www.libin.in</a>"
409
  msgstr ""
410
- "Hey, estoy Libin, un profesional Front End Engineer / WordPress para "
411
- "desarrolladores. Usted puede contratarme para trabajar independientemente "
412
- "proyectos <br/> Envíeme un correo electrónico:. <a href=\"mailto:libin@libin."
413
- "in\"> libin@libin.in </a> <br/> Portfolio Online : <a href=\"http://www."
414
- "libin.in\" target=\"_blank\"> www.libin.in </a>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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"
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."
35
  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"
49
  "(These settings will be reflected when a user/admin logins to the WordPress "
50
  "Dashboard)"
51
  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 ""
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 ""
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."
105
  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: "
131
  "cssref/pr_background-position.asp\" target=\"_blank\">More Info</a>"
132
  msgstr ""
133
  "La propiedad background-position ajusta la posición de partida de una imagen "
134
+ "de fondo. Si tu entras el valor de \"píxeles \" o \"porcentaje \", añada "
135
+ "\"px \" o \"% \" al final del valor. Esto no mostrará ningún cambio si se "
136
+ "establece la opción de repetición de fondo como \"Repetir \". <a href="
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 ""
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)"
178
  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: "
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"
284
  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"
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?"
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)"
364
  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:"
404
  "libin@libin.in\">libin@libin.in</a> <br/>Online Portfolio: <a href=\"http://"
405
  "www.libin.in\" target=\"_blank\">www.libin.in</a>"
406
  msgstr ""
407
+ "Hey, soy Libin, un desarrollado para WordPress. Tu puedes contratarme para "
408
+ "trabajar en proyectos freelance. <br/>Envíeme un correo electrónico a: <a "
409
+ "href=\"mailto:libin@libin.in\">libin@libin.in</a> <br/>Este es mi "
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>"
421
+ 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 "
429
+ "electrónico!"
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: libinvbabu
3
  Donate link: http://www.libin.in
4
  Tags: login, customisation, admin, dashboard, customise, erident, custom, form, logo, customize, branding
5
  Requires at least: 3.0.0
6
- Tested up to: 3.9
7
- Stable tag: 2.3.0
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -14,6 +14,8 @@ Customize completely your WordPress Login Screen and Dashboard easily. Add your
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
  Fastest support for the plugin. If you have any queries,
18
  visit the WordPress [support forum](http://wordpress.org/support/plugin/erident-custom-login-and-dashboard).
19
 
@@ -108,6 +110,9 @@ You can edit the plugin's php file through WordPress plugin editor. But once you
108
 
109
  == Changelog ==
110
 
 
 
 
111
  = 2.3.0 =
112
  * New option to customize Login button Color
113
  * Localized the entire plugin and ready for translation
@@ -162,5 +167,5 @@ You can edit the plugin's php file through WordPress plugin editor. But once you
162
 
163
  == Upgrade Notice ==
164
 
165
- = 2.3.0 =
166
- New feature and translations available.
3
  Donate link: http://www.libin.in
4
  Tags: login, customisation, admin, dashboard, customise, erident, custom, form, logo, customize, branding
5
  Requires at least: 3.0.0
6
+ Tested up to: 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
 
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).
21
 
110
 
111
  == Changelog ==
112
 
113
+ = 2.3.1 =
114
+ * Fixed one function conflict with some themes.
115
+
116
  = 2.3.0 =
117
  * New option to customize Login button Color
118
  * Localized the entire plugin and ready for translation
167
 
168
  == Upgrade Notice ==
169
 
170
+ = 2.3.1 =
171
+ Important function update.