Advanced Access Manager - Version 6.3.1

Version Description

  • Fixed Bug: Draft policy still applicable if attached to user or role https://github.com/aamplugin/advanced-access-manager/issues/49
  • Fixed Bug: Resetting all AAM settings still keep legacy settings in DB https://github.com/aamplugin/advanced-access-manager/issues/48
  • Fixed Bug: PHP Warning: Invalid argument supplied for foreach() in .../Repository.php on line 71 https://github.com/aamplugin/advanced-access-manager/issues/47
  • Fixed Bug: User's capabilities, populated through policy, are gone when rebased https://github.com/aamplugin/advanced-access-manager/issues/45
  • Fixed Bug: Cannot lock user with AAM UI https://github.com/aamplugin/advanced-access-manager/issues/43
  • Fixed Bug: Teaser Message modified with added backslashes to single and double quotes https://github.com/aamplugin/advanced-access-manager/issues/42
Download this release

Release Info

Developer vasyltech
Plugin Icon 128x128 Advanced Access Manager
Version 6.3.1
Comparing to
See all releases

Code changes from version 6.3.0 to 6.3.1

aam.php CHANGED
@@ -3,7 +3,7 @@
3
  /**
4
  * Plugin Name: Advanced Access Manager
5
  * Description: Collection of features to manage your WordPress website authentication, authorization and monitoring
6
- * Version: 6.3.0
7
  * Author: Vasyl Martyniuk <vasyl@vasyltech.com>
8
  * Author URI: https://vasyltech.com
9
  * Text Domain: advanced-access-manager
@@ -264,7 +264,7 @@ if (defined('ABSPATH')) {
264
  //define few common constants
265
  define('AAM_MEDIA', plugins_url('/media', __FILE__));
266
  define('AAM_KEY', 'advanced-access-manager');
267
- define('AAM_VERSION', '6.3.0');
268
  define('AAM_BASEDIR', __DIR__);
269
 
270
  //load vendor
3
  /**
4
  * Plugin Name: Advanced Access Manager
5
  * Description: Collection of features to manage your WordPress website authentication, authorization and monitoring
6
+ * Version: 6.3.1
7
  * Author: Vasyl Martyniuk <vasyl@vasyltech.com>
8
  * Author URI: https://vasyltech.com
9
  * Text Domain: advanced-access-manager
264
  //define few common constants
265
  define('AAM_MEDIA', plugins_url('/media', __FILE__));
266
  define('AAM_KEY', 'advanced-access-manager');
267
+ define('AAM_VERSION', '6.3.1');
268
  define('AAM_BASEDIR', __DIR__);
269
 
270
  //load vendor
application/Backend/Feature/Main/Post.php CHANGED
@@ -10,6 +10,7 @@
10
  /**
11
  * Backend posts & terms service UI
12
  *
 
13
  * @since 6.3.0 Fixed bug with PHP noticed that was triggered if password was not
14
  * defined
15
  * @since 6.2.0 Added more granular control over the HIDDEN access option
@@ -17,7 +18,7 @@
17
  * @since 6.0.0 Initial implementation of the class
18
  *
19
  * @package AAM
20
- * @version 6.3.0
21
  */
22
  class AAM_Backend_Feature_Main_Post
23
  extends AAM_Backend_Feature_Abstract implements AAM_Backend_Feature_ISubjectAware
@@ -532,16 +533,23 @@ class AAM_Backend_Feature_Main_Post
532
  *
533
  * @return mixed
534
  *
 
535
  * @since 6.2.0 Added support for the new filter `aam_sanitize_post_value_filter`
536
  * @since 6.0.0 Initial implementation of the method
537
  *
538
  * @access protected
539
- * @version 6.2.0
540
  */
541
  protected function sanitizeOption($option, $value)
542
  {
543
  if (is_array($value)) {
544
- $value['enabled'] = filter_var($value['enabled'], FILTER_VALIDATE_BOOLEAN);
 
 
 
 
 
 
545
  } else { // Any scalar value has to be boolean
546
  $value = filter_var($value, FILTER_VALIDATE_BOOLEAN);
547
  }
10
  /**
11
  * Backend posts & terms service UI
12
  *
13
+ * @since 6.3.1 Fixed bug with incorrectly escaped passwords and teaser messages
14
  * @since 6.3.0 Fixed bug with PHP noticed that was triggered if password was not
15
  * defined
16
  * @since 6.2.0 Added more granular control over the HIDDEN access option
18
  * @since 6.0.0 Initial implementation of the class
19
  *
20
  * @package AAM
21
+ * @version 6.3.1
22
  */
23
  class AAM_Backend_Feature_Main_Post
24
  extends AAM_Backend_Feature_Abstract implements AAM_Backend_Feature_ISubjectAware
533
  *
534
  * @return mixed
535
  *
536
+ * @since 6.3.1 Fixed bug https://github.com/aamplugin/advanced-access-manager/issues/42
537
  * @since 6.2.0 Added support for the new filter `aam_sanitize_post_value_filter`
538
  * @since 6.0.0 Initial implementation of the method
539
  *
540
  * @access protected
541
+ * @version 6.3.1
542
  */
543
  protected function sanitizeOption($option, $value)
544
  {
545
  if (is_array($value)) {
546
+ foreach($value as $k => $v) {
547
+ if ($k === 'enabled') {
548
+ $value[$k] = filter_var($v, FILTER_VALIDATE_BOOLEAN);
549
+ } else {
550
+ $value[$k] = (is_numeric($v) ? intval($v) : stripslashes($v));
551
+ }
552
+ }
553
  } else { // Any scalar value has to be boolean
554
  $value = filter_var($value, FILTER_VALIDATE_BOOLEAN);
555
  }
application/Core/API.php CHANGED
@@ -10,6 +10,7 @@
10
  /**
11
  * AAM core API
12
  *
 
13
  * @since 6.3.0 Optimized for Multisite setup
14
  * @since 6.2.2 Minor refactoring to the clearSettings method
15
  * @since 6.0.5 Fixed bug with getOption method where incorrect type could be
@@ -17,7 +18,7 @@
17
  * @since 6.0.0 Initial implementation of the class
18
  *
19
  * @package AAM
20
- * @version 6.3.0
21
  */
22
  final class AAM_Core_API
23
  {
@@ -227,19 +228,21 @@ final class AAM_Core_API
227
  *
228
  * @return void
229
  *
 
230
  * @since 6.2.2 Refactored the way we iterate over the deleting list of options
231
  * @since 6.0.0 Initial implementation of the method
232
  *
233
  * @access public
234
- * @version 6.2.2
235
  */
236
  public static function clearSettings()
237
  {
 
 
238
  $options = array(
239
  AAM_Core_AccessSettings::DB_OPTION,
240
  AAM_Core_Config::DB_OPTION,
241
  AAM_Core_ConfigPress::DB_OPTION,
242
- AAM_Core_Migration::DB_OPTION,
243
  AAM_Service_AdminMenu::CACHE_DB_OPTION,
244
  AAM_Service_Toolbar::DB_OPTION
245
  );
@@ -248,6 +251,19 @@ final class AAM_Core_API
248
  self::deleteOption($option);
249
  }
250
 
 
 
 
 
 
 
 
 
 
 
 
 
 
251
  // Trigger the action to inform other services to clean-up the options
252
  do_action('aam_clear_settings_action', $options);
253
  }
10
  /**
11
  * AAM core API
12
  *
13
+ * @since 6.3.1 Fixed bug with setting clearing
14
  * @since 6.3.0 Optimized for Multisite setup
15
  * @since 6.2.2 Minor refactoring to the clearSettings method
16
  * @since 6.0.5 Fixed bug with getOption method where incorrect type could be
18
  * @since 6.0.0 Initial implementation of the class
19
  *
20
  * @package AAM
21
+ * @version 6.3.1
22
  */
23
  final class AAM_Core_API
24
  {
228
  *
229
  * @return void
230
  *
231
+ * @since 6.3.1 Fixed bug https://github.com/aamplugin/advanced-access-manager/issues/48
232
  * @since 6.2.2 Refactored the way we iterate over the deleting list of options
233
  * @since 6.0.0 Initial implementation of the method
234
  *
235
  * @access public
236
+ * @version 6.3.1
237
  */
238
  public static function clearSettings()
239
  {
240
+ global $wpdb;
241
+
242
  $options = array(
243
  AAM_Core_AccessSettings::DB_OPTION,
244
  AAM_Core_Config::DB_OPTION,
245
  AAM_Core_ConfigPress::DB_OPTION,
 
246
  AAM_Service_AdminMenu::CACHE_DB_OPTION,
247
  AAM_Service_Toolbar::DB_OPTION
248
  );
251
  self::deleteOption($option);
252
  }
253
 
254
+ // Delete all legacy options
255
+ $query = "DELETE FROM {$wpdb->options} WHERE (`option_name` LIKE %s) AND ";
256
+ $query .= "(`option_name` NOT IN ('aam_addons', 'aam_migrations'))";
257
+ $wpdb->query($wpdb->prepare($query, 'aam%'));
258
+
259
+ $wpdb->query($wpdb->prepare(
260
+ "DELETE FROM {$wpdb->postmeta} WHERE `meta_key` LIKE %s", 'aam-%'
261
+ ));
262
+
263
+ $wpdb->query($wpdb->prepare(
264
+ "DELETE FROM {$wpdb->usermeta} WHERE `meta_key` LIKE %s", 'aam%'
265
+ ));
266
+
267
  // Trigger the action to inform other services to clean-up the options
268
  do_action('aam_clear_settings_action', $options);
269
  }
application/Core/Policy/Manager.php CHANGED
@@ -10,6 +10,7 @@
10
  /**
11
  * AAM policy manager for a specific subject
12
  *
 
13
  * @since 6.2.1 Added support for the POLICY_META token
14
  * @since 6.2.0 Fetched the way access policies are fetched
15
  * @since 6.1.0 Implemented `=>` operator. Improved inheritance mechanism
@@ -17,7 +18,7 @@
17
  * @since 6.0.0 Initial implementation of the class
18
  *
19
  * @package AAM
20
- * @version 6.2.1
21
  */
22
  class AAM_Core_Policy_Manager
23
  {
@@ -280,11 +281,12 @@ class AAM_Core_Policy_Manager
280
  *
281
  * @return void
282
  *
 
283
  * @since 6.2.0 Changed the way access policies are fetched
284
  * @since 6.0.0 Initial implementation of the method
285
  *
286
  * @access public
287
- * @version 6.2.0
288
  */
289
  public function initialize()
290
  {
@@ -296,7 +298,10 @@ class AAM_Core_Policy_Manager
296
  // If there is at least one policy attached and it is published, then
297
  // parse into the tree
298
  if (count($ids)) {
299
- $policies = $this->fetchPolicies(array('include' => array_keys($ids)));
 
 
 
300
 
301
  foreach ($policies as $policy) {
302
  $this->updatePolicyTree($this->tree, $this->parsePolicy($policy));
10
  /**
11
  * AAM policy manager for a specific subject
12
  *
13
+ * @since 6.3.1 Fixed bug where draft policies get applied to assignees
14
  * @since 6.2.1 Added support for the POLICY_META token
15
  * @since 6.2.0 Fetched the way access policies are fetched
16
  * @since 6.1.0 Implemented `=>` operator. Improved inheritance mechanism
18
  * @since 6.0.0 Initial implementation of the class
19
  *
20
  * @package AAM
21
+ * @version 6.3.1
22
  */
23
  class AAM_Core_Policy_Manager
24
  {
281
  *
282
  * @return void
283
  *
284
+ * @since 6.3.1 Fixed bug https://github.com/aamplugin/advanced-access-manager/issues/49
285
  * @since 6.2.0 Changed the way access policies are fetched
286
  * @since 6.0.0 Initial implementation of the method
287
  *
288
  * @access public
289
+ * @version 6.3.1
290
  */
291
  public function initialize()
292
  {
298
  // If there is at least one policy attached and it is published, then
299
  // parse into the tree
300
  if (count($ids)) {
301
+ $policies = $this->fetchPolicies(array(
302
+ 'post_status' => array('publish'),
303
+ 'include' => array_keys($ids)
304
+ ));
305
 
306
  foreach ($policies as $policy) {
307
  $this->updatePolicyTree($this->tree, $this->parsePolicy($policy));
application/Migration/2020_02_01-base.php ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * ======================================================================
5
+ * LICENSE: This file is subject to the terms and conditions defined in *
6
+ * file 'license.txt', which is part of this source code package. *
7
+ * ======================================================================
8
+ */
9
+
10
+ namespace AAM\Migration;
11
+
12
+ use AAM_Core_Contract_MigrationInterface;
13
+
14
+ /**
15
+ * This migration class that fixes potentially corrupted data with aam_addons option
16
+ *
17
+ * @package AAM
18
+ * @version 6.3.1
19
+ */
20
+ class Migration631 implements AAM_Core_Contract_MigrationInterface
21
+ {
22
+
23
+ /**
24
+ * @inheritdoc
25
+ *
26
+ * @version 6.3.1
27
+ */
28
+ public function run()
29
+ {
30
+ $option = \AAM_Core_API::getOption(
31
+ \AAM_Addon_Repository::DB_OPTION, array(), get_main_site_id()
32
+ );
33
+
34
+ if (is_string($option)) {
35
+ $option = maybe_unserialize($option);
36
+ \AAM_Core_API::updateOption(
37
+ \AAM_Addon_Repository::DB_OPTION, $option, get_main_site_id()
38
+ );
39
+ }
40
+
41
+ return array('errors' => array());
42
+ }
43
+
44
+ }
45
+
46
+ if (defined('AAM_KEY')) {
47
+ return (new Migration631())->run();
48
+ }
application/Service/AccessPolicy.php CHANGED
@@ -10,13 +10,16 @@
10
  /**
11
  * Access Policy service
12
  *
 
 
 
13
  * @since 6.3.0 Removed dependency on PHP core `list` function
14
  * @since 6.2.0 Bug fixing and enhancements for the multisite support
15
  * @since 6.1.0 Changed the way access policy manager is obtained
16
  * @since 6.0.0 Initial implementation of the class
17
  *
18
  * @package AAM
19
- * @version 6.3.0
20
  */
21
  class AAM_Service_AccessPolicy
22
  {
@@ -579,13 +582,14 @@ class AAM_Service_AccessPolicy
579
  *
580
  * @return void
581
  *
 
582
  * @since 6.1.0 Changed the way access policy manage is obtained
583
  * @since 6.0.0 Initial implementation of the method
584
  *
585
  * @access public
586
  * @link https://aamplugin.com/reference/policy#capability
587
  * @link https://aamplugin.com/reference/policy#role
588
- * @version 6.1.0
589
  */
590
  public function initializeUser(AAM_Core_Subject_User $subject)
591
  {
@@ -631,12 +635,11 @@ class AAM_Service_AccessPolicy
631
 
632
  foreach($caps as $cap => $statement) {
633
  $effect = (strtolower($statement['Effect']) === 'allow' ? true : false);
 
634
  $wp_user->allcaps[$cap] = $effect;
635
 
636
  // Also update user's specific cap if exists
637
- if (array_key_exists($cap, $wp_user->caps)) {
638
- $wp_user->caps[$cap] = $effect;
639
- }
640
  }
641
 
642
  // Finally update user level
10
  /**
11
  * Access Policy service
12
  *
13
+ * @since 6.3.1 Fixed incompatibility with plugins that use WP_User::get_role_caps
14
+ * method. This method re-index all user capabilities based on assigned
15
+ * roles and that flushes capabilities attached with Access Policy
16
  * @since 6.3.0 Removed dependency on PHP core `list` function
17
  * @since 6.2.0 Bug fixing and enhancements for the multisite support
18
  * @since 6.1.0 Changed the way access policy manager is obtained
19
  * @since 6.0.0 Initial implementation of the class
20
  *
21
  * @package AAM
22
+ * @version 6.3.1
23
  */
24
  class AAM_Service_AccessPolicy
25
  {
582
  *
583
  * @return void
584
  *
585
+ * @since 6.3.1 Fixed bug https://github.com/aamplugin/advanced-access-manager/issues/45
586
  * @since 6.1.0 Changed the way access policy manage is obtained
587
  * @since 6.0.0 Initial implementation of the method
588
  *
589
  * @access public
590
  * @link https://aamplugin.com/reference/policy#capability
591
  * @link https://aamplugin.com/reference/policy#role
592
+ * @version 6.3.1
593
  */
594
  public function initializeUser(AAM_Core_Subject_User $subject)
595
  {
635
 
636
  foreach($caps as $cap => $statement) {
637
  $effect = (strtolower($statement['Effect']) === 'allow' ? true : false);
638
+
639
  $wp_user->allcaps[$cap] = $effect;
640
 
641
  // Also update user's specific cap if exists
642
+ $wp_user->caps[$cap] = $effect;
 
 
643
  }
644
 
645
  // Finally update user level
application/Service/SecureLogin.php CHANGED
@@ -10,11 +10,12 @@
10
  /**
11
  * Secure Login service
12
  *
 
13
  * @since 6.1.0 Enriched error response with more details
14
  * @since 6.0.0 Initial implementation of the class
15
  *
16
  * @package AAM
17
- * @version 6.1.0
18
  */
19
  class AAM_Service_SecureLogin
20
  {
@@ -392,12 +393,15 @@ class AAM_Service_SecureLogin
392
  *
393
  * @return mixed
394
  *
 
 
 
395
  * @access public
396
- * @version 6.0.0
397
  */
398
  public function handleAjax($response, $user, $action)
399
  {
400
- if ($action === 'Service.SecureLogin.toggleUserStatus') {
401
  $result = $this->toggleUserStatus($user);
402
  $response = wp_json_encode(
403
  array('status' => ($result ? 'success' : 'failure'))
10
  /**
11
  * Secure Login service
12
  *
13
+ * @since 6.3.1 Fixed bug with not being able to lock user
14
  * @since 6.1.0 Enriched error response with more details
15
  * @since 6.0.0 Initial implementation of the class
16
  *
17
  * @package AAM
18
+ * @version 6.3.1
19
  */
20
  class AAM_Service_SecureLogin
21
  {
393
  *
394
  * @return mixed
395
  *
396
+ * @since 6.3.1 Fixed bug https://github.com/aamplugin/advanced-access-manager/issues/43
397
+ * @since 6.0.0 Initial implementation of the method
398
+ *
399
  * @access public
400
+ * @version 6.3.1
401
  */
402
  public function handleAjax($response, $user, $action)
403
  {
404
+ if ($action === 'Service_SecureLogin.toggleUserStatus') {
405
  $result = $this->toggleUserStatus($user);
406
  $response = wp_json_encode(
407
  array('status' => ($result ? 'success' : 'failure'))
lang/advanced-access-manager-en_US.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Advanced Access Manager\n"
4
- "POT-Creation-Date: 2019-12-30 22:05-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: \n"
7
  "Language-Team: AAMPlugin <support@aamplugin.com>\n"
@@ -24,7 +24,7 @@ msgstr ""
24
  msgid "WP 4.7.0 or higher is required."
25
  msgstr ""
26
 
27
- #: application/Addon/Repository.php:127
28
  msgid ""
29
  "Manage access to your WordPress website posts, pages, media, custom post "
30
  "types, categories, tags and custom taxonomies for any role, individual user, "
@@ -32,21 +32,21 @@ msgid ""
32
  "for frontend, backend or API levels."
33
  msgstr ""
34
 
35
- #: application/Addon/Repository.php:132
36
  msgid ""
37
  "Manage access to your WordPress website by users IP address or referred host "
38
  "and completely lock down the entire website if necessary. Define the "
39
  "unlimited number of whitelisted or blacklisted IPs or hosts."
40
  msgstr ""
41
 
42
- #: application/Addon/Repository.php:137
43
  msgid ""
44
  "Define and manage complex WordPress role hierarchy where all the access "
45
  "settings are propagated down the tree with the ability to override any "
46
  "settings for any specific role."
47
  msgstr ""
48
 
49
- #: application/Addon/Repository.php:152
50
  msgid ""
51
  "Get the complete list of all premium AAM addons in one package and all "
52
  "future premium addons will be included for now additional cost."
@@ -77,7 +77,7 @@ msgstr ""
77
 
78
  #: application/Backend/Feature/Main/Capability.php:337
79
  #: application/Backend/Feature/Main/Capability.php:360
80
- #: application/Backend/Feature/Main/Post.php:332
81
  #: application/Backend/tmpl/partial/post-access-form.php:81
82
  msgid "Backend"
83
  msgstr ""
@@ -109,7 +109,7 @@ msgstr ""
109
  msgid "Token is no longer valid"
110
  msgstr ""
111
 
112
- #: application/Backend/Feature/Main/Jwt.php:227 application/Service/Jwt.php:61
113
  msgid "JWT Tokens"
114
  msgstr ""
115
 
@@ -132,73 +132,73 @@ msgstr ""
132
  msgid "Metaboxes & Widgets"
133
  msgstr ""
134
 
135
- #: application/Backend/Feature/Main/Policy.php:94
136
  msgid "Generate Access Policy"
137
  msgstr ""
138
 
139
- #: application/Backend/Feature/Main/Policy.php:239
140
  msgid "(no title)"
141
  msgstr ""
142
 
143
- #: application/Backend/Feature/Main/Policy.php:433
144
  #, php-format
145
  msgid "Failed applying to %s"
146
  msgstr ""
147
 
148
- #: application/Backend/Feature/Main/Policy.php:474
149
- #: application/Service/AccessPolicy.php:68
150
- #: application/Service/AccessPolicy.php:175
151
  msgid "Access Policies"
152
  msgstr ""
153
 
154
- #: application/Backend/Feature/Main/Post.php:251
155
  msgid "307 - Temporary Redirect (Default)"
156
  msgstr ""
157
 
158
- #: application/Backend/Feature/Main/Post.php:252
159
  #: application/Backend/tmpl/service/uri.php:95
160
  msgid "301 - Moved Permanently"
161
  msgstr ""
162
 
163
- #: application/Backend/Feature/Main/Post.php:253
164
  #: application/Backend/tmpl/service/uri.php:97
165
  msgid "303 - See Other"
166
  msgstr ""
167
 
168
- #: application/Backend/Feature/Main/Post.php:329
169
  #: application/Backend/tmpl/partial/post-access-form.php:70
170
  msgid "Frontend"
171
  msgstr ""
172
 
173
- #: application/Backend/Feature/Main/Post.php:335
174
  #: application/Backend/tmpl/partial/post-access-form.php:92
175
  msgid "RESTful API"
176
  msgstr ""
177
 
178
- #: application/Backend/Feature/Main/Post.php:341
179
  msgid "All Areas"
180
  msgstr ""
181
 
182
- #: application/Backend/Feature/Main/Post.php:391
183
  #, php-format
184
  msgid "%d times"
185
  msgstr ""
186
 
187
- #: application/Backend/Feature/Main/Post.php:413
188
  #, php-format
189
  msgid "\"%s\" page"
190
  msgstr ""
191
 
192
- #: application/Backend/Feature/Main/Post.php:419
193
  #, php-format
194
  msgid "%s URL"
195
  msgstr ""
196
 
197
- #: application/Backend/Feature/Main/Post.php:423
198
  msgid "Login page"
199
  msgstr ""
200
 
201
- #: application/Backend/Feature/Main/Post.php:1107
202
  #: application/Service/Content.php:94
203
  msgid "Posts & Terms"
204
  msgstr ""
@@ -217,7 +217,7 @@ msgstr ""
217
  msgid "Toolbar"
218
  msgstr ""
219
 
220
- #: application/Backend/Feature/Main/Uri.php:135 application/Service/Uri.php:53
221
  msgid "URI Access"
222
  msgstr ""
223
 
@@ -269,7 +269,7 @@ msgstr ""
269
  msgid "Core Settings"
270
  msgstr ""
271
 
272
- #: application/Backend/Feature/Settings/Manager.php:165
273
  msgid "Invalid data"
274
  msgstr ""
275
 
@@ -324,11 +324,11 @@ msgstr ""
324
 
325
  #: application/Backend/Feature/Subject/User.php:225
326
  #: application/Backend/Feature/Subject/User.php:250
327
- #: application/Backend/View/Localization.php:148 media/js/aam.js:5163
328
  msgid "Unexpected application error"
329
  msgstr ""
330
 
331
- #: application/Backend/Manager.php:116
332
  #, php-format
333
  msgid ""
334
  "There was at least one error detected with the automated migration script. "
@@ -336,7 +336,7 @@ msgid ""
336
  "%ssupport@aamplugin.com%s for further assistance."
337
  msgstr ""
338
 
339
- #: application/Backend/Manager.php:260
340
  msgid "[Help us] to be more noticeable and submit your review"
341
  msgstr ""
342
 
@@ -344,261 +344,261 @@ msgstr ""
344
  msgid "You are not allowed to manage any AAM subject"
345
  msgstr ""
346
 
347
- #: application/Backend/View/Localization.php:36 media/js/aam.js:2187
348
  msgid "Search Capability"
349
  msgstr ""
350
 
351
- #: application/Backend/View/Localization.php:37 media/js/aam.js:2188
352
  msgid "_TOTAL_ capability(s)"
353
  msgstr ""
354
 
355
- #: application/Backend/View/Localization.php:38 media/js/aam.js:406
356
- #: media/js/aam.js:467 media/js/aam.js:1026 media/js/aam.js:2335
357
- #: media/js/aam.js:2377 media/js/aam.js:2640 media/js/aam.js:2661
358
- #: media/js/aam.js:2680 media/js/aam.js:2750 media/js/aam.js:2772
359
- #: media/js/aam.js:2791 media/js/aam.js:3691
360
  msgid "Saving..."
361
  msgstr ""
362
 
363
- #: application/Backend/View/Localization.php:39
364
  msgid "Execute Migration"
365
  msgstr ""
366
 
367
- #: application/Backend/View/Localization.php:40 media/js/aam.js:2343
368
  msgid "Failed to add new capability"
369
  msgstr ""
370
 
371
- #: application/Backend/View/Localization.php:41
372
  msgid "Application error"
373
  msgstr ""
374
 
375
- #: application/Backend/View/Localization.php:42 media/js/aam.js:2351
376
  msgid "Add Capability"
377
  msgstr ""
378
 
379
- #: application/Backend/View/Localization.php:43
380
- #: application/Backend/tmpl/service/capability.php:76 media/js/aam.js:2393
381
  msgid "Update Capability"
382
  msgstr ""
383
 
384
- #: application/Backend/View/Localization.php:44
385
  #: application/Backend/tmpl/service/menu.php:93
386
- #: application/Backend/tmpl/service/toolbar.php:70 media/js/aam.js:1671
387
- #: media/js/aam.js:1802
388
  msgid "Show Menu"
389
  msgstr ""
390
 
391
- #: application/Backend/View/Localization.php:45
392
  #: application/Backend/tmpl/service/menu.php:97
393
- #: application/Backend/tmpl/service/toolbar.php:74 media/js/aam.js:1681
394
- #: media/js/aam.js:1812
395
  msgid "Restrict Menu"
396
  msgstr ""
397
 
398
- #: application/Backend/View/Localization.php:46 media/js/aam.js:1982
399
  msgid "Failed to retrieve mataboxes"
400
  msgstr ""
401
 
402
- #: application/Backend/View/Localization.php:47 media/js/aam.js:2873
403
- #: media/js/aam.js:3578 media/js/aam.js:3770 media/js/aam.js:3996
404
  msgid "Search"
405
  msgstr ""
406
 
407
- #: application/Backend/View/Localization.php:48 media/js/aam.js:2874
408
  msgid "_TOTAL_ object(s)"
409
  msgstr ""
410
 
411
- #: application/Backend/View/Localization.php:49
412
  msgid "Failed"
413
  msgstr ""
414
 
415
- #: application/Backend/View/Localization.php:50 media/js/aam.js:60
416
- #: media/js/aam.js:4785
417
  msgid "Loading..."
418
  msgstr ""
419
 
420
- #: application/Backend/View/Localization.php:51 media/js/aam.js:65
421
  msgid "No role"
422
  msgstr ""
423
 
424
- #: application/Backend/View/Localization.php:52 media/js/aam.js:145
425
  msgid "Create New Role"
426
  msgstr ""
427
 
428
- #: application/Backend/View/Localization.php:53
429
  msgid "Search Role"
430
  msgstr ""
431
 
432
- #: application/Backend/View/Localization.php:54 media/js/aam.js:129
433
  msgid "_TOTAL_ role(s)"
434
  msgstr ""
435
 
436
- #: application/Backend/View/Localization.php:55
437
  #: application/Backend/tmpl/page/subject-panel-advanced.php:19
438
  #: application/Backend/tmpl/service/capability.php:30
439
  #: application/Backend/tmpl/service/capability.php:64
440
- #: application/Backend/tmpl/service/jwt.php:84 media/js/aam.js:1360
441
- #: media/js/aam.js:3781 media/js/aam.js:4011 media/js/aam.js:4095
442
  msgid "Create"
443
  msgstr ""
444
 
445
- #: application/Backend/View/Localization.php:56
446
  #: application/Backend/tmpl/page/subject-panel.php:24 media/js/aam.js:167
447
  msgid "Users"
448
  msgstr ""
449
 
450
- #: application/Backend/View/Localization.php:57
451
  msgid "Failed to add new role"
452
  msgstr ""
453
 
454
- #: application/Backend/View/Localization.php:58
455
  msgid "Add Role"
456
  msgstr ""
457
 
458
- #: application/Backend/View/Localization.php:59 media/js/aam.js:474
459
  msgid "Failed to update role"
460
  msgstr ""
461
 
462
- #: application/Backend/View/Localization.php:60
463
  #: application/Backend/tmpl/page/subject-panel-advanced.php:41
464
  #: application/Backend/tmpl/service/capability.php:90 media/js/aam.js:483
465
  msgid "Update"
466
  msgstr ""
467
 
468
- #: application/Backend/View/Localization.php:61
469
  #: application/Backend/tmpl/page/subject-panel-advanced.php:110
470
  #: application/Backend/tmpl/partial/post-access-form.php:156
471
- #: media/js/aam.js:1073 media/js/aam.js:2734
472
  msgid "Reset"
473
  msgstr ""
474
 
475
- #: application/Backend/View/Localization.php:62
476
  msgid "Update..."
477
  msgstr ""
478
 
479
- #: application/Backend/View/Localization.php:63 media/js/aam.js:506
480
- #: media/js/aam.js:1287 media/js/aam.js:2136 media/js/aam.js:3729
481
- #: media/js/aam.js:4113
482
  msgid "Deleting..."
483
  msgstr ""
484
 
485
- #: application/Backend/View/Localization.php:64 media/js/aam.js:512
486
  msgid "Failed to delete role"
487
  msgstr ""
488
 
489
- #: application/Backend/View/Localization.php:65
490
  #: application/Backend/tmpl/page/subject-panel-advanced.php:53
491
  msgid "Delete Role"
492
  msgstr ""
493
 
494
- #: application/Backend/View/Localization.php:66 media/js/aam.js:606
495
  msgid "Failed to lock user"
496
  msgstr ""
497
 
498
- #: application/Backend/View/Localization.php:67 media/js/aam.js:698
499
  msgid "Search user"
500
  msgstr ""
501
 
502
- #: application/Backend/View/Localization.php:68 media/js/aam.js:2723
503
  msgid "Counter was reset successfully"
504
  msgstr ""
505
 
506
- #: application/Backend/View/Localization.php:69 media/js/aam.js:699
507
  msgid "_TOTAL_ user(s)"
508
  msgstr ""
509
 
510
- #: application/Backend/View/Localization.php:70 media/js/aam.js:714
511
  msgid "Create New User"
512
  msgstr ""
513
 
514
- #: application/Backend/View/Localization.php:71
515
- #: application/Backend/tmpl/page/subject-panel.php:45 media/js/aam.js:762
516
- #: media/js/aam.js:1491
517
  msgid "Role"
518
  msgstr ""
519
 
520
- #: application/Backend/View/Localization.php:72 media/js/aam.js:4568
521
  msgid "Message has been sent"
522
  msgstr ""
523
 
524
- #: application/Backend/View/Localization.php:73
525
- #: application/Backend/tmpl/metabox/main-iframe.php:157 media/js/aam.js:4485
526
  msgid "Download Exported Settings"
527
  msgstr ""
528
 
529
- #: application/Backend/View/Localization.php:74
530
- #: application/Core/Subject/Default.php:36 media/js/aam.js:1186
531
  msgid "All Users, Roles and Visitor"
532
  msgstr ""
533
 
534
- #: application/Backend/View/Localization.php:75 media/js/aam.js:1157
535
- #: media/js/aam.js:1232 media/js/aam.js:4754
536
  msgid "Failed to apply policy changes"
537
  msgstr ""
538
 
539
- #: application/Backend/View/Localization.php:76
540
  #: application/Backend/tmpl/partial/visitor-principal-subject-tab.php:25
541
- #: media/js/aam.js:1151 media/js/aam.js:1160
542
  msgid "Attach Policy To Visitors"
543
  msgstr ""
544
 
545
- #: application/Backend/View/Localization.php:77
546
  #: application/Backend/tmpl/partial/visitor-principal-subject-tab.php:23
547
- #: media/js/aam.js:1149 media/js/aam.js:1162
548
  msgid "Detach Policy From Visitors"
549
  msgstr ""
550
 
551
- #: application/Backend/View/Localization.php:78 media/js/aam.js:645
552
- #: media/js/aam.js:3904
553
  msgid "Generating URL..."
554
  msgstr ""
555
 
556
- #: application/Backend/View/Localization.php:79
557
- #: application/Core/Subject/Visitor.php:43 media/js/aam.js:1112
558
  msgid "Anonymous"
559
  msgstr ""
560
 
561
- #: application/Backend/View/Localization.php:80 media/js/aam.js:1138
562
- #: media/js/aam.js:1213 media/js/aam.js:2002 media/js/aam.js:4397
563
- #: media/js/aam.js:4467
564
  msgid "Processing..."
565
  msgstr ""
566
 
567
- #: application/Backend/View/Localization.php:81 media/js/aam.js:723
568
  msgid "Loading roles..."
569
  msgstr ""
570
 
571
- #: application/Backend/View/Localization.php:82 media/js/aam.js:655
572
- #: media/js/aam.js:3915
573
  msgid "Failed to generate JWT token"
574
  msgstr ""
575
 
576
- #: application/Backend/View/Localization.php:83 media/js/aam.js:2104
577
  msgid "Failed to process request"
578
  msgstr ""
579
 
580
- #: application/Backend/View/Localization.php:84
581
  msgid "Current user"
582
  msgstr ""
583
 
584
- #: application/Backend/View/Localization.php:85
585
  msgid "Current role"
586
  msgstr ""
587
 
588
- #: application/Backend/View/Localization.php:86 media/js/aam.js:3055
589
  msgid "Manage Access"
590
  msgstr ""
591
 
592
- #: application/Backend/View/Localization.php:87 media/js/aam.js:740
593
  msgid "Filter by role"
594
  msgstr ""
595
 
596
- #: application/Backend/View/Localization.php:88
597
- #: application/Backend/View/PostOptionList.php:82 media/js/aam.js:3067
598
  msgid "Edit"
599
  msgstr ""
600
 
601
- #: application/Backend/View/Localization.php:89
602
  #: application/Backend/tmpl/page/subject-panel-advanced.php:111
603
  #: application/Backend/tmpl/partial/post-access-form.php:105
604
  #: application/Backend/tmpl/partial/post-access-form.php:127
@@ -606,266 +606,272 @@ msgstr ""
606
  #: application/Backend/tmpl/partial/post-access-form.php:230
607
  #: application/Backend/tmpl/partial/post-access-form.php:251
608
  #: application/Backend/tmpl/partial/post-access-form.php:273
609
- #: application/Backend/tmpl/service/uri.php:108 media/js/aam.js:1040
610
- #: media/js/aam.js:3708
611
  msgid "Save"
612
  msgstr ""
613
 
614
- #: application/Backend/View/Localization.php:90 media/js/aam.js:213
615
  msgid "Manage role"
616
  msgstr ""
617
 
618
- #: application/Backend/View/Localization.php:91 media/js/aam.js:234
619
  msgid "Edit role"
620
  msgstr ""
621
 
622
- #: application/Backend/View/Localization.php:92 media/js/aam.js:287
623
  #: media/js/aam.js:520
624
  msgid "Delete role"
625
  msgstr ""
626
 
627
- #: application/Backend/View/Localization.php:93 media/js/aam.js:258
628
  msgid "Clone role"
629
  msgstr ""
630
 
631
- #: application/Backend/View/Localization.php:94 media/js/aam.js:801
632
  msgid "Manage user"
633
  msgstr ""
634
 
635
- #: application/Backend/View/Localization.php:95 media/js/aam.js:850
636
  msgid "Edit user"
637
  msgstr ""
638
 
639
- #: application/Backend/View/Localization.php:96 media/js/aam.js:601
640
- #: media/js/aam.js:602 media/js/aam.js:871 media/js/aam.js:882
641
  msgid "Lock user"
642
  msgstr ""
643
 
644
- #: application/Backend/View/Localization.php:97 media/js/aam.js:595
645
- #: media/js/aam.js:596 media/js/aam.js:895 media/js/aam.js:906
646
  msgid "Unlock user"
647
  msgstr ""
648
 
649
- #: application/Backend/View/Localization.php:98 media/js/aam.js:2098
650
  msgid "WordPress core does not allow to grant this capability"
651
  msgstr ""
652
 
653
- #: application/Backend/View/Localization.php:99 media/js/aam.js:1224
654
- #: media/js/aam.js:1237
 
655
  msgid "Detach Policy From Everybody"
656
  msgstr ""
657
 
658
- #: application/Backend/View/Localization.php:100 media/js/aam.js:1226
659
- #: media/js/aam.js:1235
 
660
  msgid "Attach Policy To Everybody"
661
  msgstr ""
662
 
663
- #: application/Backend/View/Localization.php:101 media/js/aam.js:1349
664
  msgid "Search Policy"
665
  msgstr ""
666
 
667
- #: application/Backend/View/Localization.php:102 media/js/aam.js:1350
668
  msgid "_TOTAL_ Policies"
669
  msgstr ""
670
 
671
- #: application/Backend/View/Localization.php:103 media/js/aam.js:1390
672
  msgid "Apply Policy"
673
  msgstr ""
674
 
675
- #: application/Backend/View/Localization.php:104 media/js/aam.js:1410
676
  msgid "Revoke Policy"
677
  msgstr ""
678
 
679
- #: application/Backend/View/Localization.php:105
680
- #: application/Service/AccessPolicy.php:176 media/js/aam.js:1427
681
  msgid "Edit Policy"
682
  msgstr ""
683
 
684
- #: application/Backend/View/Localization.php:106
685
  #: application/Backend/tmpl/service/menu.php:79
686
- #: application/Backend/tmpl/service/toolbar.php:60 media/js/aam.js:1711
687
  msgid "Uncheck to allow"
688
  msgstr ""
689
 
690
- #: application/Backend/View/Localization.php:107
691
  #: application/Backend/tmpl/service/menu.php:79
692
- #: application/Backend/tmpl/service/toolbar.php:60 media/js/aam.js:1713
693
  msgid "Check to restrict"
694
  msgstr ""
695
 
696
- #: application/Backend/View/Localization.php:108
697
- #: application/Backend/tmpl/service/metabox.php:78 media/js/aam.js:1847
698
- #: media/js/aam.js:2036
699
  msgid "Uncheck to show"
700
  msgstr ""
701
 
702
- #: application/Backend/View/Localization.php:109
703
- #: application/Backend/tmpl/service/metabox.php:78 media/js/aam.js:1849
704
- #: media/js/aam.js:2038
705
  msgid "Check to hide"
706
  msgstr ""
707
 
708
- #: application/Backend/View/Localization.php:110
709
- #: application/Backend/tmpl/service/metabox.php:114 media/js/aam.js:2005
710
  msgid "Initialize"
711
  msgstr ""
712
 
713
- #: application/Backend/View/Localization.php:111 media/js/aam.js:2190
714
  msgid "No capabilities"
715
  msgstr ""
716
 
717
- #: application/Backend/View/Localization.php:112 media/js/aam.js:2895
718
  msgid "Post Type"
719
  msgstr ""
720
 
721
- #: application/Backend/View/Localization.php:113 media/js/aam.js:2900
722
  msgid "Hierarchical Taxonomy"
723
  msgstr ""
724
 
725
- #: application/Backend/View/Localization.php:114 media/js/aam.js:2905
726
  msgid "Hierarchical Term"
727
  msgstr ""
728
 
729
- #: application/Backend/View/Localization.php:115 media/js/aam.js:2910
730
  msgid "Tag Taxonomy"
731
  msgstr ""
732
 
733
- #: application/Backend/View/Localization.php:116 media/js/aam.js:2915
734
  msgid "Tag"
735
  msgstr ""
736
 
737
- #: application/Backend/View/Localization.php:117 media/js/aam.js:2926
738
  msgid "Customized Settings"
739
  msgstr ""
740
 
741
- #: application/Backend/View/Localization.php:118 media/js/aam.js:2996
742
- #: media/js/aam.js:3018
743
  msgid "Parent"
744
  msgstr ""
745
 
746
- #: application/Backend/View/Localization.php:119 media/js/aam.js:3041
747
  msgid "Drill-Down"
748
  msgstr ""
749
 
750
- #: application/Backend/View/Localization.php:120 media/js/aam.js:3579
751
  msgid "_TOTAL_ route(s)"
752
  msgstr ""
753
 
754
- #: application/Backend/View/Localization.php:121 media/js/aam.js:3581
755
  msgid "No API endpoints found. You might have APIs disabled."
756
  msgstr ""
757
 
758
- #: application/Backend/View/Localization.php:122 media/js/aam.js:3582
759
- #: media/js/aam.js:4000 media/js/aam.js:4351
760
  msgid "Nothing to show"
761
  msgstr ""
762
 
763
- #: application/Backend/View/Localization.php:123 media/js/aam.js:3699
764
  msgid "Failed to save URI rule"
765
  msgstr ""
766
 
767
- #: application/Backend/View/Localization.php:124 media/js/aam.js:3735
768
  msgid "Failed to delete URI rule"
769
  msgstr ""
770
 
771
- #: application/Backend/View/Localization.php:125 media/js/aam.js:3771
772
  msgid "_TOTAL_ URI(s)"
773
  msgstr ""
774
 
775
- #: application/Backend/View/Localization.php:126 media/js/aam.js:3810
776
  msgid "Edit Rule"
777
  msgstr ""
778
 
779
- #: application/Backend/View/Localization.php:127 media/js/aam.js:3822
780
  msgid "Delete Rule"
781
  msgstr ""
782
 
783
- #: application/Backend/View/Localization.php:128 media/js/aam.js:3837
784
  msgid "Denied"
785
  msgstr ""
786
 
787
- #: application/Backend/View/Localization.php:129 media/js/aam.js:3844
788
  msgid "Redirected"
789
  msgstr ""
790
 
791
- #: application/Backend/View/Localization.php:130 media/js/aam.js:3849
792
  msgid "Callback"
793
  msgstr ""
794
 
795
- #: application/Backend/View/Localization.php:131 media/js/aam.js:3854
796
  msgid "Allowed"
797
  msgstr ""
798
 
799
- #: application/Backend/View/Localization.php:132 media/js/aam.js:3900
800
  msgid "Generating token..."
801
  msgstr ""
802
 
803
- #: application/Backend/View/Localization.php:133 media/js/aam.js:3997
804
  msgid "_TOTAL_ token(s)"
805
  msgstr ""
806
 
807
- #: application/Backend/View/Localization.php:134 media/js/aam.js:3999
808
  msgid "No JWT tokens have been generated."
809
  msgstr ""
810
 
811
- #: application/Backend/View/Localization.php:135 media/js/aam.js:4043
812
  msgid "Delete Token"
813
  msgstr ""
814
 
815
- #: application/Backend/View/Localization.php:136 media/js/aam.js:4056
816
  msgid "View Token"
817
  msgstr ""
818
 
819
- #: application/Backend/View/Localization.php:137 media/js/aam.js:4081
820
  msgid "Creating..."
821
  msgstr ""
822
 
823
- #: application/Backend/View/Localization.php:138 media/js/aam.js:4348
824
  msgid "Search Service"
825
  msgstr ""
826
 
827
- #: application/Backend/View/Localization.php:139 media/js/aam.js:4349
828
  msgid "_TOTAL_ service(s)"
829
  msgstr ""
830
 
831
- #: application/Backend/View/Localization.php:140
832
  #: application/Backend/tmpl/settings/content.php:19
833
  #: application/Backend/tmpl/settings/core.php:16
834
- #: application/Backend/tmpl/settings/security.php:16 media/js/aam.js:4361
835
  msgid "Enabled"
836
  msgstr ""
837
 
838
- #: application/Backend/View/Localization.php:141
839
  #: application/Backend/tmpl/settings/content.php:19
840
  #: application/Backend/tmpl/settings/core.php:16
841
- #: application/Backend/tmpl/settings/security.php:16 media/js/aam.js:4361
842
  msgid "Disabled"
843
  msgstr ""
844
 
845
- #: application/Backend/View/Localization.php:142 media/js/aam.js:4403
846
  msgid "All settings has been cleared successfully"
847
  msgstr ""
848
 
849
- #: application/Backend/View/Localization.php:143
850
- #: application/Backend/tmpl/metabox/main-iframe.php:188 media/js/aam.js:4415
851
  msgid "Clear"
852
  msgstr ""
853
 
854
- #: application/Backend/View/Localization.php:144
855
  #: application/Backend/tmpl/page/subject-panel-advanced.php:102
856
- #: application/Backend/tmpl/partial/role-inheritance.php:7 media/js/aam.js:4790
857
  msgid "Select Role"
858
  msgstr ""
859
 
860
- #: application/Backend/View/Localization.php:145 media/js/aam.js:5083
 
 
 
 
861
  msgid "Data has been saved to clipboard"
862
  msgstr ""
863
 
864
- #: application/Backend/View/Localization.php:146 media/js/aam.js:5087
865
  msgid "Failed to save data to clipboard"
866
  msgstr ""
867
 
868
- #: application/Backend/View/Localization.php:147 media/js/aam.js:5159
869
  msgid "Operation completed successfully"
870
  msgstr ""
871
 
@@ -903,7 +909,7 @@ msgid "Teaser Message"
903
  msgstr ""
904
 
905
  #: application/Backend/View/PostOptionList.php:48
906
- #: application/Backend/tmpl/metabox/main-iframe.php:104
907
  msgid "Message"
908
  msgstr ""
909
 
@@ -995,8 +1001,8 @@ msgstr ""
995
  #: application/Backend/View/PostOptionList.php:87
996
  #: application/Backend/tmpl/page/subject-panel-advanced.php:59
997
  #: application/Backend/tmpl/service/jwt.php:136
998
- #: application/Backend/tmpl/service/uri.php:130 media/js/aam.js:3743
999
- #: media/js/aam.js:4127
1000
  msgid "Delete"
1001
  msgstr ""
1002
 
@@ -1034,26 +1040,26 @@ msgstr ""
1034
  msgid "Notifications"
1035
  msgstr ""
1036
 
1037
- #: application/Backend/tmpl/metabox/main-iframe.php:56
1038
  msgid "Access"
1039
  msgstr ""
1040
 
1041
- #: application/Backend/tmpl/metabox/main-iframe.php:61
1042
  msgid "Settings"
1043
  msgstr ""
1044
 
1045
- #: application/Backend/tmpl/metabox/main-iframe.php:67
1046
  msgid "Add-Ons"
1047
  msgstr ""
1048
 
1049
- #: application/Backend/tmpl/metabox/main-iframe.php:73
1050
  msgid "Help"
1051
  msgstr ""
1052
 
1053
- #: application/Backend/tmpl/metabox/main-iframe.php:86
1054
- #: application/Backend/tmpl/metabox/main-iframe.php:117
1055
- #: application/Backend/tmpl/metabox/main-iframe.php:171
1056
- #: application/Backend/tmpl/metabox/main-iframe.php:181
1057
  #: application/Backend/tmpl/page/addon-panel.php:81
1058
  #: application/Backend/tmpl/page/addon-panel.php:92
1059
  #: application/Backend/tmpl/page/addon-panel.php:102
@@ -1110,11 +1116,11 @@ msgstr ""
1110
  msgid "Close"
1111
  msgstr ""
1112
 
1113
- #: application/Backend/tmpl/metabox/main-iframe.php:87
1114
  msgid "Ask For Help"
1115
  msgstr ""
1116
 
1117
- #: application/Backend/tmpl/metabox/main-iframe.php:90
1118
  #, php-format
1119
  msgid ""
1120
  "Before submitting a support request, please get familiar with %show AAM "
@@ -1122,112 +1128,112 @@ msgid ""
1122
  "attention to how do we prioritize support."
1123
  msgstr ""
1124
 
1125
- #: application/Backend/tmpl/metabox/main-iframe.php:93
1126
  #: application/Backend/tmpl/service/menu.php:151
1127
  #: application/Backend/tmpl/service/toolbar.php:93
1128
  msgid "Name"
1129
  msgstr ""
1130
 
1131
- #: application/Backend/tmpl/metabox/main-iframe.php:94
1132
  msgid "How should we call you"
1133
  msgstr ""
1134
 
1135
- #: application/Backend/tmpl/metabox/main-iframe.php:98
1136
  msgid "Email"
1137
  msgstr ""
1138
 
1139
- #: application/Backend/tmpl/metabox/main-iframe.php:99
1140
  msgid "Enter your email"
1141
  msgstr ""
1142
 
1143
- #: application/Backend/tmpl/metabox/main-iframe.php:100
1144
  msgid "The rest of the conversation will be conducted via provided email"
1145
  msgstr ""
1146
 
1147
- #: application/Backend/tmpl/metabox/main-iframe.php:105
1148
  msgid "Enter your message here..."
1149
  msgstr ""
1150
 
1151
- #: application/Backend/tmpl/metabox/main-iframe.php:106
1152
  msgid "Please be [kind], [specific] and [patient], and let us do the rest"
1153
  msgstr ""
1154
 
1155
- #: application/Backend/tmpl/metabox/main-iframe.php:111
1156
  #, php-format
1157
  msgid "Attach system details (%slearn more here%s)"
1158
  msgstr ""
1159
 
1160
- #: application/Backend/tmpl/metabox/main-iframe.php:116
1161
  msgid "Request Support"
1162
  msgstr ""
1163
 
1164
- #: application/Backend/tmpl/metabox/main-iframe.php:130
1165
  msgid "Export/Import AAM Settings"
1166
  msgstr ""
1167
 
1168
- #: application/Backend/tmpl/metabox/main-iframe.php:135
1169
  msgid "Reset AAM Settings"
1170
  msgstr ""
1171
 
1172
- #: application/Backend/tmpl/metabox/main-iframe.php:145
1173
  msgid ""
1174
  "Your browser does not support modern way to work with files. The Export/"
1175
  "Import feature will not work properly. Consider to use the latest Chrome, "
1176
  "Firefox or Safari browser instead."
1177
  msgstr ""
1178
 
1179
- #: application/Backend/tmpl/metabox/main-iframe.php:149
1180
  msgid "Export"
1181
  msgstr ""
1182
 
1183
- #: application/Backend/tmpl/metabox/main-iframe.php:150
1184
  msgid "Import"
1185
  msgstr ""
1186
 
1187
- #: application/Backend/tmpl/metabox/main-iframe.php:155
1188
  msgid ""
1189
  "Export AAM settings so they can be imported to a different location. To "
1190
  "learn more about customizing exported data, refer to the \"How Import/Export "
1191
  "feature works\" article."
1192
  msgstr ""
1193
 
1194
- #: application/Backend/tmpl/metabox/main-iframe.php:162
1195
  msgid ""
1196
  "Select a *.json file with valid AAM settings. All the current AAM settings "
1197
  "will be lost and replaced with imported settings."
1198
  msgstr ""
1199
 
1200
- #: application/Backend/tmpl/metabox/main-iframe.php:182
1201
  msgid "Clear all settings"
1202
  msgstr ""
1203
 
1204
- #: application/Backend/tmpl/metabox/main-iframe.php:185
1205
  msgid "All AAM settings will be removed."
1206
  msgstr ""
1207
 
1208
- #: application/Backend/tmpl/metabox/main-iframe.php:189
1209
  msgid "Cancel"
1210
  msgstr ""
1211
 
1212
- #: application/Backend/tmpl/metabox/main-iframe.php:201
1213
  msgid ""
1214
  "With the [Enterprise Package] get dedicated support channel and all the "
1215
  "premium add-ons for a [bulk number of live websites]"
1216
  msgstr ""
1217
 
1218
- #: application/Backend/tmpl/metabox/main-iframe.php:202
1219
  #: application/Backend/tmpl/page/addon-panel.php:66
1220
  msgid "Read More"
1221
  msgstr ""
1222
 
1223
- #: application/Backend/tmpl/metabox/policy-metabox.php:32
1224
  #, php-format
1225
  msgid ""
1226
  "To learn more about Access &amp; Security policy document, please check "
1227
  "[%sAccess &amp; Security Policy%s] page."
1228
  msgstr ""
1229
 
1230
- #: application/Backend/tmpl/metabox/policy-metabox.php:60
1231
  msgid "Syntax Error"
1232
  msgstr ""
1233
 
@@ -1405,8 +1411,21 @@ msgid ""
1405
  "default access settings."
1406
  msgstr ""
1407
 
1408
- #: application/Backend/tmpl/partial/default-principal-subject-tab.php:6
1409
- msgid "This feature is allowed only with [Plus Package] addon."
 
 
 
 
 
 
 
 
 
 
 
 
 
1410
  msgstr ""
1411
 
1412
  #: application/Backend/tmpl/partial/default-subject-tab.php:5
@@ -1455,6 +1474,12 @@ msgid ""
1455
  "WordPress theme to find out what causes the issue."
1456
  msgstr ""
1457
 
 
 
 
 
 
 
1458
  #: application/Backend/tmpl/partial/post-access-form.php:12
1459
  #: application/Backend/tmpl/service/login-redirect.php:17
1460
  #: application/Backend/tmpl/service/logout-redirect.php:17
@@ -1964,7 +1989,7 @@ msgid "URI"
1964
  msgstr ""
1965
 
1966
  #: application/Backend/tmpl/service/menu.php:163
1967
- #: application/Backend/tmpl/service/toolbar.php:101 media/js/aam.js:762
1968
  msgid "ID"
1969
  msgstr ""
1970
 
@@ -2051,12 +2076,12 @@ msgid "Reset To Default"
2051
  msgstr ""
2052
 
2053
  #: application/Backend/tmpl/service/policy.php:35
2054
- #: application/Service/AccessPolicy.php:177
2055
  msgid "Policy"
2056
  msgstr ""
2057
 
2058
  #: application/Backend/tmpl/service/policy.php:51
2059
- #: application/Backend/tmpl/service/policy.php:57 media/js/aam.js:1451
2060
  msgid "Delete Policy"
2061
  msgstr ""
2062
 
@@ -2093,18 +2118,11 @@ msgstr ""
2093
  msgid "Assignee(s)"
2094
  msgstr ""
2095
 
2096
- #: application/Backend/tmpl/service/policy.php:97 media/js/aam.js:1369
2097
- #: media/js/aam.js:1475
2098
  msgid "Install"
2099
  msgstr ""
2100
 
2101
- #: application/Backend/tmpl/service/policy.php:107
2102
- #, php-format
2103
- msgid ""
2104
- "%s[AAM Plus Package]%s extension is required in order to apply Access &amp; "
2105
- "Security Policies to everybody all together."
2106
- msgstr ""
2107
-
2108
  #: application/Backend/tmpl/service/post.php:11
2109
  msgid "Root"
2110
  msgstr ""
@@ -2383,21 +2401,21 @@ msgstr ""
2383
  msgid "Token has been revoked"
2384
  msgstr ""
2385
 
2386
- #: application/Core/Policy/Validator.php:123
2387
  #: tests/Service/AccessPolicy/PolicyValidationTest.php:54
2388
  msgid "The policy is not valid JSON object"
2389
  msgstr ""
2390
 
2391
- #: application/Core/Policy/Validator.php:142
2392
  #: tests/Service/AccessPolicy/PolicyValidationTest.php:37
2393
  msgid "The policy document is empty"
2394
  msgstr ""
2395
 
2396
- #: application/Core/Policy/Validator.php:192
2397
- msgid "The {$app} does not satisfy minimum required version"
2398
  msgstr ""
2399
 
2400
- #: application/Core/Policy/Validator.php:194
2401
  msgid "The {$app} is required"
2402
  msgstr ""
2403
 
@@ -2407,34 +2425,34 @@ msgstr ""
2407
  msgid "Access Denied"
2408
  msgstr ""
2409
 
2410
- #: application/Service/AccessPolicy.php:69
2411
  msgid ""
2412
  "Manage access to the website with well documented JSON access policies for "
2413
  "any user, role or visitors. Keep the paper-trail of all the access changes "
2414
  "with policy revisions."
2415
  msgstr ""
2416
 
2417
- #: application/Service/AccessPolicy.php:99
2418
  msgid "Access Policy Document"
2419
  msgstr ""
2420
 
2421
- #: application/Service/AccessPolicy.php:110
2422
  msgid "Access Policy Assignee"
2423
  msgstr ""
2424
 
2425
- #: application/Service/AccessPolicy.php:173
2426
  msgid "Access Policy"
2427
  msgstr ""
2428
 
2429
- #: application/Service/AccessPolicy.php:178
2430
  msgid "Add New Policy"
2431
  msgstr ""
2432
 
2433
- #: application/Service/AccessPolicy.php:179
2434
  msgid "New Policy"
2435
  msgstr ""
2436
 
2437
- #: application/Service/AccessPolicy.php:181
2438
  msgid "Access and security policy"
2439
  msgstr ""
2440
 
@@ -2476,7 +2494,7 @@ msgstr ""
2476
  msgid "You are not allowed to publish this content"
2477
  msgstr ""
2478
 
2479
- #: application/Service/Content.php:637
2480
  msgid "[No teaser message provided]"
2481
  msgstr ""
2482
 
@@ -2497,28 +2515,28 @@ msgid ""
2497
  "granular access control to the backend core features."
2498
  msgstr ""
2499
 
2500
- #: application/Service/Jwt.php:62
2501
  msgid ""
2502
  "Manage the website authentication with JWT Bearer token. The service "
2503
  "facilitates the ability to manage the list of issued JWT token for any user, "
2504
  "revoke them or issue new on demand."
2505
  msgstr ""
2506
 
2507
- #: application/Service/Jwt.php:110
2508
  msgid "Issue JWT Token"
2509
  msgstr ""
2510
 
2511
- #: application/Service/Jwt.php:160 application/Service/Jwt.php:170
2512
- #: application/Service/Jwt.php:182 application/Service/Jwt.php:192
2513
- #: application/Service/Jwt.php:204
2514
  msgid "JWT token."
2515
  msgstr ""
2516
 
2517
- #: application/Service/Jwt.php:314
2518
  msgid "JWT token is not refreshable"
2519
  msgstr ""
2520
 
2521
- #: application/Service/Jwt.php:353
2522
  msgid "Failed to revoke provided token"
2523
  msgstr ""
2524
 
@@ -2542,11 +2560,11 @@ msgid ""
2542
  "data spoofing."
2543
  msgstr ""
2544
 
2545
- #: application/Service/Multisite.php:57
2546
  msgid "Multisite Settings Sync"
2547
  msgstr ""
2548
 
2549
- #: application/Service/Multisite.php:58
2550
  msgid ""
2551
  "Automatically synchronize changes to the list of roles and capabilities as "
2552
  "well as all access settings (if configured accordingly)."
@@ -2640,7 +2658,7 @@ msgid ""
2640
  "protect from direct access via link."
2641
  msgstr ""
2642
 
2643
- #: application/Service/Uri.php:54
2644
  msgid ""
2645
  "Manage direct access to the website URIs for any role or individual user. "
2646
  "Define either explicit URI or wildcard (with Plus Package addon) as well as "
@@ -2676,61 +2694,61 @@ msgstr ""
2676
  msgid "Add role"
2677
  msgstr ""
2678
 
2679
- #: media/js/aam.js:1059 media/js/aam.js:2622 media/js/aam.js:2714
2680
- #: media/js/aam.js:5199
2681
  msgid "Resetting..."
2682
  msgstr ""
2683
 
2684
- #: media/js/aam.js:1487
2685
  msgid "Everybody"
2686
  msgstr ""
2687
 
2688
- #: media/js/aam.js:1489
2689
  msgid "Visitors"
2690
  msgstr ""
2691
 
2692
- #: media/js/aam.js:1496
2693
  msgid "Current User"
2694
  msgstr ""
2695
 
2696
- #: media/js/aam.js:1498
2697
  msgid "User ID"
2698
  msgstr ""
2699
 
2700
- #: media/js/aam.js:1547
2701
  msgid "Installing..."
2702
  msgstr ""
2703
 
2704
- #: media/js/aam.js:1564
2705
  msgid "Access Policy was installed successfully"
2706
  msgstr ""
2707
 
2708
- #: media/js/aam.js:2890
2709
  msgid "Post"
2710
  msgstr ""
2711
 
2712
- #: media/js/aam.js:2956
2713
  msgid "post type"
2714
  msgstr ""
2715
 
2716
- #: media/js/aam.js:2961 media/js/aam.js:2987 media/js/aam.js:3000
2717
- #: media/js/aam.js:3009 media/js/aam.js:3022
2718
  msgid "ID:"
2719
  msgstr ""
2720
 
2721
- #: media/js/aam.js:2983
2722
  msgid "taxonomy"
2723
  msgstr ""
2724
 
2725
- #: media/js/aam.js:4472
2726
  msgid "Settings has been exported successfully"
2727
  msgstr ""
2728
 
2729
- #: media/js/aam.js:4518
2730
  msgid "Settings has been imported successfully"
2731
  msgstr ""
2732
 
2733
- #: media/js/aam.js:4539
2734
  msgid "Invalid settings"
2735
  msgstr ""
2736
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Advanced Access Manager\n"
4
+ "POT-Creation-Date: 2020-01-26 15:20-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: \n"
7
  "Language-Team: AAMPlugin <support@aamplugin.com>\n"
24
  msgid "WP 4.7.0 or higher is required."
25
  msgstr ""
26
 
27
+ #: application/Addon/Repository.php:133
28
  msgid ""
29
  "Manage access to your WordPress website posts, pages, media, custom post "
30
  "types, categories, tags and custom taxonomies for any role, individual user, "
32
  "for frontend, backend or API levels."
33
  msgstr ""
34
 
35
+ #: application/Addon/Repository.php:138
36
  msgid ""
37
  "Manage access to your WordPress website by users IP address or referred host "
38
  "and completely lock down the entire website if necessary. Define the "
39
  "unlimited number of whitelisted or blacklisted IPs or hosts."
40
  msgstr ""
41
 
42
+ #: application/Addon/Repository.php:143
43
  msgid ""
44
  "Define and manage complex WordPress role hierarchy where all the access "
45
  "settings are propagated down the tree with the ability to override any "
46
  "settings for any specific role."
47
  msgstr ""
48
 
49
+ #: application/Addon/Repository.php:158
50
  msgid ""
51
  "Get the complete list of all premium AAM addons in one package and all "
52
  "future premium addons will be included for now additional cost."
77
 
78
  #: application/Backend/Feature/Main/Capability.php:337
79
  #: application/Backend/Feature/Main/Capability.php:360
80
+ #: application/Backend/Feature/Main/Post.php:335
81
  #: application/Backend/tmpl/partial/post-access-form.php:81
82
  msgid "Backend"
83
  msgstr ""
109
  msgid "Token is no longer valid"
110
  msgstr ""
111
 
112
+ #: application/Backend/Feature/Main/Jwt.php:227 application/Service/Jwt.php:63
113
  msgid "JWT Tokens"
114
  msgstr ""
115
 
132
  msgid "Metaboxes & Widgets"
133
  msgstr ""
134
 
135
+ #: application/Backend/Feature/Main/Policy.php:103
136
  msgid "Generate Access Policy"
137
  msgstr ""
138
 
139
+ #: application/Backend/Feature/Main/Policy.php:248
140
  msgid "(no title)"
141
  msgstr ""
142
 
143
+ #: application/Backend/Feature/Main/Policy.php:478
144
  #, php-format
145
  msgid "Failed applying to %s"
146
  msgstr ""
147
 
148
+ #: application/Backend/Feature/Main/Policy.php:519
149
+ #: application/Service/AccessPolicy.php:69
150
+ #: application/Service/AccessPolicy.php:184
151
  msgid "Access Policies"
152
  msgstr ""
153
 
154
+ #: application/Backend/Feature/Main/Post.php:253
155
  msgid "307 - Temporary Redirect (Default)"
156
  msgstr ""
157
 
158
+ #: application/Backend/Feature/Main/Post.php:254
159
  #: application/Backend/tmpl/service/uri.php:95
160
  msgid "301 - Moved Permanently"
161
  msgstr ""
162
 
163
+ #: application/Backend/Feature/Main/Post.php:255
164
  #: application/Backend/tmpl/service/uri.php:97
165
  msgid "303 - See Other"
166
  msgstr ""
167
 
168
+ #: application/Backend/Feature/Main/Post.php:332
169
  #: application/Backend/tmpl/partial/post-access-form.php:70
170
  msgid "Frontend"
171
  msgstr ""
172
 
173
+ #: application/Backend/Feature/Main/Post.php:338
174
  #: application/Backend/tmpl/partial/post-access-form.php:92
175
  msgid "RESTful API"
176
  msgstr ""
177
 
178
+ #: application/Backend/Feature/Main/Post.php:344
179
  msgid "All Areas"
180
  msgstr ""
181
 
182
+ #: application/Backend/Feature/Main/Post.php:394
183
  #, php-format
184
  msgid "%d times"
185
  msgstr ""
186
 
187
+ #: application/Backend/Feature/Main/Post.php:416
188
  #, php-format
189
  msgid "\"%s\" page"
190
  msgstr ""
191
 
192
+ #: application/Backend/Feature/Main/Post.php:422
193
  #, php-format
194
  msgid "%s URL"
195
  msgstr ""
196
 
197
+ #: application/Backend/Feature/Main/Post.php:426
198
  msgid "Login page"
199
  msgstr ""
200
 
201
+ #: application/Backend/Feature/Main/Post.php:1110
202
  #: application/Service/Content.php:94
203
  msgid "Posts & Terms"
204
  msgstr ""
217
  msgid "Toolbar"
218
  msgstr ""
219
 
220
+ #: application/Backend/Feature/Main/Uri.php:146 application/Service/Uri.php:56
221
  msgid "URI Access"
222
  msgstr ""
223
 
269
  msgid "Core Settings"
270
  msgstr ""
271
 
272
+ #: application/Backend/Feature/Settings/Manager.php:168
273
  msgid "Invalid data"
274
  msgstr ""
275
 
324
 
325
  #: application/Backend/Feature/Subject/User.php:225
326
  #: application/Backend/Feature/Subject/User.php:250
327
+ #: application/Backend/View/Localization.php:151 media/js/aam.js:5190
328
  msgid "Unexpected application error"
329
  msgstr ""
330
 
331
+ #: application/Backend/Manager.php:113
332
  #, php-format
333
  msgid ""
334
  "There was at least one error detected with the automated migration script. "
336
  "%ssupport@aamplugin.com%s for further assistance."
337
  msgstr ""
338
 
339
+ #: application/Backend/Manager.php:258
340
  msgid "[Help us] to be more noticeable and submit your review"
341
  msgstr ""
342
 
344
  msgid "You are not allowed to manage any AAM subject"
345
  msgstr ""
346
 
347
+ #: application/Backend/View/Localization.php:38 media/js/aam.js:2238
348
  msgid "Search Capability"
349
  msgstr ""
350
 
351
+ #: application/Backend/View/Localization.php:39 media/js/aam.js:2239
352
  msgid "_TOTAL_ capability(s)"
353
  msgstr ""
354
 
355
+ #: application/Backend/View/Localization.php:40 media/js/aam.js:406
356
+ #: media/js/aam.js:467 media/js/aam.js:1027 media/js/aam.js:2386
357
+ #: media/js/aam.js:2428 media/js/aam.js:2692 media/js/aam.js:2713
358
+ #: media/js/aam.js:2732 media/js/aam.js:2802 media/js/aam.js:2824
359
+ #: media/js/aam.js:2843 media/js/aam.js:3745
360
  msgid "Saving..."
361
  msgstr ""
362
 
363
+ #: application/Backend/View/Localization.php:41
364
  msgid "Execute Migration"
365
  msgstr ""
366
 
367
+ #: application/Backend/View/Localization.php:42 media/js/aam.js:2394
368
  msgid "Failed to add new capability"
369
  msgstr ""
370
 
371
+ #: application/Backend/View/Localization.php:43
372
  msgid "Application error"
373
  msgstr ""
374
 
375
+ #: application/Backend/View/Localization.php:44 media/js/aam.js:2402
376
  msgid "Add Capability"
377
  msgstr ""
378
 
379
+ #: application/Backend/View/Localization.php:45
380
+ #: application/Backend/tmpl/service/capability.php:76 media/js/aam.js:2444
381
  msgid "Update Capability"
382
  msgstr ""
383
 
384
+ #: application/Backend/View/Localization.php:46
385
  #: application/Backend/tmpl/service/menu.php:93
386
+ #: application/Backend/tmpl/service/toolbar.php:70 media/js/aam.js:1722
387
+ #: media/js/aam.js:1853
388
  msgid "Show Menu"
389
  msgstr ""
390
 
391
+ #: application/Backend/View/Localization.php:47
392
  #: application/Backend/tmpl/service/menu.php:97
393
+ #: application/Backend/tmpl/service/toolbar.php:74 media/js/aam.js:1732
394
+ #: media/js/aam.js:1863
395
  msgid "Restrict Menu"
396
  msgstr ""
397
 
398
+ #: application/Backend/View/Localization.php:48 media/js/aam.js:2033
399
  msgid "Failed to retrieve mataboxes"
400
  msgstr ""
401
 
402
+ #: application/Backend/View/Localization.php:49 media/js/aam.js:2925
403
+ #: media/js/aam.js:3630 media/js/aam.js:3829 media/js/aam.js:4057
404
  msgid "Search"
405
  msgstr ""
406
 
407
+ #: application/Backend/View/Localization.php:50 media/js/aam.js:2926
408
  msgid "_TOTAL_ object(s)"
409
  msgstr ""
410
 
411
+ #: application/Backend/View/Localization.php:51
412
  msgid "Failed"
413
  msgstr ""
414
 
415
+ #: application/Backend/View/Localization.php:52 media/js/aam.js:60
416
+ #: media/js/aam.js:4810
417
  msgid "Loading..."
418
  msgstr ""
419
 
420
+ #: application/Backend/View/Localization.php:53 media/js/aam.js:65
421
  msgid "No role"
422
  msgstr ""
423
 
424
+ #: application/Backend/View/Localization.php:54 media/js/aam.js:145
425
  msgid "Create New Role"
426
  msgstr ""
427
 
428
+ #: application/Backend/View/Localization.php:55
429
  msgid "Search Role"
430
  msgstr ""
431
 
432
+ #: application/Backend/View/Localization.php:56 media/js/aam.js:129
433
  msgid "_TOTAL_ role(s)"
434
  msgstr ""
435
 
436
+ #: application/Backend/View/Localization.php:57
437
  #: application/Backend/tmpl/page/subject-panel-advanced.php:19
438
  #: application/Backend/tmpl/service/capability.php:30
439
  #: application/Backend/tmpl/service/capability.php:64
440
+ #: application/Backend/tmpl/service/jwt.php:84 media/js/aam.js:1391
441
+ #: media/js/aam.js:3840 media/js/aam.js:4072 media/js/aam.js:4156
442
  msgid "Create"
443
  msgstr ""
444
 
445
+ #: application/Backend/View/Localization.php:58
446
  #: application/Backend/tmpl/page/subject-panel.php:24 media/js/aam.js:167
447
  msgid "Users"
448
  msgstr ""
449
 
450
+ #: application/Backend/View/Localization.php:59
451
  msgid "Failed to add new role"
452
  msgstr ""
453
 
454
+ #: application/Backend/View/Localization.php:60
455
  msgid "Add Role"
456
  msgstr ""
457
 
458
+ #: application/Backend/View/Localization.php:61 media/js/aam.js:474
459
  msgid "Failed to update role"
460
  msgstr ""
461
 
462
+ #: application/Backend/View/Localization.php:62
463
  #: application/Backend/tmpl/page/subject-panel-advanced.php:41
464
  #: application/Backend/tmpl/service/capability.php:90 media/js/aam.js:483
465
  msgid "Update"
466
  msgstr ""
467
 
468
+ #: application/Backend/View/Localization.php:63
469
  #: application/Backend/tmpl/page/subject-panel-advanced.php:110
470
  #: application/Backend/tmpl/partial/post-access-form.php:156
471
+ #: media/js/aam.js:1074 media/js/aam.js:2786
472
  msgid "Reset"
473
  msgstr ""
474
 
475
+ #: application/Backend/View/Localization.php:64
476
  msgid "Update..."
477
  msgstr ""
478
 
479
+ #: application/Backend/View/Localization.php:65 media/js/aam.js:506
480
+ #: media/js/aam.js:1288 media/js/aam.js:2187 media/js/aam.js:3784
481
+ #: media/js/aam.js:4174
482
  msgid "Deleting..."
483
  msgstr ""
484
 
485
+ #: application/Backend/View/Localization.php:66 media/js/aam.js:512
486
  msgid "Failed to delete role"
487
  msgstr ""
488
 
489
+ #: application/Backend/View/Localization.php:67
490
  #: application/Backend/tmpl/page/subject-panel-advanced.php:53
491
  msgid "Delete Role"
492
  msgstr ""
493
 
494
+ #: application/Backend/View/Localization.php:68 media/js/aam.js:606
495
  msgid "Failed to lock user"
496
  msgstr ""
497
 
498
+ #: application/Backend/View/Localization.php:69 media/js/aam.js:698
499
  msgid "Search user"
500
  msgstr ""
501
 
502
+ #: application/Backend/View/Localization.php:70 media/js/aam.js:2775
503
  msgid "Counter was reset successfully"
504
  msgstr ""
505
 
506
+ #: application/Backend/View/Localization.php:71 media/js/aam.js:699
507
  msgid "_TOTAL_ user(s)"
508
  msgstr ""
509
 
510
+ #: application/Backend/View/Localization.php:72 media/js/aam.js:714
511
  msgid "Create New User"
512
  msgstr ""
513
 
514
+ #: application/Backend/View/Localization.php:73
515
+ #: application/Backend/tmpl/page/subject-panel.php:45 media/js/aam.js:760
516
+ #: media/js/aam.js:1523
517
  msgid "Role"
518
  msgstr ""
519
 
520
+ #: application/Backend/View/Localization.php:74 media/js/aam.js:4625
521
  msgid "Message has been sent"
522
  msgstr ""
523
 
524
+ #: application/Backend/View/Localization.php:75
525
+ #: application/Backend/tmpl/metabox/main-iframe.php:159 media/js/aam.js:4542
526
  msgid "Download Exported Settings"
527
  msgstr ""
528
 
529
+ #: application/Backend/View/Localization.php:76
530
+ #: application/Core/Subject/Default.php:36 media/js/aam.js:1187
531
  msgid "All Users, Roles and Visitor"
532
  msgstr ""
533
 
534
+ #: application/Backend/View/Localization.php:77 media/js/aam.js:1158
535
+ #: media/js/aam.js:1233 media/js/aam.js:4779
536
  msgid "Failed to apply policy changes"
537
  msgstr ""
538
 
539
+ #: application/Backend/View/Localization.php:78
540
  #: application/Backend/tmpl/partial/visitor-principal-subject-tab.php:25
541
+ #: media/js/aam.js:1152 media/js/aam.js:1161
542
  msgid "Attach Policy To Visitors"
543
  msgstr ""
544
 
545
+ #: application/Backend/View/Localization.php:79
546
  #: application/Backend/tmpl/partial/visitor-principal-subject-tab.php:23
547
+ #: media/js/aam.js:1150 media/js/aam.js:1163
548
  msgid "Detach Policy From Visitors"
549
  msgstr ""
550
 
551
+ #: application/Backend/View/Localization.php:80 media/js/aam.js:645
552
+ #: media/js/aam.js:3965
553
  msgid "Generating URL..."
554
  msgstr ""
555
 
556
+ #: application/Backend/View/Localization.php:81
557
+ #: application/Core/Subject/Visitor.php:43 media/js/aam.js:1113
558
  msgid "Anonymous"
559
  msgstr ""
560
 
561
+ #: application/Backend/View/Localization.php:82 media/js/aam.js:1139
562
+ #: media/js/aam.js:1214 media/js/aam.js:2053 media/js/aam.js:4454
563
+ #: media/js/aam.js:4524
564
  msgid "Processing..."
565
  msgstr ""
566
 
567
+ #: application/Backend/View/Localization.php:83 media/js/aam.js:723
568
  msgid "Loading roles..."
569
  msgstr ""
570
 
571
+ #: application/Backend/View/Localization.php:84 media/js/aam.js:655
572
+ #: media/js/aam.js:3976
573
  msgid "Failed to generate JWT token"
574
  msgstr ""
575
 
576
+ #: application/Backend/View/Localization.php:85 media/js/aam.js:2155
577
  msgid "Failed to process request"
578
  msgstr ""
579
 
580
+ #: application/Backend/View/Localization.php:86
581
  msgid "Current user"
582
  msgstr ""
583
 
584
+ #: application/Backend/View/Localization.php:87
585
  msgid "Current role"
586
  msgstr ""
587
 
588
+ #: application/Backend/View/Localization.php:88 media/js/aam.js:3107
589
  msgid "Manage Access"
590
  msgstr ""
591
 
592
+ #: application/Backend/View/Localization.php:89 media/js/aam.js:740
593
  msgid "Filter by role"
594
  msgstr ""
595
 
596
+ #: application/Backend/View/Localization.php:90
597
+ #: application/Backend/View/PostOptionList.php:82 media/js/aam.js:3119
598
  msgid "Edit"
599
  msgstr ""
600
 
601
+ #: application/Backend/View/Localization.php:91
602
  #: application/Backend/tmpl/page/subject-panel-advanced.php:111
603
  #: application/Backend/tmpl/partial/post-access-form.php:105
604
  #: application/Backend/tmpl/partial/post-access-form.php:127
606
  #: application/Backend/tmpl/partial/post-access-form.php:230
607
  #: application/Backend/tmpl/partial/post-access-form.php:251
608
  #: application/Backend/tmpl/partial/post-access-form.php:273
609
+ #: application/Backend/tmpl/service/uri.php:108 media/js/aam.js:1041
610
+ #: media/js/aam.js:3762
611
  msgid "Save"
612
  msgstr ""
613
 
614
+ #: application/Backend/View/Localization.php:92 media/js/aam.js:213
615
  msgid "Manage role"
616
  msgstr ""
617
 
618
+ #: application/Backend/View/Localization.php:93 media/js/aam.js:234
619
  msgid "Edit role"
620
  msgstr ""
621
 
622
+ #: application/Backend/View/Localization.php:94 media/js/aam.js:287
623
  #: media/js/aam.js:520
624
  msgid "Delete role"
625
  msgstr ""
626
 
627
+ #: application/Backend/View/Localization.php:95 media/js/aam.js:258
628
  msgid "Clone role"
629
  msgstr ""
630
 
631
+ #: application/Backend/View/Localization.php:96 media/js/aam.js:802
632
  msgid "Manage user"
633
  msgstr ""
634
 
635
+ #: application/Backend/View/Localization.php:97 media/js/aam.js:851
636
  msgid "Edit user"
637
  msgstr ""
638
 
639
+ #: application/Backend/View/Localization.php:98 media/js/aam.js:601
640
+ #: media/js/aam.js:602 media/js/aam.js:872 media/js/aam.js:883
641
  msgid "Lock user"
642
  msgstr ""
643
 
644
+ #: application/Backend/View/Localization.php:99 media/js/aam.js:595
645
+ #: media/js/aam.js:596 media/js/aam.js:896 media/js/aam.js:907
646
  msgid "Unlock user"
647
  msgstr ""
648
 
649
+ #: application/Backend/View/Localization.php:100 media/js/aam.js:2149
650
  msgid "WordPress core does not allow to grant this capability"
651
  msgstr ""
652
 
653
+ #: application/Backend/View/Localization.php:101
654
+ #: application/Backend/tmpl/partial/default-principal-subject-tab.php:15
655
+ #: media/js/aam.js:1225 media/js/aam.js:1238
656
  msgid "Detach Policy From Everybody"
657
  msgstr ""
658
 
659
+ #: application/Backend/View/Localization.php:102
660
+ #: application/Backend/tmpl/partial/default-principal-subject-tab.php:17
661
+ #: media/js/aam.js:1227 media/js/aam.js:1236
662
  msgid "Attach Policy To Everybody"
663
  msgstr ""
664
 
665
+ #: application/Backend/View/Localization.php:103 media/js/aam.js:1379
666
  msgid "Search Policy"
667
  msgstr ""
668
 
669
+ #: application/Backend/View/Localization.php:104 media/js/aam.js:1380
670
  msgid "_TOTAL_ Policies"
671
  msgstr ""
672
 
673
+ #: application/Backend/View/Localization.php:105 media/js/aam.js:1422
674
  msgid "Apply Policy"
675
  msgstr ""
676
 
677
+ #: application/Backend/View/Localization.php:106 media/js/aam.js:1442
678
  msgid "Revoke Policy"
679
  msgstr ""
680
 
681
+ #: application/Backend/View/Localization.php:107
682
+ #: application/Service/AccessPolicy.php:185 media/js/aam.js:1459
683
  msgid "Edit Policy"
684
  msgstr ""
685
 
686
+ #: application/Backend/View/Localization.php:108
687
  #: application/Backend/tmpl/service/menu.php:79
688
+ #: application/Backend/tmpl/service/toolbar.php:60 media/js/aam.js:1762
689
  msgid "Uncheck to allow"
690
  msgstr ""
691
 
692
+ #: application/Backend/View/Localization.php:109
693
  #: application/Backend/tmpl/service/menu.php:79
694
+ #: application/Backend/tmpl/service/toolbar.php:60 media/js/aam.js:1764
695
  msgid "Check to restrict"
696
  msgstr ""
697
 
698
+ #: application/Backend/View/Localization.php:110
699
+ #: application/Backend/tmpl/service/metabox.php:78 media/js/aam.js:1898
700
+ #: media/js/aam.js:2087
701
  msgid "Uncheck to show"
702
  msgstr ""
703
 
704
+ #: application/Backend/View/Localization.php:111
705
+ #: application/Backend/tmpl/service/metabox.php:78 media/js/aam.js:1900
706
+ #: media/js/aam.js:2089
707
  msgid "Check to hide"
708
  msgstr ""
709
 
710
+ #: application/Backend/View/Localization.php:112
711
+ #: application/Backend/tmpl/service/metabox.php:114 media/js/aam.js:2056
712
  msgid "Initialize"
713
  msgstr ""
714
 
715
+ #: application/Backend/View/Localization.php:113 media/js/aam.js:2241
716
  msgid "No capabilities"
717
  msgstr ""
718
 
719
+ #: application/Backend/View/Localization.php:114 media/js/aam.js:2947
720
  msgid "Post Type"
721
  msgstr ""
722
 
723
+ #: application/Backend/View/Localization.php:115 media/js/aam.js:2952
724
  msgid "Hierarchical Taxonomy"
725
  msgstr ""
726
 
727
+ #: application/Backend/View/Localization.php:116 media/js/aam.js:2957
728
  msgid "Hierarchical Term"
729
  msgstr ""
730
 
731
+ #: application/Backend/View/Localization.php:117 media/js/aam.js:2962
732
  msgid "Tag Taxonomy"
733
  msgstr ""
734
 
735
+ #: application/Backend/View/Localization.php:118 media/js/aam.js:2967
736
  msgid "Tag"
737
  msgstr ""
738
 
739
+ #: application/Backend/View/Localization.php:119 media/js/aam.js:2978
740
  msgid "Customized Settings"
741
  msgstr ""
742
 
743
+ #: application/Backend/View/Localization.php:120 media/js/aam.js:3048
744
+ #: media/js/aam.js:3070
745
  msgid "Parent"
746
  msgstr ""
747
 
748
+ #: application/Backend/View/Localization.php:121 media/js/aam.js:3093
749
  msgid "Drill-Down"
750
  msgstr ""
751
 
752
+ #: application/Backend/View/Localization.php:122 media/js/aam.js:3631
753
  msgid "_TOTAL_ route(s)"
754
  msgstr ""
755
 
756
+ #: application/Backend/View/Localization.php:123 media/js/aam.js:3633
757
  msgid "No API endpoints found. You might have APIs disabled."
758
  msgstr ""
759
 
760
+ #: application/Backend/View/Localization.php:124 media/js/aam.js:3634
761
+ #: media/js/aam.js:4061 media/js/aam.js:4412
762
  msgid "Nothing to show"
763
  msgstr ""
764
 
765
+ #: application/Backend/View/Localization.php:125 media/js/aam.js:3753
766
  msgid "Failed to save URI rule"
767
  msgstr ""
768
 
769
+ #: application/Backend/View/Localization.php:126 media/js/aam.js:3793
770
  msgid "Failed to delete URI rule"
771
  msgstr ""
772
 
773
+ #: application/Backend/View/Localization.php:127 media/js/aam.js:3830
774
  msgid "_TOTAL_ URI(s)"
775
  msgstr ""
776
 
777
+ #: application/Backend/View/Localization.php:128 media/js/aam.js:3871
778
  msgid "Edit Rule"
779
  msgstr ""
780
 
781
+ #: application/Backend/View/Localization.php:129 media/js/aam.js:3883
782
  msgid "Delete Rule"
783
  msgstr ""
784
 
785
+ #: application/Backend/View/Localization.php:130 media/js/aam.js:3898
786
  msgid "Denied"
787
  msgstr ""
788
 
789
+ #: application/Backend/View/Localization.php:131 media/js/aam.js:3905
790
  msgid "Redirected"
791
  msgstr ""
792
 
793
+ #: application/Backend/View/Localization.php:132 media/js/aam.js:3910
794
  msgid "Callback"
795
  msgstr ""
796
 
797
+ #: application/Backend/View/Localization.php:133 media/js/aam.js:3915
798
  msgid "Allowed"
799
  msgstr ""
800
 
801
+ #: application/Backend/View/Localization.php:134 media/js/aam.js:3961
802
  msgid "Generating token..."
803
  msgstr ""
804
 
805
+ #: application/Backend/View/Localization.php:135 media/js/aam.js:4058
806
  msgid "_TOTAL_ token(s)"
807
  msgstr ""
808
 
809
+ #: application/Backend/View/Localization.php:136 media/js/aam.js:4060
810
  msgid "No JWT tokens have been generated."
811
  msgstr ""
812
 
813
+ #: application/Backend/View/Localization.php:137 media/js/aam.js:4104
814
  msgid "Delete Token"
815
  msgstr ""
816
 
817
+ #: application/Backend/View/Localization.php:138 media/js/aam.js:4117
818
  msgid "View Token"
819
  msgstr ""
820
 
821
+ #: application/Backend/View/Localization.php:139 media/js/aam.js:4142
822
  msgid "Creating..."
823
  msgstr ""
824
 
825
+ #: application/Backend/View/Localization.php:140 media/js/aam.js:4409
826
  msgid "Search Service"
827
  msgstr ""
828
 
829
+ #: application/Backend/View/Localization.php:141 media/js/aam.js:4410
830
  msgid "_TOTAL_ service(s)"
831
  msgstr ""
832
 
833
+ #: application/Backend/View/Localization.php:142
834
  #: application/Backend/tmpl/settings/content.php:19
835
  #: application/Backend/tmpl/settings/core.php:16
836
+ #: application/Backend/tmpl/settings/security.php:16 media/js/aam.js:4422
837
  msgid "Enabled"
838
  msgstr ""
839
 
840
+ #: application/Backend/View/Localization.php:143
841
  #: application/Backend/tmpl/settings/content.php:19
842
  #: application/Backend/tmpl/settings/core.php:16
843
+ #: application/Backend/tmpl/settings/security.php:16 media/js/aam.js:4422
844
  msgid "Disabled"
845
  msgstr ""
846
 
847
+ #: application/Backend/View/Localization.php:144 media/js/aam.js:4460
848
  msgid "All settings has been cleared successfully"
849
  msgstr ""
850
 
851
+ #: application/Backend/View/Localization.php:145
852
+ #: application/Backend/tmpl/metabox/main-iframe.php:190 media/js/aam.js:4472
853
  msgid "Clear"
854
  msgstr ""
855
 
856
+ #: application/Backend/View/Localization.php:146
857
  #: application/Backend/tmpl/page/subject-panel-advanced.php:102
858
+ #: application/Backend/tmpl/partial/role-inheritance.php:7 media/js/aam.js:4815
859
  msgid "Select Role"
860
  msgstr ""
861
 
862
+ #: application/Backend/View/Localization.php:147 media/js/aam.js:1570
863
+ msgid "Policy is not assigned to anybody"
864
+ msgstr ""
865
+
866
+ #: application/Backend/View/Localization.php:148 media/js/aam.js:5110
867
  msgid "Data has been saved to clipboard"
868
  msgstr ""
869
 
870
+ #: application/Backend/View/Localization.php:149 media/js/aam.js:5114
871
  msgid "Failed to save data to clipboard"
872
  msgstr ""
873
 
874
+ #: application/Backend/View/Localization.php:150 media/js/aam.js:5186
875
  msgid "Operation completed successfully"
876
  msgstr ""
877
 
909
  msgstr ""
910
 
911
  #: application/Backend/View/PostOptionList.php:48
912
+ #: application/Backend/tmpl/metabox/main-iframe.php:106
913
  msgid "Message"
914
  msgstr ""
915
 
1001
  #: application/Backend/View/PostOptionList.php:87
1002
  #: application/Backend/tmpl/page/subject-panel-advanced.php:59
1003
  #: application/Backend/tmpl/service/jwt.php:136
1004
+ #: application/Backend/tmpl/service/uri.php:130 media/js/aam.js:3802
1005
+ #: media/js/aam.js:4188
1006
  msgid "Delete"
1007
  msgstr ""
1008
 
1040
  msgid "Notifications"
1041
  msgstr ""
1042
 
1043
+ #: application/Backend/tmpl/metabox/main-iframe.php:58
1044
  msgid "Access"
1045
  msgstr ""
1046
 
1047
+ #: application/Backend/tmpl/metabox/main-iframe.php:63
1048
  msgid "Settings"
1049
  msgstr ""
1050
 
1051
+ #: application/Backend/tmpl/metabox/main-iframe.php:69
1052
  msgid "Add-Ons"
1053
  msgstr ""
1054
 
1055
+ #: application/Backend/tmpl/metabox/main-iframe.php:75
1056
  msgid "Help"
1057
  msgstr ""
1058
 
1059
+ #: application/Backend/tmpl/metabox/main-iframe.php:88
1060
+ #: application/Backend/tmpl/metabox/main-iframe.php:119
1061
+ #: application/Backend/tmpl/metabox/main-iframe.php:173
1062
+ #: application/Backend/tmpl/metabox/main-iframe.php:183
1063
  #: application/Backend/tmpl/page/addon-panel.php:81
1064
  #: application/Backend/tmpl/page/addon-panel.php:92
1065
  #: application/Backend/tmpl/page/addon-panel.php:102
1116
  msgid "Close"
1117
  msgstr ""
1118
 
1119
+ #: application/Backend/tmpl/metabox/main-iframe.php:89
1120
  msgid "Ask For Help"
1121
  msgstr ""
1122
 
1123
+ #: application/Backend/tmpl/metabox/main-iframe.php:92
1124
  #, php-format
1125
  msgid ""
1126
  "Before submitting a support request, please get familiar with %show AAM "
1128
  "attention to how do we prioritize support."
1129
  msgstr ""
1130
 
1131
+ #: application/Backend/tmpl/metabox/main-iframe.php:95
1132
  #: application/Backend/tmpl/service/menu.php:151
1133
  #: application/Backend/tmpl/service/toolbar.php:93
1134
  msgid "Name"
1135
  msgstr ""
1136
 
1137
+ #: application/Backend/tmpl/metabox/main-iframe.php:96
1138
  msgid "How should we call you"
1139
  msgstr ""
1140
 
1141
+ #: application/Backend/tmpl/metabox/main-iframe.php:100
1142
  msgid "Email"
1143
  msgstr ""
1144
 
1145
+ #: application/Backend/tmpl/metabox/main-iframe.php:101
1146
  msgid "Enter your email"
1147
  msgstr ""
1148
 
1149
+ #: application/Backend/tmpl/metabox/main-iframe.php:102
1150
  msgid "The rest of the conversation will be conducted via provided email"
1151
  msgstr ""
1152
 
1153
+ #: application/Backend/tmpl/metabox/main-iframe.php:107
1154
  msgid "Enter your message here..."
1155
  msgstr ""
1156
 
1157
+ #: application/Backend/tmpl/metabox/main-iframe.php:108
1158
  msgid "Please be [kind], [specific] and [patient], and let us do the rest"
1159
  msgstr ""
1160
 
1161
+ #: application/Backend/tmpl/metabox/main-iframe.php:113
1162
  #, php-format
1163
  msgid "Attach system details (%slearn more here%s)"
1164
  msgstr ""
1165
 
1166
+ #: application/Backend/tmpl/metabox/main-iframe.php:118
1167
  msgid "Request Support"
1168
  msgstr ""
1169
 
1170
+ #: application/Backend/tmpl/metabox/main-iframe.php:132
1171
  msgid "Export/Import AAM Settings"
1172
  msgstr ""
1173
 
1174
+ #: application/Backend/tmpl/metabox/main-iframe.php:137
1175
  msgid "Reset AAM Settings"
1176
  msgstr ""
1177
 
1178
+ #: application/Backend/tmpl/metabox/main-iframe.php:147
1179
  msgid ""
1180
  "Your browser does not support modern way to work with files. The Export/"
1181
  "Import feature will not work properly. Consider to use the latest Chrome, "
1182
  "Firefox or Safari browser instead."
1183
  msgstr ""
1184
 
1185
+ #: application/Backend/tmpl/metabox/main-iframe.php:151
1186
  msgid "Export"
1187
  msgstr ""
1188
 
1189
+ #: application/Backend/tmpl/metabox/main-iframe.php:152
1190
  msgid "Import"
1191
  msgstr ""
1192
 
1193
+ #: application/Backend/tmpl/metabox/main-iframe.php:157
1194
  msgid ""
1195
  "Export AAM settings so they can be imported to a different location. To "
1196
  "learn more about customizing exported data, refer to the \"How Import/Export "
1197
  "feature works\" article."
1198
  msgstr ""
1199
 
1200
+ #: application/Backend/tmpl/metabox/main-iframe.php:164
1201
  msgid ""
1202
  "Select a *.json file with valid AAM settings. All the current AAM settings "
1203
  "will be lost and replaced with imported settings."
1204
  msgstr ""
1205
 
1206
+ #: application/Backend/tmpl/metabox/main-iframe.php:184
1207
  msgid "Clear all settings"
1208
  msgstr ""
1209
 
1210
+ #: application/Backend/tmpl/metabox/main-iframe.php:187
1211
  msgid "All AAM settings will be removed."
1212
  msgstr ""
1213
 
1214
+ #: application/Backend/tmpl/metabox/main-iframe.php:191
1215
  msgid "Cancel"
1216
  msgstr ""
1217
 
1218
+ #: application/Backend/tmpl/metabox/main-iframe.php:203
1219
  msgid ""
1220
  "With the [Enterprise Package] get dedicated support channel and all the "
1221
  "premium add-ons for a [bulk number of live websites]"
1222
  msgstr ""
1223
 
1224
+ #: application/Backend/tmpl/metabox/main-iframe.php:204
1225
  #: application/Backend/tmpl/page/addon-panel.php:66
1226
  msgid "Read More"
1227
  msgstr ""
1228
 
1229
+ #: application/Backend/tmpl/metabox/policy-metabox.php:42
1230
  #, php-format
1231
  msgid ""
1232
  "To learn more about Access &amp; Security policy document, please check "
1233
  "[%sAccess &amp; Security Policy%s] page."
1234
  msgstr ""
1235
 
1236
+ #: application/Backend/tmpl/metabox/policy-metabox.php:70
1237
  msgid "Syntax Error"
1238
  msgstr ""
1239
 
1411
  "default access settings."
1412
  msgstr ""
1413
 
1414
+ #: application/Backend/tmpl/partial/access-policy-action.php:7
1415
+ msgid "Download as File"
1416
+ msgstr ""
1417
+
1418
+ #: application/Backend/tmpl/partial/access-policy-action.php:8
1419
+ msgid "Create New Policy"
1420
+ msgstr ""
1421
+
1422
+ #: application/Backend/tmpl/partial/access-policy-action.php:10
1423
+ msgid "Learn More"
1424
+ msgstr ""
1425
+
1426
+ #: application/Backend/tmpl/partial/default-principal-subject-tab.php:5
1427
+ msgid ""
1428
+ "Attach current access &amp; security policy to all users, roles and visitors"
1429
  msgstr ""
1430
 
1431
  #: application/Backend/tmpl/partial/default-subject-tab.php:5
1474
  "WordPress theme to find out what causes the issue."
1475
  msgstr ""
1476
 
1477
+ #: application/Backend/tmpl/partial/multisite-sync-notification.php:9
1478
+ msgid ""
1479
+ "[Warning!] You are operating on the multisite network main blog. All the "
1480
+ "settings will be automatically synced across all the blogs in this network."
1481
+ msgstr ""
1482
+
1483
  #: application/Backend/tmpl/partial/post-access-form.php:12
1484
  #: application/Backend/tmpl/service/login-redirect.php:17
1485
  #: application/Backend/tmpl/service/logout-redirect.php:17
1989
  msgstr ""
1990
 
1991
  #: application/Backend/tmpl/service/menu.php:163
1992
+ #: application/Backend/tmpl/service/toolbar.php:101 media/js/aam.js:763
1993
  msgid "ID"
1994
  msgstr ""
1995
 
2076
  msgstr ""
2077
 
2078
  #: application/Backend/tmpl/service/policy.php:35
2079
+ #: application/Service/AccessPolicy.php:186
2080
  msgid "Policy"
2081
  msgstr ""
2082
 
2083
  #: application/Backend/tmpl/service/policy.php:51
2084
+ #: application/Backend/tmpl/service/policy.php:57 media/js/aam.js:1483
2085
  msgid "Delete Policy"
2086
  msgstr ""
2087
 
2118
  msgid "Assignee(s)"
2119
  msgstr ""
2120
 
2121
+ #: application/Backend/tmpl/service/policy.php:97 media/js/aam.js:1400
2122
+ #: media/js/aam.js:1507
2123
  msgid "Install"
2124
  msgstr ""
2125
 
 
 
 
 
 
 
 
2126
  #: application/Backend/tmpl/service/post.php:11
2127
  msgid "Root"
2128
  msgstr ""
2401
  msgid "Token has been revoked"
2402
  msgstr ""
2403
 
2404
+ #: application/Core/Policy/Validator.php:124
2405
  #: tests/Service/AccessPolicy/PolicyValidationTest.php:54
2406
  msgid "The policy is not valid JSON object"
2407
  msgstr ""
2408
 
2409
+ #: application/Core/Policy/Validator.php:143
2410
  #: tests/Service/AccessPolicy/PolicyValidationTest.php:37
2411
  msgid "The policy document is empty"
2412
  msgstr ""
2413
 
2414
+ #: application/Core/Policy/Validator.php:195
2415
+ msgid "The {$app} is not active or does not satisfy minimum required version"
2416
  msgstr ""
2417
 
2418
+ #: application/Core/Policy/Validator.php:197
2419
  msgid "The {$app} is required"
2420
  msgstr ""
2421
 
2425
  msgid "Access Denied"
2426
  msgstr ""
2427
 
2428
+ #: application/Service/AccessPolicy.php:70
2429
  msgid ""
2430
  "Manage access to the website with well documented JSON access policies for "
2431
  "any user, role or visitors. Keep the paper-trail of all the access changes "
2432
  "with policy revisions."
2433
  msgstr ""
2434
 
2435
+ #: application/Service/AccessPolicy.php:100
2436
  msgid "Access Policy Document"
2437
  msgstr ""
2438
 
2439
+ #: application/Service/AccessPolicy.php:111
2440
  msgid "Access Policy Assignee"
2441
  msgstr ""
2442
 
2443
+ #: application/Service/AccessPolicy.php:182
2444
  msgid "Access Policy"
2445
  msgstr ""
2446
 
2447
+ #: application/Service/AccessPolicy.php:187
2448
  msgid "Add New Policy"
2449
  msgstr ""
2450
 
2451
+ #: application/Service/AccessPolicy.php:188
2452
  msgid "New Policy"
2453
  msgstr ""
2454
 
2455
+ #: application/Service/AccessPolicy.php:190
2456
  msgid "Access and security policy"
2457
  msgstr ""
2458
 
2494
  msgid "You are not allowed to publish this content"
2495
  msgstr ""
2496
 
2497
+ #: application/Service/Content.php:641
2498
  msgid "[No teaser message provided]"
2499
  msgstr ""
2500
 
2515
  "granular access control to the backend core features."
2516
  msgstr ""
2517
 
2518
+ #: application/Service/Jwt.php:64
2519
  msgid ""
2520
  "Manage the website authentication with JWT Bearer token. The service "
2521
  "facilitates the ability to manage the list of issued JWT token for any user, "
2522
  "revoke them or issue new on demand."
2523
  msgstr ""
2524
 
2525
+ #: application/Service/Jwt.php:115
2526
  msgid "Issue JWT Token"
2527
  msgstr ""
2528
 
2529
+ #: application/Service/Jwt.php:162 application/Service/Jwt.php:172
2530
+ #: application/Service/Jwt.php:184 application/Service/Jwt.php:194
2531
+ #: application/Service/Jwt.php:206
2532
  msgid "JWT token."
2533
  msgstr ""
2534
 
2535
+ #: application/Service/Jwt.php:316
2536
  msgid "JWT token is not refreshable"
2537
  msgstr ""
2538
 
2539
+ #: application/Service/Jwt.php:355
2540
  msgid "Failed to revoke provided token"
2541
  msgstr ""
2542
 
2560
  "data spoofing."
2561
  msgstr ""
2562
 
2563
+ #: application/Service/Multisite.php:73
2564
  msgid "Multisite Settings Sync"
2565
  msgstr ""
2566
 
2567
+ #: application/Service/Multisite.php:74
2568
  msgid ""
2569
  "Automatically synchronize changes to the list of roles and capabilities as "
2570
  "well as all access settings (if configured accordingly)."
2658
  "protect from direct access via link."
2659
  msgstr ""
2660
 
2661
+ #: application/Service/Uri.php:57
2662
  msgid ""
2663
  "Manage direct access to the website URIs for any role or individual user. "
2664
  "Define either explicit URI or wildcard (with Plus Package addon) as well as "
2694
  msgid "Add role"
2695
  msgstr ""
2696
 
2697
+ #: media/js/aam.js:1060 media/js/aam.js:2674 media/js/aam.js:2766
2698
+ #: media/js/aam.js:5226
2699
  msgid "Resetting..."
2700
  msgstr ""
2701
 
2702
+ #: media/js/aam.js:1519
2703
  msgid "Everybody"
2704
  msgstr ""
2705
 
2706
+ #: media/js/aam.js:1521
2707
  msgid "Visitors"
2708
  msgstr ""
2709
 
2710
+ #: media/js/aam.js:1528
2711
  msgid "Current User"
2712
  msgstr ""
2713
 
2714
+ #: media/js/aam.js:1530
2715
  msgid "User ID"
2716
  msgstr ""
2717
 
2718
+ #: media/js/aam.js:1583
2719
  msgid "Installing..."
2720
  msgstr ""
2721
 
2722
+ #: media/js/aam.js:1600
2723
  msgid "Access Policy was installed successfully"
2724
  msgstr ""
2725
 
2726
+ #: media/js/aam.js:2942
2727
  msgid "Post"
2728
  msgstr ""
2729
 
2730
+ #: media/js/aam.js:3008
2731
  msgid "post type"
2732
  msgstr ""
2733
 
2734
+ #: media/js/aam.js:3013 media/js/aam.js:3039 media/js/aam.js:3052
2735
+ #: media/js/aam.js:3061 media/js/aam.js:3074
2736
  msgid "ID:"
2737
  msgstr ""
2738
 
2739
+ #: media/js/aam.js:3035
2740
  msgid "taxonomy"
2741
  msgstr ""
2742
 
2743
+ #: media/js/aam.js:4529
2744
  msgid "Settings has been exported successfully"
2745
  msgstr ""
2746
 
2747
+ #: media/js/aam.js:4575
2748
  msgid "Settings has been imported successfully"
2749
  msgstr ""
2750
 
2751
+ #: media/js/aam.js:4596
2752
  msgid "Invalid settings"
2753
  msgstr ""
2754
 
media/js/aam.js CHANGED
@@ -579,7 +579,7 @@
579
  data: {
580
  action: 'aam',
581
  // TODO: Refactor and move this to the SecureLogin service
582
- sub_action: 'Service.SecureLogin.toggleUserStatus',
583
  _ajax_nonce: getLocal().nonce,
584
  subject: 'user',
585
  subjectId: id
579
  data: {
580
  action: 'aam',
581
  // TODO: Refactor and move this to the SecureLogin service
582
+ sub_action: 'Service_SecureLogin.toggleUserStatus',
583
  _ajax_nonce: getLocal().nonce,
584
  subject: 'user',
585
  subjectId: id
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: access control, membership, backend menu, user role, restricted content, s
4
  Requires at least: 4.7.0
5
  Requires PHP: 5.6.0
6
  Tested up to: 5.3.2
7
- Stable tag: 6.3.0
8
 
9
  All you need to manage access to WordPress websites on the frontend, backend and API levels for any role, user or visitors.
10
 
@@ -91,6 +91,14 @@ We take security and privacy very seriously, that is why there are several non-n
91
 
92
  == Changelog ==
93
 
 
 
 
 
 
 
 
 
94
  = 6.3.0 =
95
  * Fixed Bug: PHP Notice about missing license key [https://github.com/aamplugin/advanced-access-manager/issues/12](https://github.com/aamplugin/advanced-access-manager/issues/12)
96
  * Fixed Bug: Fatal error: Allowed memory size of XXX bytes exhausted [https://github.com/aamplugin/advanced-access-manager/issues/15](https://github.com/aamplugin/advanced-access-manager/issues/15)
4
  Requires at least: 4.7.0
5
  Requires PHP: 5.6.0
6
  Tested up to: 5.3.2
7
+ Stable tag: 6.3.1
8
 
9
  All you need to manage access to WordPress websites on the frontend, backend and API levels for any role, user or visitors.
10
 
91
 
92
  == Changelog ==
93
 
94
+ = 6.3.1 =
95
+ * Fixed Bug: Draft policy still applicable if attached to user or role [https://github.com/aamplugin/advanced-access-manager/issues/49](https://github.com/aamplugin/advanced-access-manager/issues/49)
96
+ * Fixed Bug: Resetting all AAM settings still keep legacy settings in DB [https://github.com/aamplugin/advanced-access-manager/issues/48](https://github.com/aamplugin/advanced-access-manager/issues/48)
97
+ * Fixed Bug: PHP Warning: Invalid argument supplied for foreach() in .../Repository.php on line 71 [https://github.com/aamplugin/advanced-access-manager/issues/47](https://github.com/aamplugin/advanced-access-manager/issues/47)
98
+ * Fixed Bug: User's capabilities, populated through policy, are gone when rebased [https://github.com/aamplugin/advanced-access-manager/issues/45](https://github.com/aamplugin/advanced-access-manager/issues/45)
99
+ * Fixed Bug: Cannot lock user with AAM UI [https://github.com/aamplugin/advanced-access-manager/issues/43](https://github.com/aamplugin/advanced-access-manager/issues/43)
100
+ * Fixed Bug: Teaser Message modified with added backslashes to single and double quotes [https://github.com/aamplugin/advanced-access-manager/issues/42](https://github.com/aamplugin/advanced-access-manager/issues/42)
101
+
102
  = 6.3.0 =
103
  * Fixed Bug: PHP Notice about missing license key [https://github.com/aamplugin/advanced-access-manager/issues/12](https://github.com/aamplugin/advanced-access-manager/issues/12)
104
  * Fixed Bug: Fatal error: Allowed memory size of XXX bytes exhausted [https://github.com/aamplugin/advanced-access-manager/issues/15](https://github.com/aamplugin/advanced-access-manager/issues/15)