Advanced Access Manager - Version 5.0.1

Version Description

  • Fixed bug with extension updates status
  • Fixed bug in post core handling caused by incompatibility with unknown plugin
  • Improved UI notification with more insides about the issue
Download this release

Release Info

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

Code changes from version 5.0 to 5.0.1

Application/Backend/phtml/index.phtml CHANGED
@@ -16,7 +16,7 @@
16
  </h3>
17
  <div class="inside" id="access-manager-inside">
18
  <div class="aam-postbox-inside" id="aam-content">
19
- <p class="alert alert-info text-larger text-center" id="aam-initial-load"><?php echo AAM_Backend_View_Helper::preparePhrase('[Loading AAM UI]. Please wait few seconds. If content will not load within next 30 seconds, clear your browser cache and reload the page. If still nothing, it is most likely some sort of JavaScript or CSS conflict with one your active plugins or theme.', 'strong'); ?></p>
20
  </div>
21
  <div class="aam-help-context" >
22
  <div class="text-justify aam-large-padding">
@@ -84,7 +84,7 @@
84
  <div class="postbox">
85
  <div class="inside">
86
  <div class="aam-postbox-inside text-center">
87
- <p class="alert alert-info text-larger"><?php echo AAM_Backend_View_Helper::preparePhrase('The [Development Package] allows you to get all premium extensions for [unlimited number of websites].', 'i', 'b'); ?></p>
88
  <a href="https://aamplugin.com/development-package" target="_blank" class="btn btn-sm btn-primary btn-block"><i class="icon-link"></i> <?php echo __('Read More', AAM_KEY); ?></a>
89
  </div>
90
  </div>
16
  </h3>
17
  <div class="inside" id="access-manager-inside">
18
  <div class="aam-postbox-inside" id="aam-content">
19
+ <p class="alert alert-info text-larger text-center" id="aam-initial-load"><?php echo AAM_Backend_View_Helper::preparePhrase('[Loading AAM UI]. Please wait. If content will not load within next 30 seconds, clear your browser cache and reload the page. If still nothing, it is most likely some sort of JavaScript or CSS conflict with one your active plugins or theme. Try to deactivate all plugins and switch to any default WordPress theme to find out what causes the issue.', 'strong'); ?></p>
20
  </div>
21
  <div class="aam-help-context" >
22
  <div class="text-justify aam-large-padding">
84
  <div class="postbox">
85
  <div class="inside">
86
  <div class="aam-postbox-inside text-center">
87
+ <p class="alert alert-info text-larger highlighted-italic"><?php echo AAM_Backend_View_Helper::preparePhrase('The [Development Package] allows you to get all premium extensions for [unlimited number of websites].', 'i', 'b'); ?></p>
88
  <a href="https://aamplugin.com/development-package" target="_blank" class="btn btn-sm btn-primary btn-block"><i class="icon-link"></i> <?php echo __('Read More', AAM_KEY); ?></a>
89
  </div>
90
  </div>
Application/Core/Object/Post.php CHANGED
@@ -57,7 +57,7 @@ class AAM_Core_Object_Post extends AAM_Core_Object {
57
  public function __get($name) {
58
  $post = $this->getPost();
59
 
60
- return (property_exists($post, $name) ? $post->$name : null);
61
  }
62
 
63
  /**
57
  public function __get($name) {
58
  $post = $this->getPost();
59
 
60
+ return (is_object($post) && property_exists($post, $name) ? $post->$name : null);
61
  }
62
 
63
  /**
Application/Extension/Repository.php CHANGED
@@ -125,8 +125,10 @@ class AAM_Extension_Repository {
125
  } else { // TODO - Remove May 2018
126
  AAM_Core_Console::add(AAM_Backend_View_Helper::preparePhrase(
127
  sprintf(
128
- __('The [%s] file is missing. Update all your extensions to the latest version.', AAM_KEY),
129
- str_replace(AAM_EXTENSION_BASE . '/', '', $config)
 
 
130
  ),
131
  'b'
132
  ));
@@ -260,7 +262,8 @@ class AAM_Extension_Repository {
260
 
261
  if (!defined($id)) {
262
  $status = AAM_Extension_Repository::STATUS_DOWNLOAD;
263
- } elseif (empty($stored[$id]['status'])) {
 
264
  $status = AAM_Extension_Repository::STATUS_INSTALLED;
265
 
266
  if ($item['type'] == 'commercial') {
125
  } else { // TODO - Remove May 2018
126
  AAM_Core_Console::add(AAM_Backend_View_Helper::preparePhrase(
127
  sprintf(
128
+ __('The [%s] file is missing. Update extension to the latest version. %sRead more.%s', AAM_KEY),
129
+ str_replace(AAM_EXTENSION_BASE . '/', '', $config),
130
+ '<a href="https://aamplugin.com/help/how-to-fix-the-config-php-file-is-missing-notification" target="_blank">',
131
+ '</a>'
132
  ),
133
  'b'
134
  ));
262
 
263
  if (!defined($id)) {
264
  $status = AAM_Extension_Repository::STATUS_DOWNLOAD;
265
+ } elseif (empty($stored[$id]['status'])
266
+ || $stored[$id]['status'] == AAM_Extension_Repository::STATUS_INSTALLED) {
267
  $status = AAM_Extension_Repository::STATUS_INSTALLED;
268
 
269
  if ($item['type'] == 'commercial') {
Application/Shortcode/Strategy/LoginRedirect.php CHANGED
@@ -32,7 +32,6 @@ class AAM_Shortcode_Strategy_LoginRedirect implements AAM_Shortcode_Strategy_Int
32
  *
33
  * Expecting attributes in $args are:
34
  * "class" => CSS class for login button
35
- * "label" => Login button label
36
  * "callback" => callback function that returns the login button
37
  *
38
  * @param type $args
@@ -50,7 +49,6 @@ class AAM_Shortcode_Strategy_LoginRedirect implements AAM_Shortcode_Strategy_Int
50
  public function run() {
51
  $redirect = AAM_Core_Request::server('REQUEST_URI');
52
  $class = (isset($this->args['class']) ? $this->args['class'] : '');
53
- $label = (isset($this->args['label']) ? $this->args['label'] : 'Login');
54
 
55
  if (isset($this->args['callback'])) {
56
  $button = call_user_func($this->args['callback'], $this);
@@ -62,7 +60,7 @@ class AAM_Shortcode_Strategy_LoginRedirect implements AAM_Shortcode_Strategy_Int
62
  );
63
 
64
  $button = '<a href="' . $url . '" ';
65
- $button .= 'class="' . $class . '">' . $label . '</a>';
66
  }
67
 
68
  return $button;
32
  *
33
  * Expecting attributes in $args are:
34
  * "class" => CSS class for login button
 
35
  * "callback" => callback function that returns the login button
36
  *
37
  * @param type $args
49
  public function run() {
50
  $redirect = AAM_Core_Request::server('REQUEST_URI');
51
  $class = (isset($this->args['class']) ? $this->args['class'] : '');
 
52
 
53
  if (isset($this->args['callback'])) {
54
  $button = call_user_func($this->args['callback'], $this);
60
  );
61
 
62
  $button = '<a href="' . $url . '" ';
63
+ $button .= 'class="' . $class . '">' . $this->content . '</a>';
64
  }
65
 
66
  return $button;
Lang/advanced-access-manager-en_US.mo CHANGED
Binary file
Lang/advanced-access-manager-en_US.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AAM\n"
4
- "POT-Creation-Date: 2017-11-26 16:25-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Language-Team: WP AAM <vasyl@vasyltech.com>\n"
7
  "MIME-Version: 1.0\n"
@@ -10,7 +10,7 @@ msgstr ""
10
  "X-Generator: Poedit 2.0.4\n"
11
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
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"
@@ -88,6 +88,14 @@ msgstr ""
88
  msgid "Media Files Access Control"
89
  msgstr ""
90
 
 
 
 
 
 
 
 
 
91
  #: Application/Backend/Feature/Settings/Content.php:37
92
  msgid "Check Post Visibility"
93
  msgstr ""
@@ -119,6 +127,13 @@ msgstr ""
119
  msgid "Edit/Delete Capabilities"
120
  msgstr ""
121
 
 
 
 
 
 
 
 
122
  #: Application/Backend/Feature/Settings/Core.php:37
123
  msgid "Backend Access Control"
124
  msgstr ""
@@ -270,15 +285,15 @@ msgid "_TOTAL_ role(s)"
270
  msgstr ""
271
 
272
  #: Application/Backend/View/Localization.php:42 media/js/aam.js:129
273
- #: media/js/aam.js:602 Application/Backend/phtml/index.phtml:170
274
  #: Application/Backend/phtml/main/capability.phtml:26
275
  #: Application/Backend/phtml/main/capability.phtml:64
276
  msgid "Create"
277
  msgstr ""
278
 
279
  #: Application/Backend/View/Localization.php:43 media/js/aam.js:153
280
- #: Application/Backend/phtml/index.phtml:124
281
- #: Application/Backend/phtml/index.phtml:267
282
  msgid "Users"
283
  msgstr ""
284
 
@@ -297,7 +312,7 @@ msgstr ""
297
  #: Application/Backend/View/Localization.php:47 media/js/aam.js:403
298
  #: Application/Backend/phtml/extensions.phtml:51
299
  #: Application/Backend/phtml/extensions.phtml:78
300
- #: Application/Backend/phtml/index.phtml:196
301
  #: Application/Backend/phtml/main/capability.phtml:86
302
  #: Application/Backend/phtml/partial/post-advanced-settings.phtml:16
303
  #: Application/Backend/phtml/partial/post-advanced-settings.phtml:37
@@ -318,7 +333,7 @@ msgstr ""
318
 
319
  #: Application/Backend/View/Localization.php:50
320
  #: Application/Backend/View/Localization.php:62 media/js/aam.js:251
321
- #: media/js/aam.js:440 Application/Backend/phtml/index.phtml:208
322
  msgid "Delete Role"
323
  msgstr ""
324
 
@@ -336,7 +351,7 @@ msgstr ""
336
 
337
  #: Application/Backend/View/Localization.php:54 media/js/aam.js:619
338
  #: Application/Backend/phtml/frame.phtml:46
339
- #: Application/Backend/phtml/index.phtml:141
340
  msgid "Role"
341
  msgstr ""
342
 
@@ -525,6 +540,14 @@ msgstr ""
525
  msgid "E-Product"
526
  msgstr ""
527
 
 
 
 
 
 
 
 
 
528
  #: Application/Backend/View/PostOptionList.php:87
529
  #, php-format
530
  msgid ""
@@ -541,7 +564,7 @@ msgid ""
541
  msgstr ""
542
 
543
  #: Application/Backend/View/PostOptionList.php:96
544
- #: Application/Backend/phtml/index.phtml:214
545
  #: Application/Backend/phtml/main/capability.phtml:104
546
  msgid "Delete"
547
  msgstr ""
@@ -587,18 +610,26 @@ msgstr ""
587
  msgid "All Users, Roles and Visitor"
588
  msgstr ""
589
 
 
 
 
 
 
 
 
590
  #: Application/Extension/Repository.php:128
591
  #, php-format
592
  msgid ""
593
- "The [%s] file is missing. Update all your extensions to the latest version."
 
594
  msgstr ""
595
 
596
- #: Application/Extension/Repository.php:304
597
  #, php-format
598
  msgid "Failed to create %s"
599
  msgstr ""
600
 
601
- #: Application/Extension/Repository.php:308
602
  #, php-format
603
  msgid "Directory %s is not writable"
604
  msgstr ""
@@ -714,6 +745,19 @@ msgstr ""
714
  msgid "Invalid data format"
715
  msgstr ""
716
 
 
 
 
 
 
 
 
 
 
 
 
 
 
717
  #: Application/Backend/phtml/extensions.phtml:11
718
  msgid "Install/Update Extension"
719
  msgstr ""
@@ -750,7 +794,7 @@ msgid "Activate"
750
  msgstr ""
751
 
752
  #: Application/Backend/phtml/extensions.phtml:55
753
- #: Application/Backend/phtml/index.phtml:89
754
  msgid "Read More"
755
  msgstr ""
756
 
@@ -762,12 +806,12 @@ msgstr ""
762
  #: Application/Backend/phtml/extensions.phtml:97
763
  #: Application/Backend/phtml/extensions.phtml:128
764
  #: Application/Backend/phtml/extensions.phtml:139
765
- #: Application/Backend/phtml/index.phtml:154
766
- #: Application/Backend/phtml/index.phtml:171
767
- #: Application/Backend/phtml/index.phtml:181
768
- #: Application/Backend/phtml/index.phtml:197
769
- #: Application/Backend/phtml/index.phtml:207
770
- #: Application/Backend/phtml/index.phtml:215
771
  #: Application/Backend/phtml/main/capability.phtml:54
772
  #: Application/Backend/phtml/main/capability.phtml:65
773
  #: Application/Backend/phtml/main/capability.phtml:75
@@ -802,6 +846,33 @@ msgid ""
802
  "Extension requires manual installation. Please follow few simple steps below."
803
  msgstr ""
804
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
805
  #: Application/Backend/phtml/extensions.phtml:118
806
  #: Application/Backend/phtml/settings/tools.phtml:67
807
  msgid "Cancel"
@@ -819,7 +890,7 @@ msgid ""
819
  msgstr ""
820
 
821
  #: Application/Backend/phtml/frame.phtml:62
822
- #: Application/Backend/phtml/index.phtml:229
823
  msgid "Username"
824
  msgstr ""
825
 
@@ -829,7 +900,7 @@ msgid "Manage access to %s for visitors (any user that is not authenticated)"
829
  msgstr ""
830
 
831
  #: Application/Backend/phtml/frame.phtml:75
832
- #: Application/Backend/phtml/index.phtml:242
833
  msgid "Manage Visitors"
834
  msgstr ""
835
 
@@ -841,10 +912,14 @@ msgid ""
841
  msgstr ""
842
 
843
  #: Application/Backend/phtml/frame.phtml:84
844
- #: Application/Backend/phtml/index.phtml:250
845
  msgid "Manage Default Access"
846
  msgstr ""
847
 
 
 
 
 
848
  #: Application/Backend/phtml/frame.phtml:100
849
  #: Application/Backend/phtml/main/menu.phtml:13
850
  #: Application/Backend/phtml/main/metabox.phtml:19
@@ -876,6 +951,15 @@ msgstr ""
876
  msgid "Main Panel"
877
  msgstr ""
878
 
 
 
 
 
 
 
 
 
 
879
  #: Application/Backend/phtml/index.phtml:23
880
  msgid ""
881
  "Appreciate your interest in Advanced Access Manager (AAM). With strong "
@@ -887,6 +971,15 @@ msgstr ""
887
  msgid "Please Note!"
888
  msgstr ""
889
 
 
 
 
 
 
 
 
 
 
890
  #: Application/Backend/phtml/index.phtml:25
891
  msgid ""
892
  "AAM was thoroughly tested on the fresh installation of WordPress and in the "
@@ -901,106 +994,125 @@ msgid ""
901
  "functionality or %scontact us%s directly."
902
  msgstr ""
903
 
904
- #: Application/Backend/phtml/index.phtml:40
905
  msgid "Notifications"
906
  msgstr ""
907
 
908
- #: Application/Backend/phtml/index.phtml:99
 
 
 
 
 
 
909
  msgid "AAM Multisite"
910
  msgstr ""
911
 
912
- #: Application/Backend/phtml/index.phtml:103
 
 
 
 
 
 
913
  msgid "Install AAM Multisite"
914
  msgstr ""
915
 
916
- #: Application/Backend/phtml/index.phtml:114
917
  msgid "Users/Roles Manager"
918
  msgstr ""
919
 
920
- #: Application/Backend/phtml/index.phtml:121
921
- #: Application/Backend/phtml/index.phtml:262
922
  msgid "Roles"
923
  msgstr ""
924
 
925
- #: Application/Backend/phtml/index.phtml:127
926
- #: Application/Backend/phtml/index.phtml:272
927
  msgid "Visitor"
928
  msgstr ""
929
 
930
- #: Application/Backend/phtml/index.phtml:130
931
- #: Application/Backend/phtml/index.phtml:277
932
  msgid "Default"
933
  msgstr ""
934
 
935
- #: Application/Backend/phtml/index.phtml:142
936
- #: Application/Backend/phtml/index.phtml:230
937
  msgid "Action"
938
  msgstr ""
939
 
940
- #: Application/Backend/phtml/index.phtml:155
941
  msgid "Create Role"
942
  msgstr ""
943
 
944
- #: Application/Backend/phtml/index.phtml:159
945
- #: Application/Backend/phtml/index.phtml:186
946
  msgid "Role Name"
947
  msgstr ""
948
 
949
- #: Application/Backend/phtml/index.phtml:160
950
- #: Application/Backend/phtml/index.phtml:187
951
  msgid "Enter Role Name"
952
  msgstr ""
953
 
954
- #: Application/Backend/phtml/index.phtml:163
955
- #: Application/Backend/phtml/index.phtml:190
956
  msgid "Role Expiration"
957
  msgstr ""
958
 
959
- #: Application/Backend/phtml/index.phtml:164
960
- #: Application/Backend/phtml/index.phtml:191
961
  msgid "Enter Expiration Rule"
962
  msgstr ""
963
 
964
- #: Application/Backend/phtml/index.phtml:182
965
  msgid "Update Role"
966
  msgstr ""
967
 
968
- #: Application/Backend/phtml/index.phtml:211
969
  #, php-format
970
  msgid "Are you sure that you want to delete the %s role?"
971
  msgstr ""
972
 
973
- #: Application/Backend/phtml/index.phtml:241
974
  msgid ""
975
  "Manage access to your website for visitors (any user that is not "
976
  "authenticated)"
977
  msgstr ""
978
 
979
- #: Application/Backend/phtml/index.phtml:249
980
  msgid ""
981
  "Manage default access to your website resources for all users, roles and "
982
  "visitor. This includes Administrator role and your user"
983
  msgstr ""
984
 
985
- #: Application/Backend/phtml/index.phtml:263
 
 
 
 
 
 
 
986
  msgid ""
987
  "With Roles tab you can manage access for any defined role, edit role's name, "
988
  "create new role or even delete existing (but only when there is no users "
989
  "assigned to it). You are not allowed to delete Administrator role."
990
  msgstr ""
991
 
992
- #: Application/Backend/phtml/index.phtml:268
993
  msgid ""
994
  "Manage access for any user. As a bonus feature, you can block user. It means "
995
  "that user will be not able to login to your website anymore."
996
  msgstr ""
997
 
998
- #: Application/Backend/phtml/index.phtml:273
999
  msgid ""
1000
  "Visitor can be considered any user that is not authenticated to your website."
1001
  msgstr ""
1002
 
1003
- #: Application/Backend/phtml/index.phtml:278
1004
  msgid ""
1005
  "Manage default access settings to your website resources for all users, "
1006
  "roles and visitors."
@@ -1010,6 +1122,36 @@ msgstr ""
1010
  msgid "You are not allowed to manage any of the existing features."
1011
  msgstr ""
1012
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1013
  #: Application/Backend/phtml/main/404redirect.phtml:36
1014
  #: Application/Backend/phtml/main/login-redirect.phtml:43
1015
  #: Application/Backend/phtml/main/logout-redirect.phtml:43
@@ -1042,6 +1184,19 @@ msgstr ""
1042
  msgid "PHP Callback Function"
1043
  msgstr ""
1044
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1045
  #: Application/Backend/phtml/main/capability.phtml:16
1046
  msgid "Filter"
1047
  msgstr ""
@@ -1078,16 +1233,57 @@ msgstr ""
1078
  msgid "Enter Capability"
1079
  msgstr ""
1080
 
 
 
 
 
 
 
1081
  #: Application/Backend/phtml/main/capability.phtml:101
1082
  #, php-format
1083
  msgid "Are you sure that you want to delete %s capability for all roles?"
1084
  msgstr ""
1085
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1086
  #: Application/Backend/phtml/main/login-redirect.phtml:27
1087
  #: Application/Backend/phtml/main/logout-redirect.phtml:27
1088
  msgid "WordPress default behavior"
1089
  msgstr ""
1090
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1091
  #: Application/Backend/phtml/main/menu.phtml:87
1092
  msgid "Dashboard Lockdown"
1093
  msgstr ""
@@ -1096,10 +1292,25 @@ msgstr ""
1096
  msgid "You cannot restrict access to Dashboard home page."
1097
  msgstr ""
1098
 
 
 
 
 
 
 
 
 
1099
  #: Application/Backend/phtml/main/menu.phtml:96
1100
  msgid "OK"
1101
  msgstr ""
1102
 
 
 
 
 
 
 
 
1103
  #: Application/Backend/phtml/main/metabox.phtml:12
1104
  msgid "Refresh"
1105
  msgstr ""
@@ -1120,6 +1331,13 @@ msgstr ""
1120
  msgid "The list is not initialized. Click Refresh button above."
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
1123
  #: Application/Backend/phtml/main/metabox.phtml:90
1124
  msgid "Initialize URL"
1125
  msgstr ""
@@ -1141,6 +1359,17 @@ msgstr ""
1141
  msgid "Insert valid URL"
1142
  msgstr ""
1143
 
 
 
 
 
 
 
 
 
 
 
 
1144
  #: Application/Backend/phtml/main/post.phtml:15
1145
  #, php-format
1146
  msgid ""
@@ -1166,6 +1395,20 @@ msgstr ""
1166
  msgid "Go Back"
1167
  msgstr ""
1168
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1169
  #: Application/Backend/phtml/main/redirect.phtml:25
1170
  msgid "Frontend Redirect"
1171
  msgstr ""
@@ -1174,6 +1417,22 @@ msgstr ""
1174
  msgid "Backend Redirect"
1175
  msgstr ""
1176
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1177
  #: Application/Backend/phtml/main/redirect.phtml:62
1178
  #: Application/Backend/phtml/main/redirect.phtml:114
1179
  msgid "Customized Message"
@@ -1184,6 +1443,17 @@ msgstr ""
1184
  msgid "Enter message..."
1185
  msgstr ""
1186
 
 
 
 
 
 
 
 
 
 
 
 
1187
  #: Application/Backend/phtml/partial/post-advanced-settings.phtml:7
1188
  msgid "Define Threshold"
1189
  msgstr ""
@@ -1204,6 +1474,12 @@ msgstr ""
1204
  msgid "Define Redirect Rule"
1205
  msgstr ""
1206
 
 
 
 
 
 
 
1207
  #: Application/Backend/phtml/partial/post-advanced-settings.phtml:54
1208
  msgid "Enter Redirect Rule"
1209
  msgstr ""
@@ -1244,6 +1520,27 @@ msgstr ""
1244
  msgid "E-Commerce Setup"
1245
  msgstr ""
1246
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1247
  #: Application/Backend/phtml/partial/role-inheritance.phtml:3
1248
  msgid "Inherit Capabilities From"
1249
  msgstr ""
@@ -1252,6 +1549,14 @@ msgstr ""
1252
  msgid "Select Role"
1253
  msgstr ""
1254
 
 
 
 
 
 
 
 
 
1255
  #: Application/Backend/phtml/settings/tools.phtml:8
1256
  msgid "Export AAM Settings"
1257
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: AAM\n"
4
+ "POT-Creation-Date: 2017-12-03 15:15-0500\n"
5
  "PO-Revision-Date: \n"
6
  "Language-Team: WP AAM <vasyl@vasyltech.com>\n"
7
  "MIME-Version: 1.0\n"
10
  "X-Generator: Poedit 2.0.4\n"
11
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
12
  "X-Poedit-SourceCharset: UTF-8\n"
13
+ "X-Poedit-KeywordsList: __;preparePhrase\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "Last-Translator: \n"
16
  "Language: en_US\n"
88
  msgid "Media Files Access Control"
89
  msgstr ""
90
 
91
+ #: Application/Backend/Feature/Settings/Content.php:33
92
+ #, php-format
93
+ msgid ""
94
+ "Allow AAM to manage a physically access to all media files located in the "
95
+ "defined by the system [uploads] folder. [Note!] This feature requires "
96
+ "additional steps as described in %sthis article%s."
97
+ msgstr ""
98
+
99
  #: Application/Backend/Feature/Settings/Content.php:37
100
  msgid "Check Post Visibility"
101
  msgstr ""
127
  msgid "Edit/Delete Capabilities"
128
  msgstr ""
129
 
130
+ #: Application/Backend/Feature/Settings/Core.php:33
131
+ msgid ""
132
+ "Allow to edit or delete any existing capability on the Capabilities tab. "
133
+ "[Warning!] For experienced users only. Changing or deleting capability may "
134
+ "result in loosing access to some features or the entire website."
135
+ msgstr ""
136
+
137
  #: Application/Backend/Feature/Settings/Core.php:37
138
  msgid "Backend Access Control"
139
  msgstr ""
285
  msgstr ""
286
 
287
  #: Application/Backend/View/Localization.php:42 media/js/aam.js:129
288
+ #: media/js/aam.js:602 Application/Backend/phtml/index.phtml:169
289
  #: Application/Backend/phtml/main/capability.phtml:26
290
  #: Application/Backend/phtml/main/capability.phtml:64
291
  msgid "Create"
292
  msgstr ""
293
 
294
  #: Application/Backend/View/Localization.php:43 media/js/aam.js:153
295
+ #: Application/Backend/phtml/index.phtml:123
296
+ #: Application/Backend/phtml/index.phtml:266
297
  msgid "Users"
298
  msgstr ""
299
 
312
  #: Application/Backend/View/Localization.php:47 media/js/aam.js:403
313
  #: Application/Backend/phtml/extensions.phtml:51
314
  #: Application/Backend/phtml/extensions.phtml:78
315
+ #: Application/Backend/phtml/index.phtml:195
316
  #: Application/Backend/phtml/main/capability.phtml:86
317
  #: Application/Backend/phtml/partial/post-advanced-settings.phtml:16
318
  #: Application/Backend/phtml/partial/post-advanced-settings.phtml:37
333
 
334
  #: Application/Backend/View/Localization.php:50
335
  #: Application/Backend/View/Localization.php:62 media/js/aam.js:251
336
+ #: media/js/aam.js:440 Application/Backend/phtml/index.phtml:207
337
  msgid "Delete Role"
338
  msgstr ""
339
 
351
 
352
  #: Application/Backend/View/Localization.php:54 media/js/aam.js:619
353
  #: Application/Backend/phtml/frame.phtml:46
354
+ #: Application/Backend/phtml/index.phtml:140
355
  msgid "Role"
356
  msgstr ""
357
 
540
  msgid "E-Product"
541
  msgstr ""
542
 
543
+ #: Application/Backend/View/PostOptionList.php:80
544
+ #, php-format
545
+ msgid ""
546
+ "[Premium feature!] Start selling access to the %s. Access will be granted to "
547
+ "read, view or download %s only if selected E-Product had been purchased. For "
548
+ "more information %scheck this article%s."
549
+ msgstr ""
550
+
551
  #: Application/Backend/View/PostOptionList.php:87
552
  #, php-format
553
  msgid ""
564
  msgstr ""
565
 
566
  #: Application/Backend/View/PostOptionList.php:96
567
+ #: Application/Backend/phtml/index.phtml:213
568
  #: Application/Backend/phtml/main/capability.phtml:104
569
  msgid "Delete"
570
  msgstr ""
610
  msgid "All Users, Roles and Visitor"
611
  msgstr ""
612
 
613
+ #: Application/Extension/List.php:63
614
+ msgid ""
615
+ "[Deprecated!]. The extension is deprecated and replaces with more "
616
+ "sophisticated E-Commerce extension. If you already purchased it, please "
617
+ "contact us to upgrade your license for no additional cost."
618
+ msgstr ""
619
+
620
  #: Application/Extension/Repository.php:128
621
  #, php-format
622
  msgid ""
623
+ "The [%s] file is missing. Update extension to the latest version. %sRead "
624
+ "more.%s"
625
  msgstr ""
626
 
627
+ #: Application/Extension/Repository.php:307
628
  #, php-format
629
  msgid "Failed to create %s"
630
  msgstr ""
631
 
632
+ #: Application/Extension/Repository.php:311
633
  #, php-format
634
  msgid "Directory %s is not writable"
635
  msgstr ""
745
  msgid "Invalid data format"
746
  msgstr ""
747
 
748
+ #: Application/Backend/phtml/extensions.phtml:6
749
+ msgid ""
750
+ "By purchasing any of the extensions below, you obtain the license that "
751
+ "allows you to install and use our software for life and for one physical "
752
+ "WordPress installation only. However you will be able to download new "
753
+ "updates for one year from the time of purchase unless you purchased the "
754
+ "[Extended version]. Exceptions are websites where URL is either [localhost] "
755
+ "or starts with [dev.], [staging.], [test.] or [demo.] They are considered as "
756
+ "development websites and you can use the purchased license unlimited number "
757
+ "of times before it is activated on a production website. [Money back "
758
+ "guaranteed] within 10 day from the time of purchase."
759
+ msgstr ""
760
+
761
  #: Application/Backend/phtml/extensions.phtml:11
762
  msgid "Install/Update Extension"
763
  msgstr ""
794
  msgstr ""
795
 
796
  #: Application/Backend/phtml/extensions.phtml:55
797
+ #: Application/Backend/phtml/index.phtml:88
798
  msgid "Read More"
799
  msgstr ""
800
 
806
  #: Application/Backend/phtml/extensions.phtml:97
807
  #: Application/Backend/phtml/extensions.phtml:128
808
  #: Application/Backend/phtml/extensions.phtml:139
809
+ #: Application/Backend/phtml/index.phtml:153
810
+ #: Application/Backend/phtml/index.phtml:170
811
+ #: Application/Backend/phtml/index.phtml:180
812
+ #: Application/Backend/phtml/index.phtml:196
813
+ #: Application/Backend/phtml/index.phtml:206
814
+ #: Application/Backend/phtml/index.phtml:214
815
  #: Application/Backend/phtml/main/capability.phtml:54
816
  #: Application/Backend/phtml/main/capability.phtml:65
817
  #: Application/Backend/phtml/main/capability.phtml:75
846
  "Extension requires manual installation. Please follow few simple steps below."
847
  msgstr ""
848
 
849
+ #: Application/Backend/phtml/extensions.phtml:106
850
+ msgid "Click [Download] button below and save the zip archive on your computer"
851
+ msgstr ""
852
+
853
+ #: Application/Backend/phtml/extensions.phtml:107
854
+ msgid "Connect to your website via FTP and navigate to [wp-content] folder"
855
+ msgstr ""
856
+
857
+ #: Application/Backend/phtml/extensions.phtml:108
858
+ msgid ""
859
+ "Create [aam/extension] folder inside [wp-content] and make sure it is "
860
+ "writable by your server"
861
+ msgstr ""
862
+
863
+ #: Application/Backend/phtml/extensions.phtml:109
864
+ msgid ""
865
+ "Unzip downloaded archive and upload the folder inside the [wp-content/aam/"
866
+ "extension] folder"
867
+ msgstr ""
868
+
869
+ #: Application/Backend/phtml/extensions.phtml:113
870
+ msgid ""
871
+ "[PLEASE NOTE!] Your browser may not support the latest HTML5 attribures and "
872
+ "if downloaded file is not .ZIP archive, simply rename the file by adding ."
873
+ "zip extension."
874
+ msgstr ""
875
+
876
  #: Application/Backend/phtml/extensions.phtml:118
877
  #: Application/Backend/phtml/settings/tools.phtml:67
878
  msgid "Cancel"
890
  msgstr ""
891
 
892
  #: Application/Backend/phtml/frame.phtml:62
893
+ #: Application/Backend/phtml/index.phtml:228
894
  msgid "Username"
895
  msgstr ""
896
 
900
  msgstr ""
901
 
902
  #: Application/Backend/phtml/frame.phtml:75
903
+ #: Application/Backend/phtml/index.phtml:241
904
  msgid "Manage Visitors"
905
  msgstr ""
906
 
912
  msgstr ""
913
 
914
  #: Application/Backend/phtml/frame.phtml:84
915
+ #: Application/Backend/phtml/index.phtml:249
916
  msgid "Manage Default Access"
917
  msgstr ""
918
 
919
+ #: Application/Backend/phtml/frame.phtml:87
920
+ msgid "This feature is allowed only with [AAM Plus Package] extension."
921
+ msgstr ""
922
+
923
  #: Application/Backend/phtml/frame.phtml:100
924
  #: Application/Backend/phtml/main/menu.phtml:13
925
  #: Application/Backend/phtml/main/metabox.phtml:19
951
  msgid "Main Panel"
952
  msgstr ""
953
 
954
+ #: Application/Backend/phtml/index.phtml:19
955
+ msgid ""
956
+ "[Loading AAM UI]. Please wait. If content will not load within next 30 "
957
+ "seconds, clear your browser cache and reload the page. If still nothing, it "
958
+ "is most likely some sort of JavaScript or CSS conflict with one your active "
959
+ "plugins or theme. Try to deactivate all plugins and switch to any default "
960
+ "WordPress theme to find out what causes the issue."
961
+ msgstr ""
962
+
963
  #: Application/Backend/phtml/index.phtml:23
964
  msgid ""
965
  "Appreciate your interest in Advanced Access Manager (AAM). With strong "
971
  msgid "Please Note!"
972
  msgstr ""
973
 
974
+ #: Application/Backend/phtml/index.phtml:24
975
+ msgid ""
976
+ "Power comes with responsibility. Make sure you have enough knowledge in "
977
+ "WordPress Roles & Capabilities because AAM is very closely intergrated with "
978
+ "WordPress core. It is also very important [to have backup of your database "
979
+ "before you start working with AAM] (there is no need to backup your files, "
980
+ "AAM does not modify any physical files on your server and never did)."
981
+ msgstr ""
982
+
983
  #: Application/Backend/phtml/index.phtml:25
984
  msgid ""
985
  "AAM was thoroughly tested on the fresh installation of WordPress and in the "
994
  "functionality or %scontact us%s directly."
995
  msgstr ""
996
 
997
+ #: Application/Backend/phtml/index.phtml:39
998
  msgid "Notifications"
999
  msgstr ""
1000
 
1001
+ #: Application/Backend/phtml/index.phtml:87
1002
+ msgid ""
1003
+ "The [Development Package] allows you to get all premium extensions for "
1004
+ "[unlimited number of websites]."
1005
+ msgstr ""
1006
+
1007
+ #: Application/Backend/phtml/index.phtml:98
1008
  msgid "AAM Multisite"
1009
  msgstr ""
1010
 
1011
+ #: Application/Backend/phtml/index.phtml:101
1012
+ msgid ""
1013
+ "Install free [AAM Multisite extension] in order to manage all your sites "
1014
+ "from Network Admin"
1015
+ msgstr ""
1016
+
1017
+ #: Application/Backend/phtml/index.phtml:102
1018
  msgid "Install AAM Multisite"
1019
  msgstr ""
1020
 
1021
+ #: Application/Backend/phtml/index.phtml:113
1022
  msgid "Users/Roles Manager"
1023
  msgstr ""
1024
 
1025
+ #: Application/Backend/phtml/index.phtml:120
1026
+ #: Application/Backend/phtml/index.phtml:261
1027
  msgid "Roles"
1028
  msgstr ""
1029
 
1030
+ #: Application/Backend/phtml/index.phtml:126
1031
+ #: Application/Backend/phtml/index.phtml:271
1032
  msgid "Visitor"
1033
  msgstr ""
1034
 
1035
+ #: Application/Backend/phtml/index.phtml:129
1036
+ #: Application/Backend/phtml/index.phtml:276
1037
  msgid "Default"
1038
  msgstr ""
1039
 
1040
+ #: Application/Backend/phtml/index.phtml:141
1041
+ #: Application/Backend/phtml/index.phtml:229
1042
  msgid "Action"
1043
  msgstr ""
1044
 
1045
+ #: Application/Backend/phtml/index.phtml:154
1046
  msgid "Create Role"
1047
  msgstr ""
1048
 
1049
+ #: Application/Backend/phtml/index.phtml:158
1050
+ #: Application/Backend/phtml/index.phtml:185
1051
  msgid "Role Name"
1052
  msgstr ""
1053
 
1054
+ #: Application/Backend/phtml/index.phtml:159
1055
+ #: Application/Backend/phtml/index.phtml:186
1056
  msgid "Enter Role Name"
1057
  msgstr ""
1058
 
1059
+ #: Application/Backend/phtml/index.phtml:162
1060
+ #: Application/Backend/phtml/index.phtml:189
1061
  msgid "Role Expiration"
1062
  msgstr ""
1063
 
1064
+ #: Application/Backend/phtml/index.phtml:163
1065
+ #: Application/Backend/phtml/index.phtml:190
1066
  msgid "Enter Expiration Rule"
1067
  msgstr ""
1068
 
1069
+ #: Application/Backend/phtml/index.phtml:181
1070
  msgid "Update Role"
1071
  msgstr ""
1072
 
1073
+ #: Application/Backend/phtml/index.phtml:210
1074
  #, php-format
1075
  msgid "Are you sure that you want to delete the %s role?"
1076
  msgstr ""
1077
 
1078
+ #: Application/Backend/phtml/index.phtml:240
1079
  msgid ""
1080
  "Manage access to your website for visitors (any user that is not "
1081
  "authenticated)"
1082
  msgstr ""
1083
 
1084
+ #: Application/Backend/phtml/index.phtml:248
1085
  msgid ""
1086
  "Manage default access to your website resources for all users, roles and "
1087
  "visitor. This includes Administrator role and your user"
1088
  msgstr ""
1089
 
1090
+ #: Application/Backend/phtml/index.phtml:257
1091
+ msgid ""
1092
+ "Manage access for your users, roles and visitors. Be careful with "
1093
+ "[Administrator] role as well as your admin user. [Database backup is "
1094
+ "strongly recommended]."
1095
+ msgstr ""
1096
+
1097
+ #: Application/Backend/phtml/index.phtml:262
1098
  msgid ""
1099
  "With Roles tab you can manage access for any defined role, edit role's name, "
1100
  "create new role or even delete existing (but only when there is no users "
1101
  "assigned to it). You are not allowed to delete Administrator role."
1102
  msgstr ""
1103
 
1104
+ #: Application/Backend/phtml/index.phtml:267
1105
  msgid ""
1106
  "Manage access for any user. As a bonus feature, you can block user. It means "
1107
  "that user will be not able to login to your website anymore."
1108
  msgstr ""
1109
 
1110
+ #: Application/Backend/phtml/index.phtml:272
1111
  msgid ""
1112
  "Visitor can be considered any user that is not authenticated to your website."
1113
  msgstr ""
1114
 
1115
+ #: Application/Backend/phtml/index.phtml:277
1116
  msgid ""
1117
  "Manage default access settings to your website resources for all users, "
1118
  "roles and visitors."
1122
  msgid "You are not allowed to manage any of the existing features."
1123
  msgstr ""
1124
 
1125
+ #: Application/Backend/phtml/main/404redirect.phtml:7
1126
+ msgid "Setup [default] 404 redirect for all none-existing pages."
1127
+ msgstr ""
1128
+
1129
+ #: Application/Backend/phtml/main/404redirect.phtml:20
1130
+ msgid "Default WordPress 404 handler"
1131
+ msgstr ""
1132
+
1133
+ #: Application/Backend/phtml/main/404redirect.phtml:24
1134
+ #: Application/Backend/phtml/main/login-redirect.phtml:31
1135
+ #: Application/Backend/phtml/main/logout-redirect.phtml:31
1136
+ #: Application/Backend/phtml/main/redirect.phtml:50
1137
+ msgid "Redirected to existing page [(select from the drop-down)]"
1138
+ msgstr ""
1139
+
1140
+ #: Application/Backend/phtml/main/404redirect.phtml:28
1141
+ #: Application/Backend/phtml/main/redirect.phtml:54
1142
+ #: Application/Backend/phtml/main/redirect.phtml:106
1143
+ msgid "Redirected to the URL [(enter valid URL starting from http or https)]"
1144
+ msgstr ""
1145
+
1146
+ #: Application/Backend/phtml/main/404redirect.phtml:32
1147
+ #: Application/Backend/phtml/main/login-redirect.phtml:39
1148
+ #: Application/Backend/phtml/main/logout-redirect.phtml:39
1149
+ #: Application/Backend/phtml/main/redirect.phtml:58
1150
+ #: Application/Backend/phtml/main/redirect.phtml:110
1151
+ #, php-format
1152
+ msgid "Trigger PHP callback function [(valid %sPHP callback%s is required)]"
1153
+ msgstr ""
1154
+
1155
  #: Application/Backend/phtml/main/404redirect.phtml:36
1156
  #: Application/Backend/phtml/main/login-redirect.phtml:43
1157
  #: Application/Backend/phtml/main/logout-redirect.phtml:43
1184
  msgid "PHP Callback Function"
1185
  msgstr ""
1186
 
1187
+ #: Application/Backend/phtml/main/404redirect.phtml:60
1188
+ msgid ""
1189
+ "You cannot setup 404 redirect for specific user, role or visitors. Switch to "
1190
+ "[Manage Default Access] and define default 404 redirect for everybody."
1191
+ msgstr ""
1192
+
1193
+ #: Application/Backend/phtml/main/capability.phtml:8
1194
+ #, php-format
1195
+ msgid ""
1196
+ "[Be careful!] Manage capabilities for [%s]. For more information about the "
1197
+ "concept of capabilities check %sWhat is a WordPress capability%s article."
1198
+ msgstr ""
1199
+
1200
  #: Application/Backend/phtml/main/capability.phtml:16
1201
  msgid "Filter"
1202
  msgstr ""
1233
  msgid "Enter Capability"
1234
  msgstr ""
1235
 
1236
+ #: Application/Backend/phtml/main/capability.phtml:83
1237
+ msgid ""
1238
+ "[Please note!] Capability will be updated for all roles. Any functionality "
1239
+ "that depends on this capability may not work properly."
1240
+ msgstr ""
1241
+
1242
  #: Application/Backend/phtml/main/capability.phtml:101
1243
  #, php-format
1244
  msgid "Are you sure that you want to delete %s capability for all roles?"
1245
  msgstr ""
1246
 
1247
+ #: Application/Backend/phtml/main/login-redirect.phtml:7
1248
+ msgid ""
1249
+ "Define the [default] login redirect for all users and roles when "
1250
+ "authentication is completed successfully."
1251
+ msgstr ""
1252
+
1253
+ #: Application/Backend/phtml/main/login-redirect.phtml:11
1254
+ #, php-format
1255
+ msgid ""
1256
+ "Customize login redirect for [%s] when the authentication is completed "
1257
+ "successfully."
1258
+ msgstr ""
1259
+
1260
  #: Application/Backend/phtml/main/login-redirect.phtml:27
1261
  #: Application/Backend/phtml/main/logout-redirect.phtml:27
1262
  msgid "WordPress default behavior"
1263
  msgstr ""
1264
 
1265
+ #: Application/Backend/phtml/main/login-redirect.phtml:35
1266
+ #: Application/Backend/phtml/main/logout-redirect.phtml:35
1267
+ msgid "Redirected to the URL [(enter full URL starting from http or https)]"
1268
+ msgstr ""
1269
+
1270
+ #: Application/Backend/phtml/main/logout-redirect.phtml:7
1271
+ msgid "Define the [default] logout redirect for all users and roles."
1272
+ msgstr ""
1273
+
1274
+ #: Application/Backend/phtml/main/logout-redirect.phtml:11
1275
+ #, php-format
1276
+ msgid "Customize logout redirect for [%s]."
1277
+ msgstr ""
1278
+
1279
+ #: Application/Backend/phtml/main/menu.phtml:6
1280
+ #, php-format
1281
+ msgid ""
1282
+ "Protect your backend area. The list of menus and submenus is based on "
1283
+ "capabilities [%s] has. For more information please check %sHow to manage "
1284
+ "WordPress backend menu%s."
1285
+ msgstr ""
1286
+
1287
  #: Application/Backend/phtml/main/menu.phtml:87
1288
  msgid "Dashboard Lockdown"
1289
  msgstr ""
1292
  msgid "You cannot restrict access to Dashboard home page."
1293
  msgstr ""
1294
 
1295
+ #: Application/Backend/phtml/main/menu.phtml:92
1296
+ #, php-format
1297
+ msgid ""
1298
+ "The [Home] is the default page every user is redirected after login. To "
1299
+ "restrict access to the entire backend, please check %sHow to lockdown "
1300
+ "WordPress backend%s article."
1301
+ msgstr ""
1302
+
1303
  #: Application/Backend/phtml/main/menu.phtml:96
1304
  msgid "OK"
1305
  msgstr ""
1306
 
1307
+ #: Application/Backend/phtml/main/metabox.phtml:6
1308
+ #, php-format
1309
+ msgid ""
1310
+ "Hide unnecessary or restricted metaboxes and widgets for [%s]. For more "
1311
+ "information please check %sHow to hide WordPress metaboxes and widgets%s."
1312
+ msgstr ""
1313
+
1314
  #: Application/Backend/phtml/main/metabox.phtml:12
1315
  msgid "Refresh"
1316
  msgstr ""
1331
  msgid "The list is not initialized. Click Refresh button above."
1332
  msgstr ""
1333
 
1334
+ #: Application/Backend/phtml/main/metabox.phtml:79
1335
+ #, php-format
1336
+ msgid ""
1337
+ "If your website requires HTTP authentication, please refer to [%sthis article"
1338
+ "%s] for additional information."
1339
+ msgstr ""
1340
+
1341
  #: Application/Backend/phtml/main/metabox.phtml:90
1342
  msgid "Initialize URL"
1343
  msgstr ""
1359
  msgid "Insert valid URL"
1360
  msgstr ""
1361
 
1362
+ #: Application/Backend/phtml/main/post.phtml:7
1363
+ #, php-format
1364
+ msgid ""
1365
+ "You are allowed to manage access to unlimited number of posts, pages or "
1366
+ "custom post types but only on role, user or visitor levels. Consider to "
1367
+ "purchase %s[AAM Plus Package]%s extension to have the ability to also manage "
1368
+ "access to categories and custom taxonomies or to define the default access "
1369
+ "to all posts, pages or custom post types. For more information about this "
1370
+ "functionality check %sWhat is a WordPress post%s."
1371
+ msgstr ""
1372
+
1373
  #: Application/Backend/phtml/main/post.phtml:15
1374
  #, php-format
1375
  msgid ""
1395
  msgid "Go Back"
1396
  msgstr ""
1397
 
1398
+ #: Application/Backend/phtml/main/redirect.phtml:7
1399
+ msgid ""
1400
+ "Define the [default] redirect for all users, roles and visitors when access "
1401
+ "is denied to any restricted resources on your website."
1402
+ msgstr ""
1403
+
1404
+ #: Application/Backend/phtml/main/redirect.phtml:11
1405
+ #, php-format
1406
+ msgid ""
1407
+ "Customize redirect for %s when access is denied to restricted resources like "
1408
+ "posts, categories, menus, etc. For more information about this feature, "
1409
+ "please check %sHow to redirect WordPress user when access is denied%s."
1410
+ msgstr ""
1411
+
1412
  #: Application/Backend/phtml/main/redirect.phtml:25
1413
  msgid "Frontend Redirect"
1414
  msgstr ""
1417
  msgid "Backend Redirect"
1418
  msgstr ""
1419
 
1420
+ #: Application/Backend/phtml/main/redirect.phtml:36
1421
+ #: Application/Backend/phtml/main/redirect.phtml:94
1422
+ msgid "Default [(\"Access Denied\" message)]"
1423
+ msgstr ""
1424
+
1425
+ #: Application/Backend/phtml/main/redirect.phtml:40
1426
+ #: Application/Backend/phtml/main/redirect.phtml:98
1427
+ msgid "Show customized message [(plain text or HTML)]"
1428
+ msgstr ""
1429
+
1430
+ #: Application/Backend/phtml/main/redirect.phtml:45
1431
+ msgid ""
1432
+ "Redirect to the login page [(after login, user will be redirected back to "
1433
+ "the restricted page)]"
1434
+ msgstr ""
1435
+
1436
  #: Application/Backend/phtml/main/redirect.phtml:62
1437
  #: Application/Backend/phtml/main/redirect.phtml:114
1438
  msgid "Customized Message"
1443
  msgid "Enter message..."
1444
  msgstr ""
1445
 
1446
+ #: Application/Backend/phtml/main/redirect.phtml:102
1447
+ msgid "Redirected to existing frontend page [(select from the drop-down)]"
1448
+ msgstr ""
1449
+
1450
+ #: Application/Backend/phtml/partial/login-redirect.phtml:3
1451
+ msgid ""
1452
+ "Setup [default] redirect after user logged in successfully for all your "
1453
+ "users and roles. With [AAM Login Redirect] extension you can customize login "
1454
+ "redirect for any user or role."
1455
+ msgstr ""
1456
+
1457
  #: Application/Backend/phtml/partial/post-advanced-settings.phtml:7
1458
  msgid "Define Threshold"
1459
  msgstr ""
1474
  msgid "Define Redirect Rule"
1475
  msgstr ""
1476
 
1477
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:52
1478
+ #, php-format
1479
+ msgid ""
1480
+ "To learn more about REDIRECT option, please refer to our [%sHelp Section%s]."
1481
+ msgstr ""
1482
+
1483
  #: Application/Backend/phtml/partial/post-advanced-settings.phtml:54
1484
  msgid "Enter Redirect Rule"
1485
  msgstr ""
1520
  msgid "E-Commerce Setup"
1521
  msgstr ""
1522
 
1523
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:125
1524
+ msgid ""
1525
+ "Monetization is the premium feature that is available with [Payment] "
1526
+ "extension."
1527
+ msgstr ""
1528
+
1529
+ #: Application/Backend/phtml/partial/post-type.phtml:4
1530
+ #, php-format
1531
+ msgid ""
1532
+ "Manage default access to all your %s and %s Categories. This feature is "
1533
+ "available only with [AAM Plus Package] extension. But you can still manage "
1534
+ "access to individual %s but only up to 10 %s. Consider to purchase [AAM Plus "
1535
+ "Package] extension."
1536
+ msgstr ""
1537
+
1538
+ #: Application/Backend/phtml/partial/redirect.phtml:3
1539
+ msgid ""
1540
+ "Setup [default] redirect for all users, roles and visitors when access is "
1541
+ "denied for any restricted resources on your website."
1542
+ msgstr ""
1543
+
1544
  #: Application/Backend/phtml/partial/role-inheritance.phtml:3
1545
  msgid "Inherit Capabilities From"
1546
  msgstr ""
1549
  msgid "Select Role"
1550
  msgstr ""
1551
 
1552
+ #: Application/Backend/phtml/partial/term-type.phtml:4
1553
+ #, php-format
1554
+ msgid ""
1555
+ "Manage access to %s is available with [AAM Plus Package] extension only. "
1556
+ "With this feature you can define default access to all child posts that "
1557
+ "belong to %s. Consider to purchase [AAM Plus Package] extension."
1558
+ msgstr ""
1559
+
1560
  #: Application/Backend/phtml/settings/tools.phtml:8
1561
  msgid "Export AAM Settings"
1562
  msgstr ""
Lang/advanced-access-manager.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: AAM\n"
5
- "POT-Creation-Date: 2017-11-26 16:25-0500\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: WPAAM <support@wpaam.com>\n"
8
  "Language-Team: WP AAM <vasyl@vasyltech.com>\n"
@@ -13,7 +13,7 @@ msgstr ""
13
  "X-Generator: Poedit 2.0.4\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
 
@@ -89,6 +89,14 @@ msgstr ""
89
  msgid "Media Files Access Control"
90
  msgstr ""
91
 
 
 
 
 
 
 
 
 
92
  #: Application/Backend/Feature/Settings/Content.php:37
93
  msgid "Check Post Visibility"
94
  msgstr ""
@@ -120,6 +128,13 @@ msgstr ""
120
  msgid "Edit/Delete Capabilities"
121
  msgstr ""
122
 
 
 
 
 
 
 
 
123
  #: Application/Backend/Feature/Settings/Core.php:37
124
  msgid "Backend Access Control"
125
  msgstr ""
@@ -271,15 +286,15 @@ msgid "_TOTAL_ role(s)"
271
  msgstr ""
272
 
273
  #: Application/Backend/View/Localization.php:42 media/js/aam.js:129
274
- #: media/js/aam.js:602 Application/Backend/phtml/index.phtml:170
275
  #: Application/Backend/phtml/main/capability.phtml:26
276
  #: Application/Backend/phtml/main/capability.phtml:64
277
  msgid "Create"
278
  msgstr ""
279
 
280
  #: Application/Backend/View/Localization.php:43 media/js/aam.js:153
281
- #: Application/Backend/phtml/index.phtml:124
282
- #: Application/Backend/phtml/index.phtml:267
283
  msgid "Users"
284
  msgstr ""
285
 
@@ -298,7 +313,7 @@ msgstr ""
298
  #: Application/Backend/View/Localization.php:47 media/js/aam.js:403
299
  #: Application/Backend/phtml/extensions.phtml:51
300
  #: Application/Backend/phtml/extensions.phtml:78
301
- #: Application/Backend/phtml/index.phtml:196
302
  #: Application/Backend/phtml/main/capability.phtml:86
303
  #: Application/Backend/phtml/partial/post-advanced-settings.phtml:16
304
  #: Application/Backend/phtml/partial/post-advanced-settings.phtml:37
@@ -319,7 +334,7 @@ msgstr ""
319
 
320
  #: Application/Backend/View/Localization.php:50
321
  #: Application/Backend/View/Localization.php:62 media/js/aam.js:251
322
- #: media/js/aam.js:440 Application/Backend/phtml/index.phtml:208
323
  msgid "Delete Role"
324
  msgstr ""
325
 
@@ -337,7 +352,7 @@ msgstr ""
337
 
338
  #: Application/Backend/View/Localization.php:54 media/js/aam.js:619
339
  #: Application/Backend/phtml/frame.phtml:46
340
- #: Application/Backend/phtml/index.phtml:141
341
  msgid "Role"
342
  msgstr ""
343
 
@@ -526,6 +541,14 @@ msgstr ""
526
  msgid "E-Product"
527
  msgstr ""
528
 
 
 
 
 
 
 
 
 
529
  #: Application/Backend/View/PostOptionList.php:87
530
  #, php-format
531
  msgid ""
@@ -542,7 +565,7 @@ msgid ""
542
  msgstr ""
543
 
544
  #: Application/Backend/View/PostOptionList.php:96
545
- #: Application/Backend/phtml/index.phtml:214
546
  #: Application/Backend/phtml/main/capability.phtml:104
547
  msgid "Delete"
548
  msgstr ""
@@ -588,18 +611,26 @@ msgstr ""
588
  msgid "All Users, Roles and Visitor"
589
  msgstr ""
590
 
 
 
 
 
 
 
 
591
  #: Application/Extension/Repository.php:128
592
  #, php-format
593
  msgid ""
594
- "The [%s] file is missing. Update all your extensions to the latest version."
 
595
  msgstr ""
596
 
597
- #: Application/Extension/Repository.php:304
598
  #, php-format
599
  msgid "Failed to create %s"
600
  msgstr ""
601
 
602
- #: Application/Extension/Repository.php:308
603
  #, php-format
604
  msgid "Directory %s is not writable"
605
  msgstr ""
@@ -715,6 +746,19 @@ msgstr ""
715
  msgid "Invalid data format"
716
  msgstr ""
717
 
 
 
 
 
 
 
 
 
 
 
 
 
 
718
  #: Application/Backend/phtml/extensions.phtml:11
719
  msgid "Install/Update Extension"
720
  msgstr ""
@@ -751,7 +795,7 @@ msgid "Activate"
751
  msgstr ""
752
 
753
  #: Application/Backend/phtml/extensions.phtml:55
754
- #: Application/Backend/phtml/index.phtml:89
755
  msgid "Read More"
756
  msgstr ""
757
 
@@ -763,12 +807,12 @@ msgstr ""
763
  #: Application/Backend/phtml/extensions.phtml:97
764
  #: Application/Backend/phtml/extensions.phtml:128
765
  #: Application/Backend/phtml/extensions.phtml:139
766
- #: Application/Backend/phtml/index.phtml:154
767
- #: Application/Backend/phtml/index.phtml:171
768
- #: Application/Backend/phtml/index.phtml:181
769
- #: Application/Backend/phtml/index.phtml:197
770
- #: Application/Backend/phtml/index.phtml:207
771
- #: Application/Backend/phtml/index.phtml:215
772
  #: Application/Backend/phtml/main/capability.phtml:54
773
  #: Application/Backend/phtml/main/capability.phtml:65
774
  #: Application/Backend/phtml/main/capability.phtml:75
@@ -803,6 +847,33 @@ msgid ""
803
  "Extension requires manual installation. Please follow few simple steps below."
804
  msgstr ""
805
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
806
  #: Application/Backend/phtml/extensions.phtml:118
807
  #: Application/Backend/phtml/settings/tools.phtml:67
808
  msgid "Cancel"
@@ -820,7 +891,7 @@ msgid ""
820
  msgstr ""
821
 
822
  #: Application/Backend/phtml/frame.phtml:62
823
- #: Application/Backend/phtml/index.phtml:229
824
  msgid "Username"
825
  msgstr ""
826
 
@@ -830,7 +901,7 @@ msgid "Manage access to %s for visitors (any user that is not authenticated)"
830
  msgstr ""
831
 
832
  #: Application/Backend/phtml/frame.phtml:75
833
- #: Application/Backend/phtml/index.phtml:242
834
  msgid "Manage Visitors"
835
  msgstr ""
836
 
@@ -842,10 +913,14 @@ msgid ""
842
  msgstr ""
843
 
844
  #: Application/Backend/phtml/frame.phtml:84
845
- #: Application/Backend/phtml/index.phtml:250
846
  msgid "Manage Default Access"
847
  msgstr ""
848
 
 
 
 
 
849
  #: Application/Backend/phtml/frame.phtml:100
850
  #: Application/Backend/phtml/main/menu.phtml:13
851
  #: Application/Backend/phtml/main/metabox.phtml:19
@@ -877,6 +952,15 @@ msgstr ""
877
  msgid "Main Panel"
878
  msgstr ""
879
 
 
 
 
 
 
 
 
 
 
880
  #: Application/Backend/phtml/index.phtml:23
881
  msgid ""
882
  "Appreciate your interest in Advanced Access Manager (AAM). With strong "
@@ -888,6 +972,15 @@ msgstr ""
888
  msgid "Please Note!"
889
  msgstr ""
890
 
 
 
 
 
 
 
 
 
 
891
  #: Application/Backend/phtml/index.phtml:25
892
  msgid ""
893
  "AAM was thoroughly tested on the fresh installation of WordPress and in the "
@@ -902,106 +995,125 @@ msgid ""
902
  "functionality or %scontact us%s directly."
903
  msgstr ""
904
 
905
- #: Application/Backend/phtml/index.phtml:40
906
  msgid "Notifications"
907
  msgstr ""
908
 
909
- #: Application/Backend/phtml/index.phtml:99
 
 
 
 
 
 
910
  msgid "AAM Multisite"
911
  msgstr ""
912
 
913
- #: Application/Backend/phtml/index.phtml:103
 
 
 
 
 
 
914
  msgid "Install AAM Multisite"
915
  msgstr ""
916
 
917
- #: Application/Backend/phtml/index.phtml:114
918
  msgid "Users/Roles Manager"
919
  msgstr ""
920
 
921
- #: Application/Backend/phtml/index.phtml:121
922
- #: Application/Backend/phtml/index.phtml:262
923
  msgid "Roles"
924
  msgstr ""
925
 
926
- #: Application/Backend/phtml/index.phtml:127
927
- #: Application/Backend/phtml/index.phtml:272
928
  msgid "Visitor"
929
  msgstr ""
930
 
931
- #: Application/Backend/phtml/index.phtml:130
932
- #: Application/Backend/phtml/index.phtml:277
933
  msgid "Default"
934
  msgstr ""
935
 
936
- #: Application/Backend/phtml/index.phtml:142
937
- #: Application/Backend/phtml/index.phtml:230
938
  msgid "Action"
939
  msgstr ""
940
 
941
- #: Application/Backend/phtml/index.phtml:155
942
  msgid "Create Role"
943
  msgstr ""
944
 
945
- #: Application/Backend/phtml/index.phtml:159
946
- #: Application/Backend/phtml/index.phtml:186
947
  msgid "Role Name"
948
  msgstr ""
949
 
950
- #: Application/Backend/phtml/index.phtml:160
951
- #: Application/Backend/phtml/index.phtml:187
952
  msgid "Enter Role Name"
953
  msgstr ""
954
 
955
- #: Application/Backend/phtml/index.phtml:163
956
- #: Application/Backend/phtml/index.phtml:190
957
  msgid "Role Expiration"
958
  msgstr ""
959
 
960
- #: Application/Backend/phtml/index.phtml:164
961
- #: Application/Backend/phtml/index.phtml:191
962
  msgid "Enter Expiration Rule"
963
  msgstr ""
964
 
965
- #: Application/Backend/phtml/index.phtml:182
966
  msgid "Update Role"
967
  msgstr ""
968
 
969
- #: Application/Backend/phtml/index.phtml:211
970
  #, php-format
971
  msgid "Are you sure that you want to delete the %s role?"
972
  msgstr ""
973
 
974
- #: Application/Backend/phtml/index.phtml:241
975
  msgid ""
976
  "Manage access to your website for visitors (any user that is not "
977
  "authenticated)"
978
  msgstr ""
979
 
980
- #: Application/Backend/phtml/index.phtml:249
981
  msgid ""
982
  "Manage default access to your website resources for all users, roles and "
983
  "visitor. This includes Administrator role and your user"
984
  msgstr ""
985
 
986
- #: Application/Backend/phtml/index.phtml:263
 
 
 
 
 
 
 
987
  msgid ""
988
  "With Roles tab you can manage access for any defined role, edit role's name, "
989
  "create new role or even delete existing (but only when there is no users "
990
  "assigned to it). You are not allowed to delete Administrator role."
991
  msgstr ""
992
 
993
- #: Application/Backend/phtml/index.phtml:268
994
  msgid ""
995
  "Manage access for any user. As a bonus feature, you can block user. It means "
996
  "that user will be not able to login to your website anymore."
997
  msgstr ""
998
 
999
- #: Application/Backend/phtml/index.phtml:273
1000
  msgid ""
1001
  "Visitor can be considered any user that is not authenticated to your website."
1002
  msgstr ""
1003
 
1004
- #: Application/Backend/phtml/index.phtml:278
1005
  msgid ""
1006
  "Manage default access settings to your website resources for all users, "
1007
  "roles and visitors."
@@ -1011,6 +1123,36 @@ msgstr ""
1011
  msgid "You are not allowed to manage any of the existing features."
1012
  msgstr ""
1013
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1014
  #: Application/Backend/phtml/main/404redirect.phtml:36
1015
  #: Application/Backend/phtml/main/login-redirect.phtml:43
1016
  #: Application/Backend/phtml/main/logout-redirect.phtml:43
@@ -1043,6 +1185,19 @@ msgstr ""
1043
  msgid "PHP Callback Function"
1044
  msgstr ""
1045
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1046
  #: Application/Backend/phtml/main/capability.phtml:16
1047
  msgid "Filter"
1048
  msgstr ""
@@ -1079,16 +1234,57 @@ msgstr ""
1079
  msgid "Enter Capability"
1080
  msgstr ""
1081
 
 
 
 
 
 
 
1082
  #: Application/Backend/phtml/main/capability.phtml:101
1083
  #, php-format
1084
  msgid "Are you sure that you want to delete %s capability for all roles?"
1085
  msgstr ""
1086
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1087
  #: Application/Backend/phtml/main/login-redirect.phtml:27
1088
  #: Application/Backend/phtml/main/logout-redirect.phtml:27
1089
  msgid "WordPress default behavior"
1090
  msgstr ""
1091
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1092
  #: Application/Backend/phtml/main/menu.phtml:87
1093
  msgid "Dashboard Lockdown"
1094
  msgstr ""
@@ -1097,10 +1293,25 @@ msgstr ""
1097
  msgid "You cannot restrict access to Dashboard home page."
1098
  msgstr ""
1099
 
 
 
 
 
 
 
 
 
1100
  #: Application/Backend/phtml/main/menu.phtml:96
1101
  msgid "OK"
1102
  msgstr ""
1103
 
 
 
 
 
 
 
 
1104
  #: Application/Backend/phtml/main/metabox.phtml:12
1105
  msgid "Refresh"
1106
  msgstr ""
@@ -1121,6 +1332,13 @@ msgstr ""
1121
  msgid "The list is not initialized. Click Refresh button above."
1122
  msgstr ""
1123
 
 
 
 
 
 
 
 
1124
  #: Application/Backend/phtml/main/metabox.phtml:90
1125
  msgid "Initialize URL"
1126
  msgstr ""
@@ -1142,6 +1360,17 @@ msgstr ""
1142
  msgid "Insert valid URL"
1143
  msgstr ""
1144
 
 
 
 
 
 
 
 
 
 
 
 
1145
  #: Application/Backend/phtml/main/post.phtml:15
1146
  #, php-format
1147
  msgid ""
@@ -1167,6 +1396,20 @@ msgstr ""
1167
  msgid "Go Back"
1168
  msgstr ""
1169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1170
  #: Application/Backend/phtml/main/redirect.phtml:25
1171
  msgid "Frontend Redirect"
1172
  msgstr ""
@@ -1175,6 +1418,22 @@ msgstr ""
1175
  msgid "Backend Redirect"
1176
  msgstr ""
1177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1178
  #: Application/Backend/phtml/main/redirect.phtml:62
1179
  #: Application/Backend/phtml/main/redirect.phtml:114
1180
  msgid "Customized Message"
@@ -1185,6 +1444,17 @@ msgstr ""
1185
  msgid "Enter message..."
1186
  msgstr ""
1187
 
 
 
 
 
 
 
 
 
 
 
 
1188
  #: Application/Backend/phtml/partial/post-advanced-settings.phtml:7
1189
  msgid "Define Threshold"
1190
  msgstr ""
@@ -1205,6 +1475,12 @@ msgstr ""
1205
  msgid "Define Redirect Rule"
1206
  msgstr ""
1207
 
 
 
 
 
 
 
1208
  #: Application/Backend/phtml/partial/post-advanced-settings.phtml:54
1209
  msgid "Enter Redirect Rule"
1210
  msgstr ""
@@ -1245,6 +1521,27 @@ msgstr ""
1245
  msgid "E-Commerce Setup"
1246
  msgstr ""
1247
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1248
  #: Application/Backend/phtml/partial/role-inheritance.phtml:3
1249
  msgid "Inherit Capabilities From"
1250
  msgstr ""
@@ -1253,6 +1550,14 @@ msgstr ""
1253
  msgid "Select Role"
1254
  msgstr ""
1255
 
 
 
 
 
 
 
 
 
1256
  #: Application/Backend/phtml/settings/tools.phtml:8
1257
  msgid "Export AAM Settings"
1258
  msgstr ""
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: AAM\n"
5
+ "POT-Creation-Date: 2017-12-03 15:15-0500\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: WPAAM <support@wpaam.com>\n"
8
  "Language-Team: WP AAM <vasyl@vasyltech.com>\n"
13
  "X-Generator: Poedit 2.0.4\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;preparePhrase\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
89
  msgid "Media Files Access Control"
90
  msgstr ""
91
 
92
+ #: Application/Backend/Feature/Settings/Content.php:33
93
+ #, php-format
94
+ msgid ""
95
+ "Allow AAM to manage a physically access to all media files located in the "
96
+ "defined by the system [uploads] folder. [Note!] This feature requires "
97
+ "additional steps as described in %sthis article%s."
98
+ msgstr ""
99
+
100
  #: Application/Backend/Feature/Settings/Content.php:37
101
  msgid "Check Post Visibility"
102
  msgstr ""
128
  msgid "Edit/Delete Capabilities"
129
  msgstr ""
130
 
131
+ #: Application/Backend/Feature/Settings/Core.php:33
132
+ msgid ""
133
+ "Allow to edit or delete any existing capability on the Capabilities tab. "
134
+ "[Warning!] For experienced users only. Changing or deleting capability may "
135
+ "result in loosing access to some features or the entire website."
136
+ msgstr ""
137
+
138
  #: Application/Backend/Feature/Settings/Core.php:37
139
  msgid "Backend Access Control"
140
  msgstr ""
286
  msgstr ""
287
 
288
  #: Application/Backend/View/Localization.php:42 media/js/aam.js:129
289
+ #: media/js/aam.js:602 Application/Backend/phtml/index.phtml:169
290
  #: Application/Backend/phtml/main/capability.phtml:26
291
  #: Application/Backend/phtml/main/capability.phtml:64
292
  msgid "Create"
293
  msgstr ""
294
 
295
  #: Application/Backend/View/Localization.php:43 media/js/aam.js:153
296
+ #: Application/Backend/phtml/index.phtml:123
297
+ #: Application/Backend/phtml/index.phtml:266
298
  msgid "Users"
299
  msgstr ""
300
 
313
  #: Application/Backend/View/Localization.php:47 media/js/aam.js:403
314
  #: Application/Backend/phtml/extensions.phtml:51
315
  #: Application/Backend/phtml/extensions.phtml:78
316
+ #: Application/Backend/phtml/index.phtml:195
317
  #: Application/Backend/phtml/main/capability.phtml:86
318
  #: Application/Backend/phtml/partial/post-advanced-settings.phtml:16
319
  #: Application/Backend/phtml/partial/post-advanced-settings.phtml:37
334
 
335
  #: Application/Backend/View/Localization.php:50
336
  #: Application/Backend/View/Localization.php:62 media/js/aam.js:251
337
+ #: media/js/aam.js:440 Application/Backend/phtml/index.phtml:207
338
  msgid "Delete Role"
339
  msgstr ""
340
 
352
 
353
  #: Application/Backend/View/Localization.php:54 media/js/aam.js:619
354
  #: Application/Backend/phtml/frame.phtml:46
355
+ #: Application/Backend/phtml/index.phtml:140
356
  msgid "Role"
357
  msgstr ""
358
 
541
  msgid "E-Product"
542
  msgstr ""
543
 
544
+ #: Application/Backend/View/PostOptionList.php:80
545
+ #, php-format
546
+ msgid ""
547
+ "[Premium feature!] Start selling access to the %s. Access will be granted to "
548
+ "read, view or download %s only if selected E-Product had been purchased. For "
549
+ "more information %scheck this article%s."
550
+ msgstr ""
551
+
552
  #: Application/Backend/View/PostOptionList.php:87
553
  #, php-format
554
  msgid ""
565
  msgstr ""
566
 
567
  #: Application/Backend/View/PostOptionList.php:96
568
+ #: Application/Backend/phtml/index.phtml:213
569
  #: Application/Backend/phtml/main/capability.phtml:104
570
  msgid "Delete"
571
  msgstr ""
611
  msgid "All Users, Roles and Visitor"
612
  msgstr ""
613
 
614
+ #: Application/Extension/List.php:63
615
+ msgid ""
616
+ "[Deprecated!]. The extension is deprecated and replaces with more "
617
+ "sophisticated E-Commerce extension. If you already purchased it, please "
618
+ "contact us to upgrade your license for no additional cost."
619
+ msgstr ""
620
+
621
  #: Application/Extension/Repository.php:128
622
  #, php-format
623
  msgid ""
624
+ "The [%s] file is missing. Update extension to the latest version. %sRead "
625
+ "more.%s"
626
  msgstr ""
627
 
628
+ #: Application/Extension/Repository.php:307
629
  #, php-format
630
  msgid "Failed to create %s"
631
  msgstr ""
632
 
633
+ #: Application/Extension/Repository.php:311
634
  #, php-format
635
  msgid "Directory %s is not writable"
636
  msgstr ""
746
  msgid "Invalid data format"
747
  msgstr ""
748
 
749
+ #: Application/Backend/phtml/extensions.phtml:6
750
+ msgid ""
751
+ "By purchasing any of the extensions below, you obtain the license that "
752
+ "allows you to install and use our software for life and for one physical "
753
+ "WordPress installation only. However you will be able to download new "
754
+ "updates for one year from the time of purchase unless you purchased the "
755
+ "[Extended version]. Exceptions are websites where URL is either [localhost] "
756
+ "or starts with [dev.], [staging.], [test.] or [demo.] They are considered as "
757
+ "development websites and you can use the purchased license unlimited number "
758
+ "of times before it is activated on a production website. [Money back "
759
+ "guaranteed] within 10 day from the time of purchase."
760
+ msgstr ""
761
+
762
  #: Application/Backend/phtml/extensions.phtml:11
763
  msgid "Install/Update Extension"
764
  msgstr ""
795
  msgstr ""
796
 
797
  #: Application/Backend/phtml/extensions.phtml:55
798
+ #: Application/Backend/phtml/index.phtml:88
799
  msgid "Read More"
800
  msgstr ""
801
 
807
  #: Application/Backend/phtml/extensions.phtml:97
808
  #: Application/Backend/phtml/extensions.phtml:128
809
  #: Application/Backend/phtml/extensions.phtml:139
810
+ #: Application/Backend/phtml/index.phtml:153
811
+ #: Application/Backend/phtml/index.phtml:170
812
+ #: Application/Backend/phtml/index.phtml:180
813
+ #: Application/Backend/phtml/index.phtml:196
814
+ #: Application/Backend/phtml/index.phtml:206
815
+ #: Application/Backend/phtml/index.phtml:214
816
  #: Application/Backend/phtml/main/capability.phtml:54
817
  #: Application/Backend/phtml/main/capability.phtml:65
818
  #: Application/Backend/phtml/main/capability.phtml:75
847
  "Extension requires manual installation. Please follow few simple steps below."
848
  msgstr ""
849
 
850
+ #: Application/Backend/phtml/extensions.phtml:106
851
+ msgid "Click [Download] button below and save the zip archive on your computer"
852
+ msgstr ""
853
+
854
+ #: Application/Backend/phtml/extensions.phtml:107
855
+ msgid "Connect to your website via FTP and navigate to [wp-content] folder"
856
+ msgstr ""
857
+
858
+ #: Application/Backend/phtml/extensions.phtml:108
859
+ msgid ""
860
+ "Create [aam/extension] folder inside [wp-content] and make sure it is "
861
+ "writable by your server"
862
+ msgstr ""
863
+
864
+ #: Application/Backend/phtml/extensions.phtml:109
865
+ msgid ""
866
+ "Unzip downloaded archive and upload the folder inside the [wp-content/aam/"
867
+ "extension] folder"
868
+ msgstr ""
869
+
870
+ #: Application/Backend/phtml/extensions.phtml:113
871
+ msgid ""
872
+ "[PLEASE NOTE!] Your browser may not support the latest HTML5 attribures and "
873
+ "if downloaded file is not .ZIP archive, simply rename the file by adding ."
874
+ "zip extension."
875
+ msgstr ""
876
+
877
  #: Application/Backend/phtml/extensions.phtml:118
878
  #: Application/Backend/phtml/settings/tools.phtml:67
879
  msgid "Cancel"
891
  msgstr ""
892
 
893
  #: Application/Backend/phtml/frame.phtml:62
894
+ #: Application/Backend/phtml/index.phtml:228
895
  msgid "Username"
896
  msgstr ""
897
 
901
  msgstr ""
902
 
903
  #: Application/Backend/phtml/frame.phtml:75
904
+ #: Application/Backend/phtml/index.phtml:241
905
  msgid "Manage Visitors"
906
  msgstr ""
907
 
913
  msgstr ""
914
 
915
  #: Application/Backend/phtml/frame.phtml:84
916
+ #: Application/Backend/phtml/index.phtml:249
917
  msgid "Manage Default Access"
918
  msgstr ""
919
 
920
+ #: Application/Backend/phtml/frame.phtml:87
921
+ msgid "This feature is allowed only with [AAM Plus Package] extension."
922
+ msgstr ""
923
+
924
  #: Application/Backend/phtml/frame.phtml:100
925
  #: Application/Backend/phtml/main/menu.phtml:13
926
  #: Application/Backend/phtml/main/metabox.phtml:19
952
  msgid "Main Panel"
953
  msgstr ""
954
 
955
+ #: Application/Backend/phtml/index.phtml:19
956
+ msgid ""
957
+ "[Loading AAM UI]. Please wait. If content will not load within next 30 "
958
+ "seconds, clear your browser cache and reload the page. If still nothing, it "
959
+ "is most likely some sort of JavaScript or CSS conflict with one your active "
960
+ "plugins or theme. Try to deactivate all plugins and switch to any default "
961
+ "WordPress theme to find out what causes the issue."
962
+ msgstr ""
963
+
964
  #: Application/Backend/phtml/index.phtml:23
965
  msgid ""
966
  "Appreciate your interest in Advanced Access Manager (AAM). With strong "
972
  msgid "Please Note!"
973
  msgstr ""
974
 
975
+ #: Application/Backend/phtml/index.phtml:24
976
+ msgid ""
977
+ "Power comes with responsibility. Make sure you have enough knowledge in "
978
+ "WordPress Roles & Capabilities because AAM is very closely intergrated with "
979
+ "WordPress core. It is also very important [to have backup of your database "
980
+ "before you start working with AAM] (there is no need to backup your files, "
981
+ "AAM does not modify any physical files on your server and never did)."
982
+ msgstr ""
983
+
984
  #: Application/Backend/phtml/index.phtml:25
985
  msgid ""
986
  "AAM was thoroughly tested on the fresh installation of WordPress and in the "
995
  "functionality or %scontact us%s directly."
996
  msgstr ""
997
 
998
+ #: Application/Backend/phtml/index.phtml:39
999
  msgid "Notifications"
1000
  msgstr ""
1001
 
1002
+ #: Application/Backend/phtml/index.phtml:87
1003
+ msgid ""
1004
+ "The [Development Package] allows you to get all premium extensions for "
1005
+ "[unlimited number of websites]."
1006
+ msgstr ""
1007
+
1008
+ #: Application/Backend/phtml/index.phtml:98
1009
  msgid "AAM Multisite"
1010
  msgstr ""
1011
 
1012
+ #: Application/Backend/phtml/index.phtml:101
1013
+ msgid ""
1014
+ "Install free [AAM Multisite extension] in order to manage all your sites "
1015
+ "from Network Admin"
1016
+ msgstr ""
1017
+
1018
+ #: Application/Backend/phtml/index.phtml:102
1019
  msgid "Install AAM Multisite"
1020
  msgstr ""
1021
 
1022
+ #: Application/Backend/phtml/index.phtml:113
1023
  msgid "Users/Roles Manager"
1024
  msgstr ""
1025
 
1026
+ #: Application/Backend/phtml/index.phtml:120
1027
+ #: Application/Backend/phtml/index.phtml:261
1028
  msgid "Roles"
1029
  msgstr ""
1030
 
1031
+ #: Application/Backend/phtml/index.phtml:126
1032
+ #: Application/Backend/phtml/index.phtml:271
1033
  msgid "Visitor"
1034
  msgstr ""
1035
 
1036
+ #: Application/Backend/phtml/index.phtml:129
1037
+ #: Application/Backend/phtml/index.phtml:276
1038
  msgid "Default"
1039
  msgstr ""
1040
 
1041
+ #: Application/Backend/phtml/index.phtml:141
1042
+ #: Application/Backend/phtml/index.phtml:229
1043
  msgid "Action"
1044
  msgstr ""
1045
 
1046
+ #: Application/Backend/phtml/index.phtml:154
1047
  msgid "Create Role"
1048
  msgstr ""
1049
 
1050
+ #: Application/Backend/phtml/index.phtml:158
1051
+ #: Application/Backend/phtml/index.phtml:185
1052
  msgid "Role Name"
1053
  msgstr ""
1054
 
1055
+ #: Application/Backend/phtml/index.phtml:159
1056
+ #: Application/Backend/phtml/index.phtml:186
1057
  msgid "Enter Role Name"
1058
  msgstr ""
1059
 
1060
+ #: Application/Backend/phtml/index.phtml:162
1061
+ #: Application/Backend/phtml/index.phtml:189
1062
  msgid "Role Expiration"
1063
  msgstr ""
1064
 
1065
+ #: Application/Backend/phtml/index.phtml:163
1066
+ #: Application/Backend/phtml/index.phtml:190
1067
  msgid "Enter Expiration Rule"
1068
  msgstr ""
1069
 
1070
+ #: Application/Backend/phtml/index.phtml:181
1071
  msgid "Update Role"
1072
  msgstr ""
1073
 
1074
+ #: Application/Backend/phtml/index.phtml:210
1075
  #, php-format
1076
  msgid "Are you sure that you want to delete the %s role?"
1077
  msgstr ""
1078
 
1079
+ #: Application/Backend/phtml/index.phtml:240
1080
  msgid ""
1081
  "Manage access to your website for visitors (any user that is not "
1082
  "authenticated)"
1083
  msgstr ""
1084
 
1085
+ #: Application/Backend/phtml/index.phtml:248
1086
  msgid ""
1087
  "Manage default access to your website resources for all users, roles and "
1088
  "visitor. This includes Administrator role and your user"
1089
  msgstr ""
1090
 
1091
+ #: Application/Backend/phtml/index.phtml:257
1092
+ msgid ""
1093
+ "Manage access for your users, roles and visitors. Be careful with "
1094
+ "[Administrator] role as well as your admin user. [Database backup is "
1095
+ "strongly recommended]."
1096
+ msgstr ""
1097
+
1098
+ #: Application/Backend/phtml/index.phtml:262
1099
  msgid ""
1100
  "With Roles tab you can manage access for any defined role, edit role's name, "
1101
  "create new role or even delete existing (but only when there is no users "
1102
  "assigned to it). You are not allowed to delete Administrator role."
1103
  msgstr ""
1104
 
1105
+ #: Application/Backend/phtml/index.phtml:267
1106
  msgid ""
1107
  "Manage access for any user. As a bonus feature, you can block user. It means "
1108
  "that user will be not able to login to your website anymore."
1109
  msgstr ""
1110
 
1111
+ #: Application/Backend/phtml/index.phtml:272
1112
  msgid ""
1113
  "Visitor can be considered any user that is not authenticated to your website."
1114
  msgstr ""
1115
 
1116
+ #: Application/Backend/phtml/index.phtml:277
1117
  msgid ""
1118
  "Manage default access settings to your website resources for all users, "
1119
  "roles and visitors."
1123
  msgid "You are not allowed to manage any of the existing features."
1124
  msgstr ""
1125
 
1126
+ #: Application/Backend/phtml/main/404redirect.phtml:7
1127
+ msgid "Setup [default] 404 redirect for all none-existing pages."
1128
+ msgstr ""
1129
+
1130
+ #: Application/Backend/phtml/main/404redirect.phtml:20
1131
+ msgid "Default WordPress 404 handler"
1132
+ msgstr ""
1133
+
1134
+ #: Application/Backend/phtml/main/404redirect.phtml:24
1135
+ #: Application/Backend/phtml/main/login-redirect.phtml:31
1136
+ #: Application/Backend/phtml/main/logout-redirect.phtml:31
1137
+ #: Application/Backend/phtml/main/redirect.phtml:50
1138
+ msgid "Redirected to existing page [(select from the drop-down)]"
1139
+ msgstr ""
1140
+
1141
+ #: Application/Backend/phtml/main/404redirect.phtml:28
1142
+ #: Application/Backend/phtml/main/redirect.phtml:54
1143
+ #: Application/Backend/phtml/main/redirect.phtml:106
1144
+ msgid "Redirected to the URL [(enter valid URL starting from http or https)]"
1145
+ msgstr ""
1146
+
1147
+ #: Application/Backend/phtml/main/404redirect.phtml:32
1148
+ #: Application/Backend/phtml/main/login-redirect.phtml:39
1149
+ #: Application/Backend/phtml/main/logout-redirect.phtml:39
1150
+ #: Application/Backend/phtml/main/redirect.phtml:58
1151
+ #: Application/Backend/phtml/main/redirect.phtml:110
1152
+ #, php-format
1153
+ msgid "Trigger PHP callback function [(valid %sPHP callback%s is required)]"
1154
+ msgstr ""
1155
+
1156
  #: Application/Backend/phtml/main/404redirect.phtml:36
1157
  #: Application/Backend/phtml/main/login-redirect.phtml:43
1158
  #: Application/Backend/phtml/main/logout-redirect.phtml:43
1185
  msgid "PHP Callback Function"
1186
  msgstr ""
1187
 
1188
+ #: Application/Backend/phtml/main/404redirect.phtml:60
1189
+ msgid ""
1190
+ "You cannot setup 404 redirect for specific user, role or visitors. Switch to "
1191
+ "[Manage Default Access] and define default 404 redirect for everybody."
1192
+ msgstr ""
1193
+
1194
+ #: Application/Backend/phtml/main/capability.phtml:8
1195
+ #, php-format
1196
+ msgid ""
1197
+ "[Be careful!] Manage capabilities for [%s]. For more information about the "
1198
+ "concept of capabilities check %sWhat is a WordPress capability%s article."
1199
+ msgstr ""
1200
+
1201
  #: Application/Backend/phtml/main/capability.phtml:16
1202
  msgid "Filter"
1203
  msgstr ""
1234
  msgid "Enter Capability"
1235
  msgstr ""
1236
 
1237
+ #: Application/Backend/phtml/main/capability.phtml:83
1238
+ msgid ""
1239
+ "[Please note!] Capability will be updated for all roles. Any functionality "
1240
+ "that depends on this capability may not work properly."
1241
+ msgstr ""
1242
+
1243
  #: Application/Backend/phtml/main/capability.phtml:101
1244
  #, php-format
1245
  msgid "Are you sure that you want to delete %s capability for all roles?"
1246
  msgstr ""
1247
 
1248
+ #: Application/Backend/phtml/main/login-redirect.phtml:7
1249
+ msgid ""
1250
+ "Define the [default] login redirect for all users and roles when "
1251
+ "authentication is completed successfully."
1252
+ msgstr ""
1253
+
1254
+ #: Application/Backend/phtml/main/login-redirect.phtml:11
1255
+ #, php-format
1256
+ msgid ""
1257
+ "Customize login redirect for [%s] when the authentication is completed "
1258
+ "successfully."
1259
+ msgstr ""
1260
+
1261
  #: Application/Backend/phtml/main/login-redirect.phtml:27
1262
  #: Application/Backend/phtml/main/logout-redirect.phtml:27
1263
  msgid "WordPress default behavior"
1264
  msgstr ""
1265
 
1266
+ #: Application/Backend/phtml/main/login-redirect.phtml:35
1267
+ #: Application/Backend/phtml/main/logout-redirect.phtml:35
1268
+ msgid "Redirected to the URL [(enter full URL starting from http or https)]"
1269
+ msgstr ""
1270
+
1271
+ #: Application/Backend/phtml/main/logout-redirect.phtml:7
1272
+ msgid "Define the [default] logout redirect for all users and roles."
1273
+ msgstr ""
1274
+
1275
+ #: Application/Backend/phtml/main/logout-redirect.phtml:11
1276
+ #, php-format
1277
+ msgid "Customize logout redirect for [%s]."
1278
+ msgstr ""
1279
+
1280
+ #: Application/Backend/phtml/main/menu.phtml:6
1281
+ #, php-format
1282
+ msgid ""
1283
+ "Protect your backend area. The list of menus and submenus is based on "
1284
+ "capabilities [%s] has. For more information please check %sHow to manage "
1285
+ "WordPress backend menu%s."
1286
+ msgstr ""
1287
+
1288
  #: Application/Backend/phtml/main/menu.phtml:87
1289
  msgid "Dashboard Lockdown"
1290
  msgstr ""
1293
  msgid "You cannot restrict access to Dashboard home page."
1294
  msgstr ""
1295
 
1296
+ #: Application/Backend/phtml/main/menu.phtml:92
1297
+ #, php-format
1298
+ msgid ""
1299
+ "The [Home] is the default page every user is redirected after login. To "
1300
+ "restrict access to the entire backend, please check %sHow to lockdown "
1301
+ "WordPress backend%s article."
1302
+ msgstr ""
1303
+
1304
  #: Application/Backend/phtml/main/menu.phtml:96
1305
  msgid "OK"
1306
  msgstr ""
1307
 
1308
+ #: Application/Backend/phtml/main/metabox.phtml:6
1309
+ #, php-format
1310
+ msgid ""
1311
+ "Hide unnecessary or restricted metaboxes and widgets for [%s]. For more "
1312
+ "information please check %sHow to hide WordPress metaboxes and widgets%s."
1313
+ msgstr ""
1314
+
1315
  #: Application/Backend/phtml/main/metabox.phtml:12
1316
  msgid "Refresh"
1317
  msgstr ""
1332
  msgid "The list is not initialized. Click Refresh button above."
1333
  msgstr ""
1334
 
1335
+ #: Application/Backend/phtml/main/metabox.phtml:79
1336
+ #, php-format
1337
+ msgid ""
1338
+ "If your website requires HTTP authentication, please refer to [%sthis article"
1339
+ "%s] for additional information."
1340
+ msgstr ""
1341
+
1342
  #: Application/Backend/phtml/main/metabox.phtml:90
1343
  msgid "Initialize URL"
1344
  msgstr ""
1360
  msgid "Insert valid URL"
1361
  msgstr ""
1362
 
1363
+ #: Application/Backend/phtml/main/post.phtml:7
1364
+ #, php-format
1365
+ msgid ""
1366
+ "You are allowed to manage access to unlimited number of posts, pages or "
1367
+ "custom post types but only on role, user or visitor levels. Consider to "
1368
+ "purchase %s[AAM Plus Package]%s extension to have the ability to also manage "
1369
+ "access to categories and custom taxonomies or to define the default access "
1370
+ "to all posts, pages or custom post types. For more information about this "
1371
+ "functionality check %sWhat is a WordPress post%s."
1372
+ msgstr ""
1373
+
1374
  #: Application/Backend/phtml/main/post.phtml:15
1375
  #, php-format
1376
  msgid ""
1396
  msgid "Go Back"
1397
  msgstr ""
1398
 
1399
+ #: Application/Backend/phtml/main/redirect.phtml:7
1400
+ msgid ""
1401
+ "Define the [default] redirect for all users, roles and visitors when access "
1402
+ "is denied to any restricted resources on your website."
1403
+ msgstr ""
1404
+
1405
+ #: Application/Backend/phtml/main/redirect.phtml:11
1406
+ #, php-format
1407
+ msgid ""
1408
+ "Customize redirect for %s when access is denied to restricted resources like "
1409
+ "posts, categories, menus, etc. For more information about this feature, "
1410
+ "please check %sHow to redirect WordPress user when access is denied%s."
1411
+ msgstr ""
1412
+
1413
  #: Application/Backend/phtml/main/redirect.phtml:25
1414
  msgid "Frontend Redirect"
1415
  msgstr ""
1418
  msgid "Backend Redirect"
1419
  msgstr ""
1420
 
1421
+ #: Application/Backend/phtml/main/redirect.phtml:36
1422
+ #: Application/Backend/phtml/main/redirect.phtml:94
1423
+ msgid "Default [(\"Access Denied\" message)]"
1424
+ msgstr ""
1425
+
1426
+ #: Application/Backend/phtml/main/redirect.phtml:40
1427
+ #: Application/Backend/phtml/main/redirect.phtml:98
1428
+ msgid "Show customized message [(plain text or HTML)]"
1429
+ msgstr ""
1430
+
1431
+ #: Application/Backend/phtml/main/redirect.phtml:45
1432
+ msgid ""
1433
+ "Redirect to the login page [(after login, user will be redirected back to "
1434
+ "the restricted page)]"
1435
+ msgstr ""
1436
+
1437
  #: Application/Backend/phtml/main/redirect.phtml:62
1438
  #: Application/Backend/phtml/main/redirect.phtml:114
1439
  msgid "Customized Message"
1444
  msgid "Enter message..."
1445
  msgstr ""
1446
 
1447
+ #: Application/Backend/phtml/main/redirect.phtml:102
1448
+ msgid "Redirected to existing frontend page [(select from the drop-down)]"
1449
+ msgstr ""
1450
+
1451
+ #: Application/Backend/phtml/partial/login-redirect.phtml:3
1452
+ msgid ""
1453
+ "Setup [default] redirect after user logged in successfully for all your "
1454
+ "users and roles. With [AAM Login Redirect] extension you can customize login "
1455
+ "redirect for any user or role."
1456
+ msgstr ""
1457
+
1458
  #: Application/Backend/phtml/partial/post-advanced-settings.phtml:7
1459
  msgid "Define Threshold"
1460
  msgstr ""
1475
  msgid "Define Redirect Rule"
1476
  msgstr ""
1477
 
1478
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:52
1479
+ #, php-format
1480
+ msgid ""
1481
+ "To learn more about REDIRECT option, please refer to our [%sHelp Section%s]."
1482
+ msgstr ""
1483
+
1484
  #: Application/Backend/phtml/partial/post-advanced-settings.phtml:54
1485
  msgid "Enter Redirect Rule"
1486
  msgstr ""
1521
  msgid "E-Commerce Setup"
1522
  msgstr ""
1523
 
1524
+ #: Application/Backend/phtml/partial/post-advanced-settings.phtml:125
1525
+ msgid ""
1526
+ "Monetization is the premium feature that is available with [Payment] "
1527
+ "extension."
1528
+ msgstr ""
1529
+
1530
+ #: Application/Backend/phtml/partial/post-type.phtml:4
1531
+ #, php-format
1532
+ msgid ""
1533
+ "Manage default access to all your %s and %s Categories. This feature is "
1534
+ "available only with [AAM Plus Package] extension. But you can still manage "
1535
+ "access to individual %s but only up to 10 %s. Consider to purchase [AAM Plus "
1536
+ "Package] extension."
1537
+ msgstr ""
1538
+
1539
+ #: Application/Backend/phtml/partial/redirect.phtml:3
1540
+ msgid ""
1541
+ "Setup [default] redirect for all users, roles and visitors when access is "
1542
+ "denied for any restricted resources on your website."
1543
+ msgstr ""
1544
+
1545
  #: Application/Backend/phtml/partial/role-inheritance.phtml:3
1546
  msgid "Inherit Capabilities From"
1547
  msgstr ""
1550
  msgid "Select Role"
1551
  msgstr ""
1552
 
1553
+ #: Application/Backend/phtml/partial/term-type.phtml:4
1554
+ #, php-format
1555
+ msgid ""
1556
+ "Manage access to %s is available with [AAM Plus Package] extension only. "
1557
+ "With this feature you can define default access to all child posts that "
1558
+ "belong to %s. Consider to purchase [AAM Plus Package] extension."
1559
+ msgstr ""
1560
+
1561
  #: Application/Backend/phtml/settings/tools.phtml:8
1562
  msgid "Export AAM Settings"
1563
  msgstr ""
aam.php CHANGED
@@ -3,7 +3,7 @@
3
  /**
4
  Plugin Name: Advanced Access Manager
5
  Description: All you need to manage access to your WordPress website
6
- Version: 5.0
7
  Author: Vasyl Martyniuk <vasyl@vasyltech.com>
8
  Author URI: https://vasyltech.com
9
 
3
  /**
4
  Plugin Name: Advanced Access Manager
5
  Description: All you need to manage access to your WordPress website
6
+ Version: 5.0.1
7
  Author: Vasyl Martyniuk <vasyl@vasyltech.com>
8
  Author URI: https://vasyltech.com
9
 
media/css/aam.css CHANGED
@@ -934,6 +934,11 @@ input[type=radio]:checked + label:before {
934
  padding: 10px 15px;
935
  }
936
 
 
 
 
 
 
937
  .aam-error-list {
938
  padding: 15px;
939
  list-style: disc;
934
  padding: 10px 15px;
935
  }
936
 
937
+ .highlighted-italic i {
938
+ color: #a94442;
939
+ font-weight: 700;
940
+ }
941
+
942
  .aam-error-list {
943
  padding: 15px;
944
  list-style: disc;
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: vasyltech
3
  Tags: access, role, user, capability, page access, post access, comments, security, login redirect, brute force attack, double authentication, membership, backend lockdown, wp-admin, 404, activity tracking
4
  Requires at least: 3.8
5
- Tested up to: 4.9
6
- Stable tag: 5.0
7
 
8
  The most powerful access management plugin for WordPress websites.
9
 
@@ -59,6 +59,11 @@ https://www.youtube.com/watch?v=yiOhjaacNJc
59
 
60
  == Changelog ==
61
 
 
 
 
 
 
62
  = 5.0 =
63
  * Added ACCESS COUNTER option to Posts & Pages
64
  * Added premium MONETIZE option to Posts & Pages
2
  Contributors: vasyltech
3
  Tags: access, role, user, capability, page access, post access, comments, security, login redirect, brute force attack, double authentication, membership, backend lockdown, wp-admin, 404, activity tracking
4
  Requires at least: 3.8
5
+ Tested up to: 4.9.1
6
+ Stable tag: 5.0.1
7
 
8
  The most powerful access management plugin for WordPress websites.
9
 
59
 
60
  == Changelog ==
61
 
62
+ = 5.0.1 =
63
+ * Fixed bug with extension updates status
64
+ * Fixed bug in post core handling caused by incompatibility with unknown plugin
65
+ * Improved UI notification with more insides about the issue
66
+
67
  = 5.0 =
68
  * Added ACCESS COUNTER option to Posts & Pages
69
  * Added premium MONETIZE option to Posts & Pages