Advanced Access Manager - Version 4.7.5

Version Description

  • Improved Utilities tab
  • Fixed bug with post search and archive pages
  • Updated localization source
Download this release

Release Info

Developer vasyl_m
Plugin Icon 128x128 Advanced Access Manager
Version 4.7.5
Comparing to
See all releases

Code changes from version 4.7.2 to 4.7.5

Application/Backend/Feature/Utility.php CHANGED
@@ -33,11 +33,31 @@ class AAM_Backend_Feature_Utility extends AAM_Backend_Feature_Abstract {
33
  *
34
  * @return type
35
  */
36
- public function getUtilityOptionList() {
37
- $filename = dirname(__FILE__) . '/../View/UtilityOptionList.php';
38
- $options = include $filename;
39
 
40
- return apply_filters('aam-utility-option-list-filter', $options);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  }
42
 
43
  /**
33
  *
34
  * @return type
35
  */
36
+ public function getUtilityOptionList($category = 'miscellaneous') {
37
+ static $options = null;
 
38
 
39
+ if (is_null($options)) {
40
+ $filename = dirname(__FILE__) . '/../View/UtilityOptionList.php';
41
+ $options = apply_filters(
42
+ 'aam-utility-option-list-filter', include $filename
43
+ );
44
+ }
45
+
46
+ $filtered = array();
47
+
48
+ foreach($options as $id => $option) {
49
+ if (isset($option['category'])) {
50
+ $cat = $option['category'];
51
+ } else {
52
+ $cat = 'miscellaneous';
53
+ }
54
+
55
+ if ($cat == $category) {
56
+ $filtered[$id] = $option;
57
+ }
58
+ }
59
+
60
+ return $filtered;
61
  }
62
 
63
  /**
Application/Backend/View/UtilityOptionList.php CHANGED
@@ -9,43 +9,51 @@
9
 
10
  return array(
11
  'manage-capability' => array(
12
- 'title' => __('Edit/Delete Capabilities', AAM_KEY),
13
- 'descr' => AAM_Backend_View_Helper::preparePhrase('Allow to edit or delete any capability on the Capabilities tab. [Note!] For experienced users only. Changing or deleting capability may result in loosing access to some features or the entire website.', 'b'),
14
- 'value' => AAM_Core_Config::get('manage-capability', false)
 
15
  ),
16
  'backend-access-control' => array(
17
- 'title' => __('Backend Access Control', AAM_KEY),
18
- 'descr' => __('Allow AAM to manage access to backend resources. If there is no need to manage access to the website backend then keep this option unchecked as it may increase your webiste performance.', AAM_KEY),
19
- 'value' => AAM_Core_Config::get('backend-access-control', true),
 
20
  ),
21
  'frontend-access-control' => array(
22
- 'title' => __('Frontend Access Control', AAM_KEY),
23
- 'descr' => __('Allow AAM to manage access to frontend resources. If there is no need to manage access to the website frontend then keep this option unchecked as it may increase your webiste performance.', AAM_KEY),
24
- 'value' => AAM_Core_Config::get('frontend-access-control', true),
 
25
  ),
26
  'media-access-control' => array(
27
- 'title' => __('Media Files Access Control', AAM_KEY),
28
- 'descr' => sprintf(AAM_Backend_View_Helper::preparePhrase('Allow AAM to manage a physically access to all media files located in the defined by the system [uploads] folder. [Note!] This feature requires additional steps as described in %sthis article%s.', 'strong', 'strong'), '<a href="https://aamplugin.com/help/how-to-manage-wordpress-media-access" target="_blank">', '</a>'),
29
- 'value' => AAM_Core_Config::get('media-access-control', false),
 
30
  ),
31
  'check-post-visibility' => array(
32
- 'title' => __('Check Post Visibility', AAM_KEY),
33
- 'descr' => __('For performance reasons, keep this option uncheck if do not use LIST or LIST TO OTHERS access options on Posts & Pages tab. When it is checked, AAM will filter list of posts that are hidden for a user on both frontend and backend.', AAM_KEY),
34
- 'value' => AAM_Core_Config::get('check-post-visibility', true),
 
35
  ),
36
  'manage-hidden-post-types' => array(
37
- 'title' => __('Manage Hidden Post Types', AAM_KEY),
38
- 'descr' => __('By default AAM allows you to manage access only to public post types on Posts & Pages tab. By enabling this feature, you also will be able to manage access to hidden post types like revisions, navigation menus or any other custom post types that are not registered as public.', AAM_KEY),
39
- 'value' => AAM_Core_Config::get('manage-hidden-post-types', false),
 
40
  ),
41
  'render-access-metabox' => array(
42
- 'title' => __('Render Access Manager Metabox', AAM_KEY),
43
- 'descr' => __('Render Access Manager metabox on all post and category edit pages. Access Manager metabox is the quick way to manage access to any post or category without leaving an edit page.', AAM_KEY),
44
- 'value' => AAM_Core_Config::get('render-access-metabox', true),
 
45
  ),
46
  'show-access-link' => array(
47
- 'title' => __('Show Access Link', AAM_KEY),
48
- 'descr' => __('Show Access shortcut link under any post, page, custom post type, category, custom taxonomy title or user name.', AAM_KEY),
49
- 'value' => AAM_Core_Config::get('show-access-link', true),
 
50
  ),
51
  );
9
 
10
  return array(
11
  'manage-capability' => array(
12
+ 'title' => __('Edit/Delete Capabilities', AAM_KEY),
13
+ 'descr' => AAM_Backend_View_Helper::preparePhrase('Allow to edit or delete any capability on the Capabilities tab. [Note!] For experienced users only. Changing or deleting capability may result in loosing access to some features or the entire website.', 'b'),
14
+ 'value' => AAM_Core_Config::get('manage-capability', false),
15
+ 'category' => 'core'
16
  ),
17
  'backend-access-control' => array(
18
+ 'title' => __('Backend Access Control', AAM_KEY),
19
+ 'descr' => __('Allow AAM to manage access to backend resources. If there is no need to manage access to the website backend then keep this option unchecked as it may increase your webiste performance.', AAM_KEY),
20
+ 'value' => AAM_Core_Config::get('backend-access-control', true),
21
+ 'category' => 'core'
22
  ),
23
  'frontend-access-control' => array(
24
+ 'title' => __('Frontend Access Control', AAM_KEY),
25
+ 'descr' => __('Allow AAM to manage access to frontend resources. If there is no need to manage access to the website frontend then keep this option unchecked as it may increase your webiste performance.', AAM_KEY),
26
+ 'value' => AAM_Core_Config::get('frontend-access-control', true),
27
+ 'category' => 'core'
28
  ),
29
  'media-access-control' => array(
30
+ 'title' => __('Media Files Access Control', AAM_KEY),
31
+ 'descr' => sprintf(AAM_Backend_View_Helper::preparePhrase('Allow AAM to manage a physically access to all media files located in the defined by the system [uploads] folder. [Note!] This feature requires additional steps as described in %sthis article%s.', 'strong', 'strong'), '<a href="https://aamplugin.com/help/how-to-manage-wordpress-media-access" target="_blank">', '</a>'),
32
+ 'value' => AAM_Core_Config::get('media-access-control', false),
33
+ 'category' => 'post'
34
  ),
35
  'check-post-visibility' => array(
36
+ 'title' => __('Check Post Visibility', AAM_KEY),
37
+ 'descr' => __('For performance reasons, keep this option uncheck if do not use LIST or LIST TO OTHERS access options on Posts & Pages tab. When it is checked, AAM will filter list of posts that are hidden for a user on both frontend and backend.', AAM_KEY),
38
+ 'value' => AAM_Core_Config::get('check-post-visibility', true),
39
+ 'category' => 'post'
40
  ),
41
  'manage-hidden-post-types' => array(
42
+ 'title' => __('Manage Hidden Post Types', AAM_KEY),
43
+ 'descr' => __('By default AAM allows you to manage access only to public post types on Posts & Pages tab. By enabling this feature, you also will be able to manage access to hidden post types like revisions, navigation menus or any other custom post types that are not registered as public.', AAM_KEY),
44
+ 'value' => AAM_Core_Config::get('manage-hidden-post-types', false),
45
+ 'category' => 'post'
46
  ),
47
  'render-access-metabox' => array(
48
+ 'title' => __('Render Access Manager Metabox', AAM_KEY),
49
+ 'descr' => __('Render Access Manager metabox on all post and category edit pages. Access Manager metabox is the quick way to manage access to any post or category without leaving an edit page.', AAM_KEY),
50
+ 'value' => AAM_Core_Config::get('render-access-metabox', true),
51
+ 'category' => 'core'
52
  ),
53
  'show-access-link' => array(
54
+ 'title' => __('Show Access Link', AAM_KEY),
55
+ 'descr' => __('Show Access shortcut link under any post, page, custom post type, category, custom taxonomy title or user name.', AAM_KEY),
56
+ 'value' => AAM_Core_Config::get('show-access-link', true),
57
+ 'category' => 'core'
58
  ),
59
  );
Application/Backend/phtml/contact.phtml CHANGED
@@ -3,18 +3,15 @@
3
  <div class="row">
4
  <div class="col-xs-12">
5
  <p class="aam-info">
6
- <?php echo __('Feel free to contact us if you have any questions or concerns but follow few simple rules:'); ?>
7
  </p>
8
  <ol class="text-larger">
9
- <li>Keep your message short. As longer message as longer it will take for us to response;</li>
10
  <li>Use English, Polish, Russian or Ukrainian language. Otherwise we may ignore your message;</li>
11
- <li>You can hire us to do some custom functionality for your needs but please be clear with your requirements;</li>
12
- <li>In case of issues with the plugin, if possible, include screenshots or videos that show the problem;</li>
13
  <li>Be patient. It might take up to 3 business days for us to response.</li>
14
  </ol>
15
- <h3 class="aam-info text-center">
16
- e-mail: <a href="mailto:support@aamplugin.com" class="aam-highlight">support@aamplugin.com</a>
17
- </h3>
18
  </div>
19
  </div>
20
  </div>
3
  <div class="row">
4
  <div class="col-xs-12">
5
  <p class="aam-info">
6
+ <?php echo __('Contact us if you have any questions or concerns but follow few simple rules:'); ?>
7
  </p>
8
  <ol class="text-larger">
9
+ <li>Keep your message short. As longer message as more times we will take to response;</li>
10
  <li>Use English, Polish, Russian or Ukrainian language. Otherwise we may ignore your message;</li>
11
+ <li>In case of a problem with the plugin, include screenshots, videos or step-by-step description on how to reproduce the issue;</li>
12
+ <li>Email us at <a href="mailto:support@aamplugin.com" class="aam-highlight">support@aamplugin.com</a>, add us to Google Hangout or submit contact form on <a href="https://aamplugin.com/help" target="_blank">aamplugin.com</a> website to speed-up the response. Any other channels of communication we will be ignored.</li>
13
  <li>Be patient. It might take up to 3 business days for us to response.</li>
14
  </ol>
 
 
 
15
  </div>
16
  </div>
17
  </div>
Application/Backend/phtml/object/post.phtml CHANGED
@@ -3,7 +3,7 @@
3
  <?php if (!defined('AAM_PLUS_PACKAGE')) { ?>
4
  <div class="row">
5
  <div class="col-xs-12">
6
- <p class="aam-info">
7
  <?php echo sprintf(AAM_Backend_View_Helper::preparePhrase('You are allowed to manage access to unlimited number of posts, pages or custom post types but only on role, user or visitor levels. Consider to purchase [AAM Plus Package] extension to have the ability to manage access also to categories or custom taxonomies and to have the ability to define the default access to all posts, pages or custom post types. For more information check %sthis article%s.', 'b'), '<a href="https://aamplugin.com/help/aam-plus-package-extension" target="_blank">', '</a>'); ?>
8
  </p>
9
  </div>
3
  <?php if (!defined('AAM_PLUS_PACKAGE')) { ?>
4
  <div class="row">
5
  <div class="col-xs-12">
6
+ <p class="aam-notification">
7
  <?php echo sprintf(AAM_Backend_View_Helper::preparePhrase('You are allowed to manage access to unlimited number of posts, pages or custom post types but only on role, user or visitor levels. Consider to purchase [AAM Plus Package] extension to have the ability to manage access also to categories or custom taxonomies and to have the ability to define the default access to all posts, pages or custom post types. For more information check %sthis article%s.', 'b'), '<a href="https://aamplugin.com/help/aam-plus-package-extension" target="_blank">', '</a>'); ?>
8
  </p>
9
  </div>
Application/Backend/phtml/utility.phtml CHANGED
@@ -1,51 +1,109 @@
1
  <?php if (defined('AAM_KEY')) { ?>
2
  <div class="aam-feature" id="utilities-content">
3
- <table class="table table-striped table-bordered">
4
- <tbody>
5
- <?php do_action('aam-pre-utilities-setting'); ?>
6
-
7
- <?php foreach($this->getUtilityOptionList() as $id => $option) { ?>
8
- <tr>
9
- <td>
10
- <span class='aam-setting-title'><?php echo $option['title']; ?></span>
11
- <p class="aam-setting-description">
12
- <?php echo $option['descr']; ?>
13
- </p>
14
- </td>
15
- <td class="text-center">
16
- <input type="checkbox" name="<?php echo $id; ?>" id="utility-<?php echo $id; ?>" <?php echo ($option['value'] ? 'checked' : ''); ?> /> <label for="utility-<?php echo $id; ?>"></label>
17
- </td>
18
- </tr>
19
- <?php } ?>
20
-
21
- <?php do_action('aam-post-utilities-setting'); ?>
22
-
23
- <tr><td colspan="2"></td></tr>
24
- <tr>
25
- <td>
26
- <span class='aam-setting-title'><?php echo __('Clear Cache', AAM_KEY); ?></span>
27
- <p class="aam-setting-description">
28
- <?php echo __('Clear all AAM cache.', AAM_KEY); ?>
29
- </p>
30
- </td>
31
- <td>
32
- <a href="#" class="btn btn-warning btn-block" id="clear-cache">Clear</a>
33
- </td>
34
- </tr>
35
- <tr>
36
- <td>
37
- <span class='aam-setting-title'><?php echo __('Clear All Settings', AAM_KEY); ?></span>
38
- <p class="aam-setting-description">
39
- <?php echo __('Remove all the settings related to AAM (including all extension licenses).', AAM_KEY); ?>
40
- </p>
41
- </td>
42
- <td>
43
- <a href="#clear-settings-modal" data-toggle="modal" class="btn btn-danger btn-block">Clear</a>
44
- </td>
45
- </tr>
46
- </tbody>
47
- </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
 
 
 
 
 
 
 
49
  <div class="modal fade" id="clear-settings-modal" tabindex="-1" role="dialog">
50
  <div class="modal-dialog modal-sm" role="document">
51
  <div class="modal-content">
1
  <?php if (defined('AAM_KEY')) { ?>
2
  <div class="aam-feature" id="utilities-content">
3
+ <ul class="nav nav-tabs" role="tablist">
4
+ <li role="presentation" class="active"><a href="#utility-core" aria-controls="utility-core" role="tab" data-toggle="tab"><?php echo __('AAM Core', AAM_KEY); ?></a></li>
5
+ <li role="presentation"><a href="#utility-post" aria-controls="utility-post" role="tab" data-toggle="tab"><?php echo __('Posts Access', AAM_KEY); ?></a></li>
6
+ <li role="presentation"><a href="#utility-tools" aria-controls="utility-tools" role="tab" data-toggle="tab"><?php echo __('Tools', AAM_KEY); ?></a></li>
7
+ <li role="presentation"><a href="#utility-miscellaneous" aria-controls="utility-miscellaneous" role="tab" data-toggle="tab"><?php echo __('Miscellaneous', AAM_KEY); ?></a></li>
8
+ </ul>
9
+
10
+ <div class="tab-content">
11
+ <div role="tabpanel" class="tab-pane active" id="utility-core">
12
+ <table class="table table-striped table-bordered">
13
+ <tbody>
14
+ <?php foreach($this->getUtilityOptionList('core') as $id => $option) { ?>
15
+ <tr>
16
+ <td>
17
+ <span class='aam-setting-title'><?php echo $option['title']; ?></span>
18
+ <p class="aam-setting-description">
19
+ <?php echo $option['descr']; ?>
20
+ </p>
21
+ </td>
22
+ <td class="text-center">
23
+ <input type="checkbox" name="<?php echo $id; ?>" id="utility-<?php echo $id; ?>" <?php echo ($option['value'] ? 'checked' : ''); ?> /> <label for="utility-<?php echo $id; ?>"></label>
24
+ </td>
25
+ </tr>
26
+ <?php } ?>
27
+ </tbody>
28
+ </table>
29
+ </div>
30
+ <div role="tabpanel" class="tab-pane" id="utility-post">
31
+ <table class="table table-striped table-bordered">
32
+ <tbody>
33
+ <?php foreach($this->getUtilityOptionList('post') as $id => $option) { ?>
34
+ <tr>
35
+ <td>
36
+ <span class='aam-setting-title'><?php echo $option['title']; ?></span>
37
+ <p class="aam-setting-description">
38
+ <?php echo $option['descr']; ?>
39
+ </p>
40
+ </td>
41
+ <td class="text-center">
42
+ <input type="checkbox" name="<?php echo $id; ?>" id="utility-<?php echo $id; ?>" <?php echo ($option['value'] ? 'checked' : ''); ?> /> <label for="utility-<?php echo $id; ?>"></label>
43
+ </td>
44
+ </tr>
45
+ <?php } ?>
46
+ </tbody>
47
+ </table>
48
+ </div>
49
+ <div role="tabpanel" class="tab-pane" id="utility-tools">
50
+ <table class="table table-striped table-bordered">
51
+ <tbody>
52
+ <tr>
53
+ <td>
54
+ <span class='aam-setting-title'><?php echo __('Clear Cache', AAM_KEY); ?></span>
55
+ <p class="aam-setting-description">
56
+ <?php echo __('Clear all AAM cache.', AAM_KEY); ?>
57
+ </p>
58
+ </td>
59
+ <td>
60
+ <a href="#" class="btn btn-warning btn-block" id="clear-cache">Clear</a>
61
+ </td>
62
+ </tr>
63
+ <tr>
64
+ <td>
65
+ <span class='aam-setting-title'><?php echo __('Clear All Settings', AAM_KEY); ?></span>
66
+ <p class="aam-setting-description">
67
+ <?php echo __('Remove all the settings related to AAM (including all extension licenses).', AAM_KEY); ?>
68
+ </p>
69
+ </td>
70
+ <td>
71
+ <a href="#clear-settings-modal" data-toggle="modal" class="btn btn-danger btn-block">Clear</a>
72
+ </td>
73
+ </tr>
74
+ </tbody>
75
+ </table>
76
+ </div>
77
+ <div role="tabpanel" class="tab-pane" id="utility-miscellaneous">
78
+ <table class="table table-striped table-bordered">
79
+ <tbody>
80
+ <?php $misc = $this->getUtilityOptionList('miscellaneous'); ?>
81
+ <?php if (count($misc)) { ?>
82
+ <?php foreach($this->getUtilityOptionList('miscellaneous') as $id => $option) { ?>
83
+ <tr>
84
+ <td>
85
+ <span class='aam-setting-title'><?php echo $option['title']; ?></span>
86
+ <p class="aam-setting-description">
87
+ <?php echo $option['descr']; ?>
88
+ </p>
89
+ </td>
90
+ <td class="text-center">
91
+ <input type="checkbox" name="<?php echo $id; ?>" id="utility-<?php echo $id; ?>" <?php echo ($option['value'] ? 'checked' : ''); ?> /> <label for="utility-<?php echo $id; ?>"></label>
92
+ </td>
93
+ </tr>
94
+ <?php } ?>
95
+ <?php } else { ?>
96
+ <tr>
97
+ <td colspan="2" class="text-center"><?php echo __('No miscellaneous options found.', AAM_KEY); ?></td>
98
+ </tr>
99
+ <?php } ?>
100
 
101
+ <?php do_action('aam-post-utilities-setting'); ?>
102
+ </tbody>
103
+ </table>
104
+ </div>
105
+ </div>
106
+
107
  <div class="modal fade" id="clear-settings-modal" tabindex="-1" role="dialog">
108
  <div class="modal-dialog modal-sm" role="document">
109
  <div class="modal-content">
Application/Frontend/Manager.php CHANGED
@@ -101,7 +101,7 @@ class AAM_Frontend_Manager {
101
  if (empty($message) && ($redirect == 'login')) {
102
  $message = AAM_Core_Config::get(
103
  'redirect.login.message',
104
- '<p class="message">Access denied. Please login to get access.</p>'
105
  );
106
  }
107
 
@@ -357,8 +357,9 @@ class AAM_Frontend_Manager {
357
  AAM_Core_Config::get("frontend.404redirect.{$type}")
358
  );
359
  }
360
- } else {
361
  $post = $this->getCurrentPost();
 
362
  if (is_a($post, 'WP_Post')) {
363
  $this->checkPostReadAccess($post);
364
  }
101
  if (empty($message) && ($redirect == 'login')) {
102
  $message = AAM_Core_Config::get(
103
  'redirect.login.message',
104
+ '<p class="message">' . __('Access denied. Please login to get access.', AAM_KEY) . '</p>'
105
  );
106
  }
107
 
357
  AAM_Core_Config::get("frontend.404redirect.{$type}")
358
  );
359
  }
360
+ } elseif ($wp_query->is_single || $wp_query->is_page) {
361
  $post = $this->getCurrentPost();
362
+
363
  if (is_a($post, 'WP_Post')) {
364
  $this->checkPostReadAccess($post);
365
  }
Lang/advanced-access-manager-en_US.mo CHANGED
Binary file
Lang/advanced-access-manager-en_US.po CHANGED
@@ -1,13 +1,13 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AAM\n"
4
- "POT-Creation-Date: 2017-03-23 17:23-0400\n"
5
  "PO-Revision-Date: \n"
6
  "Language-Team: WP AAM <vasyl@vasyltech.com>\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=UTF-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.12\n"
11
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
  "X-Poedit-SourceCharset: UTF-8\n"
13
  "X-Poedit-KeywordsList: __\n"
@@ -16,354 +16,315 @@ msgstr ""
16
  "Language: en_US\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: media/js/aam-ui.js:44 Application/Backend/View/Localization.php:23
20
- msgid "Loading..."
21
- msgstr ""
22
-
23
- #: media/js/aam-ui.js:49 Application/Backend/View/Localization.php:24
24
- #: Application/Backend/phtml/partial/role-inheritance.phtml:5
25
- msgid "Select Role"
26
- msgstr ""
27
-
28
- #: media/js/aam-ui.js:90 Application/Backend/View/Localization.php:25
29
- msgid "Search Role"
30
- msgstr ""
31
-
32
- #: media/js/aam-ui.js:91 Application/Backend/View/Localization.php:26
33
- msgid "_TOTAL_ role(s)"
34
- msgstr ""
35
-
36
- #: media/js/aam-ui.js:99 media/js/aam-ui.js:558
37
- #: Application/Backend/View/Localization.php:27
38
- #: Application/Backend/phtml/index.phtml:112
39
- #: Application/Backend/phtml/object/capability.phtml:27
40
- #: Application/Backend/phtml/object/capability.phtml:57
41
- msgid "Create"
42
  msgstr ""
43
 
44
- #: media/js/aam-ui.js:120 Application/Backend/View/Localization.php:28
45
- #: Application/Backend/phtml/index.phtml:78
46
- #: Application/Backend/phtml/index.phtml:198
47
- msgid "Users"
48
  msgstr ""
49
 
50
- #: media/js/aam-ui.js:159 Application/Backend/View/Localization.php:45
51
- msgid "Manage Role"
52
  msgstr ""
53
 
54
- #: media/js/aam-ui.js:175 Application/Backend/View/Localization.php:46
55
- msgid "Edit Role Name"
56
  msgstr ""
57
 
58
- #: media/js/aam-ui.js:191
59
- msgid "Clone Role"
 
60
  msgstr ""
61
 
62
- #: media/js/aam-ui.js:212 media/js/aam-ui.js:397
63
- #: Application/Backend/View/Localization.php:35
64
- #: Application/Backend/View/Localization.php:47
65
- #: Application/Backend/phtml/index.phtml:146
66
- msgid "Delete Role"
67
  msgstr ""
68
 
69
- #: media/js/aam-ui.js:289 media/js/aam-ui.js:344 media/js/aam-ui.js:1182
70
- #: media/js/aam-ui.js:1228 Application/Backend/View/Localization.php:13
71
- msgid "Saving..."
 
 
72
  msgstr ""
73
 
74
- #: media/js/aam-ui.js:304 Application/Backend/View/Localization.php:29
75
- msgid "Failed to add new role"
 
76
  msgstr ""
77
 
78
- #: media/js/aam-ui.js:309 media/js/aam-ui.js:356 media/js/aam-ui.js:393
79
- #: media/js/aam-ui.js:487 media/js/aam-ui.js:519 media/js/aam-ui.js:895
80
- #: media/js/aam-ui.js:932 media/js/aam-ui.js:968 media/js/aam-ui.js:1195
81
- #: media/js/aam-ui.js:1241 media/js/aam-ui.js:1282 media/js/aam-ui.js:1454
82
- #: media/js/aam-ui.js:1504 media/js/aam-ui.js:1830 media/js/aam-ui.js:1925
83
- #: media/js/aam-ui.js:2019 media/js/aam-ui.js:2100 media/js/aam-ui.js:2174
84
- #: media/js/aam.js:207 Application/Backend/View/Localization.php:15
85
- msgid "Application error"
86
  msgstr ""
87
 
88
- #: media/js/aam-ui.js:312 Application/Backend/View/Localization.php:30
89
- msgid "Add Role"
90
  msgstr ""
91
 
92
- #: media/js/aam-ui.js:351 Application/Backend/View/Localization.php:31
93
- msgid "Failed to update role"
94
  msgstr ""
95
 
96
- #: media/js/aam-ui.js:360 Application/Backend/View/Localization.php:32
97
- #: Application/Backend/phtml/extension.phtml:50
98
- #: Application/Backend/phtml/extension.phtml:77
99
- #: Application/Backend/phtml/index.phtml:134
100
- #: Application/Backend/phtml/object/capability.phtml:79
101
- msgid "Update"
102
  msgstr ""
103
 
104
- #: media/js/aam-ui.js:383 media/js/aam-ui.js:1269
105
- #: Application/Backend/View/Localization.php:33
106
- msgid "Deleting..."
107
  msgstr ""
108
 
109
- #: media/js/aam-ui.js:389 Application/Backend/View/Localization.php:34
110
- msgid "Failed to delete role"
111
  msgstr ""
112
 
113
- #: media/js/aam-ui.js:472 media/js/aam-ui.js:473 media/js/aam-ui.js:650
114
- #: Application/Backend/View/Localization.php:51
115
- msgid "Unlock User"
116
  msgstr ""
117
 
118
- #: media/js/aam-ui.js:478 media/js/aam-ui.js:479 media/js/aam-ui.js:637
119
- #: Application/Backend/View/Localization.php:50
120
- msgid "Lock User"
121
  msgstr ""
122
 
123
- #: media/js/aam-ui.js:483 Application/Backend/View/Localization.php:36
124
- msgid "Failed to block user"
125
  msgstr ""
126
 
127
- #: media/js/aam-ui.js:549 Application/Backend/View/Localization.php:37
128
- msgid "Search User"
129
  msgstr ""
130
 
131
- #: media/js/aam-ui.js:550 Application/Backend/View/Localization.php:38
132
- msgid "_TOTAL_ user(s)"
133
  msgstr ""
134
 
135
- #: media/js/aam-ui.js:576 Application/Backend/View/Localization.php:39
136
- #: Application/Backend/phtml/frame.phtml:77
137
- #: Application/Backend/phtml/index.phtml:89
138
- msgid "Role"
139
  msgstr ""
140
 
141
- #: media/js/aam-ui.js:610 Application/Backend/View/Localization.php:48
142
- msgid "Manage User"
143
  msgstr ""
144
 
145
- #: media/js/aam-ui.js:624 Application/Backend/View/Localization.php:49
146
- msgid "Edit User"
147
  msgstr ""
148
 
149
- #: media/js/aam-ui.js:663
150
- msgid "Switch To User"
 
151
  msgstr ""
152
 
153
- #: media/js/aam-ui.js:718 Application/Backend/View/Localization.php:40
 
154
  msgid "Anonymous"
155
  msgstr ""
156
 
157
- #: media/js/aam-ui.js:750
158
  msgid "All Users, Roles and Visitor"
159
  msgstr ""
160
 
161
- #: media/js/aam-ui.js:800 Application/Backend/View/Localization.php:17
162
- #: Application/Backend/phtml/object/menu.phtml:56
163
- msgid "Show Menu"
164
- msgstr ""
165
-
166
- #: media/js/aam-ui.js:815 Application/Backend/View/Localization.php:18
167
- #: Application/Backend/phtml/object/menu.phtml:60
168
- msgid "Restrict Menu"
169
- msgstr ""
170
-
171
- #: media/js/aam-ui.js:927 Application/Backend/View/Localization.php:19
172
- msgid "Failed to retrieve mataboxes"
173
- msgstr ""
174
-
175
- #: media/js/aam-ui.js:955
176
- msgid "Processing"
177
- msgstr ""
178
-
179
- #: media/js/aam-ui.js:963
180
- msgid "Failed to initialize URL"
181
- msgstr ""
182
-
183
- #: media/js/aam-ui.js:971 Application/Backend/phtml/object/metabox.phtml:93
184
- msgid "Initialize"
185
- msgstr ""
186
-
187
- #: media/js/aam-ui.js:1045 Application/Backend/View/Localization.php:52
188
- msgid "Failed to grand capability - WordPress policy"
189
- msgstr ""
190
-
191
- #: media/js/aam-ui.js:1080 Application/Backend/View/Localization.php:11
192
  msgid "Search Capability"
193
  msgstr ""
194
 
195
- #: media/js/aam-ui.js:1081 Application/Backend/View/Localization.php:12
196
  msgid "_TOTAL_ capability(s)"
197
  msgstr ""
198
 
199
- #: media/js/aam-ui.js:1083
200
- msgid "Nothing to show"
 
 
 
201
  msgstr ""
202
 
203
- #: media/js/aam-ui.js:1190 Application/Backend/View/Localization.php:14
204
  msgid "Failed to add new capability"
205
  msgstr ""
206
 
207
- #: media/js/aam-ui.js:1198 Application/Backend/View/Localization.php:16
208
- msgid "Add Capability"
 
 
 
 
 
 
 
 
 
 
209
  msgstr ""
210
 
211
- #: media/js/aam-ui.js:1236
212
- msgid "Failed to update capability"
213
  msgstr ""
214
 
215
- #: media/js/aam-ui.js:1244 Application/Backend/phtml/object/capability.phtml:69
216
- msgid "Update Capability"
 
217
  msgstr ""
218
 
219
- #: media/js/aam-ui.js:1277
220
- msgid "Failed to delete capability"
 
221
  msgstr ""
222
 
223
- #: media/js/aam-ui.js:1285 Application/Backend/phtml/object/capability.phtml:91
224
- msgid "Delete Capability"
225
  msgstr ""
226
 
227
- #: media/js/aam-ui.js:1543 Application/Backend/View/Localization.php:20
228
  msgid "Search"
229
  msgstr ""
230
 
231
- #: media/js/aam-ui.js:1544 Application/Backend/View/Localization.php:21
232
  msgid "_TOTAL_ object(s)"
233
  msgstr ""
234
 
235
- #: media/js/aam-ui.js:1610
236
- msgid "Drill-Down"
237
  msgstr ""
238
 
239
- #: media/js/aam-ui.js:1628 Application/Backend/View/Localization.php:43
240
- msgid "Manage Access"
241
  msgstr ""
242
 
243
- #: media/js/aam-ui.js:1640 Application/Backend/View/Localization.php:44
244
- #: Application/Backend/View/PostOptionList.php:57
245
- msgid "Edit"
246
  msgstr ""
247
 
248
- #: media/js/aam-ui.js:1880 media/js/aam-ui.js:1975 media/js/aam-ui.js:2061
249
- #: media/js/aam-ui.js:2283 media/js/aam-ui.js:2317 media/js/aam-ui.js:2338
250
- #: media/js/aam-ui.js:2376
251
- msgid "Application Error"
252
  msgstr ""
253
 
254
- #: Application/Backend/Feature/404Redirect.php:62
255
- msgid "404 Redirect"
256
  msgstr ""
257
 
258
- #: Application/Backend/Feature/Abstract.php:30
259
- #: Application/Backend/Feature/Role.php:29
260
- #: Application/Backend/Feature/User.php:29 Application/Backend/Manager.php:483
261
- #: Application/Backend/Manager.php:508 Application/Core/API.php:225
262
- msgid "Access Denied"
263
  msgstr ""
264
 
265
- #: Application/Backend/Feature/Capability.php:104
266
- msgid "Capability already exists"
 
 
267
  msgstr ""
268
 
269
- #: Application/Backend/Feature/Capability.php:133
270
- msgid "Can not remove the capability"
271
  msgstr ""
272
 
273
- #: Application/Backend/Feature/Capability.php:254
274
- #: Application/Backend/Feature/Capability.php:293
275
- msgid "System"
276
  msgstr ""
277
 
278
- #: Application/Backend/Feature/Capability.php:255
279
- #: Application/Backend/Feature/Capability.php:295
280
- #: Application/Backend/Feature/Post.php:385
281
- msgid "Posts & Pages"
282
  msgstr ""
283
 
284
- #: Application/Backend/Feature/Capability.php:256
285
- #: Application/Backend/Feature/Capability.php:297
286
- #: Application/Backend/phtml/frame.phtml:167
287
- #: Application/Backend/phtml/object/post.phtml:88
288
- msgid "Backend"
 
289
  msgstr ""
290
 
291
- #: Application/Backend/Feature/Capability.php:257
292
- #: Application/Backend/Feature/Capability.php:299
293
- msgid "Miscellaneous"
294
  msgstr ""
295
 
296
- #: Application/Backend/Feature/Capability.php:320
297
- msgid "Capabilities"
298
  msgstr ""
299
 
300
- #: Application/Backend/Feature/Contact.php:45
301
- msgid "Contact Us"
 
 
302
  msgstr ""
303
 
304
- #: Application/Backend/Feature/Extension.php:96
305
- msgid "Enter license key to update extension."
306
  msgstr ""
307
 
308
- #: Application/Backend/Feature/Extension.php:157
309
- msgid "Extensions"
310
  msgstr ""
311
 
312
- #: Application/Backend/Feature/LoginRedirect.php:103
313
- msgid "Login Redirect"
314
  msgstr ""
315
 
316
- #: Application/Backend/Feature/Menu.php:190
317
- msgid "Backend Menu"
 
 
318
  msgstr ""
319
 
320
- #: Application/Backend/Feature/Metabox.php:239
321
- msgid "Metaboxes & Widgets"
322
  msgstr ""
323
 
324
- #: Application/Backend/Feature/Post.php:266
325
- msgid "You reached your limitation."
326
  msgstr ""
327
 
328
- #: Application/Backend/Feature/Redirect.php:103
329
- msgid "Access Denied Redirect"
330
  msgstr ""
331
 
332
- #: Application/Backend/Feature/Security.php:73
333
- msgid "Security"
 
 
334
  msgstr ""
335
 
336
- #: Application/Backend/Feature/Teaser.php:103
337
- msgid "Content Teaser"
338
  msgstr ""
339
 
340
- #: Application/Backend/Feature/Utility.php:113
341
- msgid "Utilities"
342
  msgstr ""
343
 
344
- #: Application/Backend/Manager.php:200
345
- msgid "Access Manager"
346
  msgstr ""
347
 
348
- #: Application/Backend/Manager.php:278 Application/Backend/Manager.php:298
349
- #: Application/Backend/Manager.php:323
350
- msgid "Access"
351
  msgstr ""
352
 
353
- #: Application/Backend/View/Localization.php:22
354
- msgid "Failed"
 
355
  msgstr ""
356
 
357
- #: Application/Backend/View/Localization.php:41
358
- msgid "Current user"
 
359
  msgstr ""
360
 
361
- #: Application/Backend/View/Localization.php:42
362
- msgid "Current role"
363
  msgstr ""
364
 
365
  #: Application/Backend/View/PostOptionList.php:13
366
- #: Application/Backend/View/PostOptionList.php:49
367
  msgid "List"
368
  msgstr ""
369
 
@@ -382,7 +343,7 @@ msgid " %sSee in action.%s"
382
  msgstr ""
383
 
384
  #: Application/Backend/View/PostOptionList.php:17
385
- #: Application/Backend/View/PostOptionList.php:53
386
  msgid "List To Others"
387
  msgstr ""
388
 
@@ -439,8 +400,6 @@ msgid "Restrict access to comment on %s when commenting feature is enabled."
439
  msgstr ""
440
 
441
  #: Application/Backend/View/PostOptionList.php:37
442
- #: Application/Backend/phtml/frame.phtml:226
443
- #: Application/Backend/phtml/object/post.phtml:143
444
  msgid "Redirect"
445
  msgstr ""
446
 
@@ -451,6 +410,7 @@ msgstr ""
451
 
452
  #: Application/Backend/View/PostOptionList.php:38
453
  #: Application/Backend/View/PostOptionList.php:43
 
454
  msgid "change"
455
  msgstr ""
456
 
@@ -477,7 +437,34 @@ msgid ""
477
  "higher."
478
  msgstr ""
479
 
480
- #: Application/Backend/View/PostOptionList.php:50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
481
  #, php-format
482
  msgid ""
483
  "Hide %s however access with a direct URL is still allowed. When there are "
@@ -485,7 +472,7 @@ msgid ""
485
  "performance reasons, AAM checks limited number of posts per request."
486
  msgstr ""
487
 
488
- #: Application/Backend/View/PostOptionList.php:54
489
  #, php-format
490
  msgid ""
491
  "Hide %s for all except author (whoever created %s or was assigned on the "
@@ -494,18 +481,18 @@ msgid ""
494
  "performance reasons, AAM checks limited number of posts per request."
495
  msgstr ""
496
 
497
- #: Application/Backend/View/PostOptionList.php:58
498
  #, php-format
499
  msgid ""
500
  "Restrict access to edit %s. Any attempts to edit %s will result in "
501
  "redirecting user based on the Access Denied Redirect rule."
502
  msgstr ""
503
 
504
- #: Application/Backend/View/PostOptionList.php:61
505
  msgid "Edit By Others"
506
  msgstr ""
507
 
508
- #: Application/Backend/View/PostOptionList.php:62
509
  #, php-format
510
  msgid ""
511
  "Restrict access to edit %s for all except author (whoever created %s or was "
@@ -513,44 +500,44 @@ msgid ""
513
  "redirecting user based on the Access Denied Redirect rule."
514
  msgstr ""
515
 
516
- #: Application/Backend/View/PostOptionList.php:65
517
- #: Application/Backend/phtml/index.phtml:152
518
- #: Application/Backend/phtml/object/capability.phtml:97
519
  msgid "Delete"
520
  msgstr ""
521
 
522
- #: Application/Backend/View/PostOptionList.php:66
523
  #, php-format
524
  msgid "Restrict access to trash or permanently delete %s."
525
  msgstr ""
526
 
527
- #: Application/Backend/View/PostOptionList.php:69
528
  msgid "Delete By Others"
529
  msgstr ""
530
 
531
- #: Application/Backend/View/PostOptionList.php:70
532
  #, php-format
533
  msgid ""
534
  "Restrict access to trash or permanently delete %s for all except author "
535
  "(whoever created %s or was assigned on the Author metabox)."
536
  msgstr ""
537
 
538
- #: Application/Backend/View/PostOptionList.php:73
539
  msgid "Publish"
540
  msgstr ""
541
 
542
- #: Application/Backend/View/PostOptionList.php:74
543
  #, php-format
544
  msgid ""
545
  "Restrict access to publish %s. User will be allowed only submit for review. "
546
  "Quick Edit inline action is also removed from the list page."
547
  msgstr ""
548
 
549
- #: Application/Backend/View/PostOptionList.php:77
550
  msgid "Publish By Others"
551
  msgstr ""
552
 
553
- #: Application/Backend/View/PostOptionList.php:78
554
  #, php-format
555
  msgid ""
556
  "Restrict access to publish %s for all except author (whoever created %s or "
@@ -595,85 +582,111 @@ msgstr ""
595
  msgid "Edit/Delete Capabilities"
596
  msgstr ""
597
 
598
- #: Application/Backend/View/UtilityOptionList.php:17
599
  msgid "Backend Access Control"
600
  msgstr ""
601
 
602
- #: Application/Backend/View/UtilityOptionList.php:18
603
  msgid ""
604
  "Allow AAM to manage access to backend resources. If there is no need to "
605
  "manage access to the website backend then keep this option unchecked as it "
606
  "may increase your webiste performance."
607
  msgstr ""
608
 
609
- #: Application/Backend/View/UtilityOptionList.php:22
610
  msgid "Frontend Access Control"
611
  msgstr ""
612
 
613
- #: Application/Backend/View/UtilityOptionList.php:23
614
  msgid ""
615
  "Allow AAM to manage access to frontend resources. If there is no need to "
616
  "manage access to the website frontend then keep this option unchecked as it "
617
  "may increase your webiste performance."
618
  msgstr ""
619
 
620
- #: Application/Backend/View/UtilityOptionList.php:27
621
  msgid "Media Files Access Control"
622
  msgstr ""
623
 
624
- #: Application/Backend/View/UtilityOptionList.php:32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
625
  msgid "Render Access Manager Metabox"
626
  msgstr ""
627
 
628
- #: Application/Backend/View/UtilityOptionList.php:33
629
  msgid ""
630
  "Render Access Manager metabox on all post and category edit pages. Access "
631
  "Manager metabox is the quick way to manage access to any post or category "
632
  "without leaving an edit page."
633
  msgstr ""
634
 
635
- #: Application/Backend/View/UtilityOptionList.php:37
636
- msgid "Check Post Visibility"
637
  msgstr ""
638
 
639
- #: Application/Backend/View/UtilityOptionList.php:38
640
  msgid ""
641
- "For performance reasons, keep this option uncheck if do not use LIST or LIST "
642
- "TO OTHERS access options on Posts & Pages tab. When it is checked, AAM will "
643
- "filter list of posts that are hidden for a user on both frontend and backend."
644
  msgstr ""
645
 
646
- #: Application/Extension/Repository.php:268
647
  #, php-format
648
  msgid "Failed to create %s"
649
  msgstr ""
650
 
651
- #: Application/Extension/Repository.php:272
652
  #, php-format
653
  msgid "Directory %s is not writable"
654
  msgstr ""
655
 
656
- #: Application/Frontend/Manager.php:191
 
 
 
 
657
  #, php-format
658
  msgid "[%s] Double Authentication"
659
  msgstr ""
660
 
661
- #: Application/Frontend/Manager.php:193
662
  #, php-format
663
  msgid "Someone was trying to login from the different IP address %s:"
664
  msgstr ""
665
 
666
- #: Application/Frontend/Manager.php:194
667
  #, php-format
668
  msgid "Website: %s"
669
  msgstr ""
670
 
671
- #: Application/Frontend/Manager.php:195
672
  #, php-format
673
  msgid "Username: %s"
674
  msgstr ""
675
 
676
- #: Application/Frontend/Manager.php:196
677
  msgid "Visit the following address to authorize the login:"
678
  msgstr ""
679
 
@@ -681,46 +694,111 @@ msgstr ""
681
  msgid "No valid strategy found for the given context"
682
  msgstr ""
683
 
684
- #: aam.php:163
685
  msgid "PHP 5.2 or higher is required."
686
  msgstr ""
687
 
688
- #: aam.php:165
689
  msgid "WP 3.8 or higher is required."
690
  msgstr ""
691
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
692
  #: Application/Backend/phtml/404redirect.phtml:33
693
  #: Application/Backend/phtml/object/login-redirect.phtml:43
694
- #: Application/Backend/phtml/object/redirect.phtml:61
695
- #: Application/Backend/phtml/object/redirect.phtml:113
 
696
  msgid "Existing Page"
697
  msgstr ""
698
 
699
  #: Application/Backend/phtml/404redirect.phtml:42
700
  #: Application/Backend/phtml/object/login-redirect.phtml:52
701
- #: Application/Backend/phtml/object/redirect.phtml:70
702
- #: Application/Backend/phtml/object/redirect.phtml:122
 
703
  msgid "-- Select Page --"
704
  msgstr ""
705
 
706
  #: Application/Backend/phtml/404redirect.phtml:48
707
  #: Application/Backend/phtml/object/login-redirect.phtml:58
708
- #: Application/Backend/phtml/object/redirect.phtml:76
709
- #: Application/Backend/phtml/object/redirect.phtml:128
 
710
  msgid "The URL"
711
  msgstr ""
712
 
713
  #: Application/Backend/phtml/404redirect.phtml:53
714
  #: Application/Backend/phtml/object/login-redirect.phtml:63
715
- #: Application/Backend/phtml/object/redirect.phtml:81
716
- #: Application/Backend/phtml/object/redirect.phtml:133
 
717
  msgid "PHP Callback Function"
718
  msgstr ""
719
 
720
  #: Application/Backend/phtml/contact.phtml:6
721
  msgid ""
722
- "Feel free to contact us if you have any questions or concerns but follow few "
723
- "simple rules:"
724
  msgstr ""
725
 
726
  #: Application/Backend/phtml/extension.phtml:11
@@ -740,174 +818,141 @@ msgid "Premium"
740
  msgstr ""
741
 
742
  #: Application/Backend/phtml/extension.phtml:29
743
- #: Application/Backend/phtml/extension.phtml:68
744
  msgid "Free"
745
  msgstr ""
746
 
747
- #: Application/Backend/phtml/extension.phtml:48
748
- #: Application/Backend/phtml/extension.phtml:75
749
  msgid "Installed"
750
  msgstr ""
751
 
752
- #: Application/Backend/phtml/extension.phtml:52
753
  msgid "Inactive"
754
  msgstr ""
755
 
756
- #: Application/Backend/phtml/extension.phtml:54
757
- msgid "Purchase"
758
  msgstr ""
759
 
760
- #: Application/Backend/phtml/extension.phtml:79
761
- #: Application/Backend/phtml/extension.phtml:110
762
  msgid "Download"
763
  msgstr ""
764
 
765
- #: Application/Backend/phtml/extension.phtml:94
766
- #: Application/Backend/phtml/extension.phtml:121
767
- #: Application/Backend/phtml/extension.phtml:132
768
- #: Application/Backend/phtml/frame.phtml:204
769
- #: Application/Backend/phtml/frame.phtml:215
770
- #: Application/Backend/phtml/frame.phtml:225
771
- #: Application/Backend/phtml/frame.phtml:236
772
- #: Application/Backend/phtml/index.phtml:101
773
- #: Application/Backend/phtml/index.phtml:113
774
  #: Application/Backend/phtml/index.phtml:123
775
- #: Application/Backend/phtml/index.phtml:135
776
  #: Application/Backend/phtml/index.phtml:145
777
- #: Application/Backend/phtml/index.phtml:153
778
- #: Application/Backend/phtml/object/capability.phtml:47
779
- #: Application/Backend/phtml/object/capability.phtml:58
780
- #: Application/Backend/phtml/object/capability.phtml:68
781
- #: Application/Backend/phtml/object/capability.phtml:80
782
- #: Application/Backend/phtml/object/capability.phtml:90
783
- #: Application/Backend/phtml/object/capability.phtml:98
784
- #: Application/Backend/phtml/object/menu.phtml:75
 
785
  #: Application/Backend/phtml/object/metabox.phtml:80
786
  #: Application/Backend/phtml/object/metabox.phtml:94
787
- #: Application/Backend/phtml/object/post.phtml:121
788
- #: Application/Backend/phtml/object/post.phtml:132
789
- #: Application/Backend/phtml/object/post.phtml:142
790
- #: Application/Backend/phtml/object/post.phtml:153
791
- #: Application/Backend/phtml/utility.phtml:53
 
 
792
  msgid "Close"
793
  msgstr ""
794
 
795
- #: Application/Backend/phtml/extension.phtml:95
796
  msgid "Notification"
797
  msgstr ""
798
 
799
- #: Application/Backend/phtml/extension.phtml:99
800
  msgid ""
801
  "Extension requires manual installation. Please follow few simple steps below."
802
  msgstr ""
803
 
804
- #: Application/Backend/phtml/extension.phtml:111
805
- #: Application/Backend/phtml/utility.phtml:61
806
  msgid "Cancel"
807
  msgstr ""
808
 
809
- #: Application/Backend/phtml/extension.phtml:122
810
  msgid "Install Extension"
811
  msgstr ""
812
 
813
- #: Application/Backend/phtml/extension.phtml:126
814
  msgid ""
815
  "Insert license key that you recieved after the payment (find the email "
816
  "example below). It might take up to 2 hours to process the payment. Please "
817
  "remember that license key is limited only to one life domain."
818
  msgstr ""
819
 
820
- #: Application/Backend/phtml/frame.phtml:91
821
- #: Application/Backend/phtml/index.phtml:165
822
  msgid "Username"
823
  msgstr ""
824
 
825
- #: Application/Backend/phtml/frame.phtml:101
826
  #, php-format
827
  msgid "Manage access to %s for visitors (any user that is not authenticated)"
828
  msgstr ""
829
 
830
- #: Application/Backend/phtml/frame.phtml:102
831
- #: Application/Backend/phtml/index.phtml:176
832
  msgid "Manage Visitors"
833
  msgstr ""
834
 
835
- #: Application/Backend/phtml/frame.phtml:107
836
  #, php-format
837
  msgid ""
838
  "Manage default access to %s for all users, roles and visitor. This includes "
839
  "Administrator role and yourself"
840
  msgstr ""
841
 
842
- #: Application/Backend/phtml/frame.phtml:109
843
- #: Application/Backend/phtml/index.phtml:182
844
  msgid "Manage Default Access"
845
  msgstr ""
846
 
847
- #: Application/Backend/phtml/frame.phtml:124
848
- #: Application/Backend/phtml/object/menu.phtml:7
849
  #: Application/Backend/phtml/object/metabox.phtml:12
850
  #: Application/Backend/phtml/object/post.phtml:27
851
  msgid "Settings are customized"
852
  msgstr ""
853
 
854
- #: Application/Backend/phtml/frame.phtml:125
855
- #: Application/Backend/phtml/object/menu.phtml:8
 
856
  #: Application/Backend/phtml/object/metabox.phtml:13
857
  #: Application/Backend/phtml/object/post.phtml:28
858
  msgid "Reset To Default"
859
  msgstr ""
860
 
861
- #: Application/Backend/phtml/frame.phtml:140
862
  #: Application/Backend/phtml/object/post.phtml:65
863
  msgid "Frontend"
864
  msgstr ""
865
 
866
- #: Application/Backend/phtml/frame.phtml:205
867
- #: Application/Backend/phtml/object/post.phtml:122
868
- msgid "Change Password"
869
- msgstr ""
870
-
871
- #: Application/Backend/phtml/frame.phtml:209
872
- #: Application/Backend/phtml/object/post.phtml:126
873
- msgid "Password"
874
- msgstr ""
875
-
876
- #: Application/Backend/phtml/frame.phtml:210
877
- #: Application/Backend/phtml/object/post.phtml:127
878
- msgid "Enter Password"
879
- msgstr ""
880
-
881
- #: Application/Backend/phtml/frame.phtml:214
882
- #: Application/Backend/phtml/frame.phtml:235
883
- #: Application/Backend/phtml/object/post.phtml:131
884
- #: Application/Backend/phtml/object/post.phtml:152
885
- msgid "Change"
886
- msgstr ""
887
-
888
- #: Application/Backend/phtml/frame.phtml:230
889
- #: Application/Backend/phtml/object/post.phtml:147
890
- msgid "Valid URL or Page ID"
891
- msgstr ""
892
-
893
- #: Application/Backend/phtml/frame.phtml:231
894
- #: Application/Backend/phtml/object/post.phtml:148
895
- msgid "Enter Redirect"
896
- msgstr ""
897
-
898
  #: Application/Backend/phtml/index.phtml:14
899
  msgid "Access Control Panel"
900
  msgstr ""
901
 
902
  #: Application/Backend/phtml/index.phtml:21
903
  msgid ""
904
- "Appreciate your interest in Advanced Access Manager (aka AAM). With strong "
905
  "knowledge and experience in WordPress, AAM becomes a very powerful tool to "
906
  "manage access to your frontend and backend."
907
  msgstr ""
908
 
909
  #: Application/Backend/phtml/index.phtml:22
910
- msgid "Please note!"
911
  msgstr ""
912
 
913
  #: Application/Backend/phtml/index.phtml:23
@@ -919,154 +964,165 @@ msgstr ""
919
 
920
  #: Application/Backend/phtml/index.phtml:24
921
  #, php-format
922
- msgid "Refer to our %sHelp%s section when there is any question."
 
 
923
  msgstr ""
924
 
925
- #: Application/Backend/phtml/index.phtml:37
926
  msgid "Notifications"
927
  msgstr ""
928
 
929
- #: Application/Backend/phtml/index.phtml:56
930
  msgid "AAM Multisite"
931
  msgstr ""
932
 
933
- #: Application/Backend/phtml/index.phtml:60
934
  msgid "Install AAM Multisite"
935
  msgstr ""
936
 
937
- #: Application/Backend/phtml/index.phtml:71
938
  msgid "Users/Roles Panel"
939
  msgstr ""
940
 
941
- #: Application/Backend/phtml/index.phtml:77
942
- #: Application/Backend/phtml/index.phtml:193
943
  msgid "Roles"
944
  msgstr ""
945
 
946
- #: Application/Backend/phtml/index.phtml:79
947
- #: Application/Backend/phtml/index.phtml:203
948
  msgid "Visitor"
949
  msgstr ""
950
 
951
- #: Application/Backend/phtml/index.phtml:80
952
- #: Application/Backend/phtml/index.phtml:208
953
  msgid "Default"
954
  msgstr ""
955
 
956
- #: Application/Backend/phtml/index.phtml:90
957
- #: Application/Backend/phtml/index.phtml:166
958
  msgid "Action"
959
  msgstr ""
960
 
961
- #: Application/Backend/phtml/index.phtml:102
962
  msgid "Create Role"
963
  msgstr ""
964
 
965
- #: Application/Backend/phtml/index.phtml:106
966
- #: Application/Backend/phtml/index.phtml:128
967
  msgid "Role Name"
968
  msgstr ""
969
 
970
- #: Application/Backend/phtml/index.phtml:107
971
- #: Application/Backend/phtml/index.phtml:129
972
  msgid "Enter Role Name"
973
  msgstr ""
974
 
975
- #: Application/Backend/phtml/index.phtml:124
976
  msgid "Update Role"
977
  msgstr ""
978
 
979
- #: Application/Backend/phtml/index.phtml:149
980
  #, php-format
981
  msgid "Are you sure that you want to delete the %s role?"
982
  msgstr ""
983
 
984
- #: Application/Backend/phtml/index.phtml:175
985
  msgid ""
986
  "Manage access to your website for visitors (any user that is not "
987
  "authenticated)"
988
  msgstr ""
989
 
990
- #: Application/Backend/phtml/index.phtml:181
991
  msgid ""
992
  "Manage default access to your website resources for all users, roles and "
993
  "visitor. This includes Administrator role and your user"
994
  msgstr ""
995
 
996
- #: Application/Backend/phtml/index.phtml:194
997
  msgid ""
998
  "With Roles tab you can manage access for any defined role, edit role's name, "
999
  "create new role or even delete existing (but only when there is no users "
1000
  "assigned to it). You are not allowed to delete Administrator role."
1001
  msgstr ""
1002
 
1003
- #: Application/Backend/phtml/index.phtml:199
1004
  msgid ""
1005
  "Manage access for any user. As a bonus feature, you can block user. It means "
1006
  "that user will be not able to login to your website anymore."
1007
  msgstr ""
1008
 
1009
- #: Application/Backend/phtml/index.phtml:204
1010
  msgid ""
1011
  "Visitor can be considered any user that is not authenticated to your website."
1012
  msgstr ""
1013
 
1014
- #: Application/Backend/phtml/index.phtml:209
1015
  msgid ""
1016
  "Manage default access settings to your website resources for all users, "
1017
  "roles and visitors."
1018
  msgstr ""
1019
 
1020
- #: Application/Backend/phtml/object/capability.phtml:16
 
 
 
 
1021
  msgid "Filter"
1022
  msgstr ""
1023
 
1024
- #: Application/Backend/phtml/object/capability.phtml:23
1025
  msgid "All Capabilities"
1026
  msgstr ""
1027
 
1028
- #: Application/Backend/phtml/object/capability.phtml:35
1029
- msgid "Category"
1030
  msgstr ""
1031
 
1032
  #: Application/Backend/phtml/object/capability.phtml:36
1033
- #: Application/Backend/phtml/object/capability.phtml:52
1034
- #: Application/Backend/phtml/object/capability.phtml:73
1035
- msgid "Capability"
1036
  msgstr ""
1037
 
1038
  #: Application/Backend/phtml/object/capability.phtml:37
 
 
 
 
 
 
1039
  #: Application/Backend/phtml/object/post.phtml:44
1040
  msgid "Actions"
1041
  msgstr ""
1042
 
1043
- #: Application/Backend/phtml/object/capability.phtml:48
1044
  msgid "Create Capability"
1045
  msgstr ""
1046
 
1047
- #: Application/Backend/phtml/object/capability.phtml:53
1048
- #: Application/Backend/phtml/object/capability.phtml:74
1049
  msgid "Enter Capability"
1050
  msgstr ""
1051
 
1052
- #: Application/Backend/phtml/object/capability.phtml:94
1053
  #, php-format
1054
  msgid "Are you sure that you want to delete %s capability for all roles?"
1055
  msgstr ""
1056
 
1057
  #: Application/Backend/phtml/object/login-redirect.phtml:27
 
1058
  msgid "WordPress default behavior"
1059
  msgstr ""
1060
 
1061
- #: Application/Backend/phtml/object/menu.phtml:76
1062
  msgid "Dashboard Lockdown"
1063
  msgstr ""
1064
 
1065
- #: Application/Backend/phtml/object/menu.phtml:79
1066
  msgid "You cannot restrict access to Dashboard home page."
1067
  msgstr ""
1068
 
1069
- #: Application/Backend/phtml/object/menu.phtml:81
1070
  #, php-format
1071
  msgid ""
1072
  "Dashboard home page is the default page every user is redirected after "
@@ -1074,7 +1130,7 @@ msgid ""
1074
  "%splease check this article%s."
1075
  msgstr ""
1076
 
1077
- #: Application/Backend/phtml/object/menu.phtml:84
1078
  msgid "OK"
1079
  msgstr ""
1080
 
@@ -1141,13 +1197,13 @@ msgstr ""
1141
  msgid "Backend Redirect"
1142
  msgstr ""
1143
 
1144
- #: Application/Backend/phtml/object/redirect.phtml:56
1145
- #: Application/Backend/phtml/object/redirect.phtml:108
1146
  msgid "Customized Message"
1147
  msgstr ""
1148
 
1149
- #: Application/Backend/phtml/object/redirect.phtml:57
1150
- #: Application/Backend/phtml/object/redirect.phtml:109
1151
  msgid "Enter message..."
1152
  msgstr ""
1153
 
@@ -1163,6 +1219,42 @@ msgstr ""
1163
  msgid "Add excerpt before teaser message"
1164
  msgstr ""
1165
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1166
  #: Application/Backend/phtml/partial/role-inheritance.phtml:3
1167
  msgid "Inherit Capabilities From"
1168
  msgstr ""
@@ -1173,31 +1265,47 @@ msgid ""
1173
  "CodePinch."
1174
  msgstr ""
1175
 
1176
- #: Application/Backend/phtml/utility.phtml:26
 
 
 
 
 
 
 
 
 
 
 
 
1177
  msgid "Clear Cache"
1178
  msgstr ""
1179
 
1180
- #: Application/Backend/phtml/utility.phtml:28
1181
  msgid "Clear all AAM cache."
1182
  msgstr ""
1183
 
1184
- #: Application/Backend/phtml/utility.phtml:37
1185
  msgid "Clear All Settings"
1186
  msgstr ""
1187
 
1188
- #: Application/Backend/phtml/utility.phtml:39
1189
  msgid ""
1190
  "Remove all the settings related to AAM (including all extension licenses)."
1191
  msgstr ""
1192
 
1193
- #: Application/Backend/phtml/utility.phtml:54
 
 
 
 
1194
  msgid "Clear all settings"
1195
  msgstr ""
1196
 
1197
- #: Application/Backend/phtml/utility.phtml:57
1198
  msgid "All AAM settings will be removed."
1199
  msgstr ""
1200
 
1201
- #: Application/Backend/phtml/utility.phtml:60
1202
  msgid "Clear"
1203
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AAM\n"
4
+ "POT-Creation-Date: 2017-05-21 11:58-0400\n"
5
  "PO-Revision-Date: \n"
6
  "Language-Team: WP AAM <vasyl@vasyltech.com>\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=UTF-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.0.1\n"
11
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
  "X-Poedit-SourceCharset: UTF-8\n"
13
  "X-Poedit-KeywordsList: __\n"
16
  "Language: en_US\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: Application/Backend/Feature/404Redirect.php:68
20
+ msgid "404 Redirect"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgstr ""
22
 
23
+ #: Application/Backend/Feature/Abstract.php:31
24
+ #: Application/Backend/Manager.php:539 Application/Backend/Manager.php:562
25
+ #: Application/Core/API.php:246
26
+ msgid "Access Denied"
27
  msgstr ""
28
 
29
+ #: Application/Backend/Feature/Capability.php:96
30
+ msgid "Capability already exists"
31
  msgstr ""
32
 
33
+ #: Application/Backend/Feature/Capability.php:125
34
+ msgid "Can not remove the capability"
35
  msgstr ""
36
 
37
+ #: Application/Backend/Feature/Capability.php:235
38
+ #: Application/Backend/Feature/Capability.php:276
39
+ msgid "System"
40
  msgstr ""
41
 
42
+ #: Application/Backend/Feature/Capability.php:236
43
+ #: Application/Backend/Feature/Capability.php:278
44
+ #: Application/Backend/Feature/Post.php:467
45
+ msgid "Posts & Pages"
 
46
  msgstr ""
47
 
48
+ #: Application/Backend/Feature/Capability.php:237
49
+ #: Application/Backend/Feature/Capability.php:280
50
+ #: Application/Backend/phtml/frame.phtml:143
51
+ #: Application/Backend/phtml/object/post.phtml:88
52
+ msgid "Backend"
53
  msgstr ""
54
 
55
+ #: Application/Backend/Feature/Capability.php:238
56
+ #: Application/Backend/Feature/Capability.php:282
57
+ msgid "AAM Interface"
58
  msgstr ""
59
 
60
+ #: Application/Backend/Feature/Capability.php:239
61
+ #: Application/Backend/Feature/Capability.php:284
62
+ #: Application/Backend/phtml/utility.phtml:7
63
+ msgid "Miscellaneous"
 
 
 
 
64
  msgstr ""
65
 
66
+ #: Application/Backend/Feature/Capability.php:324
67
+ msgid "Capabilities"
68
  msgstr ""
69
 
70
+ #: Application/Backend/Feature/Contact.php:51
71
+ msgid "Contact Us"
72
  msgstr ""
73
 
74
+ #: Application/Backend/Feature/Extension.php:96
75
+ msgid "Enter license key to update extension."
 
 
 
 
76
  msgstr ""
77
 
78
+ #: Application/Backend/Feature/Extension.php:164
79
+ msgid "Extensions"
 
80
  msgstr ""
81
 
82
+ #: Application/Backend/Feature/LoginRedirect.php:109
83
+ msgid "Login Redirect"
84
  msgstr ""
85
 
86
+ #: Application/Backend/Feature/LogoutRedirect.php:110
87
+ msgid "Logout Redirect"
 
88
  msgstr ""
89
 
90
+ #: Application/Backend/Feature/Menu.php:209
91
+ msgid "Backend Menu"
 
92
  msgstr ""
93
 
94
+ #: Application/Backend/Feature/Metabox.php:245
95
+ msgid "Metaboxes & Widgets"
96
  msgstr ""
97
 
98
+ #: Application/Backend/Feature/Redirect.php:117
99
+ msgid "Access Denied Redirect"
100
  msgstr ""
101
 
102
+ #: Application/Backend/Feature/Security.php:79
103
+ msgid "Security"
104
  msgstr ""
105
 
106
+ #: Application/Backend/Feature/Teaser.php:109
107
+ msgid "Content Teaser"
 
 
108
  msgstr ""
109
 
110
+ #: Application/Backend/Feature/Utility.php:140
111
+ msgid "Utilities"
112
  msgstr ""
113
 
114
+ #: Application/Backend/Manager.php:216
115
+ msgid "Access Manager"
116
  msgstr ""
117
 
118
+ #: Application/Backend/Manager.php:309 Application/Backend/Manager.php:327
119
+ #: Application/Backend/Manager.php:350
120
+ msgid "Access"
121
  msgstr ""
122
 
123
+ #: Application/Backend/Manager.php:448
124
+ #: Application/Backend/View/Localization.php:40 media/js/aam-interface.js:713
125
  msgid "Anonymous"
126
  msgstr ""
127
 
128
+ #: Application/Backend/Manager.php:455 media/js/aam-interface.js:745
129
  msgid "All Users, Roles and Visitor"
130
  msgstr ""
131
 
132
+ #: Application/Backend/View/Localization.php:11 media/js/aam-interface.js:1075
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  msgid "Search Capability"
134
  msgstr ""
135
 
136
+ #: Application/Backend/View/Localization.php:12 media/js/aam-interface.js:1076
137
  msgid "_TOTAL_ capability(s)"
138
  msgstr ""
139
 
140
+ #: Application/Backend/View/Localization.php:13 media/js/aam-interface.js:286
141
+ #: media/js/aam-interface.js:341 media/js/aam-interface.js:1179
142
+ #: media/js/aam-interface.js:1225 media/js/aam-interface.js:1760
143
+ #: media/js/aam-interface.js:1807 media/js/aam-interface.js:1853
144
+ msgid "Saving..."
145
  msgstr ""
146
 
147
+ #: Application/Backend/View/Localization.php:14 media/js/aam-interface.js:1187
148
  msgid "Failed to add new capability"
149
  msgstr ""
150
 
151
+ #: Application/Backend/View/Localization.php:15 media/js/aam-interface.js:306
152
+ #: media/js/aam-interface.js:353 media/js/aam-interface.js:390
153
+ #: media/js/aam-interface.js:484 media/js/aam-interface.js:516
154
+ #: media/js/aam-interface.js:890 media/js/aam-interface.js:927
155
+ #: media/js/aam-interface.js:963 media/js/aam-interface.js:1192
156
+ #: media/js/aam-interface.js:1238 media/js/aam-interface.js:1279
157
+ #: media/js/aam-interface.js:1473 media/js/aam-interface.js:1523
158
+ #: media/js/aam-interface.js:1915 media/js/aam-interface.js:2010
159
+ #: media/js/aam-interface.js:2109 media/js/aam-interface.js:2203
160
+ #: media/js/aam-interface.js:2284 media/js/aam-interface.js:2358
161
+ #: media/js/aam.js:207
162
+ msgid "Application error"
163
  msgstr ""
164
 
165
+ #: Application/Backend/View/Localization.php:16 media/js/aam-interface.js:1195
166
+ msgid "Add Capability"
167
  msgstr ""
168
 
169
+ #: Application/Backend/View/Localization.php:17 media/js/aam-interface.js:795
170
+ #: Application/Backend/phtml/object/menu.phtml:63
171
+ msgid "Show Menu"
172
  msgstr ""
173
 
174
+ #: Application/Backend/View/Localization.php:18 media/js/aam-interface.js:810
175
+ #: Application/Backend/phtml/object/menu.phtml:67
176
+ msgid "Restrict Menu"
177
  msgstr ""
178
 
179
+ #: Application/Backend/View/Localization.php:19 media/js/aam-interface.js:922
180
+ msgid "Failed to retrieve mataboxes"
181
  msgstr ""
182
 
183
+ #: Application/Backend/View/Localization.php:20 media/js/aam-interface.js:1562
184
  msgid "Search"
185
  msgstr ""
186
 
187
+ #: Application/Backend/View/Localization.php:21 media/js/aam-interface.js:1563
188
  msgid "_TOTAL_ object(s)"
189
  msgstr ""
190
 
191
+ #: Application/Backend/View/Localization.php:22
192
+ msgid "Failed"
193
  msgstr ""
194
 
195
+ #: Application/Backend/View/Localization.php:23 media/js/aam-interface.js:44
196
+ msgid "Loading..."
197
  msgstr ""
198
 
199
+ #: Application/Backend/View/Localization.php:24 media/js/aam-interface.js:49
200
+ #: Application/Backend/phtml/partial/role-inheritance.phtml:5
201
+ msgid "Select Role"
202
  msgstr ""
203
 
204
+ #: Application/Backend/View/Localization.php:25 media/js/aam-interface.js:90
205
+ msgid "Search Role"
 
 
206
  msgstr ""
207
 
208
+ #: Application/Backend/View/Localization.php:26 media/js/aam-interface.js:91
209
+ msgid "_TOTAL_ role(s)"
210
  msgstr ""
211
 
212
+ #: Application/Backend/View/Localization.php:27 media/js/aam-interface.js:99
213
+ #: media/js/aam-interface.js:555 Application/Backend/phtml/index.phtml:122
214
+ #: Application/Backend/phtml/object/capability.phtml:18
215
+ #: Application/Backend/phtml/object/capability.phtml:58
216
+ msgid "Create"
217
  msgstr ""
218
 
219
+ #: Application/Backend/View/Localization.php:28 media/js/aam-interface.js:120
220
+ #: Application/Backend/phtml/index.phtml:82
221
+ #: Application/Backend/phtml/index.phtml:215
222
+ msgid "Users"
223
  msgstr ""
224
 
225
+ #: Application/Backend/View/Localization.php:29 media/js/aam-interface.js:301
226
+ msgid "Failed to add new role"
227
  msgstr ""
228
 
229
+ #: Application/Backend/View/Localization.php:30 media/js/aam-interface.js:309
230
+ msgid "Add Role"
 
231
  msgstr ""
232
 
233
+ #: Application/Backend/View/Localization.php:31 media/js/aam-interface.js:348
234
+ msgid "Failed to update role"
 
 
235
  msgstr ""
236
 
237
+ #: Application/Backend/View/Localization.php:32 media/js/aam-interface.js:357
238
+ #: Application/Backend/phtml/extension.phtml:55
239
+ #: Application/Backend/phtml/extension.phtml:82
240
+ #: Application/Backend/phtml/index.phtml:144
241
+ #: Application/Backend/phtml/object/capability.phtml:80
242
+ msgid "Update"
243
  msgstr ""
244
 
245
+ #: Application/Backend/View/Localization.php:33 media/js/aam-interface.js:380
246
+ #: media/js/aam-interface.js:1266
247
+ msgid "Deleting..."
248
  msgstr ""
249
 
250
+ #: Application/Backend/View/Localization.php:34 media/js/aam-interface.js:386
251
+ msgid "Failed to delete role"
252
  msgstr ""
253
 
254
+ #: Application/Backend/View/Localization.php:35
255
+ #: Application/Backend/View/Localization.php:47 media/js/aam-interface.js:211
256
+ #: media/js/aam-interface.js:394 Application/Backend/phtml/index.phtml:156
257
+ msgid "Delete Role"
258
  msgstr ""
259
 
260
+ #: Application/Backend/View/Localization.php:36 media/js/aam-interface.js:480
261
+ msgid "Failed to block user"
262
  msgstr ""
263
 
264
+ #: Application/Backend/View/Localization.php:37 media/js/aam-interface.js:546
265
+ msgid "Search User"
266
  msgstr ""
267
 
268
+ #: Application/Backend/View/Localization.php:38 media/js/aam-interface.js:547
269
+ msgid "_TOTAL_ user(s)"
270
  msgstr ""
271
 
272
+ #: Application/Backend/View/Localization.php:39 media/js/aam-interface.js:573
273
+ #: Application/Backend/phtml/frame.phtml:46
274
+ #: Application/Backend/phtml/index.phtml:99
275
+ msgid "Role"
276
  msgstr ""
277
 
278
+ #: Application/Backend/View/Localization.php:41
279
+ msgid "Current user"
280
  msgstr ""
281
 
282
+ #: Application/Backend/View/Localization.php:42
283
+ msgid "Current role"
284
  msgstr ""
285
 
286
+ #: Application/Backend/View/Localization.php:43 media/js/aam-interface.js:1647
287
+ msgid "Manage Access"
288
  msgstr ""
289
 
290
+ #: Application/Backend/View/Localization.php:44
291
+ #: Application/Backend/View/PostOptionList.php:62
292
+ #: media/js/aam-interface.js:1659
293
+ msgid "Edit"
294
  msgstr ""
295
 
296
+ #: Application/Backend/View/Localization.php:45 media/js/aam-interface.js:157
297
+ msgid "Manage Role"
298
  msgstr ""
299
 
300
+ #: Application/Backend/View/Localization.php:46 media/js/aam-interface.js:174
301
+ msgid "Edit Role Name"
302
  msgstr ""
303
 
304
+ #: Application/Backend/View/Localization.php:48 media/js/aam-interface.js:605
305
+ msgid "Manage User"
306
  msgstr ""
307
 
308
+ #: Application/Backend/View/Localization.php:49 media/js/aam-interface.js:619
309
+ msgid "Edit User"
 
310
  msgstr ""
311
 
312
+ #: Application/Backend/View/Localization.php:50 media/js/aam-interface.js:475
313
+ #: media/js/aam-interface.js:476 media/js/aam-interface.js:632
314
+ msgid "Lock User"
315
  msgstr ""
316
 
317
+ #: Application/Backend/View/Localization.php:51 media/js/aam-interface.js:469
318
+ #: media/js/aam-interface.js:470 media/js/aam-interface.js:645
319
+ msgid "Unlock User"
320
  msgstr ""
321
 
322
+ #: Application/Backend/View/Localization.php:52 media/js/aam-interface.js:1040
323
+ msgid "Failed to grand capability - WordPress policy"
324
  msgstr ""
325
 
326
  #: Application/Backend/View/PostOptionList.php:13
327
+ #: Application/Backend/View/PostOptionList.php:54
328
  msgid "List"
329
  msgstr ""
330
 
343
  msgstr ""
344
 
345
  #: Application/Backend/View/PostOptionList.php:17
346
+ #: Application/Backend/View/PostOptionList.php:58
347
  msgid "List To Others"
348
  msgstr ""
349
 
400
  msgstr ""
401
 
402
  #: Application/Backend/View/PostOptionList.php:37
 
 
403
  msgid "Redirect"
404
  msgstr ""
405
 
410
 
411
  #: Application/Backend/View/PostOptionList.php:38
412
  #: Application/Backend/View/PostOptionList.php:43
413
+ #: Application/Backend/View/PostOptionList.php:48
414
  msgid "change"
415
  msgstr ""
416
 
437
  "higher."
438
  msgstr ""
439
 
440
+ #: Application/Backend/View/PostOptionList.php:47
441
+ msgid "Access Expiration"
442
+ msgstr ""
443
+
444
+ #: Application/Backend/View/PostOptionList.php:48
445
+ #, php-format
446
+ msgid "Expires: %s"
447
+ msgstr ""
448
+
449
+ #: Application/Backend/View/PostOptionList.php:49
450
+ #, php-format
451
+ msgid "Define when access is expired for %s."
452
+ msgstr ""
453
+
454
+ #: Application/Backend/View/PostOptionList.php:49
455
+ #, php-format
456
+ msgid ""
457
+ "After the expiration date, the access to READ will be denied unless this "
458
+ "behavior is overwritten in ConfigPress. For more information %scheck this "
459
+ "article%s or "
460
+ msgstr ""
461
+
462
+ #: Application/Backend/View/PostOptionList.php:49
463
+ #, php-format
464
+ msgid " %ssee in action.%s"
465
+ msgstr ""
466
+
467
+ #: Application/Backend/View/PostOptionList.php:55
468
  #, php-format
469
  msgid ""
470
  "Hide %s however access with a direct URL is still allowed. When there are "
472
  "performance reasons, AAM checks limited number of posts per request."
473
  msgstr ""
474
 
475
+ #: Application/Backend/View/PostOptionList.php:59
476
  #, php-format
477
  msgid ""
478
  "Hide %s for all except author (whoever created %s or was assigned on the "
481
  "performance reasons, AAM checks limited number of posts per request."
482
  msgstr ""
483
 
484
+ #: Application/Backend/View/PostOptionList.php:63
485
  #, php-format
486
  msgid ""
487
  "Restrict access to edit %s. Any attempts to edit %s will result in "
488
  "redirecting user based on the Access Denied Redirect rule."
489
  msgstr ""
490
 
491
+ #: Application/Backend/View/PostOptionList.php:66
492
  msgid "Edit By Others"
493
  msgstr ""
494
 
495
+ #: Application/Backend/View/PostOptionList.php:67
496
  #, php-format
497
  msgid ""
498
  "Restrict access to edit %s for all except author (whoever created %s or was "
500
  "redirecting user based on the Access Denied Redirect rule."
501
  msgstr ""
502
 
503
+ #: Application/Backend/View/PostOptionList.php:70
504
+ #: Application/Backend/phtml/index.phtml:162
505
+ #: Application/Backend/phtml/object/capability.phtml:98
506
  msgid "Delete"
507
  msgstr ""
508
 
509
+ #: Application/Backend/View/PostOptionList.php:71
510
  #, php-format
511
  msgid "Restrict access to trash or permanently delete %s."
512
  msgstr ""
513
 
514
+ #: Application/Backend/View/PostOptionList.php:74
515
  msgid "Delete By Others"
516
  msgstr ""
517
 
518
+ #: Application/Backend/View/PostOptionList.php:75
519
  #, php-format
520
  msgid ""
521
  "Restrict access to trash or permanently delete %s for all except author "
522
  "(whoever created %s or was assigned on the Author metabox)."
523
  msgstr ""
524
 
525
+ #: Application/Backend/View/PostOptionList.php:78
526
  msgid "Publish"
527
  msgstr ""
528
 
529
+ #: Application/Backend/View/PostOptionList.php:79
530
  #, php-format
531
  msgid ""
532
  "Restrict access to publish %s. User will be allowed only submit for review. "
533
  "Quick Edit inline action is also removed from the list page."
534
  msgstr ""
535
 
536
+ #: Application/Backend/View/PostOptionList.php:82
537
  msgid "Publish By Others"
538
  msgstr ""
539
 
540
+ #: Application/Backend/View/PostOptionList.php:83
541
  #, php-format
542
  msgid ""
543
  "Restrict access to publish %s for all except author (whoever created %s or "
582
  msgid "Edit/Delete Capabilities"
583
  msgstr ""
584
 
585
+ #: Application/Backend/View/UtilityOptionList.php:18
586
  msgid "Backend Access Control"
587
  msgstr ""
588
 
589
+ #: Application/Backend/View/UtilityOptionList.php:19
590
  msgid ""
591
  "Allow AAM to manage access to backend resources. If there is no need to "
592
  "manage access to the website backend then keep this option unchecked as it "
593
  "may increase your webiste performance."
594
  msgstr ""
595
 
596
+ #: Application/Backend/View/UtilityOptionList.php:24
597
  msgid "Frontend Access Control"
598
  msgstr ""
599
 
600
+ #: Application/Backend/View/UtilityOptionList.php:25
601
  msgid ""
602
  "Allow AAM to manage access to frontend resources. If there is no need to "
603
  "manage access to the website frontend then keep this option unchecked as it "
604
  "may increase your webiste performance."
605
  msgstr ""
606
 
607
+ #: Application/Backend/View/UtilityOptionList.php:30
608
  msgid "Media Files Access Control"
609
  msgstr ""
610
 
611
+ #: Application/Backend/View/UtilityOptionList.php:36
612
+ msgid "Check Post Visibility"
613
+ msgstr ""
614
+
615
+ #: Application/Backend/View/UtilityOptionList.php:37
616
+ msgid ""
617
+ "For performance reasons, keep this option uncheck if do not use LIST or LIST "
618
+ "TO OTHERS access options on Posts & Pages tab. When it is checked, AAM will "
619
+ "filter list of posts that are hidden for a user on both frontend and backend."
620
+ msgstr ""
621
+
622
+ #: Application/Backend/View/UtilityOptionList.php:42
623
+ msgid "Manage Hidden Post Types"
624
+ msgstr ""
625
+
626
+ #: Application/Backend/View/UtilityOptionList.php:43
627
+ msgid ""
628
+ "By default AAM allows you to manage access only to public post types on "
629
+ "Posts & Pages tab. By enabling this feature, you also will be able to manage "
630
+ "access to hidden post types like revisions, navigation menus or any other "
631
+ "custom post types that are not registered as public."
632
+ msgstr ""
633
+
634
+ #: Application/Backend/View/UtilityOptionList.php:48
635
  msgid "Render Access Manager Metabox"
636
  msgstr ""
637
 
638
+ #: Application/Backend/View/UtilityOptionList.php:49
639
  msgid ""
640
  "Render Access Manager metabox on all post and category edit pages. Access "
641
  "Manager metabox is the quick way to manage access to any post or category "
642
  "without leaving an edit page."
643
  msgstr ""
644
 
645
+ #: Application/Backend/View/UtilityOptionList.php:54
646
+ msgid "Show Access Link"
647
  msgstr ""
648
 
649
+ #: Application/Backend/View/UtilityOptionList.php:55
650
  msgid ""
651
+ "Show Access shortcut link under any post, page, custom post type, category, "
652
+ "custom taxonomy title or user name."
 
653
  msgstr ""
654
 
655
+ #: Application/Extension/Repository.php:276
656
  #, php-format
657
  msgid "Failed to create %s"
658
  msgstr ""
659
 
660
+ #: Application/Extension/Repository.php:280
661
  #, php-format
662
  msgid "Directory %s is not writable"
663
  msgstr ""
664
 
665
+ #: Application/Frontend/Manager.php:104
666
+ msgid "Access denied. Please login to get access."
667
+ msgstr ""
668
+
669
+ #: Application/Frontend/Manager.php:261
670
  #, php-format
671
  msgid "[%s] Double Authentication"
672
  msgstr ""
673
 
674
+ #: Application/Frontend/Manager.php:263
675
  #, php-format
676
  msgid "Someone was trying to login from the different IP address %s:"
677
  msgstr ""
678
 
679
+ #: Application/Frontend/Manager.php:264
680
  #, php-format
681
  msgid "Website: %s"
682
  msgstr ""
683
 
684
+ #: Application/Frontend/Manager.php:265
685
  #, php-format
686
  msgid "Username: %s"
687
  msgstr ""
688
 
689
+ #: Application/Frontend/Manager.php:266
690
  msgid "Visit the following address to authorize the login:"
691
  msgstr ""
692
 
694
  msgid "No valid strategy found for the given context"
695
  msgstr ""
696
 
697
+ #: aam.php:176
698
  msgid "PHP 5.2 or higher is required."
699
  msgstr ""
700
 
701
+ #: aam.php:178
702
  msgid "WP 3.8 or higher is required."
703
  msgstr ""
704
 
705
+ #: media/js/aam-interface.js:190
706
+ msgid "Clone Role"
707
+ msgstr ""
708
+
709
+ #: media/js/aam-interface.js:658
710
+ msgid "Switch To User"
711
+ msgstr ""
712
+
713
+ #: media/js/aam-interface.js:950
714
+ msgid "Processing"
715
+ msgstr ""
716
+
717
+ #: media/js/aam-interface.js:958
718
+ msgid "Failed to initialize URL"
719
+ msgstr ""
720
+
721
+ #: media/js/aam-interface.js:966
722
+ #: Application/Backend/phtml/object/metabox.phtml:93
723
+ msgid "Initialize"
724
+ msgstr ""
725
+
726
+ #: media/js/aam-interface.js:1078
727
+ msgid "Nothing to show"
728
+ msgstr ""
729
+
730
+ #: media/js/aam-interface.js:1233
731
+ msgid "Failed to update capability"
732
+ msgstr ""
733
+
734
+ #: media/js/aam-interface.js:1241
735
+ #: Application/Backend/phtml/object/capability.phtml:70
736
+ msgid "Update Capability"
737
+ msgstr ""
738
+
739
+ #: media/js/aam-interface.js:1274
740
+ msgid "Failed to delete capability"
741
+ msgstr ""
742
+
743
+ #: media/js/aam-interface.js:1282
744
+ #: Application/Backend/phtml/object/capability.phtml:92
745
+ msgid "Delete Capability"
746
+ msgstr ""
747
+
748
+ #: media/js/aam-interface.js:1629
749
+ msgid "Drill-Down"
750
+ msgstr ""
751
+
752
+ #: media/js/aam-interface.js:1782 media/js/aam-interface.js:1828
753
+ #: media/js/aam-interface.js:1873
754
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:16
755
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:37
756
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:64
757
+ msgid "Set"
758
+ msgstr ""
759
+
760
+ #: media/js/aam-interface.js:1965 media/js/aam-interface.js:2065
761
+ #: media/js/aam-interface.js:2159 media/js/aam-interface.js:2245
762
+ #: media/js/aam-interface.js:2467 media/js/aam-interface.js:2501
763
+ #: media/js/aam-interface.js:2522 media/js/aam-interface.js:2560
764
+ msgid "Application Error"
765
+ msgstr ""
766
+
767
  #: Application/Backend/phtml/404redirect.phtml:33
768
  #: Application/Backend/phtml/object/login-redirect.phtml:43
769
+ #: Application/Backend/phtml/object/logout-redirect.phtml:43
770
+ #: Application/Backend/phtml/object/redirect.phtml:67
771
+ #: Application/Backend/phtml/object/redirect.phtml:119
772
  msgid "Existing Page"
773
  msgstr ""
774
 
775
  #: Application/Backend/phtml/404redirect.phtml:42
776
  #: Application/Backend/phtml/object/login-redirect.phtml:52
777
+ #: Application/Backend/phtml/object/logout-redirect.phtml:52
778
+ #: Application/Backend/phtml/object/redirect.phtml:76
779
+ #: Application/Backend/phtml/object/redirect.phtml:128
780
  msgid "-- Select Page --"
781
  msgstr ""
782
 
783
  #: Application/Backend/phtml/404redirect.phtml:48
784
  #: Application/Backend/phtml/object/login-redirect.phtml:58
785
+ #: Application/Backend/phtml/object/logout-redirect.phtml:58
786
+ #: Application/Backend/phtml/object/redirect.phtml:82
787
+ #: Application/Backend/phtml/object/redirect.phtml:134
788
  msgid "The URL"
789
  msgstr ""
790
 
791
  #: Application/Backend/phtml/404redirect.phtml:53
792
  #: Application/Backend/phtml/object/login-redirect.phtml:63
793
+ #: Application/Backend/phtml/object/logout-redirect.phtml:63
794
+ #: Application/Backend/phtml/object/redirect.phtml:87
795
+ #: Application/Backend/phtml/object/redirect.phtml:139
796
  msgid "PHP Callback Function"
797
  msgstr ""
798
 
799
  #: Application/Backend/phtml/contact.phtml:6
800
  msgid ""
801
+ "Contact us if you have any questions or concerns but follow few simple rules:"
 
802
  msgstr ""
803
 
804
  #: Application/Backend/phtml/extension.phtml:11
818
  msgstr ""
819
 
820
  #: Application/Backend/phtml/extension.phtml:29
821
+ #: Application/Backend/phtml/extension.phtml:73
822
  msgid "Free"
823
  msgstr ""
824
 
825
+ #: Application/Backend/phtml/extension.phtml:53
826
+ #: Application/Backend/phtml/extension.phtml:80
827
  msgid "Installed"
828
  msgstr ""
829
 
830
+ #: Application/Backend/phtml/extension.phtml:57
831
  msgid "Inactive"
832
  msgstr ""
833
 
834
+ #: Application/Backend/phtml/extension.phtml:59
835
+ msgid "Read More"
836
  msgstr ""
837
 
838
+ #: Application/Backend/phtml/extension.phtml:84
839
+ #: Application/Backend/phtml/extension.phtml:115
840
  msgid "Download"
841
  msgstr ""
842
 
843
+ #: Application/Backend/phtml/extension.phtml:99
844
+ #: Application/Backend/phtml/extension.phtml:126
845
+ #: Application/Backend/phtml/extension.phtml:137
846
+ #: Application/Backend/phtml/index.phtml:111
 
 
 
 
 
847
  #: Application/Backend/phtml/index.phtml:123
848
+ #: Application/Backend/phtml/index.phtml:133
849
  #: Application/Backend/phtml/index.phtml:145
850
+ #: Application/Backend/phtml/index.phtml:155
851
+ #: Application/Backend/phtml/index.phtml:163
852
+ #: Application/Backend/phtml/object/capability.phtml:48
853
+ #: Application/Backend/phtml/object/capability.phtml:59
854
+ #: Application/Backend/phtml/object/capability.phtml:69
855
+ #: Application/Backend/phtml/object/capability.phtml:81
856
+ #: Application/Backend/phtml/object/capability.phtml:91
857
+ #: Application/Backend/phtml/object/capability.phtml:99
858
+ #: Application/Backend/phtml/object/menu.phtml:82
859
  #: Application/Backend/phtml/object/metabox.phtml:80
860
  #: Application/Backend/phtml/object/metabox.phtml:94
861
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:6
862
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:17
863
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:27
864
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:38
865
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:48
866
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:65
867
+ #: Application/Backend/phtml/utility.phtml:111
868
  msgid "Close"
869
  msgstr ""
870
 
871
+ #: Application/Backend/phtml/extension.phtml:100
872
  msgid "Notification"
873
  msgstr ""
874
 
875
+ #: Application/Backend/phtml/extension.phtml:104
876
  msgid ""
877
  "Extension requires manual installation. Please follow few simple steps below."
878
  msgstr ""
879
 
880
+ #: Application/Backend/phtml/extension.phtml:116
881
+ #: Application/Backend/phtml/utility.phtml:119
882
  msgid "Cancel"
883
  msgstr ""
884
 
885
+ #: Application/Backend/phtml/extension.phtml:127
886
  msgid "Install Extension"
887
  msgstr ""
888
 
889
+ #: Application/Backend/phtml/extension.phtml:131
890
  msgid ""
891
  "Insert license key that you recieved after the payment (find the email "
892
  "example below). It might take up to 2 hours to process the payment. Please "
893
  "remember that license key is limited only to one life domain."
894
  msgstr ""
895
 
896
+ #: Application/Backend/phtml/frame.phtml:62
897
+ #: Application/Backend/phtml/index.phtml:177
898
  msgid "Username"
899
  msgstr ""
900
 
901
+ #: Application/Backend/phtml/frame.phtml:74
902
  #, php-format
903
  msgid "Manage access to %s for visitors (any user that is not authenticated)"
904
  msgstr ""
905
 
906
+ #: Application/Backend/phtml/frame.phtml:75
907
+ #: Application/Backend/phtml/index.phtml:190
908
  msgid "Manage Visitors"
909
  msgstr ""
910
 
911
+ #: Application/Backend/phtml/frame.phtml:82
912
  #, php-format
913
  msgid ""
914
  "Manage default access to %s for all users, roles and visitor. This includes "
915
  "Administrator role and yourself"
916
  msgstr ""
917
 
918
+ #: Application/Backend/phtml/frame.phtml:84
919
+ #: Application/Backend/phtml/index.phtml:198
920
  msgid "Manage Default Access"
921
  msgstr ""
922
 
923
+ #: Application/Backend/phtml/frame.phtml:100
924
+ #: Application/Backend/phtml/object/menu.phtml:14
925
  #: Application/Backend/phtml/object/metabox.phtml:12
926
  #: Application/Backend/phtml/object/post.phtml:27
927
  msgid "Settings are customized"
928
  msgstr ""
929
 
930
+ #: Application/Backend/phtml/frame.phtml:101
931
+ #: Application/Backend/phtml/object/capability.phtml:26
932
+ #: Application/Backend/phtml/object/menu.phtml:15
933
  #: Application/Backend/phtml/object/metabox.phtml:13
934
  #: Application/Backend/phtml/object/post.phtml:28
935
  msgid "Reset To Default"
936
  msgstr ""
937
 
938
+ #: Application/Backend/phtml/frame.phtml:116
939
  #: Application/Backend/phtml/object/post.phtml:65
940
  msgid "Frontend"
941
  msgstr ""
942
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
943
  #: Application/Backend/phtml/index.phtml:14
944
  msgid "Access Control Panel"
945
  msgstr ""
946
 
947
  #: Application/Backend/phtml/index.phtml:21
948
  msgid ""
949
+ "Appreciate your interest in Advanced Access Manager (AAM). With strong "
950
  "knowledge and experience in WordPress, AAM becomes a very powerful tool to "
951
  "manage access to your frontend and backend."
952
  msgstr ""
953
 
954
  #: Application/Backend/phtml/index.phtml:22
955
+ msgid "Please Note!"
956
  msgstr ""
957
 
958
  #: Application/Backend/phtml/index.phtml:23
964
 
965
  #: Application/Backend/phtml/index.phtml:24
966
  #, php-format
967
+ msgid ""
968
+ "Check our %sHelp%s section to find some useful articles about AAM "
969
+ "functionality or %scontact us%s directly."
970
  msgstr ""
971
 
972
+ #: Application/Backend/phtml/index.phtml:38
973
  msgid "Notifications"
974
  msgstr ""
975
 
976
+ #: Application/Backend/phtml/index.phtml:57
977
  msgid "AAM Multisite"
978
  msgstr ""
979
 
980
+ #: Application/Backend/phtml/index.phtml:61
981
  msgid "Install AAM Multisite"
982
  msgstr ""
983
 
984
+ #: Application/Backend/phtml/index.phtml:72
985
  msgid "Users/Roles Panel"
986
  msgstr ""
987
 
988
+ #: Application/Backend/phtml/index.phtml:79
989
+ #: Application/Backend/phtml/index.phtml:210
990
  msgid "Roles"
991
  msgstr ""
992
 
993
+ #: Application/Backend/phtml/index.phtml:85
994
+ #: Application/Backend/phtml/index.phtml:220
995
  msgid "Visitor"
996
  msgstr ""
997
 
998
+ #: Application/Backend/phtml/index.phtml:88
999
+ #: Application/Backend/phtml/index.phtml:225
1000
  msgid "Default"
1001
  msgstr ""
1002
 
1003
+ #: Application/Backend/phtml/index.phtml:100
1004
+ #: Application/Backend/phtml/index.phtml:178
1005
  msgid "Action"
1006
  msgstr ""
1007
 
1008
+ #: Application/Backend/phtml/index.phtml:112
1009
  msgid "Create Role"
1010
  msgstr ""
1011
 
1012
+ #: Application/Backend/phtml/index.phtml:116
1013
+ #: Application/Backend/phtml/index.phtml:138
1014
  msgid "Role Name"
1015
  msgstr ""
1016
 
1017
+ #: Application/Backend/phtml/index.phtml:117
1018
+ #: Application/Backend/phtml/index.phtml:139
1019
  msgid "Enter Role Name"
1020
  msgstr ""
1021
 
1022
+ #: Application/Backend/phtml/index.phtml:134
1023
  msgid "Update Role"
1024
  msgstr ""
1025
 
1026
+ #: Application/Backend/phtml/index.phtml:159
1027
  #, php-format
1028
  msgid "Are you sure that you want to delete the %s role?"
1029
  msgstr ""
1030
 
1031
+ #: Application/Backend/phtml/index.phtml:189
1032
  msgid ""
1033
  "Manage access to your website for visitors (any user that is not "
1034
  "authenticated)"
1035
  msgstr ""
1036
 
1037
+ #: Application/Backend/phtml/index.phtml:197
1038
  msgid ""
1039
  "Manage default access to your website resources for all users, roles and "
1040
  "visitor. This includes Administrator role and your user"
1041
  msgstr ""
1042
 
1043
+ #: Application/Backend/phtml/index.phtml:211
1044
  msgid ""
1045
  "With Roles tab you can manage access for any defined role, edit role's name, "
1046
  "create new role or even delete existing (but only when there is no users "
1047
  "assigned to it). You are not allowed to delete Administrator role."
1048
  msgstr ""
1049
 
1050
+ #: Application/Backend/phtml/index.phtml:216
1051
  msgid ""
1052
  "Manage access for any user. As a bonus feature, you can block user. It means "
1053
  "that user will be not able to login to your website anymore."
1054
  msgstr ""
1055
 
1056
+ #: Application/Backend/phtml/index.phtml:221
1057
  msgid ""
1058
  "Visitor can be considered any user that is not authenticated to your website."
1059
  msgstr ""
1060
 
1061
+ #: Application/Backend/phtml/index.phtml:226
1062
  msgid ""
1063
  "Manage default access settings to your website resources for all users, "
1064
  "roles and visitors."
1065
  msgstr ""
1066
 
1067
+ #: Application/Backend/phtml/main-panel.phtml:26
1068
+ msgid "You are not allowed to manage any of the existing features."
1069
+ msgstr ""
1070
+
1071
+ #: Application/Backend/phtml/object/capability.phtml:8
1072
  msgid "Filter"
1073
  msgstr ""
1074
 
1075
+ #: Application/Backend/phtml/object/capability.phtml:15
1076
  msgid "All Capabilities"
1077
  msgstr ""
1078
 
1079
+ #: Application/Backend/phtml/object/capability.phtml:25
1080
+ msgid "Capabilities are customized"
1081
  msgstr ""
1082
 
1083
  #: Application/Backend/phtml/object/capability.phtml:36
1084
+ msgid "Category"
 
 
1085
  msgstr ""
1086
 
1087
  #: Application/Backend/phtml/object/capability.phtml:37
1088
+ #: Application/Backend/phtml/object/capability.phtml:53
1089
+ #: Application/Backend/phtml/object/capability.phtml:74
1090
+ msgid "Capability"
1091
+ msgstr ""
1092
+
1093
+ #: Application/Backend/phtml/object/capability.phtml:38
1094
  #: Application/Backend/phtml/object/post.phtml:44
1095
  msgid "Actions"
1096
  msgstr ""
1097
 
1098
+ #: Application/Backend/phtml/object/capability.phtml:49
1099
  msgid "Create Capability"
1100
  msgstr ""
1101
 
1102
+ #: Application/Backend/phtml/object/capability.phtml:54
1103
+ #: Application/Backend/phtml/object/capability.phtml:75
1104
  msgid "Enter Capability"
1105
  msgstr ""
1106
 
1107
+ #: Application/Backend/phtml/object/capability.phtml:95
1108
  #, php-format
1109
  msgid "Are you sure that you want to delete %s capability for all roles?"
1110
  msgstr ""
1111
 
1112
  #: Application/Backend/phtml/object/login-redirect.phtml:27
1113
+ #: Application/Backend/phtml/object/logout-redirect.phtml:27
1114
  msgid "WordPress default behavior"
1115
  msgstr ""
1116
 
1117
+ #: Application/Backend/phtml/object/menu.phtml:83
1118
  msgid "Dashboard Lockdown"
1119
  msgstr ""
1120
 
1121
+ #: Application/Backend/phtml/object/menu.phtml:86
1122
  msgid "You cannot restrict access to Dashboard home page."
1123
  msgstr ""
1124
 
1125
+ #: Application/Backend/phtml/object/menu.phtml:88
1126
  #, php-format
1127
  msgid ""
1128
  "Dashboard home page is the default page every user is redirected after "
1130
  "%splease check this article%s."
1131
  msgstr ""
1132
 
1133
+ #: Application/Backend/phtml/object/menu.phtml:91
1134
  msgid "OK"
1135
  msgstr ""
1136
 
1197
  msgid "Backend Redirect"
1198
  msgstr ""
1199
 
1200
+ #: Application/Backend/phtml/object/redirect.phtml:62
1201
+ #: Application/Backend/phtml/object/redirect.phtml:114
1202
  msgid "Customized Message"
1203
  msgstr ""
1204
 
1205
+ #: Application/Backend/phtml/object/redirect.phtml:63
1206
+ #: Application/Backend/phtml/object/redirect.phtml:115
1207
  msgid "Enter message..."
1208
  msgstr ""
1209
 
1219
  msgid "Add excerpt before teaser message"
1220
  msgstr ""
1221
 
1222
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:7
1223
+ msgid "Set Password"
1224
+ msgstr ""
1225
+
1226
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:11
1227
+ msgid "Password"
1228
+ msgstr ""
1229
+
1230
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:12
1231
+ msgid "Enter Password"
1232
+ msgstr ""
1233
+
1234
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:28
1235
+ msgid "Set Redirect"
1236
+ msgstr ""
1237
+
1238
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:32
1239
+ msgid "Valid URL, Page ID or PHP callback function"
1240
+ msgstr ""
1241
+
1242
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:33
1243
+ msgid "Enter Redirect"
1244
+ msgstr ""
1245
+
1246
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:49
1247
+ msgid "Set Expiration"
1248
+ msgstr ""
1249
+
1250
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:59
1251
+ msgid "Enter expiration critiria"
1252
+ msgstr ""
1253
+
1254
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:60
1255
+ msgid "Enter critiria"
1256
+ msgstr ""
1257
+
1258
  #: Application/Backend/phtml/partial/role-inheritance.phtml:3
1259
  msgid "Inherit Capabilities From"
1260
  msgstr ""
1265
  "CodePinch."
1266
  msgstr ""
1267
 
1268
+ #: Application/Backend/phtml/utility.phtml:4
1269
+ msgid "AAM Core"
1270
+ msgstr ""
1271
+
1272
+ #: Application/Backend/phtml/utility.phtml:5
1273
+ msgid "Posts Access"
1274
+ msgstr ""
1275
+
1276
+ #: Application/Backend/phtml/utility.phtml:6
1277
+ msgid "Tools"
1278
+ msgstr ""
1279
+
1280
+ #: Application/Backend/phtml/utility.phtml:54
1281
  msgid "Clear Cache"
1282
  msgstr ""
1283
 
1284
+ #: Application/Backend/phtml/utility.phtml:56
1285
  msgid "Clear all AAM cache."
1286
  msgstr ""
1287
 
1288
+ #: Application/Backend/phtml/utility.phtml:65
1289
  msgid "Clear All Settings"
1290
  msgstr ""
1291
 
1292
+ #: Application/Backend/phtml/utility.phtml:67
1293
  msgid ""
1294
  "Remove all the settings related to AAM (including all extension licenses)."
1295
  msgstr ""
1296
 
1297
+ #: Application/Backend/phtml/utility.phtml:97
1298
+ msgid "No miscellaneous options found."
1299
+ msgstr ""
1300
+
1301
+ #: Application/Backend/phtml/utility.phtml:112
1302
  msgid "Clear all settings"
1303
  msgstr ""
1304
 
1305
+ #: Application/Backend/phtml/utility.phtml:115
1306
  msgid "All AAM settings will be removed."
1307
  msgstr ""
1308
 
1309
+ #: Application/Backend/phtml/utility.phtml:118
1310
  msgid "Clear"
1311
  msgstr ""
Lang/advanced-access-manager.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: AAM\n"
5
- "POT-Creation-Date: 2017-03-23 17:22-0400\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: WPAAM <support@wpaam.com>\n"
8
  "Language-Team: WP AAM <vasyl@vasyltech.com>\n"
@@ -10,361 +10,322 @@ msgstr ""
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.12\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: media/js/aam-ui.js:44 Application/Backend/View/Localization.php:23
21
- msgid "Loading..."
22
- msgstr ""
23
-
24
- #: media/js/aam-ui.js:49 Application/Backend/View/Localization.php:24
25
- #: Application/Backend/phtml/partial/role-inheritance.phtml:5
26
- msgid "Select Role"
27
- msgstr ""
28
-
29
- #: media/js/aam-ui.js:90 Application/Backend/View/Localization.php:25
30
- msgid "Search Role"
31
- msgstr ""
32
-
33
- #: media/js/aam-ui.js:91 Application/Backend/View/Localization.php:26
34
- msgid "_TOTAL_ role(s)"
35
- msgstr ""
36
-
37
- #: media/js/aam-ui.js:99 media/js/aam-ui.js:558
38
- #: Application/Backend/View/Localization.php:27
39
- #: Application/Backend/phtml/index.phtml:112
40
- #: Application/Backend/phtml/object/capability.phtml:27
41
- #: Application/Backend/phtml/object/capability.phtml:57
42
- msgid "Create"
43
  msgstr ""
44
 
45
- #: media/js/aam-ui.js:120 Application/Backend/View/Localization.php:28
46
- #: Application/Backend/phtml/index.phtml:78
47
- #: Application/Backend/phtml/index.phtml:198
48
- msgid "Users"
49
  msgstr ""
50
 
51
- #: media/js/aam-ui.js:159 Application/Backend/View/Localization.php:45
52
- msgid "Manage Role"
53
  msgstr ""
54
 
55
- #: media/js/aam-ui.js:175 Application/Backend/View/Localization.php:46
56
- msgid "Edit Role Name"
57
  msgstr ""
58
 
59
- #: media/js/aam-ui.js:191
60
- msgid "Clone Role"
 
61
  msgstr ""
62
 
63
- #: media/js/aam-ui.js:212 media/js/aam-ui.js:397
64
- #: Application/Backend/View/Localization.php:35
65
- #: Application/Backend/View/Localization.php:47
66
- #: Application/Backend/phtml/index.phtml:146
67
- msgid "Delete Role"
68
  msgstr ""
69
 
70
- #: media/js/aam-ui.js:289 media/js/aam-ui.js:344 media/js/aam-ui.js:1182
71
- #: media/js/aam-ui.js:1228 Application/Backend/View/Localization.php:13
72
- msgid "Saving..."
 
 
73
  msgstr ""
74
 
75
- #: media/js/aam-ui.js:304 Application/Backend/View/Localization.php:29
76
- msgid "Failed to add new role"
 
77
  msgstr ""
78
 
79
- #: media/js/aam-ui.js:309 media/js/aam-ui.js:356 media/js/aam-ui.js:393
80
- #: media/js/aam-ui.js:487 media/js/aam-ui.js:519 media/js/aam-ui.js:895
81
- #: media/js/aam-ui.js:932 media/js/aam-ui.js:968 media/js/aam-ui.js:1195
82
- #: media/js/aam-ui.js:1241 media/js/aam-ui.js:1282 media/js/aam-ui.js:1454
83
- #: media/js/aam-ui.js:1504 media/js/aam-ui.js:1830 media/js/aam-ui.js:1925
84
- #: media/js/aam-ui.js:2019 media/js/aam-ui.js:2100 media/js/aam-ui.js:2174
85
- #: media/js/aam.js:207 Application/Backend/View/Localization.php:15
86
- msgid "Application error"
87
  msgstr ""
88
 
89
- #: media/js/aam-ui.js:312 Application/Backend/View/Localization.php:30
90
- msgid "Add Role"
91
  msgstr ""
92
 
93
- #: media/js/aam-ui.js:351 Application/Backend/View/Localization.php:31
94
- msgid "Failed to update role"
95
  msgstr ""
96
 
97
- #: media/js/aam-ui.js:360 Application/Backend/View/Localization.php:32
98
- #: Application/Backend/phtml/extension.phtml:50
99
- #: Application/Backend/phtml/extension.phtml:77
100
- #: Application/Backend/phtml/index.phtml:134
101
- #: Application/Backend/phtml/object/capability.phtml:79
102
- msgid "Update"
103
  msgstr ""
104
 
105
- #: media/js/aam-ui.js:383 media/js/aam-ui.js:1269
106
- #: Application/Backend/View/Localization.php:33
107
- msgid "Deleting..."
108
  msgstr ""
109
 
110
- #: media/js/aam-ui.js:389 Application/Backend/View/Localization.php:34
111
- msgid "Failed to delete role"
112
  msgstr ""
113
 
114
- #: media/js/aam-ui.js:472 media/js/aam-ui.js:473 media/js/aam-ui.js:650
115
- #: Application/Backend/View/Localization.php:51
116
- msgid "Unlock User"
117
  msgstr ""
118
 
119
- #: media/js/aam-ui.js:478 media/js/aam-ui.js:479 media/js/aam-ui.js:637
120
- #: Application/Backend/View/Localization.php:50
121
- msgid "Lock User"
122
  msgstr ""
123
 
124
- #: media/js/aam-ui.js:483 Application/Backend/View/Localization.php:36
125
- msgid "Failed to block user"
126
  msgstr ""
127
 
128
- #: media/js/aam-ui.js:549 Application/Backend/View/Localization.php:37
129
- msgid "Search User"
130
  msgstr ""
131
 
132
- #: media/js/aam-ui.js:550 Application/Backend/View/Localization.php:38
133
- msgid "_TOTAL_ user(s)"
134
  msgstr ""
135
 
136
- #: media/js/aam-ui.js:576 Application/Backend/View/Localization.php:39
137
- #: Application/Backend/phtml/frame.phtml:77
138
- #: Application/Backend/phtml/index.phtml:89
139
- msgid "Role"
140
  msgstr ""
141
 
142
- #: media/js/aam-ui.js:610 Application/Backend/View/Localization.php:48
143
- msgid "Manage User"
144
  msgstr ""
145
 
146
- #: media/js/aam-ui.js:624 Application/Backend/View/Localization.php:49
147
- msgid "Edit User"
148
  msgstr ""
149
 
150
- #: media/js/aam-ui.js:663
151
- msgid "Switch To User"
 
152
  msgstr ""
153
 
154
- #: media/js/aam-ui.js:718 Application/Backend/View/Localization.php:40
 
155
  msgid "Anonymous"
156
  msgstr ""
157
 
158
- #: media/js/aam-ui.js:750
159
  msgid "All Users, Roles and Visitor"
160
  msgstr ""
161
 
162
- #: media/js/aam-ui.js:800 Application/Backend/View/Localization.php:17
163
- #: Application/Backend/phtml/object/menu.phtml:56
164
- msgid "Show Menu"
165
- msgstr ""
166
-
167
- #: media/js/aam-ui.js:815 Application/Backend/View/Localization.php:18
168
- #: Application/Backend/phtml/object/menu.phtml:60
169
- msgid "Restrict Menu"
170
- msgstr ""
171
-
172
- #: media/js/aam-ui.js:927 Application/Backend/View/Localization.php:19
173
- msgid "Failed to retrieve mataboxes"
174
- msgstr ""
175
-
176
- #: media/js/aam-ui.js:955
177
- msgid "Processing"
178
- msgstr ""
179
-
180
- #: media/js/aam-ui.js:963
181
- msgid "Failed to initialize URL"
182
- msgstr ""
183
-
184
- #: media/js/aam-ui.js:971 Application/Backend/phtml/object/metabox.phtml:93
185
- msgid "Initialize"
186
- msgstr ""
187
-
188
- #: media/js/aam-ui.js:1045 Application/Backend/View/Localization.php:52
189
- msgid "Failed to grand capability - WordPress policy"
190
- msgstr ""
191
-
192
- #: media/js/aam-ui.js:1080 Application/Backend/View/Localization.php:11
193
  msgid "Search Capability"
194
  msgstr ""
195
 
196
- #: media/js/aam-ui.js:1081 Application/Backend/View/Localization.php:12
197
  msgid "_TOTAL_ capability(s)"
198
  msgstr ""
199
 
200
- #: media/js/aam-ui.js:1083
201
- msgid "Nothing to show"
 
 
 
202
  msgstr ""
203
 
204
- #: media/js/aam-ui.js:1190 Application/Backend/View/Localization.php:14
205
  msgid "Failed to add new capability"
206
  msgstr ""
207
 
208
- #: media/js/aam-ui.js:1198 Application/Backend/View/Localization.php:16
209
- msgid "Add Capability"
 
 
 
 
 
 
 
 
 
 
210
  msgstr ""
211
 
212
- #: media/js/aam-ui.js:1236
213
- msgid "Failed to update capability"
214
  msgstr ""
215
 
216
- #: media/js/aam-ui.js:1244 Application/Backend/phtml/object/capability.phtml:69
217
- msgid "Update Capability"
 
218
  msgstr ""
219
 
220
- #: media/js/aam-ui.js:1277
221
- msgid "Failed to delete capability"
 
222
  msgstr ""
223
 
224
- #: media/js/aam-ui.js:1285 Application/Backend/phtml/object/capability.phtml:91
225
- msgid "Delete Capability"
226
  msgstr ""
227
 
228
- #: media/js/aam-ui.js:1543 Application/Backend/View/Localization.php:20
229
  msgid "Search"
230
  msgstr ""
231
 
232
- #: media/js/aam-ui.js:1544 Application/Backend/View/Localization.php:21
233
  msgid "_TOTAL_ object(s)"
234
  msgstr ""
235
 
236
- #: media/js/aam-ui.js:1610
237
- msgid "Drill-Down"
238
  msgstr ""
239
 
240
- #: media/js/aam-ui.js:1628 Application/Backend/View/Localization.php:43
241
- msgid "Manage Access"
242
  msgstr ""
243
 
244
- #: media/js/aam-ui.js:1640 Application/Backend/View/Localization.php:44
245
- #: Application/Backend/View/PostOptionList.php:57
246
- msgid "Edit"
247
  msgstr ""
248
 
249
- #: media/js/aam-ui.js:1880 media/js/aam-ui.js:1975 media/js/aam-ui.js:2061
250
- #: media/js/aam-ui.js:2283 media/js/aam-ui.js:2317 media/js/aam-ui.js:2338
251
- #: media/js/aam-ui.js:2376
252
- msgid "Application Error"
253
  msgstr ""
254
 
255
- #: Application/Backend/Feature/404Redirect.php:62
256
- msgid "404 Redirect"
257
  msgstr ""
258
 
259
- #: Application/Backend/Feature/Abstract.php:30
260
- #: Application/Backend/Feature/Role.php:29
261
- #: Application/Backend/Feature/User.php:29 Application/Backend/Manager.php:483
262
- #: Application/Backend/Manager.php:508 Application/Core/API.php:225
263
- msgid "Access Denied"
264
  msgstr ""
265
 
266
- #: Application/Backend/Feature/Capability.php:104
267
- msgid "Capability already exists"
 
 
268
  msgstr ""
269
 
270
- #: Application/Backend/Feature/Capability.php:133
271
- msgid "Can not remove the capability"
272
  msgstr ""
273
 
274
- #: Application/Backend/Feature/Capability.php:254
275
- #: Application/Backend/Feature/Capability.php:293
276
- msgid "System"
277
  msgstr ""
278
 
279
- #: Application/Backend/Feature/Capability.php:255
280
- #: Application/Backend/Feature/Capability.php:295
281
- #: Application/Backend/Feature/Post.php:385
282
- msgid "Posts & Pages"
283
  msgstr ""
284
 
285
- #: Application/Backend/Feature/Capability.php:256
286
- #: Application/Backend/Feature/Capability.php:297
287
- #: Application/Backend/phtml/frame.phtml:167
288
- #: Application/Backend/phtml/object/post.phtml:88
289
- msgid "Backend"
 
290
  msgstr ""
291
 
292
- #: Application/Backend/Feature/Capability.php:257
293
- #: Application/Backend/Feature/Capability.php:299
294
- msgid "Miscellaneous"
295
  msgstr ""
296
 
297
- #: Application/Backend/Feature/Capability.php:320
298
- msgid "Capabilities"
299
  msgstr ""
300
 
301
- #: Application/Backend/Feature/Contact.php:45
302
- msgid "Contact Us"
 
 
303
  msgstr ""
304
 
305
- #: Application/Backend/Feature/Extension.php:96
306
- msgid "Enter license key to update extension."
307
  msgstr ""
308
 
309
- #: Application/Backend/Feature/Extension.php:157
310
- msgid "Extensions"
311
  msgstr ""
312
 
313
- #: Application/Backend/Feature/LoginRedirect.php:103
314
- msgid "Login Redirect"
315
  msgstr ""
316
 
317
- #: Application/Backend/Feature/Menu.php:190
318
- msgid "Backend Menu"
 
 
319
  msgstr ""
320
 
321
- #: Application/Backend/Feature/Metabox.php:239
322
- msgid "Metaboxes & Widgets"
323
  msgstr ""
324
 
325
- #: Application/Backend/Feature/Post.php:266
326
- msgid "You reached your limitation."
327
  msgstr ""
328
 
329
- #: Application/Backend/Feature/Redirect.php:103
330
- msgid "Access Denied Redirect"
331
  msgstr ""
332
 
333
- #: Application/Backend/Feature/Security.php:73
334
- msgid "Security"
 
 
335
  msgstr ""
336
 
337
- #: Application/Backend/Feature/Teaser.php:103
338
- msgid "Content Teaser"
339
  msgstr ""
340
 
341
- #: Application/Backend/Feature/Utility.php:113
342
- msgid "Utilities"
343
  msgstr ""
344
 
345
- #: Application/Backend/Manager.php:200
346
- msgid "Access Manager"
347
  msgstr ""
348
 
349
- #: Application/Backend/Manager.php:278 Application/Backend/Manager.php:298
350
- #: Application/Backend/Manager.php:323
351
- msgid "Access"
352
  msgstr ""
353
 
354
- #: Application/Backend/View/Localization.php:22
355
- msgid "Failed"
 
356
  msgstr ""
357
 
358
- #: Application/Backend/View/Localization.php:41
359
- msgid "Current user"
 
360
  msgstr ""
361
 
362
- #: Application/Backend/View/Localization.php:42
363
- msgid "Current role"
364
  msgstr ""
365
 
366
  #: Application/Backend/View/PostOptionList.php:13
367
- #: Application/Backend/View/PostOptionList.php:49
368
  msgid "List"
369
  msgstr ""
370
 
@@ -383,7 +344,7 @@ msgid " %sSee in action.%s"
383
  msgstr ""
384
 
385
  #: Application/Backend/View/PostOptionList.php:17
386
- #: Application/Backend/View/PostOptionList.php:53
387
  msgid "List To Others"
388
  msgstr ""
389
 
@@ -440,8 +401,6 @@ msgid "Restrict access to comment on %s when commenting feature is enabled."
440
  msgstr ""
441
 
442
  #: Application/Backend/View/PostOptionList.php:37
443
- #: Application/Backend/phtml/frame.phtml:226
444
- #: Application/Backend/phtml/object/post.phtml:143
445
  msgid "Redirect"
446
  msgstr ""
447
 
@@ -452,6 +411,7 @@ msgstr ""
452
 
453
  #: Application/Backend/View/PostOptionList.php:38
454
  #: Application/Backend/View/PostOptionList.php:43
 
455
  msgid "change"
456
  msgstr ""
457
 
@@ -478,7 +438,34 @@ msgid ""
478
  "higher."
479
  msgstr ""
480
 
481
- #: Application/Backend/View/PostOptionList.php:50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
482
  #, php-format
483
  msgid ""
484
  "Hide %s however access with a direct URL is still allowed. When there are "
@@ -486,7 +473,7 @@ msgid ""
486
  "performance reasons, AAM checks limited number of posts per request."
487
  msgstr ""
488
 
489
- #: Application/Backend/View/PostOptionList.php:54
490
  #, php-format
491
  msgid ""
492
  "Hide %s for all except author (whoever created %s or was assigned on the "
@@ -495,18 +482,18 @@ msgid ""
495
  "performance reasons, AAM checks limited number of posts per request."
496
  msgstr ""
497
 
498
- #: Application/Backend/View/PostOptionList.php:58
499
  #, php-format
500
  msgid ""
501
  "Restrict access to edit %s. Any attempts to edit %s will result in "
502
  "redirecting user based on the Access Denied Redirect rule."
503
  msgstr ""
504
 
505
- #: Application/Backend/View/PostOptionList.php:61
506
  msgid "Edit By Others"
507
  msgstr ""
508
 
509
- #: Application/Backend/View/PostOptionList.php:62
510
  #, php-format
511
  msgid ""
512
  "Restrict access to edit %s for all except author (whoever created %s or was "
@@ -514,44 +501,44 @@ msgid ""
514
  "redirecting user based on the Access Denied Redirect rule."
515
  msgstr ""
516
 
517
- #: Application/Backend/View/PostOptionList.php:65
518
- #: Application/Backend/phtml/index.phtml:152
519
- #: Application/Backend/phtml/object/capability.phtml:97
520
  msgid "Delete"
521
  msgstr ""
522
 
523
- #: Application/Backend/View/PostOptionList.php:66
524
  #, php-format
525
  msgid "Restrict access to trash or permanently delete %s."
526
  msgstr ""
527
 
528
- #: Application/Backend/View/PostOptionList.php:69
529
  msgid "Delete By Others"
530
  msgstr ""
531
 
532
- #: Application/Backend/View/PostOptionList.php:70
533
  #, php-format
534
  msgid ""
535
  "Restrict access to trash or permanently delete %s for all except author "
536
  "(whoever created %s or was assigned on the Author metabox)."
537
  msgstr ""
538
 
539
- #: Application/Backend/View/PostOptionList.php:73
540
  msgid "Publish"
541
  msgstr ""
542
 
543
- #: Application/Backend/View/PostOptionList.php:74
544
  #, php-format
545
  msgid ""
546
  "Restrict access to publish %s. User will be allowed only submit for review. "
547
  "Quick Edit inline action is also removed from the list page."
548
  msgstr ""
549
 
550
- #: Application/Backend/View/PostOptionList.php:77
551
  msgid "Publish By Others"
552
  msgstr ""
553
 
554
- #: Application/Backend/View/PostOptionList.php:78
555
  #, php-format
556
  msgid ""
557
  "Restrict access to publish %s for all except author (whoever created %s or "
@@ -596,85 +583,111 @@ msgstr ""
596
  msgid "Edit/Delete Capabilities"
597
  msgstr ""
598
 
599
- #: Application/Backend/View/UtilityOptionList.php:17
600
  msgid "Backend Access Control"
601
  msgstr ""
602
 
603
- #: Application/Backend/View/UtilityOptionList.php:18
604
  msgid ""
605
  "Allow AAM to manage access to backend resources. If there is no need to "
606
  "manage access to the website backend then keep this option unchecked as it "
607
  "may increase your webiste performance."
608
  msgstr ""
609
 
610
- #: Application/Backend/View/UtilityOptionList.php:22
611
  msgid "Frontend Access Control"
612
  msgstr ""
613
 
614
- #: Application/Backend/View/UtilityOptionList.php:23
615
  msgid ""
616
  "Allow AAM to manage access to frontend resources. If there is no need to "
617
  "manage access to the website frontend then keep this option unchecked as it "
618
  "may increase your webiste performance."
619
  msgstr ""
620
 
621
- #: Application/Backend/View/UtilityOptionList.php:27
622
  msgid "Media Files Access Control"
623
  msgstr ""
624
 
625
- #: Application/Backend/View/UtilityOptionList.php:32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
626
  msgid "Render Access Manager Metabox"
627
  msgstr ""
628
 
629
- #: Application/Backend/View/UtilityOptionList.php:33
630
  msgid ""
631
  "Render Access Manager metabox on all post and category edit pages. Access "
632
  "Manager metabox is the quick way to manage access to any post or category "
633
  "without leaving an edit page."
634
  msgstr ""
635
 
636
- #: Application/Backend/View/UtilityOptionList.php:37
637
- msgid "Check Post Visibility"
638
  msgstr ""
639
 
640
- #: Application/Backend/View/UtilityOptionList.php:38
641
  msgid ""
642
- "For performance reasons, keep this option uncheck if do not use LIST or LIST "
643
- "TO OTHERS access options on Posts & Pages tab. When it is checked, AAM will "
644
- "filter list of posts that are hidden for a user on both frontend and backend."
645
  msgstr ""
646
 
647
- #: Application/Extension/Repository.php:268
648
  #, php-format
649
  msgid "Failed to create %s"
650
  msgstr ""
651
 
652
- #: Application/Extension/Repository.php:272
653
  #, php-format
654
  msgid "Directory %s is not writable"
655
  msgstr ""
656
 
657
- #: Application/Frontend/Manager.php:191
 
 
 
 
658
  #, php-format
659
  msgid "[%s] Double Authentication"
660
  msgstr ""
661
 
662
- #: Application/Frontend/Manager.php:193
663
  #, php-format
664
  msgid "Someone was trying to login from the different IP address %s:"
665
  msgstr ""
666
 
667
- #: Application/Frontend/Manager.php:194
668
  #, php-format
669
  msgid "Website: %s"
670
  msgstr ""
671
 
672
- #: Application/Frontend/Manager.php:195
673
  #, php-format
674
  msgid "Username: %s"
675
  msgstr ""
676
 
677
- #: Application/Frontend/Manager.php:196
678
  msgid "Visit the following address to authorize the login:"
679
  msgstr ""
680
 
@@ -682,46 +695,111 @@ msgstr ""
682
  msgid "No valid strategy found for the given context"
683
  msgstr ""
684
 
685
- #: aam.php:163
686
  msgid "PHP 5.2 or higher is required."
687
  msgstr ""
688
 
689
- #: aam.php:165
690
  msgid "WP 3.8 or higher is required."
691
  msgstr ""
692
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
693
  #: Application/Backend/phtml/404redirect.phtml:33
694
  #: Application/Backend/phtml/object/login-redirect.phtml:43
695
- #: Application/Backend/phtml/object/redirect.phtml:61
696
- #: Application/Backend/phtml/object/redirect.phtml:113
 
697
  msgid "Existing Page"
698
  msgstr ""
699
 
700
  #: Application/Backend/phtml/404redirect.phtml:42
701
  #: Application/Backend/phtml/object/login-redirect.phtml:52
702
- #: Application/Backend/phtml/object/redirect.phtml:70
703
- #: Application/Backend/phtml/object/redirect.phtml:122
 
704
  msgid "-- Select Page --"
705
  msgstr ""
706
 
707
  #: Application/Backend/phtml/404redirect.phtml:48
708
  #: Application/Backend/phtml/object/login-redirect.phtml:58
709
- #: Application/Backend/phtml/object/redirect.phtml:76
710
- #: Application/Backend/phtml/object/redirect.phtml:128
 
711
  msgid "The URL"
712
  msgstr ""
713
 
714
  #: Application/Backend/phtml/404redirect.phtml:53
715
  #: Application/Backend/phtml/object/login-redirect.phtml:63
716
- #: Application/Backend/phtml/object/redirect.phtml:81
717
- #: Application/Backend/phtml/object/redirect.phtml:133
 
718
  msgid "PHP Callback Function"
719
  msgstr ""
720
 
721
  #: Application/Backend/phtml/contact.phtml:6
722
  msgid ""
723
- "Feel free to contact us if you have any questions or concerns but follow few "
724
- "simple rules:"
725
  msgstr ""
726
 
727
  #: Application/Backend/phtml/extension.phtml:11
@@ -741,174 +819,141 @@ msgid "Premium"
741
  msgstr ""
742
 
743
  #: Application/Backend/phtml/extension.phtml:29
744
- #: Application/Backend/phtml/extension.phtml:68
745
  msgid "Free"
746
  msgstr ""
747
 
748
- #: Application/Backend/phtml/extension.phtml:48
749
- #: Application/Backend/phtml/extension.phtml:75
750
  msgid "Installed"
751
  msgstr ""
752
 
753
- #: Application/Backend/phtml/extension.phtml:52
754
  msgid "Inactive"
755
  msgstr ""
756
 
757
- #: Application/Backend/phtml/extension.phtml:54
758
- msgid "Purchase"
759
  msgstr ""
760
 
761
- #: Application/Backend/phtml/extension.phtml:79
762
- #: Application/Backend/phtml/extension.phtml:110
763
  msgid "Download"
764
  msgstr ""
765
 
766
- #: Application/Backend/phtml/extension.phtml:94
767
- #: Application/Backend/phtml/extension.phtml:121
768
- #: Application/Backend/phtml/extension.phtml:132
769
- #: Application/Backend/phtml/frame.phtml:204
770
- #: Application/Backend/phtml/frame.phtml:215
771
- #: Application/Backend/phtml/frame.phtml:225
772
- #: Application/Backend/phtml/frame.phtml:236
773
- #: Application/Backend/phtml/index.phtml:101
774
- #: Application/Backend/phtml/index.phtml:113
775
  #: Application/Backend/phtml/index.phtml:123
776
- #: Application/Backend/phtml/index.phtml:135
777
  #: Application/Backend/phtml/index.phtml:145
778
- #: Application/Backend/phtml/index.phtml:153
779
- #: Application/Backend/phtml/object/capability.phtml:47
780
- #: Application/Backend/phtml/object/capability.phtml:58
781
- #: Application/Backend/phtml/object/capability.phtml:68
782
- #: Application/Backend/phtml/object/capability.phtml:80
783
- #: Application/Backend/phtml/object/capability.phtml:90
784
- #: Application/Backend/phtml/object/capability.phtml:98
785
- #: Application/Backend/phtml/object/menu.phtml:75
 
786
  #: Application/Backend/phtml/object/metabox.phtml:80
787
  #: Application/Backend/phtml/object/metabox.phtml:94
788
- #: Application/Backend/phtml/object/post.phtml:121
789
- #: Application/Backend/phtml/object/post.phtml:132
790
- #: Application/Backend/phtml/object/post.phtml:142
791
- #: Application/Backend/phtml/object/post.phtml:153
792
- #: Application/Backend/phtml/utility.phtml:53
 
 
793
  msgid "Close"
794
  msgstr ""
795
 
796
- #: Application/Backend/phtml/extension.phtml:95
797
  msgid "Notification"
798
  msgstr ""
799
 
800
- #: Application/Backend/phtml/extension.phtml:99
801
  msgid ""
802
  "Extension requires manual installation. Please follow few simple steps below."
803
  msgstr ""
804
 
805
- #: Application/Backend/phtml/extension.phtml:111
806
- #: Application/Backend/phtml/utility.phtml:61
807
  msgid "Cancel"
808
  msgstr ""
809
 
810
- #: Application/Backend/phtml/extension.phtml:122
811
  msgid "Install Extension"
812
  msgstr ""
813
 
814
- #: Application/Backend/phtml/extension.phtml:126
815
  msgid ""
816
  "Insert license key that you recieved after the payment (find the email "
817
  "example below). It might take up to 2 hours to process the payment. Please "
818
  "remember that license key is limited only to one life domain."
819
  msgstr ""
820
 
821
- #: Application/Backend/phtml/frame.phtml:91
822
- #: Application/Backend/phtml/index.phtml:165
823
  msgid "Username"
824
  msgstr ""
825
 
826
- #: Application/Backend/phtml/frame.phtml:101
827
  #, php-format
828
  msgid "Manage access to %s for visitors (any user that is not authenticated)"
829
  msgstr ""
830
 
831
- #: Application/Backend/phtml/frame.phtml:102
832
- #: Application/Backend/phtml/index.phtml:176
833
  msgid "Manage Visitors"
834
  msgstr ""
835
 
836
- #: Application/Backend/phtml/frame.phtml:107
837
  #, php-format
838
  msgid ""
839
  "Manage default access to %s for all users, roles and visitor. This includes "
840
  "Administrator role and yourself"
841
  msgstr ""
842
 
843
- #: Application/Backend/phtml/frame.phtml:109
844
- #: Application/Backend/phtml/index.phtml:182
845
  msgid "Manage Default Access"
846
  msgstr ""
847
 
848
- #: Application/Backend/phtml/frame.phtml:124
849
- #: Application/Backend/phtml/object/menu.phtml:7
850
  #: Application/Backend/phtml/object/metabox.phtml:12
851
  #: Application/Backend/phtml/object/post.phtml:27
852
  msgid "Settings are customized"
853
  msgstr ""
854
 
855
- #: Application/Backend/phtml/frame.phtml:125
856
- #: Application/Backend/phtml/object/menu.phtml:8
 
857
  #: Application/Backend/phtml/object/metabox.phtml:13
858
  #: Application/Backend/phtml/object/post.phtml:28
859
  msgid "Reset To Default"
860
  msgstr ""
861
 
862
- #: Application/Backend/phtml/frame.phtml:140
863
  #: Application/Backend/phtml/object/post.phtml:65
864
  msgid "Frontend"
865
  msgstr ""
866
 
867
- #: Application/Backend/phtml/frame.phtml:205
868
- #: Application/Backend/phtml/object/post.phtml:122
869
- msgid "Change Password"
870
- msgstr ""
871
-
872
- #: Application/Backend/phtml/frame.phtml:209
873
- #: Application/Backend/phtml/object/post.phtml:126
874
- msgid "Password"
875
- msgstr ""
876
-
877
- #: Application/Backend/phtml/frame.phtml:210
878
- #: Application/Backend/phtml/object/post.phtml:127
879
- msgid "Enter Password"
880
- msgstr ""
881
-
882
- #: Application/Backend/phtml/frame.phtml:214
883
- #: Application/Backend/phtml/frame.phtml:235
884
- #: Application/Backend/phtml/object/post.phtml:131
885
- #: Application/Backend/phtml/object/post.phtml:152
886
- msgid "Change"
887
- msgstr ""
888
-
889
- #: Application/Backend/phtml/frame.phtml:230
890
- #: Application/Backend/phtml/object/post.phtml:147
891
- msgid "Valid URL or Page ID"
892
- msgstr ""
893
-
894
- #: Application/Backend/phtml/frame.phtml:231
895
- #: Application/Backend/phtml/object/post.phtml:148
896
- msgid "Enter Redirect"
897
- msgstr ""
898
-
899
  #: Application/Backend/phtml/index.phtml:14
900
  msgid "Access Control Panel"
901
  msgstr ""
902
 
903
  #: Application/Backend/phtml/index.phtml:21
904
  msgid ""
905
- "Appreciate your interest in Advanced Access Manager (aka AAM). With strong "
906
  "knowledge and experience in WordPress, AAM becomes a very powerful tool to "
907
  "manage access to your frontend and backend."
908
  msgstr ""
909
 
910
  #: Application/Backend/phtml/index.phtml:22
911
- msgid "Please note!"
912
  msgstr ""
913
 
914
  #: Application/Backend/phtml/index.phtml:23
@@ -920,154 +965,165 @@ msgstr ""
920
 
921
  #: Application/Backend/phtml/index.phtml:24
922
  #, php-format
923
- msgid "Refer to our %sHelp%s section when there is any question."
 
 
924
  msgstr ""
925
 
926
- #: Application/Backend/phtml/index.phtml:37
927
  msgid "Notifications"
928
  msgstr ""
929
 
930
- #: Application/Backend/phtml/index.phtml:56
931
  msgid "AAM Multisite"
932
  msgstr ""
933
 
934
- #: Application/Backend/phtml/index.phtml:60
935
  msgid "Install AAM Multisite"
936
  msgstr ""
937
 
938
- #: Application/Backend/phtml/index.phtml:71
939
  msgid "Users/Roles Panel"
940
  msgstr ""
941
 
942
- #: Application/Backend/phtml/index.phtml:77
943
- #: Application/Backend/phtml/index.phtml:193
944
  msgid "Roles"
945
  msgstr ""
946
 
947
- #: Application/Backend/phtml/index.phtml:79
948
- #: Application/Backend/phtml/index.phtml:203
949
  msgid "Visitor"
950
  msgstr ""
951
 
952
- #: Application/Backend/phtml/index.phtml:80
953
- #: Application/Backend/phtml/index.phtml:208
954
  msgid "Default"
955
  msgstr ""
956
 
957
- #: Application/Backend/phtml/index.phtml:90
958
- #: Application/Backend/phtml/index.phtml:166
959
  msgid "Action"
960
  msgstr ""
961
 
962
- #: Application/Backend/phtml/index.phtml:102
963
  msgid "Create Role"
964
  msgstr ""
965
 
966
- #: Application/Backend/phtml/index.phtml:106
967
- #: Application/Backend/phtml/index.phtml:128
968
  msgid "Role Name"
969
  msgstr ""
970
 
971
- #: Application/Backend/phtml/index.phtml:107
972
- #: Application/Backend/phtml/index.phtml:129
973
  msgid "Enter Role Name"
974
  msgstr ""
975
 
976
- #: Application/Backend/phtml/index.phtml:124
977
  msgid "Update Role"
978
  msgstr ""
979
 
980
- #: Application/Backend/phtml/index.phtml:149
981
  #, php-format
982
  msgid "Are you sure that you want to delete the %s role?"
983
  msgstr ""
984
 
985
- #: Application/Backend/phtml/index.phtml:175
986
  msgid ""
987
  "Manage access to your website for visitors (any user that is not "
988
  "authenticated)"
989
  msgstr ""
990
 
991
- #: Application/Backend/phtml/index.phtml:181
992
  msgid ""
993
  "Manage default access to your website resources for all users, roles and "
994
  "visitor. This includes Administrator role and your user"
995
  msgstr ""
996
 
997
- #: Application/Backend/phtml/index.phtml:194
998
  msgid ""
999
  "With Roles tab you can manage access for any defined role, edit role's name, "
1000
  "create new role or even delete existing (but only when there is no users "
1001
  "assigned to it). You are not allowed to delete Administrator role."
1002
  msgstr ""
1003
 
1004
- #: Application/Backend/phtml/index.phtml:199
1005
  msgid ""
1006
  "Manage access for any user. As a bonus feature, you can block user. It means "
1007
  "that user will be not able to login to your website anymore."
1008
  msgstr ""
1009
 
1010
- #: Application/Backend/phtml/index.phtml:204
1011
  msgid ""
1012
  "Visitor can be considered any user that is not authenticated to your website."
1013
  msgstr ""
1014
 
1015
- #: Application/Backend/phtml/index.phtml:209
1016
  msgid ""
1017
  "Manage default access settings to your website resources for all users, "
1018
  "roles and visitors."
1019
  msgstr ""
1020
 
1021
- #: Application/Backend/phtml/object/capability.phtml:16
 
 
 
 
1022
  msgid "Filter"
1023
  msgstr ""
1024
 
1025
- #: Application/Backend/phtml/object/capability.phtml:23
1026
  msgid "All Capabilities"
1027
  msgstr ""
1028
 
1029
- #: Application/Backend/phtml/object/capability.phtml:35
1030
- msgid "Category"
1031
  msgstr ""
1032
 
1033
  #: Application/Backend/phtml/object/capability.phtml:36
1034
- #: Application/Backend/phtml/object/capability.phtml:52
1035
- #: Application/Backend/phtml/object/capability.phtml:73
1036
- msgid "Capability"
1037
  msgstr ""
1038
 
1039
  #: Application/Backend/phtml/object/capability.phtml:37
 
 
 
 
 
 
1040
  #: Application/Backend/phtml/object/post.phtml:44
1041
  msgid "Actions"
1042
  msgstr ""
1043
 
1044
- #: Application/Backend/phtml/object/capability.phtml:48
1045
  msgid "Create Capability"
1046
  msgstr ""
1047
 
1048
- #: Application/Backend/phtml/object/capability.phtml:53
1049
- #: Application/Backend/phtml/object/capability.phtml:74
1050
  msgid "Enter Capability"
1051
  msgstr ""
1052
 
1053
- #: Application/Backend/phtml/object/capability.phtml:94
1054
  #, php-format
1055
  msgid "Are you sure that you want to delete %s capability for all roles?"
1056
  msgstr ""
1057
 
1058
  #: Application/Backend/phtml/object/login-redirect.phtml:27
 
1059
  msgid "WordPress default behavior"
1060
  msgstr ""
1061
 
1062
- #: Application/Backend/phtml/object/menu.phtml:76
1063
  msgid "Dashboard Lockdown"
1064
  msgstr ""
1065
 
1066
- #: Application/Backend/phtml/object/menu.phtml:79
1067
  msgid "You cannot restrict access to Dashboard home page."
1068
  msgstr ""
1069
 
1070
- #: Application/Backend/phtml/object/menu.phtml:81
1071
  #, php-format
1072
  msgid ""
1073
  "Dashboard home page is the default page every user is redirected after "
@@ -1075,7 +1131,7 @@ msgid ""
1075
  "%splease check this article%s."
1076
  msgstr ""
1077
 
1078
- #: Application/Backend/phtml/object/menu.phtml:84
1079
  msgid "OK"
1080
  msgstr ""
1081
 
@@ -1142,13 +1198,13 @@ msgstr ""
1142
  msgid "Backend Redirect"
1143
  msgstr ""
1144
 
1145
- #: Application/Backend/phtml/object/redirect.phtml:56
1146
- #: Application/Backend/phtml/object/redirect.phtml:108
1147
  msgid "Customized Message"
1148
  msgstr ""
1149
 
1150
- #: Application/Backend/phtml/object/redirect.phtml:57
1151
- #: Application/Backend/phtml/object/redirect.phtml:109
1152
  msgid "Enter message..."
1153
  msgstr ""
1154
 
@@ -1164,6 +1220,42 @@ msgstr ""
1164
  msgid "Add excerpt before teaser message"
1165
  msgstr ""
1166
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1167
  #: Application/Backend/phtml/partial/role-inheritance.phtml:3
1168
  msgid "Inherit Capabilities From"
1169
  msgstr ""
@@ -1174,31 +1266,47 @@ msgid ""
1174
  "CodePinch."
1175
  msgstr ""
1176
 
1177
- #: Application/Backend/phtml/utility.phtml:26
 
 
 
 
 
 
 
 
 
 
 
 
1178
  msgid "Clear Cache"
1179
  msgstr ""
1180
 
1181
- #: Application/Backend/phtml/utility.phtml:28
1182
  msgid "Clear all AAM cache."
1183
  msgstr ""
1184
 
1185
- #: Application/Backend/phtml/utility.phtml:37
1186
  msgid "Clear All Settings"
1187
  msgstr ""
1188
 
1189
- #: Application/Backend/phtml/utility.phtml:39
1190
  msgid ""
1191
  "Remove all the settings related to AAM (including all extension licenses)."
1192
  msgstr ""
1193
 
1194
- #: Application/Backend/phtml/utility.phtml:54
 
 
 
 
1195
  msgid "Clear all settings"
1196
  msgstr ""
1197
 
1198
- #: Application/Backend/phtml/utility.phtml:57
1199
  msgid "All AAM settings will be removed."
1200
  msgstr ""
1201
 
1202
- #: Application/Backend/phtml/utility.phtml:60
1203
  msgid "Clear"
1204
  msgstr ""
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: AAM\n"
5
+ "POT-Creation-Date: 2017-05-21 11:58-0400\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: WPAAM <support@wpaam.com>\n"
8
  "Language-Team: WP AAM <vasyl@vasyltech.com>\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.0.1\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: Application/Backend/Feature/404Redirect.php:68
21
+ msgid "404 Redirect"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  msgstr ""
23
 
24
+ #: Application/Backend/Feature/Abstract.php:31
25
+ #: Application/Backend/Manager.php:539 Application/Backend/Manager.php:562
26
+ #: Application/Core/API.php:246
27
+ msgid "Access Denied"
28
  msgstr ""
29
 
30
+ #: Application/Backend/Feature/Capability.php:96
31
+ msgid "Capability already exists"
32
  msgstr ""
33
 
34
+ #: Application/Backend/Feature/Capability.php:125
35
+ msgid "Can not remove the capability"
36
  msgstr ""
37
 
38
+ #: Application/Backend/Feature/Capability.php:235
39
+ #: Application/Backend/Feature/Capability.php:276
40
+ msgid "System"
41
  msgstr ""
42
 
43
+ #: Application/Backend/Feature/Capability.php:236
44
+ #: Application/Backend/Feature/Capability.php:278
45
+ #: Application/Backend/Feature/Post.php:467
46
+ msgid "Posts & Pages"
 
47
  msgstr ""
48
 
49
+ #: Application/Backend/Feature/Capability.php:237
50
+ #: Application/Backend/Feature/Capability.php:280
51
+ #: Application/Backend/phtml/frame.phtml:143
52
+ #: Application/Backend/phtml/object/post.phtml:88
53
+ msgid "Backend"
54
  msgstr ""
55
 
56
+ #: Application/Backend/Feature/Capability.php:238
57
+ #: Application/Backend/Feature/Capability.php:282
58
+ msgid "AAM Interface"
59
  msgstr ""
60
 
61
+ #: Application/Backend/Feature/Capability.php:239
62
+ #: Application/Backend/Feature/Capability.php:284
63
+ #: Application/Backend/phtml/utility.phtml:7
64
+ msgid "Miscellaneous"
 
 
 
 
65
  msgstr ""
66
 
67
+ #: Application/Backend/Feature/Capability.php:324
68
+ msgid "Capabilities"
69
  msgstr ""
70
 
71
+ #: Application/Backend/Feature/Contact.php:51
72
+ msgid "Contact Us"
73
  msgstr ""
74
 
75
+ #: Application/Backend/Feature/Extension.php:96
76
+ msgid "Enter license key to update extension."
 
 
 
 
77
  msgstr ""
78
 
79
+ #: Application/Backend/Feature/Extension.php:164
80
+ msgid "Extensions"
 
81
  msgstr ""
82
 
83
+ #: Application/Backend/Feature/LoginRedirect.php:109
84
+ msgid "Login Redirect"
85
  msgstr ""
86
 
87
+ #: Application/Backend/Feature/LogoutRedirect.php:110
88
+ msgid "Logout Redirect"
 
89
  msgstr ""
90
 
91
+ #: Application/Backend/Feature/Menu.php:209
92
+ msgid "Backend Menu"
 
93
  msgstr ""
94
 
95
+ #: Application/Backend/Feature/Metabox.php:245
96
+ msgid "Metaboxes & Widgets"
97
  msgstr ""
98
 
99
+ #: Application/Backend/Feature/Redirect.php:117
100
+ msgid "Access Denied Redirect"
101
  msgstr ""
102
 
103
+ #: Application/Backend/Feature/Security.php:79
104
+ msgid "Security"
105
  msgstr ""
106
 
107
+ #: Application/Backend/Feature/Teaser.php:109
108
+ msgid "Content Teaser"
 
 
109
  msgstr ""
110
 
111
+ #: Application/Backend/Feature/Utility.php:140
112
+ msgid "Utilities"
113
  msgstr ""
114
 
115
+ #: Application/Backend/Manager.php:216
116
+ msgid "Access Manager"
117
  msgstr ""
118
 
119
+ #: Application/Backend/Manager.php:309 Application/Backend/Manager.php:327
120
+ #: Application/Backend/Manager.php:350
121
+ msgid "Access"
122
  msgstr ""
123
 
124
+ #: Application/Backend/Manager.php:448
125
+ #: Application/Backend/View/Localization.php:40 media/js/aam-interface.js:713
126
  msgid "Anonymous"
127
  msgstr ""
128
 
129
+ #: Application/Backend/Manager.php:455 media/js/aam-interface.js:745
130
  msgid "All Users, Roles and Visitor"
131
  msgstr ""
132
 
133
+ #: Application/Backend/View/Localization.php:11 media/js/aam-interface.js:1075
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
134
  msgid "Search Capability"
135
  msgstr ""
136
 
137
+ #: Application/Backend/View/Localization.php:12 media/js/aam-interface.js:1076
138
  msgid "_TOTAL_ capability(s)"
139
  msgstr ""
140
 
141
+ #: Application/Backend/View/Localization.php:13 media/js/aam-interface.js:286
142
+ #: media/js/aam-interface.js:341 media/js/aam-interface.js:1179
143
+ #: media/js/aam-interface.js:1225 media/js/aam-interface.js:1760
144
+ #: media/js/aam-interface.js:1807 media/js/aam-interface.js:1853
145
+ msgid "Saving..."
146
  msgstr ""
147
 
148
+ #: Application/Backend/View/Localization.php:14 media/js/aam-interface.js:1187
149
  msgid "Failed to add new capability"
150
  msgstr ""
151
 
152
+ #: Application/Backend/View/Localization.php:15 media/js/aam-interface.js:306
153
+ #: media/js/aam-interface.js:353 media/js/aam-interface.js:390
154
+ #: media/js/aam-interface.js:484 media/js/aam-interface.js:516
155
+ #: media/js/aam-interface.js:890 media/js/aam-interface.js:927
156
+ #: media/js/aam-interface.js:963 media/js/aam-interface.js:1192
157
+ #: media/js/aam-interface.js:1238 media/js/aam-interface.js:1279
158
+ #: media/js/aam-interface.js:1473 media/js/aam-interface.js:1523
159
+ #: media/js/aam-interface.js:1915 media/js/aam-interface.js:2010
160
+ #: media/js/aam-interface.js:2109 media/js/aam-interface.js:2203
161
+ #: media/js/aam-interface.js:2284 media/js/aam-interface.js:2358
162
+ #: media/js/aam.js:207
163
+ msgid "Application error"
164
  msgstr ""
165
 
166
+ #: Application/Backend/View/Localization.php:16 media/js/aam-interface.js:1195
167
+ msgid "Add Capability"
168
  msgstr ""
169
 
170
+ #: Application/Backend/View/Localization.php:17 media/js/aam-interface.js:795
171
+ #: Application/Backend/phtml/object/menu.phtml:63
172
+ msgid "Show Menu"
173
  msgstr ""
174
 
175
+ #: Application/Backend/View/Localization.php:18 media/js/aam-interface.js:810
176
+ #: Application/Backend/phtml/object/menu.phtml:67
177
+ msgid "Restrict Menu"
178
  msgstr ""
179
 
180
+ #: Application/Backend/View/Localization.php:19 media/js/aam-interface.js:922
181
+ msgid "Failed to retrieve mataboxes"
182
  msgstr ""
183
 
184
+ #: Application/Backend/View/Localization.php:20 media/js/aam-interface.js:1562
185
  msgid "Search"
186
  msgstr ""
187
 
188
+ #: Application/Backend/View/Localization.php:21 media/js/aam-interface.js:1563
189
  msgid "_TOTAL_ object(s)"
190
  msgstr ""
191
 
192
+ #: Application/Backend/View/Localization.php:22
193
+ msgid "Failed"
194
  msgstr ""
195
 
196
+ #: Application/Backend/View/Localization.php:23 media/js/aam-interface.js:44
197
+ msgid "Loading..."
198
  msgstr ""
199
 
200
+ #: Application/Backend/View/Localization.php:24 media/js/aam-interface.js:49
201
+ #: Application/Backend/phtml/partial/role-inheritance.phtml:5
202
+ msgid "Select Role"
203
  msgstr ""
204
 
205
+ #: Application/Backend/View/Localization.php:25 media/js/aam-interface.js:90
206
+ msgid "Search Role"
 
 
207
  msgstr ""
208
 
209
+ #: Application/Backend/View/Localization.php:26 media/js/aam-interface.js:91
210
+ msgid "_TOTAL_ role(s)"
211
  msgstr ""
212
 
213
+ #: Application/Backend/View/Localization.php:27 media/js/aam-interface.js:99
214
+ #: media/js/aam-interface.js:555 Application/Backend/phtml/index.phtml:122
215
+ #: Application/Backend/phtml/object/capability.phtml:18
216
+ #: Application/Backend/phtml/object/capability.phtml:58
217
+ msgid "Create"
218
  msgstr ""
219
 
220
+ #: Application/Backend/View/Localization.php:28 media/js/aam-interface.js:120
221
+ #: Application/Backend/phtml/index.phtml:82
222
+ #: Application/Backend/phtml/index.phtml:215
223
+ msgid "Users"
224
  msgstr ""
225
 
226
+ #: Application/Backend/View/Localization.php:29 media/js/aam-interface.js:301
227
+ msgid "Failed to add new role"
228
  msgstr ""
229
 
230
+ #: Application/Backend/View/Localization.php:30 media/js/aam-interface.js:309
231
+ msgid "Add Role"
 
232
  msgstr ""
233
 
234
+ #: Application/Backend/View/Localization.php:31 media/js/aam-interface.js:348
235
+ msgid "Failed to update role"
 
 
236
  msgstr ""
237
 
238
+ #: Application/Backend/View/Localization.php:32 media/js/aam-interface.js:357
239
+ #: Application/Backend/phtml/extension.phtml:55
240
+ #: Application/Backend/phtml/extension.phtml:82
241
+ #: Application/Backend/phtml/index.phtml:144
242
+ #: Application/Backend/phtml/object/capability.phtml:80
243
+ msgid "Update"
244
  msgstr ""
245
 
246
+ #: Application/Backend/View/Localization.php:33 media/js/aam-interface.js:380
247
+ #: media/js/aam-interface.js:1266
248
+ msgid "Deleting..."
249
  msgstr ""
250
 
251
+ #: Application/Backend/View/Localization.php:34 media/js/aam-interface.js:386
252
+ msgid "Failed to delete role"
253
  msgstr ""
254
 
255
+ #: Application/Backend/View/Localization.php:35
256
+ #: Application/Backend/View/Localization.php:47 media/js/aam-interface.js:211
257
+ #: media/js/aam-interface.js:394 Application/Backend/phtml/index.phtml:156
258
+ msgid "Delete Role"
259
  msgstr ""
260
 
261
+ #: Application/Backend/View/Localization.php:36 media/js/aam-interface.js:480
262
+ msgid "Failed to block user"
263
  msgstr ""
264
 
265
+ #: Application/Backend/View/Localization.php:37 media/js/aam-interface.js:546
266
+ msgid "Search User"
267
  msgstr ""
268
 
269
+ #: Application/Backend/View/Localization.php:38 media/js/aam-interface.js:547
270
+ msgid "_TOTAL_ user(s)"
271
  msgstr ""
272
 
273
+ #: Application/Backend/View/Localization.php:39 media/js/aam-interface.js:573
274
+ #: Application/Backend/phtml/frame.phtml:46
275
+ #: Application/Backend/phtml/index.phtml:99
276
+ msgid "Role"
277
  msgstr ""
278
 
279
+ #: Application/Backend/View/Localization.php:41
280
+ msgid "Current user"
281
  msgstr ""
282
 
283
+ #: Application/Backend/View/Localization.php:42
284
+ msgid "Current role"
285
  msgstr ""
286
 
287
+ #: Application/Backend/View/Localization.php:43 media/js/aam-interface.js:1647
288
+ msgid "Manage Access"
289
  msgstr ""
290
 
291
+ #: Application/Backend/View/Localization.php:44
292
+ #: Application/Backend/View/PostOptionList.php:62
293
+ #: media/js/aam-interface.js:1659
294
+ msgid "Edit"
295
  msgstr ""
296
 
297
+ #: Application/Backend/View/Localization.php:45 media/js/aam-interface.js:157
298
+ msgid "Manage Role"
299
  msgstr ""
300
 
301
+ #: Application/Backend/View/Localization.php:46 media/js/aam-interface.js:174
302
+ msgid "Edit Role Name"
303
  msgstr ""
304
 
305
+ #: Application/Backend/View/Localization.php:48 media/js/aam-interface.js:605
306
+ msgid "Manage User"
307
  msgstr ""
308
 
309
+ #: Application/Backend/View/Localization.php:49 media/js/aam-interface.js:619
310
+ msgid "Edit User"
 
311
  msgstr ""
312
 
313
+ #: Application/Backend/View/Localization.php:50 media/js/aam-interface.js:475
314
+ #: media/js/aam-interface.js:476 media/js/aam-interface.js:632
315
+ msgid "Lock User"
316
  msgstr ""
317
 
318
+ #: Application/Backend/View/Localization.php:51 media/js/aam-interface.js:469
319
+ #: media/js/aam-interface.js:470 media/js/aam-interface.js:645
320
+ msgid "Unlock User"
321
  msgstr ""
322
 
323
+ #: Application/Backend/View/Localization.php:52 media/js/aam-interface.js:1040
324
+ msgid "Failed to grand capability - WordPress policy"
325
  msgstr ""
326
 
327
  #: Application/Backend/View/PostOptionList.php:13
328
+ #: Application/Backend/View/PostOptionList.php:54
329
  msgid "List"
330
  msgstr ""
331
 
344
  msgstr ""
345
 
346
  #: Application/Backend/View/PostOptionList.php:17
347
+ #: Application/Backend/View/PostOptionList.php:58
348
  msgid "List To Others"
349
  msgstr ""
350
 
401
  msgstr ""
402
 
403
  #: Application/Backend/View/PostOptionList.php:37
 
 
404
  msgid "Redirect"
405
  msgstr ""
406
 
411
 
412
  #: Application/Backend/View/PostOptionList.php:38
413
  #: Application/Backend/View/PostOptionList.php:43
414
+ #: Application/Backend/View/PostOptionList.php:48
415
  msgid "change"
416
  msgstr ""
417
 
438
  "higher."
439
  msgstr ""
440
 
441
+ #: Application/Backend/View/PostOptionList.php:47
442
+ msgid "Access Expiration"
443
+ msgstr ""
444
+
445
+ #: Application/Backend/View/PostOptionList.php:48
446
+ #, php-format
447
+ msgid "Expires: %s"
448
+ msgstr ""
449
+
450
+ #: Application/Backend/View/PostOptionList.php:49
451
+ #, php-format
452
+ msgid "Define when access is expired for %s."
453
+ msgstr ""
454
+
455
+ #: Application/Backend/View/PostOptionList.php:49
456
+ #, php-format
457
+ msgid ""
458
+ "After the expiration date, the access to READ will be denied unless this "
459
+ "behavior is overwritten in ConfigPress. For more information %scheck this "
460
+ "article%s or "
461
+ msgstr ""
462
+
463
+ #: Application/Backend/View/PostOptionList.php:49
464
+ #, php-format
465
+ msgid " %ssee in action.%s"
466
+ msgstr ""
467
+
468
+ #: Application/Backend/View/PostOptionList.php:55
469
  #, php-format
470
  msgid ""
471
  "Hide %s however access with a direct URL is still allowed. When there are "
473
  "performance reasons, AAM checks limited number of posts per request."
474
  msgstr ""
475
 
476
+ #: Application/Backend/View/PostOptionList.php:59
477
  #, php-format
478
  msgid ""
479
  "Hide %s for all except author (whoever created %s or was assigned on the "
482
  "performance reasons, AAM checks limited number of posts per request."
483
  msgstr ""
484
 
485
+ #: Application/Backend/View/PostOptionList.php:63
486
  #, php-format
487
  msgid ""
488
  "Restrict access to edit %s. Any attempts to edit %s will result in "
489
  "redirecting user based on the Access Denied Redirect rule."
490
  msgstr ""
491
 
492
+ #: Application/Backend/View/PostOptionList.php:66
493
  msgid "Edit By Others"
494
  msgstr ""
495
 
496
+ #: Application/Backend/View/PostOptionList.php:67
497
  #, php-format
498
  msgid ""
499
  "Restrict access to edit %s for all except author (whoever created %s or was "
501
  "redirecting user based on the Access Denied Redirect rule."
502
  msgstr ""
503
 
504
+ #: Application/Backend/View/PostOptionList.php:70
505
+ #: Application/Backend/phtml/index.phtml:162
506
+ #: Application/Backend/phtml/object/capability.phtml:98
507
  msgid "Delete"
508
  msgstr ""
509
 
510
+ #: Application/Backend/View/PostOptionList.php:71
511
  #, php-format
512
  msgid "Restrict access to trash or permanently delete %s."
513
  msgstr ""
514
 
515
+ #: Application/Backend/View/PostOptionList.php:74
516
  msgid "Delete By Others"
517
  msgstr ""
518
 
519
+ #: Application/Backend/View/PostOptionList.php:75
520
  #, php-format
521
  msgid ""
522
  "Restrict access to trash or permanently delete %s for all except author "
523
  "(whoever created %s or was assigned on the Author metabox)."
524
  msgstr ""
525
 
526
+ #: Application/Backend/View/PostOptionList.php:78
527
  msgid "Publish"
528
  msgstr ""
529
 
530
+ #: Application/Backend/View/PostOptionList.php:79
531
  #, php-format
532
  msgid ""
533
  "Restrict access to publish %s. User will be allowed only submit for review. "
534
  "Quick Edit inline action is also removed from the list page."
535
  msgstr ""
536
 
537
+ #: Application/Backend/View/PostOptionList.php:82
538
  msgid "Publish By Others"
539
  msgstr ""
540
 
541
+ #: Application/Backend/View/PostOptionList.php:83
542
  #, php-format
543
  msgid ""
544
  "Restrict access to publish %s for all except author (whoever created %s or "
583
  msgid "Edit/Delete Capabilities"
584
  msgstr ""
585
 
586
+ #: Application/Backend/View/UtilityOptionList.php:18
587
  msgid "Backend Access Control"
588
  msgstr ""
589
 
590
+ #: Application/Backend/View/UtilityOptionList.php:19
591
  msgid ""
592
  "Allow AAM to manage access to backend resources. If there is no need to "
593
  "manage access to the website backend then keep this option unchecked as it "
594
  "may increase your webiste performance."
595
  msgstr ""
596
 
597
+ #: Application/Backend/View/UtilityOptionList.php:24
598
  msgid "Frontend Access Control"
599
  msgstr ""
600
 
601
+ #: Application/Backend/View/UtilityOptionList.php:25
602
  msgid ""
603
  "Allow AAM to manage access to frontend resources. If there is no need to "
604
  "manage access to the website frontend then keep this option unchecked as it "
605
  "may increase your webiste performance."
606
  msgstr ""
607
 
608
+ #: Application/Backend/View/UtilityOptionList.php:30
609
  msgid "Media Files Access Control"
610
  msgstr ""
611
 
612
+ #: Application/Backend/View/UtilityOptionList.php:36
613
+ msgid "Check Post Visibility"
614
+ msgstr ""
615
+
616
+ #: Application/Backend/View/UtilityOptionList.php:37
617
+ msgid ""
618
+ "For performance reasons, keep this option uncheck if do not use LIST or LIST "
619
+ "TO OTHERS access options on Posts & Pages tab. When it is checked, AAM will "
620
+ "filter list of posts that are hidden for a user on both frontend and backend."
621
+ msgstr ""
622
+
623
+ #: Application/Backend/View/UtilityOptionList.php:42
624
+ msgid "Manage Hidden Post Types"
625
+ msgstr ""
626
+
627
+ #: Application/Backend/View/UtilityOptionList.php:43
628
+ msgid ""
629
+ "By default AAM allows you to manage access only to public post types on "
630
+ "Posts & Pages tab. By enabling this feature, you also will be able to manage "
631
+ "access to hidden post types like revisions, navigation menus or any other "
632
+ "custom post types that are not registered as public."
633
+ msgstr ""
634
+
635
+ #: Application/Backend/View/UtilityOptionList.php:48
636
  msgid "Render Access Manager Metabox"
637
  msgstr ""
638
 
639
+ #: Application/Backend/View/UtilityOptionList.php:49
640
  msgid ""
641
  "Render Access Manager metabox on all post and category edit pages. Access "
642
  "Manager metabox is the quick way to manage access to any post or category "
643
  "without leaving an edit page."
644
  msgstr ""
645
 
646
+ #: Application/Backend/View/UtilityOptionList.php:54
647
+ msgid "Show Access Link"
648
  msgstr ""
649
 
650
+ #: Application/Backend/View/UtilityOptionList.php:55
651
  msgid ""
652
+ "Show Access shortcut link under any post, page, custom post type, category, "
653
+ "custom taxonomy title or user name."
 
654
  msgstr ""
655
 
656
+ #: Application/Extension/Repository.php:276
657
  #, php-format
658
  msgid "Failed to create %s"
659
  msgstr ""
660
 
661
+ #: Application/Extension/Repository.php:280
662
  #, php-format
663
  msgid "Directory %s is not writable"
664
  msgstr ""
665
 
666
+ #: Application/Frontend/Manager.php:104
667
+ msgid "Access denied. Please login to get access."
668
+ msgstr ""
669
+
670
+ #: Application/Frontend/Manager.php:261
671
  #, php-format
672
  msgid "[%s] Double Authentication"
673
  msgstr ""
674
 
675
+ #: Application/Frontend/Manager.php:263
676
  #, php-format
677
  msgid "Someone was trying to login from the different IP address %s:"
678
  msgstr ""
679
 
680
+ #: Application/Frontend/Manager.php:264
681
  #, php-format
682
  msgid "Website: %s"
683
  msgstr ""
684
 
685
+ #: Application/Frontend/Manager.php:265
686
  #, php-format
687
  msgid "Username: %s"
688
  msgstr ""
689
 
690
+ #: Application/Frontend/Manager.php:266
691
  msgid "Visit the following address to authorize the login:"
692
  msgstr ""
693
 
695
  msgid "No valid strategy found for the given context"
696
  msgstr ""
697
 
698
+ #: aam.php:176
699
  msgid "PHP 5.2 or higher is required."
700
  msgstr ""
701
 
702
+ #: aam.php:178
703
  msgid "WP 3.8 or higher is required."
704
  msgstr ""
705
 
706
+ #: media/js/aam-interface.js:190
707
+ msgid "Clone Role"
708
+ msgstr ""
709
+
710
+ #: media/js/aam-interface.js:658
711
+ msgid "Switch To User"
712
+ msgstr ""
713
+
714
+ #: media/js/aam-interface.js:950
715
+ msgid "Processing"
716
+ msgstr ""
717
+
718
+ #: media/js/aam-interface.js:958
719
+ msgid "Failed to initialize URL"
720
+ msgstr ""
721
+
722
+ #: media/js/aam-interface.js:966
723
+ #: Application/Backend/phtml/object/metabox.phtml:93
724
+ msgid "Initialize"
725
+ msgstr ""
726
+
727
+ #: media/js/aam-interface.js:1078
728
+ msgid "Nothing to show"
729
+ msgstr ""
730
+
731
+ #: media/js/aam-interface.js:1233
732
+ msgid "Failed to update capability"
733
+ msgstr ""
734
+
735
+ #: media/js/aam-interface.js:1241
736
+ #: Application/Backend/phtml/object/capability.phtml:70
737
+ msgid "Update Capability"
738
+ msgstr ""
739
+
740
+ #: media/js/aam-interface.js:1274
741
+ msgid "Failed to delete capability"
742
+ msgstr ""
743
+
744
+ #: media/js/aam-interface.js:1282
745
+ #: Application/Backend/phtml/object/capability.phtml:92
746
+ msgid "Delete Capability"
747
+ msgstr ""
748
+
749
+ #: media/js/aam-interface.js:1629
750
+ msgid "Drill-Down"
751
+ msgstr ""
752
+
753
+ #: media/js/aam-interface.js:1782 media/js/aam-interface.js:1828
754
+ #: media/js/aam-interface.js:1873
755
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:16
756
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:37
757
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:64
758
+ msgid "Set"
759
+ msgstr ""
760
+
761
+ #: media/js/aam-interface.js:1965 media/js/aam-interface.js:2065
762
+ #: media/js/aam-interface.js:2159 media/js/aam-interface.js:2245
763
+ #: media/js/aam-interface.js:2467 media/js/aam-interface.js:2501
764
+ #: media/js/aam-interface.js:2522 media/js/aam-interface.js:2560
765
+ msgid "Application Error"
766
+ msgstr ""
767
+
768
  #: Application/Backend/phtml/404redirect.phtml:33
769
  #: Application/Backend/phtml/object/login-redirect.phtml:43
770
+ #: Application/Backend/phtml/object/logout-redirect.phtml:43
771
+ #: Application/Backend/phtml/object/redirect.phtml:67
772
+ #: Application/Backend/phtml/object/redirect.phtml:119
773
  msgid "Existing Page"
774
  msgstr ""
775
 
776
  #: Application/Backend/phtml/404redirect.phtml:42
777
  #: Application/Backend/phtml/object/login-redirect.phtml:52
778
+ #: Application/Backend/phtml/object/logout-redirect.phtml:52
779
+ #: Application/Backend/phtml/object/redirect.phtml:76
780
+ #: Application/Backend/phtml/object/redirect.phtml:128
781
  msgid "-- Select Page --"
782
  msgstr ""
783
 
784
  #: Application/Backend/phtml/404redirect.phtml:48
785
  #: Application/Backend/phtml/object/login-redirect.phtml:58
786
+ #: Application/Backend/phtml/object/logout-redirect.phtml:58
787
+ #: Application/Backend/phtml/object/redirect.phtml:82
788
+ #: Application/Backend/phtml/object/redirect.phtml:134
789
  msgid "The URL"
790
  msgstr ""
791
 
792
  #: Application/Backend/phtml/404redirect.phtml:53
793
  #: Application/Backend/phtml/object/login-redirect.phtml:63
794
+ #: Application/Backend/phtml/object/logout-redirect.phtml:63
795
+ #: Application/Backend/phtml/object/redirect.phtml:87
796
+ #: Application/Backend/phtml/object/redirect.phtml:139
797
  msgid "PHP Callback Function"
798
  msgstr ""
799
 
800
  #: Application/Backend/phtml/contact.phtml:6
801
  msgid ""
802
+ "Contact us if you have any questions or concerns but follow few simple rules:"
 
803
  msgstr ""
804
 
805
  #: Application/Backend/phtml/extension.phtml:11
819
  msgstr ""
820
 
821
  #: Application/Backend/phtml/extension.phtml:29
822
+ #: Application/Backend/phtml/extension.phtml:73
823
  msgid "Free"
824
  msgstr ""
825
 
826
+ #: Application/Backend/phtml/extension.phtml:53
827
+ #: Application/Backend/phtml/extension.phtml:80
828
  msgid "Installed"
829
  msgstr ""
830
 
831
+ #: Application/Backend/phtml/extension.phtml:57
832
  msgid "Inactive"
833
  msgstr ""
834
 
835
+ #: Application/Backend/phtml/extension.phtml:59
836
+ msgid "Read More"
837
  msgstr ""
838
 
839
+ #: Application/Backend/phtml/extension.phtml:84
840
+ #: Application/Backend/phtml/extension.phtml:115
841
  msgid "Download"
842
  msgstr ""
843
 
844
+ #: Application/Backend/phtml/extension.phtml:99
845
+ #: Application/Backend/phtml/extension.phtml:126
846
+ #: Application/Backend/phtml/extension.phtml:137
847
+ #: Application/Backend/phtml/index.phtml:111
 
 
 
 
 
848
  #: Application/Backend/phtml/index.phtml:123
849
+ #: Application/Backend/phtml/index.phtml:133
850
  #: Application/Backend/phtml/index.phtml:145
851
+ #: Application/Backend/phtml/index.phtml:155
852
+ #: Application/Backend/phtml/index.phtml:163
853
+ #: Application/Backend/phtml/object/capability.phtml:48
854
+ #: Application/Backend/phtml/object/capability.phtml:59
855
+ #: Application/Backend/phtml/object/capability.phtml:69
856
+ #: Application/Backend/phtml/object/capability.phtml:81
857
+ #: Application/Backend/phtml/object/capability.phtml:91
858
+ #: Application/Backend/phtml/object/capability.phtml:99
859
+ #: Application/Backend/phtml/object/menu.phtml:82
860
  #: Application/Backend/phtml/object/metabox.phtml:80
861
  #: Application/Backend/phtml/object/metabox.phtml:94
862
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:6
863
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:17
864
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:27
865
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:38
866
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:48
867
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:65
868
+ #: Application/Backend/phtml/utility.phtml:111
869
  msgid "Close"
870
  msgstr ""
871
 
872
+ #: Application/Backend/phtml/extension.phtml:100
873
  msgid "Notification"
874
  msgstr ""
875
 
876
+ #: Application/Backend/phtml/extension.phtml:104
877
  msgid ""
878
  "Extension requires manual installation. Please follow few simple steps below."
879
  msgstr ""
880
 
881
+ #: Application/Backend/phtml/extension.phtml:116
882
+ #: Application/Backend/phtml/utility.phtml:119
883
  msgid "Cancel"
884
  msgstr ""
885
 
886
+ #: Application/Backend/phtml/extension.phtml:127
887
  msgid "Install Extension"
888
  msgstr ""
889
 
890
+ #: Application/Backend/phtml/extension.phtml:131
891
  msgid ""
892
  "Insert license key that you recieved after the payment (find the email "
893
  "example below). It might take up to 2 hours to process the payment. Please "
894
  "remember that license key is limited only to one life domain."
895
  msgstr ""
896
 
897
+ #: Application/Backend/phtml/frame.phtml:62
898
+ #: Application/Backend/phtml/index.phtml:177
899
  msgid "Username"
900
  msgstr ""
901
 
902
+ #: Application/Backend/phtml/frame.phtml:74
903
  #, php-format
904
  msgid "Manage access to %s for visitors (any user that is not authenticated)"
905
  msgstr ""
906
 
907
+ #: Application/Backend/phtml/frame.phtml:75
908
+ #: Application/Backend/phtml/index.phtml:190
909
  msgid "Manage Visitors"
910
  msgstr ""
911
 
912
+ #: Application/Backend/phtml/frame.phtml:82
913
  #, php-format
914
  msgid ""
915
  "Manage default access to %s for all users, roles and visitor. This includes "
916
  "Administrator role and yourself"
917
  msgstr ""
918
 
919
+ #: Application/Backend/phtml/frame.phtml:84
920
+ #: Application/Backend/phtml/index.phtml:198
921
  msgid "Manage Default Access"
922
  msgstr ""
923
 
924
+ #: Application/Backend/phtml/frame.phtml:100
925
+ #: Application/Backend/phtml/object/menu.phtml:14
926
  #: Application/Backend/phtml/object/metabox.phtml:12
927
  #: Application/Backend/phtml/object/post.phtml:27
928
  msgid "Settings are customized"
929
  msgstr ""
930
 
931
+ #: Application/Backend/phtml/frame.phtml:101
932
+ #: Application/Backend/phtml/object/capability.phtml:26
933
+ #: Application/Backend/phtml/object/menu.phtml:15
934
  #: Application/Backend/phtml/object/metabox.phtml:13
935
  #: Application/Backend/phtml/object/post.phtml:28
936
  msgid "Reset To Default"
937
  msgstr ""
938
 
939
+ #: Application/Backend/phtml/frame.phtml:116
940
  #: Application/Backend/phtml/object/post.phtml:65
941
  msgid "Frontend"
942
  msgstr ""
943
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
944
  #: Application/Backend/phtml/index.phtml:14
945
  msgid "Access Control Panel"
946
  msgstr ""
947
 
948
  #: Application/Backend/phtml/index.phtml:21
949
  msgid ""
950
+ "Appreciate your interest in Advanced Access Manager (AAM). With strong "
951
  "knowledge and experience in WordPress, AAM becomes a very powerful tool to "
952
  "manage access to your frontend and backend."
953
  msgstr ""
954
 
955
  #: Application/Backend/phtml/index.phtml:22
956
+ msgid "Please Note!"
957
  msgstr ""
958
 
959
  #: Application/Backend/phtml/index.phtml:23
965
 
966
  #: Application/Backend/phtml/index.phtml:24
967
  #, php-format
968
+ msgid ""
969
+ "Check our %sHelp%s section to find some useful articles about AAM "
970
+ "functionality or %scontact us%s directly."
971
  msgstr ""
972
 
973
+ #: Application/Backend/phtml/index.phtml:38
974
  msgid "Notifications"
975
  msgstr ""
976
 
977
+ #: Application/Backend/phtml/index.phtml:57
978
  msgid "AAM Multisite"
979
  msgstr ""
980
 
981
+ #: Application/Backend/phtml/index.phtml:61
982
  msgid "Install AAM Multisite"
983
  msgstr ""
984
 
985
+ #: Application/Backend/phtml/index.phtml:72
986
  msgid "Users/Roles Panel"
987
  msgstr ""
988
 
989
+ #: Application/Backend/phtml/index.phtml:79
990
+ #: Application/Backend/phtml/index.phtml:210
991
  msgid "Roles"
992
  msgstr ""
993
 
994
+ #: Application/Backend/phtml/index.phtml:85
995
+ #: Application/Backend/phtml/index.phtml:220
996
  msgid "Visitor"
997
  msgstr ""
998
 
999
+ #: Application/Backend/phtml/index.phtml:88
1000
+ #: Application/Backend/phtml/index.phtml:225
1001
  msgid "Default"
1002
  msgstr ""
1003
 
1004
+ #: Application/Backend/phtml/index.phtml:100
1005
+ #: Application/Backend/phtml/index.phtml:178
1006
  msgid "Action"
1007
  msgstr ""
1008
 
1009
+ #: Application/Backend/phtml/index.phtml:112
1010
  msgid "Create Role"
1011
  msgstr ""
1012
 
1013
+ #: Application/Backend/phtml/index.phtml:116
1014
+ #: Application/Backend/phtml/index.phtml:138
1015
  msgid "Role Name"
1016
  msgstr ""
1017
 
1018
+ #: Application/Backend/phtml/index.phtml:117
1019
+ #: Application/Backend/phtml/index.phtml:139
1020
  msgid "Enter Role Name"
1021
  msgstr ""
1022
 
1023
+ #: Application/Backend/phtml/index.phtml:134
1024
  msgid "Update Role"
1025
  msgstr ""
1026
 
1027
+ #: Application/Backend/phtml/index.phtml:159
1028
  #, php-format
1029
  msgid "Are you sure that you want to delete the %s role?"
1030
  msgstr ""
1031
 
1032
+ #: Application/Backend/phtml/index.phtml:189
1033
  msgid ""
1034
  "Manage access to your website for visitors (any user that is not "
1035
  "authenticated)"
1036
  msgstr ""
1037
 
1038
+ #: Application/Backend/phtml/index.phtml:197
1039
  msgid ""
1040
  "Manage default access to your website resources for all users, roles and "
1041
  "visitor. This includes Administrator role and your user"
1042
  msgstr ""
1043
 
1044
+ #: Application/Backend/phtml/index.phtml:211
1045
  msgid ""
1046
  "With Roles tab you can manage access for any defined role, edit role's name, "
1047
  "create new role or even delete existing (but only when there is no users "
1048
  "assigned to it). You are not allowed to delete Administrator role."
1049
  msgstr ""
1050
 
1051
+ #: Application/Backend/phtml/index.phtml:216
1052
  msgid ""
1053
  "Manage access for any user. As a bonus feature, you can block user. It means "
1054
  "that user will be not able to login to your website anymore."
1055
  msgstr ""
1056
 
1057
+ #: Application/Backend/phtml/index.phtml:221
1058
  msgid ""
1059
  "Visitor can be considered any user that is not authenticated to your website."
1060
  msgstr ""
1061
 
1062
+ #: Application/Backend/phtml/index.phtml:226
1063
  msgid ""
1064
  "Manage default access settings to your website resources for all users, "
1065
  "roles and visitors."
1066
  msgstr ""
1067
 
1068
+ #: Application/Backend/phtml/main-panel.phtml:26
1069
+ msgid "You are not allowed to manage any of the existing features."
1070
+ msgstr ""
1071
+
1072
+ #: Application/Backend/phtml/object/capability.phtml:8
1073
  msgid "Filter"
1074
  msgstr ""
1075
 
1076
+ #: Application/Backend/phtml/object/capability.phtml:15
1077
  msgid "All Capabilities"
1078
  msgstr ""
1079
 
1080
+ #: Application/Backend/phtml/object/capability.phtml:25
1081
+ msgid "Capabilities are customized"
1082
  msgstr ""
1083
 
1084
  #: Application/Backend/phtml/object/capability.phtml:36
1085
+ msgid "Category"
 
 
1086
  msgstr ""
1087
 
1088
  #: Application/Backend/phtml/object/capability.phtml:37
1089
+ #: Application/Backend/phtml/object/capability.phtml:53
1090
+ #: Application/Backend/phtml/object/capability.phtml:74
1091
+ msgid "Capability"
1092
+ msgstr ""
1093
+
1094
+ #: Application/Backend/phtml/object/capability.phtml:38
1095
  #: Application/Backend/phtml/object/post.phtml:44
1096
  msgid "Actions"
1097
  msgstr ""
1098
 
1099
+ #: Application/Backend/phtml/object/capability.phtml:49
1100
  msgid "Create Capability"
1101
  msgstr ""
1102
 
1103
+ #: Application/Backend/phtml/object/capability.phtml:54
1104
+ #: Application/Backend/phtml/object/capability.phtml:75
1105
  msgid "Enter Capability"
1106
  msgstr ""
1107
 
1108
+ #: Application/Backend/phtml/object/capability.phtml:95
1109
  #, php-format
1110
  msgid "Are you sure that you want to delete %s capability for all roles?"
1111
  msgstr ""
1112
 
1113
  #: Application/Backend/phtml/object/login-redirect.phtml:27
1114
+ #: Application/Backend/phtml/object/logout-redirect.phtml:27
1115
  msgid "WordPress default behavior"
1116
  msgstr ""
1117
 
1118
+ #: Application/Backend/phtml/object/menu.phtml:83
1119
  msgid "Dashboard Lockdown"
1120
  msgstr ""
1121
 
1122
+ #: Application/Backend/phtml/object/menu.phtml:86
1123
  msgid "You cannot restrict access to Dashboard home page."
1124
  msgstr ""
1125
 
1126
+ #: Application/Backend/phtml/object/menu.phtml:88
1127
  #, php-format
1128
  msgid ""
1129
  "Dashboard home page is the default page every user is redirected after "
1131
  "%splease check this article%s."
1132
  msgstr ""
1133
 
1134
+ #: Application/Backend/phtml/object/menu.phtml:91
1135
  msgid "OK"
1136
  msgstr ""
1137
 
1198
  msgid "Backend Redirect"
1199
  msgstr ""
1200
 
1201
+ #: Application/Backend/phtml/object/redirect.phtml:62
1202
+ #: Application/Backend/phtml/object/redirect.phtml:114
1203
  msgid "Customized Message"
1204
  msgstr ""
1205
 
1206
+ #: Application/Backend/phtml/object/redirect.phtml:63
1207
+ #: Application/Backend/phtml/object/redirect.phtml:115
1208
  msgid "Enter message..."
1209
  msgstr ""
1210
 
1220
  msgid "Add excerpt before teaser message"
1221
  msgstr ""
1222
 
1223
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:7
1224
+ msgid "Set Password"
1225
+ msgstr ""
1226
+
1227
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:11
1228
+ msgid "Password"
1229
+ msgstr ""
1230
+
1231
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:12
1232
+ msgid "Enter Password"
1233
+ msgstr ""
1234
+
1235
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:28
1236
+ msgid "Set Redirect"
1237
+ msgstr ""
1238
+
1239
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:32
1240
+ msgid "Valid URL, Page ID or PHP callback function"
1241
+ msgstr ""
1242
+
1243
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:33
1244
+ msgid "Enter Redirect"
1245
+ msgstr ""
1246
+
1247
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:49
1248
+ msgid "Set Expiration"
1249
+ msgstr ""
1250
+
1251
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:59
1252
+ msgid "Enter expiration critiria"
1253
+ msgstr ""
1254
+
1255
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:60
1256
+ msgid "Enter critiria"
1257
+ msgstr ""
1258
+
1259
  #: Application/Backend/phtml/partial/role-inheritance.phtml:3
1260
  msgid "Inherit Capabilities From"
1261
  msgstr ""
1266
  "CodePinch."
1267
  msgstr ""
1268
 
1269
+ #: Application/Backend/phtml/utility.phtml:4
1270
+ msgid "AAM Core"
1271
+ msgstr ""
1272
+
1273
+ #: Application/Backend/phtml/utility.phtml:5
1274
+ msgid "Posts Access"
1275
+ msgstr ""
1276
+
1277
+ #: Application/Backend/phtml/utility.phtml:6
1278
+ msgid "Tools"
1279
+ msgstr ""
1280
+
1281
+ #: Application/Backend/phtml/utility.phtml:54
1282
  msgid "Clear Cache"
1283
  msgstr ""
1284
 
1285
+ #: Application/Backend/phtml/utility.phtml:56
1286
  msgid "Clear all AAM cache."
1287
  msgstr ""
1288
 
1289
+ #: Application/Backend/phtml/utility.phtml:65
1290
  msgid "Clear All Settings"
1291
  msgstr ""
1292
 
1293
+ #: Application/Backend/phtml/utility.phtml:67
1294
  msgid ""
1295
  "Remove all the settings related to AAM (including all extension licenses)."
1296
  msgstr ""
1297
 
1298
+ #: Application/Backend/phtml/utility.phtml:97
1299
+ msgid "No miscellaneous options found."
1300
+ msgstr ""
1301
+
1302
+ #: Application/Backend/phtml/utility.phtml:112
1303
  msgid "Clear all settings"
1304
  msgstr ""
1305
 
1306
+ #: Application/Backend/phtml/utility.phtml:115
1307
  msgid "All AAM settings will be removed."
1308
  msgstr ""
1309
 
1310
+ #: Application/Backend/phtml/utility.phtml:118
1311
  msgid "Clear"
1312
  msgstr ""
aam.php CHANGED
@@ -3,7 +3,7 @@
3
  /**
4
  Plugin Name: Advanced Access Manager
5
  Description: All you need to manage access to your WordPress website
6
- Version: 4.7.2
7
  Author: Vasyl Martyniuk <vasyl@vasyltech.com>
8
  Author URI: https://vasyltech.com
9
 
3
  /**
4
  Plugin Name: Advanced Access Manager
5
  Description: All you need to manage access to your WordPress website
6
+ Version: 4.7.5
7
  Author: Vasyl Martyniuk <vasyl@vasyltech.com>
8
  Author URI: https://vasyltech.com
9
 
media/js/aam-interface.js CHANGED
@@ -2032,10 +2032,15 @@
2032
  });
2033
  });
2034
 
2035
- $('input[type="text"],select,textarea', container).each(function () {
2036
  $(this).bind('change', function () {
 
 
 
 
 
2037
  //save redirect type
2038
- save($(this).attr('name'), $(this).val());
2039
  });
2040
  });
2041
 
2032
  });
2033
  });
2034
 
2035
+ $('input,select,textarea', container).each(function () {
2036
  $(this).bind('change', function () {
2037
+ if ($(this).is('input[type="checkbox"]')) {
2038
+ var val = $(this).prop('checked') ? $(this).val() : 0;
2039
+ } else {
2040
+ val = $.trim($(this).val());
2041
+ }
2042
  //save redirect type
2043
+ save($(this).attr('name'), val);
2044
  });
2045
  });
2046
 
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: vasyltech
3
  Tags: access, role, user, capability, page access, post access, security, login redirect, brute force attack, double authentication, membership, backend lockdown, wp-admin, 404, activity tracking
4
  Requires at least: 3.8
5
- Tested up to: 4.7.4
6
- Stable tag: 4.7.2
7
 
8
  Manage access to your website for any user, role or visitors for both frontend and backend.
9
 
@@ -110,6 +110,11 @@ Check our [help page](https://aamplugin.com/help) to find out more about AAM.
110
 
111
  == Changelog ==
112
 
 
 
 
 
 
113
  = 4.7.2 =
114
  * Fixed the bug with Posts & Pages pagination feature
115
  * Fixed the bug with Media access control
2
  Contributors: vasyltech
3
  Tags: access, role, user, capability, page access, post access, security, login redirect, brute force attack, double authentication, membership, backend lockdown, wp-admin, 404, activity tracking
4
  Requires at least: 3.8
5
+ Tested up to: 4.7.5
6
+ Stable tag: 4.7.5
7
 
8
  Manage access to your website for any user, role or visitors for both frontend and backend.
9
 
110
 
111
  == Changelog ==
112
 
113
+ = 4.7.5 =
114
+ * Improved Utilities tab
115
+ * Fixed bug with post search and archive pages
116
+ * Updated localization source
117
+
118
  = 4.7.2 =
119
  * Fixed the bug with Posts & Pages pagination feature
120
  * Fixed the bug with Media access control