Admin Custom Login - Version 2.6.4

Version Description

  • Logo Settings Label Revised
  • Login Form Social Icons Margin Fixed
Download this release

Release Info

Developer weblizar
Plugin Icon 128x128 Admin Custom Login
Version 2.6.4
Comparing to
See all releases

Code changes from version 2.6.3 to 2.6.4

acl-gcaptcha.php CHANGED
@@ -6,16 +6,16 @@ class ACL_gcaptcha_Login_Form {
6
 
7
  /** class constructor */
8
  public function __construct() {
9
- $g_page = unserialize(get_option('Admin_custome_login_gcaptcha'));
10
- if(isset($g_page['site_key']) && isset($g_page['secret_key'])){
11
- $site_key = $g_page['site_key'];
12
- $secret_key = $g_page['secret_key'];
13
- $acl_gcaptcha_theme = $g_page['acl_gcaptcha_theme'];
14
- }else{
15
- $site_key = '';
16
- $secret_key = '';
17
- $acl_gcaptcha_theme ='yes';
18
- }
19
 
20
  $this->public_key = $site_key;
21
  $this->private_key = $secret_key;
@@ -28,38 +28,37 @@ class ACL_gcaptcha_Login_Form {
28
  add_action( 'wp_authenticate_user', array( $this, 'validate_captcha_field' ), 10, 2 );
29
  }
30
 
31
-
32
  /** Output the ACL_gcaptcha form field. */
33
  public function captcha_display() {
34
  if($this->acl_gcaptcha_theme=="yes"){
35
  $acl_gcaptcha_theme="light";
36
- }else{
37
  $acl_gcaptcha_theme="dark";
38
  }
39
- ?>
40
- <script src="https://www.google.com/recaptcha/api.js" async defer></script>
41
  <div class="g-recaptcha" data-theme="<?php echo $acl_gcaptcha_theme; ?>" data-sitekey="<?php echo $this->public_key; ?>" style="margin-bottom:20px;"></div>
42
- <noscript>
43
- <div>
44
- <div style="width: 302px; height: 422px; position: relative;">
45
- <div style="width: 302px; height: 422px; position: absolute;">
46
- <iframe src="https://www.google.com/recaptcha/api/fallback?k=<?=$this->public_key;?>" frameborder="0" scrolling="no"
47
- style="width: 302px; height:422px; border-style: none;">
48
- </iframe>
49
- </div>
50
- </div>
51
- <div style="width: 300px; height: 60px; border-style: none;
52
- bottom: 12px; left: 25px; margin: 0px; padding: 0px; right: 25px;
53
- background: #f9f9f9; border: 1px solid #c1c1c1; border-radius: 3px;">
54
- <textarea id="g-recaptcha-response" name="g-recaptcha-response"
55
- class="g-recaptcha-response"
56
- style="width: 250px; height: 40px; border: 1px solid #c1c1c1;
57
- margin: 10px 25px; padding: 0px; resize: none;" >
58
- </textarea>
59
- </div>
60
- </div>
61
- </noscript>
62
- <?php
63
  }
64
 
65
  /**
@@ -75,7 +74,6 @@ class ACL_gcaptcha_Login_Form {
75
  if ( ! isset( $_POST['g-recaptcha-response'] ) || ! self::captcha_verification() ) {
76
  return new WP_Error( 'empty_captcha', '<strong>ERROR</strong>: Please confirm you are not a robot' );
77
  }
78
-
79
  return $user;
80
  }
81
 
@@ -87,27 +85,24 @@ class ACL_gcaptcha_Login_Form {
87
  public static function captcha_verification() {
88
 
89
  $response = isset( $_POST['g-recaptcha-response'] ) ? esc_attr( $_POST['g-recaptcha-response'] ) : '';
90
-
91
  $remote_ip = $_SERVER["REMOTE_ADDR"];
92
 
93
  // make a GET request to the Google reCAPTCHA Server
94
  $g_page = unserialize(get_option('Admin_custome_login_gcaptcha'));
95
- if(isset($g_page['site_key']) && isset($g_page['secret_key'])){
96
- $site_key = $g_page['site_key'];
97
- $secret_key = $g_page['secret_key'];
98
- }else{
99
- $site_key = '';
100
- $secret_key = '';
101
- }
102
- $request = wp_remote_get(
103
  'https://www.google.com/recaptcha/api/siteverify?secret=' . $secret_key . '&response=' . $response . '&remoteip=' . $remote_ip
104
  );
105
 
106
  // get the request response body
107
  $response_body = wp_remote_retrieve_body( $request );
108
-
109
  $result = json_decode( $response_body, true );
110
-
111
  return $result['success'];
112
  }
113
  }
6
 
7
  /** class constructor */
8
  public function __construct() {
9
+ $g_page = unserialize(get_option('Admin_custome_login_gcaptcha'));
10
+ if(isset($g_page['site_key']) && isset($g_page['secret_key'])){
11
+ $site_key = $g_page['site_key'];
12
+ $secret_key = $g_page['secret_key'];
13
+ $acl_gcaptcha_theme = $g_page['acl_gcaptcha_theme'];
14
+ } else {
15
+ $site_key = '';
16
+ $secret_key = '';
17
+ $acl_gcaptcha_theme ='yes';
18
+ }
19
 
20
  $this->public_key = $site_key;
21
  $this->private_key = $secret_key;
28
  add_action( 'wp_authenticate_user', array( $this, 'validate_captcha_field' ), 10, 2 );
29
  }
30
 
 
31
  /** Output the ACL_gcaptcha form field. */
32
  public function captcha_display() {
33
  if($this->acl_gcaptcha_theme=="yes"){
34
  $acl_gcaptcha_theme="light";
35
+ } else {
36
  $acl_gcaptcha_theme="dark";
37
  }
38
+ ?>
39
+ <script src="https://www.google.com/recaptcha/api.js" async defer></script>
40
  <div class="g-recaptcha" data-theme="<?php echo $acl_gcaptcha_theme; ?>" data-sitekey="<?php echo $this->public_key; ?>" style="margin-bottom:20px;"></div>
41
+ <noscript>
42
+ <div>
43
+ <div style="width: 302px; height: 422px; position: relative;">
44
+ <div style="width: 302px; height: 422px; position: absolute;">
45
+ <iframe src="https://www.google.com/recaptcha/api/fallback?k=<?=$this->public_key;?>" frameborder="0" scrolling="no"
46
+ style="width: 302px; height:422px; border-style: none;">
47
+ </iframe>
48
+ </div>
49
+ </div>
50
+ <div style="width: 300px; height: 60px; border-style: none;
51
+ bottom: 12px; left: 25px; margin: 0px; padding: 0px; right: 25px;
52
+ background: #f9f9f9; border: 1px solid #c1c1c1; border-radius: 3px;">
53
+ <textarea id="g-recaptcha-response" name="g-recaptcha-response"
54
+ class="g-recaptcha-response"
55
+ style="width: 250px; height: 40px; border: 1px solid #c1c1c1;
56
+ margin: 10px 25px; padding: 0px; resize: none;" >
57
+ </textarea>
58
+ </div>
59
+ </div>
60
+ </noscript>
61
+ <?php
62
  }
63
 
64
  /**
74
  if ( ! isset( $_POST['g-recaptcha-response'] ) || ! self::captcha_verification() ) {
75
  return new WP_Error( 'empty_captcha', '<strong>ERROR</strong>: Please confirm you are not a robot' );
76
  }
 
77
  return $user;
78
  }
79
 
85
  public static function captcha_verification() {
86
 
87
  $response = isset( $_POST['g-recaptcha-response'] ) ? esc_attr( $_POST['g-recaptcha-response'] ) : '';
 
88
  $remote_ip = $_SERVER["REMOTE_ADDR"];
89
 
90
  // make a GET request to the Google reCAPTCHA Server
91
  $g_page = unserialize(get_option('Admin_custome_login_gcaptcha'));
92
+ if(isset($g_page['site_key']) && isset($g_page['secret_key'])){
93
+ $site_key = $g_page['site_key'];
94
+ $secret_key = $g_page['secret_key'];
95
+ } else {
96
+ $site_key = '';
97
+ $secret_key = '';
98
+ }
99
+ $request = wp_remote_get (
100
  'https://www.google.com/recaptcha/api/siteverify?secret=' . $secret_key . '&response=' . $response . '&remoteip=' . $remote_ip
101
  );
102
 
103
  // get the request response body
104
  $response_body = wp_remote_retrieve_body( $request );
 
105
  $result = json_decode( $response_body, true );
 
106
  return $result['success'];
107
  }
108
  }
admin-custom-login.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Admin Custom Login
4
- * Version: 2.6.3
5
  * Description: Customize Your WordPress Login Screen Amazingly
6
  * Author: Weblizar
7
  * Author URI: https://weblizar.com/plugins/
@@ -138,7 +138,7 @@ function acl_advanced_login_form_plugin() {
138
  wp_enqueue_script('jquery');
139
  $dashboard_page = unserialize(get_option('Admin_custome_login_dashboard'));
140
  $top_page = unserialize(get_option('Admin_custome_login_top'));
141
- if ($top_page['top_bg_type'] == "slider-background" && $dashboard_page['dashboard_status'] == "enable"){
142
  wp_enqueue_script('modernizr',WEBLIZAR_NALF_PLUGIN_URL.'js/modernizr.custom.86080.js');
143
  wp_enqueue_style('demo', WEBLIZAR_NALF_PLUGIN_URL.'css/demo.css');
144
  }
@@ -166,14 +166,14 @@ function acl_footer_func() {
166
 
167
  <?php if($enable_inputbox_icon=='yes'){?>
168
  if (jQuery('#log_input_lable').length) {
169
- document.getElementById("log_input_lable").innerHTML="<?php _e('User Name',WEBLIZAR_ACL);?><div class='input-container'> <div class='icon-ph'><i class='fa <?php echo $user_input_icon; ?>'></i></div> <input id='user_login' name='log' class='input' type='text' placeholder='<?php _e('User Name',WEBLIZAR_ACL);?>'></div>";
170
- document.getElementById("pwd_input_lable").innerHTML="<?php _e('Password',WEBLIZAR_ACL);?><div class='input-container'> <div class='icon-ph'><i class='fa <?php echo $password_input_icon; ?>'></i></div> <input id='user_pass' name='pwd' class='input' type='password' placeholder='<?php _e('Password',WEBLIZAR_ACL);?>'></div>";
171
  jQuery('body.login div#login form .input, .login input[type="text"]').css('padding','5px 5px 5px 45px');
172
  }
173
  <?php } else { ?>
174
  if (jQuery('#log_input_lable').length) {
175
- jQuery('#loginform #user_login').attr('placeholder', '<?php _e('User Name',WEBLIZAR_ACL);?>');
176
- jQuery('#loginform #user_pass').attr('placeholder', '<?php _e('Password',WEBLIZAR_ACL);?>');
177
  jQuery('body.login div#login form .input, .login input[type="text"]').css('padding','5px 5px 5px 5px');
178
  }
179
  <?php }?>
@@ -441,8 +441,7 @@ function acl_export_settings() {
441
  'site_key' => $site_key,
442
  'secret_key' => $secret_key,
443
  'login_enable_gcaptcha' => $login_enable_gcaptcha,
444
- 'acl_gcaptcha_theme' => $acl_gcaptcha_theme
445
-
446
  ));
447
 
448
  ignore_user_abort( true );
@@ -795,8 +794,7 @@ function acl_import_settings() {
795
  'site_key' => $site_key,
796
  'secret_key' => $secret_key,
797
  'login_enable_gcaptcha' => $login_enable_gcaptcha,
798
- 'acl_gcaptcha_theme' => $acl_gcaptcha_theme
799
-
800
  ));
801
  update_option('Admin_custome_login_gcaptcha', $g_page);
802
 
1
  <?php
2
  /**
3
  * Plugin Name: Admin Custom Login
4
+ * Version: 2.6.4
5
  * Description: Customize Your WordPress Login Screen Amazingly
6
  * Author: Weblizar
7
  * Author URI: https://weblizar.com/plugins/
138
  wp_enqueue_script('jquery');
139
  $dashboard_page = unserialize(get_option('Admin_custome_login_dashboard'));
140
  $top_page = unserialize(get_option('Admin_custome_login_top'));
141
+ if($top_page['top_bg_type'] == "slider-background" && $dashboard_page['dashboard_status'] == "enable"){
142
  wp_enqueue_script('modernizr',WEBLIZAR_NALF_PLUGIN_URL.'js/modernizr.custom.86080.js');
143
  wp_enqueue_style('demo', WEBLIZAR_NALF_PLUGIN_URL.'css/demo.css');
144
  }
166
 
167
  <?php if($enable_inputbox_icon=='yes'){?>
168
  if (jQuery('#log_input_lable').length) {
169
+ document.getElementById("log_input_lable").innerHTML="<?php _e('Username or Email Address',WEBLIZAR_ACL);?><div class='input-container'> <div class='icon-ph'><i class='fa <?php echo $user_input_icon; ?>'></i></div> <input id='user_login' name='log' class='input' type='text' placeholder='<?php _e('Type Username or Email', WEBLIZAR_ACL); ?>'></div>";
170
+ document.getElementById("pwd_input_lable").innerHTML="<?php _e('Password',WEBLIZAR_ACL); ?><div class='input-container'> <div class='icon-ph'><i class='fa <?php echo $password_input_icon; ?>'></i></div> <input id='user_pass' name='pwd' class='input' type='password' placeholder='<?php _e('Type Password', WEBLIZAR_ACL); ?>'></div>";
171
  jQuery('body.login div#login form .input, .login input[type="text"]').css('padding','5px 5px 5px 45px');
172
  }
173
  <?php } else { ?>
174
  if (jQuery('#log_input_lable').length) {
175
+ jQuery('#loginform #user_login').attr('placeholder', '<?php _e('Type Username or Email',WEBLIZAR_ACL); ?>');
176
+ jQuery('#loginform #user_pass').attr('placeholder', '<?php _e('Type Password',WEBLIZAR_ACL); ?>');
177
  jQuery('body.login div#login form .input, .login input[type="text"]').css('padding','5px 5px 5px 5px');
178
  }
179
  <?php }?>
441
  'site_key' => $site_key,
442
  'secret_key' => $secret_key,
443
  'login_enable_gcaptcha' => $login_enable_gcaptcha,
444
+ 'acl_gcaptcha_theme' => $acl_gcaptcha_theme
 
445
  ));
446
 
447
  ignore_user_abort( true );
794
  'site_key' => $site_key,
795
  'secret_key' => $secret_key,
796
  'login_enable_gcaptcha' => $login_enable_gcaptcha,
797
+ 'acl_gcaptcha_theme' => $acl_gcaptcha_theme
 
798
  ));
799
  update_option('Admin_custome_login_gcaptcha', $g_page);
800
 
css/acl-custom.css CHANGED
@@ -37,6 +37,10 @@ body.login div#login h1 a,#login_error{
37
  }
38
 
39
  /* social icon gap */
 
 
 
 
40
  .divsocial a {
41
  margin: 2px;
42
  }
37
  }
38
 
39
  /* social icon gap */
40
+ .divsocial {
41
+ margin-top: 10px;
42
+ }
43
+
44
  .divsocial a {
45
  margin: 2px;
46
  }
includes/content.php CHANGED
@@ -25,7 +25,7 @@ Fonts
25
  <span class="icon-bar"></span>
26
  </button>
27
  <a class="sidebar-toggle hidden-xs" href="javascript:void(0);"><i class="fa fa-bars fa-2x"></i></a>
28
- <a class="navbar-brand coming-soon-admin-title" href="index.html" style="color:#fff;"><?php _e('Admin Custom Login', WEBLIZAR_ACL)?></a>
29
  </div>
30
 
31
  <!-- /.navbar-header -->
@@ -60,13 +60,13 @@ Fonts
60
  <img src="<?php echo WEBLIZAR_NALF_PLUGIN_URL.'css/img/photo.jpg'; ?>" alt="Profile Picture"/>
61
  </span>
62
  <p class="sidebar-profile-description">
63
- <?php _e('Powered By', WEBLIZAR_ACL)?>
64
  </p>
65
  <h3 class="sidebar-profile-name"><a href="http://weblizar.com/" target="_blank" style="background-color: #29282f; border-left:0px ; "><?php _e( 'Weblizar', WEBLIZAR_ACL ); ?></a></h3>
66
 
67
 
68
 
69
- <h5 style="color:#fff" class="acl-rate"><?php _e('Show Us Some Love (Rate Us)', WEBLIZAR_ACL)?></h5>
70
  <a class="acl-rate-us" style="text-align:center; text-decoration: none;font:normal 30px/l;" href="https://wordpress.org/plugins/admin-custom-login/" target="_blank">
71
  <span class="dashicons dashicons-star-filled"></span>
72
  <span class="dashicons dashicons-star-filled"></span>
@@ -83,8 +83,8 @@ Fonts
83
  <i class="fa fa-square fa-stack-2x text-primary"></i>
84
  <i class="fas fa-tachometer-alt fa-stack-1x fa-inverse"></i>
85
  </span>
86
- <span class="sidebar-item-title"><?php _e('Dashboard', WEBLIZAR_ACL)?></span>
87
- <span class="sidebar-item-subtitle"><?php _e('Application overview', WEBLIZAR_ACL)?></span>
88
  </a>
89
  </li>
90
  <li>
@@ -93,8 +93,8 @@ Fonts
93
  <i class="fa fa-square fa-stack-2x text-primary"></i>
94
  <i class="fa fa-paint-brush fa-stack-1x fa-inverse"></i>
95
  </span>
96
- <span class="sidebar-item-title"><?php _e('Background Design', WEBLIZAR_ACL)?></span>
97
- <span class="sidebar-item-subtitle"><?php _e('Modify Background design here', WEBLIZAR_ACL)?></span>
98
  </a>
99
  <!-- /.nav-second-level -->
100
  </li>
@@ -104,8 +104,8 @@ Fonts
104
  <i class="fa fa-square fa-stack-2x text-primary"></i>
105
  <i class="fa fa-paint-brush fa-stack-1x fa-inverse"></i>
106
  </span>
107
- <span class="sidebar-item-title"><?php _e('Login form Setting', WEBLIZAR_ACL)?></span>
108
- <span class="sidebar-item-subtitle"><?php _e('Modify Login design here', WEBLIZAR_ACL)?></span>
109
  </a>
110
  <!-- /.nav-second-level -->
111
  </li>
@@ -115,8 +115,8 @@ Fonts
115
  <i class="fa fa-square fa-stack-2x text-primary"></i>
116
  <i class="fas fa-font fa-stack-1x fa-inverse"></i>
117
  </span>
118
- <span class="sidebar-item-title"><?php _e('Font Setting', WEBLIZAR_ACL)?></span>
119
- <span class="sidebar-item-subtitle"><?php _e('Modify Login Form Style here', WEBLIZAR_ACL)?></span>
120
  </a>
121
  </li>
122
 
@@ -126,8 +126,8 @@ Fonts
126
  <i class="fa fa-square fa-stack-2x text-primary"></i>
127
  <i class="fa fa-wrench fa-stack-1x fa-inverse"></i>
128
  </span>
129
- <span class="sidebar-item-title"><?php _e('Logo Settings', WEBLIZAR_ACL)?></span>
130
- <span class="sidebar-item-subtitle"><?php _e('Customize Logo Settings here', WEBLIZAR_ACL)?></span>
131
  </a>
132
 
133
  <!-- /.nav-second-level -->
@@ -138,8 +138,8 @@ Fonts
138
  <i class="fa fa-square fa-stack-2x text-primary"></i>
139
  <i class="fa fa-table fa-stack-1x fa-inverse"></i>
140
  </span>
141
- <span class="sidebar-item-title"><?php _e('Social Settings', WEBLIZAR_ACL)?></span>
142
- <span class="sidebar-item-subtitle"><?php _e('Connect with your social profile', WEBLIZAR_ACL)?></span>
143
  </a>
144
  </li>
145
 
@@ -149,8 +149,8 @@ Fonts
149
  <i class="fa fa-square fa-stack-2x text-primary"></i>
150
  <i class="fab fa-google fa-stack-1x fa-inverse"></i>
151
  </span>
152
- <span class="sidebar-item-title"><?php _e('Google Captcha', WEBLIZAR_ACL)?></span>
153
- <span class="sidebar-item-subtitle"><?php _e('Explore captcha', WEBLIZAR_ACL)?></span>
154
  </a>
155
  </li>
156
 
@@ -160,8 +160,8 @@ Fonts
160
  <i class="fa fa-square fa-stack-2x text-primary"></i>
161
  <i class="fa fa-upload fa-stack-1x fa-inverse"></i>
162
  </span>
163
- <span class="sidebar-item-title"><?php _e('Export / Import', WEBLIZAR_ACL)?></span>
164
- <span class="sidebar-item-subtitle"><?php _e('Export / Import Your Data', WEBLIZAR_ACL)?></span>
165
  </a>
166
  </li>
167
  <li>
@@ -170,8 +170,8 @@ Fonts
170
  <i class="fa fa-square fa-stack-2x text-primary"></i>
171
  <i class="fa fa-plug fa-stack-1x fa-inverse"></i>
172
  </span>
173
- <span class="sidebar-item-title"><?php _e('Recommendations', WEBLIZAR_ACL)?></span>
174
- <span class="sidebar-item-subtitle"><?php _e('Get More Free Useful Plugins', WEBLIZAR_ACL)?></span>
175
  </a>
176
  </li>
177
  <li>
@@ -180,8 +180,8 @@ Fonts
180
  <i class="fa fa-square fa-stack-2x text-primary"></i>
181
  <i class="fa fa-question fa-stack-1x fa-inverse"></i>
182
  </span>
183
- <span class="sidebar-item-title"><?php _e('Help And Support', WEBLIZAR_ACL)?></span>
184
- <span class="sidebar-item-subtitle"><?php _e('Ask your query', WEBLIZAR_ACL)?></span>
185
  </a>
186
  </li>
187
  <li>
@@ -190,8 +190,8 @@ Fonts
190
  <i class="fa fa-square fa-stack-2x text-primary"></i>
191
  <i class="fab fa-angellist fa-stack-1x fa-inverse"></i>
192
  </span>
193
- <span class="sidebar-item-title"><?php _e('Our Offers', WEBLIZAR_ACL)?></span>
194
- <span class="sidebar-item-subtitle"><?php _e('', WEBLIZAR_ACL)?></span>
195
  </a>
196
  </li>
197
  <li>
@@ -200,8 +200,8 @@ Fonts
200
  <i class="fa fa-square fa-stack-2x text-primary"></i>
201
  <i class="fa fa-star fa-stack-1x fa-inverse"></i>
202
  </span>
203
- <span class="sidebar-item-title"><?php _e('rate & donate us', WEBLIZAR_ACL)?></span>
204
- <span class="sidebar-item-subtitle"><?php _e('If you like us', WEBLIZAR_ACL)?></span>
205
  </a>
206
  </li>
207
  </ul>
@@ -224,7 +224,7 @@ Fonts
224
  <?php require_once('design/text_and_color.php'); ?>
225
  </div>
226
  <div class="page-wrapper ui-tabs-panel deactive" id="option-ui-id-8">
227
- <?php require_once('Login-form-setting/Login-form-background.php'); ?>
228
  </div>
229
  <div class="page-wrapper ui-tabs-panel deactive" id="option-ui-id-9">
230
  <?php require_once('social/social.php'); ?>
25
  <span class="icon-bar"></span>
26
  </button>
27
  <a class="sidebar-toggle hidden-xs" href="javascript:void(0);"><i class="fa fa-bars fa-2x"></i></a>
28
+ <a class="navbar-brand coming-soon-admin-title" href="index.html" style="color:#fff;"><?php _e('Admin Custom Login', WEBLIZAR_ACL); ?></a>
29
  </div>
30
 
31
  <!-- /.navbar-header -->
60
  <img src="<?php echo WEBLIZAR_NALF_PLUGIN_URL.'css/img/photo.jpg'; ?>" alt="Profile Picture"/>
61
  </span>
62
  <p class="sidebar-profile-description">
63
+ <?php _e('Powered By', WEBLIZAR_ACL); ?>
64
  </p>
65
  <h3 class="sidebar-profile-name"><a href="http://weblizar.com/" target="_blank" style="background-color: #29282f; border-left:0px ; "><?php _e( 'Weblizar', WEBLIZAR_ACL ); ?></a></h3>
66
 
67
 
68
 
69
+ <h5 style="color:#fff" class="acl-rate"><?php _e('Show Us Some Love (Rate Us)', WEBLIZAR_ACL); ?></h5>
70
  <a class="acl-rate-us" style="text-align:center; text-decoration: none;font:normal 30px/l;" href="https://wordpress.org/plugins/admin-custom-login/" target="_blank">
71
  <span class="dashicons dashicons-star-filled"></span>
72
  <span class="dashicons dashicons-star-filled"></span>
83
  <i class="fa fa-square fa-stack-2x text-primary"></i>
84
  <i class="fas fa-tachometer-alt fa-stack-1x fa-inverse"></i>
85
  </span>
86
+ <span class="sidebar-item-title"><?php _e('Dashboard', WEBLIZAR_ACL); ?></span>
87
+ <span class="sidebar-item-subtitle"><?php _e('application overview', WEBLIZAR_ACL); ?></span>
88
  </a>
89
  </li>
90
  <li>
93
  <i class="fa fa-square fa-stack-2x text-primary"></i>
94
  <i class="fa fa-paint-brush fa-stack-1x fa-inverse"></i>
95
  </span>
96
+ <span class="sidebar-item-title"><?php _e('Background Design', WEBLIZAR_ACL); ?></span>
97
+ <span class="sidebar-item-subtitle"><?php _e('modify background design here', WEBLIZAR_ACL); ?></span>
98
  </a>
99
  <!-- /.nav-second-level -->
100
  </li>
104
  <i class="fa fa-square fa-stack-2x text-primary"></i>
105
  <i class="fa fa-paint-brush fa-stack-1x fa-inverse"></i>
106
  </span>
107
+ <span class="sidebar-item-title"><?php _e('Login form Setting', WEBLIZAR_ACL); ?></span>
108
+ <span class="sidebar-item-subtitle"><?php _e('modify login design here', WEBLIZAR_ACL); ?></span>
109
  </a>
110
  <!-- /.nav-second-level -->
111
  </li>
115
  <i class="fa fa-square fa-stack-2x text-primary"></i>
116
  <i class="fas fa-font fa-stack-1x fa-inverse"></i>
117
  </span>
118
+ <span class="sidebar-item-title"><?php _e('Font Setting', WEBLIZAR_ACL); ?></span>
119
+ <span class="sidebar-item-subtitle"><?php _e('modify login form style here', WEBLIZAR_ACL); ?></span>
120
  </a>
121
  </li>
122
 
126
  <i class="fa fa-square fa-stack-2x text-primary"></i>
127
  <i class="fa fa-wrench fa-stack-1x fa-inverse"></i>
128
  </span>
129
+ <span class="sidebar-item-title"><?php _e('Logo Settings', WEBLIZAR_ACL); ?></span>
130
+ <span class="sidebar-item-subtitle"><?php _e('customize logo settings here', WEBLIZAR_ACL); ?></span>
131
  </a>
132
 
133
  <!-- /.nav-second-level -->
138
  <i class="fa fa-square fa-stack-2x text-primary"></i>
139
  <i class="fa fa-table fa-stack-1x fa-inverse"></i>
140
  </span>
141
+ <span class="sidebar-item-title"><?php _e('Social Settings', WEBLIZAR_ACL); ?></span>
142
+ <span class="sidebar-item-subtitle"><?php _e('connect with your social profile', WEBLIZAR_ACL); ?></span>
143
  </a>
144
  </li>
145
 
149
  <i class="fa fa-square fa-stack-2x text-primary"></i>
150
  <i class="fab fa-google fa-stack-1x fa-inverse"></i>
151
  </span>
152
+ <span class="sidebar-item-title"><?php _e('Google Captcha', WEBLIZAR_ACL); ?></span>
153
+ <span class="sidebar-item-subtitle"><?php _e('configure captcha settings', WEBLIZAR_ACL); ?></span>
154
  </a>
155
  </li>
156
 
160
  <i class="fa fa-square fa-stack-2x text-primary"></i>
161
  <i class="fa fa-upload fa-stack-1x fa-inverse"></i>
162
  </span>
163
+ <span class="sidebar-item-title"><?php _e('Export / Import', WEBLIZAR_ACL); ?></span>
164
+ <span class="sidebar-item-subtitle"><?php _e('import / export plugin settings', WEBLIZAR_ACL); ?></span>
165
  </a>
166
  </li>
167
  <li>
170
  <i class="fa fa-square fa-stack-2x text-primary"></i>
171
  <i class="fa fa-plug fa-stack-1x fa-inverse"></i>
172
  </span>
173
+ <span class="sidebar-item-title"><?php _e('Recommendations', WEBLIZAR_ACL); ?></span>
174
+ <span class="sidebar-item-subtitle"><?php _e('get more free plugins', WEBLIZAR_ACL); ?></span>
175
  </a>
176
  </li>
177
  <li>
180
  <i class="fa fa-square fa-stack-2x text-primary"></i>
181
  <i class="fa fa-question fa-stack-1x fa-inverse"></i>
182
  </span>
183
+ <span class="sidebar-item-title"><?php _e('Help And Support', WEBLIZAR_ACL); ?></span>
184
+ <span class="sidebar-item-subtitle"><?php _e('ask your queries', WEBLIZAR_ACL); ?></span>
185
  </a>
186
  </li>
187
  <li>
190
  <i class="fa fa-square fa-stack-2x text-primary"></i>
191
  <i class="fab fa-angellist fa-stack-1x fa-inverse"></i>
192
  </span>
193
+ <span class="sidebar-item-title"><?php _e('Our Offers', WEBLIZAR_ACL); ?></span>
194
+ <span class="sidebar-item-subtitle"><?php _e('weblizar premium products', WEBLIZAR_ACL); ?></span>
195
  </a>
196
  </li>
197
  <li>
200
  <i class="fa fa-square fa-stack-2x text-primary"></i>
201
  <i class="fa fa-star fa-stack-1x fa-inverse"></i>
202
  </span>
203
+ <span class="sidebar-item-title"><?php _e('Rate & Donate Us', WEBLIZAR_ACL); ?></span>
204
+ <span class="sidebar-item-subtitle"><?php _e('if you like us', WEBLIZAR_ACL); ?></span>
205
  </a>
206
  </li>
207
  </ul>
224
  <?php require_once('design/text_and_color.php'); ?>
225
  </div>
226
  <div class="page-wrapper ui-tabs-panel deactive" id="option-ui-id-8">
227
+ <?php require_once('Login-form-setting/login-form-background.php'); ?>
228
  </div>
229
  <div class="page-wrapper ui-tabs-panel deactive" id="option-ui-id-9">
230
  <?php require_once('social/social.php'); ?>
includes/dashboard/dashboard.php CHANGED
@@ -51,7 +51,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
51
  <td>
52
  <h4><?php _e('Copy below link and open in another browser where you are not logged in', WEBLIZAR_ACL)?></h4>
53
  <br>
54
- <span style="color:#ef4238"> <?php echo wp_login_url(); ?> </span>
55
  </td>
56
  </tr>
57
  </table>
@@ -73,8 +73,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
73
  <input type="image" src="https://www.paypalobjects.com/en_GB/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal – The safer, easier way to pay online!">
74
  <img alt="" border="0" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1">
75
  </form>
76
- </td>
77
-
78
  </tr>
79
  </table>
80
  </div>
@@ -183,20 +182,20 @@ function Custom_login_dashboard(Action, id) {
183
 
184
  // Save Message box Close On Mouse Hover
185
  document.getElementById('dialog-close-button').disabled = false;
186
- jQuery('#dialog-close-button').hover(function () {
187
- jQuery("#dialog-close-button").click();
188
- document.getElementById('dialog-close-button').disabled = true;
189
- }
190
  );
191
 
192
  // Reset Message box Close On Mouse Hover
193
  document.getElementById('dialog-close-button7').disabled = false;
194
- jQuery('#dialog-close-button7').hover(function () {
195
- jQuery("#dialog-close-button7").click();
196
- document.getElementById('dialog-close-button7').disabled = true;
197
- }
198
  );
199
-
200
  if(Action == "dashboardReset") {
201
  (function() {
202
  var dlgtrigger = document.querySelector( '[data-dialog7]' ),
51
  <td>
52
  <h4><?php _e('Copy below link and open in another browser where you are not logged in', WEBLIZAR_ACL)?></h4>
53
  <br>
54
+ <span style="color:#ef4238"><?php echo wp_login_url(); ?></span>
55
  </td>
56
  </tr>
57
  </table>
73
  <input type="image" src="https://www.paypalobjects.com/en_GB/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal – The safer, easier way to pay online!">
74
  <img alt="" border="0" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1">
75
  </form>
76
+ </td>
 
77
  </tr>
78
  </table>
79
  </div>
182
 
183
  // Save Message box Close On Mouse Hover
184
  document.getElementById('dialog-close-button').disabled = false;
185
+ jQuery('#dialog-close-button').hover(function () {
186
+ jQuery("#dialog-close-button").click();
187
+ document.getElementById('dialog-close-button').disabled = true;
188
+ }
189
  );
190
 
191
  // Reset Message box Close On Mouse Hover
192
  document.getElementById('dialog-close-button7').disabled = false;
193
+ jQuery('#dialog-close-button7').hover(function () {
194
+ jQuery("#dialog-close-button7").click();
195
+ document.getElementById('dialog-close-button7').disabled = true;
196
+ }
197
  );
198
+
199
  if(Action == "dashboardReset") {
200
  (function() {
201
  var dlgtrigger = document.querySelector( '[data-dialog7]' ),
includes/{Login-form-setting → login-form-setting}/Login-form-background.php RENAMED
File without changes
includes/settings/page-settings.php CHANGED
@@ -1,4 +1,4 @@
1
- <!-- Dashboard Settings panel content --->
2
  <?php
3
  // Exit if accessed directly
4
  if ( ! defined( 'ABSPATH' ) ) exit;
@@ -59,7 +59,7 @@ jQuery(function() {
59
  <div class="panel-body">
60
  <table class="form-table">
61
  <tr>
62
- <th scope="row" ><?php _e('Logo',WEBLIZAR_ACL)?></th>
63
  <td></td>
64
  </tr>
65
  <tr class="radio-span" style="border-bottom:none;">
@@ -95,7 +95,7 @@ jQuery(function() {
95
  <div class="panel-body">
96
  <table class="form-table">
97
  <tr>
98
- <th scope="row" ><?php _e('Logo Width',WEBLIZAR_ACL)?></th>
99
  <td></td>
100
  </tr>
101
  <tr style="border-bottom:none;">
@@ -112,7 +112,7 @@ jQuery(function() {
112
  <div class="panel-body">
113
  <table class="form-table">
114
  <tr>
115
- <th scope="row" ><?php _e('Logo Height',WEBLIZAR_ACL)?></th>
116
  <td></td>
117
  </tr>
118
  <tr style="border-bottom:none;">
@@ -129,12 +129,12 @@ jQuery(function() {
129
  <div class="panel-body">
130
  <table class="form-table">
131
  <tr>
132
- <th scope="row" ><?php _e('Logo URL',WEBLIZAR_ACL)?></th>
133
  <td></td>
134
  </tr>
135
  <tr class="radio-span" style="border-bottom:none;">
136
  <td>
137
- <input type="text" class="pro_text" id="log-url" name="log-url" placeholder="<?php _e('Logo URL',WEBLIZAR_ACL)?>" size="56" value="<?php echo $logo_url; ?>"/>
138
  </td>
139
  </tr>
140
  </table>
@@ -144,12 +144,12 @@ jQuery(function() {
144
  <div class="panel-body">
145
  <table class="form-table">
146
  <tr>
147
- <th scope="row" ><?php _e('Logo URL Title',WEBLIZAR_ACL)?></th>
148
  <td></td>
149
  </tr>
150
  <tr class="radio-span" style="border-bottom:none;">
151
  <td>
152
- <input type="text" class="pro_text" id="log-url-title" name="log-url-title" placeholder="<?php _e('Logo URL Title',WEBLIZAR_ACL)?>" size="56" value="<?php echo $logo_url_title; ?>"/>
153
  </td>
154
  </tr>
155
  </table>
@@ -194,7 +194,6 @@ jQuery(function() {
194
  </div>
195
  </div>
196
  </div>
197
- <!-- /row -->
198
  <script>
199
  function Custom_login_logo(Action, id){
200
  if(Action == "logoSave") {
1
+ <!-- Logo Settings --->
2
  <?php
3
  // Exit if accessed directly
4
  if ( ! defined( 'ABSPATH' ) ) exit;
59
  <div class="panel-body">
60
  <table class="form-table">
61
  <tr>
62
+ <th scope="row" ><?php _e('Logo Image',WEBLIZAR_ACL)?></th>
63
  <td></td>
64
  </tr>
65
  <tr class="radio-span" style="border-bottom:none;">
95
  <div class="panel-body">
96
  <table class="form-table">
97
  <tr>
98
+ <th scope="row" ><?php _e('Logo Image Width',WEBLIZAR_ACL)?></th>
99
  <td></td>
100
  </tr>
101
  <tr style="border-bottom:none;">
112
  <div class="panel-body">
113
  <table class="form-table">
114
  <tr>
115
+ <th scope="row" ><?php _e('Logo Image Height',WEBLIZAR_ACL)?></th>
116
  <td></td>
117
  </tr>
118
  <tr style="border-bottom:none;">
129
  <div class="panel-body">
130
  <table class="form-table">
131
  <tr>
132
+ <th scope="row" ><?php _e('Logo Link URL',WEBLIZAR_ACL)?></th>
133
  <td></td>
134
  </tr>
135
  <tr class="radio-span" style="border-bottom:none;">
136
  <td>
137
+ <input type="text" class="pro_text" id="log-url" name="log-url" placeholder="<?php _e('Logo Link URL',WEBLIZAR_ACL); ?>" size="56" value="<?php echo $logo_url; ?>"/>
138
  </td>
139
  </tr>
140
  </table>
144
  <div class="panel-body">
145
  <table class="form-table">
146
  <tr>
147
+ <th scope="row" ><?php _e('Logo Image Title',WEBLIZAR_ACL)?></th>
148
  <td></td>
149
  </tr>
150
  <tr class="radio-span" style="border-bottom:none;">
151
  <td>
152
+ <input type="text" class="pro_text" id="log-url-title" name="log-url-title" placeholder="<?php _e('Logo Image Title', WEBLIZAR_ACL); ?>" size="56" value="<?php echo $logo_url_title; ?>"/>
153
  </td>
154
  </tr>
155
  </table>
194
  </div>
195
  </div>
196
  </div>
 
197
  <script>
198
  function Custom_login_logo(Action, id){
199
  if(Action == "logoSave") {
installation.php CHANGED
@@ -16,7 +16,7 @@ if(!isset($Version)){
16
  ));
17
  add_option("Admin_custome_login_dashboard", $dashboard_page);
18
 
19
- $top_page= serialize(array(
20
  'top_bg_type'=>'static-background-image',
21
  'top_color' => '#f9fad2',
22
  'top_image' => WEBLIZAR_NALF_PLUGIN_URL.'/images/3d-background.jpg',
@@ -29,7 +29,7 @@ if(!isset($Version)){
29
  ));
30
  add_option("Admin_custome_login_top", $top_page);
31
 
32
- $login_page= serialize(array(
33
  'login_form_position' => 'default',
34
  'login_form_float' => 'center',
35
  'login_form_left'=>'700',
@@ -53,7 +53,7 @@ if(!isset($Version)){
53
  'log_form_above_msg' => '',
54
  'login_msg_fontsize' => '16',
55
  'login_msg_font_color' => '#000000',
56
- 'tagline_msg' => 'This login form is created by <a href="https://wordpress.org/plugins/admin-custom-login/" target="_blank">ACL</a> , developed by <a href="https://www.weblizar.com" target="_blank">weblizar</a>',
57
  ));
58
  add_option("Admin_custome_login_login", $login_page);
59
 
@@ -107,8 +107,8 @@ if(!isset($Version)){
107
  'social_vkontakte_link' => '',
108
  'social_skype_link' => '',
109
  'social_instagram_link' => 'https://instagram.com',
110
- 'social_telegram_link' => 'https://telegram.org/',
111
- 'social_whatsapp_link' => 'https://whatsapp.com/',
112
  ));
113
  add_option("Admin_custome_login_Social", $Social_page);
114
 
16
  ));
17
  add_option("Admin_custome_login_dashboard", $dashboard_page);
18
 
19
+ $top_page = serialize(array(
20
  'top_bg_type'=>'static-background-image',
21
  'top_color' => '#f9fad2',
22
  'top_image' => WEBLIZAR_NALF_PLUGIN_URL.'/images/3d-background.jpg',
29
  ));
30
  add_option("Admin_custome_login_top", $top_page);
31
 
32
+ $login_page = serialize(array(
33
  'login_form_position' => 'default',
34
  'login_form_float' => 'center',
35
  'login_form_left'=>'700',
53
  'log_form_above_msg' => '',
54
  'login_msg_fontsize' => '16',
55
  'login_msg_font_color' => '#000000',
56
+ 'tagline_msg' => 'Login form is designed using <a href="https://wordpress.org/plugins/admin-custom-login/" target="_blank">ACL</a> plugin by <a href="https://www.weblizar.com" target="_blank">Weblizar</a>.',
57
  ));
58
  add_option("Admin_custome_login_login", $login_page);
59
 
107
  'social_vkontakte_link' => '',
108
  'social_skype_link' => '',
109
  'social_instagram_link' => 'https://instagram.com',
110
+ 'social_telegram_link' => '',
111
+ 'social_whatsapp_link' => '',
112
  ));
113
  add_option("Admin_custome_login_Social", $Social_page);
114
 
languages/admin-custom-login-de_DE.mo CHANGED
Binary file
languages/admin-custom-login-de_DE.po CHANGED
@@ -1,520 +1,408 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: admin-custom-login\n"
4
- "POT-Creation-Date: 2018-01-31 15:35+0530\n"
5
- "PO-Revision-Date: 2018-01-31 15:35+0530\n"
6
  "Last-Translator: Markus Petautschnig <markus_petautschnig@yahoo.de>\n"
7
  "Language-Team: \n"
8
  "Language: de_DE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.0.6\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: _e;__;_\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: admin-custom-login.php:157 admin-custom-login.php:163
20
- msgid "User Name"
21
- msgstr "Benutzername"
 
 
 
 
22
 
23
- #: admin-custom-login.php:158 admin-custom-login.php:164
24
  msgid "Password"
25
  msgstr "Passwort"
26
 
27
- #: admin-custom-login.php:174
 
 
 
 
28
  msgid "Find Us On Social Media"
29
  msgstr ""
30
 
31
- #: admin-custom-login.php:429
32
  msgid "Please upload a valid .json file"
33
  msgstr "Bitte eine gültige .json-Datei hochladen"
34
 
35
- #: admin-custom-login.php:435
36
  msgid "Please upload a file to import"
37
  msgstr "Bitte eine Datei, für den Import, hochladen"
38
 
39
- #: includes/Login-form-setting/Login-form-background.php:175
40
- msgid "Login Settings"
41
- msgstr "Anmeldeeinstellungen"
42
-
43
- #: includes/Login-form-setting/Login-form-background.php:188
44
- msgid "Login Form Position"
45
- msgstr "Anmeldeformularposition"
46
-
47
- #: includes/Login-form-setting/Login-form-background.php:194
48
- msgid "Default"
49
- msgstr "Standard"
50
-
51
- #: includes/Login-form-setting/Login-form-background.php:195
52
- msgid "Floating"
53
- msgstr "Schwimmend"
54
-
55
- #: includes/Login-form-setting/Login-form-background.php:196
56
- msgid "Floating With Customization"
57
- msgstr "Schwimmend mit Anpassung"
58
-
59
- #: includes/Login-form-setting/Login-form-background.php:207
60
- msgid "Float Settings"
61
- msgstr "Einstellungen für Schwimmen"
62
-
63
- #: includes/Login-form-setting/Login-form-background.php:213
64
- msgid "Left"
65
- msgstr "Links"
66
-
67
- #: includes/Login-form-setting/Login-form-background.php:216
68
- msgid "Center"
69
- msgstr "Mitte"
70
 
71
- #: includes/Login-form-setting/Login-form-background.php:219
72
- msgid "Right"
73
- msgstr "Rechts"
74
 
75
- #: includes/Login-form-setting/Login-form-background.php:229
76
- msgid "Floating With Customization Settings"
77
- msgstr "Schwimmend mit angepassten Einstellungen"
78
 
79
- #: includes/Login-form-setting/Login-form-background.php:250
80
- msgid "Note: This form position setting will be not responsive."
81
  msgstr ""
82
- "Hinweis: Die Einstellungen für die Position des Formulars ist nicht "
83
- "responsive!."
84
 
85
- #: includes/Login-form-setting/Login-form-background.php:260
86
- #: includes/design/background.php:103 includes/design/background.php:110
87
- msgid "Select Background"
88
- msgstr "Wähle Hintergrund"
89
-
90
- #: includes/Login-form-setting/Login-form-background.php:266
91
- msgid "Select background"
92
- msgstr "Wähle Hintergrund"
93
-
94
- #: includes/Login-form-setting/Login-form-background.php:267
95
- #: includes/design/background.php:111
96
- msgid "Static Background Color"
97
- msgstr "Statische Hintergrund Farbe"
98
-
99
- #: includes/Login-form-setting/Login-form-background.php:268
100
- #: includes/design/background.php:112
101
- msgid "Static Background Image"
102
- msgstr "Statisches Hintergrund Bild"
103
-
104
- #: includes/Login-form-setting/Login-form-background.php:284
105
- #: includes/design/background.php:131
106
- msgid "Background Color"
107
- msgstr "Hintergrundfarbe"
108
-
109
- #: includes/Login-form-setting/Login-form-background.php:299
110
- msgid "Login Form Opacity"
111
- msgstr "Anmeldeformular Deckkraft"
112
-
113
- #: includes/Login-form-setting/Login-form-background.php:321
114
- #: includes/design/background.php:153 includes/design/background.php:172
115
- msgid "Background Image"
116
- msgstr "Hintergrundbild"
117
-
118
- #: includes/Login-form-setting/Login-form-background.php:326
119
- #: includes/design/background.php:158 includes/settings/page-settings.php:67
120
- msgid "No media selected!"
121
- msgstr "Kein Medium gewählt!"
122
-
123
- #: includes/Login-form-setting/Login-form-background.php:327
124
- #: includes/design/background.php:160 includes/settings/page-settings.php:68
125
- msgid "Upload"
126
- msgstr "Hochladen"
127
-
128
- #: includes/Login-form-setting/Login-form-background.php:329
129
- #: includes/design/background.php:162 includes/settings/page-settings.php:70
130
- msgid "Preview"
131
- msgstr "Vorschau"
132
-
133
- #: includes/Login-form-setting/Login-form-background.php:331
134
- #: includes/design/background.php:164
135
- msgid "Remove"
136
- msgstr "Entfernen"
137
-
138
- #: includes/Login-form-setting/Login-form-background.php:339
139
- #: includes/settings/page-settings.php:78
140
- msgid "Login Background Image"
141
- msgstr "Login Hintergrund Bild"
142
-
143
- #: includes/Login-form-setting/Login-form-background.php:345
144
- #: includes/Login-form-setting/Login-form-background.php:592
145
- #: includes/Login-form-setting/Login-form-background.php:606
146
- #: includes/dashboard/dashboard.php:70 includes/dashboard/dashboard.php:84
147
- #: includes/design/background.php:180 includes/design/background.php:368
148
- #: includes/design/background.php:383 includes/design/text_and_color.php:2594
149
- #: includes/design/text_and_color.php:2609
150
- #: includes/settings/page-settings.php:84
151
- #: includes/settings/page-settings.php:168
152
- #: includes/settings/page-settings.php:182 includes/social/social.php:193
153
- #: includes/social/social.php:207
154
- msgid "Close"
155
- msgstr "Schließen"
156
-
157
- #: includes/Login-form-setting/Login-form-background.php:360
158
- #: includes/design/background.php:213
159
- msgid "Background Repeat"
160
- msgstr "Hintergrund wiederholen"
161
-
162
- #: includes/Login-form-setting/Login-form-background.php:366
163
- #: includes/design/background.php:219
164
- msgid "No Repeat"
165
- msgstr "Kein wiederholen"
166
-
167
- #: includes/Login-form-setting/Login-form-background.php:367
168
- #: includes/design/background.php:220
169
- msgid "Repeat"
170
- msgstr "Wiederholen"
171
-
172
- #: includes/Login-form-setting/Login-form-background.php:368
173
- #: includes/design/background.php:221
174
- msgid "Repeat Horizontally"
175
- msgstr "Horizontal wiederholen"
176
-
177
- #: includes/Login-form-setting/Login-form-background.php:369
178
- #: includes/design/background.php:222
179
- msgid "Repeat Vertically"
180
- msgstr "Vertikal wiederholen"
181
-
182
- #: includes/Login-form-setting/Login-form-background.php:380
183
- #: includes/design/background.php:234
184
- msgid "Background Position"
185
- msgstr "Hintergrund Position"
186
-
187
- #: includes/Login-form-setting/Login-form-background.php:386
188
- #: includes/design/background.php:240
189
- msgid "Left Top"
190
- msgstr "Links Oben"
191
-
192
- #: includes/Login-form-setting/Login-form-background.php:387
193
- #: includes/design/background.php:241
194
- msgid "Left Center"
195
- msgstr "Links Mitte"
196
-
197
- #: includes/Login-form-setting/Login-form-background.php:388
198
- #: includes/design/background.php:242
199
- msgid "Left Bottom"
200
- msgstr "Links Unten"
201
-
202
- #: includes/Login-form-setting/Login-form-background.php:389
203
- #: includes/design/background.php:243
204
- msgid "Right Top"
205
- msgstr "Rechts Oben"
206
-
207
- #: includes/Login-form-setting/Login-form-background.php:390
208
- #: includes/design/background.php:244
209
- msgid "Right Center"
210
- msgstr "Rechts Mitte"
211
 
212
- #: includes/Login-form-setting/Login-form-background.php:391
213
- #: includes/design/background.php:245
214
- msgid "Right Bottom"
215
- msgstr "Rechts UNten"
 
216
 
217
- #: includes/Login-form-setting/Login-form-background.php:392
218
- #: includes/design/background.php:246
219
- msgid "Center Top"
220
- msgstr "Mitte Oben"
221
 
222
- #: includes/Login-form-setting/Login-form-background.php:393
223
- #: includes/design/background.php:247
224
- msgid "Center Center"
225
- msgstr "Mitte Mitte"
 
226
 
227
- #: includes/Login-form-setting/Login-form-background.php:394
228
- #: includes/design/background.php:248
229
- msgid "Center Bottom"
230
- msgstr "Mitte Unten"
231
 
232
- #: includes/Login-form-setting/Login-form-background.php:406
233
- msgid "Background Effect"
234
- msgstr "Hintergrund Effekt"
 
 
235
 
236
- #: includes/Login-form-setting/Login-form-background.php:412
237
- msgid "Select overlay effect"
238
- msgstr "Wähle Überlappungseffekt"
239
 
240
- #: includes/Login-form-setting/Login-form-background.php:413
241
- msgid "No Overlay Effect"
242
- msgstr "Kein Überlappungseffekt"
 
 
243
 
244
- #: includes/Login-form-setting/Login-form-background.php:414
245
- msgid "Overlay Effect 1"
246
- msgstr "Überlappungseffekt 1"
247
 
248
- #: includes/Login-form-setting/Login-form-background.php:415
249
- msgid "Overlay Effect 2"
250
- msgstr "Überlappungseffekt 2"
 
 
251
 
252
- #: includes/Login-form-setting/Login-form-background.php:416
253
- msgid "Overlay Effect 3"
254
- msgstr "Überlappungseffekt 3"
255
 
256
- #: includes/Login-form-setting/Login-form-background.php:429
257
- msgid "Login Form Width"
258
- msgstr "Anmeldeformular Weite"
 
 
259
 
260
- #: includes/Login-form-setting/Login-form-background.php:446
261
- msgid "Border Color"
262
- msgstr "Umrandungsfarbe"
 
 
263
 
264
- #: includes/Login-form-setting/Login-form-background.php:461
265
- msgid "Border Radius"
266
- msgstr "Umrandungsradius"
 
 
267
 
268
- #: includes/Login-form-setting/Login-form-background.php:478
269
- msgid "Border Style"
270
- msgstr "Umrandungsstil"
271
 
272
- #: includes/Login-form-setting/Login-form-background.php:484
273
- msgid "None"
274
- msgstr "Keinen"
275
 
276
- #: includes/Login-form-setting/Login-form-background.php:485
277
- msgid "Solid"
278
- msgstr "Solide"
279
 
280
- #: includes/Login-form-setting/Login-form-background.php:486
281
- msgid "Dotted"
282
- msgstr "Gepunktet"
 
 
283
 
284
- #: includes/Login-form-setting/Login-form-background.php:487
285
- msgid "Dashed"
286
- msgstr "Gestrichelt"
287
 
288
- #: includes/Login-form-setting/Login-form-background.php:488
289
- msgid "Double"
290
- msgstr "Doppelt"
 
 
291
 
292
- #: includes/Login-form-setting/Login-form-background.php:499
293
- msgid "Border Thickness"
294
- msgstr "Umrandungsdicke"
295
 
296
- #: includes/Login-form-setting/Login-form-background.php:516
297
- msgid "Enable Form Shadow?"
298
- msgstr "Aktiviere Formularschatten?"
299
 
300
- #: includes/Login-form-setting/Login-form-background.php:522
301
- #: includes/design/background.php:201 includes/design/text_and_color.php:244
302
- #: includes/design/text_and_color.php:2531
303
- msgid "Yes"
304
- msgstr "Ja"
305
 
306
- #: includes/Login-form-setting/Login-form-background.php:525
307
- #: includes/design/text_and_color.php:247
308
- #: includes/design/text_and_color.php:2534
309
- msgid "No"
310
- msgstr "Nein"
311
 
312
- #: includes/Login-form-setting/Login-form-background.php:536
313
- msgid "Form Shadow Color"
314
- msgstr "Formularschatten Farbe"
315
 
316
- #: includes/Login-form-setting/Login-form-background.php:551
317
- msgid "Redirect Users After Login (Not Work For Admin)"
318
- msgstr ""
319
 
320
- #: includes/Login-form-setting/Login-form-background.php:556
321
- msgid "Redirect URL"
322
- msgstr ""
 
323
 
324
- #: includes/Login-form-setting/Login-form-background.php:557
325
- msgid ""
326
- "Enter the URL to redirect users after login, Setting will not work for an "
327
- "administrator."
328
- msgstr ""
329
 
330
- #: includes/Login-form-setting/Login-form-background.php:567
331
- #: includes/Login-form-setting/Login-form-background.php:572
332
- msgid "Custom CSS"
333
- msgstr "Benutzerdefiniertes CSS"
334
 
335
- #: includes/Login-form-setting/Login-form-background.php:574
336
- msgid "Enter any custom css you want to apply on login panel."
337
  msgstr ""
338
- "Fügen Sie einen beliebigen, benutzerdefinierten CSS-Code ein, den Sie dem "
339
- "Anmelde-Panel hinzufügen möchten."
340
-
341
- #: includes/Login-form-setting/Login-form-background.php:575
342
- msgid "Note: Please Do Not Use"
343
- msgstr "Hinweis: Bitte nicht verwenden"
344
 
345
- #: includes/Login-form-setting/Login-form-background.php:575
346
- msgid "Tag With Custom CSS"
347
- msgstr "Tag nicht mit benutzerdefiniertem CSS-Code verbinden"
348
-
349
- #: includes/Login-form-setting/Login-form-background.php:592
350
- #: includes/Login-form-setting/Login-form-background.php:606
351
- msgid "Login"
352
- msgstr "Login"
353
 
354
- #: includes/Login-form-setting/Login-form-background.php:592
355
- #: includes/dashboard/dashboard.php:70 includes/design/background.php:368
356
- #: includes/design/text_and_color.php:2594
357
- #: includes/settings/page-settings.php:168 includes/social/social.php:193
 
358
  msgid "Setting Save Successfully"
359
  msgstr "Einstellungen erfolgreich gespeichert"
360
 
361
- #: includes/Login-form-setting/Login-form-background.php:606
362
- #: includes/dashboard/dashboard.php:84 includes/design/background.php:383
363
- #: includes/design/text_and_color.php:2609
364
- #: includes/settings/page-settings.php:182 includes/social/social.php:207
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
365
  msgid "Setting Reset Successfully"
366
  msgstr "Einstellungen erfolgreich zurückgesetzt"
367
 
368
- #: includes/Login-form-setting/Login-form-background.php:613
369
- #: includes/dashboard/dashboard.php:91 includes/design/background.php:391
370
- #: includes/design/text_and_color.php:2617
371
- #: includes/settings/page-settings.php:189 includes/social/social.php:214
 
372
  msgid "Save Changes"
373
  msgstr "Änderungen speichern"
374
 
375
- #: includes/Login-form-setting/Login-form-background.php:616
376
- #: includes/dashboard/dashboard.php:94 includes/design/background.php:394
377
- #: includes/design/text_and_color.php:2620
378
- #: includes/settings/page-settings.php:192 includes/social/social.php:217
 
379
  msgid "Reset Default"
380
  msgstr "Auf Standard zurücksetzten"
381
 
382
- #: includes/content.php:28
383
- msgid "Admin Custom Login"
384
- msgstr "Admin Custom Login"
385
-
386
- #: includes/content.php:63
387
- msgid "Powered By"
388
- msgstr "Bereitgestellt von"
389
-
390
- #: includes/content.php:65
391
- msgid "Weblizar"
392
- msgstr "Weblizar"
393
-
394
- #: includes/content.php:69
395
- msgid "Show Us Some Love (Rate Us)"
396
- msgstr ""
397
-
398
- #: includes/content.php:85 includes/dashboard/dashboard.php:70
399
- #: includes/dashboard/dashboard.php:84
400
- msgid "Dashboard"
401
- msgstr "Armaturenbrett"
402
-
403
- #: includes/content.php:86
404
- msgid "Application overview"
405
- msgstr "Anwendungsübersicht"
406
 
407
- #: includes/content.php:95
408
- msgid "Background Design"
409
- msgstr "Hintergrund Design"
 
410
 
411
- #: includes/content.php:96
412
- msgid "Modify Background design here"
413
- msgstr "Hintergrunddesign hier ändern"
414
 
415
- #: includes/content.php:106
416
- msgid "Login form Setting"
417
- msgstr "Formular Einstell"
 
418
 
419
- #: includes/content.php:107
420
- msgid "Modify Login design here"
421
- msgstr "Login Design hier ändern"
 
422
 
423
- #: includes/content.php:117
424
- msgid "Font Setting"
425
- msgstr "Schrift Einstell"
426
 
427
- #: includes/content.php:118
428
- msgid "Modify Login Form Style here"
429
- msgstr "Anmeldeformular-Stil hier ändern"
 
430
 
431
- #: includes/content.php:128 includes/settings/page-settings.php:50
432
- msgid "Logo Settings"
433
- msgstr "Logo Einstellungen"
 
434
 
435
- #: includes/content.php:129
436
- msgid "Customize Logo Settings here"
437
- msgstr "Logo Einstellungen hier personalisieren"
 
 
438
 
439
- #: includes/content.php:140 includes/social/social.php:21
440
- msgid "Social Settings"
441
- msgstr "Social Einstell"
 
 
442
 
443
- #: includes/content.php:141
444
- msgid "Connect with your social profile"
445
- msgstr "Verknüpfen Sie Ihre Sozialen Profile"
 
 
446
 
447
- #: includes/content.php:151
448
- msgid "Export / Import"
449
- msgstr "Export/Import"
 
450
 
451
- #: includes/content.php:152
452
- msgid "Export / Import Your Data"
453
- msgstr "Export / Import Ihrer Daten"
454
 
455
- #: includes/content.php:161
456
- msgid "Recommendations"
457
- msgstr "Empfehlungen"
 
 
458
 
459
- #: includes/content.php:162
460
- msgid "Get More Free Useful Plugins"
461
- msgstr "Erhalten Sie weitere kostenlose nützliche Plugins"
 
462
 
463
- #: includes/content.php:171 includes/help/help.php:15
464
- msgid "Help And Support"
465
- msgstr "Hilfe und Support"
 
466
 
467
- #: includes/content.php:172
468
- msgid "Ask your query"
469
- msgstr "Suchanfrage eingeben"
 
470
 
471
- #: includes/content.php:181
472
- msgid "Please rate us"
473
- msgstr "Bewerten Sie uns"
 
474
 
475
- #: includes/content.php:182
476
- msgid "If you like us"
477
- msgstr "Wenn Sie uns mögen"
 
478
 
479
- #: includes/dashboard/dashboard.php:15
480
- msgid "Admin Custom Login Dashboard"
481
- msgstr "Admin Custom Login Armaturenbrett"
 
482
 
483
- #: includes/dashboard/dashboard.php:27
484
- msgid "Admin Custom Login Status"
485
- msgstr "Admin Custom Login Status"
 
486
 
487
- #: includes/dashboard/dashboard.php:33
488
- msgid "Disable"
489
- msgstr "Deaktivieren"
 
490
 
491
- #: includes/dashboard/dashboard.php:36
492
- msgid "Enable"
493
- msgstr "Aktivieren"
 
494
 
495
- #: includes/dashboard/dashboard.php:47
496
- msgid "View Login Page"
497
- msgstr "Login Seite ansehen"
 
498
 
499
- #: includes/dashboard/dashboard.php:52
500
- msgid "Copy below link and open in another browser where you are not logged in"
501
- msgstr ""
 
502
 
503
- #: includes/design/background.php:91
504
- msgid "Background Settings"
505
- msgstr "Hintergrund Einstellungen"
 
506
 
507
- #: includes/design/background.php:109
508
- msgid "No Background Selected"
509
- msgstr "Kein Hintergrund gewählt"
 
510
 
511
- #: includes/design/background.php:113
512
- msgid "Background SlideShow"
513
- msgstr "Hintergrund Slideshow"
 
514
 
515
- #: includes/design/background.php:196
516
- msgid "Cover or Strech"
517
- msgstr "Überlappen oder Strecken"
 
518
 
519
  #: includes/design/background.php:260
520
  msgid "Background Attachment"
@@ -624,6 +512,12 @@ msgstr "Knopf Schriftgröße"
624
  msgid "Enable Link shadow?"
625
  msgstr "Aktiviere Linkschatten?"
626
 
 
 
 
 
 
 
627
  #: includes/design/text_and_color.php:259
628
  msgid "Link Shadow Color"
629
  msgstr "Linkschatten Farbe"
@@ -632,41 +526,73 @@ msgstr "Linkschatten Farbe"
632
  msgid "Headline Font Style"
633
  msgstr "Überschrift Schrift Stil"
634
 
635
- #: includes/design/text_and_color.php:837
636
  msgid "Input Font Style"
637
  msgstr "Eingabe Schrift Stil"
638
 
639
- #: includes/design/text_and_color.php:1399
640
  msgid "Link Font Style"
641
  msgstr "Link Schrift Stil"
642
 
643
- #: includes/design/text_and_color.php:1962
644
  msgid "Button Font Style"
645
  msgstr "Knopf Schrift Stil"
646
 
647
- #: includes/design/text_and_color.php:2525
648
  msgid "Enable Input Box Icon?"
649
  msgstr "Aktiviere Eingabebox Icon?"
650
 
651
- #: includes/design/text_and_color.php:2545
652
  msgid "Icon For user Input Box"
653
  msgstr "Icon für Benutzername Eingabebox"
654
 
655
- #: includes/design/text_and_color.php:2566
656
  msgid "Icon For Password Input Box"
657
  msgstr "Icon für Passwort Eingabebox"
658
 
659
- #: includes/design/text_and_color.php:2594
660
- #: includes/design/text_and_color.php:2609
661
  msgid "Text and Color"
662
  msgstr "Text und Farbe"
663
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
664
  #: includes/help/help.php:28
665
  msgid "View Support Docs or Open a Ticket"
666
  msgstr "Support Dokumente anzeigen, oder Ticket öffnen"
667
 
668
- #: includes/help/help.php:38 includes/help/rate.php:15
669
- #: includes/help/rate.php:39
670
  msgid "Rate Us"
671
  msgstr "Bewerten Sie uns"
672
 
@@ -704,6 +630,10 @@ msgstr ""
704
  msgid "here is solution"
705
  msgstr "Hier geht's zur Lösung"
706
 
 
 
 
 
707
  #: includes/help/rate.php:29
708
  msgid ""
709
  "We need your feedback for improve our plugin functionality on WordPress. So, "
@@ -744,6 +674,195 @@ msgstr ""
744
  msgid "Import"
745
  msgstr ""
746
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
747
  #. translators: 1: The rating
748
  #: includes/recommendations/recommendations.php:75
749
  #, php-format
@@ -751,29 +870,32 @@ msgid "%s rating"
751
  msgstr "%s Bewertung"
752
 
753
  #: includes/settings/page-settings.php:62
754
- #: includes/settings/page-settings.php:168
755
- #: includes/settings/page-settings.php:182
756
- msgid "Logo"
757
- msgstr "Logo"
758
 
759
  #: includes/settings/page-settings.php:98
760
- msgid "Logo Width"
761
- msgstr "Logo Weite"
762
 
763
  #: includes/settings/page-settings.php:115
764
- msgid "Logo Height"
765
- msgstr "Logo Höhe"
766
 
767
  #: includes/settings/page-settings.php:132
768
  #: includes/settings/page-settings.php:137
769
- msgid "Logo URL"
770
  msgstr "Logo URL"
771
 
772
  #: includes/settings/page-settings.php:147
773
  #: includes/settings/page-settings.php:152
774
- msgid "Logo URL Title"
775
  msgstr "Logo URL Titel"
776
 
 
 
 
 
 
777
  #: includes/social/social.php:33
778
  msgid "Enable Social Icons"
779
  msgstr "Aktiviere Soziale Icons"
@@ -883,29 +1005,34 @@ msgid "Tumblr"
883
  msgstr "Tumblr"
884
 
885
  #: includes/social/social.php:172
886
- msgid "VKontakte"
887
- msgstr "VKontakte"
888
-
889
- #: includes/social/social.php:173
890
  msgid "Skype"
891
  msgstr "Skype"
892
 
893
- #: includes/social/social.php:174
894
  msgid "Instagram"
895
  msgstr "Instagram"
896
 
897
- #: includes/social/social.php:175
898
  msgid "Telegram"
899
  msgstr ""
900
 
901
- #: includes/social/social.php:176
902
  msgid "Whatsapp"
903
  msgstr ""
904
 
905
- #: includes/social/social.php:193 includes/social/social.php:207
906
  msgid "Social"
907
  msgstr "Social"
908
 
 
 
 
 
 
 
 
 
 
909
  #~ msgid "preview"
910
  #~ msgstr "Vorschau"
911
 
@@ -950,9 +1077,6 @@ msgstr "Social"
950
  #~ msgid "Dashboard "
951
  #~ msgstr "Armaturenbrett"
952
 
953
- #~ msgid "Logo "
954
- #~ msgstr "Logo"
955
-
956
  #~ msgid "Contact Us:"
957
  #~ msgstr "Kontaktieren Sie uns:"
958
 
@@ -1159,9 +1283,6 @@ msgstr "Social"
1159
  #~ msgid "Social link Settings"
1160
  #~ msgstr "Einstellungen für Social-Links"
1161
 
1162
- #~ msgid "Google"
1163
- #~ msgstr "Google"
1164
-
1165
  #~ msgid "LinkedIn"
1166
  #~ msgstr "LinkedIn"
1167
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: admin-custom-login\n"
4
+ "POT-Creation-Date: 2018-07-26 18:34+0530\n"
5
+ "PO-Revision-Date: 2018-07-26 18:36+0530\n"
6
  "Last-Translator: Markus Petautschnig <markus_petautschnig@yahoo.de>\n"
7
  "Language-Team: \n"
8
  "Language: de_DE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.1\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: _e;__;_\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin-custom-login.php:169
20
+ msgid "Username or Email Address"
21
+ msgstr ""
22
+
23
+ #: admin-custom-login.php:169 admin-custom-login.php:175
24
+ msgid "Type Username or Email"
25
+ msgstr ""
26
 
27
+ #: admin-custom-login.php:170
28
  msgid "Password"
29
  msgstr "Passwort"
30
 
31
+ #: admin-custom-login.php:170 admin-custom-login.php:176
32
+ msgid "Type Password"
33
+ msgstr "Type Password"
34
+
35
+ #: admin-custom-login.php:193
36
  msgid "Find Us On Social Media"
37
  msgstr ""
38
 
39
+ #: admin-custom-login.php:477
40
  msgid "Please upload a valid .json file"
41
  msgstr "Bitte eine gültige .json-Datei hochladen"
42
 
43
+ #: admin-custom-login.php:483
44
  msgid "Please upload a file to import"
45
  msgstr "Bitte eine Datei, für den Import, hochladen"
46
 
47
+ #: includes/content.php:28
48
+ msgid "Admin Custom Login"
49
+ msgstr "Admin Custom Login"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
 
51
+ #: includes/content.php:63
52
+ msgid "Powered By"
53
+ msgstr "Bereitgestellt von"
54
 
55
+ #: includes/content.php:65
56
+ msgid "Weblizar"
57
+ msgstr "Weblizar"
58
 
59
+ #: includes/content.php:69
60
+ msgid "Show Us Some Love (Rate Us)"
61
  msgstr ""
 
 
62
 
63
+ #: includes/content.php:86 includes/dashboard/dashboard.php:92
64
+ #: includes/dashboard/dashboard.php:106
65
+ msgid "Dashboard"
66
+ msgstr "Armaturenbrett"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
 
68
+ #: includes/content.php:87
69
+ #, fuzzy
70
+ #| msgid "Application overview"
71
+ msgid "application overview"
72
+ msgstr "Anwendungsübersicht"
73
 
74
+ #: includes/content.php:96
75
+ msgid "Background Design"
76
+ msgstr "Hintergrund Design"
 
77
 
78
+ #: includes/content.php:97
79
+ #, fuzzy
80
+ #| msgid "Modify Background design here"
81
+ msgid "modify background design here"
82
+ msgstr "Hintergrunddesign hier ändern"
83
 
84
+ #: includes/content.php:107
85
+ msgid "Login form Setting"
86
+ msgstr "Formular Einstell"
 
87
 
88
+ #: includes/content.php:108
89
+ #, fuzzy
90
+ #| msgid "Modify Login design here"
91
+ msgid "modify login design here"
92
+ msgstr "Login Design hier ändern"
93
 
94
+ #: includes/content.php:118
95
+ msgid "Font Setting"
96
+ msgstr "Schrift Einstell"
97
 
98
+ #: includes/content.php:119
99
+ #, fuzzy
100
+ #| msgid "Modify Login Form Style here"
101
+ msgid "modify login form style here"
102
+ msgstr "Anmeldeformular-Stil hier ändern"
103
 
104
+ #: includes/content.php:129 includes/settings/page-settings.php:50
105
+ msgid "Logo Settings"
106
+ msgstr "Logo Einstellungen"
107
 
108
+ #: includes/content.php:130
109
+ #, fuzzy
110
+ #| msgid "Customize Logo Settings here"
111
+ msgid "customize logo settings here"
112
+ msgstr "Logo Einstellungen hier personalisieren"
113
 
114
+ #: includes/content.php:141 includes/social/social.php:21
115
+ msgid "Social Settings"
116
+ msgstr "Social Einstell"
117
 
118
+ #: includes/content.php:142
119
+ #, fuzzy
120
+ #| msgid "Connect with your social profile"
121
+ msgid "connect with your social profile"
122
+ msgstr "Verknüpfen Sie Ihre Sozialen Profile"
123
 
124
+ #: includes/content.php:152
125
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
126
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
127
+ msgid "Google Captcha"
128
+ msgstr "Google Captcha"
129
 
130
+ #: includes/content.php:153
131
+ #, fuzzy
132
+ #| msgid "Float Settings"
133
+ msgid "configure captcha settings"
134
+ msgstr "Einstellungen für Schwimmen"
135
 
136
+ #: includes/content.php:163
137
+ msgid "Export / Import"
138
+ msgstr "Export/Import"
139
 
140
+ #: includes/content.php:164
141
+ msgid "import / export plugin settings"
142
+ msgstr ""
143
 
144
+ #: includes/content.php:173
145
+ msgid "Recommendations"
146
+ msgstr "Empfehlungen"
147
 
148
+ #: includes/content.php:174
149
+ #, fuzzy
150
+ #| msgid "Get More Free Useful Plugins"
151
+ msgid "get more free plugins"
152
+ msgstr "Erhalten Sie weitere kostenlose nützliche Plugins"
153
 
154
+ #: includes/content.php:183 includes/help/help.php:15
155
+ msgid "Help And Support"
156
+ msgstr "Hilfe und Support"
157
 
158
+ #: includes/content.php:184
159
+ #, fuzzy
160
+ #| msgid "Ask your query"
161
+ msgid "ask your queries"
162
+ msgstr "Suchanfrage eingeben"
163
 
164
+ #: includes/content.php:193 includes/offers.php:11
165
+ msgid "Our Offers"
166
+ msgstr ""
167
 
168
+ #: includes/content.php:194
169
+ msgid "weblizar premium products"
170
+ msgstr ""
171
 
172
+ #: includes/content.php:203
173
+ #, fuzzy
174
+ #| msgid "Please rate us"
175
+ msgid "Rate & Donate Us"
176
+ msgstr "Bewerten Sie uns"
177
 
178
+ #: includes/content.php:204
179
+ #, fuzzy
180
+ #| msgid "If you like us"
181
+ msgid "if you like us"
182
+ msgstr "Wenn Sie uns mögen"
183
 
184
+ #: includes/dashboard/dashboard.php:15
185
+ msgid "Admin Custom Login Dashboard"
186
+ msgstr "Admin Custom Login Armaturenbrett"
187
 
188
+ #: includes/dashboard/dashboard.php:27
189
+ msgid "Admin Custom Login Status"
190
+ msgstr "Admin Custom Login Status"
191
 
192
+ #: includes/dashboard/dashboard.php:33
193
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:83
194
+ msgid "Disable"
195
+ msgstr "Deaktivieren"
196
 
197
+ #: includes/dashboard/dashboard.php:36
198
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:80
199
+ msgid "Enable"
200
+ msgstr "Aktivieren"
 
201
 
202
+ #: includes/dashboard/dashboard.php:47
203
+ msgid "View Login Page"
204
+ msgstr "Login Seite ansehen"
 
205
 
206
+ #: includes/dashboard/dashboard.php:52
207
+ msgid "Copy below link and open in another browser where you are not logged in"
208
  msgstr ""
 
 
 
 
 
 
209
 
210
+ #: includes/dashboard/dashboard.php:65 includes/help/rate.php:62
211
+ msgid "Donate Us"
212
+ msgstr "Bewerten Sie uns"
 
 
 
 
 
213
 
214
+ #: includes/dashboard/dashboard.php:92 includes/design/background.php:368
215
+ #: includes/design/text_and_color.php:583
216
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
217
+ #: includes/login-form-setting/Login-form-background.php:679
218
+ #: includes/settings/page-settings.php:168 includes/social/social.php:192
219
  msgid "Setting Save Successfully"
220
  msgstr "Einstellungen erfolgreich gespeichert"
221
 
222
+ #: includes/dashboard/dashboard.php:92 includes/dashboard/dashboard.php:106
223
+ #: includes/design/background.php:180 includes/design/background.php:368
224
+ #: includes/design/background.php:383 includes/design/text_and_color.php:583
225
+ #: includes/design/text_and_color.php:598
226
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
227
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
228
+ #: includes/login-form-setting/Login-form-background.php:361
229
+ #: includes/login-form-setting/Login-form-background.php:679
230
+ #: includes/login-form-setting/Login-form-background.php:693
231
+ #: includes/settings/page-settings.php:84
232
+ #: includes/settings/page-settings.php:168
233
+ #: includes/settings/page-settings.php:182 includes/social/social.php:192
234
+ #: includes/social/social.php:206
235
+ msgid "Close"
236
+ msgstr "Schließen"
237
+
238
+ #: includes/dashboard/dashboard.php:106 includes/design/background.php:383
239
+ #: includes/design/text_and_color.php:598
240
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
241
+ #: includes/login-form-setting/Login-form-background.php:693
242
+ #: includes/settings/page-settings.php:182 includes/social/social.php:206
243
  msgid "Setting Reset Successfully"
244
  msgstr "Einstellungen erfolgreich zurückgesetzt"
245
 
246
+ #: includes/dashboard/dashboard.php:113 includes/design/background.php:391
247
+ #: includes/design/text_and_color.php:606
248
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:138
249
+ #: includes/login-form-setting/Login-form-background.php:700
250
+ #: includes/settings/page-settings.php:189 includes/social/social.php:213
251
  msgid "Save Changes"
252
  msgstr "Änderungen speichern"
253
 
254
+ #: includes/dashboard/dashboard.php:116 includes/design/background.php:394
255
+ #: includes/design/text_and_color.php:609
256
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:141
257
+ #: includes/login-form-setting/Login-form-background.php:703
258
+ #: includes/settings/page-settings.php:192 includes/social/social.php:216
259
  msgid "Reset Default"
260
  msgstr "Auf Standard zurücksetzten"
261
 
262
+ #: includes/design/background.php:91
263
+ msgid "Background Settings"
264
+ msgstr "Hintergrund Einstellungen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
265
 
266
+ #: includes/design/background.php:103 includes/design/background.php:110
267
+ #: includes/login-form-setting/Login-form-background.php:276
268
+ msgid "Select Background"
269
+ msgstr "Wähle Hintergrund"
270
 
271
+ #: includes/design/background.php:109
272
+ msgid "No Background Selected"
273
+ msgstr "Kein Hintergrund gewählt"
274
 
275
+ #: includes/design/background.php:111
276
+ #: includes/login-form-setting/Login-form-background.php:283
277
+ msgid "Static Background Color"
278
+ msgstr "Statische Hintergrund Farbe"
279
 
280
+ #: includes/design/background.php:112
281
+ #: includes/login-form-setting/Login-form-background.php:284
282
+ msgid "Static Background Image"
283
+ msgstr "Statisches Hintergrund Bild"
284
 
285
+ #: includes/design/background.php:113
286
+ msgid "Background SlideShow"
287
+ msgstr "Hintergrund Slideshow"
288
 
289
+ #: includes/design/background.php:131
290
+ #: includes/login-form-setting/Login-form-background.php:300
291
+ msgid "Background Color"
292
+ msgstr "Hintergrundfarbe"
293
 
294
+ #: includes/design/background.php:153 includes/design/background.php:172
295
+ #: includes/login-form-setting/Login-form-background.php:337
296
+ msgid "Background Image"
297
+ msgstr "Hintergrundbild"
298
 
299
+ #: includes/design/background.php:158
300
+ #: includes/login-form-setting/Login-form-background.php:342
301
+ #: includes/settings/page-settings.php:67
302
+ msgid "No media selected!"
303
+ msgstr "Kein Medium gewählt!"
304
 
305
+ #: includes/design/background.php:160
306
+ #: includes/login-form-setting/Login-form-background.php:343
307
+ #: includes/settings/page-settings.php:68
308
+ msgid "Upload"
309
+ msgstr "Hochladen"
310
 
311
+ #: includes/design/background.php:162
312
+ #: includes/login-form-setting/Login-form-background.php:345
313
+ #: includes/settings/page-settings.php:70
314
+ msgid "Preview"
315
+ msgstr "Vorschau"
316
 
317
+ #: includes/design/background.php:164
318
+ #: includes/login-form-setting/Login-form-background.php:347
319
+ msgid "Remove"
320
+ msgstr "Entfernen"
321
 
322
+ #: includes/design/background.php:196
323
+ msgid "Cover or Strech"
324
+ msgstr "Überlappen oder Strecken"
325
 
326
+ #: includes/design/background.php:201 includes/design/text_and_color.php:244
327
+ #: includes/design/text_and_color.php:520
328
+ #: includes/login-form-setting/Login-form-background.php:538
329
+ msgid "Yes"
330
+ msgstr "Ja"
331
 
332
+ #: includes/design/background.php:213
333
+ #: includes/login-form-setting/Login-form-background.php:376
334
+ msgid "Background Repeat"
335
+ msgstr "Hintergrund wiederholen"
336
 
337
+ #: includes/design/background.php:219
338
+ #: includes/login-form-setting/Login-form-background.php:382
339
+ msgid "No Repeat"
340
+ msgstr "Kein wiederholen"
341
 
342
+ #: includes/design/background.php:220
343
+ #: includes/login-form-setting/Login-form-background.php:383
344
+ msgid "Repeat"
345
+ msgstr "Wiederholen"
346
 
347
+ #: includes/design/background.php:221
348
+ #: includes/login-form-setting/Login-form-background.php:384
349
+ msgid "Repeat Horizontally"
350
+ msgstr "Horizontal wiederholen"
351
 
352
+ #: includes/design/background.php:222
353
+ #: includes/login-form-setting/Login-form-background.php:385
354
+ msgid "Repeat Vertically"
355
+ msgstr "Vertikal wiederholen"
356
 
357
+ #: includes/design/background.php:234
358
+ #: includes/login-form-setting/Login-form-background.php:396
359
+ msgid "Background Position"
360
+ msgstr "Hintergrund Position"
361
 
362
+ #: includes/design/background.php:240
363
+ #: includes/login-form-setting/Login-form-background.php:402
364
+ msgid "Left Top"
365
+ msgstr "Links Oben"
366
 
367
+ #: includes/design/background.php:241
368
+ #: includes/login-form-setting/Login-form-background.php:403
369
+ msgid "Left Center"
370
+ msgstr "Links Mitte"
371
 
372
+ #: includes/design/background.php:242
373
+ #: includes/login-form-setting/Login-form-background.php:404
374
+ msgid "Left Bottom"
375
+ msgstr "Links Unten"
376
 
377
+ #: includes/design/background.php:243
378
+ #: includes/login-form-setting/Login-form-background.php:405
379
+ msgid "Right Top"
380
+ msgstr "Rechts Oben"
381
 
382
+ #: includes/design/background.php:244
383
+ #: includes/login-form-setting/Login-form-background.php:406
384
+ msgid "Right Center"
385
+ msgstr "Rechts Mitte"
386
 
387
+ #: includes/design/background.php:245
388
+ #: includes/login-form-setting/Login-form-background.php:407
389
+ msgid "Right Bottom"
390
+ msgstr "Rechts UNten"
391
 
392
+ #: includes/design/background.php:246
393
+ #: includes/login-form-setting/Login-form-background.php:408
394
+ msgid "Center Top"
395
+ msgstr "Mitte Oben"
396
 
397
+ #: includes/design/background.php:247
398
+ #: includes/login-form-setting/Login-form-background.php:409
399
+ msgid "Center Center"
400
+ msgstr "Mitte Mitte"
401
 
402
+ #: includes/design/background.php:248
403
+ #: includes/login-form-setting/Login-form-background.php:410
404
+ msgid "Center Bottom"
405
+ msgstr "Mitte Unten"
406
 
407
  #: includes/design/background.php:260
408
  msgid "Background Attachment"
512
  msgid "Enable Link shadow?"
513
  msgstr "Aktiviere Linkschatten?"
514
 
515
+ #: includes/design/text_and_color.php:247
516
+ #: includes/design/text_and_color.php:523
517
+ #: includes/login-form-setting/Login-form-background.php:541
518
+ msgid "No"
519
+ msgstr "Nein"
520
+
521
  #: includes/design/text_and_color.php:259
522
  msgid "Link Shadow Color"
523
  msgstr "Linkschatten Farbe"
526
  msgid "Headline Font Style"
527
  msgstr "Überschrift Schrift Stil"
528
 
529
+ #: includes/design/text_and_color.php:336
530
  msgid "Input Font Style"
531
  msgstr "Eingabe Schrift Stil"
532
 
533
+ #: includes/design/text_and_color.php:395
534
  msgid "Link Font Style"
535
  msgstr "Link Schrift Stil"
536
 
537
+ #: includes/design/text_and_color.php:455
538
  msgid "Button Font Style"
539
  msgstr "Knopf Schrift Stil"
540
 
541
+ #: includes/design/text_and_color.php:514
542
  msgid "Enable Input Box Icon?"
543
  msgstr "Aktiviere Eingabebox Icon?"
544
 
545
+ #: includes/design/text_and_color.php:534
546
  msgid "Icon For user Input Box"
547
  msgstr "Icon für Benutzername Eingabebox"
548
 
549
+ #: includes/design/text_and_color.php:555
550
  msgid "Icon For Password Input Box"
551
  msgstr "Icon für Passwort Eingabebox"
552
 
553
+ #: includes/design/text_and_color.php:583
554
+ #: includes/design/text_and_color.php:598
555
  msgid "Text and Color"
556
  msgstr "Text und Farbe"
557
 
558
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:14
559
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:44
560
+ #, fuzzy
561
+ #| msgid "Float Settings"
562
+ msgid "Google Captcha Settings"
563
+ msgstr "Einstellungen für Schwimmen"
564
+
565
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:55
566
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:60
567
+ msgid "Site Key"
568
+ msgstr ""
569
+
570
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:64
571
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:69
572
+ msgid "Secret Key"
573
+ msgstr ""
574
+
575
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:74
576
+ msgid "Captcha Display"
577
+ msgstr ""
578
+
579
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:90
580
+ msgid "Captcha Theme"
581
+ msgstr ""
582
+
583
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:96
584
+ msgid "Light"
585
+ msgstr "Rechts"
586
+
587
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:99
588
+ msgid "Dark"
589
+ msgstr ""
590
+
591
  #: includes/help/help.php:28
592
  msgid "View Support Docs or Open a Ticket"
593
  msgstr "Support Dokumente anzeigen, oder Ticket öffnen"
594
 
595
+ #: includes/help/help.php:38 includes/help/rate.php:39
 
596
  msgid "Rate Us"
597
  msgstr "Bewerten Sie uns"
598
 
630
  msgid "here is solution"
631
  msgstr "Hier geht's zur Lösung"
632
 
633
+ #: includes/help/rate.php:15
634
+ msgid "Rate & Donate Us"
635
+ msgstr ""
636
+
637
  #: includes/help/rate.php:29
638
  msgid ""
639
  "We need your feedback for improve our plugin functionality on WordPress. So, "
674
  msgid "Import"
675
  msgstr ""
676
 
677
+ #: includes/login-form-setting/Login-form-background.php:191
678
+ msgid "Login Settings"
679
+ msgstr "Anmeldeeinstellungen"
680
+
681
+ #: includes/login-form-setting/Login-form-background.php:204
682
+ msgid "Login Form Position"
683
+ msgstr "Anmeldeformularposition"
684
+
685
+ #: includes/login-form-setting/Login-form-background.php:210
686
+ msgid "Default"
687
+ msgstr "Standard"
688
+
689
+ #: includes/login-form-setting/Login-form-background.php:211
690
+ msgid "Floating"
691
+ msgstr "Schwimmend"
692
+
693
+ #: includes/login-form-setting/Login-form-background.php:212
694
+ msgid "Floating With Customization"
695
+ msgstr "Schwimmend mit Anpassung"
696
+
697
+ #: includes/login-form-setting/Login-form-background.php:223
698
+ msgid "Float Settings"
699
+ msgstr "Einstellungen für Schwimmen"
700
+
701
+ #: includes/login-form-setting/Login-form-background.php:229
702
+ msgid "Left"
703
+ msgstr "Links"
704
+
705
+ #: includes/login-form-setting/Login-form-background.php:232
706
+ msgid "Center"
707
+ msgstr "Mitte"
708
+
709
+ #: includes/login-form-setting/Login-form-background.php:235
710
+ msgid "Right"
711
+ msgstr "Rechts"
712
+
713
+ #: includes/login-form-setting/Login-form-background.php:245
714
+ msgid "Floating With Customization Settings"
715
+ msgstr "Schwimmend mit angepassten Einstellungen"
716
+
717
+ #: includes/login-form-setting/Login-form-background.php:266
718
+ msgid "Note: This form position setting will be not responsive."
719
+ msgstr ""
720
+ "Hinweis: Die Einstellungen für die Position des Formulars ist nicht "
721
+ "responsive!."
722
+
723
+ #: includes/login-form-setting/Login-form-background.php:282
724
+ msgid "Select background"
725
+ msgstr "Wähle Hintergrund"
726
+
727
+ #: includes/login-form-setting/Login-form-background.php:315
728
+ msgid "Login Form Opacity"
729
+ msgstr "Anmeldeformular Deckkraft"
730
+
731
+ #: includes/login-form-setting/Login-form-background.php:355
732
+ #: includes/settings/page-settings.php:78
733
+ msgid "Login Background Image"
734
+ msgstr "Login Hintergrund Bild"
735
+
736
+ #: includes/login-form-setting/Login-form-background.php:422
737
+ msgid "Background Effect"
738
+ msgstr "Hintergrund Effekt"
739
+
740
+ #: includes/login-form-setting/Login-form-background.php:428
741
+ msgid "Select overlay effect"
742
+ msgstr "Wähle Überlappungseffekt"
743
+
744
+ #: includes/login-form-setting/Login-form-background.php:429
745
+ msgid "No Overlay Effect"
746
+ msgstr "Kein Überlappungseffekt"
747
+
748
+ #: includes/login-form-setting/Login-form-background.php:430
749
+ msgid "Overlay Effect 1"
750
+ msgstr "Überlappungseffekt 1"
751
+
752
+ #: includes/login-form-setting/Login-form-background.php:431
753
+ msgid "Overlay Effect 2"
754
+ msgstr "Überlappungseffekt 2"
755
+
756
+ #: includes/login-form-setting/Login-form-background.php:432
757
+ msgid "Overlay Effect 3"
758
+ msgstr "Überlappungseffekt 3"
759
+
760
+ #: includes/login-form-setting/Login-form-background.php:445
761
+ msgid "Login Form Width"
762
+ msgstr "Anmeldeformular Weite"
763
+
764
+ #: includes/login-form-setting/Login-form-background.php:462
765
+ msgid "Border Color"
766
+ msgstr "Umrandungsfarbe"
767
+
768
+ #: includes/login-form-setting/Login-form-background.php:477
769
+ msgid "Border Radius"
770
+ msgstr "Umrandungsradius"
771
+
772
+ #: includes/login-form-setting/Login-form-background.php:494
773
+ msgid "Border Style"
774
+ msgstr "Umrandungsstil"
775
+
776
+ #: includes/login-form-setting/Login-form-background.php:500
777
+ msgid "None"
778
+ msgstr "Keinen"
779
+
780
+ #: includes/login-form-setting/Login-form-background.php:501
781
+ msgid "Solid"
782
+ msgstr "Solide"
783
+
784
+ #: includes/login-form-setting/Login-form-background.php:502
785
+ msgid "Dotted"
786
+ msgstr "Gepunktet"
787
+
788
+ #: includes/login-form-setting/Login-form-background.php:503
789
+ msgid "Dashed"
790
+ msgstr "Gestrichelt"
791
+
792
+ #: includes/login-form-setting/Login-form-background.php:504
793
+ msgid "Double"
794
+ msgstr "Doppelt"
795
+
796
+ #: includes/login-form-setting/Login-form-background.php:515
797
+ msgid "Border Thickness"
798
+ msgstr "Umrandungsdicke"
799
+
800
+ #: includes/login-form-setting/Login-form-background.php:532
801
+ msgid "Enable Form Shadow?"
802
+ msgstr "Aktiviere Formularschatten?"
803
+
804
+ #: includes/login-form-setting/Login-form-background.php:552
805
+ msgid "Form Shadow Color"
806
+ msgstr "Formularschatten Farbe"
807
+
808
+ #: includes/login-form-setting/Login-form-background.php:567
809
+ msgid "Redirect Users After Login (Not Work For Admin)"
810
+ msgstr ""
811
+
812
+ #: includes/login-form-setting/Login-form-background.php:572
813
+ msgid "Redirect URL"
814
+ msgstr ""
815
+
816
+ #: includes/login-form-setting/Login-form-background.php:573
817
+ msgid ""
818
+ "Enter the URL to redirect users after login, Setting will not work for an "
819
+ "administrator."
820
+ msgstr ""
821
+
822
+ #: includes/login-form-setting/Login-form-background.php:585
823
+ msgid "Display Note To User Above Login Form"
824
+ msgstr ""
825
+
826
+ #: includes/login-form-setting/Login-form-background.php:602
827
+ #, fuzzy
828
+ #| msgid "Headline Font size"
829
+ msgid "Message Font Size"
830
+ msgstr "Überschrift Schriftgröße"
831
+
832
+ #: includes/login-form-setting/Login-form-background.php:620
833
+ #, fuzzy
834
+ #| msgid "Headline Font Color"
835
+ msgid "Message Font Color"
836
+ msgstr "Überschrift Schriftfarbe"
837
+
838
+ #: includes/login-form-setting/Login-form-background.php:637
839
+ msgid "Tagline Message Display Below Login Form"
840
+ msgstr ""
841
+
842
+ #: includes/login-form-setting/Login-form-background.php:654
843
+ #: includes/login-form-setting/Login-form-background.php:659
844
+ msgid "Custom CSS"
845
+ msgstr "Benutzerdefiniertes CSS"
846
+
847
+ #: includes/login-form-setting/Login-form-background.php:661
848
+ msgid "Enter any custom css you want to apply on login panel."
849
+ msgstr ""
850
+ "Fügen Sie einen beliebigen, benutzerdefinierten CSS-Code ein, den Sie dem "
851
+ "Anmelde-Panel hinzufügen möchten."
852
+
853
+ #: includes/login-form-setting/Login-form-background.php:662
854
+ msgid "Note: Please Do Not Use"
855
+ msgstr "Hinweis: Bitte nicht verwenden"
856
+
857
+ #: includes/login-form-setting/Login-form-background.php:662
858
+ msgid "Tag With Custom CSS"
859
+ msgstr "Tag nicht mit benutzerdefiniertem CSS-Code verbinden"
860
+
861
+ #: includes/login-form-setting/Login-form-background.php:679
862
+ #: includes/login-form-setting/Login-form-background.php:693
863
+ msgid "Login"
864
+ msgstr "Login"
865
+
866
  #. translators: 1: The rating
867
  #: includes/recommendations/recommendations.php:75
868
  #, php-format
870
  msgstr "%s Bewertung"
871
 
872
  #: includes/settings/page-settings.php:62
873
+ msgid "Logo Image"
874
+ msgstr "Logo Image"
 
 
875
 
876
  #: includes/settings/page-settings.php:98
877
+ msgid "Logo Image Width"
878
+ msgstr "Logo Image Width"
879
 
880
  #: includes/settings/page-settings.php:115
881
+ msgid "Logo Image Height"
882
+ msgstr "Logo Image Height"
883
 
884
  #: includes/settings/page-settings.php:132
885
  #: includes/settings/page-settings.php:137
886
+ msgid "Logo Link URL"
887
  msgstr "Logo URL"
888
 
889
  #: includes/settings/page-settings.php:147
890
  #: includes/settings/page-settings.php:152
891
+ msgid "Logo Image Title"
892
  msgstr "Logo URL Titel"
893
 
894
+ #: includes/settings/page-settings.php:168
895
+ #: includes/settings/page-settings.php:182
896
+ msgid "Logo"
897
+ msgstr "Logo"
898
+
899
  #: includes/social/social.php:33
900
  msgid "Enable Social Icons"
901
  msgstr "Aktiviere Soziale Icons"
1005
  msgstr "Tumblr"
1006
 
1007
  #: includes/social/social.php:172
 
 
 
 
1008
  msgid "Skype"
1009
  msgstr "Skype"
1010
 
1011
+ #: includes/social/social.php:173
1012
  msgid "Instagram"
1013
  msgstr "Instagram"
1014
 
1015
+ #: includes/social/social.php:174
1016
  msgid "Telegram"
1017
  msgstr ""
1018
 
1019
+ #: includes/social/social.php:175
1020
  msgid "Whatsapp"
1021
  msgstr ""
1022
 
1023
+ #: includes/social/social.php:192 includes/social/social.php:206
1024
  msgid "Social"
1025
  msgstr "Social"
1026
 
1027
+ #~ msgid "Export / Import Your Data"
1028
+ #~ msgstr "Export / Import Ihrer Daten"
1029
+
1030
+ #~ msgid "User Name"
1031
+ #~ msgstr "Benutzername"
1032
+
1033
+ #~ msgid "VKontakte"
1034
+ #~ msgstr "VKontakte"
1035
+
1036
  #~ msgid "preview"
1037
  #~ msgstr "Vorschau"
1038
 
1077
  #~ msgid "Dashboard "
1078
  #~ msgstr "Armaturenbrett"
1079
 
 
 
 
1080
  #~ msgid "Contact Us:"
1081
  #~ msgstr "Kontaktieren Sie uns:"
1082
 
1283
  #~ msgid "Social link Settings"
1284
  #~ msgstr "Einstellungen für Social-Links"
1285
 
 
 
 
1286
  #~ msgid "LinkedIn"
1287
  #~ msgstr "LinkedIn"
1288
 
languages/admin-custom-login-es_ES.mo CHANGED
Binary file
languages/admin-custom-login-es_ES.po CHANGED
@@ -1,518 +1,410 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: admin-custom-login\n"
4
- "POT-Creation-Date: 2018-01-31 15:35+0530\n"
5
- "PO-Revision-Date: 2018-01-31 15:35+0530\n"
6
  "Last-Translator: Chema Bescos <jmbescos@ibidemgroup.com>\n"
7
  "Language-Team: \n"
8
  "Language: es_ES\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 2.0.6\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: _e;__;_\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: admin-custom-login.php:157 admin-custom-login.php:163
20
- msgid "User Name"
21
- msgstr "Nombre de usuario"
 
 
 
 
22
 
23
- #: admin-custom-login.php:158 admin-custom-login.php:164
24
  msgid "Password"
25
  msgstr "Palabra clave"
26
 
27
- #: admin-custom-login.php:174
 
 
 
 
 
 
28
  msgid "Find Us On Social Media"
29
  msgstr ""
30
 
31
- #: admin-custom-login.php:429
32
  msgid "Please upload a valid .json file"
33
  msgstr "Por favor sube un archivo .json válido"
34
 
35
- #: admin-custom-login.php:435
36
  msgid "Please upload a file to import"
37
  msgstr "Por favor sube un archivo para importar"
38
 
39
- #: includes/Login-form-setting/Login-form-background.php:175
40
- msgid "Login Settings"
41
- msgstr "Configuración de inicio de sesión"
42
-
43
- #: includes/Login-form-setting/Login-form-background.php:188
44
- msgid "Login Form Position"
45
- msgstr "Posición del formulario de inicio de sesión"
46
-
47
- #: includes/Login-form-setting/Login-form-background.php:194
48
- msgid "Default"
49
- msgstr "Por defecto"
50
-
51
- #: includes/Login-form-setting/Login-form-background.php:195
52
- msgid "Floating"
53
- msgstr "Flotante"
54
-
55
- #: includes/Login-form-setting/Login-form-background.php:196
56
- msgid "Floating With Customization"
57
- msgstr "Flotante con personalización"
58
-
59
- #: includes/Login-form-setting/Login-form-background.php:207
60
- msgid "Float Settings"
61
- msgstr "Configuración efecto flotante"
62
-
63
- #: includes/Login-form-setting/Login-form-background.php:213
64
- msgid "Left"
65
- msgstr "Izquierda"
66
-
67
- #: includes/Login-form-setting/Login-form-background.php:216
68
- msgid "Center"
69
- msgstr "Centro"
70
-
71
- #: includes/Login-form-setting/Login-form-background.php:219
72
- msgid "Right"
73
- msgstr "Derecha"
74
-
75
- #: includes/Login-form-setting/Login-form-background.php:229
76
- msgid "Floating With Customization Settings"
77
- msgstr "Ajustes de efecto flotante personalizado"
78
-
79
- #: includes/Login-form-setting/Login-form-background.php:250
80
- msgid "Note: This form position setting will be not responsive."
81
- msgstr "Nota: Este ajuste de posición de formulario no será responsive."
82
-
83
- #: includes/Login-form-setting/Login-form-background.php:260
84
- #: includes/design/background.php:103 includes/design/background.php:110
85
- msgid "Select Background"
86
- msgstr "Seleccionar fondo"
87
-
88
- #: includes/Login-form-setting/Login-form-background.php:266
89
- msgid "Select background"
90
- msgstr "Selecciona fondo"
91
-
92
- #: includes/Login-form-setting/Login-form-background.php:267
93
- #: includes/design/background.php:111
94
- msgid "Static Background Color"
95
- msgstr "Color de fondo estático"
96
-
97
- #: includes/Login-form-setting/Login-form-background.php:268
98
- #: includes/design/background.php:112
99
- msgid "Static Background Image"
100
- msgstr "Imagen de fondo estática"
101
-
102
- #: includes/Login-form-setting/Login-form-background.php:284
103
- #: includes/design/background.php:131
104
- msgid "Background Color"
105
- msgstr "Color de fondo"
106
-
107
- #: includes/Login-form-setting/Login-form-background.php:299
108
- msgid "Login Form Opacity"
109
- msgstr "Opacidad del formulario de Inicio de Sesión"
110
-
111
- #: includes/Login-form-setting/Login-form-background.php:321
112
- #: includes/design/background.php:153 includes/design/background.php:172
113
- msgid "Background Image"
114
- msgstr "Imagen de fondo"
115
-
116
- #: includes/Login-form-setting/Login-form-background.php:326
117
- #: includes/design/background.php:158 includes/settings/page-settings.php:67
118
- msgid "No media selected!"
119
- msgstr "¡No hay elementos multimedia seleccionados!"
120
-
121
- #: includes/Login-form-setting/Login-form-background.php:327
122
- #: includes/design/background.php:160 includes/settings/page-settings.php:68
123
- msgid "Upload"
124
- msgstr "Cargar"
125
-
126
- #: includes/Login-form-setting/Login-form-background.php:329
127
- #: includes/design/background.php:162 includes/settings/page-settings.php:70
128
- msgid "Preview"
129
- msgstr "Vista previa"
130
-
131
- #: includes/Login-form-setting/Login-form-background.php:331
132
- #: includes/design/background.php:164
133
- msgid "Remove"
134
- msgstr "Quitar"
135
-
136
- #: includes/Login-form-setting/Login-form-background.php:339
137
- #: includes/settings/page-settings.php:78
138
- msgid "Login Background Image"
139
- msgstr "Imagen de fondo de inicio de sesión"
140
-
141
- #: includes/Login-form-setting/Login-form-background.php:345
142
- #: includes/Login-form-setting/Login-form-background.php:592
143
- #: includes/Login-form-setting/Login-form-background.php:606
144
- #: includes/dashboard/dashboard.php:70 includes/dashboard/dashboard.php:84
145
- #: includes/design/background.php:180 includes/design/background.php:368
146
- #: includes/design/background.php:383 includes/design/text_and_color.php:2594
147
- #: includes/design/text_and_color.php:2609
148
- #: includes/settings/page-settings.php:84
149
- #: includes/settings/page-settings.php:168
150
- #: includes/settings/page-settings.php:182 includes/social/social.php:193
151
- #: includes/social/social.php:207
152
- msgid "Close"
153
- msgstr "Cerrar"
154
-
155
- #: includes/Login-form-setting/Login-form-background.php:360
156
- #: includes/design/background.php:213
157
- msgid "Background Repeat"
158
- msgstr "Repetir fondo"
159
-
160
- #: includes/Login-form-setting/Login-form-background.php:366
161
- #: includes/design/background.php:219
162
- msgid "No Repeat"
163
- msgstr "Ver todos los resultados"
164
-
165
- #: includes/Login-form-setting/Login-form-background.php:367
166
- #: includes/design/background.php:220
167
- msgid "Repeat"
168
- msgstr "Repetir"
169
-
170
- #: includes/Login-form-setting/Login-form-background.php:368
171
- #: includes/design/background.php:221
172
- msgid "Repeat Horizontally"
173
- msgstr "Ver todos los resultados"
174
-
175
- #: includes/Login-form-setting/Login-form-background.php:369
176
- #: includes/design/background.php:222
177
- msgid "Repeat Vertically"
178
- msgstr "Ver todos los resultados"
179
-
180
- #: includes/Login-form-setting/Login-form-background.php:380
181
- #: includes/design/background.php:234
182
- msgid "Background Position"
183
- msgstr "Posición del fondo"
184
-
185
- #: includes/Login-form-setting/Login-form-background.php:386
186
- #: includes/design/background.php:240
187
- msgid "Left Top"
188
- msgstr "Superior Izq"
189
-
190
- #: includes/Login-form-setting/Login-form-background.php:387
191
- #: includes/design/background.php:241
192
- msgid "Left Center"
193
- msgstr "Centro Izq"
194
-
195
- #: includes/Login-form-setting/Login-form-background.php:388
196
- #: includes/design/background.php:242
197
- msgid "Left Bottom"
198
- msgstr "Inferior Izq"
199
 
200
- #: includes/Login-form-setting/Login-form-background.php:389
201
- #: includes/design/background.php:243
202
- msgid "Right Top"
203
- msgstr "Superior der"
204
 
205
- #: includes/Login-form-setting/Login-form-background.php:390
206
- #: includes/design/background.php:244
207
- msgid "Right Center"
208
- msgstr "Centro der"
209
 
210
- #: includes/Login-form-setting/Login-form-background.php:391
211
- #: includes/design/background.php:245
212
- msgid "Right Bottom"
213
- msgstr "Inferior der"
214
 
215
- #: includes/Login-form-setting/Login-form-background.php:392
216
- #: includes/design/background.php:246
217
- msgid "Center Top"
218
- msgstr "Botón de desplazamiento a la parte superior"
219
 
220
- #: includes/Login-form-setting/Login-form-background.php:393
221
- #: includes/design/background.php:247
222
- msgid "Center Center"
223
- msgstr "Centro Centro"
 
224
 
225
- #: includes/Login-form-setting/Login-form-background.php:394
226
- #: includes/design/background.php:248
227
- msgid "Center Bottom"
228
- msgstr "Inferior centro"
229
 
230
- #: includes/Login-form-setting/Login-form-background.php:406
231
- msgid "Background Effect"
232
- msgstr "Efecto del fondo"
 
 
233
 
234
- #: includes/Login-form-setting/Login-form-background.php:412
235
- msgid "Select overlay effect"
236
- msgstr "Seleccionar efecto de superposición"
237
 
238
- #: includes/Login-form-setting/Login-form-background.php:413
239
- msgid "No Overlay Effect"
240
- msgstr "Sin efecto de superposición"
 
 
241
 
242
- #: includes/Login-form-setting/Login-form-background.php:414
243
- msgid "Overlay Effect 1"
244
- msgstr "Efecto de superposición 1"
245
 
246
- #: includes/Login-form-setting/Login-form-background.php:415
247
- msgid "Overlay Effect 2"
248
- msgstr "Efecto de superposición 2"
 
 
249
 
250
- #: includes/Login-form-setting/Login-form-background.php:416
251
- msgid "Overlay Effect 3"
252
- msgstr "Efecto de superposición 3"
253
 
254
- #: includes/Login-form-setting/Login-form-background.php:429
255
- msgid "Login Form Width"
256
- msgstr "Ancho del formulario de inicio de sesión"
 
 
257
 
258
- #: includes/Login-form-setting/Login-form-background.php:446
259
- msgid "Border Color"
260
- msgstr "Color de borde"
261
 
262
- #: includes/Login-form-setting/Login-form-background.php:461
263
- msgid "Border Radius"
264
- msgstr "Borde redondeado"
 
 
265
 
266
- #: includes/Login-form-setting/Login-form-background.php:478
267
- msgid "Border Style"
268
- msgstr "Estilo del borde"
 
 
269
 
270
- #: includes/Login-form-setting/Login-form-background.php:484
271
- msgid "None"
272
- msgstr "Ninguno"
273
 
274
- #: includes/Login-form-setting/Login-form-background.php:485
275
- msgid "Solid"
276
- msgstr "Solida"
277
 
278
- #: includes/Login-form-setting/Login-form-background.php:486
279
- msgid "Dotted"
280
- msgstr "Punteado"
281
 
282
- #: includes/Login-form-setting/Login-form-background.php:487
283
- msgid "Dashed"
284
- msgstr "Guiones"
285
 
286
- #: includes/Login-form-setting/Login-form-background.php:488
287
- msgid "Double"
288
- msgstr "Doble"
 
 
289
 
290
- #: includes/Login-form-setting/Login-form-background.php:499
291
- msgid "Border Thickness"
292
- msgstr "Espesor de Borde"
293
 
294
- #: includes/Login-form-setting/Login-form-background.php:516
295
- msgid "Enable Form Shadow?"
296
- msgstr "¿Habilitar sombra del formulario?"
 
 
297
 
298
- #: includes/Login-form-setting/Login-form-background.php:522
299
- #: includes/design/background.php:201 includes/design/text_and_color.php:244
300
- #: includes/design/text_and_color.php:2531
301
- msgid "Yes"
302
- msgstr "Si"
303
 
304
- #: includes/Login-form-setting/Login-form-background.php:525
305
- #: includes/design/text_and_color.php:247
306
- #: includes/design/text_and_color.php:2534
307
- msgid "No"
308
- msgstr "No"
309
 
310
- #: includes/Login-form-setting/Login-form-background.php:536
311
- msgid "Form Shadow Color"
312
- msgstr "Color de sombra del Formulario"
 
 
313
 
314
- #: includes/Login-form-setting/Login-form-background.php:551
315
- msgid "Redirect Users After Login (Not Work For Admin)"
316
- msgstr ""
 
 
317
 
318
- #: includes/Login-form-setting/Login-form-background.php:556
319
- msgid "Redirect URL"
320
- msgstr ""
321
 
322
- #: includes/Login-form-setting/Login-form-background.php:557
323
- msgid ""
324
- "Enter the URL to redirect users after login, Setting will not work for an "
325
- "administrator."
326
- msgstr ""
327
 
328
- #: includes/Login-form-setting/Login-form-background.php:567
329
- #: includes/Login-form-setting/Login-form-background.php:572
330
- msgid "Custom CSS"
331
- msgstr "CSS personalizado"
332
 
333
- #: includes/Login-form-setting/Login-form-background.php:574
334
- msgid "Enter any custom css you want to apply on login panel."
335
- msgstr ""
336
- "Introduce cualquier css personalizado que quieras aplicar al panel de Inicio "
337
- "de Sesión."
338
 
339
- #: includes/Login-form-setting/Login-form-background.php:575
340
- msgid "Note: Please Do Not Use"
341
- msgstr "Nota: No usar"
342
 
343
- #: includes/Login-form-setting/Login-form-background.php:575
344
- msgid "Tag With Custom CSS"
345
- msgstr "Comntar con CSS personalizado"
346
 
347
- #: includes/Login-form-setting/Login-form-background.php:592
348
- #: includes/Login-form-setting/Login-form-background.php:606
349
- msgid "Login"
350
- msgstr "Iniciar sesión"
 
351
 
352
- #: includes/Login-form-setting/Login-form-background.php:592
353
- #: includes/dashboard/dashboard.php:70 includes/design/background.php:368
354
- #: includes/design/text_and_color.php:2594
355
- #: includes/settings/page-settings.php:168 includes/social/social.php:193
 
356
  msgid "Setting Save Successfully"
357
  msgstr "Configuración Guardada con éxito"
358
 
359
- #: includes/Login-form-setting/Login-form-background.php:606
360
- #: includes/dashboard/dashboard.php:84 includes/design/background.php:383
361
- #: includes/design/text_and_color.php:2609
362
- #: includes/settings/page-settings.php:182 includes/social/social.php:207
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
363
  msgid "Setting Reset Successfully"
364
  msgstr "Configuración Restablecida con éxito"
365
 
366
- #: includes/Login-form-setting/Login-form-background.php:613
367
- #: includes/dashboard/dashboard.php:91 includes/design/background.php:391
368
- #: includes/design/text_and_color.php:2617
369
- #: includes/settings/page-settings.php:189 includes/social/social.php:214
 
370
  msgid "Save Changes"
371
  msgstr "Guardar cambios"
372
 
373
- #: includes/Login-form-setting/Login-form-background.php:616
374
- #: includes/dashboard/dashboard.php:94 includes/design/background.php:394
375
- #: includes/design/text_and_color.php:2620
376
- #: includes/settings/page-settings.php:192 includes/social/social.php:217
 
377
  msgid "Reset Default"
378
  msgstr "Reiniciar Por Defecto"
379
 
380
- #: includes/content.php:28
381
- msgid "Admin Custom Login"
382
- msgstr "Admin Custom Login"
383
-
384
- #: includes/content.php:63
385
- msgid "Powered By"
386
- msgstr "Powered By"
387
-
388
- #: includes/content.php:65
389
- msgid "Weblizar"
390
- msgstr "Weblizar"
391
-
392
- #: includes/content.php:69
393
- msgid "Show Us Some Love (Rate Us)"
394
- msgstr "Haznos llegar tu amor (Valóranos)"
395
-
396
- #: includes/content.php:85 includes/dashboard/dashboard.php:70
397
- #: includes/dashboard/dashboard.php:84
398
- msgid "Dashboard"
399
- msgstr "Mi perfil"
400
-
401
- #: includes/content.php:86
402
- msgid "Application overview"
403
- msgstr "Descripción de la aplicación"
404
 
405
- #: includes/content.php:95
406
- msgid "Background Design"
407
- msgstr "Diseño del Fondo"
 
408
 
409
- #: includes/content.php:96
410
- msgid "Modify Background design here"
411
- msgstr "Modifica el diseño de fondo aquí"
412
 
413
- #: includes/content.php:106
414
- msgid "Login form Setting"
415
- msgstr "Configuración del formulario de Inicio de Sesión"
 
416
 
417
- #: includes/content.php:107
418
- msgid "Modify Login design here"
419
- msgstr "Modificar el diseño de Inicio de Sesión aquí"
 
420
 
421
- #: includes/content.php:117
422
- msgid "Font Setting"
423
- msgstr "Configuración de fuentes"
424
 
425
- #: includes/content.php:118
426
- msgid "Modify Login Form Style here"
427
- msgstr "Modifica el estilo del formulario de Inicio de Sesión"
 
428
 
429
- #: includes/content.php:128 includes/settings/page-settings.php:50
430
- msgid "Logo Settings"
431
- msgstr "Configuración de logo"
 
432
 
433
- #: includes/content.php:129
434
- msgid "Customize Logo Settings here"
435
- msgstr "Personaliza la configuración del logo aquí"
 
 
436
 
437
- #: includes/content.php:140 includes/social/social.php:21
438
- msgid "Social Settings"
439
- msgstr "Ajustes sociales"
 
 
440
 
441
- #: includes/content.php:141
442
- msgid "Connect with your social profile"
443
- msgstr "Conecta con tus redes sociales"
 
 
444
 
445
- #: includes/content.php:151
446
- msgid "Export / Import"
447
- msgstr "Exportar / Importar"
 
448
 
449
- #: includes/content.php:152
450
- msgid "Export / Import Your Data"
451
- msgstr "Exportar / Importar datos"
452
 
453
- #: includes/content.php:161
454
- msgid "Recommendations"
455
- msgstr "Recomendaciones"
 
 
456
 
457
- #: includes/content.php:162
458
- msgid "Get More Free Useful Plugins"
459
- msgstr "Consigue más plugins gratuitos"
 
460
 
461
- #: includes/content.php:171 includes/help/help.php:15
462
- msgid "Help And Support"
463
- msgstr "Ayuda"
 
464
 
465
- #: includes/content.php:172
466
- msgid "Ask your query"
467
- msgstr "Haga su pregunta"
 
468
 
469
- #: includes/content.php:181
470
- msgid "Please rate us"
471
- msgstr "Por favor valórenos"
 
472
 
473
- #: includes/content.php:182
474
- msgid "If you like us"
475
- msgstr "Si te gustamos"
 
476
 
477
- #: includes/dashboard/dashboard.php:15
478
- msgid "Admin Custom Login Dashboard"
479
- msgstr "Escritorio de Custom Admin Login"
 
480
 
481
- #: includes/dashboard/dashboard.php:27
482
- msgid "Admin Custom Login Status"
483
- msgstr "Status de Admin Custom Login"
 
484
 
485
- #: includes/dashboard/dashboard.php:33
486
- msgid "Disable"
487
- msgstr "Deshabilitar"
 
488
 
489
- #: includes/dashboard/dashboard.php:36
490
- msgid "Enable"
491
- msgstr "Activar"
 
492
 
493
- #: includes/dashboard/dashboard.php:47
494
- msgid "View Login Page"
495
- msgstr "Ver Página inicio sesión"
 
496
 
497
- #: includes/dashboard/dashboard.php:52
498
- msgid "Copy below link and open in another browser where you are not logged in"
499
- msgstr "Copiar enlace y abrir en ventana nueva sin estar logueado"
 
500
 
501
- #: includes/design/background.php:91
502
- msgid "Background Settings"
503
- msgstr "Ajustes de fondo"
 
504
 
505
- #: includes/design/background.php:109
506
- msgid "No Background Selected"
507
- msgstr "Fondo no seleccionado"
 
508
 
509
- #: includes/design/background.php:113
510
- msgid "Background SlideShow"
511
- msgstr "Fondo de diapositivas"
 
512
 
513
- #: includes/design/background.php:196
514
- msgid "Cover or Strech"
515
- msgstr "Cubrir o alargar"
 
516
 
517
  #: includes/design/background.php:260
518
  msgid "Background Attachment"
@@ -622,6 +514,12 @@ msgstr "Tamaño de fuente del Botón"
622
  msgid "Enable Link shadow?"
623
  msgstr "Habilitar sombra del Enlace ?"
624
 
 
 
 
 
 
 
625
  #: includes/design/text_and_color.php:259
626
  msgid "Link Shadow Color"
627
  msgstr "Color de sombra de enlace"
@@ -630,41 +528,75 @@ msgstr "Color de sombra de enlace"
630
  msgid "Headline Font Style"
631
  msgstr "Estilo de fuente del encabezado"
632
 
633
- #: includes/design/text_and_color.php:837
634
  msgid "Input Font Style"
635
  msgstr "Estilo de Fuente de Entrada"
636
 
637
- #: includes/design/text_and_color.php:1399
638
  msgid "Link Font Style"
639
  msgstr "Estilo de fuente para enlaces"
640
 
641
- #: includes/design/text_and_color.php:1962
642
  msgid "Button Font Style"
643
  msgstr "Estilo de fuente de botón"
644
 
645
- #: includes/design/text_and_color.php:2525
646
  msgid "Enable Input Box Icon?"
647
  msgstr "¿Activar el icono de caja de entrada?"
648
 
649
- #: includes/design/text_and_color.php:2545
650
  msgid "Icon For user Input Box"
651
  msgstr "Icono de caja de entrada Usuario"
652
 
653
- #: includes/design/text_and_color.php:2566
654
  msgid "Icon For Password Input Box"
655
  msgstr "Icono Para Caja de entrada Contraseña"
656
 
657
- #: includes/design/text_and_color.php:2594
658
- #: includes/design/text_and_color.php:2609
659
  msgid "Text and Color"
660
  msgstr "Color y texto"
661
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
662
  #: includes/help/help.php:28
663
  msgid "View Support Docs or Open a Ticket"
664
  msgstr "View Support Docs or Open a Ticket"
665
 
666
- #: includes/help/help.php:38 includes/help/rate.php:15
667
- #: includes/help/rate.php:39
668
  msgid "Rate Us"
669
  msgstr "Valóranos"
670
 
@@ -708,6 +640,10 @@ msgstr "Pregunta: Cómo traducir este plugin a mi idioma?"
708
  msgid "here is solution"
709
  msgstr "aquí está la solución"
710
 
 
 
 
 
711
  #: includes/help/rate.php:29
712
  msgid ""
713
  "We need your feedback for improve our plugin functionality on WordPress. So, "
@@ -749,6 +685,193 @@ msgstr ""
749
  msgid "Import"
750
  msgstr ""
751
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
752
  #. translators: 1: The rating
753
  #: includes/recommendations/recommendations.php:75
754
  #, php-format
@@ -756,29 +879,42 @@ msgid "%s rating"
756
  msgstr "%s calificación"
757
 
758
  #: includes/settings/page-settings.php:62
759
- #: includes/settings/page-settings.php:168
760
- #: includes/settings/page-settings.php:182
761
- msgid "Logo"
762
- msgstr "Logo"
763
 
764
  #: includes/settings/page-settings.php:98
765
- msgid "Logo Width"
 
 
766
  msgstr "Anchura del Logo"
767
 
768
  #: includes/settings/page-settings.php:115
769
- msgid "Logo Height"
 
 
770
  msgstr "Altura de logo"
771
 
772
  #: includes/settings/page-settings.php:132
773
  #: includes/settings/page-settings.php:137
774
- msgid "Logo URL"
 
 
775
  msgstr "URL del logotipo"
776
 
777
  #: includes/settings/page-settings.php:147
778
  #: includes/settings/page-settings.php:152
779
- msgid "Logo URL Title"
 
 
780
  msgstr "Logo URL Título"
781
 
 
 
 
 
 
782
  #: includes/social/social.php:33
783
  msgid "Enable Social Icons"
784
  msgstr "Activa iconos sociales"
@@ -888,29 +1024,37 @@ msgid "Tumblr"
888
  msgstr "Tumblr"
889
 
890
  #: includes/social/social.php:172
891
- msgid "VKontakte"
892
- msgstr "VKontakte"
893
-
894
- #: includes/social/social.php:173
895
  msgid "Skype"
896
  msgstr "Skype"
897
 
898
- #: includes/social/social.php:174
899
  msgid "Instagram"
900
  msgstr "Instagram"
901
 
902
- #: includes/social/social.php:175
903
  msgid "Telegram"
904
  msgstr ""
905
 
906
- #: includes/social/social.php:176
907
  msgid "Whatsapp"
908
  msgstr ""
909
 
910
- #: includes/social/social.php:193 includes/social/social.php:207
911
  msgid "Social"
912
  msgstr "Redes sociales"
913
 
 
 
 
 
 
 
 
 
 
 
 
 
914
  #~ msgid "preview"
915
  #~ msgstr "vista previa"
916
 
@@ -955,8 +1099,5 @@ msgstr "Redes sociales"
955
  #~ msgid "Dashboard "
956
  #~ msgstr "Panel de control "
957
 
958
- #~ msgid "Logo "
959
- #~ msgstr "Logo "
960
-
961
  #~ msgid "Contact Us:"
962
  #~ msgstr "Contacta con nosotros:"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: admin-custom-login\n"
4
+ "POT-Creation-Date: 2018-07-26 18:36+0530\n"
5
+ "PO-Revision-Date: 2018-07-26 18:36+0530\n"
6
  "Last-Translator: Chema Bescos <jmbescos@ibidemgroup.com>\n"
7
  "Language-Team: \n"
8
  "Language: es_ES\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 2.1\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: _e;__;_\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin-custom-login.php:169
20
+ msgid "Username or Email Address"
21
+ msgstr ""
22
+
23
+ #: admin-custom-login.php:169 admin-custom-login.php:175
24
+ msgid "Type Username or Email"
25
+ msgstr ""
26
 
27
+ #: admin-custom-login.php:170
28
  msgid "Password"
29
  msgstr "Palabra clave"
30
 
31
+ #: admin-custom-login.php:170 admin-custom-login.php:176
32
+ #, fuzzy
33
+ #| msgid "Password"
34
+ msgid "Type Password"
35
+ msgstr "Palabra clave"
36
+
37
+ #: admin-custom-login.php:193
38
  msgid "Find Us On Social Media"
39
  msgstr ""
40
 
41
+ #: admin-custom-login.php:477
42
  msgid "Please upload a valid .json file"
43
  msgstr "Por favor sube un archivo .json válido"
44
 
45
+ #: admin-custom-login.php:483
46
  msgid "Please upload a file to import"
47
  msgstr "Por favor sube un archivo para importar"
48
 
49
+ #: includes/content.php:28
50
+ msgid "Admin Custom Login"
51
+ msgstr "Admin Custom Login"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
 
53
+ #: includes/content.php:63
54
+ msgid "Powered By"
55
+ msgstr "Powered By"
 
56
 
57
+ #: includes/content.php:65
58
+ msgid "Weblizar"
59
+ msgstr "Weblizar"
 
60
 
61
+ #: includes/content.php:69
62
+ msgid "Show Us Some Love (Rate Us)"
63
+ msgstr "Haznos llegar tu amor (Valóranos)"
 
64
 
65
+ #: includes/content.php:86 includes/dashboard/dashboard.php:92
66
+ #: includes/dashboard/dashboard.php:106
67
+ msgid "Dashboard"
68
+ msgstr "Mi perfil"
69
 
70
+ #: includes/content.php:87
71
+ #, fuzzy
72
+ #| msgid "Application overview"
73
+ msgid "application overview"
74
+ msgstr "Descripción de la aplicación"
75
 
76
+ #: includes/content.php:96
77
+ msgid "Background Design"
78
+ msgstr "Diseño del Fondo"
 
79
 
80
+ #: includes/content.php:97
81
+ #, fuzzy
82
+ #| msgid "Modify Background design here"
83
+ msgid "modify background design here"
84
+ msgstr "Modifica el diseño de fondo aquí"
85
 
86
+ #: includes/content.php:107
87
+ msgid "Login form Setting"
88
+ msgstr "Configuración del formulario de Inicio de Sesión"
89
 
90
+ #: includes/content.php:108
91
+ #, fuzzy
92
+ #| msgid "Modify Login design here"
93
+ msgid "modify login design here"
94
+ msgstr "Modificar el diseño de Inicio de Sesión aquí"
95
 
96
+ #: includes/content.php:118
97
+ msgid "Font Setting"
98
+ msgstr "Configuración de fuentes"
99
 
100
+ #: includes/content.php:119
101
+ #, fuzzy
102
+ #| msgid "Modify Login Form Style here"
103
+ msgid "modify login form style here"
104
+ msgstr "Modifica el estilo del formulario de Inicio de Sesión"
105
 
106
+ #: includes/content.php:129 includes/settings/page-settings.php:50
107
+ msgid "Logo Settings"
108
+ msgstr "Configuración de logo"
109
 
110
+ #: includes/content.php:130
111
+ #, fuzzy
112
+ #| msgid "Customize Logo Settings here"
113
+ msgid "customize logo settings here"
114
+ msgstr "Personaliza la configuración del logo aquí"
115
 
116
+ #: includes/content.php:141 includes/social/social.php:21
117
+ msgid "Social Settings"
118
+ msgstr "Ajustes sociales"
119
 
120
+ #: includes/content.php:142
121
+ #, fuzzy
122
+ #| msgid "Connect with your social profile"
123
+ msgid "connect with your social profile"
124
+ msgstr "Conecta con tus redes sociales"
125
 
126
+ #: includes/content.php:152
127
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
128
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
129
+ msgid "Google Captcha"
130
+ msgstr ""
131
 
132
+ #: includes/content.php:153
133
+ msgid "configure captcha settings"
134
+ msgstr ""
135
 
136
+ #: includes/content.php:163
137
+ msgid "Export / Import"
138
+ msgstr "Exportar / Importar"
139
 
140
+ #: includes/content.php:164
141
+ msgid "import / export plugin settings"
142
+ msgstr ""
143
 
144
+ #: includes/content.php:173
145
+ msgid "Recommendations"
146
+ msgstr "Recomendaciones"
147
 
148
+ #: includes/content.php:174
149
+ #, fuzzy
150
+ #| msgid "Get More Free Useful Plugins"
151
+ msgid "get more free plugins"
152
+ msgstr "Consigue más plugins gratuitos"
153
 
154
+ #: includes/content.php:183 includes/help/help.php:15
155
+ msgid "Help And Support"
156
+ msgstr "Ayuda"
157
 
158
+ #: includes/content.php:184
159
+ #, fuzzy
160
+ #| msgid "Ask your query"
161
+ msgid "ask your queries"
162
+ msgstr "Haga su pregunta"
163
 
164
+ #: includes/content.php:193 includes/offers.php:11
165
+ msgid "Our Offers"
166
+ msgstr ""
 
 
167
 
168
+ #: includes/content.php:194
169
+ msgid "weblizar premium products"
170
+ msgstr ""
 
 
171
 
172
+ #: includes/content.php:203
173
+ #, fuzzy
174
+ #| msgid "Rate Us"
175
+ msgid "Rate & Donate Us"
176
+ msgstr "Valóranos"
177
 
178
+ #: includes/content.php:204
179
+ #, fuzzy
180
+ #| msgid "If you like us"
181
+ msgid "if you like us"
182
+ msgstr "Si te gustamos"
183
 
184
+ #: includes/dashboard/dashboard.php:15
185
+ msgid "Admin Custom Login Dashboard"
186
+ msgstr "Escritorio de Custom Admin Login"
187
 
188
+ #: includes/dashboard/dashboard.php:27
189
+ msgid "Admin Custom Login Status"
190
+ msgstr "Status de Admin Custom Login"
 
 
191
 
192
+ #: includes/dashboard/dashboard.php:33
193
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:83
194
+ msgid "Disable"
195
+ msgstr "Deshabilitar"
196
 
197
+ #: includes/dashboard/dashboard.php:36
198
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:80
199
+ msgid "Enable"
200
+ msgstr "Activar"
 
201
 
202
+ #: includes/dashboard/dashboard.php:47
203
+ msgid "View Login Page"
204
+ msgstr "Ver Página inicio sesión"
205
 
206
+ #: includes/dashboard/dashboard.php:52
207
+ msgid "Copy below link and open in another browser where you are not logged in"
208
+ msgstr "Copiar enlace y abrir en ventana nueva sin estar logueado"
209
 
210
+ #: includes/dashboard/dashboard.php:65 includes/help/rate.php:62
211
+ #, fuzzy
212
+ #| msgid "Rate Us"
213
+ msgid "Donate Us"
214
+ msgstr "Valóranos"
215
 
216
+ #: includes/dashboard/dashboard.php:92 includes/design/background.php:368
217
+ #: includes/design/text_and_color.php:583
218
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
219
+ #: includes/login-form-setting/Login-form-background.php:679
220
+ #: includes/settings/page-settings.php:168 includes/social/social.php:192
221
  msgid "Setting Save Successfully"
222
  msgstr "Configuración Guardada con éxito"
223
 
224
+ #: includes/dashboard/dashboard.php:92 includes/dashboard/dashboard.php:106
225
+ #: includes/design/background.php:180 includes/design/background.php:368
226
+ #: includes/design/background.php:383 includes/design/text_and_color.php:583
227
+ #: includes/design/text_and_color.php:598
228
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
229
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
230
+ #: includes/login-form-setting/Login-form-background.php:361
231
+ #: includes/login-form-setting/Login-form-background.php:679
232
+ #: includes/login-form-setting/Login-form-background.php:693
233
+ #: includes/settings/page-settings.php:84
234
+ #: includes/settings/page-settings.php:168
235
+ #: includes/settings/page-settings.php:182 includes/social/social.php:192
236
+ #: includes/social/social.php:206
237
+ msgid "Close"
238
+ msgstr "Cerrar"
239
+
240
+ #: includes/dashboard/dashboard.php:106 includes/design/background.php:383
241
+ #: includes/design/text_and_color.php:598
242
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
243
+ #: includes/login-form-setting/Login-form-background.php:693
244
+ #: includes/settings/page-settings.php:182 includes/social/social.php:206
245
  msgid "Setting Reset Successfully"
246
  msgstr "Configuración Restablecida con éxito"
247
 
248
+ #: includes/dashboard/dashboard.php:113 includes/design/background.php:391
249
+ #: includes/design/text_and_color.php:606
250
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:138
251
+ #: includes/login-form-setting/Login-form-background.php:700
252
+ #: includes/settings/page-settings.php:189 includes/social/social.php:213
253
  msgid "Save Changes"
254
  msgstr "Guardar cambios"
255
 
256
+ #: includes/dashboard/dashboard.php:116 includes/design/background.php:394
257
+ #: includes/design/text_and_color.php:609
258
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:141
259
+ #: includes/login-form-setting/Login-form-background.php:703
260
+ #: includes/settings/page-settings.php:192 includes/social/social.php:216
261
  msgid "Reset Default"
262
  msgstr "Reiniciar Por Defecto"
263
 
264
+ #: includes/design/background.php:91
265
+ msgid "Background Settings"
266
+ msgstr "Ajustes de fondo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
267
 
268
+ #: includes/design/background.php:103 includes/design/background.php:110
269
+ #: includes/login-form-setting/Login-form-background.php:276
270
+ msgid "Select Background"
271
+ msgstr "Seleccionar fondo"
272
 
273
+ #: includes/design/background.php:109
274
+ msgid "No Background Selected"
275
+ msgstr "Fondo no seleccionado"
276
 
277
+ #: includes/design/background.php:111
278
+ #: includes/login-form-setting/Login-form-background.php:283
279
+ msgid "Static Background Color"
280
+ msgstr "Color de fondo estático"
281
 
282
+ #: includes/design/background.php:112
283
+ #: includes/login-form-setting/Login-form-background.php:284
284
+ msgid "Static Background Image"
285
+ msgstr "Imagen de fondo estática"
286
 
287
+ #: includes/design/background.php:113
288
+ msgid "Background SlideShow"
289
+ msgstr "Fondo de diapositivas"
290
 
291
+ #: includes/design/background.php:131
292
+ #: includes/login-form-setting/Login-form-background.php:300
293
+ msgid "Background Color"
294
+ msgstr "Color de fondo"
295
 
296
+ #: includes/design/background.php:153 includes/design/background.php:172
297
+ #: includes/login-form-setting/Login-form-background.php:337
298
+ msgid "Background Image"
299
+ msgstr "Imagen de fondo"
300
 
301
+ #: includes/design/background.php:158
302
+ #: includes/login-form-setting/Login-form-background.php:342
303
+ #: includes/settings/page-settings.php:67
304
+ msgid "No media selected!"
305
+ msgstr "¡No hay elementos multimedia seleccionados!"
306
 
307
+ #: includes/design/background.php:160
308
+ #: includes/login-form-setting/Login-form-background.php:343
309
+ #: includes/settings/page-settings.php:68
310
+ msgid "Upload"
311
+ msgstr "Cargar"
312
 
313
+ #: includes/design/background.php:162
314
+ #: includes/login-form-setting/Login-form-background.php:345
315
+ #: includes/settings/page-settings.php:70
316
+ msgid "Preview"
317
+ msgstr "Vista previa"
318
 
319
+ #: includes/design/background.php:164
320
+ #: includes/login-form-setting/Login-form-background.php:347
321
+ msgid "Remove"
322
+ msgstr "Quitar"
323
 
324
+ #: includes/design/background.php:196
325
+ msgid "Cover or Strech"
326
+ msgstr "Cubrir o alargar"
327
 
328
+ #: includes/design/background.php:201 includes/design/text_and_color.php:244
329
+ #: includes/design/text_and_color.php:520
330
+ #: includes/login-form-setting/Login-form-background.php:538
331
+ msgid "Yes"
332
+ msgstr "Si"
333
 
334
+ #: includes/design/background.php:213
335
+ #: includes/login-form-setting/Login-form-background.php:376
336
+ msgid "Background Repeat"
337
+ msgstr "Repetir fondo"
338
 
339
+ #: includes/design/background.php:219
340
+ #: includes/login-form-setting/Login-form-background.php:382
341
+ msgid "No Repeat"
342
+ msgstr "Ver todos los resultados"
343
 
344
+ #: includes/design/background.php:220
345
+ #: includes/login-form-setting/Login-form-background.php:383
346
+ msgid "Repeat"
347
+ msgstr "Repetir"
348
 
349
+ #: includes/design/background.php:221
350
+ #: includes/login-form-setting/Login-form-background.php:384
351
+ msgid "Repeat Horizontally"
352
+ msgstr "Ver todos los resultados"
353
 
354
+ #: includes/design/background.php:222
355
+ #: includes/login-form-setting/Login-form-background.php:385
356
+ msgid "Repeat Vertically"
357
+ msgstr "Ver todos los resultados"
358
 
359
+ #: includes/design/background.php:234
360
+ #: includes/login-form-setting/Login-form-background.php:396
361
+ msgid "Background Position"
362
+ msgstr "Posición del fondo"
363
 
364
+ #: includes/design/background.php:240
365
+ #: includes/login-form-setting/Login-form-background.php:402
366
+ msgid "Left Top"
367
+ msgstr "Superior Izq"
368
 
369
+ #: includes/design/background.php:241
370
+ #: includes/login-form-setting/Login-form-background.php:403
371
+ msgid "Left Center"
372
+ msgstr "Centro Izq"
373
 
374
+ #: includes/design/background.php:242
375
+ #: includes/login-form-setting/Login-form-background.php:404
376
+ msgid "Left Bottom"
377
+ msgstr "Inferior Izq"
378
 
379
+ #: includes/design/background.php:243
380
+ #: includes/login-form-setting/Login-form-background.php:405
381
+ msgid "Right Top"
382
+ msgstr "Superior der"
383
 
384
+ #: includes/design/background.php:244
385
+ #: includes/login-form-setting/Login-form-background.php:406
386
+ msgid "Right Center"
387
+ msgstr "Centro der"
388
 
389
+ #: includes/design/background.php:245
390
+ #: includes/login-form-setting/Login-form-background.php:407
391
+ msgid "Right Bottom"
392
+ msgstr "Inferior der"
393
 
394
+ #: includes/design/background.php:246
395
+ #: includes/login-form-setting/Login-form-background.php:408
396
+ msgid "Center Top"
397
+ msgstr "Botón de desplazamiento a la parte superior"
398
 
399
+ #: includes/design/background.php:247
400
+ #: includes/login-form-setting/Login-form-background.php:409
401
+ msgid "Center Center"
402
+ msgstr "Centro Centro"
403
 
404
+ #: includes/design/background.php:248
405
+ #: includes/login-form-setting/Login-form-background.php:410
406
+ msgid "Center Bottom"
407
+ msgstr "Inferior centro"
408
 
409
  #: includes/design/background.php:260
410
  msgid "Background Attachment"
514
  msgid "Enable Link shadow?"
515
  msgstr "Habilitar sombra del Enlace ?"
516
 
517
+ #: includes/design/text_and_color.php:247
518
+ #: includes/design/text_and_color.php:523
519
+ #: includes/login-form-setting/Login-form-background.php:541
520
+ msgid "No"
521
+ msgstr "No"
522
+
523
  #: includes/design/text_and_color.php:259
524
  msgid "Link Shadow Color"
525
  msgstr "Color de sombra de enlace"
528
  msgid "Headline Font Style"
529
  msgstr "Estilo de fuente del encabezado"
530
 
531
+ #: includes/design/text_and_color.php:336
532
  msgid "Input Font Style"
533
  msgstr "Estilo de Fuente de Entrada"
534
 
535
+ #: includes/design/text_and_color.php:395
536
  msgid "Link Font Style"
537
  msgstr "Estilo de fuente para enlaces"
538
 
539
+ #: includes/design/text_and_color.php:455
540
  msgid "Button Font Style"
541
  msgstr "Estilo de fuente de botón"
542
 
543
+ #: includes/design/text_and_color.php:514
544
  msgid "Enable Input Box Icon?"
545
  msgstr "¿Activar el icono de caja de entrada?"
546
 
547
+ #: includes/design/text_and_color.php:534
548
  msgid "Icon For user Input Box"
549
  msgstr "Icono de caja de entrada Usuario"
550
 
551
+ #: includes/design/text_and_color.php:555
552
  msgid "Icon For Password Input Box"
553
  msgstr "Icono Para Caja de entrada Contraseña"
554
 
555
+ #: includes/design/text_and_color.php:583
556
+ #: includes/design/text_and_color.php:598
557
  msgid "Text and Color"
558
  msgstr "Color y texto"
559
 
560
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:14
561
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:44
562
+ #, fuzzy
563
+ #| msgid "Float Settings"
564
+ msgid "Google Captcha Settings"
565
+ msgstr "Configuración efecto flotante"
566
+
567
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:55
568
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:60
569
+ msgid "Site Key"
570
+ msgstr ""
571
+
572
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:64
573
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:69
574
+ msgid "Secret Key"
575
+ msgstr ""
576
+
577
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:74
578
+ msgid "Captcha Display"
579
+ msgstr ""
580
+
581
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:90
582
+ msgid "Captcha Theme"
583
+ msgstr ""
584
+
585
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:96
586
+ #, fuzzy
587
+ #| msgid "Right"
588
+ msgid "Light"
589
+ msgstr "Derecha"
590
+
591
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:99
592
+ msgid "Dark"
593
+ msgstr ""
594
+
595
  #: includes/help/help.php:28
596
  msgid "View Support Docs or Open a Ticket"
597
  msgstr "View Support Docs or Open a Ticket"
598
 
599
+ #: includes/help/help.php:38 includes/help/rate.php:39
 
600
  msgid "Rate Us"
601
  msgstr "Valóranos"
602
 
640
  msgid "here is solution"
641
  msgstr "aquí está la solución"
642
 
643
+ #: includes/help/rate.php:15
644
+ msgid "Rate & Donate Us"
645
+ msgstr ""
646
+
647
  #: includes/help/rate.php:29
648
  msgid ""
649
  "We need your feedback for improve our plugin functionality on WordPress. So, "
685
  msgid "Import"
686
  msgstr ""
687
 
688
+ #: includes/login-form-setting/Login-form-background.php:191
689
+ msgid "Login Settings"
690
+ msgstr "Configuración de inicio de sesión"
691
+
692
+ #: includes/login-form-setting/Login-form-background.php:204
693
+ msgid "Login Form Position"
694
+ msgstr "Posición del formulario de inicio de sesión"
695
+
696
+ #: includes/login-form-setting/Login-form-background.php:210
697
+ msgid "Default"
698
+ msgstr "Por defecto"
699
+
700
+ #: includes/login-form-setting/Login-form-background.php:211
701
+ msgid "Floating"
702
+ msgstr "Flotante"
703
+
704
+ #: includes/login-form-setting/Login-form-background.php:212
705
+ msgid "Floating With Customization"
706
+ msgstr "Flotante con personalización"
707
+
708
+ #: includes/login-form-setting/Login-form-background.php:223
709
+ msgid "Float Settings"
710
+ msgstr "Configuración efecto flotante"
711
+
712
+ #: includes/login-form-setting/Login-form-background.php:229
713
+ msgid "Left"
714
+ msgstr "Izquierda"
715
+
716
+ #: includes/login-form-setting/Login-form-background.php:232
717
+ msgid "Center"
718
+ msgstr "Centro"
719
+
720
+ #: includes/login-form-setting/Login-form-background.php:235
721
+ msgid "Right"
722
+ msgstr "Derecha"
723
+
724
+ #: includes/login-form-setting/Login-form-background.php:245
725
+ msgid "Floating With Customization Settings"
726
+ msgstr "Ajustes de efecto flotante personalizado"
727
+
728
+ #: includes/login-form-setting/Login-form-background.php:266
729
+ msgid "Note: This form position setting will be not responsive."
730
+ msgstr "Nota: Este ajuste de posición de formulario no será responsive."
731
+
732
+ #: includes/login-form-setting/Login-form-background.php:282
733
+ msgid "Select background"
734
+ msgstr "Selecciona fondo"
735
+
736
+ #: includes/login-form-setting/Login-form-background.php:315
737
+ msgid "Login Form Opacity"
738
+ msgstr "Opacidad del formulario de Inicio de Sesión"
739
+
740
+ #: includes/login-form-setting/Login-form-background.php:355
741
+ #: includes/settings/page-settings.php:78
742
+ msgid "Login Background Image"
743
+ msgstr "Imagen de fondo de inicio de sesión"
744
+
745
+ #: includes/login-form-setting/Login-form-background.php:422
746
+ msgid "Background Effect"
747
+ msgstr "Efecto del fondo"
748
+
749
+ #: includes/login-form-setting/Login-form-background.php:428
750
+ msgid "Select overlay effect"
751
+ msgstr "Seleccionar efecto de superposición"
752
+
753
+ #: includes/login-form-setting/Login-form-background.php:429
754
+ msgid "No Overlay Effect"
755
+ msgstr "Sin efecto de superposición"
756
+
757
+ #: includes/login-form-setting/Login-form-background.php:430
758
+ msgid "Overlay Effect 1"
759
+ msgstr "Efecto de superposición 1"
760
+
761
+ #: includes/login-form-setting/Login-form-background.php:431
762
+ msgid "Overlay Effect 2"
763
+ msgstr "Efecto de superposición 2"
764
+
765
+ #: includes/login-form-setting/Login-form-background.php:432
766
+ msgid "Overlay Effect 3"
767
+ msgstr "Efecto de superposición 3"
768
+
769
+ #: includes/login-form-setting/Login-form-background.php:445
770
+ msgid "Login Form Width"
771
+ msgstr "Ancho del formulario de inicio de sesión"
772
+
773
+ #: includes/login-form-setting/Login-form-background.php:462
774
+ msgid "Border Color"
775
+ msgstr "Color de borde"
776
+
777
+ #: includes/login-form-setting/Login-form-background.php:477
778
+ msgid "Border Radius"
779
+ msgstr "Borde redondeado"
780
+
781
+ #: includes/login-form-setting/Login-form-background.php:494
782
+ msgid "Border Style"
783
+ msgstr "Estilo del borde"
784
+
785
+ #: includes/login-form-setting/Login-form-background.php:500
786
+ msgid "None"
787
+ msgstr "Ninguno"
788
+
789
+ #: includes/login-form-setting/Login-form-background.php:501
790
+ msgid "Solid"
791
+ msgstr "Solida"
792
+
793
+ #: includes/login-form-setting/Login-form-background.php:502
794
+ msgid "Dotted"
795
+ msgstr "Punteado"
796
+
797
+ #: includes/login-form-setting/Login-form-background.php:503
798
+ msgid "Dashed"
799
+ msgstr "Guiones"
800
+
801
+ #: includes/login-form-setting/Login-form-background.php:504
802
+ msgid "Double"
803
+ msgstr "Doble"
804
+
805
+ #: includes/login-form-setting/Login-form-background.php:515
806
+ msgid "Border Thickness"
807
+ msgstr "Espesor de Borde"
808
+
809
+ #: includes/login-form-setting/Login-form-background.php:532
810
+ msgid "Enable Form Shadow?"
811
+ msgstr "¿Habilitar sombra del formulario?"
812
+
813
+ #: includes/login-form-setting/Login-form-background.php:552
814
+ msgid "Form Shadow Color"
815
+ msgstr "Color de sombra del Formulario"
816
+
817
+ #: includes/login-form-setting/Login-form-background.php:567
818
+ msgid "Redirect Users After Login (Not Work For Admin)"
819
+ msgstr ""
820
+
821
+ #: includes/login-form-setting/Login-form-background.php:572
822
+ msgid "Redirect URL"
823
+ msgstr ""
824
+
825
+ #: includes/login-form-setting/Login-form-background.php:573
826
+ msgid ""
827
+ "Enter the URL to redirect users after login, Setting will not work for an "
828
+ "administrator."
829
+ msgstr ""
830
+
831
+ #: includes/login-form-setting/Login-form-background.php:585
832
+ msgid "Display Note To User Above Login Form"
833
+ msgstr ""
834
+
835
+ #: includes/login-form-setting/Login-form-background.php:602
836
+ #, fuzzy
837
+ #| msgid "Headline Font size"
838
+ msgid "Message Font Size"
839
+ msgstr "Tamaño de fuente del encabezado"
840
+
841
+ #: includes/login-form-setting/Login-form-background.php:620
842
+ #, fuzzy
843
+ #| msgid "Headline Font Color"
844
+ msgid "Message Font Color"
845
+ msgstr "Color de la fuente del encabezado"
846
+
847
+ #: includes/login-form-setting/Login-form-background.php:637
848
+ msgid "Tagline Message Display Below Login Form"
849
+ msgstr ""
850
+
851
+ #: includes/login-form-setting/Login-form-background.php:654
852
+ #: includes/login-form-setting/Login-form-background.php:659
853
+ msgid "Custom CSS"
854
+ msgstr "CSS personalizado"
855
+
856
+ #: includes/login-form-setting/Login-form-background.php:661
857
+ msgid "Enter any custom css you want to apply on login panel."
858
+ msgstr ""
859
+ "Introduce cualquier css personalizado que quieras aplicar al panel de Inicio "
860
+ "de Sesión."
861
+
862
+ #: includes/login-form-setting/Login-form-background.php:662
863
+ msgid "Note: Please Do Not Use"
864
+ msgstr "Nota: No usar"
865
+
866
+ #: includes/login-form-setting/Login-form-background.php:662
867
+ msgid "Tag With Custom CSS"
868
+ msgstr "Comntar con CSS personalizado"
869
+
870
+ #: includes/login-form-setting/Login-form-background.php:679
871
+ #: includes/login-form-setting/Login-form-background.php:693
872
+ msgid "Login"
873
+ msgstr "Iniciar sesión"
874
+
875
  #. translators: 1: The rating
876
  #: includes/recommendations/recommendations.php:75
877
  #, php-format
879
  msgstr "%s calificación"
880
 
881
  #: includes/settings/page-settings.php:62
882
+ #, fuzzy
883
+ #| msgid "Logo "
884
+ msgid "Logo Image"
885
+ msgstr "Logo "
886
 
887
  #: includes/settings/page-settings.php:98
888
+ #, fuzzy
889
+ #| msgid "Logo Width"
890
+ msgid "Logo Image Width"
891
  msgstr "Anchura del Logo"
892
 
893
  #: includes/settings/page-settings.php:115
894
+ #, fuzzy
895
+ #| msgid "Logo Height"
896
+ msgid "Logo Image Height"
897
  msgstr "Altura de logo"
898
 
899
  #: includes/settings/page-settings.php:132
900
  #: includes/settings/page-settings.php:137
901
+ #, fuzzy
902
+ #| msgid "Logo URL"
903
+ msgid "Logo Link URL"
904
  msgstr "URL del logotipo"
905
 
906
  #: includes/settings/page-settings.php:147
907
  #: includes/settings/page-settings.php:152
908
+ #, fuzzy
909
+ #| msgid "Logo URL Title"
910
+ msgid "Logo Image Title"
911
  msgstr "Logo URL Título"
912
 
913
+ #: includes/settings/page-settings.php:168
914
+ #: includes/settings/page-settings.php:182
915
+ msgid "Logo"
916
+ msgstr "Logo"
917
+
918
  #: includes/social/social.php:33
919
  msgid "Enable Social Icons"
920
  msgstr "Activa iconos sociales"
1024
  msgstr "Tumblr"
1025
 
1026
  #: includes/social/social.php:172
 
 
 
 
1027
  msgid "Skype"
1028
  msgstr "Skype"
1029
 
1030
+ #: includes/social/social.php:173
1031
  msgid "Instagram"
1032
  msgstr "Instagram"
1033
 
1034
+ #: includes/social/social.php:174
1035
  msgid "Telegram"
1036
  msgstr ""
1037
 
1038
+ #: includes/social/social.php:175
1039
  msgid "Whatsapp"
1040
  msgstr ""
1041
 
1042
+ #: includes/social/social.php:192 includes/social/social.php:206
1043
  msgid "Social"
1044
  msgstr "Redes sociales"
1045
 
1046
+ #~ msgid "User Name"
1047
+ #~ msgstr "Nombre de usuario"
1048
+
1049
+ #~ msgid "Export / Import Your Data"
1050
+ #~ msgstr "Exportar / Importar datos"
1051
+
1052
+ #~ msgid "Please rate us"
1053
+ #~ msgstr "Por favor valórenos"
1054
+
1055
+ #~ msgid "VKontakte"
1056
+ #~ msgstr "VKontakte"
1057
+
1058
  #~ msgid "preview"
1059
  #~ msgstr "vista previa"
1060
 
1099
  #~ msgid "Dashboard "
1100
  #~ msgstr "Panel de control "
1101
 
 
 
 
1102
  #~ msgid "Contact Us:"
1103
  #~ msgstr "Contacta con nosotros:"
languages/admin-custom-login-fi_FI.mo CHANGED
Binary file
languages/admin-custom-login-fi_FI.po CHANGED
@@ -1,518 +1,412 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: admin-custom-login\n"
4
- "POT-Creation-Date: 2018-01-31 15:35+0530\n"
5
- "PO-Revision-Date: 2018-01-31 15:35+0530\n"
6
  "Last-Translator: Weblizar <lizarweb@gmail.com>\n"
7
  "Language-Team: Eerik Anttila // ekiphet@gmail.com\n"
8
  "Language: fi_FI\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 2.0.6\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: _e;__;_\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: admin-custom-login.php:157 admin-custom-login.php:163
20
- msgid "User Name"
21
- msgstr "Käyttäjätunnus"
 
 
 
 
22
 
23
- #: admin-custom-login.php:158 admin-custom-login.php:164
24
  msgid "Password"
25
  msgstr "Salasana"
26
 
27
- #: admin-custom-login.php:174
 
 
 
 
 
 
28
  msgid "Find Us On Social Media"
29
  msgstr "Löydä meidät sosiaalisesta mediasta"
30
 
31
- #: admin-custom-login.php:429
32
  msgid "Please upload a valid .json file"
33
  msgstr "Tiedosto ei kelpaa (.json)"
34
 
35
- #: admin-custom-login.php:435
36
  msgid "Please upload a file to import"
37
  msgstr "Lataa tiedosto tuotavaksi"
38
 
39
- #: includes/Login-form-setting/Login-form-background.php:175
40
- msgid "Login Settings"
41
- msgstr "Sisäänkirjautumisen asetukset"
42
-
43
- #: includes/Login-form-setting/Login-form-background.php:188
44
- msgid "Login Form Position"
45
- msgstr "Kirjautumislomakkeen sijainti"
46
-
47
- #: includes/Login-form-setting/Login-form-background.php:194
48
- msgid "Default"
49
- msgstr "Oletus"
50
-
51
- #: includes/Login-form-setting/Login-form-background.php:195
52
- msgid "Floating"
53
- msgstr "Kelluva"
54
-
55
- #: includes/Login-form-setting/Login-form-background.php:196
56
- msgid "Floating With Customization"
57
- msgstr "Kelluva muokkausvaihtoehdoilla"
58
-
59
- #: includes/Login-form-setting/Login-form-background.php:207
60
- msgid "Float Settings"
61
- msgstr "Kellumisen asetukset"
62
-
63
- #: includes/Login-form-setting/Login-form-background.php:213
64
- msgid "Left"
65
- msgstr "Vasemmalla"
66
-
67
- #: includes/Login-form-setting/Login-form-background.php:216
68
- msgid "Center"
69
- msgstr "Keskellä"
70
-
71
- #: includes/Login-form-setting/Login-form-background.php:219
72
- msgid "Right"
73
- msgstr "Oikealla"
74
-
75
- #: includes/Login-form-setting/Login-form-background.php:229
76
- msgid "Floating With Customization Settings"
77
- msgstr "Kelluva muokkausvaihtoehdoilla"
78
-
79
- #: includes/Login-form-setting/Login-form-background.php:250
80
- msgid "Note: This form position setting will be not responsive."
81
- msgstr "Huomaathan, että tämän lomakkeen sijaintiasetus ei ole responsiivinen."
82
-
83
- #: includes/Login-form-setting/Login-form-background.php:260
84
- #: includes/design/background.php:103 includes/design/background.php:110
85
- msgid "Select Background"
86
- msgstr "Valitse tausta"
87
-
88
- #: includes/Login-form-setting/Login-form-background.php:266
89
- msgid "Select background"
90
- msgstr "Valitse tausta"
91
-
92
- #: includes/Login-form-setting/Login-form-background.php:267
93
- #: includes/design/background.php:111
94
- msgid "Static Background Color"
95
- msgstr "Staattinen taustaväri"
96
-
97
- #: includes/Login-form-setting/Login-form-background.php:268
98
- #: includes/design/background.php:112
99
- msgid "Static Background Image"
100
- msgstr "Staattinen taustakuva"
101
-
102
- #: includes/Login-form-setting/Login-form-background.php:284
103
- #: includes/design/background.php:131
104
- msgid "Background Color"
105
- msgstr "Taustaväri"
106
-
107
- #: includes/Login-form-setting/Login-form-background.php:299
108
- msgid "Login Form Opacity"
109
- msgstr "Kirjautumislomakkeen läpinäkymättömyys"
110
-
111
- #: includes/Login-form-setting/Login-form-background.php:321
112
- #: includes/design/background.php:153 includes/design/background.php:172
113
- msgid "Background Image"
114
- msgstr "Taustakuva"
115
-
116
- #: includes/Login-form-setting/Login-form-background.php:326
117
- #: includes/design/background.php:158 includes/settings/page-settings.php:67
118
- msgid "No media selected!"
119
- msgstr "Ei mediaa valittuna!"
120
-
121
- #: includes/Login-form-setting/Login-form-background.php:327
122
- #: includes/design/background.php:160 includes/settings/page-settings.php:68
123
- msgid "Upload"
124
- msgstr "Lataa"
125
-
126
- #: includes/Login-form-setting/Login-form-background.php:329
127
- #: includes/design/background.php:162 includes/settings/page-settings.php:70
128
- msgid "Preview"
129
- msgstr "Esikatselu"
130
-
131
- #: includes/Login-form-setting/Login-form-background.php:331
132
- #: includes/design/background.php:164
133
- msgid "Remove"
134
- msgstr "Poista"
135
-
136
- #: includes/Login-form-setting/Login-form-background.php:339
137
- #: includes/settings/page-settings.php:78
138
- msgid "Login Background Image"
139
- msgstr "Sisäänkirjautumisen taustakuva"
140
-
141
- #: includes/Login-form-setting/Login-form-background.php:345
142
- #: includes/Login-form-setting/Login-form-background.php:592
143
- #: includes/Login-form-setting/Login-form-background.php:606
144
- #: includes/dashboard/dashboard.php:70 includes/dashboard/dashboard.php:84
145
- #: includes/design/background.php:180 includes/design/background.php:368
146
- #: includes/design/background.php:383 includes/design/text_and_color.php:2594
147
- #: includes/design/text_and_color.php:2609
148
- #: includes/settings/page-settings.php:84
149
- #: includes/settings/page-settings.php:168
150
- #: includes/settings/page-settings.php:182 includes/social/social.php:193
151
- #: includes/social/social.php:207
152
- msgid "Close"
153
- msgstr "Sulje"
154
-
155
- #: includes/Login-form-setting/Login-form-background.php:360
156
- #: includes/design/background.php:213
157
- msgid "Background Repeat"
158
- msgstr "Toista tausta"
159
-
160
- #: includes/Login-form-setting/Login-form-background.php:366
161
- #: includes/design/background.php:219
162
- msgid "No Repeat"
163
- msgstr "Ei toistoa"
164
-
165
- #: includes/Login-form-setting/Login-form-background.php:367
166
- #: includes/design/background.php:220
167
- msgid "Repeat"
168
- msgstr "Toista"
169
-
170
- #: includes/Login-form-setting/Login-form-background.php:368
171
- #: includes/design/background.php:221
172
- msgid "Repeat Horizontally"
173
- msgstr "Toista vaakasuoraan"
174
-
175
- #: includes/Login-form-setting/Login-form-background.php:369
176
- #: includes/design/background.php:222
177
- msgid "Repeat Vertically"
178
- msgstr "Toista pystysuoraan"
179
 
180
- #: includes/Login-form-setting/Login-form-background.php:380
181
- #: includes/design/background.php:234
182
- msgid "Background Position"
183
- msgstr "Taustan sijainti"
184
 
185
- #: includes/Login-form-setting/Login-form-background.php:386
186
- #: includes/design/background.php:240
187
- msgid "Left Top"
188
- msgstr "Vasen ylä"
189
 
190
- #: includes/Login-form-setting/Login-form-background.php:387
191
- #: includes/design/background.php:241
192
- msgid "Left Center"
193
- msgstr "Vasen keski"
194
 
195
- #: includes/Login-form-setting/Login-form-background.php:388
196
- #: includes/design/background.php:242
197
- msgid "Left Bottom"
198
- msgstr "Vasen ala"
199
 
200
- #: includes/Login-form-setting/Login-form-background.php:389
201
- #: includes/design/background.php:243
202
- msgid "Right Top"
203
- msgstr "Oikea ylä"
 
204
 
205
- #: includes/Login-form-setting/Login-form-background.php:390
206
- #: includes/design/background.php:244
207
- msgid "Right Center"
208
- msgstr "Oikea keski"
209
 
210
- #: includes/Login-form-setting/Login-form-background.php:391
211
- #: includes/design/background.php:245
212
- msgid "Right Bottom"
213
- msgstr "Oikea ala"
 
214
 
215
- #: includes/Login-form-setting/Login-form-background.php:392
216
- #: includes/design/background.php:246
217
- msgid "Center Top"
218
- msgstr "Keski ylä"
219
 
220
- #: includes/Login-form-setting/Login-form-background.php:393
221
- #: includes/design/background.php:247
222
- msgid "Center Center"
223
- msgstr "Keskellä"
 
224
 
225
- #: includes/Login-form-setting/Login-form-background.php:394
226
- #: includes/design/background.php:248
227
- msgid "Center Bottom"
228
- msgstr "Keski ala"
229
 
230
- #: includes/Login-form-setting/Login-form-background.php:406
231
- msgid "Background Effect"
232
- msgstr "Taustakuvan efekti"
 
 
233
 
234
- #: includes/Login-form-setting/Login-form-background.php:412
235
- msgid "Select overlay effect"
236
- msgstr "Valitse päällysefekti"
237
 
238
- #: includes/Login-form-setting/Login-form-background.php:413
239
- msgid "No Overlay Effect"
240
- msgstr "Ei päällysefektiä"
 
 
241
 
242
- #: includes/Login-form-setting/Login-form-background.php:414
243
- msgid "Overlay Effect 1"
244
- msgstr "Päällysefekti 1"
245
 
246
- #: includes/Login-form-setting/Login-form-background.php:415
247
- msgid "Overlay Effect 2"
248
- msgstr "Päällysefekti 2"
 
 
249
 
250
- #: includes/Login-form-setting/Login-form-background.php:416
251
- msgid "Overlay Effect 3"
252
- msgstr "Päällysefekti 3"
 
 
253
 
254
- #: includes/Login-form-setting/Login-form-background.php:429
255
- msgid "Login Form Width"
256
- msgstr "Kirjautumislomakkeen leveys"
257
 
258
- #: includes/Login-form-setting/Login-form-background.php:446
259
- msgid "Border Color"
260
- msgstr "Reunuksen väri"
261
 
262
- #: includes/Login-form-setting/Login-form-background.php:461
263
- msgid "Border Radius"
264
- msgstr "Reunuksen säde"
265
 
266
- #: includes/Login-form-setting/Login-form-background.php:478
267
- msgid "Border Style"
268
- msgstr "Reunuksen tyyli"
269
 
270
- #: includes/Login-form-setting/Login-form-background.php:484
271
- msgid "None"
272
- msgstr "Ei mitään"
 
 
273
 
274
- #: includes/Login-form-setting/Login-form-background.php:485
275
- msgid "Solid"
276
- msgstr "Kiinteä"
277
 
278
- #: includes/Login-form-setting/Login-form-background.php:486
279
- msgid "Dotted"
280
- msgstr "Täplikäs"
 
 
281
 
282
- #: includes/Login-form-setting/Login-form-background.php:487
283
- msgid "Dashed"
284
- msgstr "Viivoitettu"
285
 
286
- #: includes/Login-form-setting/Login-form-background.php:488
287
- msgid "Double"
288
- msgstr "Tupla"
289
 
290
- #: includes/Login-form-setting/Login-form-background.php:499
291
- msgid "Border Thickness"
292
- msgstr "Reunuksen tiheys"
 
 
293
 
294
- #: includes/Login-form-setting/Login-form-background.php:516
295
- msgid "Enable Form Shadow?"
296
- msgstr "Aktivoi lomakkeen varjo?"
 
 
297
 
298
- #: includes/Login-form-setting/Login-form-background.php:522
299
- #: includes/design/background.php:201 includes/design/text_and_color.php:244
300
- #: includes/design/text_and_color.php:2531
301
- msgid "Yes"
302
- msgstr "Kyllä"
303
 
304
- #: includes/Login-form-setting/Login-form-background.php:525
305
- #: includes/design/text_and_color.php:247
306
- #: includes/design/text_and_color.php:2534
307
- msgid "No"
308
- msgstr "Ei"
309
 
310
- #: includes/Login-form-setting/Login-form-background.php:536
311
- msgid "Form Shadow Color"
312
- msgstr "Lomakkeen varjon väri"
 
313
 
314
- #: includes/Login-form-setting/Login-form-background.php:551
315
- msgid "Redirect Users After Login (Not Work For Admin)"
316
- msgstr "Uudelleenohjaa muut kuin ylläpitäjät"
 
317
 
318
- #: includes/Login-form-setting/Login-form-background.php:556
319
- msgid "Redirect URL"
320
- msgstr ""
321
 
322
- #: includes/Login-form-setting/Login-form-background.php:557
323
- msgid ""
324
- "Enter the URL to redirect users after login, Setting will not work for an "
325
- "administrator."
326
  msgstr ""
 
 
327
 
328
- #: includes/Login-form-setting/Login-form-background.php:567
329
- #: includes/Login-form-setting/Login-form-background.php:572
330
- msgid "Custom CSS"
331
- msgstr "Mukautettu CSS"
332
-
333
- #: includes/Login-form-setting/Login-form-background.php:574
334
- msgid "Enter any custom css you want to apply on login panel."
335
- msgstr "Kirjoita CSS, jonka haluat asettaa kirjautumispaneeliin."
336
-
337
- #: includes/Login-form-setting/Login-form-background.php:575
338
- msgid "Note: Please Do Not Use"
339
- msgstr "Huom! Ethän käytä tätä"
340
-
341
- #: includes/Login-form-setting/Login-form-background.php:575
342
- msgid "Tag With Custom CSS"
343
- msgstr "Merkitse mukautetulla CSS:llä"
344
-
345
- #: includes/Login-form-setting/Login-form-background.php:592
346
- #: includes/Login-form-setting/Login-form-background.php:606
347
- msgid "Login"
348
- msgstr ""
349
 
350
- #: includes/Login-form-setting/Login-form-background.php:592
351
- #: includes/dashboard/dashboard.php:70 includes/design/background.php:368
352
- #: includes/design/text_and_color.php:2594
353
- #: includes/settings/page-settings.php:168 includes/social/social.php:193
 
354
  msgid "Setting Save Successfully"
355
  msgstr "Asetus tallennettu onnistuneesti"
356
 
357
- #: includes/Login-form-setting/Login-form-background.php:606
358
- #: includes/dashboard/dashboard.php:84 includes/design/background.php:383
359
- #: includes/design/text_and_color.php:2609
360
- #: includes/settings/page-settings.php:182 includes/social/social.php:207
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
361
  msgid "Setting Reset Successfully"
362
  msgstr "Asetus palautettu oletusarvoon onnistuneesti"
363
 
364
- #: includes/Login-form-setting/Login-form-background.php:613
365
- #: includes/dashboard/dashboard.php:91 includes/design/background.php:391
366
- #: includes/design/text_and_color.php:2617
367
- #: includes/settings/page-settings.php:189 includes/social/social.php:214
 
368
  msgid "Save Changes"
369
  msgstr "Tallenna muutokset"
370
 
371
- #: includes/Login-form-setting/Login-form-background.php:616
372
- #: includes/dashboard/dashboard.php:94 includes/design/background.php:394
373
- #: includes/design/text_and_color.php:2620
374
- #: includes/settings/page-settings.php:192 includes/social/social.php:217
 
375
  msgid "Reset Default"
376
  msgstr "Palauta oletusarvoon"
377
 
378
- #: includes/content.php:28
379
- msgid "Admin Custom Login"
380
- msgstr "Mukautettu kirjautumissivu ylläpitäjille"
381
-
382
- #: includes/content.php:63
383
- msgid "Powered By"
384
- msgstr "Tämän mahdollistaa"
385
-
386
- #: includes/content.php:65
387
- msgid "Weblizar"
388
- msgstr "Weblizar"
389
-
390
- #: includes/content.php:69
391
- msgid "Show Us Some Love (Rate Us)"
392
- msgstr "Näytä meille tukesi (Anna meille arvostelu)"
393
-
394
- #: includes/content.php:85 includes/dashboard/dashboard.php:70
395
- #: includes/dashboard/dashboard.php:84
396
- msgid "Dashboard"
397
- msgstr "Päävalikko"
398
-
399
- #: includes/content.php:86
400
- msgid "Application overview"
401
- msgstr "Yleiskatsaus"
402
 
403
- #: includes/content.php:95
404
- msgid "Background Design"
405
- msgstr "Taustan design"
 
406
 
407
- #: includes/content.php:96
408
- msgid "Modify Background design here"
409
- msgstr "Muuta taustan designia"
410
 
411
- #: includes/content.php:106
412
- msgid "Login form Setting"
413
- msgstr "Kirjautumislomakkeen asetukset"
 
414
 
415
- #: includes/content.php:107
416
- msgid "Modify Login design here"
417
- msgstr "Muuta kirjautumisen designia"
 
418
 
419
- #: includes/content.php:117
420
- msgid "Font Setting"
421
- msgstr "Fontin asetukset"
422
 
423
- #: includes/content.php:118
424
- msgid "Modify Login Form Style here"
425
- msgstr "Muuta kirjautumislomakkeen tyyliä"
 
426
 
427
- #: includes/content.php:128 includes/settings/page-settings.php:50
428
- msgid "Logo Settings"
429
- msgstr "Logon asetukset"
 
430
 
431
- #: includes/content.php:129
432
- msgid "Customize Logo Settings here"
433
- msgstr "Muokkaa logon asetuksia"
 
 
434
 
435
- #: includes/content.php:140 includes/social/social.php:21
436
- msgid "Social Settings"
437
- msgstr "Sosiaalisen median painikkeet"
 
 
438
 
439
- #: includes/content.php:141
440
- msgid "Connect with your social profile"
441
- msgstr "Lisää sosiaalisen median profiilisi"
 
 
442
 
443
- #: includes/content.php:151
444
- msgid "Export / Import"
445
- msgstr "Vie / Tuo"
 
446
 
447
- #: includes/content.php:152
448
- msgid "Export / Import Your Data"
449
- msgstr "Vie / Tuo tietosi"
450
 
451
- #: includes/content.php:161
452
- msgid "Recommendations"
453
- msgstr "Suositukset"
 
 
454
 
455
- #: includes/content.php:162
456
- msgid "Get More Free Useful Plugins"
457
- msgstr "Hanki lisää hyödyllisiä plugineita"
 
458
 
459
- #: includes/content.php:171 includes/help/help.php:15
460
- msgid "Help And Support"
461
- msgstr "Apu ja tuki"
 
462
 
463
- #: includes/content.php:172
464
- msgid "Ask your query"
465
- msgstr "Kysy kysymyksesi"
 
466
 
467
- #: includes/content.php:181
468
- msgid "Please rate us"
469
- msgstr "Anna meille arvosana"
 
470
 
471
- #: includes/content.php:182
472
- msgid "If you like us"
473
- msgstr "Jos tykkäät meistä"
 
474
 
475
- #: includes/dashboard/dashboard.php:15
476
- msgid "Admin Custom Login Dashboard"
477
- msgstr "Admin Custom Login -paneeli"
 
478
 
479
- #: includes/dashboard/dashboard.php:27
480
- msgid "Admin Custom Login Status"
481
- msgstr "Admin Custom Loginin status"
 
482
 
483
- #: includes/dashboard/dashboard.php:33
484
- msgid "Disable"
485
- msgstr "Ota pois käytöstä"
 
486
 
487
- #: includes/dashboard/dashboard.php:36
488
- msgid "Enable"
489
- msgstr "Aktivoi"
 
490
 
491
- #: includes/dashboard/dashboard.php:47
492
- msgid "View Login Page"
493
- msgstr "Tarkastele kirjautumissivua"
 
494
 
495
- #: includes/dashboard/dashboard.php:52
496
- msgid "Copy below link and open in another browser where you are not logged in"
497
- msgstr ""
498
- "Kopioi alhaalla oleva linkki ja avaa Incognito-tilassa tai toisessa "
499
- "selaimessa, jossa et ole kirjautunut sisään"
500
 
501
- #: includes/design/background.php:91
502
- msgid "Background Settings"
503
- msgstr "Taustan asetukset"
 
504
 
505
- #: includes/design/background.php:109
506
- msgid "No Background Selected"
507
- msgstr "Ei taustaa valittuna"
 
508
 
509
- #: includes/design/background.php:113
510
- msgid "Background SlideShow"
511
- msgstr "Kuvasarja-tausta"
 
512
 
513
- #: includes/design/background.php:196
514
- msgid "Cover or Strech"
515
- msgstr "Täytä tai venytä"
 
516
 
517
  #: includes/design/background.php:260
518
  msgid "Background Attachment"
@@ -622,6 +516,12 @@ msgstr "Painikkeen fonttikoko"
622
  msgid "Enable Link shadow?"
623
  msgstr "Aktivoi linkkien varjostus?"
624
 
 
 
 
 
 
 
625
  #: includes/design/text_and_color.php:259
626
  msgid "Link Shadow Color"
627
  msgstr "Linkkien varjon väri"
@@ -630,41 +530,75 @@ msgstr "Linkkien varjon väri"
630
  msgid "Headline Font Style"
631
  msgstr "Otsikon fonttityyli"
632
 
633
- #: includes/design/text_and_color.php:837
634
  msgid "Input Font Style"
635
  msgstr "Syöttötekstien fonttityyli"
636
 
637
- #: includes/design/text_and_color.php:1399
638
  msgid "Link Font Style"
639
  msgstr "Linkkien fonttityyli"
640
 
641
- #: includes/design/text_and_color.php:1962
642
  msgid "Button Font Style"
643
  msgstr "Painikkeiden fonttityyli"
644
 
645
- #: includes/design/text_and_color.php:2525
646
  msgid "Enable Input Box Icon?"
647
  msgstr "Aktivoi ikonit tekstikenttiin?"
648
 
649
- #: includes/design/text_and_color.php:2545
650
  msgid "Icon For user Input Box"
651
  msgstr "Ikoni käyttäjätunnuksen tekstikenttään"
652
 
653
- #: includes/design/text_and_color.php:2566
654
  msgid "Icon For Password Input Box"
655
  msgstr "Ikoni salasanan tekstikenttään"
656
 
657
- #: includes/design/text_and_color.php:2594
658
- #: includes/design/text_and_color.php:2609
659
  msgid "Text and Color"
660
  msgstr "Teksti ja väri"
661
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
662
  #: includes/help/help.php:28
663
  msgid "View Support Docs or Open a Ticket"
664
  msgstr "Katso tukidokumentit tai avaa tukitiketti"
665
 
666
- #: includes/help/help.php:38 includes/help/rate.php:15
667
- #: includes/help/rate.php:39
668
  msgid "Rate Us"
669
  msgstr "Anna meille arvosana"
670
 
@@ -707,6 +641,10 @@ msgstr "Kysymys: Miten käännän tämän pluginin kielelleni?"
707
  msgid "here is solution"
708
  msgstr "tässä ratkaisu"
709
 
 
 
 
 
710
  #: includes/help/rate.php:29
711
  msgid ""
712
  "We need your feedback for improve our plugin functionality on WordPress. So, "
@@ -747,6 +685,191 @@ msgstr ""
747
  msgid "Import"
748
  msgstr ""
749
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
750
  #. translators: 1: The rating
751
  #: includes/recommendations/recommendations.php:75
752
  #, php-format
@@ -754,29 +877,42 @@ msgid "%s rating"
754
  msgstr "%s arvosana"
755
 
756
  #: includes/settings/page-settings.php:62
757
- #: includes/settings/page-settings.php:168
758
- #: includes/settings/page-settings.php:182
759
- msgid "Logo"
760
  msgstr "Logo"
761
 
762
  #: includes/settings/page-settings.php:98
763
- msgid "Logo Width"
 
 
764
  msgstr "Logon leveys"
765
 
766
  #: includes/settings/page-settings.php:115
767
- msgid "Logo Height"
 
 
768
  msgstr "Logon korkeus"
769
 
770
  #: includes/settings/page-settings.php:132
771
  #: includes/settings/page-settings.php:137
772
- msgid "Logo URL"
 
 
773
  msgstr "Logon URL"
774
 
775
  #: includes/settings/page-settings.php:147
776
  #: includes/settings/page-settings.php:152
777
- msgid "Logo URL Title"
 
 
778
  msgstr "Logon URL-otsikko"
779
 
 
 
 
 
 
780
  #: includes/social/social.php:33
781
  msgid "Enable Social Icons"
782
  msgstr "Aktivoi sosiaalisen median ikonit"
@@ -886,29 +1022,34 @@ msgid "Tumblr"
886
  msgstr ""
887
 
888
  #: includes/social/social.php:172
889
- msgid "VKontakte"
890
- msgstr ""
891
-
892
- #: includes/social/social.php:173
893
  msgid "Skype"
894
  msgstr ""
895
 
896
- #: includes/social/social.php:174
897
  msgid "Instagram"
898
  msgstr ""
899
 
900
- #: includes/social/social.php:175
901
  msgid "Telegram"
902
  msgstr ""
903
 
904
- #: includes/social/social.php:176
905
  msgid "Whatsapp"
906
  msgstr ""
907
 
908
- #: includes/social/social.php:193 includes/social/social.php:207
909
  msgid "Social"
910
  msgstr ""
911
 
 
 
 
 
 
 
 
 
 
912
  #~ msgid "preview"
913
  #~ msgstr "Esikatselu"
914
 
@@ -955,6 +1096,3 @@ msgstr ""
955
 
956
  #~ msgid "Dashboard "
957
  #~ msgstr "Paneeli"
958
-
959
- #~ msgid "Logo "
960
- #~ msgstr "Logo"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: admin-custom-login\n"
4
+ "POT-Creation-Date: 2018-07-26 18:36+0530\n"
5
+ "PO-Revision-Date: 2018-07-26 18:36+0530\n"
6
  "Last-Translator: Weblizar <lizarweb@gmail.com>\n"
7
  "Language-Team: Eerik Anttila // ekiphet@gmail.com\n"
8
  "Language: fi_FI\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 2.1\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: _e;__;_\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin-custom-login.php:169
20
+ msgid "Username or Email Address"
21
+ msgstr ""
22
+
23
+ #: admin-custom-login.php:169 admin-custom-login.php:175
24
+ msgid "Type Username or Email"
25
+ msgstr ""
26
 
27
+ #: admin-custom-login.php:170
28
  msgid "Password"
29
  msgstr "Salasana"
30
 
31
+ #: admin-custom-login.php:170 admin-custom-login.php:176
32
+ #, fuzzy
33
+ #| msgid "Password"
34
+ msgid "Type Password"
35
+ msgstr "Salasana"
36
+
37
+ #: admin-custom-login.php:193
38
  msgid "Find Us On Social Media"
39
  msgstr "Löydä meidät sosiaalisesta mediasta"
40
 
41
+ #: admin-custom-login.php:477
42
  msgid "Please upload a valid .json file"
43
  msgstr "Tiedosto ei kelpaa (.json)"
44
 
45
+ #: admin-custom-login.php:483
46
  msgid "Please upload a file to import"
47
  msgstr "Lataa tiedosto tuotavaksi"
48
 
49
+ #: includes/content.php:28
50
+ msgid "Admin Custom Login"
51
+ msgstr "Mukautettu kirjautumissivu ylläpitäjille"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
 
53
+ #: includes/content.php:63
54
+ msgid "Powered By"
55
+ msgstr "Tämän mahdollistaa"
 
56
 
57
+ #: includes/content.php:65
58
+ msgid "Weblizar"
59
+ msgstr "Weblizar"
 
60
 
61
+ #: includes/content.php:69
62
+ msgid "Show Us Some Love (Rate Us)"
63
+ msgstr "Näytä meille tukesi (Anna meille arvostelu)"
 
64
 
65
+ #: includes/content.php:86 includes/dashboard/dashboard.php:92
66
+ #: includes/dashboard/dashboard.php:106
67
+ msgid "Dashboard"
68
+ msgstr "Päävalikko"
69
 
70
+ #: includes/content.php:87
71
+ #, fuzzy
72
+ #| msgid "Application overview"
73
+ msgid "application overview"
74
+ msgstr "Yleiskatsaus"
75
 
76
+ #: includes/content.php:96
77
+ msgid "Background Design"
78
+ msgstr "Taustan design"
 
79
 
80
+ #: includes/content.php:97
81
+ #, fuzzy
82
+ #| msgid "Modify Background design here"
83
+ msgid "modify background design here"
84
+ msgstr "Muuta taustan designia"
85
 
86
+ #: includes/content.php:107
87
+ msgid "Login form Setting"
88
+ msgstr "Kirjautumislomakkeen asetukset"
 
89
 
90
+ #: includes/content.php:108
91
+ #, fuzzy
92
+ #| msgid "Modify Login design here"
93
+ msgid "modify login design here"
94
+ msgstr "Muuta kirjautumisen designia"
95
 
96
+ #: includes/content.php:118
97
+ msgid "Font Setting"
98
+ msgstr "Fontin asetukset"
 
99
 
100
+ #: includes/content.php:119
101
+ #, fuzzy
102
+ #| msgid "Modify Login Form Style here"
103
+ msgid "modify login form style here"
104
+ msgstr "Muuta kirjautumislomakkeen tyyliä"
105
 
106
+ #: includes/content.php:129 includes/settings/page-settings.php:50
107
+ msgid "Logo Settings"
108
+ msgstr "Logon asetukset"
109
 
110
+ #: includes/content.php:130
111
+ #, fuzzy
112
+ #| msgid "Customize Logo Settings here"
113
+ msgid "customize logo settings here"
114
+ msgstr "Muokkaa logon asetuksia"
115
 
116
+ #: includes/content.php:141 includes/social/social.php:21
117
+ msgid "Social Settings"
118
+ msgstr "Sosiaalisen median painikkeet"
119
 
120
+ #: includes/content.php:142
121
+ #, fuzzy
122
+ #| msgid "Connect with your social profile"
123
+ msgid "connect with your social profile"
124
+ msgstr "Lisää sosiaalisen median profiilisi"
125
 
126
+ #: includes/content.php:152
127
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
128
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
129
+ msgid "Google Captcha"
130
+ msgstr ""
131
 
132
+ #: includes/content.php:153
133
+ msgid "configure captcha settings"
134
+ msgstr ""
135
 
136
+ #: includes/content.php:163
137
+ msgid "Export / Import"
138
+ msgstr "Vie / Tuo"
139
 
140
+ #: includes/content.php:164
141
+ msgid "import / export plugin settings"
142
+ msgstr ""
143
 
144
+ #: includes/content.php:173
145
+ msgid "Recommendations"
146
+ msgstr "Suositukset"
147
 
148
+ #: includes/content.php:174
149
+ #, fuzzy
150
+ #| msgid "Get More Free Useful Plugins"
151
+ msgid "get more free plugins"
152
+ msgstr "Hanki lisää hyödyllisiä plugineita"
153
 
154
+ #: includes/content.php:183 includes/help/help.php:15
155
+ msgid "Help And Support"
156
+ msgstr "Apu ja tuki"
157
 
158
+ #: includes/content.php:184
159
+ #, fuzzy
160
+ #| msgid "Ask your query"
161
+ msgid "ask your queries"
162
+ msgstr "Kysy kysymyksesi"
163
 
164
+ #: includes/content.php:193 includes/offers.php:11
165
+ msgid "Our Offers"
166
+ msgstr ""
167
 
168
+ #: includes/content.php:194
169
+ msgid "weblizar premium products"
170
+ msgstr ""
171
 
172
+ #: includes/content.php:203
173
+ #, fuzzy
174
+ #| msgid "Rate Us"
175
+ msgid "Rate & Donate Us"
176
+ msgstr "Anna meille arvosana"
177
 
178
+ #: includes/content.php:204
179
+ #, fuzzy
180
+ #| msgid "If you like us"
181
+ msgid "if you like us"
182
+ msgstr "Jos tykkäät meistä"
183
 
184
+ #: includes/dashboard/dashboard.php:15
185
+ msgid "Admin Custom Login Dashboard"
186
+ msgstr "Admin Custom Login -paneeli"
 
 
187
 
188
+ #: includes/dashboard/dashboard.php:27
189
+ msgid "Admin Custom Login Status"
190
+ msgstr "Admin Custom Loginin status"
 
 
191
 
192
+ #: includes/dashboard/dashboard.php:33
193
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:83
194
+ msgid "Disable"
195
+ msgstr "Ota pois käytöstä"
196
 
197
+ #: includes/dashboard/dashboard.php:36
198
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:80
199
+ msgid "Enable"
200
+ msgstr "Aktivoi"
201
 
202
+ #: includes/dashboard/dashboard.php:47
203
+ msgid "View Login Page"
204
+ msgstr "Tarkastele kirjautumissivua"
205
 
206
+ #: includes/dashboard/dashboard.php:52
207
+ msgid "Copy below link and open in another browser where you are not logged in"
 
 
208
  msgstr ""
209
+ "Kopioi alhaalla oleva linkki ja avaa Incognito-tilassa tai toisessa "
210
+ "selaimessa, jossa et ole kirjautunut sisään"
211
 
212
+ #: includes/dashboard/dashboard.php:65 includes/help/rate.php:62
213
+ #, fuzzy
214
+ #| msgid "Rate Us"
215
+ msgid "Donate Us"
216
+ msgstr "Anna meille arvosana"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
 
218
+ #: includes/dashboard/dashboard.php:92 includes/design/background.php:368
219
+ #: includes/design/text_and_color.php:583
220
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
221
+ #: includes/login-form-setting/Login-form-background.php:679
222
+ #: includes/settings/page-settings.php:168 includes/social/social.php:192
223
  msgid "Setting Save Successfully"
224
  msgstr "Asetus tallennettu onnistuneesti"
225
 
226
+ #: includes/dashboard/dashboard.php:92 includes/dashboard/dashboard.php:106
227
+ #: includes/design/background.php:180 includes/design/background.php:368
228
+ #: includes/design/background.php:383 includes/design/text_and_color.php:583
229
+ #: includes/design/text_and_color.php:598
230
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
231
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
232
+ #: includes/login-form-setting/Login-form-background.php:361
233
+ #: includes/login-form-setting/Login-form-background.php:679
234
+ #: includes/login-form-setting/Login-form-background.php:693
235
+ #: includes/settings/page-settings.php:84
236
+ #: includes/settings/page-settings.php:168
237
+ #: includes/settings/page-settings.php:182 includes/social/social.php:192
238
+ #: includes/social/social.php:206
239
+ msgid "Close"
240
+ msgstr "Sulje"
241
+
242
+ #: includes/dashboard/dashboard.php:106 includes/design/background.php:383
243
+ #: includes/design/text_and_color.php:598
244
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
245
+ #: includes/login-form-setting/Login-form-background.php:693
246
+ #: includes/settings/page-settings.php:182 includes/social/social.php:206
247
  msgid "Setting Reset Successfully"
248
  msgstr "Asetus palautettu oletusarvoon onnistuneesti"
249
 
250
+ #: includes/dashboard/dashboard.php:113 includes/design/background.php:391
251
+ #: includes/design/text_and_color.php:606
252
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:138
253
+ #: includes/login-form-setting/Login-form-background.php:700
254
+ #: includes/settings/page-settings.php:189 includes/social/social.php:213
255
  msgid "Save Changes"
256
  msgstr "Tallenna muutokset"
257
 
258
+ #: includes/dashboard/dashboard.php:116 includes/design/background.php:394
259
+ #: includes/design/text_and_color.php:609
260
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:141
261
+ #: includes/login-form-setting/Login-form-background.php:703
262
+ #: includes/settings/page-settings.php:192 includes/social/social.php:216
263
  msgid "Reset Default"
264
  msgstr "Palauta oletusarvoon"
265
 
266
+ #: includes/design/background.php:91
267
+ msgid "Background Settings"
268
+ msgstr "Taustan asetukset"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
 
270
+ #: includes/design/background.php:103 includes/design/background.php:110
271
+ #: includes/login-form-setting/Login-form-background.php:276
272
+ msgid "Select Background"
273
+ msgstr "Valitse tausta"
274
 
275
+ #: includes/design/background.php:109
276
+ msgid "No Background Selected"
277
+ msgstr "Ei taustaa valittuna"
278
 
279
+ #: includes/design/background.php:111
280
+ #: includes/login-form-setting/Login-form-background.php:283
281
+ msgid "Static Background Color"
282
+ msgstr "Staattinen taustaväri"
283
 
284
+ #: includes/design/background.php:112
285
+ #: includes/login-form-setting/Login-form-background.php:284
286
+ msgid "Static Background Image"
287
+ msgstr "Staattinen taustakuva"
288
 
289
+ #: includes/design/background.php:113
290
+ msgid "Background SlideShow"
291
+ msgstr "Kuvasarja-tausta"
292
 
293
+ #: includes/design/background.php:131
294
+ #: includes/login-form-setting/Login-form-background.php:300
295
+ msgid "Background Color"
296
+ msgstr "Taustaväri"
297
 
298
+ #: includes/design/background.php:153 includes/design/background.php:172
299
+ #: includes/login-form-setting/Login-form-background.php:337
300
+ msgid "Background Image"
301
+ msgstr "Taustakuva"
302
 
303
+ #: includes/design/background.php:158
304
+ #: includes/login-form-setting/Login-form-background.php:342
305
+ #: includes/settings/page-settings.php:67
306
+ msgid "No media selected!"
307
+ msgstr "Ei mediaa valittuna!"
308
 
309
+ #: includes/design/background.php:160
310
+ #: includes/login-form-setting/Login-form-background.php:343
311
+ #: includes/settings/page-settings.php:68
312
+ msgid "Upload"
313
+ msgstr "Lataa"
314
 
315
+ #: includes/design/background.php:162
316
+ #: includes/login-form-setting/Login-form-background.php:345
317
+ #: includes/settings/page-settings.php:70
318
+ msgid "Preview"
319
+ msgstr "Esikatselu"
320
 
321
+ #: includes/design/background.php:164
322
+ #: includes/login-form-setting/Login-form-background.php:347
323
+ msgid "Remove"
324
+ msgstr "Poista"
325
 
326
+ #: includes/design/background.php:196
327
+ msgid "Cover or Strech"
328
+ msgstr "Täytä tai venytä"
329
 
330
+ #: includes/design/background.php:201 includes/design/text_and_color.php:244
331
+ #: includes/design/text_and_color.php:520
332
+ #: includes/login-form-setting/Login-form-background.php:538
333
+ msgid "Yes"
334
+ msgstr "Kyllä"
335
 
336
+ #: includes/design/background.php:213
337
+ #: includes/login-form-setting/Login-form-background.php:376
338
+ msgid "Background Repeat"
339
+ msgstr "Toista tausta"
340
 
341
+ #: includes/design/background.php:219
342
+ #: includes/login-form-setting/Login-form-background.php:382
343
+ msgid "No Repeat"
344
+ msgstr "Ei toistoa"
345
 
346
+ #: includes/design/background.php:220
347
+ #: includes/login-form-setting/Login-form-background.php:383
348
+ msgid "Repeat"
349
+ msgstr "Toista"
350
 
351
+ #: includes/design/background.php:221
352
+ #: includes/login-form-setting/Login-form-background.php:384
353
+ msgid "Repeat Horizontally"
354
+ msgstr "Toista vaakasuoraan"
355
 
356
+ #: includes/design/background.php:222
357
+ #: includes/login-form-setting/Login-form-background.php:385
358
+ msgid "Repeat Vertically"
359
+ msgstr "Toista pystysuoraan"
360
 
361
+ #: includes/design/background.php:234
362
+ #: includes/login-form-setting/Login-form-background.php:396
363
+ msgid "Background Position"
364
+ msgstr "Taustan sijainti"
365
 
366
+ #: includes/design/background.php:240
367
+ #: includes/login-form-setting/Login-form-background.php:402
368
+ msgid "Left Top"
369
+ msgstr "Vasen ylä"
370
 
371
+ #: includes/design/background.php:241
372
+ #: includes/login-form-setting/Login-form-background.php:403
373
+ msgid "Left Center"
374
+ msgstr "Vasen keski"
375
 
376
+ #: includes/design/background.php:242
377
+ #: includes/login-form-setting/Login-form-background.php:404
378
+ msgid "Left Bottom"
379
+ msgstr "Vasen ala"
380
 
381
+ #: includes/design/background.php:243
382
+ #: includes/login-form-setting/Login-form-background.php:405
383
+ msgid "Right Top"
384
+ msgstr "Oikea ylä"
385
 
386
+ #: includes/design/background.php:244
387
+ #: includes/login-form-setting/Login-form-background.php:406
388
+ msgid "Right Center"
389
+ msgstr "Oikea keski"
 
390
 
391
+ #: includes/design/background.php:245
392
+ #: includes/login-form-setting/Login-form-background.php:407
393
+ msgid "Right Bottom"
394
+ msgstr "Oikea ala"
395
 
396
+ #: includes/design/background.php:246
397
+ #: includes/login-form-setting/Login-form-background.php:408
398
+ msgid "Center Top"
399
+ msgstr "Keski ylä"
400
 
401
+ #: includes/design/background.php:247
402
+ #: includes/login-form-setting/Login-form-background.php:409
403
+ msgid "Center Center"
404
+ msgstr "Keskellä"
405
 
406
+ #: includes/design/background.php:248
407
+ #: includes/login-form-setting/Login-form-background.php:410
408
+ msgid "Center Bottom"
409
+ msgstr "Keski ala"
410
 
411
  #: includes/design/background.php:260
412
  msgid "Background Attachment"
516
  msgid "Enable Link shadow?"
517
  msgstr "Aktivoi linkkien varjostus?"
518
 
519
+ #: includes/design/text_and_color.php:247
520
+ #: includes/design/text_and_color.php:523
521
+ #: includes/login-form-setting/Login-form-background.php:541
522
+ msgid "No"
523
+ msgstr "Ei"
524
+
525
  #: includes/design/text_and_color.php:259
526
  msgid "Link Shadow Color"
527
  msgstr "Linkkien varjon väri"
530
  msgid "Headline Font Style"
531
  msgstr "Otsikon fonttityyli"
532
 
533
+ #: includes/design/text_and_color.php:336
534
  msgid "Input Font Style"
535
  msgstr "Syöttötekstien fonttityyli"
536
 
537
+ #: includes/design/text_and_color.php:395
538
  msgid "Link Font Style"
539
  msgstr "Linkkien fonttityyli"
540
 
541
+ #: includes/design/text_and_color.php:455
542
  msgid "Button Font Style"
543
  msgstr "Painikkeiden fonttityyli"
544
 
545
+ #: includes/design/text_and_color.php:514
546
  msgid "Enable Input Box Icon?"
547
  msgstr "Aktivoi ikonit tekstikenttiin?"
548
 
549
+ #: includes/design/text_and_color.php:534
550
  msgid "Icon For user Input Box"
551
  msgstr "Ikoni käyttäjätunnuksen tekstikenttään"
552
 
553
+ #: includes/design/text_and_color.php:555
554
  msgid "Icon For Password Input Box"
555
  msgstr "Ikoni salasanan tekstikenttään"
556
 
557
+ #: includes/design/text_and_color.php:583
558
+ #: includes/design/text_and_color.php:598
559
  msgid "Text and Color"
560
  msgstr "Teksti ja väri"
561
 
562
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:14
563
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:44
564
+ #, fuzzy
565
+ #| msgid "Float Settings"
566
+ msgid "Google Captcha Settings"
567
+ msgstr "Kellumisen asetukset"
568
+
569
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:55
570
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:60
571
+ msgid "Site Key"
572
+ msgstr ""
573
+
574
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:64
575
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:69
576
+ msgid "Secret Key"
577
+ msgstr ""
578
+
579
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:74
580
+ msgid "Captcha Display"
581
+ msgstr ""
582
+
583
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:90
584
+ msgid "Captcha Theme"
585
+ msgstr ""
586
+
587
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:96
588
+ #, fuzzy
589
+ #| msgid "Right"
590
+ msgid "Light"
591
+ msgstr "Oikealla"
592
+
593
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:99
594
+ msgid "Dark"
595
+ msgstr ""
596
+
597
  #: includes/help/help.php:28
598
  msgid "View Support Docs or Open a Ticket"
599
  msgstr "Katso tukidokumentit tai avaa tukitiketti"
600
 
601
+ #: includes/help/help.php:38 includes/help/rate.php:39
 
602
  msgid "Rate Us"
603
  msgstr "Anna meille arvosana"
604
 
641
  msgid "here is solution"
642
  msgstr "tässä ratkaisu"
643
 
644
+ #: includes/help/rate.php:15
645
+ msgid "Rate & Donate Us"
646
+ msgstr ""
647
+
648
  #: includes/help/rate.php:29
649
  msgid ""
650
  "We need your feedback for improve our plugin functionality on WordPress. So, "
685
  msgid "Import"
686
  msgstr ""
687
 
688
+ #: includes/login-form-setting/Login-form-background.php:191
689
+ msgid "Login Settings"
690
+ msgstr "Sisäänkirjautumisen asetukset"
691
+
692
+ #: includes/login-form-setting/Login-form-background.php:204
693
+ msgid "Login Form Position"
694
+ msgstr "Kirjautumislomakkeen sijainti"
695
+
696
+ #: includes/login-form-setting/Login-form-background.php:210
697
+ msgid "Default"
698
+ msgstr "Oletus"
699
+
700
+ #: includes/login-form-setting/Login-form-background.php:211
701
+ msgid "Floating"
702
+ msgstr "Kelluva"
703
+
704
+ #: includes/login-form-setting/Login-form-background.php:212
705
+ msgid "Floating With Customization"
706
+ msgstr "Kelluva muokkausvaihtoehdoilla"
707
+
708
+ #: includes/login-form-setting/Login-form-background.php:223
709
+ msgid "Float Settings"
710
+ msgstr "Kellumisen asetukset"
711
+
712
+ #: includes/login-form-setting/Login-form-background.php:229
713
+ msgid "Left"
714
+ msgstr "Vasemmalla"
715
+
716
+ #: includes/login-form-setting/Login-form-background.php:232
717
+ msgid "Center"
718
+ msgstr "Keskellä"
719
+
720
+ #: includes/login-form-setting/Login-form-background.php:235
721
+ msgid "Right"
722
+ msgstr "Oikealla"
723
+
724
+ #: includes/login-form-setting/Login-form-background.php:245
725
+ msgid "Floating With Customization Settings"
726
+ msgstr "Kelluva muokkausvaihtoehdoilla"
727
+
728
+ #: includes/login-form-setting/Login-form-background.php:266
729
+ msgid "Note: This form position setting will be not responsive."
730
+ msgstr "Huomaathan, että tämän lomakkeen sijaintiasetus ei ole responsiivinen."
731
+
732
+ #: includes/login-form-setting/Login-form-background.php:282
733
+ msgid "Select background"
734
+ msgstr "Valitse tausta"
735
+
736
+ #: includes/login-form-setting/Login-form-background.php:315
737
+ msgid "Login Form Opacity"
738
+ msgstr "Kirjautumislomakkeen läpinäkymättömyys"
739
+
740
+ #: includes/login-form-setting/Login-form-background.php:355
741
+ #: includes/settings/page-settings.php:78
742
+ msgid "Login Background Image"
743
+ msgstr "Sisäänkirjautumisen taustakuva"
744
+
745
+ #: includes/login-form-setting/Login-form-background.php:422
746
+ msgid "Background Effect"
747
+ msgstr "Taustakuvan efekti"
748
+
749
+ #: includes/login-form-setting/Login-form-background.php:428
750
+ msgid "Select overlay effect"
751
+ msgstr "Valitse päällysefekti"
752
+
753
+ #: includes/login-form-setting/Login-form-background.php:429
754
+ msgid "No Overlay Effect"
755
+ msgstr "Ei päällysefektiä"
756
+
757
+ #: includes/login-form-setting/Login-form-background.php:430
758
+ msgid "Overlay Effect 1"
759
+ msgstr "Päällysefekti 1"
760
+
761
+ #: includes/login-form-setting/Login-form-background.php:431
762
+ msgid "Overlay Effect 2"
763
+ msgstr "Päällysefekti 2"
764
+
765
+ #: includes/login-form-setting/Login-form-background.php:432
766
+ msgid "Overlay Effect 3"
767
+ msgstr "Päällysefekti 3"
768
+
769
+ #: includes/login-form-setting/Login-form-background.php:445
770
+ msgid "Login Form Width"
771
+ msgstr "Kirjautumislomakkeen leveys"
772
+
773
+ #: includes/login-form-setting/Login-form-background.php:462
774
+ msgid "Border Color"
775
+ msgstr "Reunuksen väri"
776
+
777
+ #: includes/login-form-setting/Login-form-background.php:477
778
+ msgid "Border Radius"
779
+ msgstr "Reunuksen säde"
780
+
781
+ #: includes/login-form-setting/Login-form-background.php:494
782
+ msgid "Border Style"
783
+ msgstr "Reunuksen tyyli"
784
+
785
+ #: includes/login-form-setting/Login-form-background.php:500
786
+ msgid "None"
787
+ msgstr "Ei mitään"
788
+
789
+ #: includes/login-form-setting/Login-form-background.php:501
790
+ msgid "Solid"
791
+ msgstr "Kiinteä"
792
+
793
+ #: includes/login-form-setting/Login-form-background.php:502
794
+ msgid "Dotted"
795
+ msgstr "Täplikäs"
796
+
797
+ #: includes/login-form-setting/Login-form-background.php:503
798
+ msgid "Dashed"
799
+ msgstr "Viivoitettu"
800
+
801
+ #: includes/login-form-setting/Login-form-background.php:504
802
+ msgid "Double"
803
+ msgstr "Tupla"
804
+
805
+ #: includes/login-form-setting/Login-form-background.php:515
806
+ msgid "Border Thickness"
807
+ msgstr "Reunuksen tiheys"
808
+
809
+ #: includes/login-form-setting/Login-form-background.php:532
810
+ msgid "Enable Form Shadow?"
811
+ msgstr "Aktivoi lomakkeen varjo?"
812
+
813
+ #: includes/login-form-setting/Login-form-background.php:552
814
+ msgid "Form Shadow Color"
815
+ msgstr "Lomakkeen varjon väri"
816
+
817
+ #: includes/login-form-setting/Login-form-background.php:567
818
+ msgid "Redirect Users After Login (Not Work For Admin)"
819
+ msgstr "Uudelleenohjaa muut kuin ylläpitäjät"
820
+
821
+ #: includes/login-form-setting/Login-form-background.php:572
822
+ msgid "Redirect URL"
823
+ msgstr ""
824
+
825
+ #: includes/login-form-setting/Login-form-background.php:573
826
+ msgid ""
827
+ "Enter the URL to redirect users after login, Setting will not work for an "
828
+ "administrator."
829
+ msgstr ""
830
+
831
+ #: includes/login-form-setting/Login-form-background.php:585
832
+ msgid "Display Note To User Above Login Form"
833
+ msgstr ""
834
+
835
+ #: includes/login-form-setting/Login-form-background.php:602
836
+ #, fuzzy
837
+ #| msgid "Headline Font size"
838
+ msgid "Message Font Size"
839
+ msgstr "Otsikon fonttikoko"
840
+
841
+ #: includes/login-form-setting/Login-form-background.php:620
842
+ #, fuzzy
843
+ #| msgid "Headline Font Color"
844
+ msgid "Message Font Color"
845
+ msgstr "Otsikon fontin väri"
846
+
847
+ #: includes/login-form-setting/Login-form-background.php:637
848
+ msgid "Tagline Message Display Below Login Form"
849
+ msgstr ""
850
+
851
+ #: includes/login-form-setting/Login-form-background.php:654
852
+ #: includes/login-form-setting/Login-form-background.php:659
853
+ msgid "Custom CSS"
854
+ msgstr "Mukautettu CSS"
855
+
856
+ #: includes/login-form-setting/Login-form-background.php:661
857
+ msgid "Enter any custom css you want to apply on login panel."
858
+ msgstr "Kirjoita CSS, jonka haluat asettaa kirjautumispaneeliin."
859
+
860
+ #: includes/login-form-setting/Login-form-background.php:662
861
+ msgid "Note: Please Do Not Use"
862
+ msgstr "Huom! Ethän käytä tätä"
863
+
864
+ #: includes/login-form-setting/Login-form-background.php:662
865
+ msgid "Tag With Custom CSS"
866
+ msgstr "Merkitse mukautetulla CSS:llä"
867
+
868
+ #: includes/login-form-setting/Login-form-background.php:679
869
+ #: includes/login-form-setting/Login-form-background.php:693
870
+ msgid "Login"
871
+ msgstr ""
872
+
873
  #. translators: 1: The rating
874
  #: includes/recommendations/recommendations.php:75
875
  #, php-format
877
  msgstr "%s arvosana"
878
 
879
  #: includes/settings/page-settings.php:62
880
+ #, fuzzy
881
+ #| msgid "Logo "
882
+ msgid "Logo Image"
883
  msgstr "Logo"
884
 
885
  #: includes/settings/page-settings.php:98
886
+ #, fuzzy
887
+ #| msgid "Logo Width"
888
+ msgid "Logo Image Width"
889
  msgstr "Logon leveys"
890
 
891
  #: includes/settings/page-settings.php:115
892
+ #, fuzzy
893
+ #| msgid "Logo Height"
894
+ msgid "Logo Image Height"
895
  msgstr "Logon korkeus"
896
 
897
  #: includes/settings/page-settings.php:132
898
  #: includes/settings/page-settings.php:137
899
+ #, fuzzy
900
+ #| msgid "Logo URL"
901
+ msgid "Logo Link URL"
902
  msgstr "Logon URL"
903
 
904
  #: includes/settings/page-settings.php:147
905
  #: includes/settings/page-settings.php:152
906
+ #, fuzzy
907
+ #| msgid "Logo URL Title"
908
+ msgid "Logo Image Title"
909
  msgstr "Logon URL-otsikko"
910
 
911
+ #: includes/settings/page-settings.php:168
912
+ #: includes/settings/page-settings.php:182
913
+ msgid "Logo"
914
+ msgstr "Logo"
915
+
916
  #: includes/social/social.php:33
917
  msgid "Enable Social Icons"
918
  msgstr "Aktivoi sosiaalisen median ikonit"
1022
  msgstr ""
1023
 
1024
  #: includes/social/social.php:172
 
 
 
 
1025
  msgid "Skype"
1026
  msgstr ""
1027
 
1028
+ #: includes/social/social.php:173
1029
  msgid "Instagram"
1030
  msgstr ""
1031
 
1032
+ #: includes/social/social.php:174
1033
  msgid "Telegram"
1034
  msgstr ""
1035
 
1036
+ #: includes/social/social.php:175
1037
  msgid "Whatsapp"
1038
  msgstr ""
1039
 
1040
+ #: includes/social/social.php:192 includes/social/social.php:206
1041
  msgid "Social"
1042
  msgstr ""
1043
 
1044
+ #~ msgid "User Name"
1045
+ #~ msgstr "Käyttäjätunnus"
1046
+
1047
+ #~ msgid "Export / Import Your Data"
1048
+ #~ msgstr "Vie / Tuo tietosi"
1049
+
1050
+ #~ msgid "Please rate us"
1051
+ #~ msgstr "Anna meille arvosana"
1052
+
1053
  #~ msgid "preview"
1054
  #~ msgstr "Esikatselu"
1055
 
1096
 
1097
  #~ msgid "Dashboard "
1098
  #~ msgstr "Paneeli"
 
 
 
languages/admin-custom-login-fr_FR.mo CHANGED
Binary file
languages/admin-custom-login-fr_FR.po CHANGED
@@ -1,516 +1,398 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: admin-custom-login\n"
4
- "POT-Creation-Date: 2018-01-31 15:35+0530\n"
5
- "PO-Revision-Date: 2018-01-31 15:35+0530\n"
6
  "Last-Translator: Weblizar <lizarweb@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_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 2.0.6\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: _e;__;_\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: admin-custom-login.php:157 admin-custom-login.php:163
20
- msgid "User Name"
21
  msgstr ""
22
 
23
- #: admin-custom-login.php:158 admin-custom-login.php:164
24
- msgid "Password"
25
- msgstr ""
26
-
27
- #: admin-custom-login.php:174
28
- msgid "Find Us On Social Media"
29
  msgstr ""
30
 
31
- #: admin-custom-login.php:429
32
- msgid "Please upload a valid .json file"
33
- msgstr ""
34
-
35
- #: admin-custom-login.php:435
36
- msgid "Please upload a file to import"
37
- msgstr ""
38
-
39
- #: includes/Login-form-setting/Login-form-background.php:175
40
- msgid "Login Settings"
41
- msgstr "Paramètres de connexion"
42
-
43
- #: includes/Login-form-setting/Login-form-background.php:188
44
- msgid "Login Form Position"
45
  msgstr ""
46
 
47
- #: includes/Login-form-setting/Login-form-background.php:194
48
- msgid "Default"
49
  msgstr ""
50
 
51
- #: includes/Login-form-setting/Login-form-background.php:195
52
- msgid "Floating"
53
  msgstr ""
54
 
55
- #: includes/Login-form-setting/Login-form-background.php:196
56
- msgid "Floating With Customization"
57
  msgstr ""
58
 
59
- #: includes/Login-form-setting/Login-form-background.php:207
60
- msgid "Float Settings"
61
  msgstr ""
62
 
63
- #: includes/Login-form-setting/Login-form-background.php:213
64
- msgid "Left"
65
- msgstr "Gauche"
66
-
67
- #: includes/Login-form-setting/Login-form-background.php:216
68
- msgid "Center"
69
- msgstr "Centre"
70
 
71
- #: includes/Login-form-setting/Login-form-background.php:219
72
- msgid "Right"
73
- msgstr "Droite"
74
 
75
- #: includes/Login-form-setting/Login-form-background.php:229
76
- msgid "Floating With Customization Settings"
77
- msgstr ""
78
 
79
- #: includes/Login-form-setting/Login-form-background.php:250
80
- msgid "Note: This form position setting will be not responsive."
81
  msgstr ""
82
 
83
- #: includes/Login-form-setting/Login-form-background.php:260
84
- #: includes/design/background.php:103 includes/design/background.php:110
85
- msgid "Select Background"
86
- msgstr "Sélectionner l'arrière-plan"
87
-
88
- #: includes/Login-form-setting/Login-form-background.php:266
89
- msgid "Select background"
90
- msgstr "Sélectionner l'arrière-plan"
91
-
92
- #: includes/Login-form-setting/Login-form-background.php:267
93
- #: includes/design/background.php:111
94
- msgid "Static Background Color"
95
- msgstr "Couleur d'arrière-plan statique"
96
-
97
- #: includes/Login-form-setting/Login-form-background.php:268
98
- #: includes/design/background.php:112
99
- msgid "Static Background Image"
100
- msgstr "Image d'arrière-plan statique"
101
-
102
- #: includes/Login-form-setting/Login-form-background.php:284
103
- #: includes/design/background.php:131
104
- msgid "Background Color"
105
- msgstr "Couleur d’arrière-plan"
106
-
107
- #: includes/Login-form-setting/Login-form-background.php:299
108
- msgid "Login Form Opacity"
109
- msgstr "Opacité de l'Espace de Connexion"
110
-
111
- #: includes/Login-form-setting/Login-form-background.php:321
112
- #: includes/design/background.php:153 includes/design/background.php:172
113
- msgid "Background Image"
114
- msgstr "Image de fond"
115
-
116
- #: includes/Login-form-setting/Login-form-background.php:326
117
- #: includes/design/background.php:158 includes/settings/page-settings.php:67
118
- msgid "No media selected!"
119
- msgstr "Aucun média sélectionné !"
120
-
121
- #: includes/Login-form-setting/Login-form-background.php:327
122
- #: includes/design/background.php:160 includes/settings/page-settings.php:68
123
- msgid "Upload"
124
- msgstr "Télécharger"
125
-
126
- #: includes/Login-form-setting/Login-form-background.php:329
127
- #: includes/design/background.php:162 includes/settings/page-settings.php:70
128
- msgid "Preview"
129
- msgstr "Aperçu"
130
-
131
- #: includes/Login-form-setting/Login-form-background.php:331
132
- #: includes/design/background.php:164
133
- msgid "Remove"
134
- msgstr "Supprimer"
135
-
136
- #: includes/Login-form-setting/Login-form-background.php:339
137
- #: includes/settings/page-settings.php:78
138
- msgid "Login Background Image"
139
- msgstr "Image de fond de l'écran de connexion"
140
-
141
- #: includes/Login-form-setting/Login-form-background.php:345
142
- #: includes/Login-form-setting/Login-form-background.php:592
143
- #: includes/Login-form-setting/Login-form-background.php:606
144
- #: includes/dashboard/dashboard.php:70 includes/dashboard/dashboard.php:84
145
- #: includes/design/background.php:180 includes/design/background.php:368
146
- #: includes/design/background.php:383 includes/design/text_and_color.php:2594
147
- #: includes/design/text_and_color.php:2609
148
- #: includes/settings/page-settings.php:84
149
- #: includes/settings/page-settings.php:168
150
- #: includes/settings/page-settings.php:182 includes/social/social.php:193
151
- #: includes/social/social.php:207
152
- msgid "Close"
153
- msgstr "Fermer"
154
-
155
- #: includes/Login-form-setting/Login-form-background.php:360
156
- #: includes/design/background.php:213
157
- msgid "Background Repeat"
158
- msgstr "Répétition de l’arrière-plan"
159
-
160
- #: includes/Login-form-setting/Login-form-background.php:366
161
- #: includes/design/background.php:219
162
- msgid "No Repeat"
163
- msgstr "Pas de repetition"
164
-
165
- #: includes/Login-form-setting/Login-form-background.php:367
166
- #: includes/design/background.php:220
167
- msgid "Repeat"
168
- msgstr "Répétition"
169
-
170
- #: includes/Login-form-setting/Login-form-background.php:368
171
- #: includes/design/background.php:221
172
- msgid "Repeat Horizontally"
173
- msgstr "Répétition horizontale"
174
-
175
- #: includes/Login-form-setting/Login-form-background.php:369
176
- #: includes/design/background.php:222
177
- msgid "Repeat Vertically"
178
- msgstr "Répétition verticale"
179
-
180
- #: includes/Login-form-setting/Login-form-background.php:380
181
- #: includes/design/background.php:234
182
- msgid "Background Position"
183
- msgstr "Position de l’arrière plan"
184
-
185
- #: includes/Login-form-setting/Login-form-background.php:386
186
- #: includes/design/background.php:240
187
- msgid "Left Top"
188
- msgstr "En haut à gauche"
189
-
190
- #: includes/Login-form-setting/Login-form-background.php:387
191
- #: includes/design/background.php:241
192
- msgid "Left Center"
193
- msgstr "Au centre à gauche"
194
-
195
- #: includes/Login-form-setting/Login-form-background.php:388
196
- #: includes/design/background.php:242
197
- msgid "Left Bottom"
198
- msgstr "En bas à gauche"
199
-
200
- #: includes/Login-form-setting/Login-form-background.php:389
201
- #: includes/design/background.php:243
202
- msgid "Right Top"
203
- msgstr "En haut à droite"
204
-
205
- #: includes/Login-form-setting/Login-form-background.php:390
206
- #: includes/design/background.php:244
207
- msgid "Right Center"
208
- msgstr "Au centre à droite"
209
-
210
- #: includes/Login-form-setting/Login-form-background.php:391
211
- #: includes/design/background.php:245
212
- msgid "Right Bottom"
213
- msgstr "En bas à droite"
214
-
215
- #: includes/Login-form-setting/Login-form-background.php:392
216
- #: includes/design/background.php:246
217
- msgid "Center Top"
218
- msgstr "En haut au centre"
219
-
220
- #: includes/Login-form-setting/Login-form-background.php:393
221
- #: includes/design/background.php:247
222
- msgid "Center Center"
223
- msgstr "Centré Centré"
224
-
225
- #: includes/Login-form-setting/Login-form-background.php:394
226
- #: includes/design/background.php:248
227
- msgid "Center Bottom"
228
- msgstr "En bas au centre"
229
 
230
- #: includes/Login-form-setting/Login-form-background.php:406
231
- msgid "Background Effect"
232
- msgstr "Effet Arrière Plan"
 
 
233
 
234
- #: includes/Login-form-setting/Login-form-background.php:412
235
- msgid "Select overlay effect"
236
- msgstr "Sélectionnez l'effet de superposition"
237
 
238
- #: includes/Login-form-setting/Login-form-background.php:413
239
- msgid "No Overlay Effect"
240
- msgstr "Aucun effet de superposition"
 
 
241
 
242
- #: includes/Login-form-setting/Login-form-background.php:414
243
- msgid "Overlay Effect 1"
244
- msgstr "Effet de superposition 1"
245
 
246
- #: includes/Login-form-setting/Login-form-background.php:415
247
- msgid "Overlay Effect 2"
248
- msgstr "Effet de superposition 2"
 
 
249
 
250
- #: includes/Login-form-setting/Login-form-background.php:416
251
- msgid "Overlay Effect 3"
252
- msgstr "Effet de superposition 3"
253
 
254
- #: includes/Login-form-setting/Login-form-background.php:429
255
- msgid "Login Form Width"
256
- msgstr "Largeur de l'Espace de Connexion"
 
 
257
 
258
- #: includes/Login-form-setting/Login-form-background.php:446
259
- msgid "Border Color"
260
- msgstr "Couleur des bordures"
261
 
262
- #: includes/Login-form-setting/Login-form-background.php:461
263
- msgid "Border Radius"
264
- msgstr "Rayon de la bordure"
 
 
265
 
266
- #: includes/Login-form-setting/Login-form-background.php:478
267
- msgid "Border Style"
268
- msgstr "Style de bordure"
269
 
270
- #: includes/Login-form-setting/Login-form-background.php:484
271
- msgid "None"
272
- msgstr "Aucun"
 
 
273
 
274
- #: includes/Login-form-setting/Login-form-background.php:485
275
- msgid "Solid"
276
- msgstr "Plein"
 
 
277
 
278
- #: includes/Login-form-setting/Login-form-background.php:486
279
- msgid "Dotted"
280
- msgstr "Pointillé"
281
 
282
- #: includes/Login-form-setting/Login-form-background.php:487
283
- msgid "Dashed"
284
- msgstr "Tiret"
285
 
286
- #: includes/Login-form-setting/Login-form-background.php:488
287
- msgid "Double"
288
- msgstr "Double"
289
 
290
- #: includes/Login-form-setting/Login-form-background.php:499
291
- msgid "Border Thickness"
292
- msgstr "Épaisseur de la bordure"
293
 
294
- #: includes/Login-form-setting/Login-form-background.php:516
295
- msgid "Enable Form Shadow?"
296
- msgstr "Activer l'ombre du formulaire?"
297
 
298
- #: includes/Login-form-setting/Login-form-background.php:522
299
- #: includes/design/background.php:201 includes/design/text_and_color.php:244
300
- #: includes/design/text_and_color.php:2531
301
- msgid "Yes"
302
- msgstr "Oui"
303
 
304
- #: includes/Login-form-setting/Login-form-background.php:525
305
- #: includes/design/text_and_color.php:247
306
- #: includes/design/text_and_color.php:2534
307
- msgid "No"
308
- msgstr "Non"
309
 
310
- #: includes/Login-form-setting/Login-form-background.php:536
311
- msgid "Form Shadow Color"
312
- msgstr "Couleur de l’ombre du formulaire"
313
 
314
- #: includes/Login-form-setting/Login-form-background.php:551
315
- msgid "Redirect Users After Login (Not Work For Admin)"
316
  msgstr ""
317
 
318
- #: includes/Login-form-setting/Login-form-background.php:556
319
- msgid "Redirect URL"
320
  msgstr ""
321
 
322
- #: includes/Login-form-setting/Login-form-background.php:557
323
- msgid ""
324
- "Enter the URL to redirect users after login, Setting will not work for an "
325
- "administrator."
326
  msgstr ""
327
 
328
- #: includes/Login-form-setting/Login-form-background.php:567
329
- #: includes/Login-form-setting/Login-form-background.php:572
330
- msgid "Custom CSS"
 
 
 
331
  msgstr ""
332
 
333
- #: includes/Login-form-setting/Login-form-background.php:574
334
- msgid "Enter any custom css you want to apply on login panel."
 
335
  msgstr ""
336
 
337
- #: includes/Login-form-setting/Login-form-background.php:575
338
- msgid "Note: Please Do Not Use"
 
339
  msgstr ""
340
 
341
- #: includes/Login-form-setting/Login-form-background.php:575
342
- msgid "Tag With Custom CSS"
 
 
 
 
343
  msgstr ""
344
 
345
- #: includes/Login-form-setting/Login-form-background.php:592
346
- #: includes/Login-form-setting/Login-form-background.php:606
347
- msgid "Login"
348
- msgstr "Connexion"
349
 
350
- #: includes/Login-form-setting/Login-form-background.php:592
351
- #: includes/dashboard/dashboard.php:70 includes/design/background.php:368
352
- #: includes/design/text_and_color.php:2594
353
- #: includes/settings/page-settings.php:168 includes/social/social.php:193
 
354
  msgid "Setting Save Successfully"
355
  msgstr "Paramètres enregistrés avec succès"
356
 
357
- #: includes/Login-form-setting/Login-form-background.php:606
358
- #: includes/dashboard/dashboard.php:84 includes/design/background.php:383
359
- #: includes/design/text_and_color.php:2609
360
- #: includes/settings/page-settings.php:182 includes/social/social.php:207
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
361
  msgid "Setting Reset Successfully"
362
  msgstr "Paramètres Réinitialisés avec succès"
363
 
364
- #: includes/Login-form-setting/Login-form-background.php:613
365
- #: includes/dashboard/dashboard.php:91 includes/design/background.php:391
366
- #: includes/design/text_and_color.php:2617
367
- #: includes/settings/page-settings.php:189 includes/social/social.php:214
 
368
  msgid "Save Changes"
369
  msgstr "Sauvegarder les modifications"
370
 
371
- #: includes/Login-form-setting/Login-form-background.php:616
372
- #: includes/dashboard/dashboard.php:94 includes/design/background.php:394
373
- #: includes/design/text_and_color.php:2620
374
- #: includes/settings/page-settings.php:192 includes/social/social.php:217
 
375
  msgid "Reset Default"
376
  msgstr "Réinitialiser"
377
 
378
- #: includes/content.php:28
379
- msgid "Admin Custom Login"
380
- msgstr "Connexion personnalisée"
381
-
382
- #: includes/content.php:63
383
- msgid "Powered By"
384
- msgstr "Généré par"
385
-
386
- #: includes/content.php:65
387
- msgid "Weblizar"
388
- msgstr "Weblizar"
389
-
390
- #: includes/content.php:69
391
- msgid "Show Us Some Love (Rate Us)"
392
- msgstr ""
393
-
394
- #: includes/content.php:85 includes/dashboard/dashboard.php:70
395
- #: includes/dashboard/dashboard.php:84
396
- msgid "Dashboard"
397
- msgstr "Tableau de bord"
398
-
399
- #: includes/content.php:86
400
- msgid "Application overview"
401
- msgstr "Présentation des applications"
402
 
403
- #: includes/content.php:95
404
- msgid "Background Design"
405
- msgstr "Design du fond"
 
406
 
407
- #: includes/content.php:96
408
- msgid "Modify Background design here"
409
- msgstr "Modifier le design du fond ici"
410
 
411
- #: includes/content.php:106
412
- msgid "Login form Setting"
413
- msgstr "Espace de Connexion"
 
414
 
415
- #: includes/content.php:107
416
- msgid "Modify Login design here"
417
- msgstr "Modifier le design de Connexion ici"
 
418
 
419
- #: includes/content.php:117
420
- msgid "Font Setting"
421
- msgstr "Réglage de la police"
422
 
423
- #: includes/content.php:118
424
- msgid "Modify Login Form Style here"
425
- msgstr "Modifier le formulaire de Connexion ici"
 
426
 
427
- #: includes/content.php:128 includes/settings/page-settings.php:50
428
- msgid "Logo Settings"
429
- msgstr "Paramètres du Logo"
 
430
 
431
- #: includes/content.php:129
432
- msgid "Customize Logo Settings here"
433
- msgstr "Personnaliser les paramètres du Logo ici"
 
 
434
 
435
- #: includes/content.php:140 includes/social/social.php:21
436
- msgid "Social Settings"
437
- msgstr "Réseaux Sociaux"
 
 
438
 
439
- #: includes/content.php:141
440
- msgid "Connect with your social profile"
441
- msgstr "Se connecter avec votre profil social"
 
 
442
 
443
- #: includes/content.php:151
444
- msgid "Export / Import"
445
- msgstr ""
 
446
 
447
- #: includes/content.php:152
448
- msgid "Export / Import Your Data"
449
- msgstr ""
450
 
451
- #: includes/content.php:161
452
- msgid "Recommendations"
453
- msgstr ""
 
 
454
 
455
- #: includes/content.php:162
456
- msgid "Get More Free Useful Plugins"
457
- msgstr ""
 
458
 
459
- #: includes/content.php:171 includes/help/help.php:15
460
- msgid "Help And Support"
461
- msgstr ""
 
462
 
463
- #: includes/content.php:172
464
- msgid "Ask your query"
465
- msgstr ""
 
466
 
467
- #: includes/content.php:181
468
- msgid "Please rate us"
469
- msgstr ""
 
470
 
471
- #: includes/content.php:182
472
- msgid "If you like us"
473
- msgstr ""
 
474
 
475
- #: includes/dashboard/dashboard.php:15
476
- msgid "Admin Custom Login Dashboard"
477
- msgstr "Panneau d'administration de Connexion personnalisée"
 
478
 
479
- #: includes/dashboard/dashboard.php:27
480
- msgid "Admin Custom Login Status"
481
- msgstr ""
 
482
 
483
- #: includes/dashboard/dashboard.php:33
484
- msgid "Disable"
485
- msgstr ""
 
486
 
487
- #: includes/dashboard/dashboard.php:36
488
- msgid "Enable"
489
- msgstr ""
 
490
 
491
- #: includes/dashboard/dashboard.php:47
492
- msgid "View Login Page"
493
- msgstr "Voir la Page de Connexion"
 
494
 
495
- #: includes/dashboard/dashboard.php:52
496
- msgid "Copy below link and open in another browser where you are not logged in"
497
- msgstr ""
 
498
 
499
- #: includes/design/background.php:91
500
- msgid "Background Settings"
501
- msgstr "Paramètres d'arrière-plan"
 
502
 
503
- #: includes/design/background.php:109
504
- msgid "No Background Selected"
505
- msgstr "Aucun arrière-plan sélectionné"
 
506
 
507
- #: includes/design/background.php:113
508
- msgid "Background SlideShow"
509
- msgstr "Diaporama d'arrière-plan"
 
510
 
511
- #: includes/design/background.php:196
512
- msgid "Cover or Strech"
513
- msgstr "Couvert ou Etiré"
 
514
 
515
  #: includes/design/background.php:260
516
  msgid "Background Attachment"
@@ -620,6 +502,12 @@ msgstr "Taille de police du bouton"
620
  msgid "Enable Link shadow?"
621
  msgstr "Activer l'ombre du formulaire ?"
622
 
 
 
 
 
 
 
623
  #: includes/design/text_and_color.php:259
624
  msgid "Link Shadow Color"
625
  msgstr "Couleur de l’ombre du formulaire"
@@ -628,41 +516,75 @@ msgstr "Couleur de l’ombre du formulaire"
628
  msgid "Headline Font Style"
629
  msgstr "Style de police de titre"
630
 
631
- #: includes/design/text_and_color.php:837
632
  msgid "Input Font Style"
633
  msgstr "Style de la police des champs"
634
 
635
- #: includes/design/text_and_color.php:1399
636
  msgid "Link Font Style"
637
  msgstr "Style de la police des liens"
638
 
639
- #: includes/design/text_and_color.php:1962
640
  msgid "Button Font Style"
641
  msgstr "Style de la police du bouton"
642
 
643
- #: includes/design/text_and_color.php:2525
644
  msgid "Enable Input Box Icon?"
645
  msgstr "Activer l'icone Entrée ?"
646
 
647
- #: includes/design/text_and_color.php:2545
648
  msgid "Icon For user Input Box"
649
  msgstr "Icone pour la fenêtre utilisateur"
650
 
651
- #: includes/design/text_and_color.php:2566
652
  msgid "Icon For Password Input Box"
653
  msgstr "Icone pour la fenêtre mot de passe"
654
 
655
- #: includes/design/text_and_color.php:2594
656
- #: includes/design/text_and_color.php:2609
657
  msgid "Text and Color"
658
  msgstr "Texte et Couleur"
659
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
660
  #: includes/help/help.php:28
661
  msgid "View Support Docs or Open a Ticket"
662
  msgstr ""
663
 
664
- #: includes/help/help.php:38 includes/help/rate.php:15
665
- #: includes/help/rate.php:39
666
  msgid "Rate Us"
667
  msgstr ""
668
 
@@ -700,6 +622,10 @@ msgstr ""
700
  msgid "here is solution"
701
  msgstr ""
702
 
 
 
 
 
703
  #: includes/help/rate.php:29
704
  msgid ""
705
  "We need your feedback for improve our plugin functionality on WordPress. So, "
@@ -734,6 +660,191 @@ msgstr ""
734
  msgid "Import"
735
  msgstr ""
736
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
737
  #. translators: 1: The rating
738
  #: includes/recommendations/recommendations.php:75
739
  #, php-format
@@ -741,29 +852,42 @@ msgid "%s rating"
741
  msgstr ""
742
 
743
  #: includes/settings/page-settings.php:62
744
- #: includes/settings/page-settings.php:168
745
- #: includes/settings/page-settings.php:182
746
- msgid "Logo"
747
  msgstr "Logo"
748
 
749
  #: includes/settings/page-settings.php:98
750
- msgid "Logo Width"
 
 
751
  msgstr "Largeur du Logo"
752
 
753
  #: includes/settings/page-settings.php:115
754
- msgid "Logo Height"
 
 
755
  msgstr "Hauteur du logo"
756
 
757
  #: includes/settings/page-settings.php:132
758
  #: includes/settings/page-settings.php:137
759
- msgid "Logo URL"
 
 
760
  msgstr "Url du Logo"
761
 
762
  #: includes/settings/page-settings.php:147
763
  #: includes/settings/page-settings.php:152
764
- msgid "Logo URL Title"
 
 
765
  msgstr "Titre de l'URL du Logo"
766
 
 
 
 
 
 
767
  #: includes/social/social.php:33
768
  msgid "Enable Social Icons"
769
  msgstr "Activer les icônes sociaux"
@@ -873,26 +997,22 @@ msgid "Tumblr"
873
  msgstr ""
874
 
875
  #: includes/social/social.php:172
876
- msgid "VKontakte"
877
- msgstr ""
878
-
879
- #: includes/social/social.php:173
880
  msgid "Skype"
881
  msgstr ""
882
 
883
- #: includes/social/social.php:174
884
  msgid "Instagram"
885
  msgstr ""
886
 
887
- #: includes/social/social.php:175
888
  msgid "Telegram"
889
  msgstr ""
890
 
891
- #: includes/social/social.php:176
892
  msgid "Whatsapp"
893
  msgstr ""
894
 
895
- #: includes/social/social.php:193 includes/social/social.php:207
896
  msgid "Social"
897
  msgstr "Sociaux"
898
 
@@ -902,9 +1022,6 @@ msgstr "Sociaux"
902
  #~ msgid "Dashboard "
903
  #~ msgstr "Tableau de bord"
904
 
905
- #~ msgid "Logo "
906
- #~ msgstr "Logo"
907
-
908
  #~ msgid "Login from Floating"
909
  #~ msgstr "Espace de Connexion Flottant"
910
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: admin-custom-login\n"
4
+ "POT-Creation-Date: 2018-07-26 18:37+0530\n"
5
+ "PO-Revision-Date: 2018-07-26 18:37+0530\n"
6
  "Last-Translator: Weblizar <lizarweb@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_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 2.1\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: _e;__;_\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin-custom-login.php:169
20
+ msgid "Username or Email Address"
21
  msgstr ""
22
 
23
+ #: admin-custom-login.php:169 admin-custom-login.php:175
24
+ msgid "Type Username or Email"
 
 
 
 
25
  msgstr ""
26
 
27
+ #: admin-custom-login.php:170
28
+ msgid "Password"
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgstr ""
30
 
31
+ #: admin-custom-login.php:170 admin-custom-login.php:176
32
+ msgid "Type Password"
33
  msgstr ""
34
 
35
+ #: admin-custom-login.php:193
36
+ msgid "Find Us On Social Media"
37
  msgstr ""
38
 
39
+ #: admin-custom-login.php:477
40
+ msgid "Please upload a valid .json file"
41
  msgstr ""
42
 
43
+ #: admin-custom-login.php:483
44
+ msgid "Please upload a file to import"
45
  msgstr ""
46
 
47
+ #: includes/content.php:28
48
+ msgid "Admin Custom Login"
49
+ msgstr "Connexion personnalisée"
 
 
 
 
50
 
51
+ #: includes/content.php:63
52
+ msgid "Powered By"
53
+ msgstr "Généré par"
54
 
55
+ #: includes/content.php:65
56
+ msgid "Weblizar"
57
+ msgstr "Weblizar"
58
 
59
+ #: includes/content.php:69
60
+ msgid "Show Us Some Love (Rate Us)"
61
  msgstr ""
62
 
63
+ #: includes/content.php:86 includes/dashboard/dashboard.php:92
64
+ #: includes/dashboard/dashboard.php:106
65
+ msgid "Dashboard"
66
+ msgstr "Tableau de bord"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
 
68
+ #: includes/content.php:87
69
+ #, fuzzy
70
+ #| msgid "Application overview"
71
+ msgid "application overview"
72
+ msgstr "Présentation des applications"
73
 
74
+ #: includes/content.php:96
75
+ msgid "Background Design"
76
+ msgstr "Design du fond"
77
 
78
+ #: includes/content.php:97
79
+ #, fuzzy
80
+ #| msgid "Modify Background design here"
81
+ msgid "modify background design here"
82
+ msgstr "Modifier le design du fond ici"
83
 
84
+ #: includes/content.php:107
85
+ msgid "Login form Setting"
86
+ msgstr "Espace de Connexion"
87
 
88
+ #: includes/content.php:108
89
+ #, fuzzy
90
+ #| msgid "Modify Login design here"
91
+ msgid "modify login design here"
92
+ msgstr "Modifier le design de Connexion ici"
93
 
94
+ #: includes/content.php:118
95
+ msgid "Font Setting"
96
+ msgstr "Réglage de la police"
97
 
98
+ #: includes/content.php:119
99
+ #, fuzzy
100
+ #| msgid "Modify Login Form Style here"
101
+ msgid "modify login form style here"
102
+ msgstr "Modifier le formulaire de Connexion ici"
103
 
104
+ #: includes/content.php:129 includes/settings/page-settings.php:50
105
+ msgid "Logo Settings"
106
+ msgstr "Paramètres du Logo"
107
 
108
+ #: includes/content.php:130
109
+ #, fuzzy
110
+ #| msgid "Customize Logo Settings here"
111
+ msgid "customize logo settings here"
112
+ msgstr "Personnaliser les paramètres du Logo ici"
113
 
114
+ #: includes/content.php:141 includes/social/social.php:21
115
+ msgid "Social Settings"
116
+ msgstr "Réseaux Sociaux"
117
 
118
+ #: includes/content.php:142
119
+ #, fuzzy
120
+ #| msgid "Connect with your social profile"
121
+ msgid "connect with your social profile"
122
+ msgstr "Se connecter avec votre profil social"
123
 
124
+ #: includes/content.php:152
125
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
126
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
127
+ msgid "Google Captcha"
128
+ msgstr ""
129
 
130
+ #: includes/content.php:153
131
+ msgid "configure captcha settings"
132
+ msgstr ""
133
 
134
+ #: includes/content.php:163
135
+ msgid "Export / Import"
136
+ msgstr ""
137
 
138
+ #: includes/content.php:164
139
+ msgid "import / export plugin settings"
140
+ msgstr ""
141
 
142
+ #: includes/content.php:173
143
+ msgid "Recommendations"
144
+ msgstr ""
145
 
146
+ #: includes/content.php:174
147
+ msgid "get more free plugins"
148
+ msgstr ""
149
 
150
+ #: includes/content.php:183 includes/help/help.php:15
151
+ msgid "Help And Support"
152
+ msgstr ""
 
 
153
 
154
+ #: includes/content.php:184
155
+ msgid "ask your queries"
156
+ msgstr ""
 
 
157
 
158
+ #: includes/content.php:193 includes/offers.php:11
159
+ msgid "Our Offers"
160
+ msgstr ""
161
 
162
+ #: includes/content.php:194
163
+ msgid "weblizar premium products"
164
  msgstr ""
165
 
166
+ #: includes/content.php:203
167
+ msgid "Rate & Donate Us"
168
  msgstr ""
169
 
170
+ #: includes/content.php:204
171
+ msgid "if you like us"
 
 
172
  msgstr ""
173
 
174
+ #: includes/dashboard/dashboard.php:15
175
+ msgid "Admin Custom Login Dashboard"
176
+ msgstr "Panneau d'administration de Connexion personnalisée"
177
+
178
+ #: includes/dashboard/dashboard.php:27
179
+ msgid "Admin Custom Login Status"
180
  msgstr ""
181
 
182
+ #: includes/dashboard/dashboard.php:33
183
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:83
184
+ msgid "Disable"
185
  msgstr ""
186
 
187
+ #: includes/dashboard/dashboard.php:36
188
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:80
189
+ msgid "Enable"
190
  msgstr ""
191
 
192
+ #: includes/dashboard/dashboard.php:47
193
+ msgid "View Login Page"
194
+ msgstr "Voir la Page de Connexion"
195
+
196
+ #: includes/dashboard/dashboard.php:52
197
+ msgid "Copy below link and open in another browser where you are not logged in"
198
  msgstr ""
199
 
200
+ #: includes/dashboard/dashboard.php:65 includes/help/rate.php:62
201
+ msgid "Donate Us"
202
+ msgstr ""
 
203
 
204
+ #: includes/dashboard/dashboard.php:92 includes/design/background.php:368
205
+ #: includes/design/text_and_color.php:583
206
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
207
+ #: includes/login-form-setting/Login-form-background.php:679
208
+ #: includes/settings/page-settings.php:168 includes/social/social.php:192
209
  msgid "Setting Save Successfully"
210
  msgstr "Paramètres enregistrés avec succès"
211
 
212
+ #: includes/dashboard/dashboard.php:92 includes/dashboard/dashboard.php:106
213
+ #: includes/design/background.php:180 includes/design/background.php:368
214
+ #: includes/design/background.php:383 includes/design/text_and_color.php:583
215
+ #: includes/design/text_and_color.php:598
216
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
217
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
218
+ #: includes/login-form-setting/Login-form-background.php:361
219
+ #: includes/login-form-setting/Login-form-background.php:679
220
+ #: includes/login-form-setting/Login-form-background.php:693
221
+ #: includes/settings/page-settings.php:84
222
+ #: includes/settings/page-settings.php:168
223
+ #: includes/settings/page-settings.php:182 includes/social/social.php:192
224
+ #: includes/social/social.php:206
225
+ msgid "Close"
226
+ msgstr "Fermer"
227
+
228
+ #: includes/dashboard/dashboard.php:106 includes/design/background.php:383
229
+ #: includes/design/text_and_color.php:598
230
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
231
+ #: includes/login-form-setting/Login-form-background.php:693
232
+ #: includes/settings/page-settings.php:182 includes/social/social.php:206
233
  msgid "Setting Reset Successfully"
234
  msgstr "Paramètres Réinitialisés avec succès"
235
 
236
+ #: includes/dashboard/dashboard.php:113 includes/design/background.php:391
237
+ #: includes/design/text_and_color.php:606
238
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:138
239
+ #: includes/login-form-setting/Login-form-background.php:700
240
+ #: includes/settings/page-settings.php:189 includes/social/social.php:213
241
  msgid "Save Changes"
242
  msgstr "Sauvegarder les modifications"
243
 
244
+ #: includes/dashboard/dashboard.php:116 includes/design/background.php:394
245
+ #: includes/design/text_and_color.php:609
246
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:141
247
+ #: includes/login-form-setting/Login-form-background.php:703
248
+ #: includes/settings/page-settings.php:192 includes/social/social.php:216
249
  msgid "Reset Default"
250
  msgstr "Réinitialiser"
251
 
252
+ #: includes/design/background.php:91
253
+ msgid "Background Settings"
254
+ msgstr "Paramètres d'arrière-plan"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
 
256
+ #: includes/design/background.php:103 includes/design/background.php:110
257
+ #: includes/login-form-setting/Login-form-background.php:276
258
+ msgid "Select Background"
259
+ msgstr "Sélectionner l'arrière-plan"
260
 
261
+ #: includes/design/background.php:109
262
+ msgid "No Background Selected"
263
+ msgstr "Aucun arrière-plan sélectionné"
264
 
265
+ #: includes/design/background.php:111
266
+ #: includes/login-form-setting/Login-form-background.php:283
267
+ msgid "Static Background Color"
268
+ msgstr "Couleur d'arrière-plan statique"
269
 
270
+ #: includes/design/background.php:112
271
+ #: includes/login-form-setting/Login-form-background.php:284
272
+ msgid "Static Background Image"
273
+ msgstr "Image d'arrière-plan statique"
274
 
275
+ #: includes/design/background.php:113
276
+ msgid "Background SlideShow"
277
+ msgstr "Diaporama d'arrière-plan"
278
 
279
+ #: includes/design/background.php:131
280
+ #: includes/login-form-setting/Login-form-background.php:300
281
+ msgid "Background Color"
282
+ msgstr "Couleur d’arrière-plan"
283
 
284
+ #: includes/design/background.php:153 includes/design/background.php:172
285
+ #: includes/login-form-setting/Login-form-background.php:337
286
+ msgid "Background Image"
287
+ msgstr "Image de fond"
288
 
289
+ #: includes/design/background.php:158
290
+ #: includes/login-form-setting/Login-form-background.php:342
291
+ #: includes/settings/page-settings.php:67
292
+ msgid "No media selected!"
293
+ msgstr "Aucun média sélectionné !"
294
 
295
+ #: includes/design/background.php:160
296
+ #: includes/login-form-setting/Login-form-background.php:343
297
+ #: includes/settings/page-settings.php:68
298
+ msgid "Upload"
299
+ msgstr "Télécharger"
300
 
301
+ #: includes/design/background.php:162
302
+ #: includes/login-form-setting/Login-form-background.php:345
303
+ #: includes/settings/page-settings.php:70
304
+ msgid "Preview"
305
+ msgstr "Aperçu"
306
 
307
+ #: includes/design/background.php:164
308
+ #: includes/login-form-setting/Login-form-background.php:347
309
+ msgid "Remove"
310
+ msgstr "Supprimer"
311
 
312
+ #: includes/design/background.php:196
313
+ msgid "Cover or Strech"
314
+ msgstr "Couvert ou Etiré"
315
 
316
+ #: includes/design/background.php:201 includes/design/text_and_color.php:244
317
+ #: includes/design/text_and_color.php:520
318
+ #: includes/login-form-setting/Login-form-background.php:538
319
+ msgid "Yes"
320
+ msgstr "Oui"
321
 
322
+ #: includes/design/background.php:213
323
+ #: includes/login-form-setting/Login-form-background.php:376
324
+ msgid "Background Repeat"
325
+ msgstr "Répétition de l’arrière-plan"
326
 
327
+ #: includes/design/background.php:219
328
+ #: includes/login-form-setting/Login-form-background.php:382
329
+ msgid "No Repeat"
330
+ msgstr "Pas de repetition"
331
 
332
+ #: includes/design/background.php:220
333
+ #: includes/login-form-setting/Login-form-background.php:383
334
+ msgid "Repeat"
335
+ msgstr "Répétition"
336
 
337
+ #: includes/design/background.php:221
338
+ #: includes/login-form-setting/Login-form-background.php:384
339
+ msgid "Repeat Horizontally"
340
+ msgstr "Répétition horizontale"
341
 
342
+ #: includes/design/background.php:222
343
+ #: includes/login-form-setting/Login-form-background.php:385
344
+ msgid "Repeat Vertically"
345
+ msgstr "Répétition verticale"
346
 
347
+ #: includes/design/background.php:234
348
+ #: includes/login-form-setting/Login-form-background.php:396
349
+ msgid "Background Position"
350
+ msgstr "Position de l’arrière plan"
351
 
352
+ #: includes/design/background.php:240
353
+ #: includes/login-form-setting/Login-form-background.php:402
354
+ msgid "Left Top"
355
+ msgstr "En haut à gauche"
356
 
357
+ #: includes/design/background.php:241
358
+ #: includes/login-form-setting/Login-form-background.php:403
359
+ msgid "Left Center"
360
+ msgstr "Au centre à gauche"
361
 
362
+ #: includes/design/background.php:242
363
+ #: includes/login-form-setting/Login-form-background.php:404
364
+ msgid "Left Bottom"
365
+ msgstr "En bas à gauche"
366
 
367
+ #: includes/design/background.php:243
368
+ #: includes/login-form-setting/Login-form-background.php:405
369
+ msgid "Right Top"
370
+ msgstr "En haut à droite"
371
 
372
+ #: includes/design/background.php:244
373
+ #: includes/login-form-setting/Login-form-background.php:406
374
+ msgid "Right Center"
375
+ msgstr "Au centre à droite"
376
 
377
+ #: includes/design/background.php:245
378
+ #: includes/login-form-setting/Login-form-background.php:407
379
+ msgid "Right Bottom"
380
+ msgstr "En bas à droite"
381
 
382
+ #: includes/design/background.php:246
383
+ #: includes/login-form-setting/Login-form-background.php:408
384
+ msgid "Center Top"
385
+ msgstr "En haut au centre"
386
 
387
+ #: includes/design/background.php:247
388
+ #: includes/login-form-setting/Login-form-background.php:409
389
+ msgid "Center Center"
390
+ msgstr "Centré Centré"
391
 
392
+ #: includes/design/background.php:248
393
+ #: includes/login-form-setting/Login-form-background.php:410
394
+ msgid "Center Bottom"
395
+ msgstr "En bas au centre"
396
 
397
  #: includes/design/background.php:260
398
  msgid "Background Attachment"
502
  msgid "Enable Link shadow?"
503
  msgstr "Activer l'ombre du formulaire ?"
504
 
505
+ #: includes/design/text_and_color.php:247
506
+ #: includes/design/text_and_color.php:523
507
+ #: includes/login-form-setting/Login-form-background.php:541
508
+ msgid "No"
509
+ msgstr "Non"
510
+
511
  #: includes/design/text_and_color.php:259
512
  msgid "Link Shadow Color"
513
  msgstr "Couleur de l’ombre du formulaire"
516
  msgid "Headline Font Style"
517
  msgstr "Style de police de titre"
518
 
519
+ #: includes/design/text_and_color.php:336
520
  msgid "Input Font Style"
521
  msgstr "Style de la police des champs"
522
 
523
+ #: includes/design/text_and_color.php:395
524
  msgid "Link Font Style"
525
  msgstr "Style de la police des liens"
526
 
527
+ #: includes/design/text_and_color.php:455
528
  msgid "Button Font Style"
529
  msgstr "Style de la police du bouton"
530
 
531
+ #: includes/design/text_and_color.php:514
532
  msgid "Enable Input Box Icon?"
533
  msgstr "Activer l'icone Entrée ?"
534
 
535
+ #: includes/design/text_and_color.php:534
536
  msgid "Icon For user Input Box"
537
  msgstr "Icone pour la fenêtre utilisateur"
538
 
539
+ #: includes/design/text_and_color.php:555
540
  msgid "Icon For Password Input Box"
541
  msgstr "Icone pour la fenêtre mot de passe"
542
 
543
+ #: includes/design/text_and_color.php:583
544
+ #: includes/design/text_and_color.php:598
545
  msgid "Text and Color"
546
  msgstr "Texte et Couleur"
547
 
548
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:14
549
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:44
550
+ #, fuzzy
551
+ #| msgid "Social Settings"
552
+ msgid "Google Captcha Settings"
553
+ msgstr "Réseaux Sociaux"
554
+
555
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:55
556
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:60
557
+ msgid "Site Key"
558
+ msgstr ""
559
+
560
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:64
561
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:69
562
+ msgid "Secret Key"
563
+ msgstr ""
564
+
565
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:74
566
+ msgid "Captcha Display"
567
+ msgstr ""
568
+
569
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:90
570
+ msgid "Captcha Theme"
571
+ msgstr ""
572
+
573
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:96
574
+ #, fuzzy
575
+ #| msgid "Right"
576
+ msgid "Light"
577
+ msgstr "Droite"
578
+
579
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:99
580
+ msgid "Dark"
581
+ msgstr ""
582
+
583
  #: includes/help/help.php:28
584
  msgid "View Support Docs or Open a Ticket"
585
  msgstr ""
586
 
587
+ #: includes/help/help.php:38 includes/help/rate.php:39
 
588
  msgid "Rate Us"
589
  msgstr ""
590
 
622
  msgid "here is solution"
623
  msgstr ""
624
 
625
+ #: includes/help/rate.php:15
626
+ msgid "Rate & Donate Us"
627
+ msgstr ""
628
+
629
  #: includes/help/rate.php:29
630
  msgid ""
631
  "We need your feedback for improve our plugin functionality on WordPress. So, "
660
  msgid "Import"
661
  msgstr ""
662
 
663
+ #: includes/login-form-setting/Login-form-background.php:191
664
+ msgid "Login Settings"
665
+ msgstr "Paramètres de connexion"
666
+
667
+ #: includes/login-form-setting/Login-form-background.php:204
668
+ msgid "Login Form Position"
669
+ msgstr ""
670
+
671
+ #: includes/login-form-setting/Login-form-background.php:210
672
+ msgid "Default"
673
+ msgstr ""
674
+
675
+ #: includes/login-form-setting/Login-form-background.php:211
676
+ msgid "Floating"
677
+ msgstr ""
678
+
679
+ #: includes/login-form-setting/Login-form-background.php:212
680
+ msgid "Floating With Customization"
681
+ msgstr ""
682
+
683
+ #: includes/login-form-setting/Login-form-background.php:223
684
+ msgid "Float Settings"
685
+ msgstr ""
686
+
687
+ #: includes/login-form-setting/Login-form-background.php:229
688
+ msgid "Left"
689
+ msgstr "Gauche"
690
+
691
+ #: includes/login-form-setting/Login-form-background.php:232
692
+ msgid "Center"
693
+ msgstr "Centre"
694
+
695
+ #: includes/login-form-setting/Login-form-background.php:235
696
+ msgid "Right"
697
+ msgstr "Droite"
698
+
699
+ #: includes/login-form-setting/Login-form-background.php:245
700
+ msgid "Floating With Customization Settings"
701
+ msgstr ""
702
+
703
+ #: includes/login-form-setting/Login-form-background.php:266
704
+ msgid "Note: This form position setting will be not responsive."
705
+ msgstr ""
706
+
707
+ #: includes/login-form-setting/Login-form-background.php:282
708
+ msgid "Select background"
709
+ msgstr "Sélectionner l'arrière-plan"
710
+
711
+ #: includes/login-form-setting/Login-form-background.php:315
712
+ msgid "Login Form Opacity"
713
+ msgstr "Opacité de l'Espace de Connexion"
714
+
715
+ #: includes/login-form-setting/Login-form-background.php:355
716
+ #: includes/settings/page-settings.php:78
717
+ msgid "Login Background Image"
718
+ msgstr "Image de fond de l'écran de connexion"
719
+
720
+ #: includes/login-form-setting/Login-form-background.php:422
721
+ msgid "Background Effect"
722
+ msgstr "Effet Arrière Plan"
723
+
724
+ #: includes/login-form-setting/Login-form-background.php:428
725
+ msgid "Select overlay effect"
726
+ msgstr "Sélectionnez l'effet de superposition"
727
+
728
+ #: includes/login-form-setting/Login-form-background.php:429
729
+ msgid "No Overlay Effect"
730
+ msgstr "Aucun effet de superposition"
731
+
732
+ #: includes/login-form-setting/Login-form-background.php:430
733
+ msgid "Overlay Effect 1"
734
+ msgstr "Effet de superposition 1"
735
+
736
+ #: includes/login-form-setting/Login-form-background.php:431
737
+ msgid "Overlay Effect 2"
738
+ msgstr "Effet de superposition 2"
739
+
740
+ #: includes/login-form-setting/Login-form-background.php:432
741
+ msgid "Overlay Effect 3"
742
+ msgstr "Effet de superposition 3"
743
+
744
+ #: includes/login-form-setting/Login-form-background.php:445
745
+ msgid "Login Form Width"
746
+ msgstr "Largeur de l'Espace de Connexion"
747
+
748
+ #: includes/login-form-setting/Login-form-background.php:462
749
+ msgid "Border Color"
750
+ msgstr "Couleur des bordures"
751
+
752
+ #: includes/login-form-setting/Login-form-background.php:477
753
+ msgid "Border Radius"
754
+ msgstr "Rayon de la bordure"
755
+
756
+ #: includes/login-form-setting/Login-form-background.php:494
757
+ msgid "Border Style"
758
+ msgstr "Style de bordure"
759
+
760
+ #: includes/login-form-setting/Login-form-background.php:500
761
+ msgid "None"
762
+ msgstr "Aucun"
763
+
764
+ #: includes/login-form-setting/Login-form-background.php:501
765
+ msgid "Solid"
766
+ msgstr "Plein"
767
+
768
+ #: includes/login-form-setting/Login-form-background.php:502
769
+ msgid "Dotted"
770
+ msgstr "Pointillé"
771
+
772
+ #: includes/login-form-setting/Login-form-background.php:503
773
+ msgid "Dashed"
774
+ msgstr "Tiret"
775
+
776
+ #: includes/login-form-setting/Login-form-background.php:504
777
+ msgid "Double"
778
+ msgstr "Double"
779
+
780
+ #: includes/login-form-setting/Login-form-background.php:515
781
+ msgid "Border Thickness"
782
+ msgstr "Épaisseur de la bordure"
783
+
784
+ #: includes/login-form-setting/Login-form-background.php:532
785
+ msgid "Enable Form Shadow?"
786
+ msgstr "Activer l'ombre du formulaire?"
787
+
788
+ #: includes/login-form-setting/Login-form-background.php:552
789
+ msgid "Form Shadow Color"
790
+ msgstr "Couleur de l’ombre du formulaire"
791
+
792
+ #: includes/login-form-setting/Login-form-background.php:567
793
+ msgid "Redirect Users After Login (Not Work For Admin)"
794
+ msgstr ""
795
+
796
+ #: includes/login-form-setting/Login-form-background.php:572
797
+ msgid "Redirect URL"
798
+ msgstr ""
799
+
800
+ #: includes/login-form-setting/Login-form-background.php:573
801
+ msgid ""
802
+ "Enter the URL to redirect users after login, Setting will not work for an "
803
+ "administrator."
804
+ msgstr ""
805
+
806
+ #: includes/login-form-setting/Login-form-background.php:585
807
+ msgid "Display Note To User Above Login Form"
808
+ msgstr ""
809
+
810
+ #: includes/login-form-setting/Login-form-background.php:602
811
+ #, fuzzy
812
+ #| msgid "Headline Font size"
813
+ msgid "Message Font Size"
814
+ msgstr "Taille de la police du titre"
815
+
816
+ #: includes/login-form-setting/Login-form-background.php:620
817
+ #, fuzzy
818
+ #| msgid "Headline Font Color"
819
+ msgid "Message Font Color"
820
+ msgstr "Couleur de police de la ligne supérieure"
821
+
822
+ #: includes/login-form-setting/Login-form-background.php:637
823
+ msgid "Tagline Message Display Below Login Form"
824
+ msgstr ""
825
+
826
+ #: includes/login-form-setting/Login-form-background.php:654
827
+ #: includes/login-form-setting/Login-form-background.php:659
828
+ msgid "Custom CSS"
829
+ msgstr ""
830
+
831
+ #: includes/login-form-setting/Login-form-background.php:661
832
+ msgid "Enter any custom css you want to apply on login panel."
833
+ msgstr ""
834
+
835
+ #: includes/login-form-setting/Login-form-background.php:662
836
+ msgid "Note: Please Do Not Use"
837
+ msgstr ""
838
+
839
+ #: includes/login-form-setting/Login-form-background.php:662
840
+ msgid "Tag With Custom CSS"
841
+ msgstr ""
842
+
843
+ #: includes/login-form-setting/Login-form-background.php:679
844
+ #: includes/login-form-setting/Login-form-background.php:693
845
+ msgid "Login"
846
+ msgstr "Connexion"
847
+
848
  #. translators: 1: The rating
849
  #: includes/recommendations/recommendations.php:75
850
  #, php-format
852
  msgstr ""
853
 
854
  #: includes/settings/page-settings.php:62
855
+ #, fuzzy
856
+ #| msgid "Logo "
857
+ msgid "Logo Image"
858
  msgstr "Logo"
859
 
860
  #: includes/settings/page-settings.php:98
861
+ #, fuzzy
862
+ #| msgid "Logo Width"
863
+ msgid "Logo Image Width"
864
  msgstr "Largeur du Logo"
865
 
866
  #: includes/settings/page-settings.php:115
867
+ #, fuzzy
868
+ #| msgid "Logo Height"
869
+ msgid "Logo Image Height"
870
  msgstr "Hauteur du logo"
871
 
872
  #: includes/settings/page-settings.php:132
873
  #: includes/settings/page-settings.php:137
874
+ #, fuzzy
875
+ #| msgid "Logo URL"
876
+ msgid "Logo Link URL"
877
  msgstr "Url du Logo"
878
 
879
  #: includes/settings/page-settings.php:147
880
  #: includes/settings/page-settings.php:152
881
+ #, fuzzy
882
+ #| msgid "Logo URL Title"
883
+ msgid "Logo Image Title"
884
  msgstr "Titre de l'URL du Logo"
885
 
886
+ #: includes/settings/page-settings.php:168
887
+ #: includes/settings/page-settings.php:182
888
+ msgid "Logo"
889
+ msgstr "Logo"
890
+
891
  #: includes/social/social.php:33
892
  msgid "Enable Social Icons"
893
  msgstr "Activer les icônes sociaux"
997
  msgstr ""
998
 
999
  #: includes/social/social.php:172
 
 
 
 
1000
  msgid "Skype"
1001
  msgstr ""
1002
 
1003
+ #: includes/social/social.php:173
1004
  msgid "Instagram"
1005
  msgstr ""
1006
 
1007
+ #: includes/social/social.php:174
1008
  msgid "Telegram"
1009
  msgstr ""
1010
 
1011
+ #: includes/social/social.php:175
1012
  msgid "Whatsapp"
1013
  msgstr ""
1014
 
1015
+ #: includes/social/social.php:192 includes/social/social.php:206
1016
  msgid "Social"
1017
  msgstr "Sociaux"
1018
 
1022
  #~ msgid "Dashboard "
1023
  #~ msgstr "Tableau de bord"
1024
 
 
 
 
1025
  #~ msgid "Login from Floating"
1026
  #~ msgstr "Espace de Connexion Flottant"
1027
 
languages/admin-custom-login-hi_IN.mo CHANGED
Binary file
languages/admin-custom-login-hi_IN.po CHANGED
@@ -1,514 +1,384 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: admin-custome-login\n"
4
- "POT-Creation-Date: 2018-01-31 15:34+0530\n"
5
- "PO-Revision-Date: 2018-01-31 15:34+0530\n"
6
  "Last-Translator: Weblizar <lizarweb@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: hi_IN\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 2.0.6\n"
13
  "X-Poedit-KeywordsList: _e;_;__\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: admin-custom-login.php:157 admin-custom-login.php:163
20
- msgid "User Name"
21
- msgstr "यूज़र नेम"
22
 
23
- #: admin-custom-login.php:158 admin-custom-login.php:164
 
 
 
 
24
  msgid "Password"
25
  msgstr "पासवर्ड"
26
 
27
- #: admin-custom-login.php:174
 
 
 
 
28
  msgid "Find Us On Social Media"
29
  msgstr "हमें सामाजिक मीडिया पर खोजें"
30
 
31
- #: admin-custom-login.php:429
32
  msgid "Please upload a valid .json file"
33
  msgstr "कृपया केवल जैसन फ़ाइल अपलोड करें"
34
 
35
- #: admin-custom-login.php:435
36
  msgid "Please upload a file to import"
37
  msgstr "कृपया इम्पोर्ट के लिए फाइल अपलोड करे"
38
 
39
- #: includes/Login-form-setting/Login-form-background.php:175
40
- msgid "Login Settings"
41
- msgstr "लॉगिन सेटिंग्स"
42
-
43
- #: includes/Login-form-setting/Login-form-background.php:188
44
- msgid "Login Form Position"
45
- msgstr "लॉग इन फॉर्म की स्थिति"
46
-
47
- #: includes/Login-form-setting/Login-form-background.php:194
48
- msgid "Default"
49
- msgstr "डीफाल्ट"
50
-
51
- #: includes/Login-form-setting/Login-form-background.php:195
52
- msgid "Floating"
53
- msgstr "घूमता हुआ"
54
-
55
- #: includes/Login-form-setting/Login-form-background.php:196
56
- msgid "Floating With Customization"
57
- msgstr "कस्टोमाईज़ेसन के साथ घूमता हुआ"
58
-
59
- #: includes/Login-form-setting/Login-form-background.php:207
60
- msgid "Float Settings"
61
- msgstr "फ्लोट सेटिंग्स"
62
-
63
- #: includes/Login-form-setting/Login-form-background.php:213
64
- msgid "Left"
65
- msgstr "बाया"
66
-
67
- #: includes/Login-form-setting/Login-form-background.php:216
68
- msgid "Center"
69
- msgstr "केंद्र"
70
-
71
- #: includes/Login-form-setting/Login-form-background.php:219
72
- msgid "Right"
73
- msgstr "दाया"
74
-
75
- #: includes/Login-form-setting/Login-form-background.php:229
76
- msgid "Floating With Customization Settings"
77
- msgstr "कस्टोमाईज़ेसन के साथ घूमता हुआ"
78
-
79
- #: includes/Login-form-setting/Login-form-background.php:250
80
- msgid "Note: This form position setting will be not responsive."
81
- msgstr "नोट: इस फॉर्म की पोजीशन रेसपोनसिव नही होगी."
82
-
83
- #: includes/Login-form-setting/Login-form-background.php:260
84
- #: includes/design/background.php:103 includes/design/background.php:110
85
- msgid "Select Background"
86
- msgstr "पृष्ठभूमि चयन करें"
87
-
88
- #: includes/Login-form-setting/Login-form-background.php:266
89
- msgid "Select background"
90
- msgstr "चयन करें पृष्ठभूमि"
91
-
92
- #: includes/Login-form-setting/Login-form-background.php:267
93
- #: includes/design/background.php:111
94
- msgid "Static Background Color"
95
- msgstr "स्थिर पृष्ठभूमि का रंग"
96
-
97
- #: includes/Login-form-setting/Login-form-background.php:268
98
- #: includes/design/background.php:112
99
- msgid "Static Background Image"
100
- msgstr "स्थिर पृष्ठभूमि छवि"
101
-
102
- #: includes/Login-form-setting/Login-form-background.php:284
103
- #: includes/design/background.php:131
104
- msgid "Background Color"
105
- msgstr "पृष्ठभूमि का रंग"
106
-
107
- #: includes/Login-form-setting/Login-form-background.php:299
108
- msgid "Login Form Opacity"
109
- msgstr "पर्चा अपारदर्शिता लॉगिन"
110
-
111
- #: includes/Login-form-setting/Login-form-background.php:321
112
- #: includes/design/background.php:153 includes/design/background.php:172
113
- msgid "Background Image"
114
- msgstr "पृष्ठभूमि छवि"
115
-
116
- #: includes/Login-form-setting/Login-form-background.php:326
117
- #: includes/design/background.php:158 includes/settings/page-settings.php:67
118
- msgid "No media selected!"
119
- msgstr "कोई मीडिया चयनित नहीं!"
120
-
121
- #: includes/Login-form-setting/Login-form-background.php:327
122
- #: includes/design/background.php:160 includes/settings/page-settings.php:68
123
- msgid "Upload"
124
- msgstr "अपलोड"
125
-
126
- #: includes/Login-form-setting/Login-form-background.php:329
127
- #: includes/design/background.php:162 includes/settings/page-settings.php:70
128
- msgid "Preview"
129
- msgstr "पूर्वावलोकन"
130
-
131
- #: includes/Login-form-setting/Login-form-background.php:331
132
- #: includes/design/background.php:164
133
- msgid "Remove"
134
- msgstr "हटाए"
135
-
136
- #: includes/Login-form-setting/Login-form-background.php:339
137
- #: includes/settings/page-settings.php:78
138
- msgid "Login Background Image"
139
- msgstr "लॉगिन पृष्ठभूमि छवि"
140
-
141
- #: includes/Login-form-setting/Login-form-background.php:345
142
- #: includes/Login-form-setting/Login-form-background.php:592
143
- #: includes/Login-form-setting/Login-form-background.php:606
144
- #: includes/dashboard/dashboard.php:70 includes/dashboard/dashboard.php:84
145
- #: includes/design/background.php:180 includes/design/background.php:368
146
- #: includes/design/background.php:383 includes/design/text_and_color.php:2594
147
- #: includes/design/text_and_color.php:2609 includes/settings/page-settings.php:84
148
- #: includes/settings/page-settings.php:168 includes/settings/page-settings.php:182
149
- #: includes/social/social.php:193 includes/social/social.php:207
150
- msgid "Close"
151
- msgstr "बंद"
152
-
153
- #: includes/Login-form-setting/Login-form-background.php:360
154
- #: includes/design/background.php:213
155
- msgid "Background Repeat"
156
- msgstr "पृष्ठभूमि दोहरान"
157
-
158
- #: includes/Login-form-setting/Login-form-background.php:366
159
- #: includes/design/background.php:219
160
- msgid "No Repeat"
161
- msgstr "दोहरान नहीं"
162
-
163
- #: includes/Login-form-setting/Login-form-background.php:367
164
- #: includes/design/background.php:220
165
- msgid "Repeat"
166
- msgstr "दोहरान"
167
-
168
- #: includes/Login-form-setting/Login-form-background.php:368
169
- #: includes/design/background.php:221
170
- msgid "Repeat Horizontally"
171
- msgstr "क्षैतिज दोहराएँ"
172
-
173
- #: includes/Login-form-setting/Login-form-background.php:369
174
- #: includes/design/background.php:222
175
- msgid "Repeat Vertically"
176
- msgstr "लंबवत दोहराएँ"
177
-
178
- #: includes/Login-form-setting/Login-form-background.php:380
179
- #: includes/design/background.php:234
180
- msgid "Background Position"
181
- msgstr "पृष्ठभूमि स्थिति"
182
-
183
- #: includes/Login-form-setting/Login-form-background.php:386
184
- #: includes/design/background.php:240
185
- msgid "Left Top"
186
- msgstr "बाएँ शीर्ष"
187
-
188
- #: includes/Login-form-setting/Login-form-background.php:387
189
- #: includes/design/background.php:241
190
- msgid "Left Center"
191
- msgstr "बायां केंद्र"
192
-
193
- #: includes/Login-form-setting/Login-form-background.php:388
194
- #: includes/design/background.php:242
195
- msgid "Left Bottom"
196
- msgstr "बायां नीचे"
197
 
198
- #: includes/Login-form-setting/Login-form-background.php:389
199
- #: includes/design/background.php:243
200
- msgid "Right Top"
201
- msgstr "दांया शीर्ष"
202
 
203
- #: includes/Login-form-setting/Login-form-background.php:390
204
- #: includes/design/background.php:244
205
- msgid "Right Center"
206
- msgstr "दायें केंद्र"
207
 
208
- #: includes/Login-form-setting/Login-form-background.php:391
209
- #: includes/design/background.php:245
210
- msgid "Right Bottom"
211
- msgstr "दांया नीचे"
212
 
213
- #: includes/Login-form-setting/Login-form-background.php:392
214
- #: includes/design/background.php:246
215
- msgid "Center Top"
216
- msgstr "केंद्र शीर्ष"
217
 
218
- #: includes/Login-form-setting/Login-form-background.php:393
219
- #: includes/design/background.php:247
220
- msgid "Center Center"
221
- msgstr "केंद्र"
222
 
223
- #: includes/Login-form-setting/Login-form-background.php:394
224
- #: includes/design/background.php:248
225
- msgid "Center Bottom"
226
- msgstr "केंद्र निचला"
227
 
228
- #: includes/Login-form-setting/Login-form-background.php:406
229
- msgid "Background Effect"
230
- msgstr "पृष्ठभूमि प्रभाव"
231
 
232
- #: includes/Login-form-setting/Login-form-background.php:412
233
- msgid "Select overlay effect"
234
- msgstr "ओवरले प्रभाव का चयन करें"
235
 
236
- #: includes/Login-form-setting/Login-form-background.php:413
237
- msgid "No Overlay Effect"
238
- msgstr "कोई ओवरले प्रभाव नहीं"
239
 
240
- #: includes/Login-form-setting/Login-form-background.php:414
241
- msgid "Overlay Effect 1"
242
- msgstr "ओवरले प्रभाव 1"
243
 
244
- #: includes/Login-form-setting/Login-form-background.php:415
245
- msgid "Overlay Effect 2"
246
- msgstr "ओवरले प्रभाव 2"
247
 
248
- #: includes/Login-form-setting/Login-form-background.php:416
249
- msgid "Overlay Effect 3"
250
- msgstr "ओवरले प्रभाव 3"
251
 
252
- #: includes/Login-form-setting/Login-form-background.php:429
253
- msgid "Login Form Width"
254
- msgstr "लॉगिन"
255
 
256
- #: includes/Login-form-setting/Login-form-background.php:446
257
- msgid "Border Color"
258
- msgstr "सीमा रंग"
259
 
260
- #: includes/Login-form-setting/Login-form-background.php:461
261
- msgid "Border Radius"
262
- msgstr "सीमा त्रिज्या"
263
 
264
- #: includes/Login-form-setting/Login-form-background.php:478
265
- msgid "Border Style"
266
- msgstr "झालर की शैली"
 
267
 
268
- #: includes/Login-form-setting/Login-form-background.php:484
269
- msgid "None"
270
- msgstr "नहीं"
271
 
272
- #: includes/Login-form-setting/Login-form-background.php:485
273
- msgid "Solid"
274
- msgstr "ठोस"
275
 
276
- #: includes/Login-form-setting/Login-form-background.php:486
277
- msgid "Dotted"
278
- msgstr "बिंदुओं से अंकित"
279
 
280
- #: includes/Login-form-setting/Login-form-background.php:487
281
- msgid "Dashed"
282
- msgstr "मिश्रण"
283
 
284
- #: includes/Login-form-setting/Login-form-background.php:488
285
- msgid "Double"
286
- msgstr "दोहरा"
287
 
288
- #: includes/Login-form-setting/Login-form-background.php:499
289
- msgid "Border Thickness"
290
- msgstr "सीमा की मोटाई"
291
 
292
- #: includes/Login-form-setting/Login-form-background.php:516
293
- msgid "Enable Form Shadow?"
294
- msgstr "फार्म छाया सक्षम करें?"
295
 
296
- #: includes/Login-form-setting/Login-form-background.php:522
297
- #: includes/design/background.php:201 includes/design/text_and_color.php:244
298
- #: includes/design/text_and_color.php:2531
299
- msgid "Yes"
300
- msgstr "हाँ"
301
 
302
- #: includes/Login-form-setting/Login-form-background.php:525
303
- #: includes/design/text_and_color.php:247 includes/design/text_and_color.php:2534
304
- msgid "No"
305
- msgstr "नहीं"
306
 
307
- #: includes/Login-form-setting/Login-form-background.php:536
308
- msgid "Form Shadow Color"
309
- msgstr "छाया रंग रूप"
310
 
311
- #: includes/Login-form-setting/Login-form-background.php:551
312
- msgid "Redirect Users After Login (Not Work For Admin)"
313
- msgstr "व्यवस्थापक के अलावा अन्य उपयोगकर्ताओं को पुन: डायरेक्ट करें"
314
 
315
- #: includes/Login-form-setting/Login-form-background.php:556
316
- msgid "Redirect URL"
317
- msgstr "रीडायरेक्ट यूआरएल"
318
 
319
- #: includes/Login-form-setting/Login-form-background.php:557
320
- msgid ""
321
- "Enter the URL to redirect users after login, Setting will not work for an administrator."
322
- msgstr ""
323
- "लॉगिन करने के बाद उपयोगकर्ताओं को रीडायरेक्ट करने के लिए URL दर्ज करें, व्यवस्थापक किसी व्यवस्थापक के लिए "
324
- "काम नहीं करेगा."
325
 
326
- #: includes/Login-form-setting/Login-form-background.php:567
327
- #: includes/Login-form-setting/Login-form-background.php:572
328
- msgid "Custom CSS"
329
- msgstr "कस्टम सी एस एस"
330
 
331
- #: includes/Login-form-setting/Login-form-background.php:574
332
- msgid "Enter any custom css you want to apply on login panel."
333
- msgstr "कोई भी कस्टम सी एस एस डाले जो आप लॉग इन पैनल पर लगाना चाहते है."
 
334
 
335
- #: includes/Login-form-setting/Login-form-background.php:575
336
- msgid "Note: Please Do Not Use"
337
- msgstr "नोट: किरपिया प्रयोग न करे"
338
 
339
- #: includes/Login-form-setting/Login-form-background.php:575
340
- msgid "Tag With Custom CSS"
341
- msgstr "कस्टम सी एस एस के साथ स्टाइल टैग परयोग करे"
342
 
343
- #: includes/Login-form-setting/Login-form-background.php:592
344
- #: includes/Login-form-setting/Login-form-background.php:606
345
- msgid "Login"
346
- msgstr "लॉगिन"
347
 
348
- #: includes/Login-form-setting/Login-form-background.php:592
349
- #: includes/dashboard/dashboard.php:70 includes/design/background.php:368
350
- #: includes/design/text_and_color.php:2594 includes/settings/page-settings.php:168
351
- #: includes/social/social.php:193
 
352
  msgid "Setting Save Successfully"
353
  msgstr "सफलतापूर्वक सहेजें स्थापना"
354
 
355
- #: includes/Login-form-setting/Login-form-background.php:606
356
- #: includes/dashboard/dashboard.php:84 includes/design/background.php:383
357
- #: includes/design/text_and_color.php:2609 includes/settings/page-settings.php:182
358
- #: includes/social/social.php:207
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
359
  msgid "Setting Reset Successfully"
360
  msgstr "सफलतापूर्वक सहेजें स्थापना"
361
 
362
- #: includes/Login-form-setting/Login-form-background.php:613
363
- #: includes/dashboard/dashboard.php:91 includes/design/background.php:391
364
- #: includes/design/text_and_color.php:2617 includes/settings/page-settings.php:189
365
- #: includes/social/social.php:214
 
366
  msgid "Save Changes"
367
  msgstr "परिवर्तनों को सुरक्षित करें"
368
 
369
- #: includes/Login-form-setting/Login-form-background.php:616
370
- #: includes/dashboard/dashboard.php:94 includes/design/background.php:394
371
- #: includes/design/text_and_color.php:2620 includes/settings/page-settings.php:192
372
- #: includes/social/social.php:217
 
373
  msgid "Reset Default"
374
  msgstr "पुनः तैयार करना"
375
 
376
- #: includes/content.php:28
377
- msgid "Admin Custom Login"
378
- msgstr "व्यवस्थापक कस्टम लॉगिन"
379
-
380
- #: includes/content.php:63
381
- msgid "Powered By"
382
- msgstr "द्वारा संचालित"
383
-
384
- #: includes/content.php:65
385
- msgid "Weblizar"
386
- msgstr "वेब्लिज़र"
387
-
388
- #: includes/content.php:69
389
- msgid "Show Us Some Love (Rate Us)"
390
- msgstr "आपका सहयोग दे(रैट दे)"
391
-
392
- #: includes/content.php:85 includes/dashboard/dashboard.php:70
393
- #: includes/dashboard/dashboard.php:84
394
- msgid "Dashboard"
395
- msgstr "डैशबोर्ड"
396
-
397
- #: includes/content.php:86
398
- msgid "Application overview"
399
- msgstr "आवेदन सिंहावलोकन"
400
 
401
- #: includes/content.php:95
402
- msgid "Background Design"
403
- msgstr "पृष्ठभूमि डिजाइन"
 
404
 
405
- #: includes/content.php:96
406
- msgid "Modify Background design here"
407
- msgstr "यहाँ पृष्ठभूमि डिजाइन सुधारे"
408
 
409
- #: includes/content.php:106
410
- msgid "Login form Setting"
411
- msgstr "प्रवेश फार्म की स्थापना"
 
412
 
413
- #: includes/content.php:107
414
- msgid "Modify Login design here"
415
- msgstr "यहां लॉग इन डिजाइन सुधारे"
 
416
 
417
- #: includes/content.php:117
418
- msgid "Font Setting"
419
- msgstr "फ़ॉन्ट सेटिंग"
420
 
421
- #: includes/content.php:118
422
- msgid "Modify Login Form Style here"
423
- msgstr "यहां लॉगिन फार्म शैली सुधारे"
 
424
 
425
- #: includes/content.php:128 includes/settings/page-settings.php:50
426
- msgid "Logo Settings"
427
- msgstr "लोगो सेटिंग्स"
 
428
 
429
- #: includes/content.php:129
430
- msgid "Customize Logo Settings here"
431
- msgstr "यहाँ लोगो सेटिंग्स को अनुकूलित"
 
 
432
 
433
- #: includes/content.php:140 includes/social/social.php:21
434
- msgid "Social Settings"
435
- msgstr "सामाजिक व्यवस्था"
 
 
436
 
437
- #: includes/content.php:141
438
- msgid "Connect with your social profile"
439
- msgstr "अपने सामाजिक प्रोफाइल के साथ कनेक्ट"
 
 
440
 
441
- #: includes/content.php:151
442
- msgid "Export / Import"
443
- msgstr "इम्पोर्ट/एक्सपोर्ट"
 
444
 
445
- #: includes/content.php:152
446
- msgid "Export / Import Your Data"
447
- msgstr "इम्पोर्ट/एक्सपोर्ट आपका डाटा"
448
 
449
- #: includes/content.php:161
450
- msgid "Recommendations"
451
- msgstr "सिफारिश"
 
 
452
 
453
- #: includes/content.php:162
454
- msgid "Get More Free Useful Plugins"
455
- msgstr "अन्य महत्वपूर्ण प्लगिन"
 
456
 
457
- #: includes/content.php:171 includes/help/help.php:15
458
- msgid "Help And Support"
459
- msgstr "मदद और समर्थन"
 
460
 
461
- #: includes/content.php:172
462
- msgid "Ask your query"
463
- msgstr "आपकी क्वेरी से पूछो"
 
464
 
465
- #: includes/content.php:181
466
- msgid "Please rate us"
467
- msgstr "किरपया हमे रैट करे"
 
468
 
469
- #: includes/content.php:182
470
- msgid "If you like us"
471
- msgstr "यदि आप हमें पसंद करते हो तो"
 
472
 
473
- #: includes/dashboard/dashboard.php:15
474
- msgid "Admin Custom Login Dashboard"
475
- msgstr "व्यवस्थापक कस्टम लॉगिन डैशबोर्ड"
 
476
 
477
- #: includes/dashboard/dashboard.php:27
478
- msgid "Admin Custom Login Status"
479
- msgstr "व्यवस्थापक कस्टम लॉगिन स्टेटस"
 
480
 
481
- #: includes/dashboard/dashboard.php:33
482
- msgid "Disable"
483
- msgstr "असक्षम"
 
484
 
485
- #: includes/dashboard/dashboard.php:36
486
- msgid "Enable"
487
- msgstr "सक्षम"
 
488
 
489
- #: includes/dashboard/dashboard.php:47
490
- msgid "View Login Page"
491
- msgstr "देखें लॉगिन पृष्ठ"
 
492
 
493
- #: includes/dashboard/dashboard.php:52
494
- msgid "Copy below link and open in another browser where you are not logged in"
495
- msgstr "नीचे दिये हुए लिंक को कॉपी करे और पेस्ट करे दुसरे ब्राउज़र में जहाँ आप लॉग इन ना हो"
 
496
 
497
- #: includes/design/background.php:91
498
- msgid "Background Settings"
499
- msgstr "पृष्ठभूमि सेटिंग"
 
500
 
501
- #: includes/design/background.php:109
502
- msgid "No Background Selected"
503
- msgstr "कोई चयनित पृष्ठभूमि नहीं"
 
504
 
505
- #: includes/design/background.php:113
506
- msgid "Background SlideShow"
507
- msgstr "पृष्ठभूमि स्लाइड शो"
 
508
 
509
- #: includes/design/background.php:196
510
- msgid "Cover or Strech"
511
- msgstr "आवरण"
 
512
 
513
  #: includes/design/background.php:260
514
  msgid "Background Attachment"
@@ -618,6 +488,11 @@ msgstr "बटन फ़ॉन्ट का आकार"
618
  msgid "Enable Link shadow?"
619
  msgstr "लिंक छाया सक्षम करें?"
620
 
 
 
 
 
 
621
  #: includes/design/text_and_color.php:259
622
  msgid "Link Shadow Color"
623
  msgstr "लिंक छाया रंग"
@@ -626,39 +501,70 @@ msgstr "लिंक छाया रंग"
626
  msgid "Headline Font Style"
627
  msgstr "शीर्षक फ़ॉन्ट शैली"
628
 
629
- #: includes/design/text_and_color.php:837
630
  msgid "Input Font Style"
631
  msgstr "इनपुट फ़ॉन्ट शैली"
632
 
633
- #: includes/design/text_and_color.php:1399
634
  msgid "Link Font Style"
635
  msgstr "लिंक फ़ॉन्ट शैली"
636
 
637
- #: includes/design/text_and_color.php:1962
638
  msgid "Button Font Style"
639
  msgstr "बटन फ़ॉन्ट शैली"
640
 
641
- #: includes/design/text_and_color.php:2525
642
  msgid "Enable Input Box Icon?"
643
  msgstr "इनपुट बॉक्स चिह्न सक्षम करें?"
644
 
645
- #: includes/design/text_and_color.php:2545
646
  msgid "Icon For user Input Box"
647
  msgstr "उपयोगकर्ता इनपुट बॉक्स के लिए चिह्न"
648
 
649
- #: includes/design/text_and_color.php:2566
650
  msgid "Icon For Password Input Box"
651
  msgstr "पासवर्ड इनपुट बॉक्स के लिए चिह्न"
652
 
653
- #: includes/design/text_and_color.php:2594 includes/design/text_and_color.php:2609
654
  msgid "Text and Color"
655
  msgstr "पाठ और रंग"
656
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
657
  #: includes/help/help.php:28
658
  msgid "View Support Docs or Open a Ticket"
659
  msgstr "समर्थन डॉक्स देखें या एक टिकट को खोलने"
660
 
661
- #: includes/help/help.php:38 includes/help/rate.php:15 includes/help/rate.php:39
662
  msgid "Rate Us"
663
  msgstr "प्रवाह दर"
664
 
@@ -697,6 +603,10 @@ msgstr "प्रश्न: प्लगइन को अपनी भाषा
697
  msgid "here is solution"
698
  msgstr "यहाँ समाधान है"
699
 
 
 
 
 
700
  #: includes/help/rate.php:29
701
  msgid ""
702
  "We need your feedback for improve our plugin functionality on WordPress. So, if you like "
@@ -733,32 +643,217 @@ msgstr ""
733
  msgid "Import"
734
  msgstr "इम्पोर्ट"
735
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
736
  #. translators: 1: The rating
737
  #: includes/recommendations/recommendations.php:75
738
  #, php-format
739
  msgid "%s rating"
740
  msgstr "%s रेटिंग"
741
 
742
- #: includes/settings/page-settings.php:62 includes/settings/page-settings.php:168
743
- #: includes/settings/page-settings.php:182
744
- msgid "Logo"
745
- msgstr "लोगो"
746
 
747
  #: includes/settings/page-settings.php:98
748
- msgid "Logo Width"
749
- msgstr "लोगो चौड़ाई"
750
 
751
  #: includes/settings/page-settings.php:115
752
- msgid "Logo Height"
753
- msgstr "लोगो ऊँचाई"
754
 
755
  #: includes/settings/page-settings.php:132 includes/settings/page-settings.php:137
756
- msgid "Logo URL"
757
- msgstr "लोगो URL"
758
 
759
  #: includes/settings/page-settings.php:147 includes/settings/page-settings.php:152
760
- msgid "Logo URL Title"
761
- msgstr "लोगो URL शीर्षक"
 
 
 
 
762
 
763
  #: includes/social/social.php:33
764
  msgid "Enable Social Icons"
@@ -869,29 +964,37 @@ msgid "Tumblr"
869
  msgstr "टमबलर"
870
 
871
  #: includes/social/social.php:172
872
- msgid "VKontakte"
873
- msgstr "वीकोनटेकट"
874
-
875
- #: includes/social/social.php:173
876
  msgid "Skype"
877
  msgstr "स्काइप"
878
 
879
- #: includes/social/social.php:174
880
  msgid "Instagram"
881
  msgstr "इन्स्ताग्राम"
882
 
883
- #: includes/social/social.php:175
884
  msgid "Telegram"
885
  msgstr "तार"
886
 
887
- #: includes/social/social.php:176
888
  msgid "Whatsapp"
889
  msgstr "क्या हुआ"
890
 
891
- #: includes/social/social.php:193 includes/social/social.php:207
892
  msgid "Social"
893
  msgstr "सामाजिक"
894
 
 
 
 
 
 
 
 
 
 
 
 
 
895
  #~ msgid "preview"
896
  #~ msgstr "पूर्व दर्शन"
897
 
@@ -934,9 +1037,6 @@ msgstr "सामाजिक"
934
  #~ msgid "Dashboard "
935
  #~ msgstr "डैशबोर्ड"
936
 
937
- #~ msgid "Logo "
938
- #~ msgstr "लोगो"
939
-
940
  #~ msgid "Contact Us:"
941
  #~ msgstr "हमसे संपर्क करें"
942
 
@@ -1860,9 +1960,6 @@ msgstr "सामाजिक"
1860
  #~ msgid "View Appointment(s)"
1861
  #~ msgstr "नियुक्ति देखें"
1862
 
1863
- #~ msgid "Appointment Key"
1864
- #~ msgstr "नियुक्ति कुंजी"
1865
-
1866
  #~ msgid "Update Time Off"
1867
  #~ msgstr "टाईम आफ नवीनतम बनायें"
1868
 
@@ -2436,9 +2533,6 @@ msgstr "सामाजिक"
2436
  #~ msgid "Notification Message"
2437
  #~ msgstr "अधिसूचना सूचना"
2438
 
2439
- #~ msgid "Google Calendar"
2440
- #~ msgstr "गूगल कैलेंडर"
2441
-
2442
  #, fuzzy
2443
  #~ msgid "Payment Settings"
2444
  #~ msgstr "सेटिंग्स सहेजें"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: admin-custome-login\n"
4
+ "POT-Creation-Date: 2018-07-26 18:49+0530\n"
5
+ "PO-Revision-Date: 2018-07-26 18:50+0530\n"
6
  "Last-Translator: Weblizar <lizarweb@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: hi_IN\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 2.1\n"
13
  "X-Poedit-KeywordsList: _e;_;__\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin-custom-login.php:169
20
+ msgid "Username or Email Address"
21
+ msgstr "उपयोगकर्ता का नाम या ईमेल का पता"
22
 
23
+ #: admin-custom-login.php:169 admin-custom-login.php:175
24
+ msgid "Type Username or Email"
25
+ msgstr "उपयोगकर्ता नाम या ईमेल टाइप करें"
26
+
27
+ #: admin-custom-login.php:170
28
  msgid "Password"
29
  msgstr "पासवर्ड"
30
 
31
+ #: admin-custom-login.php:170 admin-custom-login.php:176
32
+ msgid "Type Password"
33
+ msgstr "पासवर्ड लिखें"
34
+
35
+ #: admin-custom-login.php:193
36
  msgid "Find Us On Social Media"
37
  msgstr "हमें सामाजिक मीडिया पर खोजें"
38
 
39
+ #: admin-custom-login.php:477
40
  msgid "Please upload a valid .json file"
41
  msgstr "कृपया केवल जैसन फ़ाइल अपलोड करें"
42
 
43
+ #: admin-custom-login.php:483
44
  msgid "Please upload a file to import"
45
  msgstr "कृपया इम्पोर्ट के लिए फाइल अपलोड करे"
46
 
47
+ #: includes/content.php:28
48
+ msgid "Admin Custom Login"
49
+ msgstr "व्यवस्थापक कस्टम लॉगिन"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
 
51
+ #: includes/content.php:63
52
+ msgid "Powered By"
53
+ msgstr "द्वारा संचालित"
 
54
 
55
+ #: includes/content.php:65
56
+ msgid "Weblizar"
57
+ msgstr "वेब्लिज़र"
 
58
 
59
+ #: includes/content.php:69
60
+ msgid "Show Us Some Love (Rate Us)"
61
+ msgstr "आपका सहयोग दे(रैट दे)"
 
62
 
63
+ #: includes/content.php:86 includes/dashboard/dashboard.php:92
64
+ #: includes/dashboard/dashboard.php:106
65
+ msgid "Dashboard"
66
+ msgstr "डैशबोर्ड"
67
 
68
+ #: includes/content.php:87
69
+ msgid "application overview"
70
+ msgstr "आवेदन अवलोकन"
 
71
 
72
+ #: includes/content.php:96
73
+ msgid "Background Design"
74
+ msgstr "पृष्ठभूमि डिजाइन"
 
75
 
76
+ #: includes/content.php:97
77
+ msgid "modify background design here"
78
+ msgstr "यहाँ पृष्ठभूमि डिजाइन सुधारे"
79
 
80
+ #: includes/content.php:107
81
+ msgid "Login form Setting"
82
+ msgstr "प्रवेश फार्म की स्थापना"
83
 
84
+ #: includes/content.php:108
85
+ msgid "modify login design here"
86
+ msgstr "यहां लॉग इन डिजाइन सुधारे"
87
 
88
+ #: includes/content.php:118
89
+ msgid "Font Setting"
90
+ msgstr "फ़ॉन्ट सेटिंग"
91
 
92
+ #: includes/content.php:119
93
+ msgid "modify login form style here"
94
+ msgstr "यहां लॉगिन फार्म शैली सुधारे"
95
 
96
+ #: includes/content.php:129 includes/settings/page-settings.php:50
97
+ msgid "Logo Settings"
98
+ msgstr "लोगो सेटिंग्स"
99
 
100
+ #: includes/content.php:130
101
+ msgid "customize logo settings here"
102
+ msgstr "यहाँ लोगो सेटिंग्स को अनुकूलित"
103
 
104
+ #: includes/content.php:141 includes/social/social.php:21
105
+ msgid "Social Settings"
106
+ msgstr "सामाजिक व्यवस्था"
107
 
108
+ #: includes/content.php:142
109
+ msgid "connect with your social profile"
110
+ msgstr "अपने सामाजिक प्रोफाइल के साथ कनेक्ट"
111
 
112
+ #: includes/content.php:152 includes/googlecaptcha-settings/gcaptcha-settings.php:117
113
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
114
+ msgid "Google Captcha"
115
+ msgstr "गूगल कैप्चा"
116
 
117
+ #: includes/content.php:153
118
+ msgid "configure captcha settings"
119
+ msgstr "कैप्चा सेटिंग्स कॉन्फ़िगर करें"
120
 
121
+ #: includes/content.php:163
122
+ msgid "Export / Import"
123
+ msgstr "इम्पोर्ट/एक्सपोर्ट"
124
 
125
+ #: includes/content.php:164
126
+ msgid "import / export plugin settings"
127
+ msgstr "आयात / निर्यात प्लगइन सेटिंग्स"
128
 
129
+ #: includes/content.php:173
130
+ msgid "Recommendations"
131
+ msgstr "सिफारिश"
132
 
133
+ #: includes/content.php:174
134
+ msgid "get more free plugins"
135
+ msgstr "अन्य महत्वपूर्ण प्लगिन"
136
 
137
+ #: includes/content.php:183 includes/help/help.php:15
138
+ msgid "Help And Support"
139
+ msgstr "मदद और समर्थन"
140
 
141
+ #: includes/content.php:184
142
+ msgid "ask your queries"
143
+ msgstr "अपने प्रश्न पूछो"
144
 
145
+ #: includes/content.php:193 includes/offers.php:11
146
+ msgid "Our Offers"
147
+ msgstr "हमारी पेशकश"
 
 
148
 
149
+ #: includes/content.php:194
150
+ msgid "weblizar premium products"
151
+ msgstr "वेबलिज़र प्रीमियम उत्पाद"
 
152
 
153
+ #: includes/content.php:203
154
+ msgid "Rate & Donate Us"
155
+ msgstr "हमें रेट करें और दान करें"
156
 
157
+ #: includes/content.php:204
158
+ msgid "if you like us"
159
+ msgstr "अगर आप हमें पसंद करते हैं"
160
 
161
+ #: includes/dashboard/dashboard.php:15
162
+ msgid "Admin Custom Login Dashboard"
163
+ msgstr "व्यवस्थापक कस्टम लॉगिन डैशबोर्ड"
164
 
165
+ #: includes/dashboard/dashboard.php:27
166
+ msgid "Admin Custom Login Status"
167
+ msgstr "व्यवस्थापक कस्टम लॉगिन स्टेटस"
 
 
 
168
 
169
+ #: includes/dashboard/dashboard.php:33
170
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:83
171
+ msgid "Disable"
172
+ msgstr "असक्षम"
173
 
174
+ #: includes/dashboard/dashboard.php:36
175
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:80
176
+ msgid "Enable"
177
+ msgstr "सक्षम"
178
 
179
+ #: includes/dashboard/dashboard.php:47
180
+ msgid "View Login Page"
181
+ msgstr "देखें लॉगिन पृष्ठ"
182
 
183
+ #: includes/dashboard/dashboard.php:52
184
+ msgid "Copy below link and open in another browser where you are not logged in"
185
+ msgstr "नीचे दिये हुए लिंक को कॉपी करे और पेस्ट करे दुसरे ब्राउज़र में जहाँ आप लॉग इन ना हो"
186
 
187
+ #: includes/dashboard/dashboard.php:65 includes/help/rate.php:62
188
+ msgid "Donate Us"
189
+ msgstr "हमें दान करें"
 
190
 
191
+ #: includes/dashboard/dashboard.php:92 includes/design/background.php:368
192
+ #: includes/design/text_and_color.php:583
193
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
194
+ #: includes/login-form-setting/Login-form-background.php:679
195
+ #: includes/settings/page-settings.php:168 includes/social/social.php:192
196
  msgid "Setting Save Successfully"
197
  msgstr "सफलतापूर्वक सहेजें स्थापना"
198
 
199
+ #: includes/dashboard/dashboard.php:92 includes/dashboard/dashboard.php:106
200
+ #: includes/design/background.php:180 includes/design/background.php:368
201
+ #: includes/design/background.php:383 includes/design/text_and_color.php:583
202
+ #: includes/design/text_and_color.php:598
203
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
204
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
205
+ #: includes/login-form-setting/Login-form-background.php:361
206
+ #: includes/login-form-setting/Login-form-background.php:679
207
+ #: includes/login-form-setting/Login-form-background.php:693
208
+ #: includes/settings/page-settings.php:84 includes/settings/page-settings.php:168
209
+ #: includes/settings/page-settings.php:182 includes/social/social.php:192
210
+ #: includes/social/social.php:206
211
+ msgid "Close"
212
+ msgstr "बंद"
213
+
214
+ #: includes/dashboard/dashboard.php:106 includes/design/background.php:383
215
+ #: includes/design/text_and_color.php:598
216
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
217
+ #: includes/login-form-setting/Login-form-background.php:693
218
+ #: includes/settings/page-settings.php:182 includes/social/social.php:206
219
  msgid "Setting Reset Successfully"
220
  msgstr "सफलतापूर्वक सहेजें स्थापना"
221
 
222
+ #: includes/dashboard/dashboard.php:113 includes/design/background.php:391
223
+ #: includes/design/text_and_color.php:606
224
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:138
225
+ #: includes/login-form-setting/Login-form-background.php:700
226
+ #: includes/settings/page-settings.php:189 includes/social/social.php:213
227
  msgid "Save Changes"
228
  msgstr "परिवर्तनों को सुरक्षित करें"
229
 
230
+ #: includes/dashboard/dashboard.php:116 includes/design/background.php:394
231
+ #: includes/design/text_and_color.php:609
232
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:141
233
+ #: includes/login-form-setting/Login-form-background.php:703
234
+ #: includes/settings/page-settings.php:192 includes/social/social.php:216
235
  msgid "Reset Default"
236
  msgstr "पुनः तैयार करना"
237
 
238
+ #: includes/design/background.php:91
239
+ msgid "Background Settings"
240
+ msgstr "पृष्ठभूमि सेटिंग"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
 
242
+ #: includes/design/background.php:103 includes/design/background.php:110
243
+ #: includes/login-form-setting/Login-form-background.php:276
244
+ msgid "Select Background"
245
+ msgstr "पृष्ठभूमि चयन करें"
246
 
247
+ #: includes/design/background.php:109
248
+ msgid "No Background Selected"
249
+ msgstr "कोई चयनित पृष्ठभूमि नहीं"
250
 
251
+ #: includes/design/background.php:111
252
+ #: includes/login-form-setting/Login-form-background.php:283
253
+ msgid "Static Background Color"
254
+ msgstr "स्थिर पृष्ठभूमि का रंग"
255
 
256
+ #: includes/design/background.php:112
257
+ #: includes/login-form-setting/Login-form-background.php:284
258
+ msgid "Static Background Image"
259
+ msgstr "स्थिर पृष्ठभूमि छवि"
260
 
261
+ #: includes/design/background.php:113
262
+ msgid "Background SlideShow"
263
+ msgstr "पृष्ठभूमि स्लाइड शो"
264
 
265
+ #: includes/design/background.php:131
266
+ #: includes/login-form-setting/Login-form-background.php:300
267
+ msgid "Background Color"
268
+ msgstr "पृष्ठभूमि का रंग"
269
 
270
+ #: includes/design/background.php:153 includes/design/background.php:172
271
+ #: includes/login-form-setting/Login-form-background.php:337
272
+ msgid "Background Image"
273
+ msgstr "पृष्ठभूमि छवि"
274
 
275
+ #: includes/design/background.php:158
276
+ #: includes/login-form-setting/Login-form-background.php:342
277
+ #: includes/settings/page-settings.php:67
278
+ msgid "No media selected!"
279
+ msgstr "कोई मीडिया चयनित नहीं!"
280
 
281
+ #: includes/design/background.php:160
282
+ #: includes/login-form-setting/Login-form-background.php:343
283
+ #: includes/settings/page-settings.php:68
284
+ msgid "Upload"
285
+ msgstr "अपलोड"
286
 
287
+ #: includes/design/background.php:162
288
+ #: includes/login-form-setting/Login-form-background.php:345
289
+ #: includes/settings/page-settings.php:70
290
+ msgid "Preview"
291
+ msgstr "पूर्वावलोकन"
292
 
293
+ #: includes/design/background.php:164
294
+ #: includes/login-form-setting/Login-form-background.php:347
295
+ msgid "Remove"
296
+ msgstr "हटाए"
297
 
298
+ #: includes/design/background.php:196
299
+ msgid "Cover or Strech"
300
+ msgstr "आवरण"
301
 
302
+ #: includes/design/background.php:201 includes/design/text_and_color.php:244
303
+ #: includes/design/text_and_color.php:520
304
+ #: includes/login-form-setting/Login-form-background.php:538
305
+ msgid "Yes"
306
+ msgstr "हाँ"
307
 
308
+ #: includes/design/background.php:213
309
+ #: includes/login-form-setting/Login-form-background.php:376
310
+ msgid "Background Repeat"
311
+ msgstr "पृष्ठभूमि दोहरान"
312
 
313
+ #: includes/design/background.php:219
314
+ #: includes/login-form-setting/Login-form-background.php:382
315
+ msgid "No Repeat"
316
+ msgstr "दोहरान नहीं"
317
 
318
+ #: includes/design/background.php:220
319
+ #: includes/login-form-setting/Login-form-background.php:383
320
+ msgid "Repeat"
321
+ msgstr "दोहरान"
322
 
323
+ #: includes/design/background.php:221
324
+ #: includes/login-form-setting/Login-form-background.php:384
325
+ msgid "Repeat Horizontally"
326
+ msgstr "क्षैतिज दोहराएँ"
327
 
328
+ #: includes/design/background.php:222
329
+ #: includes/login-form-setting/Login-form-background.php:385
330
+ msgid "Repeat Vertically"
331
+ msgstr "लंबवत दोहराएँ"
332
 
333
+ #: includes/design/background.php:234
334
+ #: includes/login-form-setting/Login-form-background.php:396
335
+ msgid "Background Position"
336
+ msgstr "पृष्ठभूमि स्थिति"
337
 
338
+ #: includes/design/background.php:240
339
+ #: includes/login-form-setting/Login-form-background.php:402
340
+ msgid "Left Top"
341
+ msgstr "बाएँ शीर्ष"
342
 
343
+ #: includes/design/background.php:241
344
+ #: includes/login-form-setting/Login-form-background.php:403
345
+ msgid "Left Center"
346
+ msgstr "बायां केंद्र"
347
 
348
+ #: includes/design/background.php:242
349
+ #: includes/login-form-setting/Login-form-background.php:404
350
+ msgid "Left Bottom"
351
+ msgstr "बायां नीचे"
352
 
353
+ #: includes/design/background.php:243
354
+ #: includes/login-form-setting/Login-form-background.php:405
355
+ msgid "Right Top"
356
+ msgstr "दांया शीर्ष"
357
 
358
+ #: includes/design/background.php:244
359
+ #: includes/login-form-setting/Login-form-background.php:406
360
+ msgid "Right Center"
361
+ msgstr "दायें केंद्र"
362
 
363
+ #: includes/design/background.php:245
364
+ #: includes/login-form-setting/Login-form-background.php:407
365
+ msgid "Right Bottom"
366
+ msgstr "दांया नीचे"
367
 
368
+ #: includes/design/background.php:246
369
+ #: includes/login-form-setting/Login-form-background.php:408
370
+ msgid "Center Top"
371
+ msgstr "केंद्र शीर्ष"
372
 
373
+ #: includes/design/background.php:247
374
+ #: includes/login-form-setting/Login-form-background.php:409
375
+ msgid "Center Center"
376
+ msgstr "केंद्र"
377
 
378
+ #: includes/design/background.php:248
379
+ #: includes/login-form-setting/Login-form-background.php:410
380
+ msgid "Center Bottom"
381
+ msgstr "केंद्र निचला"
382
 
383
  #: includes/design/background.php:260
384
  msgid "Background Attachment"
488
  msgid "Enable Link shadow?"
489
  msgstr "लिंक छाया सक्षम करें?"
490
 
491
+ #: includes/design/text_and_color.php:247 includes/design/text_and_color.php:523
492
+ #: includes/login-form-setting/Login-form-background.php:541
493
+ msgid "No"
494
+ msgstr "नहीं"
495
+
496
  #: includes/design/text_and_color.php:259
497
  msgid "Link Shadow Color"
498
  msgstr "लिंक छाया रंग"
501
  msgid "Headline Font Style"
502
  msgstr "शीर्षक फ़ॉन्ट शैली"
503
 
504
+ #: includes/design/text_and_color.php:336
505
  msgid "Input Font Style"
506
  msgstr "इनपुट फ़ॉन्ट शैली"
507
 
508
+ #: includes/design/text_and_color.php:395
509
  msgid "Link Font Style"
510
  msgstr "लिंक फ़ॉन्ट शैली"
511
 
512
+ #: includes/design/text_and_color.php:455
513
  msgid "Button Font Style"
514
  msgstr "बटन फ़ॉन्ट शैली"
515
 
516
+ #: includes/design/text_and_color.php:514
517
  msgid "Enable Input Box Icon?"
518
  msgstr "इनपुट बॉक्स चिह्न सक्षम करें?"
519
 
520
+ #: includes/design/text_and_color.php:534
521
  msgid "Icon For user Input Box"
522
  msgstr "उपयोगकर्ता इनपुट बॉक्स के लिए चिह्न"
523
 
524
+ #: includes/design/text_and_color.php:555
525
  msgid "Icon For Password Input Box"
526
  msgstr "पासवर्ड इनपुट बॉक्स के लिए चिह्न"
527
 
528
+ #: includes/design/text_and_color.php:583 includes/design/text_and_color.php:598
529
  msgid "Text and Color"
530
  msgstr "पाठ और रंग"
531
 
532
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:14
533
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:44
534
+ msgid "Google Captcha Settings"
535
+ msgstr "Google कैप्चा सेटिंग्स"
536
+
537
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:55
538
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:60
539
+ msgid "Site Key"
540
+ msgstr "नियुक्ति कुंजी"
541
+
542
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:64
543
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:69
544
+ msgid "Secret Key"
545
+ msgstr "गुप्त कुंजी"
546
+
547
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:74
548
+ msgid "Captcha Display"
549
+ msgstr "कैप्चा डिस्प्ले"
550
+
551
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:90
552
+ msgid "Captcha Theme"
553
+ msgstr "कैप्चा थीम"
554
+
555
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:96
556
+ msgid "Light"
557
+ msgstr "सफेद"
558
+
559
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:99
560
+ msgid "Dark"
561
+ msgstr "काली"
562
+
563
  #: includes/help/help.php:28
564
  msgid "View Support Docs or Open a Ticket"
565
  msgstr "समर्थन डॉक्स देखें या एक टिकट को खोलने"
566
 
567
+ #: includes/help/help.php:38 includes/help/rate.php:39
568
  msgid "Rate Us"
569
  msgstr "प्रवाह दर"
570
 
603
  msgid "here is solution"
604
  msgstr "यहाँ समाधान है"
605
 
606
+ #: includes/help/rate.php:15
607
+ msgid "Rate & Donate Us"
608
+ msgstr "हमें रेट करें और दान करें"
609
+
610
  #: includes/help/rate.php:29
611
  msgid ""
612
  "We need your feedback for improve our plugin functionality on WordPress. So, if you like "
643
  msgid "Import"
644
  msgstr "इम्पोर्ट"
645
 
646
+ #: includes/login-form-setting/Login-form-background.php:191
647
+ msgid "Login Settings"
648
+ msgstr "लॉगिन सेटिंग्स"
649
+
650
+ #: includes/login-form-setting/Login-form-background.php:204
651
+ msgid "Login Form Position"
652
+ msgstr "लॉग इन फॉर्म की स्थिति"
653
+
654
+ #: includes/login-form-setting/Login-form-background.php:210
655
+ msgid "Default"
656
+ msgstr "डीफाल्ट"
657
+
658
+ #: includes/login-form-setting/Login-form-background.php:211
659
+ msgid "Floating"
660
+ msgstr "घूमता हुआ"
661
+
662
+ #: includes/login-form-setting/Login-form-background.php:212
663
+ msgid "Floating With Customization"
664
+ msgstr "कस्टोमाईज़ेसन के साथ घूमता हुआ"
665
+
666
+ #: includes/login-form-setting/Login-form-background.php:223
667
+ msgid "Float Settings"
668
+ msgstr "फ्लोट सेटिंग्स"
669
+
670
+ #: includes/login-form-setting/Login-form-background.php:229
671
+ msgid "Left"
672
+ msgstr "बाया"
673
+
674
+ #: includes/login-form-setting/Login-form-background.php:232
675
+ msgid "Center"
676
+ msgstr "केंद्र"
677
+
678
+ #: includes/login-form-setting/Login-form-background.php:235
679
+ msgid "Right"
680
+ msgstr "दाया"
681
+
682
+ #: includes/login-form-setting/Login-form-background.php:245
683
+ msgid "Floating With Customization Settings"
684
+ msgstr "कस्टोमाईज़ेसन के साथ घूमता हुआ"
685
+
686
+ #: includes/login-form-setting/Login-form-background.php:266
687
+ msgid "Note: This form position setting will be not responsive."
688
+ msgstr "नोट: इस फॉर्म की पोजीशन रेसपोनसिव नही होगी."
689
+
690
+ #: includes/login-form-setting/Login-form-background.php:282
691
+ msgid "Select background"
692
+ msgstr "चयन करें पृष्ठभूमि"
693
+
694
+ #: includes/login-form-setting/Login-form-background.php:315
695
+ msgid "Login Form Opacity"
696
+ msgstr "पर्चा अपारदर्शिता लॉगिन"
697
+
698
+ #: includes/login-form-setting/Login-form-background.php:355
699
+ #: includes/settings/page-settings.php:78
700
+ msgid "Login Background Image"
701
+ msgstr "लॉगिन पृष्ठभूमि छवि"
702
+
703
+ #: includes/login-form-setting/Login-form-background.php:422
704
+ msgid "Background Effect"
705
+ msgstr "पृष्ठभूमि प्रभाव"
706
+
707
+ #: includes/login-form-setting/Login-form-background.php:428
708
+ msgid "Select overlay effect"
709
+ msgstr "ओवरले प्रभाव का चयन करें"
710
+
711
+ #: includes/login-form-setting/Login-form-background.php:429
712
+ msgid "No Overlay Effect"
713
+ msgstr "कोई ओवरले प्रभाव नहीं"
714
+
715
+ #: includes/login-form-setting/Login-form-background.php:430
716
+ msgid "Overlay Effect 1"
717
+ msgstr "ओवरले प्रभाव 1"
718
+
719
+ #: includes/login-form-setting/Login-form-background.php:431
720
+ msgid "Overlay Effect 2"
721
+ msgstr "ओवरले प्रभाव 2"
722
+
723
+ #: includes/login-form-setting/Login-form-background.php:432
724
+ msgid "Overlay Effect 3"
725
+ msgstr "ओवरले प्रभाव 3"
726
+
727
+ #: includes/login-form-setting/Login-form-background.php:445
728
+ msgid "Login Form Width"
729
+ msgstr "लॉगिन"
730
+
731
+ #: includes/login-form-setting/Login-form-background.php:462
732
+ msgid "Border Color"
733
+ msgstr "सीमा रंग"
734
+
735
+ #: includes/login-form-setting/Login-form-background.php:477
736
+ msgid "Border Radius"
737
+ msgstr "सीमा त्रिज्या"
738
+
739
+ #: includes/login-form-setting/Login-form-background.php:494
740
+ msgid "Border Style"
741
+ msgstr "झालर की शैली"
742
+
743
+ #: includes/login-form-setting/Login-form-background.php:500
744
+ msgid "None"
745
+ msgstr "नहीं"
746
+
747
+ #: includes/login-form-setting/Login-form-background.php:501
748
+ msgid "Solid"
749
+ msgstr "ठोस"
750
+
751
+ #: includes/login-form-setting/Login-form-background.php:502
752
+ msgid "Dotted"
753
+ msgstr "बिंदुओं से अंकित"
754
+
755
+ #: includes/login-form-setting/Login-form-background.php:503
756
+ msgid "Dashed"
757
+ msgstr "मिश्रण"
758
+
759
+ #: includes/login-form-setting/Login-form-background.php:504
760
+ msgid "Double"
761
+ msgstr "दोहरा"
762
+
763
+ #: includes/login-form-setting/Login-form-background.php:515
764
+ msgid "Border Thickness"
765
+ msgstr "सीमा की मोटाई"
766
+
767
+ #: includes/login-form-setting/Login-form-background.php:532
768
+ msgid "Enable Form Shadow?"
769
+ msgstr "फार्म छाया सक्षम करें?"
770
+
771
+ #: includes/login-form-setting/Login-form-background.php:552
772
+ msgid "Form Shadow Color"
773
+ msgstr "छाया रंग रूप"
774
+
775
+ #: includes/login-form-setting/Login-form-background.php:567
776
+ msgid "Redirect Users After Login (Not Work For Admin)"
777
+ msgstr "व्यवस्थापक के अलावा अन्य उपयोगकर्ताओं को पुन: डायरेक्ट करें"
778
+
779
+ #: includes/login-form-setting/Login-form-background.php:572
780
+ msgid "Redirect URL"
781
+ msgstr "रीडायरेक्ट यूआरएल"
782
+
783
+ #: includes/login-form-setting/Login-form-background.php:573
784
+ msgid ""
785
+ "Enter the URL to redirect users after login, Setting will not work for an administrator."
786
+ msgstr ""
787
+ "लॉगिन करने के बाद उपयोगकर्ताओं को रीडायरेक्ट करने के लिए URL दर्ज करें, व्यवस्थापक किसी व्यवस्थापक के लिए "
788
+ "काम नहीं करेगा."
789
+
790
+ #: includes/login-form-setting/Login-form-background.php:585
791
+ msgid "Display Note To User Above Login Form"
792
+ msgstr "लॉग इन फॉर्म के ऊपर उपयोगकर्ता को नोट नोट"
793
+
794
+ #: includes/login-form-setting/Login-form-background.php:602
795
+ msgid "Message Font Size"
796
+ msgstr "संदेश फ़ॉन्ट का आकार"
797
+
798
+ #: includes/login-form-setting/Login-form-background.php:620
799
+ msgid "Message Font Color"
800
+ msgstr "शीर्षक फ़ॉन्ट रंग"
801
+
802
+ #: includes/login-form-setting/Login-form-background.php:637
803
+ msgid "Tagline Message Display Below Login Form"
804
+ msgstr "लॉगिन फॉर्म के नीचे टैगलाइन संदेश प्रदर्शन"
805
+
806
+ #: includes/login-form-setting/Login-form-background.php:654
807
+ #: includes/login-form-setting/Login-form-background.php:659
808
+ msgid "Custom CSS"
809
+ msgstr "कस्टम सी एस एस"
810
+
811
+ #: includes/login-form-setting/Login-form-background.php:661
812
+ msgid "Enter any custom css you want to apply on login panel."
813
+ msgstr "कोई भी कस्टम सी एस एस डाले जो आप लॉग इन पैनल पर लगाना चाहते है."
814
+
815
+ #: includes/login-form-setting/Login-form-background.php:662
816
+ msgid "Note: Please Do Not Use"
817
+ msgstr "नोट: किरपिया प्रयोग न करे"
818
+
819
+ #: includes/login-form-setting/Login-form-background.php:662
820
+ msgid "Tag With Custom CSS"
821
+ msgstr "कस्टम सी एस एस के साथ स्टाइल टैग परयोग न करे"
822
+
823
+ #: includes/login-form-setting/Login-form-background.php:679
824
+ #: includes/login-form-setting/Login-form-background.php:693
825
+ msgid "Login"
826
+ msgstr "लॉगिन"
827
+
828
  #. translators: 1: The rating
829
  #: includes/recommendations/recommendations.php:75
830
  #, php-format
831
  msgid "%s rating"
832
  msgstr "%s रेटिंग"
833
 
834
+ #: includes/settings/page-settings.php:62
835
+ msgid "Logo Image"
836
+ msgstr "लोगो छवि"
 
837
 
838
  #: includes/settings/page-settings.php:98
839
+ msgid "Logo Image Width"
840
+ msgstr "लोगो छवि चौड़ाई"
841
 
842
  #: includes/settings/page-settings.php:115
843
+ msgid "Logo Image Height"
844
+ msgstr "लोगो छवि ऊंचाई"
845
 
846
  #: includes/settings/page-settings.php:132 includes/settings/page-settings.php:137
847
+ msgid "Logo Link URL"
848
+ msgstr "लोगो लिंक यूआरएल"
849
 
850
  #: includes/settings/page-settings.php:147 includes/settings/page-settings.php:152
851
+ msgid "Logo Image Title"
852
+ msgstr "लोगो छवि शीर्षक"
853
+
854
+ #: includes/settings/page-settings.php:168 includes/settings/page-settings.php:182
855
+ msgid "Logo"
856
+ msgstr "लोगो"
857
 
858
  #: includes/social/social.php:33
859
  msgid "Enable Social Icons"
964
  msgstr "टमबलर"
965
 
966
  #: includes/social/social.php:172
 
 
 
 
967
  msgid "Skype"
968
  msgstr "स्काइप"
969
 
970
+ #: includes/social/social.php:173
971
  msgid "Instagram"
972
  msgstr "इन्स्ताग्राम"
973
 
974
+ #: includes/social/social.php:174
975
  msgid "Telegram"
976
  msgstr "तार"
977
 
978
+ #: includes/social/social.php:175
979
  msgid "Whatsapp"
980
  msgstr "क्या हुआ"
981
 
982
+ #: includes/social/social.php:192 includes/social/social.php:206
983
  msgid "Social"
984
  msgstr "सामाजिक"
985
 
986
+ #~ msgid "User Name"
987
+ #~ msgstr "यूज़र नेम"
988
+
989
+ #~ msgid "Export / Import Your Data"
990
+ #~ msgstr "इम्पोर्ट/एक्सपोर्ट आपका डाटा"
991
+
992
+ #~ msgid "Please rate us"
993
+ #~ msgstr "किरपया हमे रैट करे"
994
+
995
+ #~ msgid "VKontakte"
996
+ #~ msgstr "वीकोनटेकट"
997
+
998
  #~ msgid "preview"
999
  #~ msgstr "पूर्व दर्शन"
1000
 
1037
  #~ msgid "Dashboard "
1038
  #~ msgstr "डैशबोर्ड"
1039
 
 
 
 
1040
  #~ msgid "Contact Us:"
1041
  #~ msgstr "हमसे संपर्क करें"
1042
 
1960
  #~ msgid "View Appointment(s)"
1961
  #~ msgstr "नियुक्ति देखें"
1962
 
 
 
 
1963
  #~ msgid "Update Time Off"
1964
  #~ msgstr "टाईम आफ नवीनतम बनायें"
1965
 
2533
  #~ msgid "Notification Message"
2534
  #~ msgstr "अधिसूचना सूचना"
2535
 
 
 
 
2536
  #, fuzzy
2537
  #~ msgid "Payment Settings"
2538
  #~ msgstr "सेटिंग्स सहेजें"
languages/admin-custom-login-it_IT.mo CHANGED
Binary file
languages/admin-custom-login-it_IT.po CHANGED
@@ -1,516 +1,398 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: admin-custom-login\n"
4
- "POT-Creation-Date: 2018-01-31 15:34+0530\n"
5
- "PO-Revision-Date: 2018-01-31 15:34+0530\n"
6
  "Last-Translator: Weblizar <lizarweb@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\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 2.0.6\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: _e;__;_\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: admin-custom-login.php:157 admin-custom-login.php:163
20
- msgid "User Name"
21
  msgstr ""
22
 
23
- #: admin-custom-login.php:158 admin-custom-login.php:164
24
- msgid "Password"
25
- msgstr ""
26
-
27
- #: admin-custom-login.php:174
28
- msgid "Find Us On Social Media"
29
  msgstr ""
30
 
31
- #: admin-custom-login.php:429
32
- msgid "Please upload a valid .json file"
33
- msgstr ""
34
-
35
- #: admin-custom-login.php:435
36
- msgid "Please upload a file to import"
37
- msgstr ""
38
-
39
- #: includes/Login-form-setting/Login-form-background.php:175
40
- msgid "Login Settings"
41
- msgstr "Impostazioni Login"
42
-
43
- #: includes/Login-form-setting/Login-form-background.php:188
44
- msgid "Login Form Position"
45
  msgstr ""
46
 
47
- #: includes/Login-form-setting/Login-form-background.php:194
48
- msgid "Default"
49
  msgstr ""
50
 
51
- #: includes/Login-form-setting/Login-form-background.php:195
52
- msgid "Floating"
53
  msgstr ""
54
 
55
- #: includes/Login-form-setting/Login-form-background.php:196
56
- msgid "Floating With Customization"
57
  msgstr ""
58
 
59
- #: includes/Login-form-setting/Login-form-background.php:207
60
- msgid "Float Settings"
61
  msgstr ""
62
 
63
- #: includes/Login-form-setting/Login-form-background.php:213
64
- msgid "Left"
65
- msgstr "Sinistra"
66
-
67
- #: includes/Login-form-setting/Login-form-background.php:216
68
- msgid "Center"
69
- msgstr "Centro"
70
 
71
- #: includes/Login-form-setting/Login-form-background.php:219
72
- msgid "Right"
73
- msgstr "Destra"
74
 
75
- #: includes/Login-form-setting/Login-form-background.php:229
76
- msgid "Floating With Customization Settings"
77
- msgstr ""
78
 
79
- #: includes/Login-form-setting/Login-form-background.php:250
80
- msgid "Note: This form position setting will be not responsive."
81
  msgstr ""
82
 
83
- #: includes/Login-form-setting/Login-form-background.php:260
84
- #: includes/design/background.php:103 includes/design/background.php:110
85
- msgid "Select Background"
86
- msgstr "Seleziona sfondo"
87
-
88
- #: includes/Login-form-setting/Login-form-background.php:266
89
- msgid "Select background"
90
- msgstr "Seleziona sfondo"
91
-
92
- #: includes/Login-form-setting/Login-form-background.php:267
93
- #: includes/design/background.php:111
94
- msgid "Static Background Color"
95
- msgstr "Colore Sfondo"
96
-
97
- #: includes/Login-form-setting/Login-form-background.php:268
98
- #: includes/design/background.php:112
99
- msgid "Static Background Image"
100
- msgstr "Immagine di Sfondo"
101
-
102
- #: includes/Login-form-setting/Login-form-background.php:284
103
- #: includes/design/background.php:131
104
- msgid "Background Color"
105
- msgstr "Colore Sfondo"
106
-
107
- #: includes/Login-form-setting/Login-form-background.php:299
108
- msgid "Login Form Opacity"
109
- msgstr "Opacità Form Login"
110
-
111
- #: includes/Login-form-setting/Login-form-background.php:321
112
- #: includes/design/background.php:153 includes/design/background.php:172
113
- msgid "Background Image"
114
- msgstr "Immagine Sfondo"
115
-
116
- #: includes/Login-form-setting/Login-form-background.php:326
117
- #: includes/design/background.php:158 includes/settings/page-settings.php:67
118
- msgid "No media selected!"
119
- msgstr "Nessuno contenuto selezionato!"
120
-
121
- #: includes/Login-form-setting/Login-form-background.php:327
122
- #: includes/design/background.php:160 includes/settings/page-settings.php:68
123
- msgid "Upload"
124
- msgstr "Upload"
125
-
126
- #: includes/Login-form-setting/Login-form-background.php:329
127
- #: includes/design/background.php:162 includes/settings/page-settings.php:70
128
- msgid "Preview"
129
- msgstr "Anteprima"
130
-
131
- #: includes/Login-form-setting/Login-form-background.php:331
132
- #: includes/design/background.php:164
133
- msgid "Remove"
134
- msgstr "Rimuovi"
135
-
136
- #: includes/Login-form-setting/Login-form-background.php:339
137
- #: includes/settings/page-settings.php:78
138
- msgid "Login Background Image"
139
- msgstr "Immagine Sfondo Login"
140
-
141
- #: includes/Login-form-setting/Login-form-background.php:345
142
- #: includes/Login-form-setting/Login-form-background.php:592
143
- #: includes/Login-form-setting/Login-form-background.php:606
144
- #: includes/dashboard/dashboard.php:70 includes/dashboard/dashboard.php:84
145
- #: includes/design/background.php:180 includes/design/background.php:368
146
- #: includes/design/background.php:383 includes/design/text_and_color.php:2594
147
- #: includes/design/text_and_color.php:2609
148
- #: includes/settings/page-settings.php:84
149
- #: includes/settings/page-settings.php:168
150
- #: includes/settings/page-settings.php:182 includes/social/social.php:193
151
- #: includes/social/social.php:207
152
- msgid "Close"
153
- msgstr "Chiudi"
154
-
155
- #: includes/Login-form-setting/Login-form-background.php:360
156
- #: includes/design/background.php:213
157
- msgid "Background Repeat"
158
- msgstr "Ripeti Sfondo"
159
-
160
- #: includes/Login-form-setting/Login-form-background.php:366
161
- #: includes/design/background.php:219
162
- msgid "No Repeat"
163
- msgstr "Nessuna Ripetizione"
164
-
165
- #: includes/Login-form-setting/Login-form-background.php:367
166
- #: includes/design/background.php:220
167
- msgid "Repeat"
168
- msgstr "Ripeti"
169
-
170
- #: includes/Login-form-setting/Login-form-background.php:368
171
- #: includes/design/background.php:221
172
- msgid "Repeat Horizontally"
173
- msgstr "Ripeti Orizzontalmente"
174
-
175
- #: includes/Login-form-setting/Login-form-background.php:369
176
- #: includes/design/background.php:222
177
- msgid "Repeat Vertically"
178
- msgstr "Ripeti Verticalmente"
179
-
180
- #: includes/Login-form-setting/Login-form-background.php:380
181
- #: includes/design/background.php:234
182
- msgid "Background Position"
183
- msgstr "Posizione Sfondo"
184
-
185
- #: includes/Login-form-setting/Login-form-background.php:386
186
- #: includes/design/background.php:240
187
- msgid "Left Top"
188
- msgstr "Alto Sinistra"
189
-
190
- #: includes/Login-form-setting/Login-form-background.php:387
191
- #: includes/design/background.php:241
192
- msgid "Left Center"
193
- msgstr "Centro Sinistra"
194
-
195
- #: includes/Login-form-setting/Login-form-background.php:388
196
- #: includes/design/background.php:242
197
- msgid "Left Bottom"
198
- msgstr "Basso Sinistra"
199
-
200
- #: includes/Login-form-setting/Login-form-background.php:389
201
- #: includes/design/background.php:243
202
- msgid "Right Top"
203
- msgstr "Alto Destra"
204
-
205
- #: includes/Login-form-setting/Login-form-background.php:390
206
- #: includes/design/background.php:244
207
- msgid "Right Center"
208
- msgstr "Centro Destra"
209
-
210
- #: includes/Login-form-setting/Login-form-background.php:391
211
- #: includes/design/background.php:245
212
- msgid "Right Bottom"
213
- msgstr "Basso Destra"
214
-
215
- #: includes/Login-form-setting/Login-form-background.php:392
216
- #: includes/design/background.php:246
217
- msgid "Center Top"
218
- msgstr "Alto in Centro"
219
-
220
- #: includes/Login-form-setting/Login-form-background.php:393
221
- #: includes/design/background.php:247
222
- msgid "Center Center"
223
- msgstr "Centro Centro"
224
-
225
- #: includes/Login-form-setting/Login-form-background.php:394
226
- #: includes/design/background.php:248
227
- msgid "Center Bottom"
228
- msgstr "Basso Centro"
229
 
230
- #: includes/Login-form-setting/Login-form-background.php:406
231
- msgid "Background Effect"
232
- msgstr "Effetti Sfondo"
 
 
233
 
234
- #: includes/Login-form-setting/Login-form-background.php:412
235
- msgid "Select overlay effect"
236
- msgstr "Seleziona effetto rivestimento"
237
 
238
- #: includes/Login-form-setting/Login-form-background.php:413
239
- msgid "No Overlay Effect"
240
- msgstr "Nessuno Effetto Rivestimento"
 
 
241
 
242
- #: includes/Login-form-setting/Login-form-background.php:414
243
- msgid "Overlay Effect 1"
244
- msgstr "Effetto Rivestimento 1"
245
 
246
- #: includes/Login-form-setting/Login-form-background.php:415
247
- msgid "Overlay Effect 2"
248
- msgstr "Effetto Rivestimento 2"
 
 
249
 
250
- #: includes/Login-form-setting/Login-form-background.php:416
251
- msgid "Overlay Effect 3"
252
- msgstr "Effetto Rivestimento 3"
253
 
254
- #: includes/Login-form-setting/Login-form-background.php:429
255
- msgid "Login Form Width"
256
- msgstr "Larghezza Form Login"
 
 
257
 
258
- #: includes/Login-form-setting/Login-form-background.php:446
259
- msgid "Border Color"
260
- msgstr "Colore Bordo"
261
 
262
- #: includes/Login-form-setting/Login-form-background.php:461
263
- msgid "Border Radius"
264
- msgstr "Arrotondamento Bordo"
 
 
265
 
266
- #: includes/Login-form-setting/Login-form-background.php:478
267
- msgid "Border Style"
268
- msgstr "Stile Bordo"
269
 
270
- #: includes/Login-form-setting/Login-form-background.php:484
271
- msgid "None"
272
- msgstr "Nessuno"
 
 
273
 
274
- #: includes/Login-form-setting/Login-form-background.php:485
275
- msgid "Solid"
276
- msgstr "Continuo"
 
 
277
 
278
- #: includes/Login-form-setting/Login-form-background.php:486
279
- msgid "Dotted"
280
- msgstr "Punteggiato"
281
 
282
- #: includes/Login-form-setting/Login-form-background.php:487
283
- msgid "Dashed"
284
- msgstr "Tratteggiato"
285
 
286
- #: includes/Login-form-setting/Login-form-background.php:488
287
- msgid "Double"
288
- msgstr "Doppio"
289
 
290
- #: includes/Login-form-setting/Login-form-background.php:499
291
- msgid "Border Thickness"
292
- msgstr "Spessore Bordo"
293
 
294
- #: includes/Login-form-setting/Login-form-background.php:516
295
- msgid "Enable Form Shadow?"
296
- msgstr "Abilitare ombre nel form?"
297
 
298
- #: includes/Login-form-setting/Login-form-background.php:522
299
- #: includes/design/background.php:201 includes/design/text_and_color.php:244
300
- #: includes/design/text_and_color.php:2531
301
- msgid "Yes"
302
- msgstr "Si"
303
 
304
- #: includes/Login-form-setting/Login-form-background.php:525
305
- #: includes/design/text_and_color.php:247
306
- #: includes/design/text_and_color.php:2534
307
- msgid "No"
308
- msgstr "No"
309
 
310
- #: includes/Login-form-setting/Login-form-background.php:536
311
- msgid "Form Shadow Color"
312
- msgstr "Colore Ombra Del Form"
313
 
314
- #: includes/Login-form-setting/Login-form-background.php:551
315
- msgid "Redirect Users After Login (Not Work For Admin)"
316
  msgstr ""
317
 
318
- #: includes/Login-form-setting/Login-form-background.php:556
319
- msgid "Redirect URL"
320
  msgstr ""
321
 
322
- #: includes/Login-form-setting/Login-form-background.php:557
323
- msgid ""
324
- "Enter the URL to redirect users after login, Setting will not work for an "
325
- "administrator."
326
  msgstr ""
327
 
328
- #: includes/Login-form-setting/Login-form-background.php:567
329
- #: includes/Login-form-setting/Login-form-background.php:572
330
- msgid "Custom CSS"
 
 
 
331
  msgstr ""
332
 
333
- #: includes/Login-form-setting/Login-form-background.php:574
334
- msgid "Enter any custom css you want to apply on login panel."
 
335
  msgstr ""
336
 
337
- #: includes/Login-form-setting/Login-form-background.php:575
338
- msgid "Note: Please Do Not Use"
 
339
  msgstr ""
340
 
341
- #: includes/Login-form-setting/Login-form-background.php:575
342
- msgid "Tag With Custom CSS"
 
 
 
 
343
  msgstr ""
344
 
345
- #: includes/Login-form-setting/Login-form-background.php:592
346
- #: includes/Login-form-setting/Login-form-background.php:606
347
- msgid "Login"
348
- msgstr "Login"
349
 
350
- #: includes/Login-form-setting/Login-form-background.php:592
351
- #: includes/dashboard/dashboard.php:70 includes/design/background.php:368
352
- #: includes/design/text_and_color.php:2594
353
- #: includes/settings/page-settings.php:168 includes/social/social.php:193
 
354
  msgid "Setting Save Successfully"
355
  msgstr "Impostazioni Salvate Correttamente"
356
 
357
- #: includes/Login-form-setting/Login-form-background.php:606
358
- #: includes/dashboard/dashboard.php:84 includes/design/background.php:383
359
- #: includes/design/text_and_color.php:2609
360
- #: includes/settings/page-settings.php:182 includes/social/social.php:207
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
361
  msgid "Setting Reset Successfully"
362
  msgstr "Impostazioni Ripristinate Correttamente"
363
 
364
- #: includes/Login-form-setting/Login-form-background.php:613
365
- #: includes/dashboard/dashboard.php:91 includes/design/background.php:391
366
- #: includes/design/text_and_color.php:2617
367
- #: includes/settings/page-settings.php:189 includes/social/social.php:214
 
368
  msgid "Save Changes"
369
  msgstr "Salva Modifiche"
370
 
371
- #: includes/Login-form-setting/Login-form-background.php:616
372
- #: includes/dashboard/dashboard.php:94 includes/design/background.php:394
373
- #: includes/design/text_and_color.php:2620
374
- #: includes/settings/page-settings.php:192 includes/social/social.php:217
 
375
  msgid "Reset Default"
376
  msgstr "Ripristina Predefinite"
377
 
378
- #: includes/content.php:28
379
- msgid "Admin Custom Login"
380
- msgstr "Login Custom Admin"
381
-
382
- #: includes/content.php:63
383
- msgid "Powered By"
384
- msgstr "Realizzato da"
385
-
386
- #: includes/content.php:65
387
- msgid "Weblizar"
388
- msgstr "Weblizar"
389
-
390
- #: includes/content.php:69
391
- msgid "Show Us Some Love (Rate Us)"
392
- msgstr ""
393
-
394
- #: includes/content.php:85 includes/dashboard/dashboard.php:70
395
- #: includes/dashboard/dashboard.php:84
396
- msgid "Dashboard"
397
- msgstr "Cruscotto"
398
-
399
- #: includes/content.php:86
400
- msgid "Application overview"
401
- msgstr "Panoramica Applicazione"
402
-
403
- #: includes/content.php:95
404
- msgid "Background Design"
405
  msgstr "Impostazioni Sfondo"
406
 
407
- #: includes/content.php:96
408
- msgid "Modify Background design here"
409
- msgstr "Modifica impostazioni sfondo"
 
410
 
411
- #: includes/content.php:106
412
- msgid "Login form Setting"
413
- msgstr "Impostazioni Login"
414
 
415
- #: includes/content.php:107
416
- msgid "Modify Login design here"
417
- msgstr "Modifica impostazioni login"
 
418
 
419
- #: includes/content.php:117
420
- msgid "Font Setting"
421
- msgstr "Impostazioni Font"
 
422
 
423
- #: includes/content.php:118
424
- msgid "Modify Login Form Style here"
425
- msgstr "Modifica Stile Form Login"
426
 
427
- #: includes/content.php:128 includes/settings/page-settings.php:50
428
- msgid "Logo Settings"
429
- msgstr "Impostazioni Logo"
 
430
 
431
- #: includes/content.php:129
432
- msgid "Customize Logo Settings here"
433
- msgstr "Personalizza Impostazioni Logo"
 
434
 
435
- #: includes/content.php:140 includes/social/social.php:21
436
- msgid "Social Settings"
437
- msgstr "Impostazioni Social"
 
 
438
 
439
- #: includes/content.php:141
440
- msgid "Connect with your social profile"
441
- msgstr "Connettersi con profili Social"
 
 
442
 
443
- #: includes/content.php:151
444
- msgid "Export / Import"
445
- msgstr ""
 
 
446
 
447
- #: includes/content.php:152
448
- msgid "Export / Import Your Data"
449
- msgstr ""
 
 
 
 
 
450
 
451
- #: includes/content.php:161
452
- msgid "Recommendations"
453
- msgstr ""
 
 
454
 
455
- #: includes/content.php:162
456
- msgid "Get More Free Useful Plugins"
457
- msgstr ""
 
458
 
459
- #: includes/content.php:171 includes/help/help.php:15
460
- msgid "Help And Support"
461
- msgstr ""
 
462
 
463
- #: includes/content.php:172
464
- msgid "Ask your query"
465
- msgstr ""
 
466
 
467
- #: includes/content.php:181
468
- msgid "Please rate us"
469
- msgstr ""
 
470
 
471
- #: includes/content.php:182
472
- msgid "If you like us"
473
- msgstr ""
 
474
 
475
- #: includes/dashboard/dashboard.php:15
476
- msgid "Admin Custom Login Dashboard"
477
- msgstr "Amministrazione Login Personalizzato"
 
478
 
479
- #: includes/dashboard/dashboard.php:27
480
- msgid "Admin Custom Login Status"
481
- msgstr ""
 
482
 
483
- #: includes/dashboard/dashboard.php:33
484
- msgid "Disable"
485
- msgstr ""
 
486
 
487
- #: includes/dashboard/dashboard.php:36
488
- msgid "Enable"
489
- msgstr ""
 
490
 
491
- #: includes/dashboard/dashboard.php:47
492
- msgid "View Login Page"
493
- msgstr "Visualizza Pagina Login"
 
494
 
495
- #: includes/dashboard/dashboard.php:52
496
- msgid "Copy below link and open in another browser where you are not logged in"
497
- msgstr ""
 
498
 
499
- #: includes/design/background.php:91
500
- msgid "Background Settings"
501
- msgstr "Impostazioni Sfondo"
 
502
 
503
- #: includes/design/background.php:109
504
- msgid "No Background Selected"
505
- msgstr "Nessuno sfondo Selezionato"
 
506
 
507
- #: includes/design/background.php:113
508
- msgid "Background SlideShow"
509
- msgstr "Sfondo con Slideshow"
 
510
 
511
- #: includes/design/background.php:196
512
- msgid "Cover or Strech"
513
- msgstr "Coprire o Distendere"
 
514
 
515
  #: includes/design/background.php:260
516
  msgid "Background Attachment"
@@ -620,6 +502,12 @@ msgstr "Dimensione Font Tasto"
620
  msgid "Enable Link shadow?"
621
  msgstr "Abilita Ombra nei Link?"
622
 
 
 
 
 
 
 
623
  #: includes/design/text_and_color.php:259
624
  msgid "Link Shadow Color"
625
  msgstr "Colore Ombra Nei Link"
@@ -628,41 +516,75 @@ msgstr "Colore Ombra Nei Link"
628
  msgid "Headline Font Style"
629
  msgstr "Stile Font Titolo"
630
 
631
- #: includes/design/text_and_color.php:837
632
  msgid "Input Font Style"
633
  msgstr "Stile Font Input"
634
 
635
- #: includes/design/text_and_color.php:1399
636
  msgid "Link Font Style"
637
  msgstr "Stile Font Link"
638
 
639
- #: includes/design/text_and_color.php:1962
640
  msgid "Button Font Style"
641
  msgstr "Stile Font Tasto"
642
 
643
- #: includes/design/text_and_color.php:2525
644
  msgid "Enable Input Box Icon?"
645
  msgstr "Abilitare icone nelle caselle di testo?"
646
 
647
- #: includes/design/text_and_color.php:2545
648
  msgid "Icon For user Input Box"
649
  msgstr "Icona Per Inserimento Nome Utente"
650
 
651
- #: includes/design/text_and_color.php:2566
652
  msgid "Icon For Password Input Box"
653
  msgstr "Icona Per Inserimento Password"
654
 
655
- #: includes/design/text_and_color.php:2594
656
- #: includes/design/text_and_color.php:2609
657
  msgid "Text and Color"
658
  msgstr "Testo e Colore"
659
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
660
  #: includes/help/help.php:28
661
  msgid "View Support Docs or Open a Ticket"
662
  msgstr ""
663
 
664
- #: includes/help/help.php:38 includes/help/rate.php:15
665
- #: includes/help/rate.php:39
666
  msgid "Rate Us"
667
  msgstr ""
668
 
@@ -700,6 +622,10 @@ msgstr ""
700
  msgid "here is solution"
701
  msgstr ""
702
 
 
 
 
 
703
  #: includes/help/rate.php:29
704
  msgid ""
705
  "We need your feedback for improve our plugin functionality on WordPress. So, "
@@ -734,6 +660,191 @@ msgstr ""
734
  msgid "Import"
735
  msgstr ""
736
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
737
  #. translators: 1: The rating
738
  #: includes/recommendations/recommendations.php:75
739
  #, php-format
@@ -741,29 +852,42 @@ msgid "%s rating"
741
  msgstr ""
742
 
743
  #: includes/settings/page-settings.php:62
744
- #: includes/settings/page-settings.php:168
745
- #: includes/settings/page-settings.php:182
746
- msgid "Logo"
747
- msgstr "Logo"
748
 
749
  #: includes/settings/page-settings.php:98
750
- msgid "Logo Width"
 
 
751
  msgstr "Ampiezza Logo"
752
 
753
  #: includes/settings/page-settings.php:115
754
- msgid "Logo Height"
 
 
755
  msgstr "Altezza Logo"
756
 
757
  #: includes/settings/page-settings.php:132
758
  #: includes/settings/page-settings.php:137
759
- msgid "Logo URL"
 
 
760
  msgstr "URL Logo"
761
 
762
  #: includes/settings/page-settings.php:147
763
  #: includes/settings/page-settings.php:152
764
- msgid "Logo URL Title"
 
 
765
  msgstr "Titolo URL Logo"
766
 
 
 
 
 
 
767
  #: includes/social/social.php:33
768
  msgid "Enable Social Icons"
769
  msgstr "Abilita Icone Social"
@@ -873,26 +997,22 @@ msgid "Tumblr"
873
  msgstr ""
874
 
875
  #: includes/social/social.php:172
876
- msgid "VKontakte"
877
- msgstr ""
878
-
879
- #: includes/social/social.php:173
880
  msgid "Skype"
881
  msgstr ""
882
 
883
- #: includes/social/social.php:174
884
  msgid "Instagram"
885
  msgstr ""
886
 
887
- #: includes/social/social.php:175
888
  msgid "Telegram"
889
  msgstr ""
890
 
891
- #: includes/social/social.php:176
892
  msgid "Whatsapp"
893
  msgstr ""
894
 
895
- #: includes/social/social.php:193 includes/social/social.php:207
896
  msgid "Social"
897
  msgstr "Social"
898
 
@@ -902,9 +1022,6 @@ msgstr "Social"
902
  #~ msgid "Dashboard "
903
  #~ msgstr "Cruscotto"
904
 
905
- #~ msgid "Logo "
906
- #~ msgstr "Logo "
907
-
908
  #~ msgid "Login from Floating"
909
  #~ msgstr "Posizione Form Login"
910
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: admin-custom-login\n"
4
+ "POT-Creation-Date: 2018-07-26 18:37+0530\n"
5
+ "PO-Revision-Date: 2018-07-26 18:37+0530\n"
6
  "Last-Translator: Weblizar <lizarweb@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\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 2.1\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: _e;__;_\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin-custom-login.php:169
20
+ msgid "Username or Email Address"
21
  msgstr ""
22
 
23
+ #: admin-custom-login.php:169 admin-custom-login.php:175
24
+ msgid "Type Username or Email"
 
 
 
 
25
  msgstr ""
26
 
27
+ #: admin-custom-login.php:170
28
+ msgid "Password"
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgstr ""
30
 
31
+ #: admin-custom-login.php:170 admin-custom-login.php:176
32
+ msgid "Type Password"
33
  msgstr ""
34
 
35
+ #: admin-custom-login.php:193
36
+ msgid "Find Us On Social Media"
37
  msgstr ""
38
 
39
+ #: admin-custom-login.php:477
40
+ msgid "Please upload a valid .json file"
41
  msgstr ""
42
 
43
+ #: admin-custom-login.php:483
44
+ msgid "Please upload a file to import"
45
  msgstr ""
46
 
47
+ #: includes/content.php:28
48
+ msgid "Admin Custom Login"
49
+ msgstr "Login Custom Admin"
 
 
 
 
50
 
51
+ #: includes/content.php:63
52
+ msgid "Powered By"
53
+ msgstr "Realizzato da"
54
 
55
+ #: includes/content.php:65
56
+ msgid "Weblizar"
57
+ msgstr "Weblizar"
58
 
59
+ #: includes/content.php:69
60
+ msgid "Show Us Some Love (Rate Us)"
61
  msgstr ""
62
 
63
+ #: includes/content.php:86 includes/dashboard/dashboard.php:92
64
+ #: includes/dashboard/dashboard.php:106
65
+ msgid "Dashboard"
66
+ msgstr "Cruscotto"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
 
68
+ #: includes/content.php:87
69
+ #, fuzzy
70
+ #| msgid "Application overview"
71
+ msgid "application overview"
72
+ msgstr "Panoramica Applicazione"
73
 
74
+ #: includes/content.php:96
75
+ msgid "Background Design"
76
+ msgstr "Impostazioni Sfondo"
77
 
78
+ #: includes/content.php:97
79
+ #, fuzzy
80
+ #| msgid "Modify Background design here"
81
+ msgid "modify background design here"
82
+ msgstr "Modifica impostazioni sfondo"
83
 
84
+ #: includes/content.php:107
85
+ msgid "Login form Setting"
86
+ msgstr "Impostazioni Login"
87
 
88
+ #: includes/content.php:108
89
+ #, fuzzy
90
+ #| msgid "Modify Login design here"
91
+ msgid "modify login design here"
92
+ msgstr "Modifica impostazioni login"
93
 
94
+ #: includes/content.php:118
95
+ msgid "Font Setting"
96
+ msgstr "Impostazioni Font"
97
 
98
+ #: includes/content.php:119
99
+ #, fuzzy
100
+ #| msgid "Modify Login Form Style here"
101
+ msgid "modify login form style here"
102
+ msgstr "Modifica Stile Form Login"
103
 
104
+ #: includes/content.php:129 includes/settings/page-settings.php:50
105
+ msgid "Logo Settings"
106
+ msgstr "Impostazioni Logo"
107
 
108
+ #: includes/content.php:130
109
+ #, fuzzy
110
+ #| msgid "Customize Logo Settings here"
111
+ msgid "customize logo settings here"
112
+ msgstr "Personalizza Impostazioni Logo"
113
 
114
+ #: includes/content.php:141 includes/social/social.php:21
115
+ msgid "Social Settings"
116
+ msgstr "Impostazioni Social"
117
 
118
+ #: includes/content.php:142
119
+ #, fuzzy
120
+ #| msgid "Connect with your social profile"
121
+ msgid "connect with your social profile"
122
+ msgstr "Connettersi con profili Social"
123
 
124
+ #: includes/content.php:152
125
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
126
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
127
+ msgid "Google Captcha"
128
+ msgstr ""
129
 
130
+ #: includes/content.php:153
131
+ msgid "configure captcha settings"
132
+ msgstr ""
133
 
134
+ #: includes/content.php:163
135
+ msgid "Export / Import"
136
+ msgstr ""
137
 
138
+ #: includes/content.php:164
139
+ msgid "import / export plugin settings"
140
+ msgstr ""
141
 
142
+ #: includes/content.php:173
143
+ msgid "Recommendations"
144
+ msgstr ""
145
 
146
+ #: includes/content.php:174
147
+ msgid "get more free plugins"
148
+ msgstr ""
149
 
150
+ #: includes/content.php:183 includes/help/help.php:15
151
+ msgid "Help And Support"
152
+ msgstr ""
 
 
153
 
154
+ #: includes/content.php:184
155
+ msgid "ask your queries"
156
+ msgstr ""
 
 
157
 
158
+ #: includes/content.php:193 includes/offers.php:11
159
+ msgid "Our Offers"
160
+ msgstr ""
161
 
162
+ #: includes/content.php:194
163
+ msgid "weblizar premium products"
164
  msgstr ""
165
 
166
+ #: includes/content.php:203
167
+ msgid "Rate & Donate Us"
168
  msgstr ""
169
 
170
+ #: includes/content.php:204
171
+ msgid "if you like us"
 
 
172
  msgstr ""
173
 
174
+ #: includes/dashboard/dashboard.php:15
175
+ msgid "Admin Custom Login Dashboard"
176
+ msgstr "Amministrazione Login Personalizzato"
177
+
178
+ #: includes/dashboard/dashboard.php:27
179
+ msgid "Admin Custom Login Status"
180
  msgstr ""
181
 
182
+ #: includes/dashboard/dashboard.php:33
183
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:83
184
+ msgid "Disable"
185
  msgstr ""
186
 
187
+ #: includes/dashboard/dashboard.php:36
188
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:80
189
+ msgid "Enable"
190
  msgstr ""
191
 
192
+ #: includes/dashboard/dashboard.php:47
193
+ msgid "View Login Page"
194
+ msgstr "Visualizza Pagina Login"
195
+
196
+ #: includes/dashboard/dashboard.php:52
197
+ msgid "Copy below link and open in another browser where you are not logged in"
198
  msgstr ""
199
 
200
+ #: includes/dashboard/dashboard.php:65 includes/help/rate.php:62
201
+ msgid "Donate Us"
202
+ msgstr ""
 
203
 
204
+ #: includes/dashboard/dashboard.php:92 includes/design/background.php:368
205
+ #: includes/design/text_and_color.php:583
206
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
207
+ #: includes/login-form-setting/Login-form-background.php:679
208
+ #: includes/settings/page-settings.php:168 includes/social/social.php:192
209
  msgid "Setting Save Successfully"
210
  msgstr "Impostazioni Salvate Correttamente"
211
 
212
+ #: includes/dashboard/dashboard.php:92 includes/dashboard/dashboard.php:106
213
+ #: includes/design/background.php:180 includes/design/background.php:368
214
+ #: includes/design/background.php:383 includes/design/text_and_color.php:583
215
+ #: includes/design/text_and_color.php:598
216
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
217
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
218
+ #: includes/login-form-setting/Login-form-background.php:361
219
+ #: includes/login-form-setting/Login-form-background.php:679
220
+ #: includes/login-form-setting/Login-form-background.php:693
221
+ #: includes/settings/page-settings.php:84
222
+ #: includes/settings/page-settings.php:168
223
+ #: includes/settings/page-settings.php:182 includes/social/social.php:192
224
+ #: includes/social/social.php:206
225
+ msgid "Close"
226
+ msgstr "Chiudi"
227
+
228
+ #: includes/dashboard/dashboard.php:106 includes/design/background.php:383
229
+ #: includes/design/text_and_color.php:598
230
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
231
+ #: includes/login-form-setting/Login-form-background.php:693
232
+ #: includes/settings/page-settings.php:182 includes/social/social.php:206
233
  msgid "Setting Reset Successfully"
234
  msgstr "Impostazioni Ripristinate Correttamente"
235
 
236
+ #: includes/dashboard/dashboard.php:113 includes/design/background.php:391
237
+ #: includes/design/text_and_color.php:606
238
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:138
239
+ #: includes/login-form-setting/Login-form-background.php:700
240
+ #: includes/settings/page-settings.php:189 includes/social/social.php:213
241
  msgid "Save Changes"
242
  msgstr "Salva Modifiche"
243
 
244
+ #: includes/dashboard/dashboard.php:116 includes/design/background.php:394
245
+ #: includes/design/text_and_color.php:609
246
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:141
247
+ #: includes/login-form-setting/Login-form-background.php:703
248
+ #: includes/settings/page-settings.php:192 includes/social/social.php:216
249
  msgid "Reset Default"
250
  msgstr "Ripristina Predefinite"
251
 
252
+ #: includes/design/background.php:91
253
+ msgid "Background Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
254
  msgstr "Impostazioni Sfondo"
255
 
256
+ #: includes/design/background.php:103 includes/design/background.php:110
257
+ #: includes/login-form-setting/Login-form-background.php:276
258
+ msgid "Select Background"
259
+ msgstr "Seleziona sfondo"
260
 
261
+ #: includes/design/background.php:109
262
+ msgid "No Background Selected"
263
+ msgstr "Nessuno sfondo Selezionato"
264
 
265
+ #: includes/design/background.php:111
266
+ #: includes/login-form-setting/Login-form-background.php:283
267
+ msgid "Static Background Color"
268
+ msgstr "Colore Sfondo"
269
 
270
+ #: includes/design/background.php:112
271
+ #: includes/login-form-setting/Login-form-background.php:284
272
+ msgid "Static Background Image"
273
+ msgstr "Immagine di Sfondo"
274
 
275
+ #: includes/design/background.php:113
276
+ msgid "Background SlideShow"
277
+ msgstr "Sfondo con Slideshow"
278
 
279
+ #: includes/design/background.php:131
280
+ #: includes/login-form-setting/Login-form-background.php:300
281
+ msgid "Background Color"
282
+ msgstr "Colore Sfondo"
283
 
284
+ #: includes/design/background.php:153 includes/design/background.php:172
285
+ #: includes/login-form-setting/Login-form-background.php:337
286
+ msgid "Background Image"
287
+ msgstr "Immagine Sfondo"
288
 
289
+ #: includes/design/background.php:158
290
+ #: includes/login-form-setting/Login-form-background.php:342
291
+ #: includes/settings/page-settings.php:67
292
+ msgid "No media selected!"
293
+ msgstr "Nessuno contenuto selezionato!"
294
 
295
+ #: includes/design/background.php:160
296
+ #: includes/login-form-setting/Login-form-background.php:343
297
+ #: includes/settings/page-settings.php:68
298
+ msgid "Upload"
299
+ msgstr "Upload"
300
 
301
+ #: includes/design/background.php:162
302
+ #: includes/login-form-setting/Login-form-background.php:345
303
+ #: includes/settings/page-settings.php:70
304
+ msgid "Preview"
305
+ msgstr "Anteprima"
306
 
307
+ #: includes/design/background.php:164
308
+ #: includes/login-form-setting/Login-form-background.php:347
309
+ msgid "Remove"
310
+ msgstr "Rimuovi"
311
+
312
+ #: includes/design/background.php:196
313
+ msgid "Cover or Strech"
314
+ msgstr "Coprire o Distendere"
315
 
316
+ #: includes/design/background.php:201 includes/design/text_and_color.php:244
317
+ #: includes/design/text_and_color.php:520
318
+ #: includes/login-form-setting/Login-form-background.php:538
319
+ msgid "Yes"
320
+ msgstr "Si"
321
 
322
+ #: includes/design/background.php:213
323
+ #: includes/login-form-setting/Login-form-background.php:376
324
+ msgid "Background Repeat"
325
+ msgstr "Ripeti Sfondo"
326
 
327
+ #: includes/design/background.php:219
328
+ #: includes/login-form-setting/Login-form-background.php:382
329
+ msgid "No Repeat"
330
+ msgstr "Nessuna Ripetizione"
331
 
332
+ #: includes/design/background.php:220
333
+ #: includes/login-form-setting/Login-form-background.php:383
334
+ msgid "Repeat"
335
+ msgstr "Ripeti"
336
 
337
+ #: includes/design/background.php:221
338
+ #: includes/login-form-setting/Login-form-background.php:384
339
+ msgid "Repeat Horizontally"
340
+ msgstr "Ripeti Orizzontalmente"
341
 
342
+ #: includes/design/background.php:222
343
+ #: includes/login-form-setting/Login-form-background.php:385
344
+ msgid "Repeat Vertically"
345
+ msgstr "Ripeti Verticalmente"
346
 
347
+ #: includes/design/background.php:234
348
+ #: includes/login-form-setting/Login-form-background.php:396
349
+ msgid "Background Position"
350
+ msgstr "Posizione Sfondo"
351
 
352
+ #: includes/design/background.php:240
353
+ #: includes/login-form-setting/Login-form-background.php:402
354
+ msgid "Left Top"
355
+ msgstr "Alto Sinistra"
356
 
357
+ #: includes/design/background.php:241
358
+ #: includes/login-form-setting/Login-form-background.php:403
359
+ msgid "Left Center"
360
+ msgstr "Centro Sinistra"
361
 
362
+ #: includes/design/background.php:242
363
+ #: includes/login-form-setting/Login-form-background.php:404
364
+ msgid "Left Bottom"
365
+ msgstr "Basso Sinistra"
366
 
367
+ #: includes/design/background.php:243
368
+ #: includes/login-form-setting/Login-form-background.php:405
369
+ msgid "Right Top"
370
+ msgstr "Alto Destra"
371
 
372
+ #: includes/design/background.php:244
373
+ #: includes/login-form-setting/Login-form-background.php:406
374
+ msgid "Right Center"
375
+ msgstr "Centro Destra"
376
 
377
+ #: includes/design/background.php:245
378
+ #: includes/login-form-setting/Login-form-background.php:407
379
+ msgid "Right Bottom"
380
+ msgstr "Basso Destra"
381
 
382
+ #: includes/design/background.php:246
383
+ #: includes/login-form-setting/Login-form-background.php:408
384
+ msgid "Center Top"
385
+ msgstr "Alto in Centro"
386
 
387
+ #: includes/design/background.php:247
388
+ #: includes/login-form-setting/Login-form-background.php:409
389
+ msgid "Center Center"
390
+ msgstr "Centro Centro"
391
 
392
+ #: includes/design/background.php:248
393
+ #: includes/login-form-setting/Login-form-background.php:410
394
+ msgid "Center Bottom"
395
+ msgstr "Basso Centro"
396
 
397
  #: includes/design/background.php:260
398
  msgid "Background Attachment"
502
  msgid "Enable Link shadow?"
503
  msgstr "Abilita Ombra nei Link?"
504
 
505
+ #: includes/design/text_and_color.php:247
506
+ #: includes/design/text_and_color.php:523
507
+ #: includes/login-form-setting/Login-form-background.php:541
508
+ msgid "No"
509
+ msgstr "No"
510
+
511
  #: includes/design/text_and_color.php:259
512
  msgid "Link Shadow Color"
513
  msgstr "Colore Ombra Nei Link"
516
  msgid "Headline Font Style"
517
  msgstr "Stile Font Titolo"
518
 
519
+ #: includes/design/text_and_color.php:336
520
  msgid "Input Font Style"
521
  msgstr "Stile Font Input"
522
 
523
+ #: includes/design/text_and_color.php:395
524
  msgid "Link Font Style"
525
  msgstr "Stile Font Link"
526
 
527
+ #: includes/design/text_and_color.php:455
528
  msgid "Button Font Style"
529
  msgstr "Stile Font Tasto"
530
 
531
+ #: includes/design/text_and_color.php:514
532
  msgid "Enable Input Box Icon?"
533
  msgstr "Abilitare icone nelle caselle di testo?"
534
 
535
+ #: includes/design/text_and_color.php:534
536
  msgid "Icon For user Input Box"
537
  msgstr "Icona Per Inserimento Nome Utente"
538
 
539
+ #: includes/design/text_and_color.php:555
540
  msgid "Icon For Password Input Box"
541
  msgstr "Icona Per Inserimento Password"
542
 
543
+ #: includes/design/text_and_color.php:583
544
+ #: includes/design/text_and_color.php:598
545
  msgid "Text and Color"
546
  msgstr "Testo e Colore"
547
 
548
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:14
549
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:44
550
+ #, fuzzy
551
+ #| msgid "Social Settings"
552
+ msgid "Google Captcha Settings"
553
+ msgstr "Impostazioni Social"
554
+
555
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:55
556
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:60
557
+ msgid "Site Key"
558
+ msgstr ""
559
+
560
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:64
561
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:69
562
+ msgid "Secret Key"
563
+ msgstr ""
564
+
565
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:74
566
+ msgid "Captcha Display"
567
+ msgstr ""
568
+
569
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:90
570
+ msgid "Captcha Theme"
571
+ msgstr ""
572
+
573
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:96
574
+ #, fuzzy
575
+ #| msgid "Right"
576
+ msgid "Light"
577
+ msgstr "Destra"
578
+
579
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:99
580
+ msgid "Dark"
581
+ msgstr ""
582
+
583
  #: includes/help/help.php:28
584
  msgid "View Support Docs or Open a Ticket"
585
  msgstr ""
586
 
587
+ #: includes/help/help.php:38 includes/help/rate.php:39
 
588
  msgid "Rate Us"
589
  msgstr ""
590
 
622
  msgid "here is solution"
623
  msgstr ""
624
 
625
+ #: includes/help/rate.php:15
626
+ msgid "Rate & Donate Us"
627
+ msgstr ""
628
+
629
  #: includes/help/rate.php:29
630
  msgid ""
631
  "We need your feedback for improve our plugin functionality on WordPress. So, "
660
  msgid "Import"
661
  msgstr ""
662
 
663
+ #: includes/login-form-setting/Login-form-background.php:191
664
+ msgid "Login Settings"
665
+ msgstr "Impostazioni Login"
666
+
667
+ #: includes/login-form-setting/Login-form-background.php:204
668
+ msgid "Login Form Position"
669
+ msgstr ""
670
+
671
+ #: includes/login-form-setting/Login-form-background.php:210
672
+ msgid "Default"
673
+ msgstr ""
674
+
675
+ #: includes/login-form-setting/Login-form-background.php:211
676
+ msgid "Floating"
677
+ msgstr ""
678
+
679
+ #: includes/login-form-setting/Login-form-background.php:212
680
+ msgid "Floating With Customization"
681
+ msgstr ""
682
+
683
+ #: includes/login-form-setting/Login-form-background.php:223
684
+ msgid "Float Settings"
685
+ msgstr ""
686
+
687
+ #: includes/login-form-setting/Login-form-background.php:229
688
+ msgid "Left"
689
+ msgstr "Sinistra"
690
+
691
+ #: includes/login-form-setting/Login-form-background.php:232
692
+ msgid "Center"
693
+ msgstr "Centro"
694
+
695
+ #: includes/login-form-setting/Login-form-background.php:235
696
+ msgid "Right"
697
+ msgstr "Destra"
698
+
699
+ #: includes/login-form-setting/Login-form-background.php:245
700
+ msgid "Floating With Customization Settings"
701
+ msgstr ""
702
+
703
+ #: includes/login-form-setting/Login-form-background.php:266
704
+ msgid "Note: This form position setting will be not responsive."
705
+ msgstr ""
706
+
707
+ #: includes/login-form-setting/Login-form-background.php:282
708
+ msgid "Select background"
709
+ msgstr "Seleziona sfondo"
710
+
711
+ #: includes/login-form-setting/Login-form-background.php:315
712
+ msgid "Login Form Opacity"
713
+ msgstr "Opacità Form Login"
714
+
715
+ #: includes/login-form-setting/Login-form-background.php:355
716
+ #: includes/settings/page-settings.php:78
717
+ msgid "Login Background Image"
718
+ msgstr "Immagine Sfondo Login"
719
+
720
+ #: includes/login-form-setting/Login-form-background.php:422
721
+ msgid "Background Effect"
722
+ msgstr "Effetti Sfondo"
723
+
724
+ #: includes/login-form-setting/Login-form-background.php:428
725
+ msgid "Select overlay effect"
726
+ msgstr "Seleziona effetto rivestimento"
727
+
728
+ #: includes/login-form-setting/Login-form-background.php:429
729
+ msgid "No Overlay Effect"
730
+ msgstr "Nessuno Effetto Rivestimento"
731
+
732
+ #: includes/login-form-setting/Login-form-background.php:430
733
+ msgid "Overlay Effect 1"
734
+ msgstr "Effetto Rivestimento 1"
735
+
736
+ #: includes/login-form-setting/Login-form-background.php:431
737
+ msgid "Overlay Effect 2"
738
+ msgstr "Effetto Rivestimento 2"
739
+
740
+ #: includes/login-form-setting/Login-form-background.php:432
741
+ msgid "Overlay Effect 3"
742
+ msgstr "Effetto Rivestimento 3"
743
+
744
+ #: includes/login-form-setting/Login-form-background.php:445
745
+ msgid "Login Form Width"
746
+ msgstr "Larghezza Form Login"
747
+
748
+ #: includes/login-form-setting/Login-form-background.php:462
749
+ msgid "Border Color"
750
+ msgstr "Colore Bordo"
751
+
752
+ #: includes/login-form-setting/Login-form-background.php:477
753
+ msgid "Border Radius"
754
+ msgstr "Arrotondamento Bordo"
755
+
756
+ #: includes/login-form-setting/Login-form-background.php:494
757
+ msgid "Border Style"
758
+ msgstr "Stile Bordo"
759
+
760
+ #: includes/login-form-setting/Login-form-background.php:500
761
+ msgid "None"
762
+ msgstr "Nessuno"
763
+
764
+ #: includes/login-form-setting/Login-form-background.php:501
765
+ msgid "Solid"
766
+ msgstr "Continuo"
767
+
768
+ #: includes/login-form-setting/Login-form-background.php:502
769
+ msgid "Dotted"
770
+ msgstr "Punteggiato"
771
+
772
+ #: includes/login-form-setting/Login-form-background.php:503
773
+ msgid "Dashed"
774
+ msgstr "Tratteggiato"
775
+
776
+ #: includes/login-form-setting/Login-form-background.php:504
777
+ msgid "Double"
778
+ msgstr "Doppio"
779
+
780
+ #: includes/login-form-setting/Login-form-background.php:515
781
+ msgid "Border Thickness"
782
+ msgstr "Spessore Bordo"
783
+
784
+ #: includes/login-form-setting/Login-form-background.php:532
785
+ msgid "Enable Form Shadow?"
786
+ msgstr "Abilitare ombre nel form?"
787
+
788
+ #: includes/login-form-setting/Login-form-background.php:552
789
+ msgid "Form Shadow Color"
790
+ msgstr "Colore Ombra Del Form"
791
+
792
+ #: includes/login-form-setting/Login-form-background.php:567
793
+ msgid "Redirect Users After Login (Not Work For Admin)"
794
+ msgstr ""
795
+
796
+ #: includes/login-form-setting/Login-form-background.php:572
797
+ msgid "Redirect URL"
798
+ msgstr ""
799
+
800
+ #: includes/login-form-setting/Login-form-background.php:573
801
+ msgid ""
802
+ "Enter the URL to redirect users after login, Setting will not work for an "
803
+ "administrator."
804
+ msgstr ""
805
+
806
+ #: includes/login-form-setting/Login-form-background.php:585
807
+ msgid "Display Note To User Above Login Form"
808
+ msgstr ""
809
+
810
+ #: includes/login-form-setting/Login-form-background.php:602
811
+ #, fuzzy
812
+ #| msgid "Headline Font size"
813
+ msgid "Message Font Size"
814
+ msgstr "Dimensione Font Titolo"
815
+
816
+ #: includes/login-form-setting/Login-form-background.php:620
817
+ #, fuzzy
818
+ #| msgid "Headline Font Color"
819
+ msgid "Message Font Color"
820
+ msgstr "Colore Font Titolo"
821
+
822
+ #: includes/login-form-setting/Login-form-background.php:637
823
+ msgid "Tagline Message Display Below Login Form"
824
+ msgstr ""
825
+
826
+ #: includes/login-form-setting/Login-form-background.php:654
827
+ #: includes/login-form-setting/Login-form-background.php:659
828
+ msgid "Custom CSS"
829
+ msgstr ""
830
+
831
+ #: includes/login-form-setting/Login-form-background.php:661
832
+ msgid "Enter any custom css you want to apply on login panel."
833
+ msgstr ""
834
+
835
+ #: includes/login-form-setting/Login-form-background.php:662
836
+ msgid "Note: Please Do Not Use"
837
+ msgstr ""
838
+
839
+ #: includes/login-form-setting/Login-form-background.php:662
840
+ msgid "Tag With Custom CSS"
841
+ msgstr ""
842
+
843
+ #: includes/login-form-setting/Login-form-background.php:679
844
+ #: includes/login-form-setting/Login-form-background.php:693
845
+ msgid "Login"
846
+ msgstr "Login"
847
+
848
  #. translators: 1: The rating
849
  #: includes/recommendations/recommendations.php:75
850
  #, php-format
852
  msgstr ""
853
 
854
  #: includes/settings/page-settings.php:62
855
+ #, fuzzy
856
+ #| msgid "Logo "
857
+ msgid "Logo Image"
858
+ msgstr "Logo "
859
 
860
  #: includes/settings/page-settings.php:98
861
+ #, fuzzy
862
+ #| msgid "Logo Width"
863
+ msgid "Logo Image Width"
864
  msgstr "Ampiezza Logo"
865
 
866
  #: includes/settings/page-settings.php:115
867
+ #, fuzzy
868
+ #| msgid "Logo Height"
869
+ msgid "Logo Image Height"
870
  msgstr "Altezza Logo"
871
 
872
  #: includes/settings/page-settings.php:132
873
  #: includes/settings/page-settings.php:137
874
+ #, fuzzy
875
+ #| msgid "Logo URL"
876
+ msgid "Logo Link URL"
877
  msgstr "URL Logo"
878
 
879
  #: includes/settings/page-settings.php:147
880
  #: includes/settings/page-settings.php:152
881
+ #, fuzzy
882
+ #| msgid "Logo URL Title"
883
+ msgid "Logo Image Title"
884
  msgstr "Titolo URL Logo"
885
 
886
+ #: includes/settings/page-settings.php:168
887
+ #: includes/settings/page-settings.php:182
888
+ msgid "Logo"
889
+ msgstr "Logo"
890
+
891
  #: includes/social/social.php:33
892
  msgid "Enable Social Icons"
893
  msgstr "Abilita Icone Social"
997
  msgstr ""
998
 
999
  #: includes/social/social.php:172
 
 
 
 
1000
  msgid "Skype"
1001
  msgstr ""
1002
 
1003
+ #: includes/social/social.php:173
1004
  msgid "Instagram"
1005
  msgstr ""
1006
 
1007
+ #: includes/social/social.php:174
1008
  msgid "Telegram"
1009
  msgstr ""
1010
 
1011
+ #: includes/social/social.php:175
1012
  msgid "Whatsapp"
1013
  msgstr ""
1014
 
1015
+ #: includes/social/social.php:192 includes/social/social.php:206
1016
  msgid "Social"
1017
  msgstr "Social"
1018
 
1022
  #~ msgid "Dashboard "
1023
  #~ msgstr "Cruscotto"
1024
 
 
 
 
1025
  #~ msgid "Login from Floating"
1026
  #~ msgstr "Posizione Form Login"
1027
 
languages/admin-custom-login-pl_PL.mo CHANGED
Binary file
languages/admin-custom-login-pl_PL.po CHANGED
@@ -1,520 +1,412 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: admin-custom-login\n"
4
- "POT-Creation-Date: 2018-01-31 15:34+0530\n"
5
- "PO-Revision-Date: 2018-01-31 15:34+0530\n"
6
  "Last-Translator: Weblizar <lizarweb@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: pl_PL\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 2.0.6\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: _e;__;_\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: admin-custom-login.php:157 admin-custom-login.php:163
20
- msgid "User Name"
21
- msgstr "Nazwa użytkownika"
 
 
 
 
22
 
23
- #: admin-custom-login.php:158 admin-custom-login.php:164
24
  msgid "Password"
25
  msgstr "Hasło"
26
 
27
- #: admin-custom-login.php:174
 
 
 
 
 
 
28
  msgid "Find Us On Social Media"
29
  msgstr ""
30
 
31
- #: admin-custom-login.php:429
32
  msgid "Please upload a valid .json file"
33
  msgstr "Proszę załadować poprawny plik .json"
34
 
35
- #: admin-custom-login.php:435
36
  msgid "Please upload a file to import"
37
  msgstr "Prosze załadować plik do importu"
38
 
39
- #: includes/Login-form-setting/Login-form-background.php:175
40
- msgid "Login Settings"
41
- msgstr "Ustawienia logowania"
42
-
43
- #: includes/Login-form-setting/Login-form-background.php:188
44
- msgid "Login Form Position"
45
- msgstr "Pozycja formatki logowania"
46
-
47
- #: includes/Login-form-setting/Login-form-background.php:194
48
- msgid "Default"
49
- msgstr "Domyślne"
50
-
51
- #: includes/Login-form-setting/Login-form-background.php:195
52
- msgid "Floating"
53
- msgstr "Pływający"
54
-
55
- #: includes/Login-form-setting/Login-form-background.php:196
56
- msgid "Floating With Customization"
57
- msgstr "Floating z dostosowaniem"
58
-
59
- #: includes/Login-form-setting/Login-form-background.php:207
60
- msgid "Float Settings"
61
- msgstr "Ustawienia pływaka"
62
-
63
- #: includes/Login-form-setting/Login-form-background.php:213
64
- msgid "Left"
65
- msgstr "Lewa"
66
-
67
- #: includes/Login-form-setting/Login-form-background.php:216
68
- msgid "Center"
69
- msgstr "Środek"
70
-
71
- #: includes/Login-form-setting/Login-form-background.php:219
72
- msgid "Right"
73
- msgstr "Prawa"
74
-
75
- #: includes/Login-form-setting/Login-form-background.php:229
76
- msgid "Floating With Customization Settings"
77
- msgstr "Pływający + dostosuj"
78
-
79
- #: includes/Login-form-setting/Login-form-background.php:250
80
- msgid "Note: This form position setting will be not responsive."
81
- msgstr "Uwaga: To ustawienie pozycji formatki nie będzie responsywne."
82
-
83
- #: includes/Login-form-setting/Login-form-background.php:260
84
- #: includes/design/background.php:103 includes/design/background.php:110
85
- msgid "Select Background"
86
- msgstr "Wybierz Tło"
87
-
88
- #: includes/Login-form-setting/Login-form-background.php:266
89
- msgid "Select background"
90
- msgstr "Wybierz tło"
91
-
92
- #: includes/Login-form-setting/Login-form-background.php:267
93
- #: includes/design/background.php:111
94
- msgid "Static Background Color"
95
- msgstr "Kolor Tła"
96
-
97
- #: includes/Login-form-setting/Login-form-background.php:268
98
- #: includes/design/background.php:112
99
- msgid "Static Background Image"
100
- msgstr "Tło w formie obrazka"
101
-
102
- #: includes/Login-form-setting/Login-form-background.php:284
103
- #: includes/design/background.php:131
104
- msgid "Background Color"
105
- msgstr "Kolor Tła"
106
-
107
- #: includes/Login-form-setting/Login-form-background.php:299
108
- msgid "Login Form Opacity"
109
- msgstr "Pozycja formatki logowania"
110
-
111
- #: includes/Login-form-setting/Login-form-background.php:321
112
- #: includes/design/background.php:153 includes/design/background.php:172
113
- msgid "Background Image"
114
- msgstr "Tło w formie obrazka"
115
-
116
- #: includes/Login-form-setting/Login-form-background.php:326
117
- #: includes/design/background.php:158 includes/settings/page-settings.php:67
118
- msgid "No media selected!"
119
- msgstr "Nie wybrano pliku !"
120
-
121
- #: includes/Login-form-setting/Login-form-background.php:327
122
- #: includes/design/background.php:160 includes/settings/page-settings.php:68
123
- msgid "Upload"
124
- msgstr "Załaduj"
125
-
126
- #: includes/Login-form-setting/Login-form-background.php:329
127
- #: includes/design/background.php:162 includes/settings/page-settings.php:70
128
- msgid "Preview"
129
- msgstr "Podgląd"
130
-
131
- #: includes/Login-form-setting/Login-form-background.php:331
132
- #: includes/design/background.php:164
133
- msgid "Remove"
134
- msgstr "Usuń"
135
-
136
- #: includes/Login-form-setting/Login-form-background.php:339
137
- #: includes/settings/page-settings.php:78
138
- msgid "Login Background Image"
139
- msgstr "Obrazek jak tło formatki logowania"
140
-
141
- #: includes/Login-form-setting/Login-form-background.php:345
142
- #: includes/Login-form-setting/Login-form-background.php:592
143
- #: includes/Login-form-setting/Login-form-background.php:606
144
- #: includes/dashboard/dashboard.php:70 includes/dashboard/dashboard.php:84
145
- #: includes/design/background.php:180 includes/design/background.php:368
146
- #: includes/design/background.php:383 includes/design/text_and_color.php:2594
147
- #: includes/design/text_and_color.php:2609
148
- #: includes/settings/page-settings.php:84
149
- #: includes/settings/page-settings.php:168
150
- #: includes/settings/page-settings.php:182 includes/social/social.php:193
151
- #: includes/social/social.php:207
152
- msgid "Close"
153
- msgstr "Zamknij"
154
-
155
- #: includes/Login-form-setting/Login-form-background.php:360
156
- #: includes/design/background.php:213
157
- msgid "Background Repeat"
158
- msgstr "Powtórzenie tła"
159
-
160
- #: includes/Login-form-setting/Login-form-background.php:366
161
- #: includes/design/background.php:219
162
- msgid "No Repeat"
163
- msgstr "Nie powtarzaj"
164
-
165
- #: includes/Login-form-setting/Login-form-background.php:367
166
- #: includes/design/background.php:220
167
- msgid "Repeat"
168
- msgstr "Powtarzaj"
169
-
170
- #: includes/Login-form-setting/Login-form-background.php:368
171
- #: includes/design/background.php:221
172
- msgid "Repeat Horizontally"
173
- msgstr "Powtarzaj poziomo"
174
-
175
- #: includes/Login-form-setting/Login-form-background.php:369
176
- #: includes/design/background.php:222
177
- msgid "Repeat Vertically"
178
- msgstr "Powtarzaj pionowo"
179
-
180
- #: includes/Login-form-setting/Login-form-background.php:380
181
- #: includes/design/background.php:234
182
- msgid "Background Position"
183
- msgstr "Pozycja tła"
184
-
185
- #: includes/Login-form-setting/Login-form-background.php:386
186
- #: includes/design/background.php:240
187
- msgid "Left Top"
188
- msgstr "Lewy górny"
189
 
190
- #: includes/Login-form-setting/Login-form-background.php:387
191
- #: includes/design/background.php:241
192
- msgid "Left Center"
193
- msgstr "Lewy środkowy"
194
 
195
- #: includes/Login-form-setting/Login-form-background.php:388
196
- #: includes/design/background.php:242
197
- msgid "Left Bottom"
198
- msgstr "Lewy dolny"
199
 
200
- #: includes/Login-form-setting/Login-form-background.php:389
201
- #: includes/design/background.php:243
202
- msgid "Right Top"
203
- msgstr "Prawy górny"
204
 
205
- #: includes/Login-form-setting/Login-form-background.php:390
206
- #: includes/design/background.php:244
207
- msgid "Right Center"
208
- msgstr "Prawy środkowy"
209
 
210
- #: includes/Login-form-setting/Login-form-background.php:391
211
- #: includes/design/background.php:245
212
- msgid "Right Bottom"
213
- msgstr "Prawy dolny"
 
214
 
215
- #: includes/Login-form-setting/Login-form-background.php:392
216
- #: includes/design/background.php:246
217
- msgid "Center Top"
218
- msgstr "Środkowy górny"
219
 
220
- #: includes/Login-form-setting/Login-form-background.php:393
221
- #: includes/design/background.php:247
222
- msgid "Center Center"
223
- msgstr "Środkowy"
 
224
 
225
- #: includes/Login-form-setting/Login-form-background.php:394
226
- #: includes/design/background.php:248
227
- msgid "Center Bottom"
228
- msgstr "Środkowy dolny"
229
 
230
- #: includes/Login-form-setting/Login-form-background.php:406
231
- msgid "Background Effect"
232
- msgstr "Efekty tła"
 
 
233
 
234
- #: includes/Login-form-setting/Login-form-background.php:412
235
- msgid "Select overlay effect"
236
- msgstr "Wybierz efekt"
237
 
238
- #: includes/Login-form-setting/Login-form-background.php:413
239
- msgid "No Overlay Effect"
240
- msgstr "Bez efektu"
 
 
241
 
242
- #: includes/Login-form-setting/Login-form-background.php:414
243
- msgid "Overlay Effect 1"
244
- msgstr "Efekt 1"
245
 
246
- #: includes/Login-form-setting/Login-form-background.php:415
247
- msgid "Overlay Effect 2"
248
- msgstr "Efekt 2"
 
 
249
 
250
- #: includes/Login-form-setting/Login-form-background.php:416
251
- msgid "Overlay Effect 3"
252
- msgstr "Efekt 3"
253
 
254
- #: includes/Login-form-setting/Login-form-background.php:429
255
- msgid "Login Form Width"
256
- msgstr "Szerokość formularza logowania"
 
 
257
 
258
- #: includes/Login-form-setting/Login-form-background.php:446
259
- msgid "Border Color"
260
- msgstr "Kolor ramki"
 
 
261
 
262
- #: includes/Login-form-setting/Login-form-background.php:461
263
- msgid "Border Radius"
264
- msgstr "Zaokrąglenie ramki"
265
 
266
- #: includes/Login-form-setting/Login-form-background.php:478
267
- msgid "Border Style"
268
- msgstr "Styl Ramki"
269
 
270
- #: includes/Login-form-setting/Login-form-background.php:484
271
- msgid "None"
272
- msgstr "Brak"
273
 
274
- #: includes/Login-form-setting/Login-form-background.php:485
275
- msgid "Solid"
276
- msgstr "Mocny"
277
 
278
- #: includes/Login-form-setting/Login-form-background.php:486
279
- msgid "Dotted"
280
- msgstr "Kropkowany"
 
 
281
 
282
- #: includes/Login-form-setting/Login-form-background.php:487
283
- msgid "Dashed"
284
- msgstr "Dashed"
285
 
286
- #: includes/Login-form-setting/Login-form-background.php:488
287
- msgid "Double"
288
- msgstr "Podwójny"
 
 
289
 
290
- #: includes/Login-form-setting/Login-form-background.php:499
291
- msgid "Border Thickness"
292
- msgstr "Grubość ramki"
293
 
294
- #: includes/Login-form-setting/Login-form-background.php:516
295
- msgid "Enable Form Shadow?"
296
- msgstr "Włączyc cień?"
297
 
298
- #: includes/Login-form-setting/Login-form-background.php:522
299
- #: includes/design/background.php:201 includes/design/text_and_color.php:244
300
- #: includes/design/text_and_color.php:2531
301
- msgid "Yes"
302
- msgstr "Tak"
303
 
304
- #: includes/Login-form-setting/Login-form-background.php:525
305
- #: includes/design/text_and_color.php:247
306
- #: includes/design/text_and_color.php:2534
307
- msgid "No"
308
- msgstr "Nie"
309
 
310
- #: includes/Login-form-setting/Login-form-background.php:536
311
- msgid "Form Shadow Color"
312
- msgstr "Kolor cieniowania"
313
 
314
- #: includes/Login-form-setting/Login-form-background.php:551
315
- msgid "Redirect Users After Login (Not Work For Admin)"
316
- msgstr ""
317
 
318
- #: includes/Login-form-setting/Login-form-background.php:556
319
- msgid "Redirect URL"
320
- msgstr ""
 
321
 
322
- #: includes/Login-form-setting/Login-form-background.php:557
323
- msgid ""
324
- "Enter the URL to redirect users after login, Setting will not work for an "
325
- "administrator."
326
- msgstr ""
327
 
328
- #: includes/Login-form-setting/Login-form-background.php:567
329
- #: includes/Login-form-setting/Login-form-background.php:572
330
- msgid "Custom CSS"
331
- msgstr "Własny CSS"
332
 
333
- #: includes/Login-form-setting/Login-form-background.php:574
334
- msgid "Enter any custom css you want to apply on login panel."
335
  msgstr ""
336
- "Wpisz dowolny preferowany przez ciebie styl css aby zastosować go dla panelu "
337
- "logowania."
338
-
339
- #: includes/Login-form-setting/Login-form-background.php:575
340
- msgid "Note: Please Do Not Use"
341
- msgstr "Notatka : Proszę nie używać"
342
-
343
- #: includes/Login-form-setting/Login-form-background.php:575
344
- msgid "Tag With Custom CSS"
345
- msgstr "Tag z niestandardowym CSS"
346
 
347
- #: includes/Login-form-setting/Login-form-background.php:592
348
- #: includes/Login-form-setting/Login-form-background.php:606
349
- msgid "Login"
350
- msgstr "Nazwa użytkownika (login)"
 
351
 
352
- #: includes/Login-form-setting/Login-form-background.php:592
353
- #: includes/dashboard/dashboard.php:70 includes/design/background.php:368
354
- #: includes/design/text_and_color.php:2594
355
- #: includes/settings/page-settings.php:168 includes/social/social.php:193
 
356
  msgid "Setting Save Successfully"
357
  msgstr "Ustawienia zostały zapisane poprawnie ! :)"
358
 
359
- #: includes/Login-form-setting/Login-form-background.php:606
360
- #: includes/dashboard/dashboard.php:84 includes/design/background.php:383
361
- #: includes/design/text_and_color.php:2609
362
- #: includes/settings/page-settings.php:182 includes/social/social.php:207
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
363
  msgid "Setting Reset Successfully"
364
  msgstr "Ustawienia zostały poprawnie zresetowane ! :)"
365
 
366
- #: includes/Login-form-setting/Login-form-background.php:613
367
- #: includes/dashboard/dashboard.php:91 includes/design/background.php:391
368
- #: includes/design/text_and_color.php:2617
369
- #: includes/settings/page-settings.php:189 includes/social/social.php:214
 
370
  msgid "Save Changes"
371
  msgstr "Zapisz zmiany"
372
 
373
- #: includes/Login-form-setting/Login-form-background.php:616
374
- #: includes/dashboard/dashboard.php:94 includes/design/background.php:394
375
- #: includes/design/text_and_color.php:2620
376
- #: includes/settings/page-settings.php:192 includes/social/social.php:217
 
377
  msgid "Reset Default"
378
  msgstr "Resetuj do ustawień domyślnych"
379
 
380
- #: includes/content.php:28
381
- msgid "Admin Custom Login"
382
- msgstr "Admin Custom Login"
383
-
384
- #: includes/content.php:63
385
- msgid "Powered By"
386
- msgstr "Powered By"
387
-
388
- #: includes/content.php:65
389
- msgid "Weblizar"
390
- msgstr "Weblizar"
391
-
392
- #: includes/content.php:69
393
- msgid "Show Us Some Love (Rate Us)"
394
- msgstr "Doceń nas (Oceń)"
395
-
396
- #: includes/content.php:85 includes/dashboard/dashboard.php:70
397
- #: includes/dashboard/dashboard.php:84
398
- msgid "Dashboard"
399
- msgstr "Kokpit"
400
-
401
- #: includes/content.php:86
402
- msgid "Application overview"
403
- msgstr "Opis aplikacji"
404
 
405
- #: includes/content.php:95
406
- msgid "Background Design"
407
- msgstr "Projektowanie tła"
 
408
 
409
- #: includes/content.php:96
410
- msgid "Modify Background design here"
411
- msgstr "Zmodyfikuj tło"
412
 
413
- #: includes/content.php:106
414
- msgid "Login form Setting"
415
- msgstr "Ustawienia logowania"
 
416
 
417
- #: includes/content.php:107
418
- msgid "Modify Login design here"
419
- msgstr "Modyfikuj styl logowania"
 
420
 
421
- #: includes/content.php:117
422
- msgid "Font Setting"
423
- msgstr "Ustawienia czcionek"
424
 
425
- #: includes/content.php:118
426
- msgid "Modify Login Form Style here"
427
- msgstr "Modyfikuj styl formatki logowania"
 
428
 
429
- #: includes/content.php:128 includes/settings/page-settings.php:50
430
- msgid "Logo Settings"
431
- msgstr "Ustawienia Logo"
 
432
 
433
- #: includes/content.php:129
434
- msgid "Customize Logo Settings here"
435
- msgstr "Modyfikuj ustawienia logo"
 
 
436
 
437
- #: includes/content.php:140 includes/social/social.php:21
438
- msgid "Social Settings"
439
- msgstr "Ustawienia mediów społecznościowych"
 
 
440
 
441
- #: includes/content.php:141
442
- msgid "Connect with your social profile"
443
- msgstr "Połącz z twoim profilem"
 
 
444
 
445
- #: includes/content.php:151
446
- msgid "Export / Import"
447
- msgstr "Eksport/Import"
 
448
 
449
- #: includes/content.php:152
450
- msgid "Export / Import Your Data"
451
- msgstr "Eksportuj/Importuj twoje ustawienia"
452
 
453
- #: includes/content.php:161
454
- msgid "Recommendations"
455
- msgstr "Polecane"
 
 
456
 
457
- #: includes/content.php:162
458
- msgid "Get More Free Useful Plugins"
459
- msgstr "Zdobądź wiecej darmowych przydatnych wtyczek"
 
460
 
461
- #: includes/content.php:171 includes/help/help.php:15
462
- msgid "Help And Support"
463
- msgstr "Pomoc i wparcie"
 
464
 
465
- #: includes/content.php:172
466
- msgid "Ask your query"
467
- msgstr "Zadaj pytanie"
 
468
 
469
- #: includes/content.php:181
470
- msgid "Please rate us"
471
- msgstr "Oceń nas"
 
472
 
473
- #: includes/content.php:182
474
- msgid "If you like us"
475
- msgstr "Jeśli nas lubisz"
 
476
 
477
- #: includes/dashboard/dashboard.php:15
478
- msgid "Admin Custom Login Dashboard"
479
- msgstr "Admin Custom Login Kokpit"
 
480
 
481
- #: includes/dashboard/dashboard.php:27
482
- msgid "Admin Custom Login Status"
483
- msgstr "Admin Custom Login Status"
 
484
 
485
- #: includes/dashboard/dashboard.php:33
486
- msgid "Disable"
487
- msgstr "Wyłącz"
 
488
 
489
- #: includes/dashboard/dashboard.php:36
490
- msgid "Enable"
491
- msgstr "Włącz"
 
492
 
493
- #: includes/dashboard/dashboard.php:47
494
- msgid "View Login Page"
495
- msgstr "Widok Strony Logowania"
 
496
 
497
- #: includes/dashboard/dashboard.php:52
498
- msgid "Copy below link and open in another browser where you are not logged in"
499
- msgstr ""
500
- "Skopiuj poniższy link i otwórz go w przeglądarce w której nie jesteś "
501
- "zalogowany"
502
 
503
- #: includes/design/background.php:91
504
- msgid "Background Settings"
505
- msgstr "Ustawienia tła"
 
506
 
507
- #: includes/design/background.php:109
508
- msgid "No Background Selected"
509
- msgstr "Nie wybrano tła"
 
510
 
511
- #: includes/design/background.php:113
512
- msgid "Background SlideShow"
513
- msgstr "Tło jako pokaz slajdów"
 
514
 
515
- #: includes/design/background.php:196
516
- msgid "Cover or Strech"
517
- msgstr "Pokryj lub rozciągnij"
 
518
 
519
  #: includes/design/background.php:260
520
  msgid "Background Attachment"
@@ -624,6 +516,12 @@ msgstr "Rozmiar czcionki przycisku"
624
  msgid "Enable Link shadow?"
625
  msgstr "Włączyć cień dla linków ?"
626
 
 
 
 
 
 
 
627
  #: includes/design/text_and_color.php:259
628
  msgid "Link Shadow Color"
629
  msgstr "Kolor cieni dla linków"
@@ -632,41 +530,75 @@ msgstr "Kolor cieni dla linków"
632
  msgid "Headline Font Style"
633
  msgstr "Styl czcionki nagłówka"
634
 
635
- #: includes/design/text_and_color.php:837
636
  msgid "Input Font Style"
637
  msgstr "Styl czcionki pola input"
638
 
639
- #: includes/design/text_and_color.php:1399
640
  msgid "Link Font Style"
641
  msgstr "Styl czcionki dla linków"
642
 
643
- #: includes/design/text_and_color.php:1962
644
  msgid "Button Font Style"
645
  msgstr "Styl czcionki przycisku"
646
 
647
- #: includes/design/text_and_color.php:2525
648
  msgid "Enable Input Box Icon?"
649
  msgstr "Włączyć ikonkę pola input ?"
650
 
651
- #: includes/design/text_and_color.php:2545
652
  msgid "Icon For user Input Box"
653
  msgstr "Ikona dla pola input Użytkownik"
654
 
655
- #: includes/design/text_and_color.php:2566
656
  msgid "Icon For Password Input Box"
657
  msgstr "Ikona dla pola input Hasło"
658
 
659
- #: includes/design/text_and_color.php:2594
660
- #: includes/design/text_and_color.php:2609
661
  msgid "Text and Color"
662
  msgstr "Tekst i kolor"
663
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
664
  #: includes/help/help.php:28
665
  msgid "View Support Docs or Open a Ticket"
666
  msgstr "Przeglądać faq albo wyślij zgłoszenie"
667
 
668
- #: includes/help/help.php:38 includes/help/rate.php:15
669
- #: includes/help/rate.php:39
670
  msgid "Rate Us"
671
  msgstr "Oceń Nas"
672
 
@@ -709,6 +641,10 @@ msgstr "Pytanie : Jak przetłumaczyć tą wtyczkę na mój jezyk?"
709
  msgid "here is solution"
710
  msgstr "tutaj jest rozwiązanie"
711
 
 
 
 
 
712
  #: includes/help/rate.php:29
713
  msgid ""
714
  "We need your feedback for improve our plugin functionality on WordPress. So, "
@@ -750,6 +686,193 @@ msgstr ""
750
  msgid "Import"
751
  msgstr ""
752
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
753
  #. translators: 1: The rating
754
  #: includes/recommendations/recommendations.php:75
755
  #, php-format
@@ -757,29 +880,42 @@ msgid "%s rating"
757
  msgstr "%s ocen"
758
 
759
  #: includes/settings/page-settings.php:62
760
- #: includes/settings/page-settings.php:168
761
- #: includes/settings/page-settings.php:182
762
- msgid "Logo"
763
- msgstr "Logo"
764
 
765
  #: includes/settings/page-settings.php:98
766
- msgid "Logo Width"
 
 
767
  msgstr "Szerokość logo"
768
 
769
  #: includes/settings/page-settings.php:115
770
- msgid "Logo Height"
 
 
771
  msgstr "Wysokość logo"
772
 
773
  #: includes/settings/page-settings.php:132
774
  #: includes/settings/page-settings.php:137
775
- msgid "Logo URL"
 
 
776
  msgstr "Logo URL"
777
 
778
  #: includes/settings/page-settings.php:147
779
  #: includes/settings/page-settings.php:152
780
- msgid "Logo URL Title"
 
 
781
  msgstr "Tytuł Logo URL"
782
 
 
 
 
 
 
783
  #: includes/social/social.php:33
784
  msgid "Enable Social Icons"
785
  msgstr "Włącz ikony społecznościowe"
@@ -889,29 +1025,37 @@ msgid "Tumblr"
889
  msgstr "Tumblr"
890
 
891
  #: includes/social/social.php:172
892
- msgid "VKontakte"
893
- msgstr "VKontakte"
894
-
895
- #: includes/social/social.php:173
896
  msgid "Skype"
897
  msgstr "Skype"
898
 
899
- #: includes/social/social.php:174
900
  msgid "Instagram"
901
  msgstr "Instagram"
902
 
903
- #: includes/social/social.php:175
904
  msgid "Telegram"
905
  msgstr ""
906
 
907
- #: includes/social/social.php:176
908
  msgid "Whatsapp"
909
  msgstr ""
910
 
911
- #: includes/social/social.php:193 includes/social/social.php:207
912
  msgid "Social"
913
  msgstr "Social"
914
 
 
 
 
 
 
 
 
 
 
 
 
 
915
  #~ msgid "preview"
916
  #~ msgstr "podgląd"
917
 
@@ -954,8 +1098,5 @@ msgstr "Social"
954
  #~ msgid "Dashboard "
955
  #~ msgstr "Kokpit "
956
 
957
- #~ msgid "Logo "
958
- #~ msgstr "Logo "
959
-
960
  #~ msgid "Contact Us:"
961
  #~ msgstr "Napisz do nas :"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: admin-custom-login\n"
4
+ "POT-Creation-Date: 2018-07-26 18:37+0530\n"
5
+ "PO-Revision-Date: 2018-07-26 18:37+0530\n"
6
  "Last-Translator: Weblizar <lizarweb@gmail.com>\n"
7
  "Language-Team: \n"
8
  "Language: pl_PL\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 2.1\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: _e;__;_\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin-custom-login.php:169
20
+ msgid "Username or Email Address"
21
+ msgstr ""
22
+
23
+ #: admin-custom-login.php:169 admin-custom-login.php:175
24
+ msgid "Type Username or Email"
25
+ msgstr ""
26
 
27
+ #: admin-custom-login.php:170
28
  msgid "Password"
29
  msgstr "Hasło"
30
 
31
+ #: admin-custom-login.php:170 admin-custom-login.php:176
32
+ #, fuzzy
33
+ #| msgid "Password"
34
+ msgid "Type Password"
35
+ msgstr "Hasło"
36
+
37
+ #: admin-custom-login.php:193
38
  msgid "Find Us On Social Media"
39
  msgstr ""
40
 
41
+ #: admin-custom-login.php:477
42
  msgid "Please upload a valid .json file"
43
  msgstr "Proszę załadować poprawny plik .json"
44
 
45
+ #: admin-custom-login.php:483
46
  msgid "Please upload a file to import"
47
  msgstr "Prosze załadować plik do importu"
48
 
49
+ #: includes/content.php:28
50
+ msgid "Admin Custom Login"
51
+ msgstr "Admin Custom Login"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
 
53
+ #: includes/content.php:63
54
+ msgid "Powered By"
55
+ msgstr "Powered By"
 
56
 
57
+ #: includes/content.php:65
58
+ msgid "Weblizar"
59
+ msgstr "Weblizar"
 
60
 
61
+ #: includes/content.php:69
62
+ msgid "Show Us Some Love (Rate Us)"
63
+ msgstr "Doceń nas (Oceń)"
 
64
 
65
+ #: includes/content.php:86 includes/dashboard/dashboard.php:92
66
+ #: includes/dashboard/dashboard.php:106
67
+ msgid "Dashboard"
68
+ msgstr "Kokpit"
69
 
70
+ #: includes/content.php:87
71
+ #, fuzzy
72
+ #| msgid "Application overview"
73
+ msgid "application overview"
74
+ msgstr "Opis aplikacji"
75
 
76
+ #: includes/content.php:96
77
+ msgid "Background Design"
78
+ msgstr "Projektowanie tła"
 
79
 
80
+ #: includes/content.php:97
81
+ #, fuzzy
82
+ #| msgid "Modify Background design here"
83
+ msgid "modify background design here"
84
+ msgstr "Zmodyfikuj tło"
85
 
86
+ #: includes/content.php:107
87
+ msgid "Login form Setting"
88
+ msgstr "Ustawienia logowania"
 
89
 
90
+ #: includes/content.php:108
91
+ #, fuzzy
92
+ #| msgid "Modify Login design here"
93
+ msgid "modify login design here"
94
+ msgstr "Modyfikuj styl logowania"
95
 
96
+ #: includes/content.php:118
97
+ msgid "Font Setting"
98
+ msgstr "Ustawienia czcionek"
99
 
100
+ #: includes/content.php:119
101
+ #, fuzzy
102
+ #| msgid "Modify Login Form Style here"
103
+ msgid "modify login form style here"
104
+ msgstr "Modyfikuj styl formatki logowania"
105
 
106
+ #: includes/content.php:129 includes/settings/page-settings.php:50
107
+ msgid "Logo Settings"
108
+ msgstr "Ustawienia Logo"
109
 
110
+ #: includes/content.php:130
111
+ #, fuzzy
112
+ #| msgid "Customize Logo Settings here"
113
+ msgid "customize logo settings here"
114
+ msgstr "Modyfikuj ustawienia logo"
115
 
116
+ #: includes/content.php:141 includes/social/social.php:21
117
+ msgid "Social Settings"
118
+ msgstr "Ustawienia mediów społecznościowych"
119
 
120
+ #: includes/content.php:142
121
+ #, fuzzy
122
+ #| msgid "Connect with your social profile"
123
+ msgid "connect with your social profile"
124
+ msgstr "Połącz z twoim profilem"
125
 
126
+ #: includes/content.php:152
127
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
128
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
129
+ msgid "Google Captcha"
130
+ msgstr ""
131
 
132
+ #: includes/content.php:153
133
+ msgid "configure captcha settings"
134
+ msgstr ""
135
 
136
+ #: includes/content.php:163
137
+ msgid "Export / Import"
138
+ msgstr "Eksport/Import"
139
 
140
+ #: includes/content.php:164
141
+ msgid "import / export plugin settings"
142
+ msgstr ""
143
 
144
+ #: includes/content.php:173
145
+ msgid "Recommendations"
146
+ msgstr "Polecane"
147
 
148
+ #: includes/content.php:174
149
+ #, fuzzy
150
+ #| msgid "Get More Free Useful Plugins"
151
+ msgid "get more free plugins"
152
+ msgstr "Zdobądź wiecej darmowych przydatnych wtyczek"
153
 
154
+ #: includes/content.php:183 includes/help/help.php:15
155
+ msgid "Help And Support"
156
+ msgstr "Pomoc i wparcie"
157
 
158
+ #: includes/content.php:184
159
+ #, fuzzy
160
+ #| msgid "Ask your query"
161
+ msgid "ask your queries"
162
+ msgstr "Zadaj pytanie"
163
 
164
+ #: includes/content.php:193 includes/offers.php:11
165
+ msgid "Our Offers"
166
+ msgstr ""
167
 
168
+ #: includes/content.php:194
169
+ msgid "weblizar premium products"
170
+ msgstr ""
171
 
172
+ #: includes/content.php:203
173
+ #, fuzzy
174
+ #| msgid "Rate Us"
175
+ msgid "Rate & Donate Us"
176
+ msgstr "Oceń Nas"
177
 
178
+ #: includes/content.php:204
179
+ #, fuzzy
180
+ #| msgid "If you like us"
181
+ msgid "if you like us"
182
+ msgstr "Jeśli nas lubisz"
183
 
184
+ #: includes/dashboard/dashboard.php:15
185
+ msgid "Admin Custom Login Dashboard"
186
+ msgstr "Admin Custom Login Kokpit"
187
 
188
+ #: includes/dashboard/dashboard.php:27
189
+ msgid "Admin Custom Login Status"
190
+ msgstr "Admin Custom Login Status"
191
 
192
+ #: includes/dashboard/dashboard.php:33
193
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:83
194
+ msgid "Disable"
195
+ msgstr "Wyłącz"
196
 
197
+ #: includes/dashboard/dashboard.php:36
198
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:80
199
+ msgid "Enable"
200
+ msgstr "Włącz"
 
201
 
202
+ #: includes/dashboard/dashboard.php:47
203
+ msgid "View Login Page"
204
+ msgstr "Widok Strony Logowania"
 
205
 
206
+ #: includes/dashboard/dashboard.php:52
207
+ msgid "Copy below link and open in another browser where you are not logged in"
208
  msgstr ""
209
+ "Skopiuj poniższy link i otwórz go w przeglądarce w której nie jesteś "
210
+ "zalogowany"
 
 
 
 
 
 
 
 
211
 
212
+ #: includes/dashboard/dashboard.php:65 includes/help/rate.php:62
213
+ #, fuzzy
214
+ #| msgid "Rate Us"
215
+ msgid "Donate Us"
216
+ msgstr "Oceń Nas"
217
 
218
+ #: includes/dashboard/dashboard.php:92 includes/design/background.php:368
219
+ #: includes/design/text_and_color.php:583
220
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
221
+ #: includes/login-form-setting/Login-form-background.php:679
222
+ #: includes/settings/page-settings.php:168 includes/social/social.php:192
223
  msgid "Setting Save Successfully"
224
  msgstr "Ustawienia zostały zapisane poprawnie ! :)"
225
 
226
+ #: includes/dashboard/dashboard.php:92 includes/dashboard/dashboard.php:106
227
+ #: includes/design/background.php:180 includes/design/background.php:368
228
+ #: includes/design/background.php:383 includes/design/text_and_color.php:583
229
+ #: includes/design/text_and_color.php:598
230
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
231
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
232
+ #: includes/login-form-setting/Login-form-background.php:361
233
+ #: includes/login-form-setting/Login-form-background.php:679
234
+ #: includes/login-form-setting/Login-form-background.php:693
235
+ #: includes/settings/page-settings.php:84
236
+ #: includes/settings/page-settings.php:168
237
+ #: includes/settings/page-settings.php:182 includes/social/social.php:192
238
+ #: includes/social/social.php:206
239
+ msgid "Close"
240
+ msgstr "Zamknij"
241
+
242
+ #: includes/dashboard/dashboard.php:106 includes/design/background.php:383
243
+ #: includes/design/text_and_color.php:598
244
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
245
+ #: includes/login-form-setting/Login-form-background.php:693
246
+ #: includes/settings/page-settings.php:182 includes/social/social.php:206
247
  msgid "Setting Reset Successfully"
248
  msgstr "Ustawienia zostały poprawnie zresetowane ! :)"
249
 
250
+ #: includes/dashboard/dashboard.php:113 includes/design/background.php:391
251
+ #: includes/design/text_and_color.php:606
252
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:138
253
+ #: includes/login-form-setting/Login-form-background.php:700
254
+ #: includes/settings/page-settings.php:189 includes/social/social.php:213
255
  msgid "Save Changes"
256
  msgstr "Zapisz zmiany"
257
 
258
+ #: includes/dashboard/dashboard.php:116 includes/design/background.php:394
259
+ #: includes/design/text_and_color.php:609
260
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:141
261
+ #: includes/login-form-setting/Login-form-background.php:703
262
+ #: includes/settings/page-settings.php:192 includes/social/social.php:216
263
  msgid "Reset Default"
264
  msgstr "Resetuj do ustawień domyślnych"
265
 
266
+ #: includes/design/background.php:91
267
+ msgid "Background Settings"
268
+ msgstr "Ustawienia tła"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
 
270
+ #: includes/design/background.php:103 includes/design/background.php:110
271
+ #: includes/login-form-setting/Login-form-background.php:276
272
+ msgid "Select Background"
273
+ msgstr "Wybierz Tło"
274
 
275
+ #: includes/design/background.php:109
276
+ msgid "No Background Selected"
277
+ msgstr "Nie wybrano tła"
278
 
279
+ #: includes/design/background.php:111
280
+ #: includes/login-form-setting/Login-form-background.php:283
281
+ msgid "Static Background Color"
282
+ msgstr "Kolor Tła"
283
 
284
+ #: includes/design/background.php:112
285
+ #: includes/login-form-setting/Login-form-background.php:284
286
+ msgid "Static Background Image"
287
+ msgstr "Tło w formie obrazka"
288
 
289
+ #: includes/design/background.php:113
290
+ msgid "Background SlideShow"
291
+ msgstr "Tło jako pokaz slajdów"
292
 
293
+ #: includes/design/background.php:131
294
+ #: includes/login-form-setting/Login-form-background.php:300
295
+ msgid "Background Color"
296
+ msgstr "Kolor Tła"
297
 
298
+ #: includes/design/background.php:153 includes/design/background.php:172
299
+ #: includes/login-form-setting/Login-form-background.php:337
300
+ msgid "Background Image"
301
+ msgstr "Tło w formie obrazka"
302
 
303
+ #: includes/design/background.php:158
304
+ #: includes/login-form-setting/Login-form-background.php:342
305
+ #: includes/settings/page-settings.php:67
306
+ msgid "No media selected!"
307
+ msgstr "Nie wybrano pliku !"
308
 
309
+ #: includes/design/background.php:160
310
+ #: includes/login-form-setting/Login-form-background.php:343
311
+ #: includes/settings/page-settings.php:68
312
+ msgid "Upload"
313
+ msgstr "Załaduj"
314
 
315
+ #: includes/design/background.php:162
316
+ #: includes/login-form-setting/Login-form-background.php:345
317
+ #: includes/settings/page-settings.php:70
318
+ msgid "Preview"
319
+ msgstr "Podgląd"
320
 
321
+ #: includes/design/background.php:164
322
+ #: includes/login-form-setting/Login-form-background.php:347
323
+ msgid "Remove"
324
+ msgstr "Usuń"
325
 
326
+ #: includes/design/background.php:196
327
+ msgid "Cover or Strech"
328
+ msgstr "Pokryj lub rozciągnij"
329
 
330
+ #: includes/design/background.php:201 includes/design/text_and_color.php:244
331
+ #: includes/design/text_and_color.php:520
332
+ #: includes/login-form-setting/Login-form-background.php:538
333
+ msgid "Yes"
334
+ msgstr "Tak"
335
 
336
+ #: includes/design/background.php:213
337
+ #: includes/login-form-setting/Login-form-background.php:376
338
+ msgid "Background Repeat"
339
+ msgstr "Powtórzenie tła"
340
 
341
+ #: includes/design/background.php:219
342
+ #: includes/login-form-setting/Login-form-background.php:382
343
+ msgid "No Repeat"
344
+ msgstr "Nie powtarzaj"
345
 
346
+ #: includes/design/background.php:220
347
+ #: includes/login-form-setting/Login-form-background.php:383
348
+ msgid "Repeat"
349
+ msgstr "Powtarzaj"
350
 
351
+ #: includes/design/background.php:221
352
+ #: includes/login-form-setting/Login-form-background.php:384
353
+ msgid "Repeat Horizontally"
354
+ msgstr "Powtarzaj poziomo"
355
 
356
+ #: includes/design/background.php:222
357
+ #: includes/login-form-setting/Login-form-background.php:385
358
+ msgid "Repeat Vertically"
359
+ msgstr "Powtarzaj pionowo"
360
 
361
+ #: includes/design/background.php:234
362
+ #: includes/login-form-setting/Login-form-background.php:396
363
+ msgid "Background Position"
364
+ msgstr "Pozycja tła"
365
 
366
+ #: includes/design/background.php:240
367
+ #: includes/login-form-setting/Login-form-background.php:402
368
+ msgid "Left Top"
369
+ msgstr "Lewy górny"
370
 
371
+ #: includes/design/background.php:241
372
+ #: includes/login-form-setting/Login-form-background.php:403
373
+ msgid "Left Center"
374
+ msgstr "Lewy środkowy"
375
 
376
+ #: includes/design/background.php:242
377
+ #: includes/login-form-setting/Login-form-background.php:404
378
+ msgid "Left Bottom"
379
+ msgstr "Lewy dolny"
380
 
381
+ #: includes/design/background.php:243
382
+ #: includes/login-form-setting/Login-form-background.php:405
383
+ msgid "Right Top"
384
+ msgstr "Prawy górny"
385
 
386
+ #: includes/design/background.php:244
387
+ #: includes/login-form-setting/Login-form-background.php:406
388
+ msgid "Right Center"
389
+ msgstr "Prawy środkowy"
 
390
 
391
+ #: includes/design/background.php:245
392
+ #: includes/login-form-setting/Login-form-background.php:407
393
+ msgid "Right Bottom"
394
+ msgstr "Prawy dolny"
395
 
396
+ #: includes/design/background.php:246
397
+ #: includes/login-form-setting/Login-form-background.php:408
398
+ msgid "Center Top"
399
+ msgstr "Środkowy górny"
400
 
401
+ #: includes/design/background.php:247
402
+ #: includes/login-form-setting/Login-form-background.php:409
403
+ msgid "Center Center"
404
+ msgstr "Środkowy"
405
 
406
+ #: includes/design/background.php:248
407
+ #: includes/login-form-setting/Login-form-background.php:410
408
+ msgid "Center Bottom"
409
+ msgstr "Środkowy dolny"
410
 
411
  #: includes/design/background.php:260
412
  msgid "Background Attachment"
516
  msgid "Enable Link shadow?"
517
  msgstr "Włączyć cień dla linków ?"
518
 
519
+ #: includes/design/text_and_color.php:247
520
+ #: includes/design/text_and_color.php:523
521
+ #: includes/login-form-setting/Login-form-background.php:541
522
+ msgid "No"
523
+ msgstr "Nie"
524
+
525
  #: includes/design/text_and_color.php:259
526
  msgid "Link Shadow Color"
527
  msgstr "Kolor cieni dla linków"
530
  msgid "Headline Font Style"
531
  msgstr "Styl czcionki nagłówka"
532
 
533
+ #: includes/design/text_and_color.php:336
534
  msgid "Input Font Style"
535
  msgstr "Styl czcionki pola input"
536
 
537
+ #: includes/design/text_and_color.php:395
538
  msgid "Link Font Style"
539
  msgstr "Styl czcionki dla linków"
540
 
541
+ #: includes/design/text_and_color.php:455
542
  msgid "Button Font Style"
543
  msgstr "Styl czcionki przycisku"
544
 
545
+ #: includes/design/text_and_color.php:514
546
  msgid "Enable Input Box Icon?"
547
  msgstr "Włączyć ikonkę pola input ?"
548
 
549
+ #: includes/design/text_and_color.php:534
550
  msgid "Icon For user Input Box"
551
  msgstr "Ikona dla pola input Użytkownik"
552
 
553
+ #: includes/design/text_and_color.php:555
554
  msgid "Icon For Password Input Box"
555
  msgstr "Ikona dla pola input Hasło"
556
 
557
+ #: includes/design/text_and_color.php:583
558
+ #: includes/design/text_and_color.php:598
559
  msgid "Text and Color"
560
  msgstr "Tekst i kolor"
561
 
562
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:14
563
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:44
564
+ #, fuzzy
565
+ #| msgid "Float Settings"
566
+ msgid "Google Captcha Settings"
567
+ msgstr "Ustawienia pływaka"
568
+
569
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:55
570
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:60
571
+ msgid "Site Key"
572
+ msgstr ""
573
+
574
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:64
575
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:69
576
+ msgid "Secret Key"
577
+ msgstr ""
578
+
579
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:74
580
+ msgid "Captcha Display"
581
+ msgstr ""
582
+
583
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:90
584
+ msgid "Captcha Theme"
585
+ msgstr ""
586
+
587
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:96
588
+ #, fuzzy
589
+ #| msgid "Right"
590
+ msgid "Light"
591
+ msgstr "Prawa"
592
+
593
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:99
594
+ msgid "Dark"
595
+ msgstr ""
596
+
597
  #: includes/help/help.php:28
598
  msgid "View Support Docs or Open a Ticket"
599
  msgstr "Przeglądać faq albo wyślij zgłoszenie"
600
 
601
+ #: includes/help/help.php:38 includes/help/rate.php:39
 
602
  msgid "Rate Us"
603
  msgstr "Oceń Nas"
604
 
641
  msgid "here is solution"
642
  msgstr "tutaj jest rozwiązanie"
643
 
644
+ #: includes/help/rate.php:15
645
+ msgid "Rate & Donate Us"
646
+ msgstr ""
647
+
648
  #: includes/help/rate.php:29
649
  msgid ""
650
  "We need your feedback for improve our plugin functionality on WordPress. So, "
686
  msgid "Import"
687
  msgstr ""
688
 
689
+ #: includes/login-form-setting/Login-form-background.php:191
690
+ msgid "Login Settings"
691
+ msgstr "Ustawienia logowania"
692
+
693
+ #: includes/login-form-setting/Login-form-background.php:204
694
+ msgid "Login Form Position"
695
+ msgstr "Pozycja formatki logowania"
696
+
697
+ #: includes/login-form-setting/Login-form-background.php:210
698
+ msgid "Default"
699
+ msgstr "Domyślne"
700
+
701
+ #: includes/login-form-setting/Login-form-background.php:211
702
+ msgid "Floating"
703
+ msgstr "Pływający"
704
+
705
+ #: includes/login-form-setting/Login-form-background.php:212
706
+ msgid "Floating With Customization"
707
+ msgstr "Floating z dostosowaniem"
708
+
709
+ #: includes/login-form-setting/Login-form-background.php:223
710
+ msgid "Float Settings"
711
+ msgstr "Ustawienia pływaka"
712
+
713
+ #: includes/login-form-setting/Login-form-background.php:229
714
+ msgid "Left"
715
+ msgstr "Lewa"
716
+
717
+ #: includes/login-form-setting/Login-form-background.php:232
718
+ msgid "Center"
719
+ msgstr "Środek"
720
+
721
+ #: includes/login-form-setting/Login-form-background.php:235
722
+ msgid "Right"
723
+ msgstr "Prawa"
724
+
725
+ #: includes/login-form-setting/Login-form-background.php:245
726
+ msgid "Floating With Customization Settings"
727
+ msgstr "Pływający + dostosuj"
728
+
729
+ #: includes/login-form-setting/Login-form-background.php:266
730
+ msgid "Note: This form position setting will be not responsive."
731
+ msgstr "Uwaga: To ustawienie pozycji formatki nie będzie responsywne."
732
+
733
+ #: includes/login-form-setting/Login-form-background.php:282
734
+ msgid "Select background"
735
+ msgstr "Wybierz tło"
736
+
737
+ #: includes/login-form-setting/Login-form-background.php:315
738
+ msgid "Login Form Opacity"
739
+ msgstr "Pozycja formatki logowania"
740
+
741
+ #: includes/login-form-setting/Login-form-background.php:355
742
+ #: includes/settings/page-settings.php:78
743
+ msgid "Login Background Image"
744
+ msgstr "Obrazek jak tło formatki logowania"
745
+
746
+ #: includes/login-form-setting/Login-form-background.php:422
747
+ msgid "Background Effect"
748
+ msgstr "Efekty tła"
749
+
750
+ #: includes/login-form-setting/Login-form-background.php:428
751
+ msgid "Select overlay effect"
752
+ msgstr "Wybierz efekt"
753
+
754
+ #: includes/login-form-setting/Login-form-background.php:429
755
+ msgid "No Overlay Effect"
756
+ msgstr "Bez efektu"
757
+
758
+ #: includes/login-form-setting/Login-form-background.php:430
759
+ msgid "Overlay Effect 1"
760
+ msgstr "Efekt 1"
761
+
762
+ #: includes/login-form-setting/Login-form-background.php:431
763
+ msgid "Overlay Effect 2"
764
+ msgstr "Efekt 2"
765
+
766
+ #: includes/login-form-setting/Login-form-background.php:432
767
+ msgid "Overlay Effect 3"
768
+ msgstr "Efekt 3"
769
+
770
+ #: includes/login-form-setting/Login-form-background.php:445
771
+ msgid "Login Form Width"
772
+ msgstr "Szerokość formularza logowania"
773
+
774
+ #: includes/login-form-setting/Login-form-background.php:462
775
+ msgid "Border Color"
776
+ msgstr "Kolor ramki"
777
+
778
+ #: includes/login-form-setting/Login-form-background.php:477
779
+ msgid "Border Radius"
780
+ msgstr "Zaokrąglenie ramki"
781
+
782
+ #: includes/login-form-setting/Login-form-background.php:494
783
+ msgid "Border Style"
784
+ msgstr "Styl Ramki"
785
+
786
+ #: includes/login-form-setting/Login-form-background.php:500
787
+ msgid "None"
788
+ msgstr "Brak"
789
+
790
+ #: includes/login-form-setting/Login-form-background.php:501
791
+ msgid "Solid"
792
+ msgstr "Mocny"
793
+
794
+ #: includes/login-form-setting/Login-form-background.php:502
795
+ msgid "Dotted"
796
+ msgstr "Kropkowany"
797
+
798
+ #: includes/login-form-setting/Login-form-background.php:503
799
+ msgid "Dashed"
800
+ msgstr "Dashed"
801
+
802
+ #: includes/login-form-setting/Login-form-background.php:504
803
+ msgid "Double"
804
+ msgstr "Podwójny"
805
+
806
+ #: includes/login-form-setting/Login-form-background.php:515
807
+ msgid "Border Thickness"
808
+ msgstr "Grubość ramki"
809
+
810
+ #: includes/login-form-setting/Login-form-background.php:532
811
+ msgid "Enable Form Shadow?"
812
+ msgstr "Włączyc cień?"
813
+
814
+ #: includes/login-form-setting/Login-form-background.php:552
815
+ msgid "Form Shadow Color"
816
+ msgstr "Kolor cieniowania"
817
+
818
+ #: includes/login-form-setting/Login-form-background.php:567
819
+ msgid "Redirect Users After Login (Not Work For Admin)"
820
+ msgstr ""
821
+
822
+ #: includes/login-form-setting/Login-form-background.php:572
823
+ msgid "Redirect URL"
824
+ msgstr ""
825
+
826
+ #: includes/login-form-setting/Login-form-background.php:573
827
+ msgid ""
828
+ "Enter the URL to redirect users after login, Setting will not work for an "
829
+ "administrator."
830
+ msgstr ""
831
+
832
+ #: includes/login-form-setting/Login-form-background.php:585
833
+ msgid "Display Note To User Above Login Form"
834
+ msgstr ""
835
+
836
+ #: includes/login-form-setting/Login-form-background.php:602
837
+ #, fuzzy
838
+ #| msgid "Headline Font size"
839
+ msgid "Message Font Size"
840
+ msgstr "Rozmiar czcionki nagłówka"
841
+
842
+ #: includes/login-form-setting/Login-form-background.php:620
843
+ #, fuzzy
844
+ #| msgid "Headline Font Color"
845
+ msgid "Message Font Color"
846
+ msgstr "Kolor czcionki nagłówka"
847
+
848
+ #: includes/login-form-setting/Login-form-background.php:637
849
+ msgid "Tagline Message Display Below Login Form"
850
+ msgstr ""
851
+
852
+ #: includes/login-form-setting/Login-form-background.php:654
853
+ #: includes/login-form-setting/Login-form-background.php:659
854
+ msgid "Custom CSS"
855
+ msgstr "Własny CSS"
856
+
857
+ #: includes/login-form-setting/Login-form-background.php:661
858
+ msgid "Enter any custom css you want to apply on login panel."
859
+ msgstr ""
860
+ "Wpisz dowolny preferowany przez ciebie styl css aby zastosować go dla panelu "
861
+ "logowania."
862
+
863
+ #: includes/login-form-setting/Login-form-background.php:662
864
+ msgid "Note: Please Do Not Use"
865
+ msgstr "Notatka : Proszę nie używać"
866
+
867
+ #: includes/login-form-setting/Login-form-background.php:662
868
+ msgid "Tag With Custom CSS"
869
+ msgstr "Tag z niestandardowym CSS"
870
+
871
+ #: includes/login-form-setting/Login-form-background.php:679
872
+ #: includes/login-form-setting/Login-form-background.php:693
873
+ msgid "Login"
874
+ msgstr "Nazwa użytkownika (login)"
875
+
876
  #. translators: 1: The rating
877
  #: includes/recommendations/recommendations.php:75
878
  #, php-format
880
  msgstr "%s ocen"
881
 
882
  #: includes/settings/page-settings.php:62
883
+ #, fuzzy
884
+ #| msgid "Logo "
885
+ msgid "Logo Image"
886
+ msgstr "Logo "
887
 
888
  #: includes/settings/page-settings.php:98
889
+ #, fuzzy
890
+ #| msgid "Logo Width"
891
+ msgid "Logo Image Width"
892
  msgstr "Szerokość logo"
893
 
894
  #: includes/settings/page-settings.php:115
895
+ #, fuzzy
896
+ #| msgid "Logo Height"
897
+ msgid "Logo Image Height"
898
  msgstr "Wysokość logo"
899
 
900
  #: includes/settings/page-settings.php:132
901
  #: includes/settings/page-settings.php:137
902
+ #, fuzzy
903
+ #| msgid "Logo URL"
904
+ msgid "Logo Link URL"
905
  msgstr "Logo URL"
906
 
907
  #: includes/settings/page-settings.php:147
908
  #: includes/settings/page-settings.php:152
909
+ #, fuzzy
910
+ #| msgid "Logo URL Title"
911
+ msgid "Logo Image Title"
912
  msgstr "Tytuł Logo URL"
913
 
914
+ #: includes/settings/page-settings.php:168
915
+ #: includes/settings/page-settings.php:182
916
+ msgid "Logo"
917
+ msgstr "Logo"
918
+
919
  #: includes/social/social.php:33
920
  msgid "Enable Social Icons"
921
  msgstr "Włącz ikony społecznościowe"
1025
  msgstr "Tumblr"
1026
 
1027
  #: includes/social/social.php:172
 
 
 
 
1028
  msgid "Skype"
1029
  msgstr "Skype"
1030
 
1031
+ #: includes/social/social.php:173
1032
  msgid "Instagram"
1033
  msgstr "Instagram"
1034
 
1035
+ #: includes/social/social.php:174
1036
  msgid "Telegram"
1037
  msgstr ""
1038
 
1039
+ #: includes/social/social.php:175
1040
  msgid "Whatsapp"
1041
  msgstr ""
1042
 
1043
+ #: includes/social/social.php:192 includes/social/social.php:206
1044
  msgid "Social"
1045
  msgstr "Social"
1046
 
1047
+ #~ msgid "User Name"
1048
+ #~ msgstr "Nazwa użytkownika"
1049
+
1050
+ #~ msgid "Export / Import Your Data"
1051
+ #~ msgstr "Eksportuj/Importuj twoje ustawienia"
1052
+
1053
+ #~ msgid "Please rate us"
1054
+ #~ msgstr "Oceń nas"
1055
+
1056
+ #~ msgid "VKontakte"
1057
+ #~ msgstr "VKontakte"
1058
+
1059
  #~ msgid "preview"
1060
  #~ msgstr "podgląd"
1061
 
1098
  #~ msgid "Dashboard "
1099
  #~ msgstr "Kokpit "
1100
 
 
 
 
1101
  #~ msgid "Contact Us:"
1102
  #~ msgstr "Napisz do nas :"
languages/admin-custom-login-pt_BR.mo CHANGED
Binary file
languages/admin-custom-login-pt_BR.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2018-01-31 15:34+0530\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
@@ -9,374 +9,44 @@ msgstr ""
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=ISO-8859-1\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.0.6\n"
13
  "X-Poedit-Basepath: .\n"
14
  "X-Poedit-KeywordsList: _e;__\n"
15
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin-custom-login.php:157 admin-custom-login.php:163
19
- msgid "User Name"
20
- msgstr "Nome de Usuário"
 
 
 
 
 
 
21
 
22
- #: admin-custom-login.php:158 admin-custom-login.php:164
23
  msgid "Password"
24
  msgstr "Senha"
25
 
26
- #: admin-custom-login.php:174
 
 
 
 
 
 
27
  msgid "Find Us On Social Media"
28
  msgstr "Encontre-nos nas Mídias Sociais"
29
 
30
- #: admin-custom-login.php:429
31
  msgid "Please upload a valid .json file"
32
  msgstr "Por favor, envie um arquivo .json válido"
33
 
34
- #: admin-custom-login.php:435
35
  msgid "Please upload a file to import"
36
  msgstr ""
37
 
38
- #: includes/Login-form-setting/Login-form-background.php:175
39
- msgid "Login Settings"
40
- msgstr "Configurações de Logotipo"
41
-
42
- #: includes/Login-form-setting/Login-form-background.php:188
43
- msgid "Login Form Position"
44
- msgstr "Largura do Formulário de Login"
45
-
46
- #: includes/Login-form-setting/Login-form-background.php:194
47
- msgid "Default"
48
- msgstr "Padrão"
49
-
50
- #: includes/Login-form-setting/Login-form-background.php:195
51
- msgid "Floating"
52
- msgstr "Flutuando"
53
-
54
- #: includes/Login-form-setting/Login-form-background.php:196
55
- msgid "Floating With Customization"
56
- msgstr "Etiqueta com CSS Personalizado"
57
-
58
- #: includes/Login-form-setting/Login-form-background.php:207
59
- msgid "Float Settings"
60
- msgstr "Configurações de Fonte"
61
-
62
- #: includes/Login-form-setting/Login-form-background.php:213
63
- msgid "Left"
64
- msgstr "Esquerda Topo"
65
-
66
- #: includes/Login-form-setting/Login-form-background.php:216
67
- msgid "Center"
68
- msgstr "Centro Topo"
69
-
70
- #: includes/Login-form-setting/Login-form-background.php:219
71
- msgid "Right"
72
- msgstr "Direita"
73
-
74
- #: includes/Login-form-setting/Login-form-background.php:229
75
- msgid "Floating With Customization Settings"
76
- msgstr "Flutuando com Configurações de Personalização"
77
-
78
- #: includes/Login-form-setting/Login-form-background.php:250
79
- msgid "Note: This form position setting will be not responsive."
80
- msgstr ""
81
-
82
- #: includes/Login-form-setting/Login-form-background.php:260
83
- #: includes/design/background.php:103 includes/design/background.php:110
84
- msgid "Select Background"
85
- msgstr "Escolha um fundo"
86
-
87
- #: includes/Login-form-setting/Login-form-background.php:266
88
- msgid "Select background"
89
- msgstr "Escolha um fundo"
90
-
91
- #: includes/Login-form-setting/Login-form-background.php:267
92
- #: includes/design/background.php:111
93
- msgid "Static Background Color"
94
- msgstr "Cor de fundo estática"
95
-
96
- #: includes/Login-form-setting/Login-form-background.php:268
97
- #: includes/design/background.php:112
98
- msgid "Static Background Image"
99
- msgstr "Imagem de Fundo"
100
-
101
- #: includes/Login-form-setting/Login-form-background.php:284
102
- #: includes/design/background.php:131
103
- msgid "Background Color"
104
- msgstr "Cor de Fundo"
105
-
106
- #: includes/Login-form-setting/Login-form-background.php:299
107
- msgid "Login Form Opacity"
108
- msgstr "Largura do Formulário de Login"
109
-
110
- #: includes/Login-form-setting/Login-form-background.php:321
111
- #: includes/design/background.php:153 includes/design/background.php:172
112
- msgid "Background Image"
113
- msgstr "Imagem de Fundo"
114
-
115
- #: includes/Login-form-setting/Login-form-background.php:326
116
- #: includes/design/background.php:158 includes/settings/page-settings.php:67
117
- msgid "No media selected!"
118
- msgstr "Nenhuma mídia selecionada!"
119
-
120
- #: includes/Login-form-setting/Login-form-background.php:327
121
- #: includes/design/background.php:160 includes/settings/page-settings.php:68
122
- msgid "Upload"
123
- msgstr "Enviar"
124
-
125
- #: includes/Login-form-setting/Login-form-background.php:329
126
- #: includes/design/background.php:162 includes/settings/page-settings.php:70
127
- msgid "Preview"
128
- msgstr "Pré-visualizar"
129
-
130
- #: includes/Login-form-setting/Login-form-background.php:331
131
- #: includes/design/background.php:164
132
- msgid "Remove"
133
- msgstr "Remover"
134
-
135
- #: includes/Login-form-setting/Login-form-background.php:339
136
- #: includes/settings/page-settings.php:78
137
- msgid "Login Background Image"
138
- msgstr "Imagem de Fundo"
139
-
140
- #: includes/Login-form-setting/Login-form-background.php:345
141
- #: includes/Login-form-setting/Login-form-background.php:592
142
- #: includes/Login-form-setting/Login-form-background.php:606
143
- #: includes/dashboard/dashboard.php:70 includes/dashboard/dashboard.php:84
144
- #: includes/design/background.php:180 includes/design/background.php:368
145
- #: includes/design/background.php:383 includes/design/text_and_color.php:2594
146
- #: includes/design/text_and_color.php:2609
147
- #: includes/settings/page-settings.php:84
148
- #: includes/settings/page-settings.php:168
149
- #: includes/settings/page-settings.php:182 includes/social/social.php:193
150
- #: includes/social/social.php:207
151
- msgid "Close"
152
- msgstr "Fechar"
153
-
154
- #: includes/Login-form-setting/Login-form-background.php:360
155
- #: includes/design/background.php:213
156
- msgid "Background Repeat"
157
- msgstr "Repetir Fundo"
158
-
159
- #: includes/Login-form-setting/Login-form-background.php:366
160
- #: includes/design/background.php:219
161
- msgid "No Repeat"
162
- msgstr "Não Repetir"
163
-
164
- #: includes/Login-form-setting/Login-form-background.php:367
165
- #: includes/design/background.php:220
166
- msgid "Repeat"
167
- msgstr "Repetir"
168
-
169
- #: includes/Login-form-setting/Login-form-background.php:368
170
- #: includes/design/background.php:221
171
- msgid "Repeat Horizontally"
172
- msgstr "Repetir Horizontalmente"
173
-
174
- #: includes/Login-form-setting/Login-form-background.php:369
175
- #: includes/design/background.php:222
176
- msgid "Repeat Vertically"
177
- msgstr "Repetir Verticalmente"
178
-
179
- #: includes/Login-form-setting/Login-form-background.php:380
180
- #: includes/design/background.php:234
181
- msgid "Background Position"
182
- msgstr "Posição do Fundo"
183
-
184
- #: includes/Login-form-setting/Login-form-background.php:386
185
- #: includes/design/background.php:240
186
- msgid "Left Top"
187
- msgstr "Esquerda Topo"
188
-
189
- #: includes/Login-form-setting/Login-form-background.php:387
190
- #: includes/design/background.php:241
191
- msgid "Left Center"
192
- msgstr "Esquerda Centro"
193
-
194
- #: includes/Login-form-setting/Login-form-background.php:388
195
- #: includes/design/background.php:242
196
- msgid "Left Bottom"
197
- msgstr "Esquerda Inferior"
198
-
199
- #: includes/Login-form-setting/Login-form-background.php:389
200
- #: includes/design/background.php:243
201
- msgid "Right Top"
202
- msgstr "Direita Topo"
203
-
204
- #: includes/Login-form-setting/Login-form-background.php:390
205
- #: includes/design/background.php:244
206
- msgid "Right Center"
207
- msgstr "Direita Centro"
208
-
209
- #: includes/Login-form-setting/Login-form-background.php:391
210
- #: includes/design/background.php:245
211
- msgid "Right Bottom"
212
- msgstr "Direita Inferior"
213
-
214
- #: includes/Login-form-setting/Login-form-background.php:392
215
- #: includes/design/background.php:246
216
- msgid "Center Top"
217
- msgstr "Centro Topo"
218
-
219
- #: includes/Login-form-setting/Login-form-background.php:393
220
- #: includes/design/background.php:247
221
- msgid "Center Center"
222
- msgstr "Centro Centro"
223
-
224
- #: includes/Login-form-setting/Login-form-background.php:394
225
- #: includes/design/background.php:248
226
- msgid "Center Bottom"
227
- msgstr "Centro Inferior"
228
-
229
- #: includes/Login-form-setting/Login-form-background.php:406
230
- msgid "Background Effect"
231
- msgstr "Efeito de Fundo"
232
-
233
- #: includes/Login-form-setting/Login-form-background.php:412
234
- msgid "Select overlay effect"
235
- msgstr "Selecione efeito de sobreposição"
236
-
237
- #: includes/Login-form-setting/Login-form-background.php:413
238
- msgid "No Overlay Effect"
239
- msgstr "Sem Efeito de Sobreposição"
240
-
241
- #: includes/Login-form-setting/Login-form-background.php:414
242
- msgid "Overlay Effect 1"
243
- msgstr "Efeito de Sobreposição 1"
244
-
245
- #: includes/Login-form-setting/Login-form-background.php:415
246
- msgid "Overlay Effect 2"
247
- msgstr "Efeito de Sobreposição 2"
248
-
249
- #: includes/Login-form-setting/Login-form-background.php:416
250
- msgid "Overlay Effect 3"
251
- msgstr "Efeito de Sobreposição 3"
252
-
253
- #: includes/Login-form-setting/Login-form-background.php:429
254
- msgid "Login Form Width"
255
- msgstr "Largura do Formulário de Login"
256
-
257
- #: includes/Login-form-setting/Login-form-background.php:446
258
- msgid "Border Color"
259
- msgstr "Cor da Borda"
260
-
261
- #: includes/Login-form-setting/Login-form-background.php:461
262
- msgid "Border Radius"
263
- msgstr "Borda Arredondada"
264
-
265
- #: includes/Login-form-setting/Login-form-background.php:478
266
- msgid "Border Style"
267
- msgstr "Estilo da Borda"
268
-
269
- #: includes/Login-form-setting/Login-form-background.php:484
270
- msgid "None"
271
- msgstr "Nenhum"
272
-
273
- #: includes/Login-form-setting/Login-form-background.php:485
274
- msgid "Solid"
275
- msgstr "Sólida"
276
-
277
- #: includes/Login-form-setting/Login-form-background.php:486
278
- msgid "Dotted"
279
- msgstr "Pontilhada"
280
-
281
- #: includes/Login-form-setting/Login-form-background.php:487
282
- msgid "Dashed"
283
- msgstr "Tracejada"
284
-
285
- #: includes/Login-form-setting/Login-form-background.php:488
286
- msgid "Double"
287
- msgstr "Dupla"
288
-
289
- #: includes/Login-form-setting/Login-form-background.php:499
290
- msgid "Border Thickness"
291
- msgstr "Espessura da Borda"
292
-
293
- #: includes/Login-form-setting/Login-form-background.php:516
294
- msgid "Enable Form Shadow?"
295
- msgstr "Habilitar sobra do formulário?"
296
-
297
- #: includes/Login-form-setting/Login-form-background.php:522
298
- #: includes/design/background.php:201 includes/design/text_and_color.php:244
299
- #: includes/design/text_and_color.php:2531
300
- msgid "Yes"
301
- msgstr "Sim"
302
-
303
- #: includes/Login-form-setting/Login-form-background.php:525
304
- #: includes/design/text_and_color.php:247
305
- #: includes/design/text_and_color.php:2534
306
- msgid "No"
307
- msgstr "Não"
308
-
309
- #: includes/Login-form-setting/Login-form-background.php:536
310
- msgid "Form Shadow Color"
311
- msgstr "Cor da Sombra do Formulário"
312
-
313
- #: includes/Login-form-setting/Login-form-background.php:551
314
- msgid "Redirect Users After Login (Not Work For Admin)"
315
- msgstr ""
316
- "Redirecionar usuários após o login (não funciona para o administrador)"
317
-
318
- #: includes/Login-form-setting/Login-form-background.php:556
319
- msgid "Redirect URL"
320
- msgstr ""
321
-
322
- #: includes/Login-form-setting/Login-form-background.php:557
323
- msgid ""
324
- "Enter the URL to redirect users after login, Setting will not work for an "
325
- "administrator."
326
- msgstr ""
327
-
328
- #: includes/Login-form-setting/Login-form-background.php:567
329
- #: includes/Login-form-setting/Login-form-background.php:572
330
- msgid "Custom CSS"
331
- msgstr "Personalizar CSS"
332
-
333
- #: includes/Login-form-setting/Login-form-background.php:574
334
- msgid "Enter any custom css you want to apply on login panel."
335
- msgstr ""
336
- "Digite qualquer css personalizado que você deseja aplicar no painel de "
337
- "entrada."
338
-
339
- #: includes/Login-form-setting/Login-form-background.php:575
340
- msgid "Note: Please Do Not Use"
341
- msgstr "Nota: Por favor não usar"
342
-
343
- #: includes/Login-form-setting/Login-form-background.php:575
344
- msgid "Tag With Custom CSS"
345
- msgstr "Etiqueta com CSS Personalizado"
346
-
347
- #: includes/Login-form-setting/Login-form-background.php:592
348
- #: includes/Login-form-setting/Login-form-background.php:606
349
- msgid "Login"
350
- msgstr "Entrar"
351
-
352
- #: includes/Login-form-setting/Login-form-background.php:592
353
- #: includes/dashboard/dashboard.php:70 includes/design/background.php:368
354
- #: includes/design/text_and_color.php:2594
355
- #: includes/settings/page-settings.php:168 includes/social/social.php:193
356
- msgid "Setting Save Successfully"
357
- msgstr "Configurações Salvas com Sucesso"
358
-
359
- #: includes/Login-form-setting/Login-form-background.php:606
360
- #: includes/dashboard/dashboard.php:84 includes/design/background.php:383
361
- #: includes/design/text_and_color.php:2609
362
- #: includes/settings/page-settings.php:182 includes/social/social.php:207
363
- msgid "Setting Reset Successfully"
364
- msgstr "Configurações Restauradas com Sucesso"
365
-
366
- #: includes/Login-form-setting/Login-form-background.php:613
367
- #: includes/dashboard/dashboard.php:91 includes/design/background.php:391
368
- #: includes/design/text_and_color.php:2617
369
- #: includes/settings/page-settings.php:189 includes/social/social.php:214
370
- msgid "Save Changes"
371
- msgstr "Salvar Configurações"
372
-
373
- #: includes/Login-form-setting/Login-form-background.php:616
374
- #: includes/dashboard/dashboard.php:94 includes/design/background.php:394
375
- #: includes/design/text_and_color.php:2620
376
- #: includes/settings/page-settings.php:192 includes/social/social.php:217
377
- msgid "Reset Default"
378
- msgstr "Restaurar Padrões"
379
-
380
  #: includes/content.php:28
381
  msgid "Admin Custom Login"
382
  msgstr "Personalizar Login de Administrador"
@@ -393,85 +63,127 @@ msgstr "Weblizar"
393
  msgid "Show Us Some Love (Rate Us)"
394
  msgstr "Mostre-nos Algum Amor (Avalie-nos)"
395
 
396
- #: includes/content.php:85 includes/dashboard/dashboard.php:70
397
- #: includes/dashboard/dashboard.php:84
398
  msgid "Dashboard"
399
  msgstr "Painel de Controle"
400
 
401
- #: includes/content.php:86
402
- msgid "Application overview"
 
 
403
  msgstr "Resumo de aplicações"
404
 
405
- #: includes/content.php:95
406
  msgid "Background Design"
407
  msgstr "Design de Fundo"
408
 
409
- #: includes/content.php:96
410
- msgid "Modify Background design here"
 
 
411
  msgstr "Modificar o design do fundo aqui"
412
 
413
- #: includes/content.php:106
414
  msgid "Login form Setting"
415
  msgstr "Configurações do formulário de Login"
416
 
417
- #: includes/content.php:107
418
- msgid "Modify Login design here"
 
 
419
  msgstr "Modificar design do Login aqui"
420
 
421
- #: includes/content.php:117
422
  msgid "Font Setting"
423
  msgstr "Configurações de Fonte"
424
 
425
- #: includes/content.php:118
426
- msgid "Modify Login Form Style here"
 
 
427
  msgstr "Modificar Estilo do Formulário de Login aqui"
428
 
429
- #: includes/content.php:128 includes/settings/page-settings.php:50
430
  msgid "Logo Settings"
431
  msgstr "Configurações de Logotipo"
432
 
433
- #: includes/content.php:129
434
- msgid "Customize Logo Settings here"
 
 
435
  msgstr "Personalize as Configurações de Logotipo aqui"
436
 
437
- #: includes/content.php:140 includes/social/social.php:21
438
  msgid "Social Settings"
439
  msgstr "Configurações Sociais"
440
 
441
- #: includes/content.php:141
442
- msgid "Connect with your social profile"
 
 
443
  msgstr "Conectar com seu perfil social"
444
 
445
- #: includes/content.php:151
 
 
 
 
 
 
 
 
 
 
 
 
 
 
446
  msgid "Export / Import"
447
  msgstr "Exportar / Importar"
448
 
449
- #: includes/content.php:152
450
- msgid "Export / Import Your Data"
451
- msgstr "Exportar / Importar Seus Dados"
452
 
453
- #: includes/content.php:161
454
  msgid "Recommendations"
455
  msgstr "Recomendações"
456
 
457
- #: includes/content.php:162
458
- msgid "Get More Free Useful Plugins"
 
 
459
  msgstr "Obter Mais Plugins Úteis Gratuitos"
460
 
461
- #: includes/content.php:171 includes/help/help.php:15
462
  msgid "Help And Support"
463
  msgstr "Ajuda e Suporte"
464
 
465
- #: includes/content.php:172
466
- msgid "Ask your query"
 
 
467
  msgstr "Faça sua consulta"
468
 
469
- #: includes/content.php:181
470
- msgid "Please rate us"
471
- msgstr "Por favor, classifique-nos"
 
 
 
 
 
 
 
 
 
 
472
 
473
- #: includes/content.php:182
474
- msgid "If you like us"
 
 
475
  msgstr "Se você gosta de nós"
476
 
477
  #: includes/dashboard/dashboard.php:15
@@ -483,10 +195,12 @@ msgid "Admin Custom Login Status"
483
  msgstr "Estado do Admin Custom Login"
484
 
485
  #: includes/dashboard/dashboard.php:33
 
486
  msgid "Disable"
487
  msgstr "Desabilitado"
488
 
489
  #: includes/dashboard/dashboard.php:36
 
490
  msgid "Enable"
491
  msgstr "Habilitado"
492
 
@@ -499,21 +213,204 @@ msgid "Copy below link and open in another browser where you are not logged in"
499
  msgstr ""
500
  "Copiar link abaixo e abrir em outro navegador onde você não está conectado"
501
 
502
- #: includes/design/background.php:91
503
- msgid "Background Settings"
504
- msgstr "Configurações de Fundo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
505
 
506
- #: includes/design/background.php:109
507
- msgid "No Background Selected"
508
- msgstr "Nenhum fundo Selecionado"
 
509
 
510
- #: includes/design/background.php:113
511
- msgid "Background SlideShow"
512
- msgstr "Fundo em SlideShow"
 
513
 
514
- #: includes/design/background.php:196
515
- msgid "Cover or Strech"
516
- msgstr "Cobrir ou Esticar"
 
 
 
 
 
 
517
 
518
  #: includes/design/background.php:260
519
  msgid "Background Attachment"
@@ -623,6 +520,12 @@ msgstr "Tamanho da Fonte do Botão"
623
  msgid "Enable Link shadow?"
624
  msgstr "Habilitar sombra nos Links?"
625
 
 
 
 
 
 
 
626
  #: includes/design/text_and_color.php:259
627
  msgid "Link Shadow Color"
628
  msgstr "Cor da Sombra do Link"
@@ -631,41 +534,81 @@ msgstr "Cor da Sombra do Link"
631
  msgid "Headline Font Style"
632
  msgstr "Estilo da Fonte do Título"
633
 
634
- #: includes/design/text_and_color.php:837
635
  msgid "Input Font Style"
636
  msgstr "Estilo da Fonte de Entrada"
637
 
638
- #: includes/design/text_and_color.php:1399
639
  msgid "Link Font Style"
640
  msgstr "Estilo da Fonte do Link"
641
 
642
- #: includes/design/text_and_color.php:1962
643
  msgid "Button Font Style"
644
  msgstr "Estilo da Fonte do Botão"
645
 
646
- #: includes/design/text_and_color.php:2525
647
  msgid "Enable Input Box Icon?"
648
  msgstr "Habilitar Ícone na Caixa de Entrada?"
649
 
650
- #: includes/design/text_and_color.php:2545
651
  msgid "Icon For user Input Box"
652
  msgstr "Ícone para Usuário na Caixa de Entrada"
653
 
654
- #: includes/design/text_and_color.php:2566
655
  msgid "Icon For Password Input Box"
656
  msgstr "Ícone para Senha na Caixa de Entrada"
657
 
658
- #: includes/design/text_and_color.php:2594
659
- #: includes/design/text_and_color.php:2609
660
  msgid "Text and Color"
661
  msgstr "Texto e Cores"
662
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
663
  #: includes/help/help.php:28
664
  msgid "View Support Docs or Open a Ticket"
665
  msgstr "Veja os Documentos de Apoio ou Abra um Ticket"
666
 
667
- #: includes/help/help.php:38 includes/help/rate.php:15
668
- #: includes/help/rate.php:39
669
  msgid "Rate Us"
670
  msgstr "Classifique-nos"
671
 
@@ -710,6 +653,12 @@ msgstr "Pergunta: Como converter o Plugin para Meu Idioma?"
710
  msgid "here is solution"
711
  msgstr "aqui está a solução"
712
 
 
 
 
 
 
 
713
  #: includes/help/rate.php:29
714
  msgid ""
715
  "We need your feedback for improve our plugin functionality on WordPress. So, "
@@ -752,6 +701,194 @@ msgstr ""
752
  msgid "Import"
753
  msgstr "Ajuda e Suporte"
754
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  #. translators: 1: The rating
756
  #: includes/recommendations/recommendations.php:75
757
  #, php-format
@@ -759,28 +896,41 @@ msgid "%s rating"
759
  msgstr "classificação %s"
760
 
761
  #: includes/settings/page-settings.php:62
762
- #: includes/settings/page-settings.php:168
763
- #: includes/settings/page-settings.php:182
764
- msgid "Logo"
765
- msgstr "Logotipo"
766
 
767
  #: includes/settings/page-settings.php:98
768
- msgid "Logo Width"
769
- msgstr "Largura do Logotipo"
 
 
770
 
771
  #: includes/settings/page-settings.php:115
772
- msgid "Logo Height"
773
- msgstr "Altura do Logotipo"
 
 
774
 
775
  #: includes/settings/page-settings.php:132
776
  #: includes/settings/page-settings.php:137
777
- msgid "Logo URL"
 
 
778
  msgstr "URL do Logotipo"
779
 
780
  #: includes/settings/page-settings.php:147
781
  #: includes/settings/page-settings.php:152
782
- msgid "Logo URL Title"
783
- msgstr "Título da URL do Logotipo"
 
 
 
 
 
 
 
784
 
785
  #: includes/social/social.php:33
786
  msgid "Enable Social Icons"
@@ -891,29 +1041,46 @@ msgid "Tumblr"
891
  msgstr "Tumblr"
892
 
893
  #: includes/social/social.php:172
894
- msgid "VKontakte"
895
- msgstr "VKontakte"
896
-
897
- #: includes/social/social.php:173
898
  msgid "Skype"
899
  msgstr "Skype"
900
 
901
- #: includes/social/social.php:174
902
  msgid "Instagram"
903
  msgstr "Instagram"
904
 
905
- #: includes/social/social.php:175
906
  msgid "Telegram"
907
  msgstr "Telegram"
908
 
909
- #: includes/social/social.php:176
910
  msgid "Whatsapp"
911
  msgstr "Whatsapp"
912
 
913
- #: includes/social/social.php:193 includes/social/social.php:207
914
  msgid "Social"
915
  msgstr "Social"
916
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
917
  #, fuzzy
918
  #~| msgid "Select Background"
919
  #~ msgid "Select Nackground"
@@ -1479,11 +1646,6 @@ msgstr "Social"
1479
  #~ msgid "Please Enter Password"
1480
  #~ msgstr "Por favor, classifique-nos "
1481
 
1482
- #, fuzzy
1483
- #~| msgid "Please rate us "
1484
- #~ msgid "Please Enter Email"
1485
- #~ msgstr "Por favor, classifique-nos "
1486
-
1487
  #, fuzzy
1488
  #~| msgid "None"
1489
  #~ msgid "on"
@@ -1659,11 +1821,6 @@ msgstr "Social"
1659
  #~ msgid "Recommended"
1660
  #~ msgstr "Recomendações"
1661
 
1662
- #, fuzzy
1663
- #~| msgid "Float Settings"
1664
- #~ msgid "Captcha Settings"
1665
- #~ msgstr "Configurações de Flutuação"
1666
-
1667
  #, fuzzy
1668
  #~| msgid "None"
1669
  #~ msgid "one"
@@ -1819,11 +1976,6 @@ msgstr "Social"
1819
  #~ msgid "Facebook App ID"
1820
  #~ msgstr "Facebook"
1821
 
1822
- #, fuzzy
1823
- #~| msgid "Rate Us"
1824
- #~ msgid "Rate Us on "
1825
- #~ msgstr "Classifique-nos"
1826
-
1827
  #, fuzzy
1828
  #~| msgid "Social Settings"
1829
  #~ msgid "Shortcode Settings"
@@ -1923,11 +2075,6 @@ msgstr "Social"
1923
  #~ msgid "Content"
1924
  #~ msgstr "Contate-nos:"
1925
 
1926
- #, fuzzy
1927
- #~| msgid "Float Settings"
1928
- #~ msgid "Google Captcha Settings"
1929
- #~ msgstr "Configurações de Flutuação"
1930
-
1931
  #, fuzzy
1932
  #~| msgid "Login Settings"
1933
  #~ msgid "plugin setting page"
@@ -2138,21 +2285,11 @@ msgstr "Social"
2138
  #~ msgid "Logo Text"
2139
  #~ msgstr "Logotipo "
2140
 
2141
- #, fuzzy
2142
- #~| msgid "Logo "
2143
- #~ msgid "Logo Image"
2144
- #~ msgstr "Logotipo "
2145
-
2146
  #, fuzzy
2147
  #~| msgid "Logo Height"
2148
  #~ msgid "Logo Text "
2149
  #~ msgstr "Altura do Logotipo"
2150
 
2151
- #, fuzzy
2152
- #~| msgid "Logo "
2153
- #~ msgid "Logo Image "
2154
- #~ msgstr "Logotipo "
2155
-
2156
  #, fuzzy
2157
  #~| msgid "Logo Width"
2158
  #~ msgid "Logo Width "
@@ -3757,11 +3894,6 @@ msgstr "Social"
3757
  #~ msgid "Night"
3758
  #~ msgstr "Direita"
3759
 
3760
- #, fuzzy
3761
- #~| msgid "Link Font Size"
3762
- #~ msgid "Change Font Size:"
3763
- #~ msgstr "Tamanho da Fonte do Link"
3764
-
3765
  #, fuzzy
3766
  #~| msgid "Enable Link shadow?"
3767
  #~ msgid "Enable Line Numbers:"
@@ -3962,11 +4094,6 @@ msgstr "Social"
3962
  #~ msgid "SMTP Username"
3963
  #~ msgstr "Nome de Usuário"
3964
 
3965
- #, fuzzy
3966
- #~| msgid "Password"
3967
- #~ msgid "SMTP Password"
3968
- #~ msgstr "Senha"
3969
-
3970
  #, fuzzy
3971
  #~| msgid "Close"
3972
  #~ msgid "Close Shop:"
@@ -4027,11 +4154,6 @@ msgstr "Social"
4027
  #~ msgid "closed"
4028
  #~ msgstr "Fechar"
4029
 
4030
- #, fuzzy
4031
- #~| msgid "More Details"
4032
- #~ msgid "Site Details"
4033
- #~ msgstr "Mais Detalhes"
4034
-
4035
  #, fuzzy
4036
  #~| msgid "Pinterest"
4037
  #~ msgid "Plaintext"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2018-07-26 18:37+0530\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=ISO-8859-1\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.1\n"
13
  "X-Poedit-Basepath: .\n"
14
  "X-Poedit-KeywordsList: _e;__\n"
15
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin-custom-login.php:169
19
+ msgid "Username or Email Address"
20
+ msgstr ""
21
+
22
+ #: admin-custom-login.php:169 admin-custom-login.php:175
23
+ #, fuzzy
24
+ #| msgid "Please rate us "
25
+ msgid "Type Username or Email"
26
+ msgstr "Por favor, classifique-nos "
27
 
28
+ #: admin-custom-login.php:170
29
  msgid "Password"
30
  msgstr "Senha"
31
 
32
+ #: admin-custom-login.php:170 admin-custom-login.php:176
33
+ #, fuzzy
34
+ #| msgid "Password"
35
+ msgid "Type Password"
36
+ msgstr "Senha"
37
+
38
+ #: admin-custom-login.php:193
39
  msgid "Find Us On Social Media"
40
  msgstr "Encontre-nos nas Mídias Sociais"
41
 
42
+ #: admin-custom-login.php:477
43
  msgid "Please upload a valid .json file"
44
  msgstr "Por favor, envie um arquivo .json válido"
45
 
46
+ #: admin-custom-login.php:483
47
  msgid "Please upload a file to import"
48
  msgstr ""
49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  #: includes/content.php:28
51
  msgid "Admin Custom Login"
52
  msgstr "Personalizar Login de Administrador"
63
  msgid "Show Us Some Love (Rate Us)"
64
  msgstr "Mostre-nos Algum Amor (Avalie-nos)"
65
 
66
+ #: includes/content.php:86 includes/dashboard/dashboard.php:92
67
+ #: includes/dashboard/dashboard.php:106
68
  msgid "Dashboard"
69
  msgstr "Painel de Controle"
70
 
71
+ #: includes/content.php:87
72
+ #, fuzzy
73
+ #| msgid "Application overview"
74
+ msgid "application overview"
75
  msgstr "Resumo de aplicações"
76
 
77
+ #: includes/content.php:96
78
  msgid "Background Design"
79
  msgstr "Design de Fundo"
80
 
81
+ #: includes/content.php:97
82
+ #, fuzzy
83
+ #| msgid "Modify Background design here"
84
+ msgid "modify background design here"
85
  msgstr "Modificar o design do fundo aqui"
86
 
87
+ #: includes/content.php:107
88
  msgid "Login form Setting"
89
  msgstr "Configurações do formulário de Login"
90
 
91
+ #: includes/content.php:108
92
+ #, fuzzy
93
+ #| msgid "Modify Login design here"
94
+ msgid "modify login design here"
95
  msgstr "Modificar design do Login aqui"
96
 
97
+ #: includes/content.php:118
98
  msgid "Font Setting"
99
  msgstr "Configurações de Fonte"
100
 
101
+ #: includes/content.php:119
102
+ #, fuzzy
103
+ #| msgid "Modify Login Form Style here"
104
+ msgid "modify login form style here"
105
  msgstr "Modificar Estilo do Formulário de Login aqui"
106
 
107
+ #: includes/content.php:129 includes/settings/page-settings.php:50
108
  msgid "Logo Settings"
109
  msgstr "Configurações de Logotipo"
110
 
111
+ #: includes/content.php:130
112
+ #, fuzzy
113
+ #| msgid "Customize Logo Settings here"
114
+ msgid "customize logo settings here"
115
  msgstr "Personalize as Configurações de Logotipo aqui"
116
 
117
+ #: includes/content.php:141 includes/social/social.php:21
118
  msgid "Social Settings"
119
  msgstr "Configurações Sociais"
120
 
121
+ #: includes/content.php:142
122
+ #, fuzzy
123
+ #| msgid "Connect with your social profile"
124
+ msgid "connect with your social profile"
125
  msgstr "Conectar com seu perfil social"
126
 
127
+ #: includes/content.php:152
128
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
129
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
130
+ #, fuzzy
131
+ #| msgid "Float Settings"
132
+ msgid "Google Captcha"
133
+ msgstr "Configurações de Flutuação"
134
+
135
+ #: includes/content.php:153
136
+ #, fuzzy
137
+ #| msgid "Float Settings"
138
+ msgid "configure captcha settings"
139
+ msgstr "Configurações de Flutuação"
140
+
141
+ #: includes/content.php:163
142
  msgid "Export / Import"
143
  msgstr "Exportar / Importar"
144
 
145
+ #: includes/content.php:164
146
+ msgid "import / export plugin settings"
147
+ msgstr ""
148
 
149
+ #: includes/content.php:173
150
  msgid "Recommendations"
151
  msgstr "Recomendações"
152
 
153
+ #: includes/content.php:174
154
+ #, fuzzy
155
+ #| msgid "Get More Free Useful Plugins"
156
+ msgid "get more free plugins"
157
  msgstr "Obter Mais Plugins Úteis Gratuitos"
158
 
159
+ #: includes/content.php:183 includes/help/help.php:15
160
  msgid "Help And Support"
161
  msgstr "Ajuda e Suporte"
162
 
163
+ #: includes/content.php:184
164
+ #, fuzzy
165
+ #| msgid "Ask your query"
166
+ msgid "ask your queries"
167
  msgstr "Faça sua consulta"
168
 
169
+ #: includes/content.php:193 includes/offers.php:11
170
+ msgid "Our Offers"
171
+ msgstr ""
172
+
173
+ #: includes/content.php:194
174
+ msgid "weblizar premium products"
175
+ msgstr ""
176
+
177
+ #: includes/content.php:203
178
+ #, fuzzy
179
+ #| msgid "Rate Us"
180
+ msgid "Rate & Donate Us"
181
+ msgstr "Classifique-nos"
182
 
183
+ #: includes/content.php:204
184
+ #, fuzzy
185
+ #| msgid "If you like us"
186
+ msgid "if you like us"
187
  msgstr "Se você gosta de nós"
188
 
189
  #: includes/dashboard/dashboard.php:15
195
  msgstr "Estado do Admin Custom Login"
196
 
197
  #: includes/dashboard/dashboard.php:33
198
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:83
199
  msgid "Disable"
200
  msgstr "Desabilitado"
201
 
202
  #: includes/dashboard/dashboard.php:36
203
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:80
204
  msgid "Enable"
205
  msgstr "Habilitado"
206
 
213
  msgstr ""
214
  "Copiar link abaixo e abrir em outro navegador onde você não está conectado"
215
 
216
+ #: includes/dashboard/dashboard.php:65 includes/help/rate.php:62
217
+ #, fuzzy
218
+ #| msgid "Rate Us"
219
+ msgid "Donate Us"
220
+ msgstr "Classifique-nos"
221
+
222
+ #: includes/dashboard/dashboard.php:92 includes/design/background.php:368
223
+ #: includes/design/text_and_color.php:583
224
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
225
+ #: includes/login-form-setting/Login-form-background.php:679
226
+ #: includes/settings/page-settings.php:168 includes/social/social.php:192
227
+ msgid "Setting Save Successfully"
228
+ msgstr "Configurações Salvas com Sucesso"
229
+
230
+ #: includes/dashboard/dashboard.php:92 includes/dashboard/dashboard.php:106
231
+ #: includes/design/background.php:180 includes/design/background.php:368
232
+ #: includes/design/background.php:383 includes/design/text_and_color.php:583
233
+ #: includes/design/text_and_color.php:598
234
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:117
235
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
236
+ #: includes/login-form-setting/Login-form-background.php:361
237
+ #: includes/login-form-setting/Login-form-background.php:679
238
+ #: includes/login-form-setting/Login-form-background.php:693
239
+ #: includes/settings/page-settings.php:84
240
+ #: includes/settings/page-settings.php:168
241
+ #: includes/settings/page-settings.php:182 includes/social/social.php:192
242
+ #: includes/social/social.php:206
243
+ msgid "Close"
244
+ msgstr "Fechar"
245
+
246
+ #: includes/dashboard/dashboard.php:106 includes/design/background.php:383
247
+ #: includes/design/text_and_color.php:598
248
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:131
249
+ #: includes/login-form-setting/Login-form-background.php:693
250
+ #: includes/settings/page-settings.php:182 includes/social/social.php:206
251
+ msgid "Setting Reset Successfully"
252
+ msgstr "Configurações Restauradas com Sucesso"
253
+
254
+ #: includes/dashboard/dashboard.php:113 includes/design/background.php:391
255
+ #: includes/design/text_and_color.php:606
256
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:138
257
+ #: includes/login-form-setting/Login-form-background.php:700
258
+ #: includes/settings/page-settings.php:189 includes/social/social.php:213
259
+ msgid "Save Changes"
260
+ msgstr "Salvar Configurações"
261
+
262
+ #: includes/dashboard/dashboard.php:116 includes/design/background.php:394
263
+ #: includes/design/text_and_color.php:609
264
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:141
265
+ #: includes/login-form-setting/Login-form-background.php:703
266
+ #: includes/settings/page-settings.php:192 includes/social/social.php:216
267
+ msgid "Reset Default"
268
+ msgstr "Restaurar Padrões"
269
+
270
+ #: includes/design/background.php:91
271
+ msgid "Background Settings"
272
+ msgstr "Configurações de Fundo"
273
+
274
+ #: includes/design/background.php:103 includes/design/background.php:110
275
+ #: includes/login-form-setting/Login-form-background.php:276
276
+ msgid "Select Background"
277
+ msgstr "Escolha um fundo"
278
+
279
+ #: includes/design/background.php:109
280
+ msgid "No Background Selected"
281
+ msgstr "Nenhum fundo Selecionado"
282
+
283
+ #: includes/design/background.php:111
284
+ #: includes/login-form-setting/Login-form-background.php:283
285
+ msgid "Static Background Color"
286
+ msgstr "Cor de fundo estática"
287
+
288
+ #: includes/design/background.php:112
289
+ #: includes/login-form-setting/Login-form-background.php:284
290
+ msgid "Static Background Image"
291
+ msgstr "Imagem de Fundo"
292
+
293
+ #: includes/design/background.php:113
294
+ msgid "Background SlideShow"
295
+ msgstr "Fundo em SlideShow"
296
+
297
+ #: includes/design/background.php:131
298
+ #: includes/login-form-setting/Login-form-background.php:300
299
+ msgid "Background Color"
300
+ msgstr "Cor de Fundo"
301
+
302
+ #: includes/design/background.php:153 includes/design/background.php:172
303
+ #: includes/login-form-setting/Login-form-background.php:337
304
+ msgid "Background Image"
305
+ msgstr "Imagem de Fundo"
306
+
307
+ #: includes/design/background.php:158
308
+ #: includes/login-form-setting/Login-form-background.php:342
309
+ #: includes/settings/page-settings.php:67
310
+ msgid "No media selected!"
311
+ msgstr "Nenhuma mídia selecionada!"
312
+
313
+ #: includes/design/background.php:160
314
+ #: includes/login-form-setting/Login-form-background.php:343
315
+ #: includes/settings/page-settings.php:68
316
+ msgid "Upload"
317
+ msgstr "Enviar"
318
+
319
+ #: includes/design/background.php:162
320
+ #: includes/login-form-setting/Login-form-background.php:345
321
+ #: includes/settings/page-settings.php:70
322
+ msgid "Preview"
323
+ msgstr "Pré-visualizar"
324
+
325
+ #: includes/design/background.php:164
326
+ #: includes/login-form-setting/Login-form-background.php:347
327
+ msgid "Remove"
328
+ msgstr "Remover"
329
+
330
+ #: includes/design/background.php:196
331
+ msgid "Cover or Strech"
332
+ msgstr "Cobrir ou Esticar"
333
+
334
+ #: includes/design/background.php:201 includes/design/text_and_color.php:244
335
+ #: includes/design/text_and_color.php:520
336
+ #: includes/login-form-setting/Login-form-background.php:538
337
+ msgid "Yes"
338
+ msgstr "Sim"
339
+
340
+ #: includes/design/background.php:213
341
+ #: includes/login-form-setting/Login-form-background.php:376
342
+ msgid "Background Repeat"
343
+ msgstr "Repetir Fundo"
344
+
345
+ #: includes/design/background.php:219
346
+ #: includes/login-form-setting/Login-form-background.php:382
347
+ msgid "No Repeat"
348
+ msgstr "Não Repetir"
349
+
350
+ #: includes/design/background.php:220
351
+ #: includes/login-form-setting/Login-form-background.php:383
352
+ msgid "Repeat"
353
+ msgstr "Repetir"
354
+
355
+ #: includes/design/background.php:221
356
+ #: includes/login-form-setting/Login-form-background.php:384
357
+ msgid "Repeat Horizontally"
358
+ msgstr "Repetir Horizontalmente"
359
+
360
+ #: includes/design/background.php:222
361
+ #: includes/login-form-setting/Login-form-background.php:385
362
+ msgid "Repeat Vertically"
363
+ msgstr "Repetir Verticalmente"
364
+
365
+ #: includes/design/background.php:234
366
+ #: includes/login-form-setting/Login-form-background.php:396
367
+ msgid "Background Position"
368
+ msgstr "Posição do Fundo"
369
+
370
+ #: includes/design/background.php:240
371
+ #: includes/login-form-setting/Login-form-background.php:402
372
+ msgid "Left Top"
373
+ msgstr "Esquerda Topo"
374
+
375
+ #: includes/design/background.php:241
376
+ #: includes/login-form-setting/Login-form-background.php:403
377
+ msgid "Left Center"
378
+ msgstr "Esquerda Centro"
379
+
380
+ #: includes/design/background.php:242
381
+ #: includes/login-form-setting/Login-form-background.php:404
382
+ msgid "Left Bottom"
383
+ msgstr "Esquerda Inferior"
384
+
385
+ #: includes/design/background.php:243
386
+ #: includes/login-form-setting/Login-form-background.php:405
387
+ msgid "Right Top"
388
+ msgstr "Direita Topo"
389
+
390
+ #: includes/design/background.php:244
391
+ #: includes/login-form-setting/Login-form-background.php:406
392
+ msgid "Right Center"
393
+ msgstr "Direita Centro"
394
 
395
+ #: includes/design/background.php:245
396
+ #: includes/login-form-setting/Login-form-background.php:407
397
+ msgid "Right Bottom"
398
+ msgstr "Direita Inferior"
399
 
400
+ #: includes/design/background.php:246
401
+ #: includes/login-form-setting/Login-form-background.php:408
402
+ msgid "Center Top"
403
+ msgstr "Centro Topo"
404
 
405
+ #: includes/design/background.php:247
406
+ #: includes/login-form-setting/Login-form-background.php:409
407
+ msgid "Center Center"
408
+ msgstr "Centro Centro"
409
+
410
+ #: includes/design/background.php:248
411
+ #: includes/login-form-setting/Login-form-background.php:410
412
+ msgid "Center Bottom"
413
+ msgstr "Centro Inferior"
414
 
415
  #: includes/design/background.php:260
416
  msgid "Background Attachment"
520
  msgid "Enable Link shadow?"
521
  msgstr "Habilitar sombra nos Links?"
522
 
523
+ #: includes/design/text_and_color.php:247
524
+ #: includes/design/text_and_color.php:523
525
+ #: includes/login-form-setting/Login-form-background.php:541
526
+ msgid "No"
527
+ msgstr "Não"
528
+
529
  #: includes/design/text_and_color.php:259
530
  msgid "Link Shadow Color"
531
  msgstr "Cor da Sombra do Link"
534
  msgid "Headline Font Style"
535
  msgstr "Estilo da Fonte do Título"
536
 
537
+ #: includes/design/text_and_color.php:336
538
  msgid "Input Font Style"
539
  msgstr "Estilo da Fonte de Entrada"
540
 
541
+ #: includes/design/text_and_color.php:395
542
  msgid "Link Font Style"
543
  msgstr "Estilo da Fonte do Link"
544
 
545
+ #: includes/design/text_and_color.php:455
546
  msgid "Button Font Style"
547
  msgstr "Estilo da Fonte do Botão"
548
 
549
+ #: includes/design/text_and_color.php:514
550
  msgid "Enable Input Box Icon?"
551
  msgstr "Habilitar Ícone na Caixa de Entrada?"
552
 
553
+ #: includes/design/text_and_color.php:534
554
  msgid "Icon For user Input Box"
555
  msgstr "Ícone para Usuário na Caixa de Entrada"
556
 
557
+ #: includes/design/text_and_color.php:555
558
  msgid "Icon For Password Input Box"
559
  msgstr "Ícone para Senha na Caixa de Entrada"
560
 
561
+ #: includes/design/text_and_color.php:583
562
+ #: includes/design/text_and_color.php:598
563
  msgid "Text and Color"
564
  msgstr "Texto e Cores"
565
 
566
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:14
567
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:44
568
+ #, fuzzy
569
+ #| msgid "Float Settings"
570
+ msgid "Google Captcha Settings"
571
+ msgstr "Configurações de Flutuação"
572
+
573
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:55
574
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:60
575
+ #, fuzzy
576
+ #| msgid "More Details"
577
+ msgid "Site Key"
578
+ msgstr "Mais Detalhes"
579
+
580
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:64
581
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:69
582
+ msgid "Secret Key"
583
+ msgstr ""
584
+
585
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:74
586
+ #, fuzzy
587
+ #| msgid "Float Settings"
588
+ msgid "Captcha Display"
589
+ msgstr "Configurações de Flutuação"
590
+
591
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:90
592
+ #, fuzzy
593
+ #| msgid "Float Settings"
594
+ msgid "Captcha Theme"
595
+ msgstr "Configurações de Flutuação"
596
+
597
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:96
598
+ #, fuzzy
599
+ #| msgid "Right"
600
+ msgid "Light"
601
+ msgstr "Direita"
602
+
603
+ #: includes/googlecaptcha-settings/gcaptcha-settings.php:99
604
+ msgid "Dark"
605
+ msgstr ""
606
+
607
  #: includes/help/help.php:28
608
  msgid "View Support Docs or Open a Ticket"
609
  msgstr "Veja os Documentos de Apoio ou Abra um Ticket"
610
 
611
+ #: includes/help/help.php:38 includes/help/rate.php:39
 
612
  msgid "Rate Us"
613
  msgstr "Classifique-nos"
614
 
653
  msgid "here is solution"
654
  msgstr "aqui está a solução"
655
 
656
+ #: includes/help/rate.php:15
657
+ #, fuzzy
658
+ #| msgid "Rate Us"
659
+ msgid "Rate & Donate Us"
660
+ msgstr "Classifique-nos"
661
+
662
  #: includes/help/rate.php:29
663
  msgid ""
664
  "We need your feedback for improve our plugin functionality on WordPress. So, "
701
  msgid "Import"
702
  msgstr "Ajuda e Suporte"
703
 
704
+ #: includes/login-form-setting/Login-form-background.php:191
705
+ msgid "Login Settings"
706
+ msgstr "Configurações de Logotipo"
707
+
708
+ #: includes/login-form-setting/Login-form-background.php:204
709
+ msgid "Login Form Position"
710
+ msgstr "Largura do Formulário de Login"
711
+
712
+ #: includes/login-form-setting/Login-form-background.php:210
713
+ msgid "Default"
714
+ msgstr "Padrão"
715
+
716
+ #: includes/login-form-setting/Login-form-background.php:211
717
+ msgid "Floating"
718
+ msgstr "Flutuando"
719
+
720
+ #: includes/login-form-setting/Login-form-background.php:212
721
+ msgid "Floating With Customization"
722
+ msgstr "Etiqueta com CSS Personalizado"
723
+
724
+ #: includes/login-form-setting/Login-form-background.php:223
725
+ msgid "Float Settings"
726
+ msgstr "Configurações de Fonte"
727
+
728
+ #: includes/login-form-setting/Login-form-background.php:229
729
+ msgid "Left"
730
+ msgstr "Esquerda Topo"
731
+
732
+ #: includes/login-form-setting/Login-form-background.php:232
733
+ msgid "Center"
734
+ msgstr "Centro Topo"
735
+
736
+ #: includes/login-form-setting/Login-form-background.php:235
737
+ msgid "Right"
738
+ msgstr "Direita"
739
+
740
+ #: includes/login-form-setting/Login-form-background.php:245
741
+ msgid "Floating With Customization Settings"
742
+ msgstr "Flutuando com Configurações de Personalização"
743
+
744
+ #: includes/login-form-setting/Login-form-background.php:266
745
+ msgid "Note: This form position setting will be not responsive."
746
+ msgstr ""
747
+
748
+ #: includes/login-form-setting/Login-form-background.php:282
749
+ msgid "Select background"
750
+ msgstr "Escolha um fundo"
751
+
752
+ #: includes/login-form-setting/Login-form-background.php:315
753
+ msgid "Login Form Opacity"
754
+ msgstr "Largura do Formulário de Login"
755
+
756
+ #: includes/login-form-setting/Login-form-background.php:355
757
+ #: includes/settings/page-settings.php:78
758
+ msgid "Login Background Image"
759
+ msgstr "Imagem de Fundo"
760
+
761
+ #: includes/login-form-setting/Login-form-background.php:422
762
+ msgid "Background Effect"
763
+ msgstr "Efeito de Fundo"
764
+
765
+ #: includes/login-form-setting/Login-form-background.php:428
766
+ msgid "Select overlay effect"
767
+ msgstr "Selecione efeito de sobreposição"
768
+
769
+ #: includes/login-form-setting/Login-form-background.php:429
770
+ msgid "No Overlay Effect"
771
+ msgstr "Sem Efeito de Sobreposição"
772
+
773
+ #: includes/login-form-setting/Login-form-background.php:430
774
+ msgid "Overlay Effect 1"
775
+ msgstr "Efeito de Sobreposição 1"
776
+
777
+ #: includes/login-form-setting/Login-form-background.php:431
778
+ msgid "Overlay Effect 2"
779
+ msgstr "Efeito de Sobreposição 2"
780
+
781
+ #: includes/login-form-setting/Login-form-background.php:432
782
+ msgid "Overlay Effect 3"
783
+ msgstr "Efeito de Sobreposição 3"
784
+
785
+ #: includes/login-form-setting/Login-form-background.php:445
786
+ msgid "Login Form Width"
787
+ msgstr "Largura do Formulário de Login"
788
+
789
+ #: includes/login-form-setting/Login-form-background.php:462
790
+ msgid "Border Color"
791
+ msgstr "Cor da Borda"
792
+
793
+ #: includes/login-form-setting/Login-form-background.php:477
794
+ msgid "Border Radius"
795
+ msgstr "Borda Arredondada"
796
+
797
+ #: includes/login-form-setting/Login-form-background.php:494
798
+ msgid "Border Style"
799
+ msgstr "Estilo da Borda"
800
+
801
+ #: includes/login-form-setting/Login-form-background.php:500
802
+ msgid "None"
803
+ msgstr "Nenhum"
804
+
805
+ #: includes/login-form-setting/Login-form-background.php:501
806
+ msgid "Solid"
807
+ msgstr "Sólida"
808
+
809
+ #: includes/login-form-setting/Login-form-background.php:502
810
+ msgid "Dotted"
811
+ msgstr "Pontilhada"
812
+
813
+ #: includes/login-form-setting/Login-form-background.php:503
814
+ msgid "Dashed"
815
+ msgstr "Tracejada"
816
+
817
+ #: includes/login-form-setting/Login-form-background.php:504
818
+ msgid "Double"
819
+ msgstr "Dupla"
820
+
821
+ #: includes/login-form-setting/Login-form-background.php:515
822
+ msgid "Border Thickness"
823
+ msgstr "Espessura da Borda"
824
+
825
+ #: includes/login-form-setting/Login-form-background.php:532
826
+ msgid "Enable Form Shadow?"
827
+ msgstr "Habilitar sobra do formulário?"
828
+
829
+ #: includes/login-form-setting/Login-form-background.php:552
830
+ msgid "Form Shadow Color"
831
+ msgstr "Cor da Sombra do Formulário"
832
+
833
+ #: includes/login-form-setting/Login-form-background.php:567
834
+ msgid "Redirect Users After Login (Not Work For Admin)"
835
+ msgstr ""
836
+ "Redirecionar usuários após o login (não funciona para o administrador)"
837
+
838
+ #: includes/login-form-setting/Login-form-background.php:572
839
+ msgid "Redirect URL"
840
+ msgstr ""
841
+
842
+ #: includes/login-form-setting/Login-form-background.php:573
843
+ msgid ""
844
+ "Enter the URL to redirect users after login, Setting will not work for an "
845
+ "administrator."
846
+ msgstr ""
847
+
848
+ #: includes/login-form-setting/Login-form-background.php:585
849
+ msgid "Display Note To User Above Login Form"
850
+ msgstr ""
851
+
852
+ #: includes/login-form-setting/Login-form-background.php:602
853
+ #, fuzzy
854
+ #| msgid "Link Font Size"
855
+ msgid "Message Font Size"
856
+ msgstr "Tamanho da Fonte do Link"
857
+
858
+ #: includes/login-form-setting/Login-form-background.php:620
859
+ #, fuzzy
860
+ #| msgid "Headline Font Color"
861
+ msgid "Message Font Color"
862
+ msgstr "Cor da Fonte do Título"
863
+
864
+ #: includes/login-form-setting/Login-form-background.php:637
865
+ msgid "Tagline Message Display Below Login Form"
866
+ msgstr ""
867
+
868
+ #: includes/login-form-setting/Login-form-background.php:654
869
+ #: includes/login-form-setting/Login-form-background.php:659
870
+ msgid "Custom CSS"
871
+ msgstr "Personalizar CSS"
872
+
873
+ #: includes/login-form-setting/Login-form-background.php:661
874
+ msgid "Enter any custom css you want to apply on login panel."
875
+ msgstr ""
876
+ "Digite qualquer css personalizado que você deseja aplicar no painel de "
877
+ "entrada."
878
+
879
+ #: includes/login-form-setting/Login-form-background.php:662
880
+ msgid "Note: Please Do Not Use"
881
+ msgstr "Nota: Por favor não usar"
882
+
883
+ #: includes/login-form-setting/Login-form-background.php:662
884
+ msgid "Tag With Custom CSS"
885
+ msgstr "Etiqueta com CSS Personalizado"
886
+
887
+ #: includes/login-form-setting/Login-form-background.php:679
888
+ #: includes/login-form-setting/Login-form-background.php:693
889
+ msgid "Login"
890
+ msgstr "Entrar"
891
+
892
  #. translators: 1: The rating
893
  #: includes/recommendations/recommendations.php:75
894
  #, php-format
896
  msgstr "classificação %s"
897
 
898
  #: includes/settings/page-settings.php:62
899
+ #, fuzzy
900
+ #| msgid "Logo "
901
+ msgid "Logo Image"
902
+ msgstr "Logotipo "
903
 
904
  #: includes/settings/page-settings.php:98
905
+ #, fuzzy
906
+ #| msgid "Logo "
907
+ msgid "Logo Image Width"
908
+ msgstr "Logotipo "
909
 
910
  #: includes/settings/page-settings.php:115
911
+ #, fuzzy
912
+ #| msgid "Logo "
913
+ msgid "Logo Image Height"
914
+ msgstr "Logotipo "
915
 
916
  #: includes/settings/page-settings.php:132
917
  #: includes/settings/page-settings.php:137
918
+ #, fuzzy
919
+ #| msgid "Logo URL"
920
+ msgid "Logo Link URL"
921
  msgstr "URL do Logotipo"
922
 
923
  #: includes/settings/page-settings.php:147
924
  #: includes/settings/page-settings.php:152
925
+ #, fuzzy
926
+ #| msgid "Logo "
927
+ msgid "Logo Image Title"
928
+ msgstr "Logotipo "
929
+
930
+ #: includes/settings/page-settings.php:168
931
+ #: includes/settings/page-settings.php:182
932
+ msgid "Logo"
933
+ msgstr "Logotipo"
934
 
935
  #: includes/social/social.php:33
936
  msgid "Enable Social Icons"
1041
  msgstr "Tumblr"
1042
 
1043
  #: includes/social/social.php:172
 
 
 
 
1044
  msgid "Skype"
1045
  msgstr "Skype"
1046
 
1047
+ #: includes/social/social.php:173
1048
  msgid "Instagram"
1049
  msgstr "Instagram"
1050
 
1051
+ #: includes/social/social.php:174
1052
  msgid "Telegram"
1053
  msgstr "Telegram"
1054
 
1055
+ #: includes/social/social.php:175
1056
  msgid "Whatsapp"
1057
  msgstr "Whatsapp"
1058
 
1059
+ #: includes/social/social.php:192 includes/social/social.php:206
1060
  msgid "Social"
1061
  msgstr "Social"
1062
 
1063
+ #~ msgid "User Name"
1064
+ #~ msgstr "Nome de Usuário"
1065
+
1066
+ #~ msgid "Export / Import Your Data"
1067
+ #~ msgstr "Exportar / Importar Seus Dados"
1068
+
1069
+ #~ msgid "Please rate us"
1070
+ #~ msgstr "Por favor, classifique-nos"
1071
+
1072
+ #~ msgid "Logo Width"
1073
+ #~ msgstr "Largura do Logotipo"
1074
+
1075
+ #~ msgid "Logo Height"
1076
+ #~ msgstr "Altura do Logotipo"
1077
+
1078
+ #~ msgid "Logo URL Title"
1079
+ #~ msgstr "Título da URL do Logotipo"
1080
+
1081
+ #~ msgid "VKontakte"
1082
+ #~ msgstr "VKontakte"
1083
+
1084
  #, fuzzy
1085
  #~| msgid "Select Background"
1086
  #~ msgid "Select Nackground"
1646
  #~ msgid "Please Enter Password"
1647
  #~ msgstr "Por favor, classifique-nos "
1648
 
 
 
 
 
 
1649
  #, fuzzy
1650
  #~| msgid "None"
1651
  #~ msgid "on"
1821
  #~ msgid "Recommended"
1822
  #~ msgstr "Recomendações"
1823
 
 
 
 
 
 
1824
  #, fuzzy
1825
  #~| msgid "None"
1826
  #~ msgid "one"
1976
  #~ msgid "Facebook App ID"
1977
  #~ msgstr "Facebook"
1978
 
 
 
 
 
 
1979
  #, fuzzy
1980
  #~| msgid "Social Settings"
1981
  #~ msgid "Shortcode Settings"
2075
  #~ msgid "Content"
2076
  #~ msgstr "Contate-nos:"
2077
 
 
 
 
 
 
2078
  #, fuzzy
2079
  #~| msgid "Login Settings"
2080
  #~ msgid "plugin setting page"
2285
  #~ msgid "Logo Text"
2286
  #~ msgstr "Logotipo "
2287
 
 
 
 
 
 
2288
  #, fuzzy
2289
  #~| msgid "Logo Height"
2290
  #~ msgid "Logo Text "
2291
  #~ msgstr "Altura do Logotipo"
2292
 
 
 
 
 
 
2293
  #, fuzzy
2294
  #~| msgid "Logo Width"
2295
  #~ msgid "Logo Width "
3894
  #~ msgid "Night"
3895
  #~ msgstr "Direita"
3896
 
 
 
 
 
 
3897
  #, fuzzy
3898
  #~| msgid "Enable Link shadow?"
3899
  #~ msgid "Enable Line Numbers:"
4094
  #~ msgid "SMTP Username"
4095
  #~ msgstr "Nome de Usuário"
4096
 
 
 
 
 
 
4097
  #, fuzzy
4098
  #~| msgid "Close"
4099
  #~ msgid "Close Shop:"
4154
  #~ msgid "closed"
4155
  #~ msgstr "Fechar"
4156
 
 
 
 
 
 
4157
  #, fuzzy
4158
  #~| msgid "Pinterest"
4159
  #~ msgid "Plaintext"
login-form-screen.php CHANGED
@@ -78,28 +78,28 @@ function acl_er_login_logo() {
78
  //require social icon css
79
  require_once('css/socialcss.php');
80
  ?>
81
- <script src="//ajax.googleapis.com/ajax/libs/webfont/1/webfont.js"></script>
82
- <script type="text/javascript">
83
- WebFont.load({
84
- google: {
85
- families: ['<?php echo $text_and_color_page["heading_font_style"]; ?>'] // saved value
86
- }
87
- });
88
- WebFont.load({
89
- google: {
90
- families: ["<?php echo $text_and_color_page['input_font_style']; ?>"] // saved value
91
- }
92
- });
93
- WebFont.load({
94
- google: {
95
- families: ["<?php echo $text_and_color_page['link_font_style']; ?>"] // saved value
96
- }
97
- });
98
- WebFont.load({
99
- google: {
100
- families: ["<?php echo $text_and_color_page['button_font_style']; ?>"] // saved value
101
- }
102
- });
103
  </script>
104
  <style type="text/css">
105
  <?php echo $login_custom_css; ?>
@@ -297,8 +297,7 @@ function acl_er_login_logo() {
297
  $login_page = unserialize(get_option('Admin_custome_login_login'));
298
  if(isset($login_page['log_form_above_msg'])){
299
  $log_form_above_msg = $login_page['log_form_above_msg'];
300
- if($log_form_above_msg !=""){
301
- ?>
302
  <p class='login-msg-above'><?php echo $log_form_above_msg; ?></p>
303
  <?php
304
  }
78
  //require social icon css
79
  require_once('css/socialcss.php');
80
  ?>
81
+ <script src="//ajax.googleapis.com/ajax/libs/webfont/1/webfont.js"></script>
82
+ <script type="text/javascript">
83
+ WebFont.load({
84
+ google: {
85
+ families: ['<?php echo $text_and_color_page["heading_font_style"]; ?>'] // saved value
86
+ }
87
+ });
88
+ WebFont.load({
89
+ google: {
90
+ families: ["<?php echo $text_and_color_page['input_font_style']; ?>"] // saved value
91
+ }
92
+ });
93
+ WebFont.load({
94
+ google: {
95
+ families: ["<?php echo $text_and_color_page['link_font_style']; ?>"] // saved value
96
+ }
97
+ });
98
+ WebFont.load({
99
+ google: {
100
+ families: ["<?php echo $text_and_color_page['button_font_style']; ?>"] // saved value
101
+ }
102
+ });
103
  </script>
104
  <style type="text/css">
105
  <?php echo $login_custom_css; ?>
297
  $login_page = unserialize(get_option('Admin_custome_login_login'));
298
  if(isset($login_page['log_form_above_msg'])){
299
  $log_form_above_msg = $login_page['log_form_above_msg'];
300
+ if($log_form_above_msg !=""){ ?>
 
301
  <p class='login-msg-above'><?php echo $log_form_above_msg; ?></p>
302
  <?php
303
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.weblizar.com/
4
  Tags: custom login page, custom admin login, custom login, customize wordpress login page, design wordpress login
5
  Requires at least: 4.0
6
  Tested up to: 4.9.7
7
- Stable tag: 2.6.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -122,6 +122,10 @@ If you have any question contact us at here: [Plugin Support Forum ](http://word
122
 
123
  For more information, see [Weblizar](http://www.weblizar.com/)
124
 
 
 
 
 
125
  = 2.6.3 =
126
  * Add Donate Link tab in dashboard setting
127
  * Generate new token of google web-font
@@ -149,6 +153,7 @@ For more information, see [Weblizar](http://www.weblizar.com/)
149
  = 2.4.7.1 - Language file updated (some text string was missing in lang file and updated in 2.4.7.1)
150
  = 2.4.7 =
151
  * update
 
152
  = 2.4.6 =
153
  * Dutch Translation Added
154
  = Version 2.4.5.4 10/10/2016 =
4
  Tags: custom login page, custom admin login, custom login, customize wordpress login page, design wordpress login
5
  Requires at least: 4.0
6
  Tested up to: 4.9.7
7
+ Stable tag: 2.6.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
122
 
123
  For more information, see [Weblizar](http://www.weblizar.com/)
124
 
125
+ = 2.6.4 =
126
+ * Logo Settings Label Revised
127
+ * Login Form Social Icons Margin Fixed
128
+
129
  = 2.6.3 =
130
  * Add Donate Link tab in dashboard setting
131
  * Generate new token of google web-font
153
  = 2.4.7.1 - Language file updated (some text string was missing in lang file and updated in 2.4.7.1)
154
  = 2.4.7 =
155
  * update
156
+
157
  = 2.4.6 =
158
  * Dutch Translation Added
159
  = Version 2.4.5.4 10/10/2016 =