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