Version Description
- Fixed the bug added slashes to the Access Policy JSON document
- Fixed the bug with Metaboxes & Widgets to prevent PHP warning for widgets that registered with Closure callback
- Fixed the bug in URI Access feature that causes PHP warning when data is merged for multiple roles
- Fixed the bug with Access Policy rules that are not initialized correctly for Visitors
- Fixed the bug reported on GitHub https://github.com/aamplugin/advanced-access-manager/issues/6
- Changed the way AAM hooks into get_options pipeline with Access Policy "Params". This is done to support array options
- Changed the way Login Widget is registered to reduce code
Download this release
Release Info
Developer | vasyltech |
Plugin | Advanced Access Manager |
Version | 5.9.6.2 |
Comparing to | |
See all releases |
Code changes from version 5.9.6.1 to 5.9.6.2
- Lang/advanced-access-manager-en_US.po +0 -2406
- aam.php +4 -2
- {Application → application}/Api/Manager.php +0 -0
- {Application → application}/Api/Rest/Resource/Post.php +0 -0
- {Application → application}/Api/Rest/Resource/Revision.php +0 -0
- {Application → application}/Api/Rest/Resource/User.php +0 -0
- {Application → application}/Backend/Authorization.php +0 -0
- {Application → application}/Backend/Feature.php +0 -0
- {Application → application}/Backend/Feature/Abstract.php +0 -0
- {Application → application}/Backend/Feature/Extension/Manager.php +0 -0
- {Application → application}/Backend/Feature/Main/404Redirect.php +0 -0
- {Application → application}/Backend/Feature/Main/Capability.php +0 -0
- {Application → application}/Backend/Feature/Main/GetStarted.php +0 -0
- {Application → application}/Backend/Feature/Main/Jwt.php +0 -0
- {Application → application}/Backend/Feature/Main/LoginRedirect.php +0 -0
- {Application → application}/Backend/Feature/Main/LogoutRedirect.php +0 -0
- {Application → application}/Backend/Feature/Main/Menu.php +0 -0
- {Application → application}/Backend/Feature/Main/Metabox.php +0 -0
- {Application → application}/Backend/Feature/Main/Policy.php +0 -0
- {Application → application}/Backend/Feature/Main/Post.php +1 -1
- {Application → application}/Backend/Feature/Main/Redirect.php +0 -0
- {Application → application}/Backend/Feature/Main/Route.php +0 -0
- {Application → application}/Backend/Feature/Main/Toolbar.php +0 -0
- {Application → application}/Backend/Feature/Main/Uri.php +0 -0
- {Application → application}/Backend/Feature/Settings/ConfigPress.php +0 -0
- {Application → application}/Backend/Feature/Settings/Content.php +0 -0
- {Application → application}/Backend/Feature/Settings/Core.php +0 -0
- {Application → application}/Backend/Feature/Settings/Manager.php +0 -0
- {Application → application}/Backend/Feature/Settings/Security.php +0 -0
- {Application → application}/Backend/Feature/Subject/Role.php +0 -0
- {Application → application}/Backend/Feature/Subject/User.php +0 -0
- {Application → application}/Backend/Filter.php +0 -0
- {Application → application}/Backend/Manager.php +3 -8
- {Application → application}/Backend/Subject.php +0 -0
- {Application → application}/Backend/View.php +0 -0
- {Application → application}/Backend/View/Helper.php +0 -0
- {Application → application}/Backend/View/Localization.php +0 -0
- {Application → application}/Backend/View/PostOptionList.php +0 -0
- {Application → application}/Backend/Widget/Login.php +6 -4
- {Application → application}/Backend/phtml/extensions.phtml +0 -0
- {Application → application}/Backend/phtml/index.phtml +0 -0
- {Application → application}/Backend/phtml/main-panel.phtml +0 -0
- {Application → application}/Backend/phtml/main/404redirect.phtml +0 -0
- {Application → application}/Backend/phtml/main/capability.phtml +0 -0
- {Application → application}/Backend/phtml/main/get-started.phtml +0 -0
- {Application → application}/Backend/phtml/main/jwt.phtml +0 -0
- {Application → application}/Backend/phtml/main/login-redirect.phtml +0 -0
- {Application → application}/Backend/phtml/main/logout-redirect.phtml +0 -0
- {Application → application}/Backend/phtml/main/menu.phtml +0 -0
- {Application → application}/Backend/phtml/main/metabox.phtml +0 -0
- {Application → application}/Backend/phtml/main/policy.phtml +0 -0
- {Application → application}/Backend/phtml/main/post.phtml +0 -0
- {Application → application}/Backend/phtml/main/redirect.phtml +0 -0
- {Application → application}/Backend/phtml/main/route.phtml +0 -0
- {Application → application}/Backend/phtml/main/toolbar.phtml +0 -0
- {Application → application}/Backend/phtml/main/uri.phtml +0 -0
- {Application → application}/Backend/phtml/metabox/metabox-content.phtml +1 -1
- {Application → application}/Backend/phtml/metabox/policy-metabox.phtml +1 -1
- {Application → application}/Backend/phtml/metabox/policy-principal-metabox.phtml +0 -0
- {Application → application}/Backend/phtml/metabox/post-metabox.phtml +0 -0
- {Application → application}/Backend/phtml/metabox/term-metabox.phtml +0 -0
- {Application → application}/Backend/phtml/partial/login-redirect.phtml +0 -0
- {Application → application}/Backend/phtml/partial/post-access-form.phtml +0 -0
- {Application → application}/Backend/phtml/partial/post-advanced-settings.phtml +0 -0
- {Application → application}/Backend/phtml/partial/post-type.phtml +0 -0
- {Application → application}/Backend/phtml/partial/redirect.phtml +0 -0
- {Application → application}/Backend/phtml/partial/role-inheritance.phtml +0 -0
- {Application → application}/Backend/phtml/partial/term-type.phtml +0 -0
- {Application → application}/Backend/phtml/settings/configpress.phtml +0 -0
- {Application → application}/Backend/phtml/settings/content.phtml +0 -0
- {Application → application}/Backend/phtml/settings/core.phtml +0 -0
- {Application → application}/Backend/phtml/settings/security.phtml +0 -0
- {Application → application}/Backend/phtml/system/export.phtml +0 -0
- {Application → application}/Backend/phtml/user/multiple-roles.phtml +0 -0
- {Application → application}/Backend/phtml/widget/login-backend.phtml +0 -0
- {Application → application}/Backend/phtml/widget/login-frontend.phtml +0 -0
- {Application → application}/Core/API.php +0 -0
- {Application → application}/Core/Api/Area.php +0 -0
- {Application → application}/Core/Cache.php +0 -0
- {Application → application}/Core/Compatibility.php +0 -0
- {Application → application}/Core/Config.php +0 -0
- {Application → application}/Core/ConfigPress.php +0 -0
- {Application → application}/Core/ConfigPress/Evaluator.php +0 -0
- {Application → application}/Core/ConfigPress/Reader.php +0 -0
- {Application → application}/Core/Console.php +0 -0
- {Application → application}/Core/Exporter.php +0 -0
- {Application → application}/Core/Gateway.php +0 -0
- {Application → application}/Core/Importer.php +0 -0
- {Application → application}/Core/Jwt/Auth.php +0 -0
- {Application → application}/Core/Jwt/Issuer.php +0 -0
- {Application → application}/Core/Jwt/Manager.php +0 -0
- {Application → application}/Core/Login.php +0 -0
- {Application → application}/Core/Media.php +0 -0
- {Application → application}/Core/Object.php +0 -0
- {Application → application}/Core/Object/Cache.php +0 -0
- {Application → application}/Core/Object/Capability.php +0 -0
- {Application → application}/Core/Object/LoginRedirect.php +0 -0
- {Application → application}/Core/Object/LogoutRedirect.php +0 -0
- {Application → application}/Core/Object/Menu.php +0 -0
- {Application → application}/Core/Object/Metabox.php +9 -5
- {Application → application}/Core/Object/Policy.php +0 -0
- {Application → application}/Core/Object/Post.php +0 -0
- {Application → application}/Core/Object/Redirect.php +0 -0
- {Application → application}/Core/Object/Route.php +0 -0
- {Application → application}/Core/Object/Toolbar.php +0 -0
- {Application → application}/Core/Object/Uri.php +0 -3
- {Application → application}/Core/Object/Visibility.php +0 -0
- {Application → application}/Core/Policy/Condition.php +0 -0
- {Application → application}/Core/Policy/Factory.php +0 -0
- {Application → application}/Core/Policy/Manager.php +16 -3
- {Application → application}/Core/Policy/Token.php +0 -0
- {Application → application}/Core/Policy/Validator.php +0 -0
- {Application → application}/Core/Request.php +0 -0
- {Application → application}/Core/Server.php +0 -0
- {Application → application}/Core/Subject.php +0 -0
- {Application → application}/Core/Subject/Default.php +0 -0
- {Application → application}/Core/Subject/Role.php +0 -0
- {Application → application}/Core/Subject/User.php +0 -0
- {Application → application}/Core/Subject/Visitor.php +9 -0
- {Application → application}/Extension/List.php +0 -0
- {Application → application}/Extension/Repository.php +0 -0
- {Application → application}/Frontend/Authorization.php +0 -0
- {Application → application}/Frontend/Filter.php +0 -0
- {Application → application}/Frontend/Manager.php +0 -0
- {Application → application}/Frontend/phtml/login.phtml +0 -0
- {Application → application}/Shared/Manager.php +0 -0
- {Application → application}/Shortcode/Factory.php +0 -0
- {Application → application}/Shortcode/Strategy/Content.php +19 -8
- {Application → application}/Shortcode/Strategy/Interface.php +0 -0
- {Application → application}/Shortcode/Strategy/Login.php +1 -1
- {Application → application}/Shortcode/Strategy/LoginRedirect.php +0 -0
- autoloader.php +1 -1
- {Lang → lang}/advanced-access-manager-en_US.mo +0 -0
- lang/advanced-access-manager-en_US.po +2608 -0
- readme.txt +11 -2
Lang/advanced-access-manager-en_US.po
DELETED
@@ -1,2406 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Advanced Access Manager\n"
|
4 |
-
"POT-Creation-Date: 2019-02-07 06:56-0500\n"
|
5 |
-
"PO-Revision-Date: \n"
|
6 |
-
"Last-Translator: \n"
|
7 |
-
"Language-Team: AAMPlugin <support@aamplugin.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"
|
12 |
-
"X-Generator: Poedit 2.2.1\n"
|
13 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Poedit-KeywordsList: __;preparePhrase\n"
|
16 |
-
"X-Poedit-Basepath: ..\n"
|
17 |
-
"X-Poedit-SearchPath-0: .\n"
|
18 |
-
|
19 |
-
#: Application/Api/Manager.php:129
|
20 |
-
msgid "Access denied"
|
21 |
-
msgstr ""
|
22 |
-
|
23 |
-
#: Application/Backend/Feature/Extension/Manager.php:75
|
24 |
-
msgid "Download failure. Try again or contact us."
|
25 |
-
msgstr ""
|
26 |
-
|
27 |
-
#: Application/Backend/Feature/Extension/Manager.php:113
|
28 |
-
msgid "No valid license key was found."
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: Application/Backend/Feature/Main/404Redirect.php:53
|
32 |
-
msgid "404 Redirect"
|
33 |
-
msgstr ""
|
34 |
-
|
35 |
-
#: Application/Backend/Feature/Main/Capability.php:88
|
36 |
-
msgid "Permission denied to update this capability"
|
37 |
-
msgstr ""
|
38 |
-
|
39 |
-
#: Application/Backend/Feature/Main/Capability.php:105
|
40 |
-
msgid "Capability already exists"
|
41 |
-
msgstr ""
|
42 |
-
|
43 |
-
#: Application/Backend/Feature/Main/Capability.php:128
|
44 |
-
msgid "Permission denied to delete this capability"
|
45 |
-
msgstr ""
|
46 |
-
|
47 |
-
#: Application/Backend/Feature/Main/Capability.php:298
|
48 |
-
#: Application/Backend/Feature/Main/Capability.php:339
|
49 |
-
msgid "System"
|
50 |
-
msgstr ""
|
51 |
-
|
52 |
-
#: Application/Backend/Feature/Main/Capability.php:299
|
53 |
-
#: Application/Backend/Feature/Main/Capability.php:341
|
54 |
-
msgid "Posts & Pages"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: Application/Backend/Feature/Main/Capability.php:300
|
58 |
-
#: Application/Backend/Feature/Main/Capability.php:343
|
59 |
-
msgid "Backend"
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: Application/Backend/Feature/Main/Capability.php:301
|
63 |
-
#: Application/Backend/Feature/Main/Capability.php:345
|
64 |
-
msgid "AAM Interface"
|
65 |
-
msgstr ""
|
66 |
-
|
67 |
-
#: Application/Backend/Feature/Main/Capability.php:302
|
68 |
-
#: Application/Backend/Feature/Main/Capability.php:347
|
69 |
-
msgid "Miscellaneous"
|
70 |
-
msgstr ""
|
71 |
-
|
72 |
-
#: Application/Backend/Feature/Main/Capability.php:379
|
73 |
-
msgid "Capabilities"
|
74 |
-
msgstr ""
|
75 |
-
|
76 |
-
#: Application/Backend/Feature/Main/GetStarted.php:36
|
77 |
-
msgid "Get Started"
|
78 |
-
msgstr ""
|
79 |
-
|
80 |
-
#: Application/Backend/Feature/Main/LoginRedirect.php:73
|
81 |
-
msgid "Login Redirect"
|
82 |
-
msgstr ""
|
83 |
-
|
84 |
-
#: Application/Backend/Feature/Main/LogoutRedirect.php:73
|
85 |
-
msgid "Logout Redirect"
|
86 |
-
msgstr ""
|
87 |
-
|
88 |
-
#: Application/Backend/Feature/Main/Menu.php:207
|
89 |
-
msgid "Backend Menu"
|
90 |
-
msgstr ""
|
91 |
-
|
92 |
-
#: Application/Backend/Feature/Main/Metabox.php:207
|
93 |
-
msgid "Metaboxes & Widgets"
|
94 |
-
msgstr ""
|
95 |
-
|
96 |
-
#: Application/Backend/Feature/Main/Policy.php:59
|
97 |
-
msgid "Failed to fetch policy. Please try again."
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
#: Application/Backend/Feature/Main/Policy.php:171
|
101 |
-
msgid "(no title)"
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
#: Application/Backend/Feature/Main/Policy.php:210
|
105 |
-
#: Application/Shared/Manager.php:127
|
106 |
-
msgid "Access Policies"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: Application/Backend/Feature/Main/Post.php:487
|
110 |
-
#: Application/Backend/phtml/main/404redirect.phtml:36
|
111 |
-
#: Application/Backend/phtml/main/login-redirect.phtml:43
|
112 |
-
#: Application/Backend/phtml/main/logout-redirect.phtml:43
|
113 |
-
#: Application/Backend/phtml/main/redirect.phtml:67
|
114 |
-
#: Application/Backend/phtml/main/redirect.phtml:119
|
115 |
-
#: Application/Backend/phtml/main/uri.phtml:74
|
116 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:89
|
117 |
-
msgid "Existing Page"
|
118 |
-
msgstr ""
|
119 |
-
|
120 |
-
#: Application/Backend/Feature/Main/Post.php:489
|
121 |
-
msgid "Valid URL"
|
122 |
-
msgstr ""
|
123 |
-
|
124 |
-
#: Application/Backend/Feature/Main/Post.php:491
|
125 |
-
msgid "Custom Callback"
|
126 |
-
msgstr ""
|
127 |
-
|
128 |
-
#: Application/Backend/Feature/Main/Post.php:645
|
129 |
-
msgid "Posts & Terms"
|
130 |
-
msgstr ""
|
131 |
-
|
132 |
-
#: Application/Backend/Feature/Main/Redirect.php:83
|
133 |
-
msgid "Access Denied Redirect"
|
134 |
-
msgstr ""
|
135 |
-
|
136 |
-
#: Application/Backend/Feature/Main/Route.php:120
|
137 |
-
msgid "API Routes"
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#: Application/Backend/Feature/Main/Toolbar.php:123
|
141 |
-
msgid "Admin Toolbar"
|
142 |
-
msgstr ""
|
143 |
-
|
144 |
-
#: Application/Backend/Feature/Main/Uri.php:130
|
145 |
-
msgid "URI Access"
|
146 |
-
msgstr ""
|
147 |
-
|
148 |
-
#: Application/Backend/Feature/Settings/ConfigPress.php:53
|
149 |
-
msgid "ConfigPress"
|
150 |
-
msgstr ""
|
151 |
-
|
152 |
-
#: Application/Backend/Feature/Settings/Content.php:32
|
153 |
-
msgid "Media Files Access Control"
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
#: Application/Backend/Feature/Settings/Content.php:33
|
157 |
-
#, php-format
|
158 |
-
msgid ""
|
159 |
-
"Allow AAM to manage a physically access to all media files located in the "
|
160 |
-
"defined by the system [uploads] folder. [Note!] This feature requires "
|
161 |
-
"additional steps as described in %sthis article%s."
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#: Application/Backend/Feature/Settings/Content.php:37
|
165 |
-
msgid "Manage Hidden Post Types"
|
166 |
-
msgstr ""
|
167 |
-
|
168 |
-
#: Application/Backend/Feature/Settings/Content.php:38
|
169 |
-
msgid ""
|
170 |
-
"By default AAM allows you to manage access only to public post types on "
|
171 |
-
"Posts & Terms tab. By enabling this feature, you also will be able to manage "
|
172 |
-
"access to hidden post types like revisions, navigation menus or any other "
|
173 |
-
"custom post types that are not registered as public."
|
174 |
-
msgstr ""
|
175 |
-
|
176 |
-
#: Application/Backend/Feature/Settings/Content.php:57
|
177 |
-
msgid "Content Settings"
|
178 |
-
msgstr ""
|
179 |
-
|
180 |
-
#: Application/Backend/Feature/Settings/Core.php:32
|
181 |
-
msgid "Get Started Tab"
|
182 |
-
msgstr ""
|
183 |
-
|
184 |
-
#: Application/Backend/Feature/Settings/Core.php:33
|
185 |
-
msgid ""
|
186 |
-
"Display the \"Get Started\" feature on the Main panel. You can disable this "
|
187 |
-
"feature to remove the extra tab when you get familiar with core access "
|
188 |
-
"control concepts."
|
189 |
-
msgstr ""
|
190 |
-
|
191 |
-
#: Application/Backend/Feature/Settings/Core.php:37
|
192 |
-
msgid "Edit/Delete Capabilities"
|
193 |
-
msgstr ""
|
194 |
-
|
195 |
-
#: Application/Backend/Feature/Settings/Core.php:38
|
196 |
-
msgid ""
|
197 |
-
"Allow to edit or delete any existing capability on the Capabilities tab. "
|
198 |
-
"[Warning!] For experienced users only. Changing or deleting capability may "
|
199 |
-
"result in loosing access to some features or even the entire website."
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#: Application/Backend/Feature/Settings/Core.php:42
|
203 |
-
msgid "Backend Access Control"
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: Application/Backend/Feature/Settings/Core.php:43
|
207 |
-
msgid ""
|
208 |
-
"Allow AAM to manage access to the backend. Keep this option disabled if "
|
209 |
-
"there is no needs to restrict backend features for other users."
|
210 |
-
msgstr ""
|
211 |
-
|
212 |
-
#: Application/Backend/Feature/Settings/Core.php:47
|
213 |
-
msgid "Frontend Access Control"
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
#: Application/Backend/Feature/Settings/Core.php:48
|
217 |
-
msgid ""
|
218 |
-
"Allow AAM to manage access to the frontend. Keep this option disabled if "
|
219 |
-
"there is no needs to restrict frontend resources for users and visitors."
|
220 |
-
msgstr ""
|
221 |
-
|
222 |
-
#: Application/Backend/Feature/Settings/Core.php:52
|
223 |
-
msgid "API Access Control"
|
224 |
-
msgstr ""
|
225 |
-
|
226 |
-
#: Application/Backend/Feature/Settings/Core.php:53
|
227 |
-
msgid ""
|
228 |
-
"Allow AAM to manage access to the website resources that are invoked with "
|
229 |
-
"WordPress core APIs. Keep this option disabled if there is no needs to "
|
230 |
-
"restrict API access."
|
231 |
-
msgstr ""
|
232 |
-
|
233 |
-
#: Application/Backend/Feature/Settings/Core.php:57
|
234 |
-
msgid "Render Access Manager Metabox"
|
235 |
-
msgstr ""
|
236 |
-
|
237 |
-
#: Application/Backend/Feature/Settings/Core.php:58
|
238 |
-
msgid ""
|
239 |
-
"Render Access Manager metabox on all post and term edit pages. Access "
|
240 |
-
"Manager metabox is the quick way to manage access to any post or term "
|
241 |
-
"without leaving an edit page."
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#: Application/Backend/Feature/Settings/Core.php:62
|
245 |
-
msgid "Render Access Link"
|
246 |
-
msgstr ""
|
247 |
-
|
248 |
-
#: Application/Backend/Feature/Settings/Core.php:63
|
249 |
-
msgid ""
|
250 |
-
"Render Access shortcut link under any post, page, custom post type, "
|
251 |
-
"category, custom taxonomy title or user name."
|
252 |
-
msgstr ""
|
253 |
-
|
254 |
-
#: Application/Backend/Feature/Settings/Core.php:67
|
255 |
-
msgid "Secure Login"
|
256 |
-
msgstr ""
|
257 |
-
|
258 |
-
#: Application/Backend/Feature/Settings/Core.php:68
|
259 |
-
msgid ""
|
260 |
-
"AAM comes with its own user login handler. With this feature you can add "
|
261 |
-
"AJAX login widget to your frontend page that significantly enhance your "
|
262 |
-
"website security."
|
263 |
-
msgstr ""
|
264 |
-
|
265 |
-
#: Application/Backend/Feature/Settings/Core.php:72
|
266 |
-
msgid "XML-RPC WordPress API"
|
267 |
-
msgstr ""
|
268 |
-
|
269 |
-
#: Application/Backend/Feature/Settings/Core.php:73
|
270 |
-
#, php-format
|
271 |
-
msgid ""
|
272 |
-
"Remote procedure call (RPC) interface is used to manage WordPress website "
|
273 |
-
"content and features. For more information check %sXML-RPC Support%s article."
|
274 |
-
msgstr ""
|
275 |
-
|
276 |
-
#: Application/Backend/Feature/Settings/Core.php:77
|
277 |
-
msgid "RESTful WordPress API"
|
278 |
-
msgstr ""
|
279 |
-
|
280 |
-
#: Application/Backend/Feature/Settings/Core.php:78
|
281 |
-
#, php-format
|
282 |
-
msgid ""
|
283 |
-
"RESTful interface that is used to manage WordPress website content and "
|
284 |
-
"features. For more information check %sREST API handbook%s."
|
285 |
-
msgstr ""
|
286 |
-
|
287 |
-
#: Application/Backend/Feature/Settings/Core.php:82
|
288 |
-
msgid "JWT Authentication"
|
289 |
-
msgstr ""
|
290 |
-
|
291 |
-
#: Application/Backend/Feature/Settings/Core.php:83
|
292 |
-
#, php-format
|
293 |
-
msgid ""
|
294 |
-
"[Note!] PHP 5.4 or higher is required for this feature. Enable the ability "
|
295 |
-
"to authenticate user with WordPress RESTful API and JWT token. For more "
|
296 |
-
"information, check %sHow to authenticate WordPress user with JWT token%s "
|
297 |
-
"article"
|
298 |
-
msgstr ""
|
299 |
-
|
300 |
-
#: Application/Backend/Feature/Settings/Core.php:87
|
301 |
-
msgid "Multiple Roles Support"
|
302 |
-
msgstr ""
|
303 |
-
|
304 |
-
#: Application/Backend/Feature/Settings/Core.php:88
|
305 |
-
#, php-format
|
306 |
-
msgid ""
|
307 |
-
"Enable support for multiple roles per use. The final access settings or "
|
308 |
-
"general settings will be computed based on the mergin preferences. For more "
|
309 |
-
"information check %sWordPress access control for users with multiple roles%s "
|
310 |
-
"article."
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: Application/Backend/Feature/Settings/Core.php:92
|
314 |
-
msgid "Support AAM Extensions"
|
315 |
-
msgstr ""
|
316 |
-
|
317 |
-
#: Application/Backend/Feature/Settings/Core.php:93
|
318 |
-
msgid ""
|
319 |
-
"AAM comes with the limited list of premium and free extensions that "
|
320 |
-
"significantly enhance AAM behavior. You can disable support for AAM "
|
321 |
-
"extension and any already installed extension will no longer be loaded "
|
322 |
-
"during the website execution as well as website administrator will not be "
|
323 |
-
"able to install new extensions."
|
324 |
-
msgstr ""
|
325 |
-
|
326 |
-
#: Application/Backend/Feature/Settings/Core.php:97
|
327 |
-
msgid "AAM Cron Job"
|
328 |
-
msgstr ""
|
329 |
-
|
330 |
-
#: Application/Backend/Feature/Settings/Core.php:98
|
331 |
-
msgid ""
|
332 |
-
"AAM cron job executes periodically (typically once a day) to check for "
|
333 |
-
"available updates for already installed extensions. Cron job is not executed "
|
334 |
-
"if there are no installed extensions."
|
335 |
-
msgstr ""
|
336 |
-
|
337 |
-
#: Application/Backend/Feature/Settings/Core.php:117
|
338 |
-
msgid "Core Settings"
|
339 |
-
msgstr ""
|
340 |
-
|
341 |
-
#: Application/Backend/Feature/Settings/Security.php:32
|
342 |
-
#: Application/Backend/Feature/Settings/Security.php:37
|
343 |
-
msgid "Login Timeout"
|
344 |
-
msgstr ""
|
345 |
-
|
346 |
-
#: Application/Backend/Feature/Settings/Security.php:33
|
347 |
-
#: Application/Backend/Feature/Settings/Security.php:38
|
348 |
-
#, php-format
|
349 |
-
msgid ""
|
350 |
-
"Delay the login process for 1 second (the value is configurable) to "
|
351 |
-
"significantly reduce the chance for brute force or dictionary attack. For "
|
352 |
-
"more information about this option please refer to %sHow does AAM Secure "
|
353 |
-
"Login works%s."
|
354 |
-
msgstr ""
|
355 |
-
|
356 |
-
#: Application/Backend/Feature/Settings/Security.php:42
|
357 |
-
msgid "One Session Per User"
|
358 |
-
msgstr ""
|
359 |
-
|
360 |
-
#: Application/Backend/Feature/Settings/Security.php:43
|
361 |
-
#, php-format
|
362 |
-
msgid ""
|
363 |
-
"Automatically destroy all other sessions for a user if he/she tries to login "
|
364 |
-
"from different location. For more information about this option please refer "
|
365 |
-
"to %sHow does AAM Secure Login works%s."
|
366 |
-
msgstr ""
|
367 |
-
|
368 |
-
#: Application/Backend/Feature/Settings/Security.php:47
|
369 |
-
msgid "Brute Force Lockout"
|
370 |
-
msgstr ""
|
371 |
-
|
372 |
-
#: Application/Backend/Feature/Settings/Security.php:48
|
373 |
-
#, php-format
|
374 |
-
msgid ""
|
375 |
-
"Automatically reject login attempts if number of unsuccessful login attempts "
|
376 |
-
"is more than 20 over the period of 2 minutes (both values are configurable). "
|
377 |
-
"For more information about this option please refer to %sHow does AAM Secure "
|
378 |
-
"Login works%s."
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: Application/Backend/Feature/Settings/Security.php:67
|
382 |
-
msgid "Security Settings"
|
383 |
-
msgstr ""
|
384 |
-
|
385 |
-
#: Application/Backend/Feature/Subject/User.php:64
|
386 |
-
msgid "Operation is not permitted"
|
387 |
-
msgstr ""
|
388 |
-
|
389 |
-
#: Application/Backend/Feature/Subject/User.php:79
|
390 |
-
msgid "You cannot set expiration to yourself"
|
391 |
-
msgstr ""
|
392 |
-
|
393 |
-
#: Application/Backend/Manager.php:558
|
394 |
-
msgid "Access Manager"
|
395 |
-
msgstr ""
|
396 |
-
|
397 |
-
#: Application/Backend/Manager.php:577
|
398 |
-
msgid "Policy Document"
|
399 |
-
msgstr ""
|
400 |
-
|
401 |
-
#: Application/Backend/Manager.php:585
|
402 |
-
msgid "Policy Principals"
|
403 |
-
msgstr ""
|
404 |
-
|
405 |
-
#: Application/Backend/Manager.php:727 Application/Backend/Manager.php:745
|
406 |
-
#: Application/Backend/Manager.php:769
|
407 |
-
msgid "Access"
|
408 |
-
msgstr ""
|
409 |
-
|
410 |
-
#: Application/Backend/Manager.php:977 Application/Backend/Manager.php:1000
|
411 |
-
#: Application/Core/API.php:331 Application/Core/Gateway.php:201
|
412 |
-
msgid "Access Denied"
|
413 |
-
msgstr ""
|
414 |
-
|
415 |
-
#: Application/Backend/View/Localization.php:26 media/js/aam-5.8.js:2048
|
416 |
-
msgid "Search Capability"
|
417 |
-
msgstr ""
|
418 |
-
|
419 |
-
#: Application/Backend/View/Localization.php:27 media/js/aam-5.8.js:2049
|
420 |
-
msgid "_TOTAL_ capability(s)"
|
421 |
-
msgstr ""
|
422 |
-
|
423 |
-
#: Application/Backend/View/Localization.php:28 media/js/aam-5.8.js:504
|
424 |
-
#: media/js/aam-5.8.js:565 media/js/aam-5.8.js:1135 media/js/aam-5.8.js:2175
|
425 |
-
#: media/js/aam-5.8.js:2219 media/js/aam-5.8.js:2806 media/js/aam-5.8.js:3384
|
426 |
-
#: media/js/aam-5.8.js:3842
|
427 |
-
msgid "Saving..."
|
428 |
-
msgstr ""
|
429 |
-
|
430 |
-
#: Application/Backend/View/Localization.php:29 media/js/aam-5.8.js:2183
|
431 |
-
msgid "Failed to add new capability"
|
432 |
-
msgstr ""
|
433 |
-
|
434 |
-
#: Application/Backend/View/Localization.php:30 media/js/aam-5.8.js:46
|
435 |
-
#: media/js/aam-5.8.js:523 media/js/aam-5.8.js:577 media/js/aam-5.8.js:614
|
436 |
-
#: media/js/aam-5.8.js:741 media/js/aam-5.8.js:779 media/js/aam-5.8.js:1145
|
437 |
-
#: media/js/aam-5.8.js:1178 media/js/aam-5.8.js:1396 media/js/aam-5.8.js:1853
|
438 |
-
#: media/js/aam-5.8.js:1917 media/js/aam-5.8.js:2188 media/js/aam-5.8.js:2231
|
439 |
-
#: media/js/aam-5.8.js:2270 media/js/aam-5.8.js:2356 media/js/aam-5.8.js:2525
|
440 |
-
#: media/js/aam-5.8.js:3135 media/js/aam-5.8.js:3226 media/js/aam-5.8.js:3397
|
441 |
-
#: media/js/aam-5.8.js:3433 media/js/aam-5.8.js:3594 media/js/aam-5.8.js:3636
|
442 |
-
#: media/js/aam-5.8.js:3786 media/js/aam-5.8.js:4013 media/js/aam-5.8.js:4452
|
443 |
-
#: media/js/aam-5.8.js:4487
|
444 |
-
msgid "Application error"
|
445 |
-
msgstr ""
|
446 |
-
|
447 |
-
#: Application/Backend/View/Localization.php:31 media/js/aam-5.8.js:2191
|
448 |
-
msgid "Add Capability"
|
449 |
-
msgstr ""
|
450 |
-
|
451 |
-
#: Application/Backend/View/Localization.php:32 media/js/aam-5.8.js:1639
|
452 |
-
#: media/js/aam-5.8.js:1766 Application/Backend/phtml/main/menu.phtml:84
|
453 |
-
#: Application/Backend/phtml/main/toolbar.phtml:69
|
454 |
-
msgid "Show Menu"
|
455 |
-
msgstr ""
|
456 |
-
|
457 |
-
#: Application/Backend/View/Localization.php:33 media/js/aam-5.8.js:1649
|
458 |
-
#: media/js/aam-5.8.js:1776 Application/Backend/phtml/main/menu.phtml:88
|
459 |
-
#: Application/Backend/phtml/main/toolbar.phtml:73
|
460 |
-
msgid "Restrict Menu"
|
461 |
-
msgstr ""
|
462 |
-
|
463 |
-
#: Application/Backend/View/Localization.php:34 media/js/aam-5.8.js:1911
|
464 |
-
msgid "Failed to retrieve mataboxes"
|
465 |
-
msgstr ""
|
466 |
-
|
467 |
-
#: Application/Backend/View/Localization.php:35 media/js/aam-5.8.js:2569
|
468 |
-
msgid "Search"
|
469 |
-
msgstr ""
|
470 |
-
|
471 |
-
#: Application/Backend/View/Localization.php:36 media/js/aam-5.8.js:2570
|
472 |
-
msgid "_TOTAL_ object(s)"
|
473 |
-
msgstr ""
|
474 |
-
|
475 |
-
#: Application/Backend/View/Localization.php:37
|
476 |
-
msgid "Failed"
|
477 |
-
msgstr ""
|
478 |
-
|
479 |
-
#: Application/Backend/View/Localization.php:38 media/js/aam-5.8.js:156
|
480 |
-
#: media/js/aam-5.8.js:681
|
481 |
-
msgid "Loading..."
|
482 |
-
msgstr ""
|
483 |
-
|
484 |
-
#: Application/Backend/View/Localization.php:39 media/js/aam-5.8.js:161
|
485 |
-
msgid "No Role"
|
486 |
-
msgstr ""
|
487 |
-
|
488 |
-
#: Application/Backend/View/Localization.php:40 media/js/aam-5.8.js:224
|
489 |
-
msgid "Search Role"
|
490 |
-
msgstr ""
|
491 |
-
|
492 |
-
#: Application/Backend/View/Localization.php:41 media/js/aam-5.8.js:225
|
493 |
-
msgid "_TOTAL_ role(s)"
|
494 |
-
msgstr ""
|
495 |
-
|
496 |
-
#: Application/Backend/View/Localization.php:42 media/js/aam-5.8.js:1489
|
497 |
-
#: media/js/aam-5.8.js:3475 Application/Backend/phtml/index.phtml:270
|
498 |
-
#: Application/Backend/phtml/main/capability.phtml:26
|
499 |
-
#: Application/Backend/phtml/main/capability.phtml:64
|
500 |
-
msgid "Create"
|
501 |
-
msgstr ""
|
502 |
-
|
503 |
-
#: Application/Backend/View/Localization.php:43 media/js/aam-5.8.js:264
|
504 |
-
#: Application/Backend/phtml/index.phtml:223
|
505 |
-
#: Application/Backend/phtml/index.phtml:440
|
506 |
-
msgid "Users"
|
507 |
-
msgstr ""
|
508 |
-
|
509 |
-
#: Application/Backend/View/Localization.php:44
|
510 |
-
msgid "Failed to add new role"
|
511 |
-
msgstr ""
|
512 |
-
|
513 |
-
#: Application/Backend/View/Localization.php:45 media/js/aam-5.8.js:527
|
514 |
-
msgid "Add Role"
|
515 |
-
msgstr ""
|
516 |
-
|
517 |
-
#: Application/Backend/View/Localization.php:46 media/js/aam-5.8.js:572
|
518 |
-
msgid "Failed to update role"
|
519 |
-
msgstr ""
|
520 |
-
|
521 |
-
#: Application/Backend/View/Localization.php:47
|
522 |
-
#: Application/Backend/View/PostOptionList.php:157 media/js/aam-5.8.js:581
|
523 |
-
#: Application/Backend/phtml/extensions.phtml:55
|
524 |
-
#: Application/Backend/phtml/extensions.phtml:82
|
525 |
-
#: Application/Backend/phtml/index.phtml:296
|
526 |
-
#: Application/Backend/phtml/main/capability.phtml:86
|
527 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:37
|
528 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:58
|
529 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:114
|
530 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:135
|
531 |
-
msgid "Update"
|
532 |
-
msgstr ""
|
533 |
-
|
534 |
-
#: Application/Backend/View/Localization.php:48 media/js/aam-5.8.js:604
|
535 |
-
#: media/js/aam-5.8.js:2258 media/js/aam-5.8.js:3423
|
536 |
-
msgid "Deleting..."
|
537 |
-
msgstr ""
|
538 |
-
|
539 |
-
#: Application/Backend/View/Localization.php:49 media/js/aam-5.8.js:610
|
540 |
-
msgid "Failed to delete role"
|
541 |
-
msgstr ""
|
542 |
-
|
543 |
-
#: Application/Backend/View/Localization.php:50
|
544 |
-
#: Application/Backend/View/Localization.php:62 media/js/aam-5.8.js:385
|
545 |
-
#: media/js/aam-5.8.js:618 Application/Backend/phtml/index.phtml:308
|
546 |
-
msgid "Delete Role"
|
547 |
-
msgstr ""
|
548 |
-
|
549 |
-
#: Application/Backend/View/Localization.php:51 media/js/aam-5.8.js:737
|
550 |
-
msgid "Failed to block user"
|
551 |
-
msgstr ""
|
552 |
-
|
553 |
-
#: Application/Backend/View/Localization.php:52 media/js/aam-5.8.js:816
|
554 |
-
msgid "Search User"
|
555 |
-
msgstr ""
|
556 |
-
|
557 |
-
#: Application/Backend/View/Localization.php:53 media/js/aam-5.8.js:817
|
558 |
-
msgid "_TOTAL_ user(s)"
|
559 |
-
msgstr ""
|
560 |
-
|
561 |
-
#: Application/Backend/View/Localization.php:54 media/js/aam-5.8.js:880
|
562 |
-
#: Application/Backend/phtml/index.phtml:241
|
563 |
-
#: Application/Backend/phtml/metabox/metabox-content.phtml:48
|
564 |
-
msgid "Role"
|
565 |
-
msgstr ""
|
566 |
-
|
567 |
-
#: Application/Backend/View/Localization.php:55
|
568 |
-
#: Application/Core/Subject/Visitor.php:79 media/js/aam-5.8.js:1221
|
569 |
-
msgid "Anonymous"
|
570 |
-
msgstr ""
|
571 |
-
|
572 |
-
#: Application/Backend/View/Localization.php:56
|
573 |
-
msgid "Current user"
|
574 |
-
msgstr ""
|
575 |
-
|
576 |
-
#: Application/Backend/View/Localization.php:57
|
577 |
-
msgid "Current role"
|
578 |
-
msgstr ""
|
579 |
-
|
580 |
-
#: Application/Backend/View/Localization.php:58 media/js/aam-5.8.js:2701
|
581 |
-
msgid "Manage Access"
|
582 |
-
msgstr ""
|
583 |
-
|
584 |
-
#: Application/Backend/View/Localization.php:59
|
585 |
-
#: Application/Backend/View/PostOptionList.php:95 media/js/aam-5.8.js:2713
|
586 |
-
msgid "Edit"
|
587 |
-
msgstr ""
|
588 |
-
|
589 |
-
#: Application/Backend/View/Localization.php:60 media/js/aam-5.8.js:310
|
590 |
-
msgid "Manage Role"
|
591 |
-
msgstr ""
|
592 |
-
|
593 |
-
#: Application/Backend/View/Localization.php:61 media/js/aam-5.8.js:332
|
594 |
-
msgid "Edit Role"
|
595 |
-
msgstr ""
|
596 |
-
|
597 |
-
#: Application/Backend/View/Localization.php:63 media/js/aam-5.8.js:919
|
598 |
-
#: Application/Backend/phtml/index.phtml:343
|
599 |
-
msgid "Manage User"
|
600 |
-
msgstr ""
|
601 |
-
|
602 |
-
#: Application/Backend/View/Localization.php:64 media/js/aam-5.8.js:960
|
603 |
-
msgid "Edit User"
|
604 |
-
msgstr ""
|
605 |
-
|
606 |
-
#: Application/Backend/View/Localization.php:65 media/js/aam-5.8.js:732
|
607 |
-
#: media/js/aam-5.8.js:733 media/js/aam-5.8.js:981
|
608 |
-
msgid "Lock User"
|
609 |
-
msgstr ""
|
610 |
-
|
611 |
-
#: Application/Backend/View/Localization.php:66 media/js/aam-5.8.js:726
|
612 |
-
#: media/js/aam-5.8.js:727 media/js/aam-5.8.js:994
|
613 |
-
msgid "Unlock User"
|
614 |
-
msgstr ""
|
615 |
-
|
616 |
-
#: Application/Backend/View/Localization.php:67
|
617 |
-
msgid "Failed to grand capability - WordPress policy"
|
618 |
-
msgstr ""
|
619 |
-
|
620 |
-
#: Application/Backend/View/PostOptionList.php:26
|
621 |
-
#: Application/Backend/View/PostOptionList.php:90
|
622 |
-
#: Application/Backend/View/PostOptionList.php:112
|
623 |
-
msgid "List"
|
624 |
-
msgstr ""
|
625 |
-
|
626 |
-
#: Application/Backend/View/PostOptionList.php:27
|
627 |
-
#: Application/Backend/View/PostOptionList.php:92
|
628 |
-
#, php-format
|
629 |
-
msgid "Hide %s however still allow access with direct URL."
|
630 |
-
msgstr ""
|
631 |
-
|
632 |
-
#: Application/Backend/View/PostOptionList.php:27
|
633 |
-
#: Application/Backend/View/PostOptionList.php:31
|
634 |
-
#, php-format
|
635 |
-
msgid " %sSee in action.%s"
|
636 |
-
msgstr ""
|
637 |
-
|
638 |
-
#: Application/Backend/View/PostOptionList.php:30
|
639 |
-
#: Application/Backend/View/PostOptionList.php:116
|
640 |
-
msgid "Read"
|
641 |
-
msgstr ""
|
642 |
-
|
643 |
-
#: Application/Backend/View/PostOptionList.php:31
|
644 |
-
#, php-format
|
645 |
-
msgid ""
|
646 |
-
"Restrict access to view, read or download %s. Any attempts to open %s will "
|
647 |
-
"be denied and redirected based on the Access Denied Redirect rule."
|
648 |
-
msgstr ""
|
649 |
-
|
650 |
-
#: Application/Backend/View/PostOptionList.php:34
|
651 |
-
#: Application/Backend/View/PostOptionList.php:120
|
652 |
-
msgid "Limit"
|
653 |
-
msgstr ""
|
654 |
-
|
655 |
-
#: Application/Backend/View/PostOptionList.php:35
|
656 |
-
#: Application/Backend/View/PostOptionList.php:121
|
657 |
-
msgid "Teaser message"
|
658 |
-
msgstr ""
|
659 |
-
|
660 |
-
#: Application/Backend/View/PostOptionList.php:39
|
661 |
-
#: Application/Backend/View/PostOptionList.php:125
|
662 |
-
#, php-format
|
663 |
-
msgid "Replace %s content with defined teaser message."
|
664 |
-
msgstr ""
|
665 |
-
|
666 |
-
#: Application/Backend/View/PostOptionList.php:42
|
667 |
-
#: Application/Backend/View/PostOptionList.php:128
|
668 |
-
msgid "Read Counter"
|
669 |
-
msgstr ""
|
670 |
-
|
671 |
-
#: Application/Backend/View/PostOptionList.php:43
|
672 |
-
#: Application/Backend/View/PostOptionList.php:129
|
673 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:32
|
674 |
-
msgid "Threshold"
|
675 |
-
msgstr ""
|
676 |
-
|
677 |
-
#: Application/Backend/View/PostOptionList.php:48
|
678 |
-
#, php-format
|
679 |
-
msgid ""
|
680 |
-
"Define how many times %s can be read, viewed or download. After number of "
|
681 |
-
"times exceeds the specified threshold, access will be denied and redirected "
|
682 |
-
"based on the Access Denied Redirect rule."
|
683 |
-
msgstr ""
|
684 |
-
|
685 |
-
#: Application/Backend/View/PostOptionList.php:51
|
686 |
-
#: Application/Backend/View/PostOptionList.php:137
|
687 |
-
msgid "Comment"
|
688 |
-
msgstr ""
|
689 |
-
|
690 |
-
#: Application/Backend/View/PostOptionList.php:52
|
691 |
-
#, php-format
|
692 |
-
msgid "Restrict access to comment on %s if commenting is allowed."
|
693 |
-
msgstr ""
|
694 |
-
|
695 |
-
#: Application/Backend/View/PostOptionList.php:55
|
696 |
-
msgid "Redirect"
|
697 |
-
msgstr ""
|
698 |
-
|
699 |
-
#: Application/Backend/View/PostOptionList.php:56
|
700 |
-
msgid "Redirect Rule"
|
701 |
-
msgstr ""
|
702 |
-
|
703 |
-
#: Application/Backend/View/PostOptionList.php:60
|
704 |
-
#, php-format
|
705 |
-
msgid ""
|
706 |
-
"Redirect user based on the defined redirect rule when user tries to read the "
|
707 |
-
"%s. The REDIRECT option will be ignored if READ option is checked."
|
708 |
-
msgstr ""
|
709 |
-
|
710 |
-
#: Application/Backend/View/PostOptionList.php:63
|
711 |
-
#: Application/Backend/View/PostOptionList.php:141
|
712 |
-
msgid "Password Protected"
|
713 |
-
msgstr ""
|
714 |
-
|
715 |
-
#: Application/Backend/View/PostOptionList.php:64
|
716 |
-
#: Application/Backend/View/PostOptionList.php:142
|
717 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:53
|
718 |
-
#: Application/Backend/phtml/widget/login-frontend.phtml:27
|
719 |
-
#: Application/Frontend/phtml/login.phtml:13
|
720 |
-
msgid "Password"
|
721 |
-
msgstr ""
|
722 |
-
|
723 |
-
#: Application/Backend/View/PostOptionList.php:68
|
724 |
-
#, php-format
|
725 |
-
msgid ""
|
726 |
-
"Protect access to %s with password. Available with WordPress 4.7.0 or higher."
|
727 |
-
msgstr ""
|
728 |
-
|
729 |
-
#: Application/Backend/View/PostOptionList.php:71
|
730 |
-
#: Application/Backend/View/PostOptionList.php:149
|
731 |
-
msgid "Access Expiration"
|
732 |
-
msgstr ""
|
733 |
-
|
734 |
-
#: Application/Backend/View/PostOptionList.php:72
|
735 |
-
#: Application/Backend/View/PostOptionList.php:150
|
736 |
-
msgid "Expires"
|
737 |
-
msgstr ""
|
738 |
-
|
739 |
-
#: Application/Backend/View/PostOptionList.php:76
|
740 |
-
#, php-format
|
741 |
-
msgid "Define when access will expire for %s."
|
742 |
-
msgstr ""
|
743 |
-
|
744 |
-
#: Application/Backend/View/PostOptionList.php:76
|
745 |
-
#, php-format
|
746 |
-
msgid ""
|
747 |
-
"After expiration, the access to %s will be denied and redirected based on "
|
748 |
-
"the Access Denied Redirect rule. For more information %scheck this article%s "
|
749 |
-
"or "
|
750 |
-
msgstr ""
|
751 |
-
|
752 |
-
#: Application/Backend/View/PostOptionList.php:76
|
753 |
-
#, php-format
|
754 |
-
msgid " %ssee in action.%s"
|
755 |
-
msgstr ""
|
756 |
-
|
757 |
-
#: Application/Backend/View/PostOptionList.php:79
|
758 |
-
msgid "Monetized Access"
|
759 |
-
msgstr ""
|
760 |
-
|
761 |
-
#: Application/Backend/View/PostOptionList.php:80
|
762 |
-
msgid "E-Product"
|
763 |
-
msgstr ""
|
764 |
-
|
765 |
-
#: Application/Backend/View/PostOptionList.php:85
|
766 |
-
#, php-format
|
767 |
-
msgid ""
|
768 |
-
"[Premium feature!] Start selling access to %s. Access will be granted to "
|
769 |
-
"open %s only if selected E-Product had been purchased. For more information "
|
770 |
-
"%scheck this article%s."
|
771 |
-
msgstr ""
|
772 |
-
|
773 |
-
#: Application/Backend/View/PostOptionList.php:97
|
774 |
-
#, php-format
|
775 |
-
msgid ""
|
776 |
-
"Restrict access to edit %s. Any attempts to edit %s will result in "
|
777 |
-
"redirecting user based on the Access Denied Redirect rule."
|
778 |
-
msgstr ""
|
779 |
-
|
780 |
-
#: Application/Backend/View/PostOptionList.php:100
|
781 |
-
#: Application/Backend/View/PostOptionList.php:162 media/js/aam-5.8.js:3437
|
782 |
-
#: Application/Backend/phtml/index.phtml:314
|
783 |
-
#: Application/Backend/phtml/main/capability.phtml:104
|
784 |
-
#: Application/Backend/phtml/main/uri.phtml:119
|
785 |
-
msgid "Delete"
|
786 |
-
msgstr ""
|
787 |
-
|
788 |
-
#: Application/Backend/View/PostOptionList.php:102
|
789 |
-
#: Application/Backend/View/PostOptionList.php:164
|
790 |
-
#, php-format
|
791 |
-
msgid "Restrict access to trash or permanently delete %s."
|
792 |
-
msgstr ""
|
793 |
-
|
794 |
-
#: Application/Backend/View/PostOptionList.php:105
|
795 |
-
msgid "Publish"
|
796 |
-
msgstr ""
|
797 |
-
|
798 |
-
#: Application/Backend/View/PostOptionList.php:107
|
799 |
-
#, php-format
|
800 |
-
msgid ""
|
801 |
-
"Restrict access to publish %s. User will be allowed only to submit %s for "
|
802 |
-
"review."
|
803 |
-
msgstr ""
|
804 |
-
|
805 |
-
#: Application/Backend/View/PostOptionList.php:113
|
806 |
-
#, php-format
|
807 |
-
msgid "Hide %s however still allow access to retrieve %s."
|
808 |
-
msgstr ""
|
809 |
-
|
810 |
-
#: Application/Backend/View/PostOptionList.php:117
|
811 |
-
#, php-format
|
812 |
-
msgid ""
|
813 |
-
"Restrict access to retrieve %s. Any attempts to retrieve %s will be denied."
|
814 |
-
msgstr ""
|
815 |
-
|
816 |
-
#: Application/Backend/View/PostOptionList.php:134
|
817 |
-
#, php-format
|
818 |
-
msgid ""
|
819 |
-
"Define how many times %s can be retrieved. After number of time exceeds the "
|
820 |
-
"defined threshold, the access will be denied to %s."
|
821 |
-
msgstr ""
|
822 |
-
|
823 |
-
#: Application/Backend/View/PostOptionList.php:138
|
824 |
-
#, php-format
|
825 |
-
msgid "Restrict access to comment on %s if commenting feature is enabled."
|
826 |
-
msgstr ""
|
827 |
-
|
828 |
-
#: Application/Backend/View/PostOptionList.php:146
|
829 |
-
#, php-format
|
830 |
-
msgid "Protected %s with password. Available with WordPress 4.7.0 or higher."
|
831 |
-
msgstr ""
|
832 |
-
|
833 |
-
#: Application/Backend/View/PostOptionList.php:154
|
834 |
-
#, php-format
|
835 |
-
msgid "Define when access expires to %s."
|
836 |
-
msgstr ""
|
837 |
-
|
838 |
-
#: Application/Backend/View/PostOptionList.php:154
|
839 |
-
#, php-format
|
840 |
-
msgid ""
|
841 |
-
"After expiration, the access to %s will be denied. For more information "
|
842 |
-
"%scheck this article%s or "
|
843 |
-
msgstr ""
|
844 |
-
|
845 |
-
#: Application/Backend/View/PostOptionList.php:159
|
846 |
-
#, php-format
|
847 |
-
msgid "Restrict access to update %s. Any attempts to update %s will be denied."
|
848 |
-
msgstr ""
|
849 |
-
|
850 |
-
#: Application/Backend/Widget/Login.php:19
|
851 |
-
msgid "AAM Secure Login Widget"
|
852 |
-
msgstr ""
|
853 |
-
|
854 |
-
#: Application/Backend/Widget/Login.php:58
|
855 |
-
#: Application/Frontend/phtml/login.phtml:27
|
856 |
-
msgid "Login"
|
857 |
-
msgstr ""
|
858 |
-
|
859 |
-
#: Application/Backend/Widget/Login.php:62
|
860 |
-
#: Application/Shortcode/Strategy/Login.php:54
|
861 |
-
msgid "Howdy, %username%"
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
#: Application/Core/Importer.php:113
|
865 |
-
msgid "Import AAM Settings"
|
866 |
-
msgstr ""
|
867 |
-
|
868 |
-
#: Application/Core/Importer.php:126
|
869 |
-
msgid ""
|
870 |
-
"Howdy! Upload your AAM JSON file and we’ll import the access settings "
|
871 |
-
"into this site."
|
872 |
-
msgstr ""
|
873 |
-
|
874 |
-
#: Application/Core/Importer.php:127
|
875 |
-
msgid ""
|
876 |
-
"Choose a JSON (.json) file to upload, then click Upload file and import."
|
877 |
-
msgstr ""
|
878 |
-
|
879 |
-
#: Application/Core/Importer.php:141 Application/Core/Importer.php:145
|
880 |
-
#: Application/Core/Importer.php:179
|
881 |
-
msgid "Sorry, there has been an error."
|
882 |
-
msgstr ""
|
883 |
-
|
884 |
-
#: Application/Core/Importer.php:146
|
885 |
-
#, php-format
|
886 |
-
msgid ""
|
887 |
-
"The export file could not be found at <code>%s</code>. It is likely that "
|
888 |
-
"this was caused by a permissions problem."
|
889 |
-
msgstr ""
|
890 |
-
|
891 |
-
#: Application/Core/Importer.php:180
|
892 |
-
msgid "The file does not exist, please try again."
|
893 |
-
msgstr ""
|
894 |
-
|
895 |
-
#: Application/Core/Importer.php:188
|
896 |
-
msgid "Sorry, there has been an error. File content is invalid"
|
897 |
-
msgstr ""
|
898 |
-
|
899 |
-
#: Application/Core/Importer.php:202
|
900 |
-
msgid "All done."
|
901 |
-
msgstr ""
|
902 |
-
|
903 |
-
#: Application/Core/Importer.php:202
|
904 |
-
msgid "Have fun!"
|
905 |
-
msgstr ""
|
906 |
-
|
907 |
-
#: Application/Core/Importer.php:227
|
908 |
-
msgid "Version of exported settings do not match current AAM version"
|
909 |
-
msgstr ""
|
910 |
-
|
911 |
-
#: Application/Core/JwtAuth.php:57
|
912 |
-
msgid "Valid username."
|
913 |
-
msgstr ""
|
914 |
-
|
915 |
-
#: Application/Core/JwtAuth.php:61
|
916 |
-
msgid "Valid password."
|
917 |
-
msgstr ""
|
918 |
-
|
919 |
-
#: Application/Core/JwtAuth.php:73
|
920 |
-
msgid "JWT token."
|
921 |
-
msgstr ""
|
922 |
-
|
923 |
-
#: Application/Core/JwtAuth.php:221
|
924 |
-
msgid "JWT Authentication is enabled but secret key is not defined"
|
925 |
-
msgstr ""
|
926 |
-
|
927 |
-
#: Application/Core/Login.php:179
|
928 |
-
msgid "Access denied. Please login to get access."
|
929 |
-
msgstr ""
|
930 |
-
|
931 |
-
#: Application/Core/Policy/Validator.php:94
|
932 |
-
msgid "The policy is not valid JSON object"
|
933 |
-
msgstr ""
|
934 |
-
|
935 |
-
#: Application/Core/Policy/Validator.php:111
|
936 |
-
msgid "The policy document is empty"
|
937 |
-
msgstr ""
|
938 |
-
|
939 |
-
#: Application/Core/Subject/Default.php:78 media/js/aam-5.8.js:1294
|
940 |
-
msgid "All Users, Roles and Visitor"
|
941 |
-
msgstr ""
|
942 |
-
|
943 |
-
#: Application/Extension/Repository.php:149
|
944 |
-
#, php-format
|
945 |
-
msgid "[%s] was not loaded. Update AAM plugin to the latest version."
|
946 |
-
msgstr ""
|
947 |
-
|
948 |
-
#: Application/Extension/Repository.php:159
|
949 |
-
#, php-format
|
950 |
-
msgid "The [%s] does not appear to be a valid AAM extension. %sRead more.%s"
|
951 |
-
msgstr ""
|
952 |
-
|
953 |
-
#: Application/Extension/Repository.php:385
|
954 |
-
#, php-format
|
955 |
-
msgid "Failed to create %s"
|
956 |
-
msgstr ""
|
957 |
-
|
958 |
-
#: Application/Extension/Repository.php:389
|
959 |
-
#, php-format
|
960 |
-
msgid "Directory %s is not writable"
|
961 |
-
msgstr ""
|
962 |
-
|
963 |
-
#: Application/Shared/Manager.php:125
|
964 |
-
msgid "Access Policy"
|
965 |
-
msgstr ""
|
966 |
-
|
967 |
-
#: Application/Shared/Manager.php:128 media/js/aam-5.8.js:1546
|
968 |
-
msgid "Edit Policy"
|
969 |
-
msgstr ""
|
970 |
-
|
971 |
-
#: Application/Shared/Manager.php:129
|
972 |
-
msgid "Add New Policy"
|
973 |
-
msgstr ""
|
974 |
-
|
975 |
-
#: Application/Shared/Manager.php:130
|
976 |
-
msgid "New Policy"
|
977 |
-
msgstr ""
|
978 |
-
|
979 |
-
#: Application/Shared/Manager.php:132
|
980 |
-
msgid "Access and security policy"
|
981 |
-
msgstr ""
|
982 |
-
|
983 |
-
#: Application/Shared/Manager.php:418
|
984 |
-
msgid "RESTful API is disabled"
|
985 |
-
msgstr ""
|
986 |
-
|
987 |
-
#: Application/Shared/Manager.php:609
|
988 |
-
msgid "[No teaser message provided]"
|
989 |
-
msgstr ""
|
990 |
-
|
991 |
-
#: Application/Shortcode/Factory.php:52
|
992 |
-
msgid "No valid strategy found for the given context"
|
993 |
-
msgstr ""
|
994 |
-
|
995 |
-
#: Application/Shortcode/Strategy/LoginRedirect.php:64
|
996 |
-
msgid "Login to continue"
|
997 |
-
msgstr ""
|
998 |
-
|
999 |
-
#: aam.php:216
|
1000 |
-
msgid "PHP 5.3.0 or higher is required."
|
1001 |
-
msgstr ""
|
1002 |
-
|
1003 |
-
#: aam.php:218
|
1004 |
-
msgid "WP 4.0 or higher is required."
|
1005 |
-
msgstr ""
|
1006 |
-
|
1007 |
-
#: media/js/aam-5.8.js:96 media/js/aam-5.8.js:1266 media/js/aam-5.8.js:1338
|
1008 |
-
msgid "Failed to apply policy changes"
|
1009 |
-
msgstr ""
|
1010 |
-
|
1011 |
-
#: media/js/aam-5.8.js:107 media/js/aam-5.8.js:1602 media/js/aam-5.8.js:1729
|
1012 |
-
#: media/js/aam-5.8.js:3850 media/js/aam-5.8.js:3895 media/js/aam-5.8.js:3945
|
1013 |
-
#: media/js/aam-5.8.js:3979
|
1014 |
-
msgid "Application Error"
|
1015 |
-
msgstr ""
|
1016 |
-
|
1017 |
-
#: media/js/aam-5.8.js:241
|
1018 |
-
msgid "Create New Role"
|
1019 |
-
msgstr ""
|
1020 |
-
|
1021 |
-
#: media/js/aam-5.8.js:356
|
1022 |
-
msgid "Clone Role"
|
1023 |
-
msgstr ""
|
1024 |
-
|
1025 |
-
#: media/js/aam-5.8.js:686 Application/Backend/phtml/index.phtml:372
|
1026 |
-
#: Application/Backend/phtml/partial/role-inheritance.phtml:5
|
1027 |
-
msgid "Select Role"
|
1028 |
-
msgstr ""
|
1029 |
-
|
1030 |
-
#: media/js/aam-5.8.js:764
|
1031 |
-
msgid "Generating token..."
|
1032 |
-
msgstr ""
|
1033 |
-
|
1034 |
-
#: media/js/aam-5.8.js:774
|
1035 |
-
msgid "Failed to generate JWT token"
|
1036 |
-
msgstr ""
|
1037 |
-
|
1038 |
-
#: media/js/aam-5.8.js:832
|
1039 |
-
msgid "Create New User"
|
1040 |
-
msgstr ""
|
1041 |
-
|
1042 |
-
#: media/js/aam-5.8.js:841
|
1043 |
-
msgid "Loading roles..."
|
1044 |
-
msgstr ""
|
1045 |
-
|
1046 |
-
#: media/js/aam-5.8.js:858
|
1047 |
-
msgid "Filter By Role"
|
1048 |
-
msgstr ""
|
1049 |
-
|
1050 |
-
#: media/js/aam-5.8.js:1007
|
1051 |
-
msgid "Switch To User"
|
1052 |
-
msgstr ""
|
1053 |
-
|
1054 |
-
#: media/js/aam-5.8.js:1149 media/js/aam-5.8.js:3402
|
1055 |
-
#: Application/Backend/phtml/index.phtml:403
|
1056 |
-
#: Application/Backend/phtml/main/uri.phtml:97
|
1057 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:16
|
1058 |
-
msgid "Save"
|
1059 |
-
msgstr ""
|
1060 |
-
|
1061 |
-
#: media/js/aam-5.8.js:1168
|
1062 |
-
msgid "Reseting..."
|
1063 |
-
msgstr ""
|
1064 |
-
|
1065 |
-
#: media/js/aam-5.8.js:1182 Application/Backend/phtml/index.phtml:402
|
1066 |
-
msgid "Reset"
|
1067 |
-
msgstr ""
|
1068 |
-
|
1069 |
-
#: media/js/aam-5.8.js:1247 media/js/aam-5.8.js:1319
|
1070 |
-
msgid "Processing..."
|
1071 |
-
msgstr ""
|
1072 |
-
|
1073 |
-
#: media/js/aam-5.8.js:1258 media/js/aam-5.8.js:1271
|
1074 |
-
#: Application/Backend/phtml/metabox/metabox-content.phtml:86
|
1075 |
-
msgid "Detach Policy From Visitors"
|
1076 |
-
msgstr ""
|
1077 |
-
|
1078 |
-
#: media/js/aam-5.8.js:1260 media/js/aam-5.8.js:1269
|
1079 |
-
#: Application/Backend/phtml/metabox/metabox-content.phtml:88
|
1080 |
-
msgid "Attach Policy To Visitors"
|
1081 |
-
msgstr ""
|
1082 |
-
|
1083 |
-
#: media/js/aam-5.8.js:1330 media/js/aam-5.8.js:1343
|
1084 |
-
#: Application/Backend/phtml/metabox/metabox-content.phtml:111
|
1085 |
-
msgid "Detach Policy From Everybody"
|
1086 |
-
msgstr ""
|
1087 |
-
|
1088 |
-
#: media/js/aam-5.8.js:1332 media/js/aam-5.8.js:1341
|
1089 |
-
#: Application/Backend/phtml/metabox/metabox-content.phtml:113
|
1090 |
-
msgid "Attach Policy To Everybody"
|
1091 |
-
msgstr ""
|
1092 |
-
|
1093 |
-
#: media/js/aam-5.8.js:1443
|
1094 |
-
msgid "Downloading"
|
1095 |
-
msgstr ""
|
1096 |
-
|
1097 |
-
#: media/js/aam-5.8.js:1447 Application/Backend/phtml/extensions.phtml:86
|
1098 |
-
#: Application/Backend/phtml/extensions.phtml:121
|
1099 |
-
msgid "Download"
|
1100 |
-
msgstr ""
|
1101 |
-
|
1102 |
-
#: media/js/aam-5.8.js:1478
|
1103 |
-
msgid "Search Policy"
|
1104 |
-
msgstr ""
|
1105 |
-
|
1106 |
-
#: media/js/aam-5.8.js:1479
|
1107 |
-
msgid "_TOTAL_ Policies"
|
1108 |
-
msgstr ""
|
1109 |
-
|
1110 |
-
#: media/js/aam-5.8.js:1521
|
1111 |
-
msgid "Apply Policy"
|
1112 |
-
msgstr ""
|
1113 |
-
|
1114 |
-
#: media/js/aam-5.8.js:1535
|
1115 |
-
msgid "Revoke Policy"
|
1116 |
-
msgstr ""
|
1117 |
-
|
1118 |
-
#: media/js/aam-5.8.js:1673 Application/Backend/phtml/main/menu.phtml:70
|
1119 |
-
#: Application/Backend/phtml/main/toolbar.phtml:59
|
1120 |
-
msgid "Uncheck to allow"
|
1121 |
-
msgstr ""
|
1122 |
-
|
1123 |
-
#: media/js/aam-5.8.js:1675 Application/Backend/phtml/main/menu.phtml:70
|
1124 |
-
#: Application/Backend/phtml/main/toolbar.phtml:59
|
1125 |
-
msgid "Check to restrict"
|
1126 |
-
msgstr ""
|
1127 |
-
|
1128 |
-
#: media/js/aam-5.8.js:1805 media/js/aam-5.8.js:1961
|
1129 |
-
#: Application/Backend/phtml/main/metabox.phtml:68
|
1130 |
-
msgid "Uncheck to show"
|
1131 |
-
msgstr ""
|
1132 |
-
|
1133 |
-
#: media/js/aam-5.8.js:1807 media/js/aam-5.8.js:1963
|
1134 |
-
#: Application/Backend/phtml/main/metabox.phtml:68
|
1135 |
-
msgid "Check to hide"
|
1136 |
-
msgstr ""
|
1137 |
-
|
1138 |
-
#: media/js/aam-5.8.js:1933
|
1139 |
-
msgid "Processing"
|
1140 |
-
msgstr ""
|
1141 |
-
|
1142 |
-
#: media/js/aam-5.8.js:1936 Application/Backend/phtml/main/metabox.phtml:104
|
1143 |
-
msgid "Initialize"
|
1144 |
-
msgstr ""
|
1145 |
-
|
1146 |
-
#: media/js/aam-5.8.js:2010
|
1147 |
-
msgid "WordPress core does not allow to grant this capability"
|
1148 |
-
msgstr ""
|
1149 |
-
|
1150 |
-
#: media/js/aam-5.8.js:2051 media/js/aam-5.8.js:3280
|
1151 |
-
msgid "Nothing to show"
|
1152 |
-
msgstr ""
|
1153 |
-
|
1154 |
-
#: media/js/aam-5.8.js:2235 Application/Backend/phtml/main/capability.phtml:76
|
1155 |
-
msgid "Update Capability"
|
1156 |
-
msgstr ""
|
1157 |
-
|
1158 |
-
#: media/js/aam-5.8.js:2274 Application/Backend/phtml/main/capability.phtml:98
|
1159 |
-
msgid "Delete Capability"
|
1160 |
-
msgstr ""
|
1161 |
-
|
1162 |
-
#: media/js/aam-5.8.js:2604
|
1163 |
-
msgid "Settings Customized"
|
1164 |
-
msgstr ""
|
1165 |
-
|
1166 |
-
#: media/js/aam-5.8.js:2638 media/js/aam-5.8.js:2641 media/js/aam-5.8.js:2654
|
1167 |
-
#: media/js/aam-5.8.js:2657
|
1168 |
-
msgid "Parent:"
|
1169 |
-
msgstr ""
|
1170 |
-
|
1171 |
-
#: media/js/aam-5.8.js:2644 media/js/aam-5.8.js:2660
|
1172 |
-
#: Application/Backend/phtml/main/menu.phtml:67
|
1173 |
-
#: Application/Backend/phtml/main/metabox.phtml:65
|
1174 |
-
#: Application/Backend/phtml/main/toolbar.phtml:56
|
1175 |
-
msgid "ID:"
|
1176 |
-
msgstr ""
|
1177 |
-
|
1178 |
-
#: media/js/aam-5.8.js:2687
|
1179 |
-
msgid "Drill-Down"
|
1180 |
-
msgstr ""
|
1181 |
-
|
1182 |
-
#: media/js/aam-5.8.js:2766 media/js/aam-5.8.js:4480
|
1183 |
-
msgid "Resetting..."
|
1184 |
-
msgstr ""
|
1185 |
-
|
1186 |
-
#: media/js/aam-5.8.js:3276
|
1187 |
-
msgid "Search Route"
|
1188 |
-
msgstr ""
|
1189 |
-
|
1190 |
-
#: media/js/aam-5.8.js:3277
|
1191 |
-
msgid "_TOTAL_ route(s)"
|
1192 |
-
msgstr ""
|
1193 |
-
|
1194 |
-
#: media/js/aam-5.8.js:3279
|
1195 |
-
msgid "No API enpoints found. You might have APIs disabled."
|
1196 |
-
msgstr ""
|
1197 |
-
|
1198 |
-
#: media/js/aam-5.8.js:3391
|
1199 |
-
msgid "Failed to save URI rule"
|
1200 |
-
msgstr ""
|
1201 |
-
|
1202 |
-
#: media/js/aam-5.8.js:3429
|
1203 |
-
msgid "Failed to delete URI rule"
|
1204 |
-
msgstr ""
|
1205 |
-
|
1206 |
-
#: media/js/aam-5.8.js:3464
|
1207 |
-
msgid "Search URI"
|
1208 |
-
msgstr ""
|
1209 |
-
|
1210 |
-
#: media/js/aam-5.8.js:3465
|
1211 |
-
msgid "_TOTAL_ URI(s)"
|
1212 |
-
msgstr ""
|
1213 |
-
|
1214 |
-
#: media/js/aam-5.8.js:3505
|
1215 |
-
msgid "Edit Rule"
|
1216 |
-
msgstr ""
|
1217 |
-
|
1218 |
-
#: media/js/aam-5.8.js:3517
|
1219 |
-
msgid "Delete Rule"
|
1220 |
-
msgstr ""
|
1221 |
-
|
1222 |
-
#: media/js/aam-5.8.js:3626
|
1223 |
-
msgid "Extension status was updated successfully"
|
1224 |
-
msgstr ""
|
1225 |
-
|
1226 |
-
#: media/js/aam-5.8.js:3779
|
1227 |
-
msgid "The issue has been resolved"
|
1228 |
-
msgstr ""
|
1229 |
-
|
1230 |
-
#: media/js/aam-5.8.js:3853 Application/Backend/phtml/main/get-started.phtml:13
|
1231 |
-
msgid "OK, got it"
|
1232 |
-
msgstr ""
|
1233 |
-
|
1234 |
-
#: media/js/aam-5.8.js:3932 media/js/aam-5.8.js:3966
|
1235 |
-
msgid "Wait..."
|
1236 |
-
msgstr ""
|
1237 |
-
|
1238 |
-
#: media/js/aam-5.8.js:3938
|
1239 |
-
msgid "All settings has been cleared successfully"
|
1240 |
-
msgstr ""
|
1241 |
-
|
1242 |
-
#: media/js/aam-5.8.js:3949 media/js/aam-5.8.js:3983
|
1243 |
-
#: Application/Backend/phtml/index.phtml:101
|
1244 |
-
msgid "Clear"
|
1245 |
-
msgstr ""
|
1246 |
-
|
1247 |
-
#: media/js/aam-5.8.js:3972
|
1248 |
-
msgid "The cache has been cleared successfully"
|
1249 |
-
msgstr ""
|
1250 |
-
|
1251 |
-
#: media/js/vendor.js:600
|
1252 |
-
msgid ": "
|
1253 |
-
msgstr ""
|
1254 |
-
|
1255 |
-
#: Application/Backend/phtml/extensions.phtml:6
|
1256 |
-
msgid ""
|
1257 |
-
"By purchasing any of the extensions below, you obtain the license that "
|
1258 |
-
"allows you to install and use our software for life and for one physical "
|
1259 |
-
"WordPress installation only. However you will be able to download new "
|
1260 |
-
"updates for one year from the time of purchase unless you purchased the "
|
1261 |
-
"[Extended version]. Exceptions are websites where URL is either [localhost] "
|
1262 |
-
"or starts with [dev.], [staging.], [test.] or [demo.] They are considered as "
|
1263 |
-
"development websites and you can use the purchased license unlimited number "
|
1264 |
-
"of times before it is activated on a production website. [Money back "
|
1265 |
-
"guaranteed] within 10 day from the time of purchase."
|
1266 |
-
msgstr ""
|
1267 |
-
|
1268 |
-
#: Application/Backend/phtml/extensions.phtml:11
|
1269 |
-
msgid "Install/Update Extension"
|
1270 |
-
msgstr ""
|
1271 |
-
|
1272 |
-
#: Application/Backend/phtml/extensions.phtml:15
|
1273 |
-
msgid "License Key"
|
1274 |
-
msgstr ""
|
1275 |
-
|
1276 |
-
#: Application/Backend/phtml/extensions.phtml:19
|
1277 |
-
msgid "Submit"
|
1278 |
-
msgstr ""
|
1279 |
-
|
1280 |
-
#: Application/Backend/phtml/extensions.phtml:28
|
1281 |
-
msgid "Premium"
|
1282 |
-
msgstr ""
|
1283 |
-
|
1284 |
-
#: Application/Backend/phtml/extensions.phtml:29
|
1285 |
-
#: Application/Backend/phtml/extensions.phtml:73
|
1286 |
-
msgid "Free"
|
1287 |
-
msgstr ""
|
1288 |
-
|
1289 |
-
#: Application/Backend/phtml/extensions.phtml:30
|
1290 |
-
msgid "Check for Updates"
|
1291 |
-
msgstr ""
|
1292 |
-
|
1293 |
-
#: Application/Backend/phtml/extensions.phtml:50
|
1294 |
-
msgid "Installed"
|
1295 |
-
msgstr ""
|
1296 |
-
|
1297 |
-
#: Application/Backend/phtml/extensions.phtml:52
|
1298 |
-
#: Application/Backend/phtml/extensions.phtml:80
|
1299 |
-
msgid "Deactivate"
|
1300 |
-
msgstr ""
|
1301 |
-
|
1302 |
-
#: Application/Backend/phtml/extensions.phtml:52
|
1303 |
-
#: Application/Backend/phtml/extensions.phtml:80
|
1304 |
-
msgid "extension is active"
|
1305 |
-
msgstr ""
|
1306 |
-
|
1307 |
-
#: Application/Backend/phtml/extensions.phtml:55
|
1308 |
-
msgid "license is missing"
|
1309 |
-
msgstr ""
|
1310 |
-
|
1311 |
-
#: Application/Backend/phtml/extensions.phtml:57
|
1312 |
-
#: Application/Backend/phtml/extensions.phtml:84
|
1313 |
-
msgid "Activate"
|
1314 |
-
msgstr ""
|
1315 |
-
|
1316 |
-
#: Application/Backend/phtml/extensions.phtml:57
|
1317 |
-
#: Application/Backend/phtml/extensions.phtml:84
|
1318 |
-
msgid "extension is inactive"
|
1319 |
-
msgstr ""
|
1320 |
-
|
1321 |
-
#: Application/Backend/phtml/extensions.phtml:59
|
1322 |
-
#: Application/Backend/phtml/index.phtml:188
|
1323 |
-
msgid "Read More"
|
1324 |
-
msgstr ""
|
1325 |
-
|
1326 |
-
#: Application/Backend/phtml/extensions.phtml:101
|
1327 |
-
#: Application/Backend/phtml/extensions.phtml:132
|
1328 |
-
#: Application/Backend/phtml/extensions.phtml:143
|
1329 |
-
#: Application/Backend/phtml/index.phtml:94
|
1330 |
-
#: Application/Backend/phtml/index.phtml:254
|
1331 |
-
#: Application/Backend/phtml/index.phtml:271
|
1332 |
-
#: Application/Backend/phtml/index.phtml:281
|
1333 |
-
#: Application/Backend/phtml/index.phtml:297
|
1334 |
-
#: Application/Backend/phtml/index.phtml:307
|
1335 |
-
#: Application/Backend/phtml/index.phtml:315
|
1336 |
-
#: Application/Backend/phtml/index.phtml:342
|
1337 |
-
#: Application/Backend/phtml/index.phtml:404
|
1338 |
-
#: Application/Backend/phtml/main/capability.phtml:54
|
1339 |
-
#: Application/Backend/phtml/main/capability.phtml:65
|
1340 |
-
#: Application/Backend/phtml/main/capability.phtml:75
|
1341 |
-
#: Application/Backend/phtml/main/capability.phtml:87
|
1342 |
-
#: Application/Backend/phtml/main/capability.phtml:97
|
1343 |
-
#: Application/Backend/phtml/main/capability.phtml:105
|
1344 |
-
#: Application/Backend/phtml/main/menu.phtml:113
|
1345 |
-
#: Application/Backend/phtml/main/metabox.phtml:91
|
1346 |
-
#: Application/Backend/phtml/main/metabox.phtml:105
|
1347 |
-
#: Application/Backend/phtml/main/uri.phtml:26
|
1348 |
-
#: Application/Backend/phtml/main/uri.phtml:98
|
1349 |
-
#: Application/Backend/phtml/main/uri.phtml:108
|
1350 |
-
#: Application/Backend/phtml/main/uri.phtml:120
|
1351 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:6
|
1352 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:17
|
1353 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:27
|
1354 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:38
|
1355 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:48
|
1356 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:59
|
1357 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:69
|
1358 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:115
|
1359 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:125
|
1360 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:136
|
1361 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:146
|
1362 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:158
|
1363 |
-
msgid "Close"
|
1364 |
-
msgstr ""
|
1365 |
-
|
1366 |
-
#: Application/Backend/phtml/extensions.phtml:102
|
1367 |
-
msgid "Notification"
|
1368 |
-
msgstr ""
|
1369 |
-
|
1370 |
-
#: Application/Backend/phtml/extensions.phtml:106
|
1371 |
-
msgid ""
|
1372 |
-
"Extension requires manual installation. Please follow few simple steps below."
|
1373 |
-
msgstr ""
|
1374 |
-
|
1375 |
-
#: Application/Backend/phtml/extensions.phtml:110
|
1376 |
-
msgid "Click [Download] button below and save the zip archive on your computer"
|
1377 |
-
msgstr ""
|
1378 |
-
|
1379 |
-
#: Application/Backend/phtml/extensions.phtml:111
|
1380 |
-
msgid "Connect to your website via FTP and navigate to [wp-content] folder"
|
1381 |
-
msgstr ""
|
1382 |
-
|
1383 |
-
#: Application/Backend/phtml/extensions.phtml:112
|
1384 |
-
msgid ""
|
1385 |
-
"Create [aam/extension] folder inside [wp-content] and make sure it is "
|
1386 |
-
"writable by your server"
|
1387 |
-
msgstr ""
|
1388 |
-
|
1389 |
-
#: Application/Backend/phtml/extensions.phtml:113
|
1390 |
-
msgid ""
|
1391 |
-
"Unzip downloaded archive and upload the folder inside the [wp-content/aam/"
|
1392 |
-
"extension] folder"
|
1393 |
-
msgstr ""
|
1394 |
-
|
1395 |
-
#: Application/Backend/phtml/extensions.phtml:117
|
1396 |
-
msgid ""
|
1397 |
-
"[PLEASE NOTE!] Your browser may not support the latest HTML5 attribures and "
|
1398 |
-
"if downloaded file is not .ZIP archive, simply rename the file by adding ."
|
1399 |
-
"zip extension."
|
1400 |
-
msgstr ""
|
1401 |
-
|
1402 |
-
#: Application/Backend/phtml/extensions.phtml:122
|
1403 |
-
#: Application/Backend/phtml/index.phtml:102
|
1404 |
-
msgid "Cancel"
|
1405 |
-
msgstr ""
|
1406 |
-
|
1407 |
-
#: Application/Backend/phtml/extensions.phtml:133
|
1408 |
-
msgid "Install Extension"
|
1409 |
-
msgstr ""
|
1410 |
-
|
1411 |
-
#: Application/Backend/phtml/extensions.phtml:137
|
1412 |
-
msgid ""
|
1413 |
-
"Insert license key that you recieved after the payment (find the email "
|
1414 |
-
"example below). It might take up to 2 hours to process the payment. Please "
|
1415 |
-
"remember that license key is limited only to one life domain."
|
1416 |
-
msgstr ""
|
1417 |
-
|
1418 |
-
#: Application/Backend/phtml/index.phtml:14
|
1419 |
-
msgid "Main Panel"
|
1420 |
-
msgstr ""
|
1421 |
-
|
1422 |
-
#: Application/Backend/phtml/index.phtml:18
|
1423 |
-
msgid ""
|
1424 |
-
"[Loading AAM UI]. Please wait. If content will not load within next 30 "
|
1425 |
-
"seconds, clear your browser cache and reload the page. If still nothing, it "
|
1426 |
-
"is most likely some sort of JavaScript or CSS conflict with one your active "
|
1427 |
-
"plugins or theme. Try to deactivate all plugins and switch to any default "
|
1428 |
-
"WordPress theme to find out what causes the issue."
|
1429 |
-
msgstr ""
|
1430 |
-
|
1431 |
-
#: Application/Backend/phtml/index.phtml:30
|
1432 |
-
msgid "Notifications"
|
1433 |
-
msgstr ""
|
1434 |
-
|
1435 |
-
#: Application/Backend/phtml/index.phtml:81
|
1436 |
-
msgid "Clear AAM Cache"
|
1437 |
-
msgstr ""
|
1438 |
-
|
1439 |
-
#: Application/Backend/phtml/index.phtml:84
|
1440 |
-
msgid "Reset AAM Settings"
|
1441 |
-
msgstr ""
|
1442 |
-
|
1443 |
-
#: Application/Backend/phtml/index.phtml:95
|
1444 |
-
msgid "Clear all settings"
|
1445 |
-
msgstr ""
|
1446 |
-
|
1447 |
-
#: Application/Backend/phtml/index.phtml:98
|
1448 |
-
msgid "All AAM settings will be removed."
|
1449 |
-
msgstr ""
|
1450 |
-
|
1451 |
-
#: Application/Backend/phtml/index.phtml:114
|
1452 |
-
msgid "Warning"
|
1453 |
-
msgstr ""
|
1454 |
-
|
1455 |
-
#: Application/Backend/phtml/index.phtml:119
|
1456 |
-
#, php-format
|
1457 |
-
msgid ""
|
1458 |
-
"All AAM extension should be located in [%s] directory however it either does "
|
1459 |
-
"not exist or is not writable."
|
1460 |
-
msgstr ""
|
1461 |
-
|
1462 |
-
#: Application/Backend/phtml/index.phtml:121
|
1463 |
-
msgid "Click To Fix The Issue"
|
1464 |
-
msgstr ""
|
1465 |
-
|
1466 |
-
#: Application/Backend/phtml/index.phtml:133
|
1467 |
-
#, php-format
|
1468 |
-
msgid ""
|
1469 |
-
"Failed to create a [%s] directory for AAM extension. To create it manually, "
|
1470 |
-
"login to your website via FTP and create [%s] directory. [Please Note!] It "
|
1471 |
-
"is a relative directory path from your website root (where wp-config.php "
|
1472 |
-
"file is located)."
|
1473 |
-
msgstr ""
|
1474 |
-
|
1475 |
-
#: Application/Backend/phtml/index.phtml:138
|
1476 |
-
msgid "Ok"
|
1477 |
-
msgstr ""
|
1478 |
-
|
1479 |
-
#: Application/Backend/phtml/index.phtml:150
|
1480 |
-
msgid "Premium Licenses"
|
1481 |
-
msgstr ""
|
1482 |
-
|
1483 |
-
#: Application/Backend/phtml/index.phtml:167
|
1484 |
-
msgid "Manage License"
|
1485 |
-
msgstr ""
|
1486 |
-
|
1487 |
-
#: Application/Backend/phtml/index.phtml:169
|
1488 |
-
msgid "Upgrade License"
|
1489 |
-
msgstr ""
|
1490 |
-
|
1491 |
-
#: Application/Backend/phtml/index.phtml:187
|
1492 |
-
msgid ""
|
1493 |
-
"The [Development Package] allows you to get all premium extensions for "
|
1494 |
-
"[unlimited number of websites]."
|
1495 |
-
msgstr ""
|
1496 |
-
|
1497 |
-
#: Application/Backend/phtml/index.phtml:198
|
1498 |
-
msgid "AAM Multisite"
|
1499 |
-
msgstr ""
|
1500 |
-
|
1501 |
-
#: Application/Backend/phtml/index.phtml:201
|
1502 |
-
msgid ""
|
1503 |
-
"Install free [AAM Multisite extension] in order to manage all your sites "
|
1504 |
-
"from the Network Admin."
|
1505 |
-
msgstr ""
|
1506 |
-
|
1507 |
-
#: Application/Backend/phtml/index.phtml:212
|
1508 |
-
msgid "Users/Roles Manager"
|
1509 |
-
msgstr ""
|
1510 |
-
|
1511 |
-
#: Application/Backend/phtml/index.phtml:220
|
1512 |
-
#: Application/Backend/phtml/index.phtml:435
|
1513 |
-
msgid "Roles"
|
1514 |
-
msgstr ""
|
1515 |
-
|
1516 |
-
#: Application/Backend/phtml/index.phtml:226
|
1517 |
-
#: Application/Backend/phtml/index.phtml:445
|
1518 |
-
msgid "Visitor"
|
1519 |
-
msgstr ""
|
1520 |
-
|
1521 |
-
#: Application/Backend/phtml/index.phtml:229
|
1522 |
-
#: Application/Backend/phtml/index.phtml:450
|
1523 |
-
msgid "Default"
|
1524 |
-
msgstr ""
|
1525 |
-
|
1526 |
-
#: Application/Backend/phtml/index.phtml:242
|
1527 |
-
#: Application/Backend/phtml/index.phtml:330
|
1528 |
-
#: Application/Backend/phtml/main/uri.phtml:134
|
1529 |
-
msgid "Action"
|
1530 |
-
msgstr ""
|
1531 |
-
|
1532 |
-
#: Application/Backend/phtml/index.phtml:255
|
1533 |
-
msgid "Create Role"
|
1534 |
-
msgstr ""
|
1535 |
-
|
1536 |
-
#: Application/Backend/phtml/index.phtml:259
|
1537 |
-
#: Application/Backend/phtml/index.phtml:286
|
1538 |
-
msgid "Role Name"
|
1539 |
-
msgstr ""
|
1540 |
-
|
1541 |
-
#: Application/Backend/phtml/index.phtml:260
|
1542 |
-
#: Application/Backend/phtml/index.phtml:287
|
1543 |
-
msgid "Enter Role Name"
|
1544 |
-
msgstr ""
|
1545 |
-
|
1546 |
-
#: Application/Backend/phtml/index.phtml:263
|
1547 |
-
#: Application/Backend/phtml/index.phtml:290
|
1548 |
-
msgid "Role Expiration"
|
1549 |
-
msgstr ""
|
1550 |
-
|
1551 |
-
#: Application/Backend/phtml/index.phtml:264
|
1552 |
-
#: Application/Backend/phtml/index.phtml:291
|
1553 |
-
msgid "Enter Expiration Rule"
|
1554 |
-
msgstr ""
|
1555 |
-
|
1556 |
-
#: Application/Backend/phtml/index.phtml:282
|
1557 |
-
msgid "Update Role"
|
1558 |
-
msgstr ""
|
1559 |
-
|
1560 |
-
#: Application/Backend/phtml/index.phtml:311
|
1561 |
-
#, php-format
|
1562 |
-
msgid "Are you sure that you want to delete the %s role?"
|
1563 |
-
msgstr ""
|
1564 |
-
|
1565 |
-
#: Application/Backend/phtml/index.phtml:329
|
1566 |
-
#: Application/Backend/phtml/metabox/metabox-content.phtml:64
|
1567 |
-
msgid "Username"
|
1568 |
-
msgstr ""
|
1569 |
-
|
1570 |
-
#: Application/Backend/phtml/index.phtml:354
|
1571 |
-
msgid ""
|
1572 |
-
"Define for how long user can access the website and what action needs to be "
|
1573 |
-
"taken after access expires."
|
1574 |
-
msgstr ""
|
1575 |
-
|
1576 |
-
#: Application/Backend/phtml/index.phtml:360
|
1577 |
-
msgid "Action After Expiration"
|
1578 |
-
msgstr ""
|
1579 |
-
|
1580 |
-
#: Application/Backend/phtml/index.phtml:362
|
1581 |
-
msgid "Select Action"
|
1582 |
-
msgstr ""
|
1583 |
-
|
1584 |
-
#: Application/Backend/phtml/index.phtml:363
|
1585 |
-
msgid "Logout User"
|
1586 |
-
msgstr ""
|
1587 |
-
|
1588 |
-
#: Application/Backend/phtml/index.phtml:364
|
1589 |
-
msgid "Delete Account"
|
1590 |
-
msgstr ""
|
1591 |
-
|
1592 |
-
#: Application/Backend/phtml/index.phtml:365
|
1593 |
-
msgid "Lock Account"
|
1594 |
-
msgstr ""
|
1595 |
-
|
1596 |
-
#: Application/Backend/phtml/index.phtml:366
|
1597 |
-
msgid "Change User Role"
|
1598 |
-
msgstr ""
|
1599 |
-
|
1600 |
-
#: Application/Backend/phtml/index.phtml:370
|
1601 |
-
msgid "Change To Role"
|
1602 |
-
msgstr ""
|
1603 |
-
|
1604 |
-
#: Application/Backend/phtml/index.phtml:378
|
1605 |
-
#, php-format
|
1606 |
-
msgid ""
|
1607 |
-
"User JWT token to authentication user without a need for entering username/"
|
1608 |
-
"password. To learn more about JWT authentication, please refer to %sHow to "
|
1609 |
-
"authenticate WordPress user with JWT token%s article."
|
1610 |
-
msgstr ""
|
1611 |
-
|
1612 |
-
#: Application/Backend/phtml/index.phtml:380
|
1613 |
-
msgid "JWT Token (for any API calls)"
|
1614 |
-
msgstr ""
|
1615 |
-
|
1616 |
-
#: Application/Backend/phtml/index.phtml:387
|
1617 |
-
msgid "User Login URL (with JWT token)"
|
1618 |
-
msgstr ""
|
1619 |
-
|
1620 |
-
#: Application/Backend/phtml/index.phtml:389
|
1621 |
-
msgid ""
|
1622 |
-
"With this URL user will be automatically logged in until the time defined on "
|
1623 |
-
"the \"Temporary Access\" tab."
|
1624 |
-
msgstr ""
|
1625 |
-
|
1626 |
-
#: Application/Backend/phtml/index.phtml:394
|
1627 |
-
msgid "To manage user profile, click on the button below."
|
1628 |
-
msgstr ""
|
1629 |
-
|
1630 |
-
#: Application/Backend/phtml/index.phtml:396
|
1631 |
-
msgid "Edit User Profile"
|
1632 |
-
msgstr ""
|
1633 |
-
|
1634 |
-
#: Application/Backend/phtml/index.phtml:414
|
1635 |
-
msgid ""
|
1636 |
-
"Manage access to your website for visitors (any user that is not "
|
1637 |
-
"authenticated)"
|
1638 |
-
msgstr ""
|
1639 |
-
|
1640 |
-
#: Application/Backend/phtml/index.phtml:415
|
1641 |
-
#: Application/Backend/phtml/metabox/metabox-content.phtml:78
|
1642 |
-
msgid "Manage Visitors"
|
1643 |
-
msgstr ""
|
1644 |
-
|
1645 |
-
#: Application/Backend/phtml/index.phtml:422
|
1646 |
-
msgid ""
|
1647 |
-
"Manage default access to your website resources for all users, roles and "
|
1648 |
-
"visitor. This includes Administrator role and your user"
|
1649 |
-
msgstr ""
|
1650 |
-
|
1651 |
-
#: Application/Backend/phtml/index.phtml:423
|
1652 |
-
#: Application/Backend/phtml/metabox/metabox-content.phtml:104
|
1653 |
-
msgid "Manage Default Access"
|
1654 |
-
msgstr ""
|
1655 |
-
|
1656 |
-
#: Application/Backend/phtml/index.phtml:431
|
1657 |
-
msgid ""
|
1658 |
-
"Manage access for your users, roles and visitors. Be careful with "
|
1659 |
-
"[Administrator] role as well as your admin user. [Database backup is "
|
1660 |
-
"strongly recommended]."
|
1661 |
-
msgstr ""
|
1662 |
-
|
1663 |
-
#: Application/Backend/phtml/index.phtml:436
|
1664 |
-
msgid ""
|
1665 |
-
"With Roles tab you can manage access for any defined role, edit role's name, "
|
1666 |
-
"create new role or even delete existing (but only when there is no users "
|
1667 |
-
"assigned to it). You are not allowed to delete Administrator role."
|
1668 |
-
msgstr ""
|
1669 |
-
|
1670 |
-
#: Application/Backend/phtml/index.phtml:441
|
1671 |
-
msgid ""
|
1672 |
-
"Manage access for any user. As a bonus feature, you can block user. It means "
|
1673 |
-
"that user will be not able to login to your website anymore."
|
1674 |
-
msgstr ""
|
1675 |
-
|
1676 |
-
#: Application/Backend/phtml/index.phtml:446
|
1677 |
-
msgid ""
|
1678 |
-
"Visitor can be considered any user that is not authenticated to your website."
|
1679 |
-
msgstr ""
|
1680 |
-
|
1681 |
-
#: Application/Backend/phtml/index.phtml:451
|
1682 |
-
msgid ""
|
1683 |
-
"Manage default access settings to your website resources for all users, "
|
1684 |
-
"roles and visitors."
|
1685 |
-
msgstr ""
|
1686 |
-
|
1687 |
-
#: Application/Backend/phtml/main-panel.phtml:26
|
1688 |
-
msgid "You are not allowed to manage any of the existing features."
|
1689 |
-
msgstr ""
|
1690 |
-
|
1691 |
-
#: Application/Backend/phtml/main/404redirect.phtml:7
|
1692 |
-
msgid "Setup [default] 404 redirect for all none-existing pages."
|
1693 |
-
msgstr ""
|
1694 |
-
|
1695 |
-
#: Application/Backend/phtml/main/404redirect.phtml:20
|
1696 |
-
msgid "Default WordPress 404 handler"
|
1697 |
-
msgstr ""
|
1698 |
-
|
1699 |
-
#: Application/Backend/phtml/main/404redirect.phtml:24
|
1700 |
-
#: Application/Backend/phtml/main/login-redirect.phtml:31
|
1701 |
-
#: Application/Backend/phtml/main/logout-redirect.phtml:31
|
1702 |
-
#: Application/Backend/phtml/main/redirect.phtml:50
|
1703 |
-
#: Application/Backend/phtml/main/uri.phtml:57
|
1704 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:77
|
1705 |
-
msgid "Redirected to existing page [(select from the drop-down)]"
|
1706 |
-
msgstr ""
|
1707 |
-
|
1708 |
-
#: Application/Backend/phtml/main/404redirect.phtml:28
|
1709 |
-
#: Application/Backend/phtml/main/redirect.phtml:54
|
1710 |
-
#: Application/Backend/phtml/main/redirect.phtml:106
|
1711 |
-
#: Application/Backend/phtml/main/uri.phtml:61
|
1712 |
-
msgid "Redirected to the URL [(enter valid URL starting from http or https)]"
|
1713 |
-
msgstr ""
|
1714 |
-
|
1715 |
-
#: Application/Backend/phtml/main/404redirect.phtml:32
|
1716 |
-
#: Application/Backend/phtml/main/login-redirect.phtml:39
|
1717 |
-
#: Application/Backend/phtml/main/logout-redirect.phtml:39
|
1718 |
-
#: Application/Backend/phtml/main/redirect.phtml:58
|
1719 |
-
#: Application/Backend/phtml/main/redirect.phtml:110
|
1720 |
-
#: Application/Backend/phtml/main/uri.phtml:65
|
1721 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:85
|
1722 |
-
#, php-format
|
1723 |
-
msgid "Trigger PHP callback function [(valid %sPHP callback%s is required)]"
|
1724 |
-
msgstr ""
|
1725 |
-
|
1726 |
-
#: Application/Backend/phtml/main/404redirect.phtml:45
|
1727 |
-
#: Application/Backend/phtml/main/login-redirect.phtml:52
|
1728 |
-
#: Application/Backend/phtml/main/logout-redirect.phtml:52
|
1729 |
-
#: Application/Backend/phtml/main/redirect.phtml:76
|
1730 |
-
#: Application/Backend/phtml/main/redirect.phtml:128
|
1731 |
-
#: Application/Backend/phtml/main/uri.phtml:81
|
1732 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:96
|
1733 |
-
msgid "-- Select Page --"
|
1734 |
-
msgstr ""
|
1735 |
-
|
1736 |
-
#: Application/Backend/phtml/main/404redirect.phtml:51
|
1737 |
-
#: Application/Backend/phtml/main/login-redirect.phtml:58
|
1738 |
-
#: Application/Backend/phtml/main/logout-redirect.phtml:58
|
1739 |
-
#: Application/Backend/phtml/main/redirect.phtml:82
|
1740 |
-
#: Application/Backend/phtml/main/redirect.phtml:134
|
1741 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:102
|
1742 |
-
msgid "The URL"
|
1743 |
-
msgstr ""
|
1744 |
-
|
1745 |
-
#: Application/Backend/phtml/main/404redirect.phtml:56
|
1746 |
-
#: Application/Backend/phtml/main/login-redirect.phtml:63
|
1747 |
-
#: Application/Backend/phtml/main/logout-redirect.phtml:63
|
1748 |
-
#: Application/Backend/phtml/main/redirect.phtml:87
|
1749 |
-
#: Application/Backend/phtml/main/redirect.phtml:139
|
1750 |
-
#: Application/Backend/phtml/main/uri.phtml:92
|
1751 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:107
|
1752 |
-
msgid "PHP Callback Function"
|
1753 |
-
msgstr ""
|
1754 |
-
|
1755 |
-
#: Application/Backend/phtml/main/404redirect.phtml:60
|
1756 |
-
msgid ""
|
1757 |
-
"You cannot setup 404 redirect for specific user, role or visitors. Switch to "
|
1758 |
-
"[Manage Default Access] and define default 404 redirect for everybody."
|
1759 |
-
msgstr ""
|
1760 |
-
|
1761 |
-
#: Application/Backend/phtml/main/capability.phtml:8
|
1762 |
-
#, php-format
|
1763 |
-
msgid ""
|
1764 |
-
"[Be careful!] Manage capabilities for [%s]. For more information about the "
|
1765 |
-
"concept of capabilities check %sWhat is a WordPress capability%s article."
|
1766 |
-
msgstr ""
|
1767 |
-
|
1768 |
-
#: Application/Backend/phtml/main/capability.phtml:16
|
1769 |
-
msgid "Filter"
|
1770 |
-
msgstr ""
|
1771 |
-
|
1772 |
-
#: Application/Backend/phtml/main/capability.phtml:23
|
1773 |
-
msgid "All Capabilities"
|
1774 |
-
msgstr ""
|
1775 |
-
|
1776 |
-
#: Application/Backend/phtml/main/capability.phtml:32
|
1777 |
-
msgid "Capabilities are customized"
|
1778 |
-
msgstr ""
|
1779 |
-
|
1780 |
-
#: Application/Backend/phtml/main/capability.phtml:33
|
1781 |
-
#: Application/Backend/phtml/main/menu.phtml:14
|
1782 |
-
#: Application/Backend/phtml/main/metabox.phtml:20
|
1783 |
-
#: Application/Backend/phtml/main/policy.phtml:16
|
1784 |
-
#: Application/Backend/phtml/main/post.phtml:36
|
1785 |
-
#: Application/Backend/phtml/main/route.phtml:17
|
1786 |
-
#: Application/Backend/phtml/main/toolbar.phtml:15
|
1787 |
-
#: Application/Backend/phtml/main/uri.phtml:17
|
1788 |
-
#: Application/Backend/phtml/metabox/metabox-content.phtml:133
|
1789 |
-
msgid "Reset To Default"
|
1790 |
-
msgstr ""
|
1791 |
-
|
1792 |
-
#: Application/Backend/phtml/main/capability.phtml:42
|
1793 |
-
msgid "Category"
|
1794 |
-
msgstr ""
|
1795 |
-
|
1796 |
-
#: Application/Backend/phtml/main/capability.phtml:43
|
1797 |
-
#: Application/Backend/phtml/main/capability.phtml:59
|
1798 |
-
#: Application/Backend/phtml/main/capability.phtml:80
|
1799 |
-
msgid "Capability"
|
1800 |
-
msgstr ""
|
1801 |
-
|
1802 |
-
#: Application/Backend/phtml/main/capability.phtml:44
|
1803 |
-
#: Application/Backend/phtml/main/policy.phtml:28
|
1804 |
-
#: Application/Backend/phtml/main/post.phtml:52
|
1805 |
-
#: Application/Backend/phtml/main/uri.phtml:135
|
1806 |
-
msgid "Actions"
|
1807 |
-
msgstr ""
|
1808 |
-
|
1809 |
-
#: Application/Backend/phtml/main/capability.phtml:55
|
1810 |
-
msgid "Create Capability"
|
1811 |
-
msgstr ""
|
1812 |
-
|
1813 |
-
#: Application/Backend/phtml/main/capability.phtml:60
|
1814 |
-
#: Application/Backend/phtml/main/capability.phtml:81
|
1815 |
-
msgid "Enter Capability"
|
1816 |
-
msgstr ""
|
1817 |
-
|
1818 |
-
#: Application/Backend/phtml/main/capability.phtml:83
|
1819 |
-
msgid ""
|
1820 |
-
"[Please note!] Capability will be updated for all roles. Any functionality "
|
1821 |
-
"that depends on this capability may not work properly."
|
1822 |
-
msgstr ""
|
1823 |
-
|
1824 |
-
#: Application/Backend/phtml/main/capability.phtml:101
|
1825 |
-
#, php-format
|
1826 |
-
msgid "Are you sure that you want to delete %s capability for all roles?"
|
1827 |
-
msgstr ""
|
1828 |
-
|
1829 |
-
#: Application/Backend/phtml/main/get-started.phtml:7
|
1830 |
-
msgid ""
|
1831 |
-
"Appreciate your interest in Advanced Access Manager (aka AAM). With strong "
|
1832 |
-
"knowledge and experience in WordPress, AAM becomes a very powerful tool to "
|
1833 |
-
"manage access to your frontend, backend and RESTful/XML-PRC APIs."
|
1834 |
-
msgstr ""
|
1835 |
-
|
1836 |
-
#: Application/Backend/phtml/main/get-started.phtml:8
|
1837 |
-
msgid "Please Note!"
|
1838 |
-
msgstr ""
|
1839 |
-
|
1840 |
-
#: Application/Backend/phtml/main/get-started.phtml:8
|
1841 |
-
#, php-format
|
1842 |
-
msgid ""
|
1843 |
-
"Power comes with responsibility. Make sure you have good understanding of "
|
1844 |
-
"%sWordPress Roles & Capabilities%s because AAM is very closely integrated "
|
1845 |
-
"with WordPress core. It is also recommended to have a backup of your "
|
1846 |
-
"database before you start working with AAM. There is no need to backup your "
|
1847 |
-
"files; AAM does not modify any physical files on your server and never did."
|
1848 |
-
msgstr ""
|
1849 |
-
|
1850 |
-
#: Application/Backend/phtml/main/get-started.phtml:9
|
1851 |
-
#, php-format
|
1852 |
-
msgid ""
|
1853 |
-
"AAM was thoroughly tested on the fresh installation of WordPress and in the "
|
1854 |
-
"latest versions of Chrome, Safari, IE and Firefox. If you have any issues, "
|
1855 |
-
"the most typical case is a conflict with other plugins or themes. In this "
|
1856 |
-
"case please do not hesitate to contact us directly on our website "
|
1857 |
-
"%saamplugin.com%s"
|
1858 |
-
msgstr ""
|
1859 |
-
|
1860 |
-
#: Application/Backend/phtml/main/get-started.phtml:10
|
1861 |
-
#, php-format
|
1862 |
-
msgid ""
|
1863 |
-
"If you are not sure where to start, please check our %s\"Get Started\"%s "
|
1864 |
-
"page to learn more about core concepts that will definitely help you to "
|
1865 |
-
"manage access to your WordPress website more effectively."
|
1866 |
-
msgstr ""
|
1867 |
-
|
1868 |
-
#: Application/Backend/phtml/main/get-started.phtml:12
|
1869 |
-
msgid "Go To \"Get Started\" Page"
|
1870 |
-
msgstr ""
|
1871 |
-
|
1872 |
-
#: Application/Backend/phtml/main/login-redirect.phtml:7
|
1873 |
-
msgid ""
|
1874 |
-
"Define the [default] login redirect for all users and roles when "
|
1875 |
-
"authentication is completed successfully."
|
1876 |
-
msgstr ""
|
1877 |
-
|
1878 |
-
#: Application/Backend/phtml/main/login-redirect.phtml:11
|
1879 |
-
#, php-format
|
1880 |
-
msgid ""
|
1881 |
-
"Customize login redirect for [%s] when the authentication is completed "
|
1882 |
-
"successfully. [Please note!] Login redirect works with default WordPress "
|
1883 |
-
"login form or %sAAM Secure Login widget%s. It may [not] work with any other "
|
1884 |
-
"login solutions."
|
1885 |
-
msgstr ""
|
1886 |
-
|
1887 |
-
#: Application/Backend/phtml/main/login-redirect.phtml:27
|
1888 |
-
#: Application/Backend/phtml/main/logout-redirect.phtml:27
|
1889 |
-
msgid "WordPress default behavior"
|
1890 |
-
msgstr ""
|
1891 |
-
|
1892 |
-
#: Application/Backend/phtml/main/login-redirect.phtml:35
|
1893 |
-
#: Application/Backend/phtml/main/logout-redirect.phtml:35
|
1894 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:81
|
1895 |
-
msgid "Redirected to the URL [(enter full URL starting from http or https)]"
|
1896 |
-
msgstr ""
|
1897 |
-
|
1898 |
-
#: Application/Backend/phtml/main/logout-redirect.phtml:7
|
1899 |
-
msgid "Define the [default] logout redirect for all users and roles."
|
1900 |
-
msgstr ""
|
1901 |
-
|
1902 |
-
#: Application/Backend/phtml/main/logout-redirect.phtml:11
|
1903 |
-
#, php-format
|
1904 |
-
msgid "Customize logout redirect for [%s]."
|
1905 |
-
msgstr ""
|
1906 |
-
|
1907 |
-
#: Application/Backend/phtml/main/menu.phtml:6
|
1908 |
-
#, php-format
|
1909 |
-
msgid ""
|
1910 |
-
"Protect your backend area. The list of menus and submenus is based on "
|
1911 |
-
"capabilities [%s] has. For more information please check %sHow to manage "
|
1912 |
-
"WordPress backend menu%s."
|
1913 |
-
msgstr ""
|
1914 |
-
|
1915 |
-
#: Application/Backend/phtml/main/menu.phtml:13
|
1916 |
-
#: Application/Backend/phtml/main/metabox.phtml:19
|
1917 |
-
#: Application/Backend/phtml/main/post.phtml:35
|
1918 |
-
#: Application/Backend/phtml/main/toolbar.phtml:14
|
1919 |
-
#: Application/Backend/phtml/main/uri.phtml:16
|
1920 |
-
#: Application/Backend/phtml/metabox/metabox-content.phtml:132
|
1921 |
-
msgid "Settings are customized"
|
1922 |
-
msgstr ""
|
1923 |
-
|
1924 |
-
#: Application/Backend/phtml/main/menu.phtml:47
|
1925 |
-
#: Application/Backend/phtml/main/toolbar.phtml:44
|
1926 |
-
msgid "Menu ID:"
|
1927 |
-
msgstr ""
|
1928 |
-
|
1929 |
-
#: Application/Backend/phtml/main/menu.phtml:59
|
1930 |
-
#: Application/Backend/phtml/main/menu.phtml:66
|
1931 |
-
msgid "Cap:"
|
1932 |
-
msgstr ""
|
1933 |
-
|
1934 |
-
#: Application/Backend/phtml/main/menu.phtml:102
|
1935 |
-
msgid ""
|
1936 |
-
"Current user does not have enough capabilities to access any available "
|
1937 |
-
"dashboard page."
|
1938 |
-
msgstr ""
|
1939 |
-
|
1940 |
-
#: Application/Backend/phtml/main/menu.phtml:114
|
1941 |
-
msgid "Dashboard Lockdown"
|
1942 |
-
msgstr ""
|
1943 |
-
|
1944 |
-
#: Application/Backend/phtml/main/menu.phtml:118
|
1945 |
-
msgid "You cannot restrict access to Dashboard home page."
|
1946 |
-
msgstr ""
|
1947 |
-
|
1948 |
-
#: Application/Backend/phtml/main/menu.phtml:119
|
1949 |
-
#, php-format
|
1950 |
-
msgid ""
|
1951 |
-
"The [Home] is the default page every user is redirected after login. To "
|
1952 |
-
"restrict access to the entire backend, please check %sHow to lockdown "
|
1953 |
-
"WordPress backend%s article."
|
1954 |
-
msgstr ""
|
1955 |
-
|
1956 |
-
#: Application/Backend/phtml/main/menu.phtml:123
|
1957 |
-
msgid "OK"
|
1958 |
-
msgstr ""
|
1959 |
-
|
1960 |
-
#: Application/Backend/phtml/main/metabox.phtml:6
|
1961 |
-
#, php-format
|
1962 |
-
msgid ""
|
1963 |
-
"Hide unnecessary or restricted metaboxes and widgets for [%s]. For more "
|
1964 |
-
"information please check %sHow to hide WordPress metaboxes and widgets%s."
|
1965 |
-
msgstr ""
|
1966 |
-
|
1967 |
-
#: Application/Backend/phtml/main/metabox.phtml:12
|
1968 |
-
msgid "Refresh"
|
1969 |
-
msgstr ""
|
1970 |
-
|
1971 |
-
#: Application/Backend/phtml/main/metabox.phtml:13
|
1972 |
-
msgid "Init URL"
|
1973 |
-
msgstr ""
|
1974 |
-
|
1975 |
-
#: Application/Backend/phtml/main/metabox.phtml:43
|
1976 |
-
msgid "Dashboard Widgets"
|
1977 |
-
msgstr ""
|
1978 |
-
|
1979 |
-
#: Application/Backend/phtml/main/metabox.phtml:47
|
1980 |
-
msgid "Frontend Widgets [(including Appearance->Widgets)]"
|
1981 |
-
msgstr ""
|
1982 |
-
|
1983 |
-
#: Application/Backend/phtml/main/metabox.phtml:81
|
1984 |
-
msgid "The list is not initialized. Click Refresh button above."
|
1985 |
-
msgstr ""
|
1986 |
-
|
1987 |
-
#: Application/Backend/phtml/main/metabox.phtml:92
|
1988 |
-
msgid "Initialize URL"
|
1989 |
-
msgstr ""
|
1990 |
-
|
1991 |
-
#: Application/Backend/phtml/main/metabox.phtml:96
|
1992 |
-
msgid ""
|
1993 |
-
"Some metaboxes are \"conditional\" and appear on the Edit screen when "
|
1994 |
-
"certain conditions are met. For example metabox \"Comments\" appears only "
|
1995 |
-
"for existing page and not for new page. If you do not see a desired metabox, "
|
1996 |
-
"try to copy & paste the full URL to the backend page where that metabox "
|
1997 |
-
"appears."
|
1998 |
-
msgstr ""
|
1999 |
-
|
2000 |
-
#: Application/Backend/phtml/main/metabox.phtml:99
|
2001 |
-
msgid "Backend page URL"
|
2002 |
-
msgstr ""
|
2003 |
-
|
2004 |
-
#: Application/Backend/phtml/main/metabox.phtml:100
|
2005 |
-
msgid "Insert valid URL"
|
2006 |
-
msgstr ""
|
2007 |
-
|
2008 |
-
#: Application/Backend/phtml/main/policy.phtml:7
|
2009 |
-
#, php-format
|
2010 |
-
msgid ""
|
2011 |
-
"Manage access and security policies for [%s]. For more information check "
|
2012 |
-
"%sAccess & Security Policy%s page."
|
2013 |
-
msgstr ""
|
2014 |
-
|
2015 |
-
#: Application/Backend/phtml/main/policy.phtml:15
|
2016 |
-
msgid "Policies are customized"
|
2017 |
-
msgstr ""
|
2018 |
-
|
2019 |
-
#: Application/Backend/phtml/main/policy.phtml:27
|
2020 |
-
msgid "Policy"
|
2021 |
-
msgstr ""
|
2022 |
-
|
2023 |
-
#: Application/Backend/phtml/main/policy.phtml:40
|
2024 |
-
#, php-format
|
2025 |
-
msgid ""
|
2026 |
-
"%s[AAM Plus Package]%s extension is required in order to apply Access & "
|
2027 |
-
"Security Policies to everybody all together."
|
2028 |
-
msgstr ""
|
2029 |
-
|
2030 |
-
#: Application/Backend/phtml/main/post.phtml:7
|
2031 |
-
#, php-format
|
2032 |
-
msgid ""
|
2033 |
-
"You are allowed to manage access to unlimited number of posts, pages or "
|
2034 |
-
"custom post types but only for any role, user or visitor. Consider to "
|
2035 |
-
"purchase %s[AAM Plus Package]%s extension to have the ability to also manage "
|
2036 |
-
"access to categories and custom taxonomies or to define the default access "
|
2037 |
-
"to all posts, pages or custom post types. For more information about this "
|
2038 |
-
"functionality check %sHow to manage access to the WordPress content%s."
|
2039 |
-
msgstr ""
|
2040 |
-
|
2041 |
-
#: Application/Backend/phtml/main/post.phtml:15
|
2042 |
-
#, php-format
|
2043 |
-
msgid ""
|
2044 |
-
"Manage access to posts, pages, custom post types, categories or custom "
|
2045 |
-
"hierarchical taxonomies. For more information about this functionality check "
|
2046 |
-
"%sManage access to the WordPress Posts and Terms%s article."
|
2047 |
-
msgstr ""
|
2048 |
-
|
2049 |
-
#: Application/Backend/phtml/main/post.phtml:25
|
2050 |
-
msgid "Root"
|
2051 |
-
msgstr ""
|
2052 |
-
|
2053 |
-
#: Application/Backend/phtml/main/post.phtml:51
|
2054 |
-
msgid "Title"
|
2055 |
-
msgstr ""
|
2056 |
-
|
2057 |
-
#: Application/Backend/phtml/main/post.phtml:61
|
2058 |
-
#: Application/Backend/phtml/main/post.phtml:64
|
2059 |
-
#: Application/Backend/phtml/main/post.phtml:68
|
2060 |
-
#: Application/Backend/phtml/main/post.phtml:71
|
2061 |
-
#: Application/Backend/phtml/main/post.phtml:79
|
2062 |
-
#: Application/Backend/phtml/main/post.phtml:84
|
2063 |
-
msgid "Go Back"
|
2064 |
-
msgstr ""
|
2065 |
-
|
2066 |
-
#: Application/Backend/phtml/main/redirect.phtml:7
|
2067 |
-
msgid ""
|
2068 |
-
"Define the [default] redirect for all users, roles and visitors when access "
|
2069 |
-
"is denied to any restricted resources on your website."
|
2070 |
-
msgstr ""
|
2071 |
-
|
2072 |
-
#: Application/Backend/phtml/main/redirect.phtml:11
|
2073 |
-
#, php-format
|
2074 |
-
msgid ""
|
2075 |
-
"Customize redirect for %s when access is denied to restricted resources like "
|
2076 |
-
"posts, categories, menus, etc. For more information about this feature, "
|
2077 |
-
"please check %sHow to redirect WordPress user when access is denied%s."
|
2078 |
-
msgstr ""
|
2079 |
-
|
2080 |
-
#: Application/Backend/phtml/main/redirect.phtml:25
|
2081 |
-
msgid "Frontend Redirect"
|
2082 |
-
msgstr ""
|
2083 |
-
|
2084 |
-
#: Application/Backend/phtml/main/redirect.phtml:26
|
2085 |
-
msgid "Backend Redirect"
|
2086 |
-
msgstr ""
|
2087 |
-
|
2088 |
-
#: Application/Backend/phtml/main/redirect.phtml:36
|
2089 |
-
#: Application/Backend/phtml/main/redirect.phtml:94
|
2090 |
-
msgid "Default [(\"Access Denied\" message)]"
|
2091 |
-
msgstr ""
|
2092 |
-
|
2093 |
-
#: Application/Backend/phtml/main/redirect.phtml:40
|
2094 |
-
#: Application/Backend/phtml/main/redirect.phtml:98
|
2095 |
-
#: Application/Backend/phtml/main/uri.phtml:47
|
2096 |
-
msgid "Show customized message [(plain text or HTML)]"
|
2097 |
-
msgstr ""
|
2098 |
-
|
2099 |
-
#: Application/Backend/phtml/main/redirect.phtml:45
|
2100 |
-
#: Application/Backend/phtml/main/uri.phtml:52
|
2101 |
-
msgid ""
|
2102 |
-
"Redirect to the login page [(after login, user will be redirected back to "
|
2103 |
-
"the restricted page)]"
|
2104 |
-
msgstr ""
|
2105 |
-
|
2106 |
-
#: Application/Backend/phtml/main/redirect.phtml:62
|
2107 |
-
#: Application/Backend/phtml/main/redirect.phtml:114
|
2108 |
-
#: Application/Backend/phtml/main/uri.phtml:69
|
2109 |
-
msgid "Customized Message"
|
2110 |
-
msgstr ""
|
2111 |
-
|
2112 |
-
#: Application/Backend/phtml/main/redirect.phtml:63
|
2113 |
-
#: Application/Backend/phtml/main/redirect.phtml:115
|
2114 |
-
#: Application/Backend/phtml/main/uri.phtml:70
|
2115 |
-
msgid "Enter message..."
|
2116 |
-
msgstr ""
|
2117 |
-
|
2118 |
-
#: Application/Backend/phtml/main/redirect.phtml:102
|
2119 |
-
msgid "Redirected to existing frontend page [(select from the drop-down)]"
|
2120 |
-
msgstr ""
|
2121 |
-
|
2122 |
-
#: Application/Backend/phtml/main/route.phtml:8
|
2123 |
-
#, php-format
|
2124 |
-
msgid ""
|
2125 |
-
"Manage access to the website API routes for [%s]. For full RESTful API "
|
2126 |
-
"experience, you might want to use %sJWT authentication%s that is already "
|
2127 |
-
"available in AAM."
|
2128 |
-
msgstr ""
|
2129 |
-
|
2130 |
-
#: Application/Backend/phtml/main/route.phtml:16
|
2131 |
-
msgid "Routes are customized"
|
2132 |
-
msgstr ""
|
2133 |
-
|
2134 |
-
#: Application/Backend/phtml/main/route.phtml:27
|
2135 |
-
msgid "Route"
|
2136 |
-
msgstr ""
|
2137 |
-
|
2138 |
-
#: Application/Backend/phtml/main/route.phtml:28
|
2139 |
-
msgid "Deny"
|
2140 |
-
msgstr ""
|
2141 |
-
|
2142 |
-
#: Application/Backend/phtml/main/toolbar.phtml:6
|
2143 |
-
msgid ""
|
2144 |
-
"[Note!] Admin Toolbar feature is not intended to restrict direct access to "
|
2145 |
-
"URLs and should be used only to remove unnecessary items from the top admin "
|
2146 |
-
"toolbar. Use [Backend Menu] tab to restrict direct access to backend pages "
|
2147 |
-
"or utilize the great power of roles and capabilities."
|
2148 |
-
msgstr ""
|
2149 |
-
|
2150 |
-
#: Application/Backend/phtml/main/toolbar.phtml:55
|
2151 |
-
msgid "URI:"
|
2152 |
-
msgstr ""
|
2153 |
-
|
2154 |
-
#: Application/Backend/phtml/main/toolbar.phtml:86
|
2155 |
-
msgid ""
|
2156 |
-
"The list of top admin bar items is not initialized. Click \"Refresh\" button "
|
2157 |
-
"above."
|
2158 |
-
msgstr ""
|
2159 |
-
|
2160 |
-
#: Application/Backend/phtml/main/uri.phtml:8
|
2161 |
-
#, php-format
|
2162 |
-
msgid ""
|
2163 |
-
"Manage access to the website URL(s) for the [%s]. However, note! All entered "
|
2164 |
-
"URLs have to belong to this particular website and processed by the "
|
2165 |
-
"WordPress core. For more information check %sHow to restrict access to any "
|
2166 |
-
"WordPress website URL%s."
|
2167 |
-
msgstr ""
|
2168 |
-
|
2169 |
-
#: Application/Backend/phtml/main/uri.phtml:27
|
2170 |
-
msgid "URI Access Rule"
|
2171 |
-
msgstr ""
|
2172 |
-
|
2173 |
-
#: Application/Backend/phtml/main/uri.phtml:31
|
2174 |
-
msgid "Enter URL [(wildcard * is available with Plus Package extension)]"
|
2175 |
-
msgstr ""
|
2176 |
-
|
2177 |
-
#: Application/Backend/phtml/main/uri.phtml:35
|
2178 |
-
msgid "How to redirect user when match?"
|
2179 |
-
msgstr ""
|
2180 |
-
|
2181 |
-
#: Application/Backend/phtml/main/uri.phtml:39
|
2182 |
-
msgid "Allow Access"
|
2183 |
-
msgstr ""
|
2184 |
-
|
2185 |
-
#: Application/Backend/phtml/main/uri.phtml:43
|
2186 |
-
msgid "Deny Access [(show \"Access Denied\" message)]"
|
2187 |
-
msgstr ""
|
2188 |
-
|
2189 |
-
#: Application/Backend/phtml/main/uri.phtml:87
|
2190 |
-
msgid "The Valid Redirect URL"
|
2191 |
-
msgstr ""
|
2192 |
-
|
2193 |
-
#: Application/Backend/phtml/main/uri.phtml:109
|
2194 |
-
msgid "Delete URI Rule"
|
2195 |
-
msgstr ""
|
2196 |
-
|
2197 |
-
#: Application/Backend/phtml/main/uri.phtml:132
|
2198 |
-
msgid "URI"
|
2199 |
-
msgstr ""
|
2200 |
-
|
2201 |
-
#: Application/Backend/phtml/main/uri.phtml:133
|
2202 |
-
msgid "Type"
|
2203 |
-
msgstr ""
|
2204 |
-
|
2205 |
-
#: Application/Backend/phtml/metabox/metabox-content.phtml:77
|
2206 |
-
#, php-format
|
2207 |
-
msgid "Manage access to %s for visitors (any user that is not authenticated)"
|
2208 |
-
msgstr ""
|
2209 |
-
|
2210 |
-
#: Application/Backend/phtml/metabox/metabox-content.phtml:80
|
2211 |
-
msgid ""
|
2212 |
-
"Attach current access & security policy to visitors (any user that is "
|
2213 |
-
"not authenticated)"
|
2214 |
-
msgstr ""
|
2215 |
-
|
2216 |
-
#: Application/Backend/phtml/metabox/metabox-content.phtml:98
|
2217 |
-
#, php-format
|
2218 |
-
msgid ""
|
2219 |
-
"Manage default access to %s for all users, roles and visitor. This includes "
|
2220 |
-
"Administrator role and yourself"
|
2221 |
-
msgstr ""
|
2222 |
-
|
2223 |
-
#: Application/Backend/phtml/metabox/metabox-content.phtml:100
|
2224 |
-
msgid ""
|
2225 |
-
"Attach current access & security policy to all users, roles and "
|
2226 |
-
"visitors. This includes Administrator role and yourself"
|
2227 |
-
msgstr ""
|
2228 |
-
|
2229 |
-
#: Application/Backend/phtml/metabox/metabox-content.phtml:118
|
2230 |
-
msgid "This feature is allowed only with [AAM Plus Package] extension."
|
2231 |
-
msgstr ""
|
2232 |
-
|
2233 |
-
#: Application/Backend/phtml/metabox/policy-metabox.phtml:389
|
2234 |
-
#, php-format
|
2235 |
-
msgid ""
|
2236 |
-
"To learn more about Access & Security policy document, please check "
|
2237 |
-
"[%sAccess & Security Policy%s] page."
|
2238 |
-
msgstr ""
|
2239 |
-
|
2240 |
-
#: Application/Backend/phtml/metabox/policy-metabox.phtml:418
|
2241 |
-
msgid "Syntax Error"
|
2242 |
-
msgstr ""
|
2243 |
-
|
2244 |
-
#: Application/Backend/phtml/partial/login-redirect.phtml:3
|
2245 |
-
msgid ""
|
2246 |
-
"Setup [default] redirect after user logged in successfully for all your "
|
2247 |
-
"users and roles. With [AAM Login Redirect] extension you can customize login "
|
2248 |
-
"redirect for any user or role."
|
2249 |
-
msgstr ""
|
2250 |
-
|
2251 |
-
#: Application/Backend/phtml/partial/post-access-form.phtml:13
|
2252 |
-
msgid "Frontend Access Settings"
|
2253 |
-
msgstr ""
|
2254 |
-
|
2255 |
-
#: Application/Backend/phtml/partial/post-access-form.phtml:29
|
2256 |
-
#: Application/Backend/phtml/partial/post-access-form.phtml:69
|
2257 |
-
#: Application/Backend/phtml/partial/post-access-form.phtml:109
|
2258 |
-
msgid "change"
|
2259 |
-
msgstr ""
|
2260 |
-
|
2261 |
-
#: Application/Backend/phtml/partial/post-access-form.phtml:53
|
2262 |
-
msgid "Backend Access Settings"
|
2263 |
-
msgstr ""
|
2264 |
-
|
2265 |
-
#: Application/Backend/phtml/partial/post-access-form.phtml:93
|
2266 |
-
msgid "API Access Settings"
|
2267 |
-
msgstr ""
|
2268 |
-
|
2269 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:7
|
2270 |
-
msgid "Teaser Message"
|
2271 |
-
msgstr ""
|
2272 |
-
|
2273 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:11
|
2274 |
-
msgid "Simple text or valid HTML"
|
2275 |
-
msgstr ""
|
2276 |
-
|
2277 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:12
|
2278 |
-
msgid "Enter your teaser"
|
2279 |
-
msgstr ""
|
2280 |
-
|
2281 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:28
|
2282 |
-
msgid "Define Threshold"
|
2283 |
-
msgstr ""
|
2284 |
-
|
2285 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:33
|
2286 |
-
msgid "Enter digital number"
|
2287 |
-
msgstr ""
|
2288 |
-
|
2289 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:49
|
2290 |
-
msgid "Set Password"
|
2291 |
-
msgstr ""
|
2292 |
-
|
2293 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:54
|
2294 |
-
msgid "Enter Password"
|
2295 |
-
msgstr ""
|
2296 |
-
|
2297 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:70
|
2298 |
-
msgid "Set Redirect Rule"
|
2299 |
-
msgstr ""
|
2300 |
-
|
2301 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:73
|
2302 |
-
msgid ""
|
2303 |
-
"Use REDIRECT option only if you want to redirect user to different location "
|
2304 |
-
"either temporary or permanently."
|
2305 |
-
msgstr ""
|
2306 |
-
|
2307 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:126
|
2308 |
-
msgid "Set Expiration"
|
2309 |
-
msgstr ""
|
2310 |
-
|
2311 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:147
|
2312 |
-
msgid "E-Commerce Setup"
|
2313 |
-
msgstr ""
|
2314 |
-
|
2315 |
-
#: Application/Backend/phtml/partial/post-advanced-settings.phtml:153
|
2316 |
-
#, php-format
|
2317 |
-
msgid ""
|
2318 |
-
"Monetization is the premium feature that is available with %s[E-Commerce]%s "
|
2319 |
-
"extension."
|
2320 |
-
msgstr ""
|
2321 |
-
|
2322 |
-
#: Application/Backend/phtml/partial/post-type.phtml:4
|
2323 |
-
#, php-format
|
2324 |
-
msgid ""
|
2325 |
-
"Manage default access to all your %s and %s Categories. This feature is "
|
2326 |
-
"available only with [AAM Plus Package] extension. But you can still manage "
|
2327 |
-
"access to individual %s but only up to 10 %s. Consider to purchase [AAM Plus "
|
2328 |
-
"Package] extension."
|
2329 |
-
msgstr ""
|
2330 |
-
|
2331 |
-
#: Application/Backend/phtml/partial/redirect.phtml:3
|
2332 |
-
msgid ""
|
2333 |
-
"Setup [default] redirect for all users, roles and visitors when access is "
|
2334 |
-
"denied for any restricted resources on your website."
|
2335 |
-
msgstr ""
|
2336 |
-
|
2337 |
-
#: Application/Backend/phtml/partial/role-inheritance.phtml:3
|
2338 |
-
msgid "Inherit Capabilities From"
|
2339 |
-
msgstr ""
|
2340 |
-
|
2341 |
-
#: Application/Backend/phtml/partial/role-inheritance.phtml:11
|
2342 |
-
msgid ""
|
2343 |
-
"Also clone all AAM access settings (admin menu, metaboxes, redirects etc)"
|
2344 |
-
msgstr ""
|
2345 |
-
|
2346 |
-
#: Application/Backend/phtml/partial/term-type.phtml:4
|
2347 |
-
#, php-format
|
2348 |
-
msgid ""
|
2349 |
-
"Manage access to %s is available with [AAM Plus Package] extension only. "
|
2350 |
-
"With this feature you can also define default access to all child posts that "
|
2351 |
-
"belong to %s. Consider to purchase [AAM Plus Package] extension."
|
2352 |
-
msgstr ""
|
2353 |
-
|
2354 |
-
#: Application/Backend/phtml/widget/login-backend.phtml:3
|
2355 |
-
msgid "Login Title"
|
2356 |
-
msgstr ""
|
2357 |
-
|
2358 |
-
#: Application/Backend/phtml/widget/login-backend.phtml:8
|
2359 |
-
msgid "Logged In Title"
|
2360 |
-
msgstr ""
|
2361 |
-
|
2362 |
-
#: Application/Backend/phtml/widget/login-backend.phtml:13
|
2363 |
-
#, php-format
|
2364 |
-
msgid ""
|
2365 |
-
"For more advanced setup like login/logout redirects, security enhancement or "
|
2366 |
-
"custom styling, please refer to %sHow does AAM Secure Login works%s article."
|
2367 |
-
msgstr ""
|
2368 |
-
|
2369 |
-
#: Application/Backend/phtml/widget/login-frontend.phtml:21
|
2370 |
-
#: Application/Frontend/phtml/login.phtml:7
|
2371 |
-
msgid "Username or Email Address"
|
2372 |
-
msgstr ""
|
2373 |
-
|
2374 |
-
#: Application/Backend/phtml/widget/login-frontend.phtml:36
|
2375 |
-
#: Application/Frontend/phtml/login.phtml:22
|
2376 |
-
msgid "Remember Me"
|
2377 |
-
msgstr ""
|
2378 |
-
|
2379 |
-
#: Application/Backend/phtml/widget/login-frontend.phtml:41
|
2380 |
-
msgid "Log In"
|
2381 |
-
msgstr ""
|
2382 |
-
|
2383 |
-
#: Application/Backend/phtml/widget/login-frontend.phtml:50
|
2384 |
-
#: Application/Frontend/phtml/login.phtml:36
|
2385 |
-
msgid "Register"
|
2386 |
-
msgstr ""
|
2387 |
-
|
2388 |
-
#: Application/Backend/phtml/widget/login-frontend.phtml:55
|
2389 |
-
#: Application/Frontend/phtml/login.phtml:41
|
2390 |
-
msgid "Lost your password?"
|
2391 |
-
msgstr ""
|
2392 |
-
|
2393 |
-
#: Application/Backend/phtml/widget/login-frontend.phtml:66
|
2394 |
-
#: Application/Frontend/phtml/login.phtml:53
|
2395 |
-
msgid "Dashboard"
|
2396 |
-
msgstr ""
|
2397 |
-
|
2398 |
-
#: Application/Backend/phtml/widget/login-frontend.phtml:67
|
2399 |
-
#: Application/Frontend/phtml/login.phtml:54
|
2400 |
-
msgid "Edit My Profile"
|
2401 |
-
msgstr ""
|
2402 |
-
|
2403 |
-
#: Application/Backend/phtml/widget/login-frontend.phtml:69
|
2404 |
-
#: Application/Frontend/phtml/login.phtml:56
|
2405 |
-
msgid "Log Out"
|
2406 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|