Advanced Access Manager - Version 3.2

Version Description

  • Fixed minor bug reporetd by WP Error Fix
  • Extended core functionality to support filter by author for Plus Package
  • Added Contact Us tab
Download this release

Release Info

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

Code changes from version 3.1.5 to 3.2

Application/Backend/Contact.php ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * ======================================================================
5
+ * LICENSE: This file is subject to the terms and conditions defined in *
6
+ * file 'license.txt', which is part of this source code package. *
7
+ * ======================================================================
8
+ */
9
+
10
+ /**
11
+ * Backend contact/hire manager
12
+ *
13
+ * @package AAM
14
+ * @author Vasyl Martyniuk <vasyl@vasyltech.com>
15
+ */
16
+ class AAM_Backend_Contact {
17
+
18
+ /**
19
+ * Get HTML content
20
+ *
21
+ * @return string
22
+ *
23
+ * @access public
24
+ */
25
+ public function getContent() {
26
+ ob_start();
27
+ require_once(dirname(__FILE__) . '/view/contact.phtml');
28
+ $content = ob_get_contents();
29
+ ob_end_clean();
30
+
31
+ return $content;
32
+ }
33
+
34
+ /**
35
+ * Update the extension
36
+ *
37
+ * @return string
38
+ *
39
+ * @access public
40
+ */
41
+ public function update() {
42
+ $extension = AAM_Core_Request::post('extension');
43
+
44
+ $list = AAM_Core_API::getOption('aam-extension-license', array());
45
+ if (isset($list[$extension])) {
46
+ $response = $this->install($list[$extension]);
47
+ } else {
48
+ $response = json_encode(array(
49
+ 'status' => 'failure',
50
+ 'error' => __('License key is missing.', AAM_KEY)
51
+ ));
52
+ }
53
+
54
+ return $response;
55
+ }
56
+
57
+ /**
58
+ * Register Contact/Hire feature
59
+ *
60
+ * @return void
61
+ *
62
+ * @access public
63
+ */
64
+ public static function register() {
65
+ AAM_Backend_Feature::registerFeature((object) array(
66
+ 'uid' => 'contact',
67
+ 'position' => 1000,
68
+ 'title' => __('Contact Us', AAM_KEY),
69
+ 'subjects' => array(
70
+ 'AAM_Core_Subject_Role',
71
+ 'AAM_Core_Subject_User',
72
+ 'AAM_Core_Subject_Visitor'
73
+ ),
74
+ 'view' => __CLASS__
75
+ ));
76
+ }
77
+
78
+ }
Application/Backend/Filter.php CHANGED
@@ -55,8 +55,8 @@ class AAM_Backend_Filter {
55
  //some additional filter for user capabilities
56
  add_filter('user_has_cap', array($this, 'checkUserCap'), 999, 4);
57
 
58
- //user profile update filter
59
- add_action('profile_update', array($this, 'profileUpdate'), 10, 2);
60
  }
61
 
62
  /**
@@ -241,7 +241,10 @@ class AAM_Backend_Filter {
241
  } else {
242
  foreach ($posts as $post) {
243
  $object = AAM::getUser()->getObject('post', $post->ID);
244
- if (!$object->has('backend.list')) {
 
 
 
245
  $filtered[] = $post;
246
  }
247
  }
@@ -295,13 +298,12 @@ class AAM_Backend_Filter {
295
  * Clear user cache if profile updated
296
  *
297
  * @param int $user_id
298
- * @param array $old_user_data
299
  *
300
  * @return void
301
  *
302
  * @access public
303
  */
304
- public function profileUpdate($user_id, $old_user_data) {
305
  do_action('aam-clear-cache-action', new AAM_Core_Subject_User($user_id));
306
  }
307
 
@@ -326,6 +328,19 @@ class AAM_Backend_Filter {
326
 
327
  return $allCaps;
328
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
329
 
330
  /**
331
  * Register backend filters and actions
55
  //some additional filter for user capabilities
56
  add_filter('user_has_cap', array($this, 'checkUserCap'), 999, 4);
57
 
58
+ //user profile update action
59
+ add_action('profile_update', array($this, 'profileUpdate'));
60
  }
61
 
62
  /**
241
  } else {
242
  foreach ($posts as $post) {
243
  $object = AAM::getUser()->getObject('post', $post->ID);
244
+ $list = $object->has('backend.list');
245
+ $others = $object->has('backend.list_others');
246
+
247
+ if (!$list && (!$others || $this->isAuthor($post))) {
248
  $filtered[] = $post;
249
  }
250
  }
298
  * Clear user cache if profile updated
299
  *
300
  * @param int $user_id
 
301
  *
302
  * @return void
303
  *
304
  * @access public
305
  */
306
+ public function profileUpdate($user_id) {
307
  do_action('aam-clear-cache-action', new AAM_Core_Subject_User($user_id));
308
  }
309
 
328
 
329
  return $allCaps;
330
  }
331
+
332
+ /**
333
+ * Check if user is post author
334
+ *
335
+ * @param WP_Post $post
336
+ *
337
+ * @return boolean
338
+ *
339
+ * @access protected
340
+ */
341
+ protected function isAuthor($post) {
342
+ return ($post->post_author == get_current_user_id());
343
+ }
344
 
345
  /**
346
  * Register backend filters and actions
Application/Backend/View.php CHANGED
@@ -56,6 +56,7 @@ class AAM_Backend_View {
56
  AAM_Backend_Capability::register();
57
  AAM_Backend_Post::register();
58
  AAM_Backend_Extension::register();
 
59
  //feature registration hook
60
  do_action('aam-feature-registration');
61
  }
56
  AAM_Backend_Capability::register();
57
  AAM_Backend_Post::register();
58
  AAM_Backend_Extension::register();
59
+ AAM_Backend_Contact::register();
60
  //feature registration hook
61
  do_action('aam-feature-registration');
62
  }
Application/Backend/view/contact.phtml ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php if (defined('AAM_KEY')) { ?>
2
+ <div class="aam-feature" id="contact-content">
3
+ <div class="row">
4
+ <div class="col-xs-12">
5
+ <p class="aam-info">
6
+ <?php echo __('Feel free to contact or hire us if you have any questions or you are looking for custom functionality but please follow few simple rules:'); ?>
7
+ </p>
8
+ <ol>
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>Yes, you can hire us to do some specific 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: vasyl@vasyltech.com
17
+ </h3>
18
+ </div>
19
+ </div>
20
+ </div>
21
+ <?php
22
+ }
Application/Frontend/Manager.php CHANGED
@@ -63,7 +63,10 @@ class AAM_Frontend_Manager {
63
  $user = AAM::getUser();
64
  if ((is_single() || is_page()) && is_object($post)) {
65
  $object = $user->getObject('post', $post->ID);
66
- if ($object->has('frontend.read')) {
 
 
 
67
  AAM_Core_API::reject();
68
  }
69
  //trigger any action that is listeting
@@ -84,7 +87,10 @@ class AAM_Frontend_Manager {
84
  if (is_array($pages)) {
85
  foreach ($pages as $i => $page) {
86
  $object = AAM::getUser()->getObject('post', $page->ID);
87
- if ($object->has('frontend.list')) {
 
 
 
88
  unset($pages[$i]);
89
  }
90
  }
@@ -106,16 +112,14 @@ class AAM_Frontend_Manager {
106
  if (is_array($pages)) {
107
  $user = AAM::getUser();
108
  foreach ($pages as $i => $page) {
109
- $filter = false;
110
-
111
  if ($page->type == 'post_type') {
112
- $filter = $user->getObject('post', $page->object_id)->has(
113
- 'frontend.list'
114
- );
115
- }
116
-
117
- if ($filter) {
118
- unset($pages[$i]);
119
  }
120
  }
121
  }
@@ -193,15 +197,35 @@ class AAM_Frontend_Manager {
193
  public function thePosts($posts) {
194
  $filtered = array();
195
 
196
- foreach ($posts as $post) {
197
- $object = AAM::getUser()->getObject('post', $post->ID);
198
- if (!$object->has('frontend.list')) {
199
- $filtered[] = $post;
 
 
 
 
 
200
  }
 
 
201
  }
202
 
203
  return $filtered;
204
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
205
 
206
  /**
207
  * Bootstrap the manager
63
  $user = AAM::getUser();
64
  if ((is_single() || is_page()) && is_object($post)) {
65
  $object = $user->getObject('post', $post->ID);
66
+ $read = $object->has('frontend.read');
67
+ $others = $object->has('frontend.read_others');
68
+
69
+ if ($read || ($others && !$this->isAuthor($post))) {
70
  AAM_Core_API::reject();
71
  }
72
  //trigger any action that is listeting
87
  if (is_array($pages)) {
88
  foreach ($pages as $i => $page) {
89
  $object = AAM::getUser()->getObject('post', $page->ID);
90
+ $list = $object->has('frontend.list');
91
+ $others = $object->has('frontend.list_others');
92
+
93
+ if ($list || ($others && !$this->isAuthor($page))) {
94
  unset($pages[$i]);
95
  }
96
  }
112
  if (is_array($pages)) {
113
  $user = AAM::getUser();
114
  foreach ($pages as $i => $page) {
 
 
115
  if ($page->type == 'post_type') {
116
+ $object = $user->getObject('post', $page->object_id);
117
+ $list = $object->has('frontend.list');
118
+ $others = $object->has('frontend.list_others');
119
+
120
+ if ($list || ($others && !$this->isAuthor($page))) {
121
+ unset($pages[$i]);
122
+ }
123
  }
124
  }
125
  }
197
  public function thePosts($posts) {
198
  $filtered = array();
199
 
200
+ if (is_array($posts)) {
201
+ foreach ($posts as $post) {
202
+ $object = AAM::getUser()->getObject('post', $post->ID);
203
+ $list = $object->has('frontend.list');
204
+ $others = $object->has('frontend.list_others');
205
+
206
+ if (!$list && (!$others || $this->isAuthor($post))) {
207
+ $filtered[] = $post;
208
+ }
209
  }
210
+ } else {
211
+ $filtered = $posts;
212
  }
213
 
214
  return $filtered;
215
  }
216
+
217
+ /**
218
+ * Check if user is post author
219
+ *
220
+ * @param WP_Post $post
221
+ *
222
+ * @return boolean
223
+ *
224
+ * @access protected
225
+ */
226
+ protected function isAuthor($post) {
227
+ return ($post->post_author == get_current_user_id());
228
+ }
229
 
230
  /**
231
  * Bootstrap the manager
Lang/advanced-access-manager-en_US.mo CHANGED
Binary file
Lang/advanced-access-manager-en_US.po CHANGED
@@ -1,9 +1,11 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AAM\n"
4
- "POT-Creation-Date: 2016-03-06 19:12-0500\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"
@@ -12,56 +14,54 @@ msgstr ""
12
  "X-Poedit-SourceCharset: UTF-8\n"
13
  "X-Poedit-KeywordsList: __\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "Last-Translator: \n"
16
- "Language: en_US\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: media/js/aam-ui.js:43 media/js/aam-ui.js:1317
20
  #: Application/Backend/Localization.php:23
21
  msgid "Loading..."
22
  msgstr ""
23
 
24
  #: media/js/aam-ui.js:48 Application/Backend/Localization.php:24
25
- #: Application/Backend/view/index.phtml:149
26
  msgid "Select Role"
27
  msgstr ""
28
 
29
- #: media/js/aam-ui.js:81 Application/Backend/Localization.php:25
30
  msgid "Search Role"
31
  msgstr ""
32
 
33
- #: media/js/aam-ui.js:82 Application/Backend/Localization.php:26
34
  msgid "_TOTAL_ role(s)"
35
  msgstr ""
36
 
37
- #: media/js/aam-ui.js:89 media/js/aam-ui.js:442
38
  #: Application/Backend/Localization.php:27
39
  #: Application/Backend/view/object/capability.phtml:23
40
  msgid "Create"
41
  msgstr ""
42
 
43
- #: media/js/aam-ui.js:114 Application/Backend/Localization.php:28
44
- #: Application/Backend/view/index.phtml:115
45
  msgid "Users"
46
  msgstr ""
47
 
48
- #: media/js/aam-ui.js:142 Application/Backend/Localization.php:45
49
  msgid "Manage Role"
50
  msgstr ""
51
 
52
- #: media/js/aam-ui.js:157 Application/Backend/Localization.php:46
53
  msgid "Edit Role Name"
54
  msgstr ""
55
 
56
  #: media/js/aam-ui.js:177 media/js/aam-ui.js:317
57
  #: Application/Backend/Localization.php:35
58
  #: Application/Backend/Localization.php:47
59
- #: Application/Backend/view/index.phtml:187
60
- #: Application/Backend/view/index.phtml:193
61
  msgid "Delete Role"
62
  msgstr ""
63
 
64
- #: media/js/aam-ui.js:220 media/js/aam-ui.js:264 media/js/aam-ui.js:965
65
  #: Application/Backend/Localization.php:13
66
  msgid "Saving..."
67
  msgstr ""
@@ -71,15 +71,15 @@ msgid "Failed to add new role"
71
  msgstr ""
72
 
73
  #: media/js/aam-ui.js:233 media/js/aam-ui.js:276 media/js/aam-ui.js:313
74
- #: media/js/aam-ui.js:407 media/js/aam-ui.js:734 media/js/aam-ui.js:771
75
- #: media/js/aam-ui.js:978 media/js/aam-ui.js:1146 media/js/aam-ui.js:1187
76
- #: media/js/aam-ui.js:1463 media/js/aam.js:231
77
  #: Application/Backend/Localization.php:15
78
  msgid "Application error"
79
  msgstr ""
80
 
81
  #: media/js/aam-ui.js:236 Application/Backend/Localization.php:30
82
- #: Application/Backend/view/index.phtml:154
83
  msgid "Add Role"
84
  msgstr ""
85
 
@@ -123,7 +123,7 @@ msgid "_TOTAL_ user(s)"
123
  msgstr ""
124
 
125
  #: media/js/aam-ui.js:459 Application/Backend/Localization.php:39
126
- #: Application/Backend/view/index.phtml:127
127
  msgid "Role"
128
  msgstr ""
129
 
@@ -135,111 +135,118 @@ msgstr ""
135
  msgid "Edit User"
136
  msgstr ""
137
 
138
- #: media/js/aam-ui.js:592 Application/Backend/Localization.php:40
 
 
 
 
139
  msgid "Anonymous"
140
  msgstr ""
141
 
142
- #: media/js/aam-ui.js:641 Application/Backend/Localization.php:17
143
  #: Application/Backend/view/object/menu.phtml:54
144
  msgid "Show Menu"
145
  msgstr ""
146
 
147
- #: media/js/aam-ui.js:656 Application/Backend/Localization.php:18
148
  #: Application/Backend/view/object/menu.phtml:58
149
  msgid "Hide Menu"
150
  msgstr ""
151
 
152
- #: media/js/aam-ui.js:766 Application/Backend/Localization.php:19
153
  msgid "Failed to retrieve mataboxes"
154
  msgstr ""
155
 
156
- #: media/js/aam-ui.js:850 Application/Backend/Localization.php:53
157
  msgid "Failed to grand capability - WordPress policy"
158
  msgstr ""
159
 
160
- #: media/js/aam-ui.js:885 Application/Backend/Localization.php:11
161
  msgid "Search Capability"
162
  msgstr ""
163
 
164
- #: media/js/aam-ui.js:886 Application/Backend/Localization.php:12
165
  msgid "_TOTAL_ capability(s)"
166
  msgstr ""
167
 
168
- #: media/js/aam-ui.js:973 Application/Backend/Localization.php:14
169
  msgid "Failed to add new capability"
170
  msgstr ""
171
 
172
- #: media/js/aam-ui.js:981 Application/Backend/Localization.php:16
173
  #: Application/Backend/view/object/capability.phtml:52
174
  msgid "Add Capability"
175
  msgstr ""
176
 
177
- #: media/js/aam-ui.js:1131
178
  msgid "parent role"
179
  msgstr ""
180
 
181
- #: media/js/aam-ui.js:1133
182
  msgid "default settings"
183
  msgstr ""
184
 
185
- #: media/js/aam-ui.js:1135
186
  msgid "parent category"
187
  msgstr ""
188
 
189
- #: media/js/aam-ui.js:1227 Application/Backend/Localization.php:20
190
  msgid "Search"
191
  msgstr ""
192
 
193
- #: media/js/aam-ui.js:1228 Application/Backend/Localization.php:21
194
  msgid "_TOTAL_ object(s)"
195
  msgstr ""
196
 
197
- #: media/js/aam-ui.js:1306 Application/Backend/Localization.php:22
198
  msgid "Failed"
199
  msgstr ""
200
 
201
- #: media/js/aam-ui.js:1336 Application/Backend/Localization.php:43
202
- #: Application/Backend/Manager.php:177
 
 
 
203
  msgid "Manage Access"
204
  msgstr ""
205
 
206
- #: media/js/aam-ui.js:1347 Application/Backend/Localization.php:44
207
- #: Application/Backend/view/object/post.phtml:125
208
  msgid "Edit"
209
  msgstr ""
210
 
211
- #: media/js/aam.js:139 Application/Backend/Localization.php:52
212
  msgid ""
213
  "Javascript error detected during the page load. AAM may not function "
214
  "properly."
215
  msgstr ""
216
 
217
- #: media/js/aam.js:170
218
  msgid "Current "
219
  msgstr ""
220
 
221
- #: Application/Backend/Capability.php:141
222
- #: Application/Backend/Capability.php:180
223
  msgid "System"
224
  msgstr ""
225
 
226
- #: Application/Backend/Capability.php:142
227
- #: Application/Backend/Capability.php:182 Application/Backend/Post.php:348
228
  msgid "Posts & Pages"
229
  msgstr ""
230
 
231
- #: Application/Backend/Capability.php:143
232
- #: Application/Backend/Capability.php:184
233
- #: Application/Backend/view/object/post.phtml:104
234
  msgid "Backend"
235
  msgstr ""
236
 
237
- #: Application/Backend/Capability.php:144
238
- #: Application/Backend/Capability.php:186
239
  msgid "Miscellaneous"
240
  msgstr ""
241
 
242
- #: Application/Backend/Capability.php:205
243
  #: Application/Backend/view/index.phtml:77
244
  msgid "Capabilities"
245
  msgstr ""
@@ -253,7 +260,7 @@ msgstr ""
253
  msgid "Extensions"
254
  msgstr ""
255
 
256
- #: Application/Backend/Filter.php:193 Application/Core/API.php:180
257
  msgid "Access Denied"
258
  msgstr ""
259
 
@@ -265,20 +272,21 @@ msgstr ""
265
  msgid "Current role"
266
  msgstr ""
267
 
268
- #: Application/Backend/Manager.php:92
269
  #, php-format
270
  msgid "Extension %s has new update available for download."
271
  msgstr ""
272
 
273
- #: Application/Backend/Manager.php:136
274
  msgid "AAM caching is off. To speed-up the website turn it on."
275
  msgstr ""
276
 
277
- #: Application/Backend/Manager.php:139
278
  msgid "Read more."
279
  msgstr ""
280
 
281
- #: Application/Backend/Manager.php:293 Application/Backend/Manager.php:294
 
282
  msgid "AAM"
283
  msgstr ""
284
 
@@ -300,12 +308,6 @@ msgstr ""
300
 
301
  #: Application/Backend/ProductList.php:17
302
  msgid ""
303
- "Development license gives you an ability to download all the available "
304
- "extensions and use them to up to 5 life domains."
305
- msgstr ""
306
-
307
- #: Application/Backend/ProductList.php:27
308
- msgid ""
309
  "Unlock limitations related to Posts and Pages feature. Extend basic AAM "
310
  "functionality with Page Categories and ability to manage access to your "
311
  "comments (AAM Plus Package adds new capabilities to the default list of "
@@ -313,13 +315,19 @@ msgid ""
313
  "etc.)"
314
  msgstr ""
315
 
316
- #: Application/Backend/ProductList.php:37
317
  msgid ""
318
  "Extension for more advanced user and role administration. Based on user's "
319
  "highest level capability, filter list of roles with higher level. Also "
320
  "prevent from editing, promoting or deleting higher level users."
321
  msgstr ""
322
 
 
 
 
 
 
 
323
  #: Application/Backend/ProductList.php:46
324
  msgid "Various useful tools for AAM like caching or clear all settings."
325
  msgstr ""
@@ -331,21 +339,31 @@ msgid ""
331
  "switch between different sites."
332
  msgstr ""
333
 
334
- #: Application/Core/Repository.php:234
 
 
 
 
 
 
 
 
 
 
335
  #, php-format
336
  msgid "Failed to create %s"
337
  msgstr ""
338
 
339
- #: Application/Core/Repository.php:238
340
  #, php-format
341
  msgid "Directory %s is not writable"
342
  msgstr ""
343
 
344
- #: aam.php:152
345
  msgid "PHP 5.2 or higher is required."
346
  msgstr ""
347
 
348
- #: aam.php:154
349
  msgid "WP 3.8 or higher is required."
350
  msgstr ""
351
 
@@ -358,6 +376,7 @@ msgid "License Key"
358
  msgstr ""
359
 
360
  #: Application/Backend/view/extension.phtml:19
 
361
  msgid "Install"
362
  msgstr ""
363
 
@@ -366,8 +385,8 @@ msgid "Extension"
366
  msgstr ""
367
 
368
  #: Application/Backend/view/extension.phtml:27
369
- #: Application/Backend/view/index.phtml:128
370
- #: Application/Backend/view/index.phtml:225
371
  msgid "Action"
372
  msgstr ""
373
 
@@ -376,6 +395,7 @@ msgid "Free"
376
  msgstr ""
377
 
378
  #: Application/Backend/view/extension.phtml:41
 
379
  msgid "Installed"
380
  msgstr ""
381
 
@@ -383,54 +403,54 @@ msgstr ""
383
  msgid "Purchase"
384
  msgstr ""
385
 
386
- #: Application/Backend/view/extension.phtml:47
387
- #: Application/Backend/view/extension.phtml:83
388
  msgid "Download"
389
  msgstr ""
390
 
391
- #: Application/Backend/view/extension.phtml:56
392
  msgid "All extensions are installed and up to date."
393
  msgstr ""
394
 
395
- #: Application/Backend/view/extension.phtml:67
396
- #: Application/Backend/view/extension.phtml:94
397
- #: Application/Backend/view/extension.phtml:103
398
  #: Application/Backend/view/index.phtml:24
399
- #: Application/Backend/view/index.phtml:138
400
- #: Application/Backend/view/index.phtml:155
401
- #: Application/Backend/view/index.phtml:165
402
- #: Application/Backend/view/index.phtml:176
403
- #: Application/Backend/view/index.phtml:186
404
- #: Application/Backend/view/index.phtml:194
405
- #: Application/Backend/view/index.phtml:204
406
- #: Application/Backend/view/index.phtml:235
407
  #: Application/Backend/view/object/capability.phtml:42
408
  #: Application/Backend/view/object/capability.phtml:53
409
- #: Application/Backend/view/object/post.phtml:160
410
- #: Application/Backend/view/object/post.phtml:189
411
  msgid "Close"
412
  msgstr ""
413
 
414
- #: Application/Backend/view/extension.phtml:68
415
- #: Application/Backend/view/index.phtml:205
416
- #: Application/Backend/view/index.phtml:236
417
  msgid "Notification"
418
  msgstr ""
419
 
420
- #: Application/Backend/view/extension.phtml:72
421
  msgid ""
422
  "Extension requires manual installation. Please follow few simple steps below."
423
  msgstr ""
424
 
425
- #: Application/Backend/view/extension.phtml:84
426
  msgid "Cancel"
427
  msgstr ""
428
 
429
- #: Application/Backend/view/extension.phtml:95
430
  msgid "Install Extension Info"
431
  msgstr ""
432
 
433
- #: Application/Backend/view/extension.phtml:99
434
  msgid ""
435
  "In order to install the extension, please use license number that you "
436
  "recieved after the payment was completed successfully (it might take up to 2 "
@@ -452,10 +472,10 @@ msgid ""
452
  msgstr ""
453
 
454
  #: Application/Backend/view/index.phtml:35
455
- #: Application/Backend/view/index.phtml:211
456
- #: Application/Backend/view/index.phtml:242
457
- #: Application/Backend/view/object/post.phtml:179
458
- #: Application/Backend/view/object/post.phtml:196
459
  msgid "OK"
460
  msgstr ""
461
 
@@ -552,201 +572,106 @@ msgid ""
552
  "within next 3 business days."
553
  msgstr ""
554
 
555
- #: Application/Backend/view/index.phtml:108
556
  msgid "User/Role Manager"
557
  msgstr ""
558
 
559
- #: Application/Backend/view/index.phtml:114
560
  msgid "Roles"
561
  msgstr ""
562
 
563
- #: Application/Backend/view/index.phtml:117
564
  msgid "Visitor"
565
  msgstr ""
566
 
567
- #: Application/Backend/view/index.phtml:139
568
  msgid "Add New Role"
569
  msgstr ""
570
 
571
- #: Application/Backend/view/index.phtml:143
572
- #: Application/Backend/view/index.phtml:170
573
  msgid "Role Name"
574
  msgstr ""
575
 
576
- #: Application/Backend/view/index.phtml:144
577
- #: Application/Backend/view/index.phtml:171
578
  msgid "Enter Role Name"
579
  msgstr ""
580
 
581
- #: Application/Backend/view/index.phtml:147
582
  msgid "Inherit Capabilities"
583
  msgstr ""
584
 
585
- #: Application/Backend/view/index.phtml:166
586
  msgid "Edit Role"
587
  msgstr ""
588
 
589
- #: Application/Backend/view/index.phtml:175
590
  msgid "Update Role"
591
  msgstr ""
592
 
593
- #: Application/Backend/view/index.phtml:190
594
  #, php-format
595
  msgid "Are you sure that you want to delete %s role?"
596
  msgstr ""
597
 
598
- #: Application/Backend/view/index.phtml:208
599
  msgid ""
600
  "You are not allowed to delete this role because either you do not have a "
601
  "capability to \"Delete Users\" or there is at least one user assigned to it."
602
  msgstr ""
603
 
604
- #: Application/Backend/view/index.phtml:224
605
  msgid "Username"
606
  msgstr ""
607
 
608
- #: Application/Backend/view/index.phtml:239
609
  msgid "You are not allowed to perform this action."
610
  msgstr ""
611
 
612
- #: Application/Backend/view/index.phtml:252
613
  msgid ""
614
  "Manage access to your website for visitors (any user that is not "
615
  "authenticated)"
616
  msgstr ""
617
 
618
- #: Application/Backend/view/index.phtml:253
619
  msgid "Manage Visitor"
620
  msgstr ""
621
 
622
- #: Application/Backend/view/index.phtml:265
623
  msgid "Role Manager"
624
  msgstr ""
625
 
626
- #: Application/Backend/view/index.phtml:266
627
  msgid ""
628
  "With role manager you can manage access for any defined role, edit role's "
629
  "name, create new role or even delete existing (but only when there is no "
630
  "users assigned to it). You are not allowed to delete Administrator role."
631
  msgstr ""
632
 
633
- #: Application/Backend/view/index.phtml:270
634
  msgid "User Manager"
635
  msgstr ""
636
 
637
- #: Application/Backend/view/index.phtml:271
638
  msgid ""
639
  "Manage access for any user. As a bonus feature, you can block user. It means "
640
  "that user will be not able to login to your website anymore. Create or edit "
641
  "user actions link to the native WordPress create/edit user interface."
642
  msgstr ""
643
 
644
- #: Application/Backend/view/index.phtml:275
645
  msgid "Visitor Manager"
646
  msgstr ""
647
 
648
- #: Application/Backend/view/index.phtml:276
649
  msgid ""
650
  "Visitor is any user that is not authenticated to your website. Considering "
651
  "the fact that visitors do not have any access to backend, any features that "
652
  "ara backend related are disabled."
653
  msgstr ""
654
 
655
- #: Application/Backend/view/index.phtml:310
656
- #, php-format
657
- msgid "Follow us on twitter %s for the latest Advanced Access Manager news."
658
- msgstr ""
659
-
660
- #: Application/Backend/view/index.phtml:313
661
- msgid "What's New"
662
- msgstr ""
663
-
664
- #: Application/Backend/view/index.phtml:315
665
- msgid "Brand new and much more intuitive user interface."
666
- msgstr ""
667
-
668
- #: Application/Backend/view/index.phtml:316
669
- msgid ""
670
- "Fully responsive design so you can manage access to website even on your "
671
- "smart phone."
672
- msgstr ""
673
-
674
- #: Application/Backend/view/index.phtml:317
675
- msgid "Better, more reliable and faster core functionality."
676
- msgstr ""
677
-
678
- #: Application/Backend/view/index.phtml:318
679
- msgid ""
680
- "Completely new extension handler. In case of any file system failure, you "
681
- "can download an extension for manual installation."
682
- msgstr ""
683
-
684
- #: Application/Backend/view/index.phtml:319
685
- msgid "Added \"Manage Access\" action to the list of user."
686
- msgstr ""
687
-
688
- #: Application/Backend/view/index.phtml:322
689
- msgid "Please be aware of the latest changes!"
690
- msgstr ""
691
-
692
- #: Application/Backend/view/index.phtml:324
693
- msgid ""
694
- "\"Save\" button has been removed. Any changes that you perform are saved "
695
- "automatically."
696
- msgstr ""
697
-
698
- #: Application/Backend/view/index.phtml:326
699
- msgid ""
700
- "License key for an extension is valid for one life domain only. All the "
701
- "licenses that were purchased before are still valid but limited to one "
702
- "domain with AAM version 3 (with AAM version 2 it is still unlimited until "
703
- "April 2016)."
704
- msgstr ""
705
-
706
- #: Application/Backend/view/index.phtml:327
707
- msgid ""
708
- "Development License is valid for 5 domains with AAM version 3 but is still "
709
- "unlimited with version 2 (only until April 2016)."
710
- msgstr ""
711
-
712
- #: Application/Backend/view/index.phtml:328
713
- msgid ""
714
- "Posts &amp; Pages settings from AAM version 2 are not compatible with AAM "
715
- "version 3."
716
- msgstr ""
717
-
718
- #: Application/Backend/view/index.phtml:329
719
- msgid "You are not allowed to delete or lock an \"Administrator\" role."
720
- msgstr ""
721
-
722
- #: Application/Backend/view/index.phtml:330
723
- msgid "There is no longer a \"Super Admin\" role."
724
- msgstr ""
725
-
726
- #: Application/Backend/view/index.phtml:331
727
- msgid ""
728
- "You are not longer allowed to delete any user or group or users (but you "
729
- "still can do it within native WordPress interface)."
730
- msgstr ""
731
-
732
- #: Application/Backend/view/index.phtml:332
733
- msgid ""
734
- "You are not allowed to delete any capability (even the one that you created "
735
- "manually)."
736
- msgstr ""
737
-
738
- #: Application/Backend/view/index.phtml:336
739
- #, php-format
740
- msgid ""
741
- "You can rolleback to the earlier version of AAM by simply downloading any "
742
- "previous version on %sthis page%s. After download, replace the wp-content/"
743
- "plugins/advanced-access-manager directory with the archive's content."
744
- msgstr ""
745
-
746
- #: Application/Backend/view/index.phtml:339
747
- msgid "Ok, got it"
748
- msgstr ""
749
-
750
  #: Application/Backend/view/object/capability.phtml:13
751
  msgid "Filter"
752
  msgstr ""
@@ -792,6 +717,10 @@ msgstr ""
792
  msgid "Reset"
793
  msgstr ""
794
 
 
 
 
 
795
  #: Application/Backend/view/object/metabox.phtml:13
796
  msgid "Refresh"
797
  msgstr ""
@@ -829,7 +758,7 @@ msgstr ""
829
 
830
  #: Application/Backend/view/object/post.phtml:43
831
  #: Application/Backend/view/object/post.phtml:48
832
- #: Application/Backend/view/object/post.phtml:152
833
  msgid "Go Back"
834
  msgstr ""
835
 
@@ -838,7 +767,7 @@ msgid "Frontend"
838
  msgstr ""
839
 
840
  #: Application/Backend/view/object/post.phtml:62
841
- #: Application/Backend/view/object/post.phtml:110
842
  msgid "List"
843
  msgstr ""
844
 
@@ -847,7 +776,7 @@ msgid "Filter (exclude) post from any list on your website frontend."
847
  msgstr ""
848
 
849
  #: Application/Backend/view/object/post.phtml:65
850
- #: Application/Backend/view/object/post.phtml:113
851
  msgid "Warning!"
852
  msgstr ""
853
 
@@ -876,69 +805,69 @@ msgid ""
876
  "Restrict access to comment on a post (if commenting feature is activated)."
877
  msgstr ""
878
 
879
- #: Application/Backend/view/object/post.phtml:112
880
  msgid "Filter (exclude) post from any list on your website backend."
881
  msgstr ""
882
 
883
- #: Application/Backend/view/object/post.phtml:114
884
  msgid ""
885
  "If checked, this property may slowdown your backend with large amount of "
886
  "posts."
887
  msgstr ""
888
 
889
- #: Application/Backend/view/object/post.phtml:127
890
  msgid ""
891
  "Restrict access to edit a post (also the link \"Edit\" and \"Quick Edit\" "
892
  "will be removed below the post title)."
893
  msgstr ""
894
 
895
- #: Application/Backend/view/object/post.phtml:138
896
  msgid "Delete"
897
  msgstr ""
898
 
899
- #: Application/Backend/view/object/post.phtml:140
900
  msgid ""
901
  "Restrict access to trash or permanently delete a post (also the link \"Trash"
902
  "\" or \"Delete Permanently\" will be removed for a post)."
903
  msgstr ""
904
 
905
- #: Application/Backend/view/object/post.phtml:161
906
  msgid "Inheritance"
907
  msgstr ""
908
 
909
- #: Application/Backend/view/object/post.phtml:164
910
  msgid ""
911
  "If no access settings defined for post* or category* AAM triggers the "
912
  "inheritance mechanism in order listed below. The inheritance process "
913
  "terminates when the first defined set of settings is found."
914
  msgstr ""
915
 
916
- #: Application/Backend/view/object/post.phtml:166
917
  msgid "If caching is on, read the cached settings"
918
  msgstr ""
919
 
920
- #: Application/Backend/view/object/post.phtml:167
921
  msgid "Read post's or category's settings"
922
  msgstr ""
923
 
924
- #: Application/Backend/view/object/post.phtml:168
925
  msgid ""
926
  "If AAM Plus Package installed, iterate through the tree of parent categories "
927
  "and read settings"
928
  msgstr ""
929
 
930
- #: Application/Backend/view/object/post.phtml:169
931
  msgid ""
932
  "If AAM Plus Package installed, read the default access settings for posts or "
933
  "categories"
934
  msgstr ""
935
 
936
- #: Application/Backend/view/object/post.phtml:170
937
  msgid ""
938
  "If user, read settings from the parent role and repeat the same sequence of "
939
  "steps"
940
  msgstr ""
941
 
942
- #: Application/Backend/view/object/post.phtml:190
943
  msgid "Reset Information"
944
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AAM\n"
4
+ "POT-Creation-Date: 2016-04-23 16:56-0400\n"
5
  "PO-Revision-Date: \n"
6
+ "Last-Translator: \n"
7
  "Language-Team: WP AAM <vasyl@vasyltech.com>\n"
8
+ "Language: en_US\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __\n"
16
  "X-Poedit-Basepath: ..\n"
 
 
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: media/js/aam-ui.js:43 media/js/aam-ui.js:1338
20
  #: Application/Backend/Localization.php:23
21
  msgid "Loading..."
22
  msgstr ""
23
 
24
  #: media/js/aam-ui.js:48 Application/Backend/Localization.php:24
25
+ #: Application/Backend/view/index.phtml:151
26
  msgid "Select Role"
27
  msgstr ""
28
 
29
+ #: media/js/aam-ui.js:82 Application/Backend/Localization.php:25
30
  msgid "Search Role"
31
  msgstr ""
32
 
33
+ #: media/js/aam-ui.js:83 Application/Backend/Localization.php:26
34
  msgid "_TOTAL_ role(s)"
35
  msgstr ""
36
 
37
+ #: media/js/aam-ui.js:90 media/js/aam-ui.js:442
38
  #: Application/Backend/Localization.php:27
39
  #: Application/Backend/view/object/capability.phtml:23
40
  msgid "Create"
41
  msgstr ""
42
 
43
+ #: media/js/aam-ui.js:115 Application/Backend/Localization.php:28
44
+ #: Application/Backend/view/index.phtml:117
45
  msgid "Users"
46
  msgstr ""
47
 
48
+ #: media/js/aam-ui.js:143 Application/Backend/Localization.php:45
49
  msgid "Manage Role"
50
  msgstr ""
51
 
52
+ #: media/js/aam-ui.js:158 Application/Backend/Localization.php:46
53
  msgid "Edit Role Name"
54
  msgstr ""
55
 
56
  #: media/js/aam-ui.js:177 media/js/aam-ui.js:317
57
  #: Application/Backend/Localization.php:35
58
  #: Application/Backend/Localization.php:47
59
+ #: Application/Backend/view/index.phtml:189
60
+ #: Application/Backend/view/index.phtml:195
61
  msgid "Delete Role"
62
  msgstr ""
63
 
64
+ #: media/js/aam-ui.js:220 media/js/aam-ui.js:264 media/js/aam-ui.js:986
65
  #: Application/Backend/Localization.php:13
66
  msgid "Saving..."
67
  msgstr ""
71
  msgstr ""
72
 
73
  #: media/js/aam-ui.js:233 media/js/aam-ui.js:276 media/js/aam-ui.js:313
74
+ #: media/js/aam-ui.js:407 media/js/aam-ui.js:755 media/js/aam-ui.js:792
75
+ #: media/js/aam-ui.js:999 media/js/aam-ui.js:1167 media/js/aam-ui.js:1208
76
+ #: media/js/aam-ui.js:1496 media/js/aam.js:222
77
  #: Application/Backend/Localization.php:15
78
  msgid "Application error"
79
  msgstr ""
80
 
81
  #: media/js/aam-ui.js:236 Application/Backend/Localization.php:30
82
+ #: Application/Backend/view/index.phtml:156
83
  msgid "Add Role"
84
  msgstr ""
85
 
123
  msgstr ""
124
 
125
  #: media/js/aam-ui.js:459 Application/Backend/Localization.php:39
126
+ #: Application/Backend/view/index.phtml:129
127
  msgid "Role"
128
  msgstr ""
129
 
135
  msgid "Edit User"
136
  msgstr ""
137
 
138
+ #: media/js/aam-ui.js:564
139
+ msgid "Switch To User"
140
+ msgstr ""
141
+
142
+ #: media/js/aam-ui.js:611 Application/Backend/Localization.php:40
143
  msgid "Anonymous"
144
  msgstr ""
145
 
146
+ #: media/js/aam-ui.js:660 Application/Backend/Localization.php:17
147
  #: Application/Backend/view/object/menu.phtml:54
148
  msgid "Show Menu"
149
  msgstr ""
150
 
151
+ #: media/js/aam-ui.js:675 Application/Backend/Localization.php:18
152
  #: Application/Backend/view/object/menu.phtml:58
153
  msgid "Hide Menu"
154
  msgstr ""
155
 
156
+ #: media/js/aam-ui.js:787 Application/Backend/Localization.php:19
157
  msgid "Failed to retrieve mataboxes"
158
  msgstr ""
159
 
160
+ #: media/js/aam-ui.js:871 Application/Backend/Localization.php:53
161
  msgid "Failed to grand capability - WordPress policy"
162
  msgstr ""
163
 
164
+ #: media/js/aam-ui.js:906 Application/Backend/Localization.php:11
165
  msgid "Search Capability"
166
  msgstr ""
167
 
168
+ #: media/js/aam-ui.js:907 Application/Backend/Localization.php:12
169
  msgid "_TOTAL_ capability(s)"
170
  msgstr ""
171
 
172
+ #: media/js/aam-ui.js:994 Application/Backend/Localization.php:14
173
  msgid "Failed to add new capability"
174
  msgstr ""
175
 
176
+ #: media/js/aam-ui.js:1002 Application/Backend/Localization.php:16
177
  #: Application/Backend/view/object/capability.phtml:52
178
  msgid "Add Capability"
179
  msgstr ""
180
 
181
+ #: media/js/aam-ui.js:1152
182
  msgid "parent role"
183
  msgstr ""
184
 
185
+ #: media/js/aam-ui.js:1154
186
  msgid "default settings"
187
  msgstr ""
188
 
189
+ #: media/js/aam-ui.js:1156
190
  msgid "parent category"
191
  msgstr ""
192
 
193
+ #: media/js/aam-ui.js:1248 Application/Backend/Localization.php:20
194
  msgid "Search"
195
  msgstr ""
196
 
197
+ #: media/js/aam-ui.js:1249 Application/Backend/Localization.php:21
198
  msgid "_TOTAL_ object(s)"
199
  msgstr ""
200
 
201
+ #: media/js/aam-ui.js:1327 Application/Backend/Localization.php:22
202
  msgid "Failed"
203
  msgstr ""
204
 
205
+ #: media/js/aam-ui.js:1357
206
+ msgid "Drill-Down"
207
+ msgstr ""
208
+
209
+ #: media/js/aam-ui.js:1369 Application/Backend/Localization.php:43
210
  msgid "Manage Access"
211
  msgstr ""
212
 
213
+ #: media/js/aam-ui.js:1380 Application/Backend/Localization.php:44
214
+ #: Application/Backend/view/object/post.phtml:126
215
  msgid "Edit"
216
  msgstr ""
217
 
218
+ #: media/js/aam.js:109 Application/Backend/Localization.php:52
219
  msgid ""
220
  "Javascript error detected during the page load. AAM may not function "
221
  "properly."
222
  msgstr ""
223
 
224
+ #: media/js/aam.js:161
225
  msgid "Current "
226
  msgstr ""
227
 
228
+ #: Application/Backend/Capability.php:164
229
+ #: Application/Backend/Capability.php:203
230
  msgid "System"
231
  msgstr ""
232
 
233
+ #: Application/Backend/Capability.php:165
234
+ #: Application/Backend/Capability.php:205 Application/Backend/Post.php:348
235
  msgid "Posts & Pages"
236
  msgstr ""
237
 
238
+ #: Application/Backend/Capability.php:166
239
+ #: Application/Backend/Capability.php:207
240
+ #: Application/Backend/view/object/post.phtml:105
241
  msgid "Backend"
242
  msgstr ""
243
 
244
+ #: Application/Backend/Capability.php:167
245
+ #: Application/Backend/Capability.php:209
246
  msgid "Miscellaneous"
247
  msgstr ""
248
 
249
+ #: Application/Backend/Capability.php:228
250
  #: Application/Backend/view/index.phtml:77
251
  msgid "Capabilities"
252
  msgstr ""
260
  msgid "Extensions"
261
  msgstr ""
262
 
263
+ #: Application/Backend/Filter.php:196 Application/Core/API.php:182
264
  msgid "Access Denied"
265
  msgstr ""
266
 
272
  msgid "Current role"
273
  msgstr ""
274
 
275
+ #: Application/Backend/Manager.php:97
276
  #, php-format
277
  msgid "Extension %s has new update available for download."
278
  msgstr ""
279
 
280
+ #: Application/Backend/Manager.php:143
281
  msgid "AAM caching is off. To speed-up the website turn it on."
282
  msgstr ""
283
 
284
+ #: Application/Backend/Manager.php:146
285
  msgid "Read more."
286
  msgstr ""
287
 
288
+ #: Application/Backend/Manager.php:184 Application/Backend/Manager.php:299
289
+ #: Application/Backend/Manager.php:300
290
  msgid "AAM"
291
  msgstr ""
292
 
308
 
309
  #: Application/Backend/ProductList.php:17
310
  msgid ""
 
 
 
 
 
 
311
  "Unlock limitations related to Posts and Pages feature. Extend basic AAM "
312
  "functionality with Page Categories and ability to manage access to your "
313
  "comments (AAM Plus Package adds new capabilities to the default list of "
315
  "etc.)"
316
  msgstr ""
317
 
318
+ #: Application/Backend/ProductList.php:27
319
  msgid ""
320
  "Extension for more advanced user and role administration. Based on user's "
321
  "highest level capability, filter list of roles with higher level. Also "
322
  "prevent from editing, promoting or deleting higher level users."
323
  msgstr ""
324
 
325
+ #: Application/Backend/ProductList.php:37
326
+ msgid ""
327
+ "Development license gives you an ability to download all the available "
328
+ "extensions and use them to up to 5 life domains."
329
+ msgstr ""
330
+
331
  #: Application/Backend/ProductList.php:46
332
  msgid "Various useful tools for AAM like caching or clear all settings."
333
  msgstr ""
339
  "switch between different sites."
340
  msgstr ""
341
 
342
+ #: Application/Backend/ProductList.php:70
343
+ msgid ""
344
+ "Skeleton for custom AAM extension. Please find all necessary documentation "
345
+ "inside the source code."
346
+ msgstr ""
347
+
348
+ #: Application/Backend/ProductList.php:77
349
+ msgid "Instant switching between user accounts in WordPress. "
350
+ msgstr ""
351
+
352
+ #: Application/Core/Repository.php:254
353
  #, php-format
354
  msgid "Failed to create %s"
355
  msgstr ""
356
 
357
+ #: Application/Core/Repository.php:258
358
  #, php-format
359
  msgid "Directory %s is not writable"
360
  msgstr ""
361
 
362
+ #: aam.php:155
363
  msgid "PHP 5.2 or higher is required."
364
  msgstr ""
365
 
366
+ #: aam.php:157
367
  msgid "WP 3.8 or higher is required."
368
  msgstr ""
369
 
376
  msgstr ""
377
 
378
  #: Application/Backend/view/extension.phtml:19
379
+ #: Application/Backend/view/extension.phtml:48
380
  msgid "Install"
381
  msgstr ""
382
 
385
  msgstr ""
386
 
387
  #: Application/Backend/view/extension.phtml:27
388
+ #: Application/Backend/view/index.phtml:130
389
+ #: Application/Backend/view/index.phtml:227
390
  msgid "Action"
391
  msgstr ""
392
 
395
  msgstr ""
396
 
397
  #: Application/Backend/view/extension.phtml:41
398
+ #: Application/Backend/view/extension.phtml:50
399
  msgid "Installed"
400
  msgstr ""
401
 
403
  msgid "Purchase"
404
  msgstr ""
405
 
406
+ #: Application/Backend/view/extension.phtml:53
407
+ #: Application/Backend/view/extension.phtml:89
408
  msgid "Download"
409
  msgstr ""
410
 
411
+ #: Application/Backend/view/extension.phtml:62
412
  msgid "All extensions are installed and up to date."
413
  msgstr ""
414
 
415
+ #: Application/Backend/view/extension.phtml:73
416
+ #: Application/Backend/view/extension.phtml:100
417
+ #: Application/Backend/view/extension.phtml:109
418
  #: Application/Backend/view/index.phtml:24
419
+ #: Application/Backend/view/index.phtml:140
420
+ #: Application/Backend/view/index.phtml:157
421
+ #: Application/Backend/view/index.phtml:167
422
+ #: Application/Backend/view/index.phtml:178
423
+ #: Application/Backend/view/index.phtml:188
424
+ #: Application/Backend/view/index.phtml:196
425
+ #: Application/Backend/view/index.phtml:206
426
+ #: Application/Backend/view/index.phtml:237
427
  #: Application/Backend/view/object/capability.phtml:42
428
  #: Application/Backend/view/object/capability.phtml:53
429
+ #: Application/Backend/view/object/post.phtml:162
430
+ #: Application/Backend/view/object/post.phtml:191
431
  msgid "Close"
432
  msgstr ""
433
 
434
+ #: Application/Backend/view/extension.phtml:74
435
+ #: Application/Backend/view/index.phtml:207
436
+ #: Application/Backend/view/index.phtml:238
437
  msgid "Notification"
438
  msgstr ""
439
 
440
+ #: Application/Backend/view/extension.phtml:78
441
  msgid ""
442
  "Extension requires manual installation. Please follow few simple steps below."
443
  msgstr ""
444
 
445
+ #: Application/Backend/view/extension.phtml:90
446
  msgid "Cancel"
447
  msgstr ""
448
 
449
+ #: Application/Backend/view/extension.phtml:101
450
  msgid "Install Extension Info"
451
  msgstr ""
452
 
453
+ #: Application/Backend/view/extension.phtml:105
454
  msgid ""
455
  "In order to install the extension, please use license number that you "
456
  "recieved after the payment was completed successfully (it might take up to 2 "
472
  msgstr ""
473
 
474
  #: Application/Backend/view/index.phtml:35
475
+ #: Application/Backend/view/index.phtml:213
476
+ #: Application/Backend/view/index.phtml:244
477
+ #: Application/Backend/view/object/post.phtml:181
478
+ #: Application/Backend/view/object/post.phtml:198
479
  msgid "OK"
480
  msgstr ""
481
 
572
  "within next 3 business days."
573
  msgstr ""
574
 
575
+ #: Application/Backend/view/index.phtml:110
576
  msgid "User/Role Manager"
577
  msgstr ""
578
 
579
+ #: Application/Backend/view/index.phtml:116
580
  msgid "Roles"
581
  msgstr ""
582
 
583
+ #: Application/Backend/view/index.phtml:119
584
  msgid "Visitor"
585
  msgstr ""
586
 
587
+ #: Application/Backend/view/index.phtml:141
588
  msgid "Add New Role"
589
  msgstr ""
590
 
591
+ #: Application/Backend/view/index.phtml:145
592
+ #: Application/Backend/view/index.phtml:172
593
  msgid "Role Name"
594
  msgstr ""
595
 
596
+ #: Application/Backend/view/index.phtml:146
597
+ #: Application/Backend/view/index.phtml:173
598
  msgid "Enter Role Name"
599
  msgstr ""
600
 
601
+ #: Application/Backend/view/index.phtml:149
602
  msgid "Inherit Capabilities"
603
  msgstr ""
604
 
605
+ #: Application/Backend/view/index.phtml:168
606
  msgid "Edit Role"
607
  msgstr ""
608
 
609
+ #: Application/Backend/view/index.phtml:177
610
  msgid "Update Role"
611
  msgstr ""
612
 
613
+ #: Application/Backend/view/index.phtml:192
614
  #, php-format
615
  msgid "Are you sure that you want to delete %s role?"
616
  msgstr ""
617
 
618
+ #: Application/Backend/view/index.phtml:210
619
  msgid ""
620
  "You are not allowed to delete this role because either you do not have a "
621
  "capability to \"Delete Users\" or there is at least one user assigned to it."
622
  msgstr ""
623
 
624
+ #: Application/Backend/view/index.phtml:226
625
  msgid "Username"
626
  msgstr ""
627
 
628
+ #: Application/Backend/view/index.phtml:241
629
  msgid "You are not allowed to perform this action."
630
  msgstr ""
631
 
632
+ #: Application/Backend/view/index.phtml:254
633
  msgid ""
634
  "Manage access to your website for visitors (any user that is not "
635
  "authenticated)"
636
  msgstr ""
637
 
638
+ #: Application/Backend/view/index.phtml:255
639
  msgid "Manage Visitor"
640
  msgstr ""
641
 
642
+ #: Application/Backend/view/index.phtml:267
643
  msgid "Role Manager"
644
  msgstr ""
645
 
646
+ #: Application/Backend/view/index.phtml:268
647
  msgid ""
648
  "With role manager you can manage access for any defined role, edit role's "
649
  "name, create new role or even delete existing (but only when there is no "
650
  "users assigned to it). You are not allowed to delete Administrator role."
651
  msgstr ""
652
 
653
+ #: Application/Backend/view/index.phtml:272
654
  msgid "User Manager"
655
  msgstr ""
656
 
657
+ #: Application/Backend/view/index.phtml:273
658
  msgid ""
659
  "Manage access for any user. As a bonus feature, you can block user. It means "
660
  "that user will be not able to login to your website anymore. Create or edit "
661
  "user actions link to the native WordPress create/edit user interface."
662
  msgstr ""
663
 
664
+ #: Application/Backend/view/index.phtml:277
665
  msgid "Visitor Manager"
666
  msgstr ""
667
 
668
+ #: Application/Backend/view/index.phtml:278
669
  msgid ""
670
  "Visitor is any user that is not authenticated to your website. Considering "
671
  "the fact that visitors do not have any access to backend, any features that "
672
  "ara backend related are disabled."
673
  msgstr ""
674
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
675
  #: Application/Backend/view/object/capability.phtml:13
676
  msgid "Filter"
677
  msgstr ""
717
  msgid "Reset"
718
  msgstr ""
719
 
720
+ #: Application/Backend/view/object/menu.phtml:15
721
+ msgid "If checked, then menu is filtered."
722
+ msgstr ""
723
+
724
  #: Application/Backend/view/object/metabox.phtml:13
725
  msgid "Refresh"
726
  msgstr ""
758
 
759
  #: Application/Backend/view/object/post.phtml:43
760
  #: Application/Backend/view/object/post.phtml:48
761
+ #: Application/Backend/view/object/post.phtml:154
762
  msgid "Go Back"
763
  msgstr ""
764
 
767
  msgstr ""
768
 
769
  #: Application/Backend/view/object/post.phtml:62
770
+ #: Application/Backend/view/object/post.phtml:111
771
  msgid "List"
772
  msgstr ""
773
 
776
  msgstr ""
777
 
778
  #: Application/Backend/view/object/post.phtml:65
779
+ #: Application/Backend/view/object/post.phtml:114
780
  msgid "Warning!"
781
  msgstr ""
782
 
805
  "Restrict access to comment on a post (if commenting feature is activated)."
806
  msgstr ""
807
 
808
+ #: Application/Backend/view/object/post.phtml:113
809
  msgid "Filter (exclude) post from any list on your website backend."
810
  msgstr ""
811
 
812
+ #: Application/Backend/view/object/post.phtml:115
813
  msgid ""
814
  "If checked, this property may slowdown your backend with large amount of "
815
  "posts."
816
  msgstr ""
817
 
818
+ #: Application/Backend/view/object/post.phtml:128
819
  msgid ""
820
  "Restrict access to edit a post (also the link \"Edit\" and \"Quick Edit\" "
821
  "will be removed below the post title)."
822
  msgstr ""
823
 
824
+ #: Application/Backend/view/object/post.phtml:139
825
  msgid "Delete"
826
  msgstr ""
827
 
828
+ #: Application/Backend/view/object/post.phtml:141
829
  msgid ""
830
  "Restrict access to trash or permanently delete a post (also the link \"Trash"
831
  "\" or \"Delete Permanently\" will be removed for a post)."
832
  msgstr ""
833
 
834
+ #: Application/Backend/view/object/post.phtml:163
835
  msgid "Inheritance"
836
  msgstr ""
837
 
838
+ #: Application/Backend/view/object/post.phtml:166
839
  msgid ""
840
  "If no access settings defined for post* or category* AAM triggers the "
841
  "inheritance mechanism in order listed below. The inheritance process "
842
  "terminates when the first defined set of settings is found."
843
  msgstr ""
844
 
845
+ #: Application/Backend/view/object/post.phtml:168
846
  msgid "If caching is on, read the cached settings"
847
  msgstr ""
848
 
849
+ #: Application/Backend/view/object/post.phtml:169
850
  msgid "Read post's or category's settings"
851
  msgstr ""
852
 
853
+ #: Application/Backend/view/object/post.phtml:170
854
  msgid ""
855
  "If AAM Plus Package installed, iterate through the tree of parent categories "
856
  "and read settings"
857
  msgstr ""
858
 
859
+ #: Application/Backend/view/object/post.phtml:171
860
  msgid ""
861
  "If AAM Plus Package installed, read the default access settings for posts or "
862
  "categories"
863
  msgstr ""
864
 
865
+ #: Application/Backend/view/object/post.phtml:172
866
  msgid ""
867
  "If user, read settings from the parent role and repeat the same sequence of "
868
  "steps"
869
  msgstr ""
870
 
871
+ #: Application/Backend/view/object/post.phtml:192
872
  msgid "Reset Information"
873
  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: 2015-12-09 19:35-0500\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: WPAAM <support@wpaam.com>\n"
8
  "Language-Team: WP AAM <vasyl@vasyltech.com>\n"
@@ -10,59 +10,59 @@ 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.6\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:43 media/js/aam-ui.js:1317
21
  #: Application/Backend/Localization.php:23
22
  msgid "Loading..."
23
  msgstr ""
24
 
25
  #: media/js/aam-ui.js:48 Application/Backend/Localization.php:24
26
- #: Application/Backend/view/index.phtml:149
27
  msgid "Select Role"
28
  msgstr ""
29
 
30
- #: media/js/aam-ui.js:81 Application/Backend/Localization.php:25
31
  msgid "Search Role"
32
  msgstr ""
33
 
34
- #: media/js/aam-ui.js:82 Application/Backend/Localization.php:26
35
  msgid "_TOTAL_ role(s)"
36
  msgstr ""
37
 
38
- #: media/js/aam-ui.js:89 media/js/aam-ui.js:442
39
  #: Application/Backend/Localization.php:27
40
  #: Application/Backend/view/object/capability.phtml:23
41
  msgid "Create"
42
  msgstr ""
43
 
44
- #: media/js/aam-ui.js:114 Application/Backend/Localization.php:28
45
- #: Application/Backend/view/index.phtml:115
46
  msgid "Users"
47
  msgstr ""
48
 
49
- #: media/js/aam-ui.js:142 Application/Backend/Localization.php:45
50
  msgid "Manage Role"
51
  msgstr ""
52
 
53
- #: media/js/aam-ui.js:157 Application/Backend/Localization.php:46
54
  msgid "Edit Role Name"
55
  msgstr ""
56
 
57
  #: media/js/aam-ui.js:177 media/js/aam-ui.js:317
58
  #: Application/Backend/Localization.php:35
59
  #: Application/Backend/Localization.php:47
60
- #: Application/Backend/view/index.phtml:187
61
- #: Application/Backend/view/index.phtml:193
62
  msgid "Delete Role"
63
  msgstr ""
64
 
65
- #: media/js/aam-ui.js:220 media/js/aam-ui.js:264 media/js/aam-ui.js:965
66
  #: Application/Backend/Localization.php:13
67
  msgid "Saving..."
68
  msgstr ""
@@ -72,15 +72,15 @@ msgid "Failed to add new role"
72
  msgstr ""
73
 
74
  #: media/js/aam-ui.js:233 media/js/aam-ui.js:276 media/js/aam-ui.js:313
75
- #: media/js/aam-ui.js:407 media/js/aam-ui.js:734 media/js/aam-ui.js:771
76
- #: media/js/aam-ui.js:978 media/js/aam-ui.js:1146 media/js/aam-ui.js:1187
77
- #: media/js/aam-ui.js:1463 media/js/aam.js:231
78
  #: Application/Backend/Localization.php:15
79
  msgid "Application error"
80
  msgstr ""
81
 
82
  #: media/js/aam-ui.js:236 Application/Backend/Localization.php:30
83
- #: Application/Backend/view/index.phtml:154
84
  msgid "Add Role"
85
  msgstr ""
86
 
@@ -124,7 +124,7 @@ msgid "_TOTAL_ user(s)"
124
  msgstr ""
125
 
126
  #: media/js/aam-ui.js:459 Application/Backend/Localization.php:39
127
- #: Application/Backend/view/index.phtml:127
128
  msgid "Role"
129
  msgstr ""
130
 
@@ -136,111 +136,118 @@ msgstr ""
136
  msgid "Edit User"
137
  msgstr ""
138
 
139
- #: media/js/aam-ui.js:592 Application/Backend/Localization.php:40
 
 
 
 
140
  msgid "Anonymous"
141
  msgstr ""
142
 
143
- #: media/js/aam-ui.js:641 Application/Backend/Localization.php:17
144
  #: Application/Backend/view/object/menu.phtml:54
145
  msgid "Show Menu"
146
  msgstr ""
147
 
148
- #: media/js/aam-ui.js:656 Application/Backend/Localization.php:18
149
  #: Application/Backend/view/object/menu.phtml:58
150
  msgid "Hide Menu"
151
  msgstr ""
152
 
153
- #: media/js/aam-ui.js:766 Application/Backend/Localization.php:19
154
  msgid "Failed to retrieve mataboxes"
155
  msgstr ""
156
 
157
- #: media/js/aam-ui.js:850 Application/Backend/Localization.php:53
158
  msgid "Failed to grand capability - WordPress policy"
159
  msgstr ""
160
 
161
- #: media/js/aam-ui.js:885 Application/Backend/Localization.php:11
162
  msgid "Search Capability"
163
  msgstr ""
164
 
165
- #: media/js/aam-ui.js:886 Application/Backend/Localization.php:12
166
  msgid "_TOTAL_ capability(s)"
167
  msgstr ""
168
 
169
- #: media/js/aam-ui.js:973 Application/Backend/Localization.php:14
170
  msgid "Failed to add new capability"
171
  msgstr ""
172
 
173
- #: media/js/aam-ui.js:981 Application/Backend/Localization.php:16
174
  #: Application/Backend/view/object/capability.phtml:52
175
  msgid "Add Capability"
176
  msgstr ""
177
 
178
- #: media/js/aam-ui.js:1131
179
  msgid "parent role"
180
  msgstr ""
181
 
182
- #: media/js/aam-ui.js:1133
183
  msgid "default settings"
184
  msgstr ""
185
 
186
- #: media/js/aam-ui.js:1135
187
  msgid "parent category"
188
  msgstr ""
189
 
190
- #: media/js/aam-ui.js:1227 Application/Backend/Localization.php:20
191
  msgid "Search"
192
  msgstr ""
193
 
194
- #: media/js/aam-ui.js:1228 Application/Backend/Localization.php:21
195
  msgid "_TOTAL_ object(s)"
196
  msgstr ""
197
 
198
- #: media/js/aam-ui.js:1306 Application/Backend/Localization.php:22
199
  msgid "Failed"
200
  msgstr ""
201
 
202
- #: media/js/aam-ui.js:1336 Application/Backend/Localization.php:43
203
- #: Application/Backend/Manager.php:177
 
 
 
204
  msgid "Manage Access"
205
  msgstr ""
206
 
207
- #: media/js/aam-ui.js:1347 Application/Backend/Localization.php:44
208
- #: Application/Backend/view/object/post.phtml:125
209
  msgid "Edit"
210
  msgstr ""
211
 
212
- #: media/js/aam.js:139 Application/Backend/Localization.php:52
213
  msgid ""
214
  "Javascript error detected during the page load. AAM may not function "
215
  "properly."
216
  msgstr ""
217
 
218
- #: media/js/aam.js:170
219
  msgid "Current "
220
  msgstr ""
221
 
222
- #: Application/Backend/Capability.php:141
223
- #: Application/Backend/Capability.php:180
224
  msgid "System"
225
  msgstr ""
226
 
227
- #: Application/Backend/Capability.php:142
228
- #: Application/Backend/Capability.php:182 Application/Backend/Post.php:348
229
  msgid "Posts & Pages"
230
  msgstr ""
231
 
232
- #: Application/Backend/Capability.php:143
233
- #: Application/Backend/Capability.php:184
234
- #: Application/Backend/view/object/post.phtml:104
235
  msgid "Backend"
236
  msgstr ""
237
 
238
- #: Application/Backend/Capability.php:144
239
- #: Application/Backend/Capability.php:186
240
  msgid "Miscellaneous"
241
  msgstr ""
242
 
243
- #: Application/Backend/Capability.php:205
244
  #: Application/Backend/view/index.phtml:77
245
  msgid "Capabilities"
246
  msgstr ""
@@ -254,7 +261,7 @@ msgstr ""
254
  msgid "Extensions"
255
  msgstr ""
256
 
257
- #: Application/Backend/Filter.php:193 Application/Core/API.php:180
258
  msgid "Access Denied"
259
  msgstr ""
260
 
@@ -266,20 +273,21 @@ msgstr ""
266
  msgid "Current role"
267
  msgstr ""
268
 
269
- #: Application/Backend/Manager.php:92
270
  #, php-format
271
  msgid "Extension %s has new update available for download."
272
  msgstr ""
273
 
274
- #: Application/Backend/Manager.php:136
275
  msgid "AAM caching is off. To speed-up the website turn it on."
276
  msgstr ""
277
 
278
- #: Application/Backend/Manager.php:139
279
  msgid "Read more."
280
  msgstr ""
281
 
282
- #: Application/Backend/Manager.php:293 Application/Backend/Manager.php:294
 
283
  msgid "AAM"
284
  msgstr ""
285
 
@@ -301,12 +309,6 @@ msgstr ""
301
 
302
  #: Application/Backend/ProductList.php:17
303
  msgid ""
304
- "Development license gives you an ability to download all the available "
305
- "extensions and use them to up to 5 life domains."
306
- msgstr ""
307
-
308
- #: Application/Backend/ProductList.php:27
309
- msgid ""
310
  "Unlock limitations related to Posts and Pages feature. Extend basic AAM "
311
  "functionality with Page Categories and ability to manage access to your "
312
  "comments (AAM Plus Package adds new capabilities to the default list of "
@@ -314,13 +316,19 @@ msgid ""
314
  "etc.)"
315
  msgstr ""
316
 
317
- #: Application/Backend/ProductList.php:37
318
  msgid ""
319
  "Extension for more advanced user and role administration. Based on user's "
320
  "highest level capability, filter list of roles with higher level. Also "
321
  "prevent from editing, promoting or deleting higher level users."
322
  msgstr ""
323
 
 
 
 
 
 
 
324
  #: Application/Backend/ProductList.php:46
325
  msgid "Various useful tools for AAM like caching or clear all settings."
326
  msgstr ""
@@ -332,21 +340,31 @@ msgid ""
332
  "switch between different sites."
333
  msgstr ""
334
 
335
- #: Application/Core/Repository.php:234
 
 
 
 
 
 
 
 
 
 
336
  #, php-format
337
  msgid "Failed to create %s"
338
  msgstr ""
339
 
340
- #: Application/Core/Repository.php:238
341
  #, php-format
342
  msgid "Directory %s is not writable"
343
  msgstr ""
344
 
345
- #: aam.php:152
346
  msgid "PHP 5.2 or higher is required."
347
  msgstr ""
348
 
349
- #: aam.php:154
350
  msgid "WP 3.8 or higher is required."
351
  msgstr ""
352
 
@@ -359,6 +377,7 @@ msgid "License Key"
359
  msgstr ""
360
 
361
  #: Application/Backend/view/extension.phtml:19
 
362
  msgid "Install"
363
  msgstr ""
364
 
@@ -367,8 +386,8 @@ msgid "Extension"
367
  msgstr ""
368
 
369
  #: Application/Backend/view/extension.phtml:27
370
- #: Application/Backend/view/index.phtml:128
371
- #: Application/Backend/view/index.phtml:225
372
  msgid "Action"
373
  msgstr ""
374
 
@@ -377,6 +396,7 @@ msgid "Free"
377
  msgstr ""
378
 
379
  #: Application/Backend/view/extension.phtml:41
 
380
  msgid "Installed"
381
  msgstr ""
382
 
@@ -384,54 +404,54 @@ msgstr ""
384
  msgid "Purchase"
385
  msgstr ""
386
 
387
- #: Application/Backend/view/extension.phtml:47
388
- #: Application/Backend/view/extension.phtml:83
389
  msgid "Download"
390
  msgstr ""
391
 
392
- #: Application/Backend/view/extension.phtml:56
393
  msgid "All extensions are installed and up to date."
394
  msgstr ""
395
 
396
- #: Application/Backend/view/extension.phtml:67
397
- #: Application/Backend/view/extension.phtml:94
398
- #: Application/Backend/view/extension.phtml:103
399
  #: Application/Backend/view/index.phtml:24
400
- #: Application/Backend/view/index.phtml:138
401
- #: Application/Backend/view/index.phtml:155
402
- #: Application/Backend/view/index.phtml:165
403
- #: Application/Backend/view/index.phtml:176
404
- #: Application/Backend/view/index.phtml:186
405
- #: Application/Backend/view/index.phtml:194
406
- #: Application/Backend/view/index.phtml:204
407
- #: Application/Backend/view/index.phtml:235
408
  #: Application/Backend/view/object/capability.phtml:42
409
  #: Application/Backend/view/object/capability.phtml:53
410
- #: Application/Backend/view/object/post.phtml:160
411
- #: Application/Backend/view/object/post.phtml:189
412
  msgid "Close"
413
  msgstr ""
414
 
415
- #: Application/Backend/view/extension.phtml:68
416
- #: Application/Backend/view/index.phtml:205
417
- #: Application/Backend/view/index.phtml:236
418
  msgid "Notification"
419
  msgstr ""
420
 
421
- #: Application/Backend/view/extension.phtml:72
422
  msgid ""
423
  "Extension requires manual installation. Please follow few simple steps below."
424
  msgstr ""
425
 
426
- #: Application/Backend/view/extension.phtml:84
427
  msgid "Cancel"
428
  msgstr ""
429
 
430
- #: Application/Backend/view/extension.phtml:95
431
  msgid "Install Extension Info"
432
  msgstr ""
433
 
434
- #: Application/Backend/view/extension.phtml:99
435
  msgid ""
436
  "In order to install the extension, please use license number that you "
437
  "recieved after the payment was completed successfully (it might take up to 2 "
@@ -453,10 +473,10 @@ msgid ""
453
  msgstr ""
454
 
455
  #: Application/Backend/view/index.phtml:35
456
- #: Application/Backend/view/index.phtml:211
457
- #: Application/Backend/view/index.phtml:242
458
- #: Application/Backend/view/object/post.phtml:179
459
- #: Application/Backend/view/object/post.phtml:196
460
  msgid "OK"
461
  msgstr ""
462
 
@@ -553,201 +573,106 @@ msgid ""
553
  "within next 3 business days."
554
  msgstr ""
555
 
556
- #: Application/Backend/view/index.phtml:108
557
  msgid "User/Role Manager"
558
  msgstr ""
559
 
560
- #: Application/Backend/view/index.phtml:114
561
  msgid "Roles"
562
  msgstr ""
563
 
564
- #: Application/Backend/view/index.phtml:117
565
  msgid "Visitor"
566
  msgstr ""
567
 
568
- #: Application/Backend/view/index.phtml:139
569
  msgid "Add New Role"
570
  msgstr ""
571
 
572
- #: Application/Backend/view/index.phtml:143
573
- #: Application/Backend/view/index.phtml:170
574
  msgid "Role Name"
575
  msgstr ""
576
 
577
- #: Application/Backend/view/index.phtml:144
578
- #: Application/Backend/view/index.phtml:171
579
  msgid "Enter Role Name"
580
  msgstr ""
581
 
582
- #: Application/Backend/view/index.phtml:147
583
  msgid "Inherit Capabilities"
584
  msgstr ""
585
 
586
- #: Application/Backend/view/index.phtml:166
587
  msgid "Edit Role"
588
  msgstr ""
589
 
590
- #: Application/Backend/view/index.phtml:175
591
  msgid "Update Role"
592
  msgstr ""
593
 
594
- #: Application/Backend/view/index.phtml:190
595
  #, php-format
596
  msgid "Are you sure that you want to delete %s role?"
597
  msgstr ""
598
 
599
- #: Application/Backend/view/index.phtml:208
600
  msgid ""
601
  "You are not allowed to delete this role because either you do not have a "
602
  "capability to \"Delete Users\" or there is at least one user assigned to it."
603
  msgstr ""
604
 
605
- #: Application/Backend/view/index.phtml:224
606
  msgid "Username"
607
  msgstr ""
608
 
609
- #: Application/Backend/view/index.phtml:239
610
  msgid "You are not allowed to perform this action."
611
  msgstr ""
612
 
613
- #: Application/Backend/view/index.phtml:252
614
  msgid ""
615
  "Manage access to your website for visitors (any user that is not "
616
  "authenticated)"
617
  msgstr ""
618
 
619
- #: Application/Backend/view/index.phtml:253
620
  msgid "Manage Visitor"
621
  msgstr ""
622
 
623
- #: Application/Backend/view/index.phtml:265
624
  msgid "Role Manager"
625
  msgstr ""
626
 
627
- #: Application/Backend/view/index.phtml:266
628
  msgid ""
629
  "With role manager you can manage access for any defined role, edit role's "
630
  "name, create new role or even delete existing (but only when there is no "
631
  "users assigned to it). You are not allowed to delete Administrator role."
632
  msgstr ""
633
 
634
- #: Application/Backend/view/index.phtml:270
635
  msgid "User Manager"
636
  msgstr ""
637
 
638
- #: Application/Backend/view/index.phtml:271
639
  msgid ""
640
  "Manage access for any user. As a bonus feature, you can block user. It means "
641
  "that user will be not able to login to your website anymore. Create or edit "
642
  "user actions link to the native WordPress create/edit user interface."
643
  msgstr ""
644
 
645
- #: Application/Backend/view/index.phtml:275
646
  msgid "Visitor Manager"
647
  msgstr ""
648
 
649
- #: Application/Backend/view/index.phtml:276
650
  msgid ""
651
  "Visitor is any user that is not authenticated to your website. Considering "
652
  "the fact that visitors do not have any access to backend, any features that "
653
  "ara backend related are disabled."
654
  msgstr ""
655
 
656
- #: Application/Backend/view/index.phtml:310
657
- #, php-format
658
- msgid "Follow us on twitter %s for the latest Advanced Access Manager news."
659
- msgstr ""
660
-
661
- #: Application/Backend/view/index.phtml:313
662
- msgid "What's New"
663
- msgstr ""
664
-
665
- #: Application/Backend/view/index.phtml:315
666
- msgid "Brand new and much more intuitive user interface."
667
- msgstr ""
668
-
669
- #: Application/Backend/view/index.phtml:316
670
- msgid ""
671
- "Fully responsive design so you can manage access to website even on your "
672
- "smart phone."
673
- msgstr ""
674
-
675
- #: Application/Backend/view/index.phtml:317
676
- msgid "Better, more reliable and faster core functionality."
677
- msgstr ""
678
-
679
- #: Application/Backend/view/index.phtml:318
680
- msgid ""
681
- "Completely new extension handler. In case of any file system failure, you "
682
- "can download an extension for manual installation."
683
- msgstr ""
684
-
685
- #: Application/Backend/view/index.phtml:319
686
- msgid "Added \"Manage Access\" action to the list of user."
687
- msgstr ""
688
-
689
- #: Application/Backend/view/index.phtml:322
690
- msgid "Please be aware of the latest changes!"
691
- msgstr ""
692
-
693
- #: Application/Backend/view/index.phtml:324
694
- msgid ""
695
- "\"Save\" button has been removed. Any changes that you perform are saved "
696
- "automatically."
697
- msgstr ""
698
-
699
- #: Application/Backend/view/index.phtml:326
700
- msgid ""
701
- "License key for an extension is valid for one life domain only. All the "
702
- "licenses that were purchased before are still valid but limited to one "
703
- "domain with AAM version 3 (with AAM version 2 it is still unlimited until "
704
- "April 2016)."
705
- msgstr ""
706
-
707
- #: Application/Backend/view/index.phtml:327
708
- msgid ""
709
- "Development License is valid for 5 domains with AAM version 3 but is still "
710
- "unlimited with version 2 (only until April 2016)."
711
- msgstr ""
712
-
713
- #: Application/Backend/view/index.phtml:328
714
- msgid ""
715
- "Posts &amp; Pages settings from AAM version 2 are not compatible with AAM "
716
- "version 3."
717
- msgstr ""
718
-
719
- #: Application/Backend/view/index.phtml:329
720
- msgid "You are not allowed to delete or lock an \"Administrator\" role."
721
- msgstr ""
722
-
723
- #: Application/Backend/view/index.phtml:330
724
- msgid "There is no longer a \"Super Admin\" role."
725
- msgstr ""
726
-
727
- #: Application/Backend/view/index.phtml:331
728
- msgid ""
729
- "You are not longer allowed to delete any user or group or users (but you "
730
- "still can do it within native WordPress interface)."
731
- msgstr ""
732
-
733
- #: Application/Backend/view/index.phtml:332
734
- msgid ""
735
- "You are not allowed to delete any capability (even the one that you created "
736
- "manually)."
737
- msgstr ""
738
-
739
- #: Application/Backend/view/index.phtml:336
740
- #, php-format
741
- msgid ""
742
- "You can rolleback to the earlier version of AAM by simply downloading any "
743
- "previous version on %sthis page%s. After download, replace the wp-content/"
744
- "plugins/advanced-access-manager directory with the archive's content."
745
- msgstr ""
746
-
747
- #: Application/Backend/view/index.phtml:339
748
- msgid "Ok, got it"
749
- msgstr ""
750
-
751
  #: Application/Backend/view/object/capability.phtml:13
752
  msgid "Filter"
753
  msgstr ""
@@ -793,6 +718,10 @@ msgstr ""
793
  msgid "Reset"
794
  msgstr ""
795
 
 
 
 
 
796
  #: Application/Backend/view/object/metabox.phtml:13
797
  msgid "Refresh"
798
  msgstr ""
@@ -830,7 +759,7 @@ msgstr ""
830
 
831
  #: Application/Backend/view/object/post.phtml:43
832
  #: Application/Backend/view/object/post.phtml:48
833
- #: Application/Backend/view/object/post.phtml:152
834
  msgid "Go Back"
835
  msgstr ""
836
 
@@ -839,7 +768,7 @@ msgid "Frontend"
839
  msgstr ""
840
 
841
  #: Application/Backend/view/object/post.phtml:62
842
- #: Application/Backend/view/object/post.phtml:110
843
  msgid "List"
844
  msgstr ""
845
 
@@ -848,7 +777,7 @@ msgid "Filter (exclude) post from any list on your website frontend."
848
  msgstr ""
849
 
850
  #: Application/Backend/view/object/post.phtml:65
851
- #: Application/Backend/view/object/post.phtml:113
852
  msgid "Warning!"
853
  msgstr ""
854
 
@@ -877,69 +806,69 @@ msgid ""
877
  "Restrict access to comment on a post (if commenting feature is activated)."
878
  msgstr ""
879
 
880
- #: Application/Backend/view/object/post.phtml:112
881
  msgid "Filter (exclude) post from any list on your website backend."
882
  msgstr ""
883
 
884
- #: Application/Backend/view/object/post.phtml:114
885
  msgid ""
886
  "If checked, this property may slowdown your backend with large amount of "
887
  "posts."
888
  msgstr ""
889
 
890
- #: Application/Backend/view/object/post.phtml:127
891
  msgid ""
892
  "Restrict access to edit a post (also the link \"Edit\" and \"Quick Edit\" "
893
  "will be removed below the post title)."
894
  msgstr ""
895
 
896
- #: Application/Backend/view/object/post.phtml:138
897
  msgid "Delete"
898
  msgstr ""
899
 
900
- #: Application/Backend/view/object/post.phtml:140
901
  msgid ""
902
  "Restrict access to trash or permanently delete a post (also the link \"Trash"
903
  "\" or \"Delete Permanently\" will be removed for a post)."
904
  msgstr ""
905
 
906
- #: Application/Backend/view/object/post.phtml:161
907
  msgid "Inheritance"
908
  msgstr ""
909
 
910
- #: Application/Backend/view/object/post.phtml:164
911
  msgid ""
912
  "If no access settings defined for post* or category* AAM triggers the "
913
  "inheritance mechanism in order listed below. The inheritance process "
914
  "terminates when the first defined set of settings is found."
915
  msgstr ""
916
 
917
- #: Application/Backend/view/object/post.phtml:166
918
  msgid "If caching is on, read the cached settings"
919
  msgstr ""
920
 
921
- #: Application/Backend/view/object/post.phtml:167
922
  msgid "Read post's or category's settings"
923
  msgstr ""
924
 
925
- #: Application/Backend/view/object/post.phtml:168
926
  msgid ""
927
  "If AAM Plus Package installed, iterate through the tree of parent categories "
928
  "and read settings"
929
  msgstr ""
930
 
931
- #: Application/Backend/view/object/post.phtml:169
932
  msgid ""
933
  "If AAM Plus Package installed, read the default access settings for posts or "
934
  "categories"
935
  msgstr ""
936
 
937
- #: Application/Backend/view/object/post.phtml:170
938
  msgid ""
939
  "If user, read settings from the parent role and repeat the same sequence of "
940
  "steps"
941
  msgstr ""
942
 
943
- #: Application/Backend/view/object/post.phtml:190
944
  msgid "Reset Information"
945
  msgstr ""
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: AAM\n"
5
+ "POT-Creation-Date: 2016-04-23 16:56-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 1.8.7\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:43 media/js/aam-ui.js:1338
21
  #: Application/Backend/Localization.php:23
22
  msgid "Loading..."
23
  msgstr ""
24
 
25
  #: media/js/aam-ui.js:48 Application/Backend/Localization.php:24
26
+ #: Application/Backend/view/index.phtml:151
27
  msgid "Select Role"
28
  msgstr ""
29
 
30
+ #: media/js/aam-ui.js:82 Application/Backend/Localization.php:25
31
  msgid "Search Role"
32
  msgstr ""
33
 
34
+ #: media/js/aam-ui.js:83 Application/Backend/Localization.php:26
35
  msgid "_TOTAL_ role(s)"
36
  msgstr ""
37
 
38
+ #: media/js/aam-ui.js:90 media/js/aam-ui.js:442
39
  #: Application/Backend/Localization.php:27
40
  #: Application/Backend/view/object/capability.phtml:23
41
  msgid "Create"
42
  msgstr ""
43
 
44
+ #: media/js/aam-ui.js:115 Application/Backend/Localization.php:28
45
+ #: Application/Backend/view/index.phtml:117
46
  msgid "Users"
47
  msgstr ""
48
 
49
+ #: media/js/aam-ui.js:143 Application/Backend/Localization.php:45
50
  msgid "Manage Role"
51
  msgstr ""
52
 
53
+ #: media/js/aam-ui.js:158 Application/Backend/Localization.php:46
54
  msgid "Edit Role Name"
55
  msgstr ""
56
 
57
  #: media/js/aam-ui.js:177 media/js/aam-ui.js:317
58
  #: Application/Backend/Localization.php:35
59
  #: Application/Backend/Localization.php:47
60
+ #: Application/Backend/view/index.phtml:189
61
+ #: Application/Backend/view/index.phtml:195
62
  msgid "Delete Role"
63
  msgstr ""
64
 
65
+ #: media/js/aam-ui.js:220 media/js/aam-ui.js:264 media/js/aam-ui.js:986
66
  #: Application/Backend/Localization.php:13
67
  msgid "Saving..."
68
  msgstr ""
72
  msgstr ""
73
 
74
  #: media/js/aam-ui.js:233 media/js/aam-ui.js:276 media/js/aam-ui.js:313
75
+ #: media/js/aam-ui.js:407 media/js/aam-ui.js:755 media/js/aam-ui.js:792
76
+ #: media/js/aam-ui.js:999 media/js/aam-ui.js:1167 media/js/aam-ui.js:1208
77
+ #: media/js/aam-ui.js:1496 media/js/aam.js:222
78
  #: Application/Backend/Localization.php:15
79
  msgid "Application error"
80
  msgstr ""
81
 
82
  #: media/js/aam-ui.js:236 Application/Backend/Localization.php:30
83
+ #: Application/Backend/view/index.phtml:156
84
  msgid "Add Role"
85
  msgstr ""
86
 
124
  msgstr ""
125
 
126
  #: media/js/aam-ui.js:459 Application/Backend/Localization.php:39
127
+ #: Application/Backend/view/index.phtml:129
128
  msgid "Role"
129
  msgstr ""
130
 
136
  msgid "Edit User"
137
  msgstr ""
138
 
139
+ #: media/js/aam-ui.js:564
140
+ msgid "Switch To User"
141
+ msgstr ""
142
+
143
+ #: media/js/aam-ui.js:611 Application/Backend/Localization.php:40
144
  msgid "Anonymous"
145
  msgstr ""
146
 
147
+ #: media/js/aam-ui.js:660 Application/Backend/Localization.php:17
148
  #: Application/Backend/view/object/menu.phtml:54
149
  msgid "Show Menu"
150
  msgstr ""
151
 
152
+ #: media/js/aam-ui.js:675 Application/Backend/Localization.php:18
153
  #: Application/Backend/view/object/menu.phtml:58
154
  msgid "Hide Menu"
155
  msgstr ""
156
 
157
+ #: media/js/aam-ui.js:787 Application/Backend/Localization.php:19
158
  msgid "Failed to retrieve mataboxes"
159
  msgstr ""
160
 
161
+ #: media/js/aam-ui.js:871 Application/Backend/Localization.php:53
162
  msgid "Failed to grand capability - WordPress policy"
163
  msgstr ""
164
 
165
+ #: media/js/aam-ui.js:906 Application/Backend/Localization.php:11
166
  msgid "Search Capability"
167
  msgstr ""
168
 
169
+ #: media/js/aam-ui.js:907 Application/Backend/Localization.php:12
170
  msgid "_TOTAL_ capability(s)"
171
  msgstr ""
172
 
173
+ #: media/js/aam-ui.js:994 Application/Backend/Localization.php:14
174
  msgid "Failed to add new capability"
175
  msgstr ""
176
 
177
+ #: media/js/aam-ui.js:1002 Application/Backend/Localization.php:16
178
  #: Application/Backend/view/object/capability.phtml:52
179
  msgid "Add Capability"
180
  msgstr ""
181
 
182
+ #: media/js/aam-ui.js:1152
183
  msgid "parent role"
184
  msgstr ""
185
 
186
+ #: media/js/aam-ui.js:1154
187
  msgid "default settings"
188
  msgstr ""
189
 
190
+ #: media/js/aam-ui.js:1156
191
  msgid "parent category"
192
  msgstr ""
193
 
194
+ #: media/js/aam-ui.js:1248 Application/Backend/Localization.php:20
195
  msgid "Search"
196
  msgstr ""
197
 
198
+ #: media/js/aam-ui.js:1249 Application/Backend/Localization.php:21
199
  msgid "_TOTAL_ object(s)"
200
  msgstr ""
201
 
202
+ #: media/js/aam-ui.js:1327 Application/Backend/Localization.php:22
203
  msgid "Failed"
204
  msgstr ""
205
 
206
+ #: media/js/aam-ui.js:1357
207
+ msgid "Drill-Down"
208
+ msgstr ""
209
+
210
+ #: media/js/aam-ui.js:1369 Application/Backend/Localization.php:43
211
  msgid "Manage Access"
212
  msgstr ""
213
 
214
+ #: media/js/aam-ui.js:1380 Application/Backend/Localization.php:44
215
+ #: Application/Backend/view/object/post.phtml:126
216
  msgid "Edit"
217
  msgstr ""
218
 
219
+ #: media/js/aam.js:109 Application/Backend/Localization.php:52
220
  msgid ""
221
  "Javascript error detected during the page load. AAM may not function "
222
  "properly."
223
  msgstr ""
224
 
225
+ #: media/js/aam.js:161
226
  msgid "Current "
227
  msgstr ""
228
 
229
+ #: Application/Backend/Capability.php:164
230
+ #: Application/Backend/Capability.php:203
231
  msgid "System"
232
  msgstr ""
233
 
234
+ #: Application/Backend/Capability.php:165
235
+ #: Application/Backend/Capability.php:205 Application/Backend/Post.php:348
236
  msgid "Posts & Pages"
237
  msgstr ""
238
 
239
+ #: Application/Backend/Capability.php:166
240
+ #: Application/Backend/Capability.php:207
241
+ #: Application/Backend/view/object/post.phtml:105
242
  msgid "Backend"
243
  msgstr ""
244
 
245
+ #: Application/Backend/Capability.php:167
246
+ #: Application/Backend/Capability.php:209
247
  msgid "Miscellaneous"
248
  msgstr ""
249
 
250
+ #: Application/Backend/Capability.php:228
251
  #: Application/Backend/view/index.phtml:77
252
  msgid "Capabilities"
253
  msgstr ""
261
  msgid "Extensions"
262
  msgstr ""
263
 
264
+ #: Application/Backend/Filter.php:196 Application/Core/API.php:182
265
  msgid "Access Denied"
266
  msgstr ""
267
 
273
  msgid "Current role"
274
  msgstr ""
275
 
276
+ #: Application/Backend/Manager.php:97
277
  #, php-format
278
  msgid "Extension %s has new update available for download."
279
  msgstr ""
280
 
281
+ #: Application/Backend/Manager.php:143
282
  msgid "AAM caching is off. To speed-up the website turn it on."
283
  msgstr ""
284
 
285
+ #: Application/Backend/Manager.php:146
286
  msgid "Read more."
287
  msgstr ""
288
 
289
+ #: Application/Backend/Manager.php:184 Application/Backend/Manager.php:299
290
+ #: Application/Backend/Manager.php:300
291
  msgid "AAM"
292
  msgstr ""
293
 
309
 
310
  #: Application/Backend/ProductList.php:17
311
  msgid ""
 
 
 
 
 
 
312
  "Unlock limitations related to Posts and Pages feature. Extend basic AAM "
313
  "functionality with Page Categories and ability to manage access to your "
314
  "comments (AAM Plus Package adds new capabilities to the default list of "
316
  "etc.)"
317
  msgstr ""
318
 
319
+ #: Application/Backend/ProductList.php:27
320
  msgid ""
321
  "Extension for more advanced user and role administration. Based on user's "
322
  "highest level capability, filter list of roles with higher level. Also "
323
  "prevent from editing, promoting or deleting higher level users."
324
  msgstr ""
325
 
326
+ #: Application/Backend/ProductList.php:37
327
+ msgid ""
328
+ "Development license gives you an ability to download all the available "
329
+ "extensions and use them to up to 5 life domains."
330
+ msgstr ""
331
+
332
  #: Application/Backend/ProductList.php:46
333
  msgid "Various useful tools for AAM like caching or clear all settings."
334
  msgstr ""
340
  "switch between different sites."
341
  msgstr ""
342
 
343
+ #: Application/Backend/ProductList.php:70
344
+ msgid ""
345
+ "Skeleton for custom AAM extension. Please find all necessary documentation "
346
+ "inside the source code."
347
+ msgstr ""
348
+
349
+ #: Application/Backend/ProductList.php:77
350
+ msgid "Instant switching between user accounts in WordPress. "
351
+ msgstr ""
352
+
353
+ #: Application/Core/Repository.php:254
354
  #, php-format
355
  msgid "Failed to create %s"
356
  msgstr ""
357
 
358
+ #: Application/Core/Repository.php:258
359
  #, php-format
360
  msgid "Directory %s is not writable"
361
  msgstr ""
362
 
363
+ #: aam.php:155
364
  msgid "PHP 5.2 or higher is required."
365
  msgstr ""
366
 
367
+ #: aam.php:157
368
  msgid "WP 3.8 or higher is required."
369
  msgstr ""
370
 
377
  msgstr ""
378
 
379
  #: Application/Backend/view/extension.phtml:19
380
+ #: Application/Backend/view/extension.phtml:48
381
  msgid "Install"
382
  msgstr ""
383
 
386
  msgstr ""
387
 
388
  #: Application/Backend/view/extension.phtml:27
389
+ #: Application/Backend/view/index.phtml:130
390
+ #: Application/Backend/view/index.phtml:227
391
  msgid "Action"
392
  msgstr ""
393
 
396
  msgstr ""
397
 
398
  #: Application/Backend/view/extension.phtml:41
399
+ #: Application/Backend/view/extension.phtml:50
400
  msgid "Installed"
401
  msgstr ""
402
 
404
  msgid "Purchase"
405
  msgstr ""
406
 
407
+ #: Application/Backend/view/extension.phtml:53
408
+ #: Application/Backend/view/extension.phtml:89
409
  msgid "Download"
410
  msgstr ""
411
 
412
+ #: Application/Backend/view/extension.phtml:62
413
  msgid "All extensions are installed and up to date."
414
  msgstr ""
415
 
416
+ #: Application/Backend/view/extension.phtml:73
417
+ #: Application/Backend/view/extension.phtml:100
418
+ #: Application/Backend/view/extension.phtml:109
419
  #: Application/Backend/view/index.phtml:24
420
+ #: Application/Backend/view/index.phtml:140
421
+ #: Application/Backend/view/index.phtml:157
422
+ #: Application/Backend/view/index.phtml:167
423
+ #: Application/Backend/view/index.phtml:178
424
+ #: Application/Backend/view/index.phtml:188
425
+ #: Application/Backend/view/index.phtml:196
426
+ #: Application/Backend/view/index.phtml:206
427
+ #: Application/Backend/view/index.phtml:237
428
  #: Application/Backend/view/object/capability.phtml:42
429
  #: Application/Backend/view/object/capability.phtml:53
430
+ #: Application/Backend/view/object/post.phtml:162
431
+ #: Application/Backend/view/object/post.phtml:191
432
  msgid "Close"
433
  msgstr ""
434
 
435
+ #: Application/Backend/view/extension.phtml:74
436
+ #: Application/Backend/view/index.phtml:207
437
+ #: Application/Backend/view/index.phtml:238
438
  msgid "Notification"
439
  msgstr ""
440
 
441
+ #: Application/Backend/view/extension.phtml:78
442
  msgid ""
443
  "Extension requires manual installation. Please follow few simple steps below."
444
  msgstr ""
445
 
446
+ #: Application/Backend/view/extension.phtml:90
447
  msgid "Cancel"
448
  msgstr ""
449
 
450
+ #: Application/Backend/view/extension.phtml:101
451
  msgid "Install Extension Info"
452
  msgstr ""
453
 
454
+ #: Application/Backend/view/extension.phtml:105
455
  msgid ""
456
  "In order to install the extension, please use license number that you "
457
  "recieved after the payment was completed successfully (it might take up to 2 "
473
  msgstr ""
474
 
475
  #: Application/Backend/view/index.phtml:35
476
+ #: Application/Backend/view/index.phtml:213
477
+ #: Application/Backend/view/index.phtml:244
478
+ #: Application/Backend/view/object/post.phtml:181
479
+ #: Application/Backend/view/object/post.phtml:198
480
  msgid "OK"
481
  msgstr ""
482
 
573
  "within next 3 business days."
574
  msgstr ""
575
 
576
+ #: Application/Backend/view/index.phtml:110
577
  msgid "User/Role Manager"
578
  msgstr ""
579
 
580
+ #: Application/Backend/view/index.phtml:116
581
  msgid "Roles"
582
  msgstr ""
583
 
584
+ #: Application/Backend/view/index.phtml:119
585
  msgid "Visitor"
586
  msgstr ""
587
 
588
+ #: Application/Backend/view/index.phtml:141
589
  msgid "Add New Role"
590
  msgstr ""
591
 
592
+ #: Application/Backend/view/index.phtml:145
593
+ #: Application/Backend/view/index.phtml:172
594
  msgid "Role Name"
595
  msgstr ""
596
 
597
+ #: Application/Backend/view/index.phtml:146
598
+ #: Application/Backend/view/index.phtml:173
599
  msgid "Enter Role Name"
600
  msgstr ""
601
 
602
+ #: Application/Backend/view/index.phtml:149
603
  msgid "Inherit Capabilities"
604
  msgstr ""
605
 
606
+ #: Application/Backend/view/index.phtml:168
607
  msgid "Edit Role"
608
  msgstr ""
609
 
610
+ #: Application/Backend/view/index.phtml:177
611
  msgid "Update Role"
612
  msgstr ""
613
 
614
+ #: Application/Backend/view/index.phtml:192
615
  #, php-format
616
  msgid "Are you sure that you want to delete %s role?"
617
  msgstr ""
618
 
619
+ #: Application/Backend/view/index.phtml:210
620
  msgid ""
621
  "You are not allowed to delete this role because either you do not have a "
622
  "capability to \"Delete Users\" or there is at least one user assigned to it."
623
  msgstr ""
624
 
625
+ #: Application/Backend/view/index.phtml:226
626
  msgid "Username"
627
  msgstr ""
628
 
629
+ #: Application/Backend/view/index.phtml:241
630
  msgid "You are not allowed to perform this action."
631
  msgstr ""
632
 
633
+ #: Application/Backend/view/index.phtml:254
634
  msgid ""
635
  "Manage access to your website for visitors (any user that is not "
636
  "authenticated)"
637
  msgstr ""
638
 
639
+ #: Application/Backend/view/index.phtml:255
640
  msgid "Manage Visitor"
641
  msgstr ""
642
 
643
+ #: Application/Backend/view/index.phtml:267
644
  msgid "Role Manager"
645
  msgstr ""
646
 
647
+ #: Application/Backend/view/index.phtml:268
648
  msgid ""
649
  "With role manager you can manage access for any defined role, edit role's "
650
  "name, create new role or even delete existing (but only when there is no "
651
  "users assigned to it). You are not allowed to delete Administrator role."
652
  msgstr ""
653
 
654
+ #: Application/Backend/view/index.phtml:272
655
  msgid "User Manager"
656
  msgstr ""
657
 
658
+ #: Application/Backend/view/index.phtml:273
659
  msgid ""
660
  "Manage access for any user. As a bonus feature, you can block user. It means "
661
  "that user will be not able to login to your website anymore. Create or edit "
662
  "user actions link to the native WordPress create/edit user interface."
663
  msgstr ""
664
 
665
+ #: Application/Backend/view/index.phtml:277
666
  msgid "Visitor Manager"
667
  msgstr ""
668
 
669
+ #: Application/Backend/view/index.phtml:278
670
  msgid ""
671
  "Visitor is any user that is not authenticated to your website. Considering "
672
  "the fact that visitors do not have any access to backend, any features that "
673
  "ara backend related are disabled."
674
  msgstr ""
675
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
676
  #: Application/Backend/view/object/capability.phtml:13
677
  msgid "Filter"
678
  msgstr ""
718
  msgid "Reset"
719
  msgstr ""
720
 
721
+ #: Application/Backend/view/object/menu.phtml:15
722
+ msgid "If checked, then menu is filtered."
723
+ msgstr ""
724
+
725
  #: Application/Backend/view/object/metabox.phtml:13
726
  msgid "Refresh"
727
  msgstr ""
759
 
760
  #: Application/Backend/view/object/post.phtml:43
761
  #: Application/Backend/view/object/post.phtml:48
762
+ #: Application/Backend/view/object/post.phtml:154
763
  msgid "Go Back"
764
  msgstr ""
765
 
768
  msgstr ""
769
 
770
  #: Application/Backend/view/object/post.phtml:62
771
+ #: Application/Backend/view/object/post.phtml:111
772
  msgid "List"
773
  msgstr ""
774
 
777
  msgstr ""
778
 
779
  #: Application/Backend/view/object/post.phtml:65
780
+ #: Application/Backend/view/object/post.phtml:114
781
  msgid "Warning!"
782
  msgstr ""
783
 
806
  "Restrict access to comment on a post (if commenting feature is activated)."
807
  msgstr ""
808
 
809
+ #: Application/Backend/view/object/post.phtml:113
810
  msgid "Filter (exclude) post from any list on your website backend."
811
  msgstr ""
812
 
813
+ #: Application/Backend/view/object/post.phtml:115
814
  msgid ""
815
  "If checked, this property may slowdown your backend with large amount of "
816
  "posts."
817
  msgstr ""
818
 
819
+ #: Application/Backend/view/object/post.phtml:128
820
  msgid ""
821
  "Restrict access to edit a post (also the link \"Edit\" and \"Quick Edit\" "
822
  "will be removed below the post title)."
823
  msgstr ""
824
 
825
+ #: Application/Backend/view/object/post.phtml:139
826
  msgid "Delete"
827
  msgstr ""
828
 
829
+ #: Application/Backend/view/object/post.phtml:141
830
  msgid ""
831
  "Restrict access to trash or permanently delete a post (also the link \"Trash"
832
  "\" or \"Delete Permanently\" will be removed for a post)."
833
  msgstr ""
834
 
835
+ #: Application/Backend/view/object/post.phtml:163
836
  msgid "Inheritance"
837
  msgstr ""
838
 
839
+ #: Application/Backend/view/object/post.phtml:166
840
  msgid ""
841
  "If no access settings defined for post* or category* AAM triggers the "
842
  "inheritance mechanism in order listed below. The inheritance process "
843
  "terminates when the first defined set of settings is found."
844
  msgstr ""
845
 
846
+ #: Application/Backend/view/object/post.phtml:168
847
  msgid "If caching is on, read the cached settings"
848
  msgstr ""
849
 
850
+ #: Application/Backend/view/object/post.phtml:169
851
  msgid "Read post's or category's settings"
852
  msgstr ""
853
 
854
+ #: Application/Backend/view/object/post.phtml:170
855
  msgid ""
856
  "If AAM Plus Package installed, iterate through the tree of parent categories "
857
  "and read settings"
858
  msgstr ""
859
 
860
+ #: Application/Backend/view/object/post.phtml:171
861
  msgid ""
862
  "If AAM Plus Package installed, read the default access settings for posts or "
863
  "categories"
864
  msgstr ""
865
 
866
+ #: Application/Backend/view/object/post.phtml:172
867
  msgid ""
868
  "If user, read settings from the parent role and repeat the same sequence of "
869
  "steps"
870
  msgstr ""
871
 
872
+ #: Application/Backend/view/object/post.phtml:192
873
  msgid "Reset Information"
874
  msgstr ""
aam.php CHANGED
@@ -3,7 +3,7 @@
3
  /**
4
  Plugin Name: Advanced Access Manager
5
  Description: Manage User and Role Access to WordPress Backend and Frontend.
6
- Version: 3.1.5
7
  Author: Vasyl Martyniuk <vasyl@vasyltech.com>
8
  Author URI: http://www.vasyltech.com
9
 
3
  /**
4
  Plugin Name: Advanced Access Manager
5
  Description: Manage User and Role Access to WordPress Backend and Frontend.
6
+ Version: 3.2
7
  Author: Vasyl Martyniuk <vasyl@vasyltech.com>
8
  Author URI: http://www.vasyltech.com
9
 
readme.txt CHANGED
@@ -2,15 +2,15 @@
2
  Contributors: vasyltech
3
  Tags: access, access manager, role, user, capability, admin, page, post, widget
4
  Requires at least: 3.8
5
- Tested up to: 4.4
6
- Stable tag: 3.1.5
7
 
8
  One of the best tools in WordPress repository to manage access to your posts,
9
  pages, categories and backend area for users, roles and visitors.
10
 
11
  == Description ==
12
 
13
- > Advanced Access Manager (aka AAM) is the only free plugin that allows you to
14
  > control access to your posts, pages or backend area on user, visitor and role
15
  > levels.
16
 
@@ -45,6 +45,11 @@ out more about the Advanced Access Manager.
45
 
46
  == Changelog ==
47
 
 
 
 
 
 
48
  = 3.1.5 =
49
  * Improved UI
50
  * Fixed the bug reported by WP Error Fix
2
  Contributors: vasyltech
3
  Tags: access, access manager, role, user, capability, admin, page, post, widget
4
  Requires at least: 3.8
5
+ Tested up to: 4.5.2
6
+ Stable tag: 3.2
7
 
8
  One of the best tools in WordPress repository to manage access to your posts,
9
  pages, categories and backend area for users, roles and visitors.
10
 
11
  == Description ==
12
 
13
+ > Advanced Access Manager (aka AAM) is probably the only plugin that allows you to
14
  > control access to your posts, pages or backend area on user, visitor and role
15
  > levels.
16
 
45
 
46
  == Changelog ==
47
 
48
+ = 3.2 =
49
+ * Fixed minor bug reporetd by WP Error Fix
50
+ * Extended core functionality to support filter by author for Plus Package
51
+ * Added Contact Us tab
52
+
53
  = 3.1.5 =
54
  * Improved UI
55
  * Fixed the bug reported by WP Error Fix