Version Description
- Navigation menu permission setting added. Documentation.
- IMPORTANT: Disable navigation menu permission, if you already have a Nav Menu permission plugin and if it stops working.
- Navigation menu permission uninstall cleanup bug fix.
Download this release
Release Info
Developer | syammohanm |
Plugin | WPFront User Role Editor |
Version | 2.5.1 |
Comparing to | |
See all releases |
Code changes from version 2.5 to 2.5.1
- classes/class-wpfront-user-role-editor-nav-menu.php +28 -15
- classes/class-wpfront-user-role-editor-options.php +23 -0
- classes/class-wpfront-user-role-editor.php +24 -15
- languages/wpfront-user-role-editor.mo +0 -0
- languages/wpfront-user-role-editor.po +647 -469
- readme.txt +178 -170
- templates/go-pro-table +9 -0
- templates/options-template.php +19 -9
- uninstall.php +4 -0
- wpfront-user-role-editor.php +1 -1
classes/class-wpfront-user-role-editor-nav-menu.php
CHANGED
@@ -45,9 +45,11 @@ if (!class_exists('WPFront_User_Role_Editor_Nav_Menu')) {
|
|
45 |
|
46 |
public function __construct($main) {
|
47 |
parent::__construct($main);
|
48 |
-
|
49 |
-
|
50 |
-
|
|
|
|
|
51 |
add_action('wp_nav_menu_item_custom_fields', array($this, 'menu_item_custom_fields'), 10, 4);
|
52 |
add_action('wp_nav_menu_item_title_user_restriction_type', array($this, 'menu_item_title_user_restriction_type'), 10, 4);
|
53 |
add_filter('wp_nav_menu_item_custom_fields_roles_list', array($this, 'menu_item_custom_fields_roles_list'), 10, 5);
|
@@ -58,19 +60,26 @@ if (!class_exists('WPFront_User_Role_Editor_Nav_Menu')) {
|
|
58 |
add_action('admin_print_scripts-nav-menus.php', array($this, 'enqueue_menu_scripts'));
|
59 |
add_action('admin_print_styles-nav-menus.php', array($this, 'enqueue_menu_styles'));
|
60 |
}
|
61 |
-
|
62 |
public static function nav_menu_help_url() {
|
63 |
return 'https://wpfront.com/user-role-editor-pro/navigation-menu-permissions/';
|
64 |
}
|
|
|
|
|
|
|
|
|
65 |
|
66 |
-
public static function override_edit_nav_menu_walker() {
|
|
|
|
|
|
|
67 |
return 'WPFront_User_Role_Editor_Nav_Menu_Walker';
|
68 |
}
|
69 |
|
70 |
public function menu_item_title_user_restriction_type($item_id, $item, $depth, $args) {
|
71 |
-
if(!current_user_can('edit_nav_menu_permissions'))
|
72 |
return;
|
73 |
-
|
74 |
$data = $this->get_meta_data($item_id);
|
75 |
$text = $this->__('All Users');
|
76 |
|
@@ -91,15 +100,15 @@ if (!class_exists('WPFront_User_Role_Editor_Nav_Menu')) {
|
|
91 |
</span>
|
92 |
<?php
|
93 |
}
|
94 |
-
|
95 |
public function menu_item_custom_fields_roles_list($s, $item_id, $item, $depth, $args) {
|
96 |
return sprintf($this->__('%s to limit based on roles.'), '<a target="_blank" href="https://wpfront.com/navmenu">Upgrade to Pro</a>');
|
97 |
}
|
98 |
|
99 |
public function menu_item_custom_fields($item_id, $item, $depth, $args) {
|
100 |
-
if(!current_user_can('edit_nav_menu_permissions'))
|
101 |
return;
|
102 |
-
|
103 |
$data = $this->get_meta_data($item_id);
|
104 |
$this->main->create_nonce($item_id);
|
105 |
?>
|
@@ -118,22 +127,22 @@ if (!class_exists('WPFront_User_Role_Editor_Nav_Menu')) {
|
|
118 |
</p>
|
119 |
<?php
|
120 |
}
|
121 |
-
|
122 |
protected function update_nav_menu_item_sub($menu_id, $menu_item_db_id, $args, $data) {
|
123 |
return $data;
|
124 |
}
|
125 |
|
126 |
public function update_nav_menu_item($menu_id, $menu_item_db_id, $args) {
|
127 |
-
if(!current_user_can('edit_nav_menu_permissions'))
|
128 |
return;
|
129 |
-
|
130 |
$data = $this->get_meta_data($menu_item_db_id);
|
131 |
|
132 |
if (!empty($_POST['user-restriction-type-' . $menu_item_db_id])) {
|
133 |
$this->main->verify_nonce($menu_item_db_id);
|
134 |
-
|
135 |
$data->type = intval($_POST['user-restriction-type-' . $menu_item_db_id]);
|
136 |
-
|
137 |
$data = $this->update_nav_menu_item_sub($menu_id, $menu_item_db_id, $args, $data);
|
138 |
}
|
139 |
|
@@ -229,6 +238,10 @@ if (!class_exists('WPFront_User_Role_Editor_Nav_Menu')) {
|
|
229 |
wp_enqueue_style('wpfront-user-role-editor-nav-menu-css', $this->main->pluginURL() . 'css/nav-menu.css', array(), WPFront_User_Role_Editor::VERSION);
|
230 |
}
|
231 |
|
|
|
|
|
|
|
|
|
232 |
}
|
233 |
|
234 |
}
|
45 |
|
46 |
public function __construct($main) {
|
47 |
parent::__construct($main);
|
48 |
+
|
49 |
+
if($this->main->disable_navigation_menu_permissions())
|
50 |
+
return;
|
51 |
+
|
52 |
+
add_action('init', array($this, 'wp_init'), 9999);
|
53 |
add_action('wp_nav_menu_item_custom_fields', array($this, 'menu_item_custom_fields'), 10, 4);
|
54 |
add_action('wp_nav_menu_item_title_user_restriction_type', array($this, 'menu_item_title_user_restriction_type'), 10, 4);
|
55 |
add_filter('wp_nav_menu_item_custom_fields_roles_list', array($this, 'menu_item_custom_fields_roles_list'), 10, 5);
|
60 |
add_action('admin_print_scripts-nav-menus.php', array($this, 'enqueue_menu_scripts'));
|
61 |
add_action('admin_print_styles-nav-menus.php', array($this, 'enqueue_menu_styles'));
|
62 |
}
|
63 |
+
|
64 |
public static function nav_menu_help_url() {
|
65 |
return 'https://wpfront.com/user-role-editor-pro/navigation-menu-permissions/';
|
66 |
}
|
67 |
+
|
68 |
+
public function wp_init() {
|
69 |
+
add_filter('wp_edit_nav_menu_walker', array($this, 'override_edit_nav_menu_walker'), 9999);
|
70 |
+
}
|
71 |
|
72 |
+
public static function override_edit_nav_menu_walker($current = 'Walker_Nav_Menu_Edit') {
|
73 |
+
if($current !== 'Walker_Nav_Menu_Edit')
|
74 |
+
return $current;
|
75 |
+
|
76 |
return 'WPFront_User_Role_Editor_Nav_Menu_Walker';
|
77 |
}
|
78 |
|
79 |
public function menu_item_title_user_restriction_type($item_id, $item, $depth, $args) {
|
80 |
+
if (!current_user_can('edit_nav_menu_permissions'))
|
81 |
return;
|
82 |
+
|
83 |
$data = $this->get_meta_data($item_id);
|
84 |
$text = $this->__('All Users');
|
85 |
|
100 |
</span>
|
101 |
<?php
|
102 |
}
|
103 |
+
|
104 |
public function menu_item_custom_fields_roles_list($s, $item_id, $item, $depth, $args) {
|
105 |
return sprintf($this->__('%s to limit based on roles.'), '<a target="_blank" href="https://wpfront.com/navmenu">Upgrade to Pro</a>');
|
106 |
}
|
107 |
|
108 |
public function menu_item_custom_fields($item_id, $item, $depth, $args) {
|
109 |
+
if (!current_user_can('edit_nav_menu_permissions'))
|
110 |
return;
|
111 |
+
|
112 |
$data = $this->get_meta_data($item_id);
|
113 |
$this->main->create_nonce($item_id);
|
114 |
?>
|
127 |
</p>
|
128 |
<?php
|
129 |
}
|
130 |
+
|
131 |
protected function update_nav_menu_item_sub($menu_id, $menu_item_db_id, $args, $data) {
|
132 |
return $data;
|
133 |
}
|
134 |
|
135 |
public function update_nav_menu_item($menu_id, $menu_item_db_id, $args) {
|
136 |
+
if (!current_user_can('edit_nav_menu_permissions'))
|
137 |
return;
|
138 |
+
|
139 |
$data = $this->get_meta_data($menu_item_db_id);
|
140 |
|
141 |
if (!empty($_POST['user-restriction-type-' . $menu_item_db_id])) {
|
142 |
$this->main->verify_nonce($menu_item_db_id);
|
143 |
+
|
144 |
$data->type = intval($_POST['user-restriction-type-' . $menu_item_db_id]);
|
145 |
+
|
146 |
$data = $this->update_nav_menu_item_sub($menu_id, $menu_item_db_id, $args, $data);
|
147 |
}
|
148 |
|
238 |
wp_enqueue_style('wpfront-user-role-editor-nav-menu-css', $this->main->pluginURL() . 'css/nav-menu.css', array(), WPFront_User_Role_Editor::VERSION);
|
239 |
}
|
240 |
|
241 |
+
public static function uninstall() {
|
242 |
+
delete_post_meta_by_key(self::$META_DATA_KEY);
|
243 |
+
}
|
244 |
+
|
245 |
}
|
246 |
|
247 |
}
|
classes/class-wpfront-user-role-editor-options.php
CHANGED
@@ -70,6 +70,8 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
|
|
70 |
$this->update_option_boolean('display_deprecated');
|
71 |
$this->update_option_boolean('remove_nonstandard_capabilities_restore');
|
72 |
$this->update_option_boolean('override_edit_permissions');
|
|
|
|
|
73 |
if ($this->multisite && wp_is_large_network()) {
|
74 |
$this->update_option_boolean('enable_large_network_functionalities');
|
75 |
}
|
@@ -182,6 +184,13 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
|
|
182 |
|
183 |
return $this->get_boolean_option('override_edit_permissions');
|
184 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
185 |
|
186 |
public function remove_data_on_uninstall() {
|
187 |
if ($this->multisite)
|
@@ -229,6 +238,10 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
|
|
229 |
public function ms_override_edit_permissions() {
|
230 |
return $this->get_boolean_option('override_edit_permissions', TRUE);
|
231 |
}
|
|
|
|
|
|
|
|
|
232 |
|
233 |
public function ms_remove_data_on_uninstall() {
|
234 |
return $this->get_boolean_option('remove_data_on_uninstall', TRUE);
|
@@ -271,6 +284,11 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
|
|
271 |
. $this->__('If enabled, ignores the check to the function get_editable_roles.')
|
272 |
. '</p>'
|
273 |
. '<p><strong>'
|
|
|
|
|
|
|
|
|
|
|
274 |
. $this->__('Remove Data on Uninstall')
|
275 |
. '</strong>: '
|
276 |
. $this->__('If enabled, removes all data related to this plugin from database (except roles data) including license information if any. This will not deactivate the license automatically.')
|
@@ -298,6 +316,11 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
|
|
298 |
. $this->__('If enabled, ignores the check to the function get_editable_roles.')
|
299 |
. '</p>'
|
300 |
. '<p><strong>'
|
|
|
|
|
|
|
|
|
|
|
301 |
. $this->__('Remove Data on Uninstall')
|
302 |
. '</strong>: '
|
303 |
. $this->__('If enabled, removes all data related to this plugin from database (except roles data) including license information if any. This will not deactivate the license automatically.')
|
70 |
$this->update_option_boolean('display_deprecated');
|
71 |
$this->update_option_boolean('remove_nonstandard_capabilities_restore');
|
72 |
$this->update_option_boolean('override_edit_permissions');
|
73 |
+
$this->update_option_boolean('disable_navigation_menu_permissions');
|
74 |
+
|
75 |
if ($this->multisite && wp_is_large_network()) {
|
76 |
$this->update_option_boolean('enable_large_network_functionalities');
|
77 |
}
|
184 |
|
185 |
return $this->get_boolean_option('override_edit_permissions');
|
186 |
}
|
187 |
+
|
188 |
+
public function disable_navigation_menu_permissions() {
|
189 |
+
if ($this->multisite)
|
190 |
+
return $this->ms_disable_navigation_menu_permissions();
|
191 |
+
|
192 |
+
return $this->get_boolean_option('disable_navigation_menu_permissions');
|
193 |
+
}
|
194 |
|
195 |
public function remove_data_on_uninstall() {
|
196 |
if ($this->multisite)
|
238 |
public function ms_override_edit_permissions() {
|
239 |
return $this->get_boolean_option('override_edit_permissions', TRUE);
|
240 |
}
|
241 |
+
|
242 |
+
public function ms_disable_navigation_menu_permissions() {
|
243 |
+
return $this->get_boolean_option('disable_navigation_menu_permissions', TRUE);
|
244 |
+
}
|
245 |
|
246 |
public function ms_remove_data_on_uninstall() {
|
247 |
return $this->get_boolean_option('remove_data_on_uninstall', TRUE);
|
284 |
. $this->__('If enabled, ignores the check to the function get_editable_roles.')
|
285 |
. '</p>'
|
286 |
. '<p><strong>'
|
287 |
+
. $this->__('Disable Navigation Menu Permissions')
|
288 |
+
. '</strong>: '
|
289 |
+
. $this->__('If enabled, disables navigation menu permissions functionality.')
|
290 |
+
. '</p>'
|
291 |
+
. '<p><strong>'
|
292 |
. $this->__('Remove Data on Uninstall')
|
293 |
. '</strong>: '
|
294 |
. $this->__('If enabled, removes all data related to this plugin from database (except roles data) including license information if any. This will not deactivate the license automatically.')
|
316 |
. $this->__('If enabled, ignores the check to the function get_editable_roles.')
|
317 |
. '</p>'
|
318 |
. '<p><strong>'
|
319 |
+
. $this->__('Disable Navigation Menu Permissions')
|
320 |
+
. '</strong>: '
|
321 |
+
. $this->__('If enabled, disables navigation menu permissions functionality.')
|
322 |
+
. '</p>'
|
323 |
+
. '<p><strong>'
|
324 |
. $this->__('Remove Data on Uninstall')
|
325 |
. '</strong>: '
|
326 |
. $this->__('If enabled, removes all data related to this plugin from database (except roles data) including license information if any. This will not deactivate the license automatically.')
|
classes/class-wpfront-user-role-editor.php
CHANGED
@@ -38,7 +38,7 @@ if (!class_exists('WPFront_User_Role_Editor')) {
|
|
38 |
class WPFront_User_Role_Editor extends WPFront_Base_URE {
|
39 |
|
40 |
//Constants
|
41 |
-
const VERSION = '2.5';
|
42 |
const OPTIONS_GROUP_NAME = 'wpfront-user-role-editor-options-group';
|
43 |
const OPTION_NAME = 'wpfront-user-role-editor-options';
|
44 |
const PLUGIN_SLUG = 'wpfront-user-role-editor';
|
@@ -185,8 +185,7 @@ if (!class_exists('WPFront_User_Role_Editor')) {
|
|
185 |
public function admin_init() {
|
186 |
register_setting(self::OPTIONS_GROUP_NAME, self::OPTION_NAME);
|
187 |
|
188 |
-
|
189 |
-
//$this->rename_role_capabilities();
|
190 |
}
|
191 |
|
192 |
protected function add_submenu_page($position, $title, $name, $capability, $slug, $func, $scripts = NULL, $styles = NULL, $controller = NULL) {
|
@@ -222,11 +221,15 @@ if (!class_exists('WPFront_User_Role_Editor')) {
|
|
222 |
$this->add_submenu_page(30, $this->__('Restore Role'), $this->__('Restore'), $this->get_capability_string('edit'), WPFront_User_Role_Editor_Restore::MENU_SLUG, array($this->objRestore, 'restore_role'), NULL, NULL, $this->objRestore);
|
223 |
$this->add_submenu_page(100, $this->__('Settings'), $this->__('Settings'), 'manage_options', WPFront_User_Role_Editor_Options::MENU_SLUG, array($this->options, 'settings'), NULL, NULL, $this->options);
|
224 |
}
|
225 |
-
|
226 |
-
if (!empty($this->admin_menu))
|
227 |
-
add_menu_page($this->__('Roles'), $this->__('Roles'), $this->get_capability_string('list'), $menu_slug, null, $this->pluginURL() . 'images/roles_menu.png', '69.999999');
|
228 |
-
|
229 |
ksort($this->admin_menu);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
foreach ($this->admin_menu as $key => $value) {
|
231 |
$page_hook_suffix = add_submenu_page($menu_slug, $value[0], $value[1], $value[2], $value[3], $value[4]);
|
232 |
add_action('admin_print_scripts-' . $page_hook_suffix, array($this, $value[5]));
|
@@ -511,6 +514,10 @@ if (!class_exists('WPFront_User_Role_Editor')) {
|
|
511 |
public function override_edit_permissions() {
|
512 |
return $this->options->override_edit_permissions();
|
513 |
}
|
|
|
|
|
|
|
|
|
514 |
|
515 |
public function customize_permission_custom_post_types() {
|
516 |
return $this->options->customize_permission_custom_post_types();
|
@@ -526,14 +533,16 @@ if (!class_exists('WPFront_User_Role_Editor')) {
|
|
526 |
|
527 |
private function rename_role_capabilities() {
|
528 |
global $wp_roles;
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
|
|
|
|
537 |
|
538 |
$role_admin = $wp_roles->role_objects['administrator'];
|
539 |
foreach (self::$ROLE_CAPS as $value) {
|
38 |
class WPFront_User_Role_Editor extends WPFront_Base_URE {
|
39 |
|
40 |
//Constants
|
41 |
+
const VERSION = '2.5.1';
|
42 |
const OPTIONS_GROUP_NAME = 'wpfront-user-role-editor-options-group';
|
43 |
const OPTION_NAME = 'wpfront-user-role-editor-options';
|
44 |
const PLUGIN_SLUG = 'wpfront-user-role-editor';
|
185 |
public function admin_init() {
|
186 |
register_setting(self::OPTIONS_GROUP_NAME, self::OPTION_NAME);
|
187 |
|
188 |
+
$this->rename_role_capabilities();
|
|
|
189 |
}
|
190 |
|
191 |
protected function add_submenu_page($position, $title, $name, $capability, $slug, $func, $scripts = NULL, $styles = NULL, $controller = NULL) {
|
221 |
$this->add_submenu_page(30, $this->__('Restore Role'), $this->__('Restore'), $this->get_capability_string('edit'), WPFront_User_Role_Editor_Restore::MENU_SLUG, array($this->objRestore, 'restore_role'), NULL, NULL, $this->objRestore);
|
222 |
$this->add_submenu_page(100, $this->__('Settings'), $this->__('Settings'), 'manage_options', WPFront_User_Role_Editor_Options::MENU_SLUG, array($this->options, 'settings'), NULL, NULL, $this->options);
|
223 |
}
|
224 |
+
|
|
|
|
|
|
|
225 |
ksort($this->admin_menu);
|
226 |
+
|
227 |
+
if (!empty($this->admin_menu)) {
|
228 |
+
$menu_capability = reset($this->admin_menu);
|
229 |
+
$menu_capability = $menu_capability[2];
|
230 |
+
add_menu_page($this->__('Roles'), $this->__('Roles'), $menu_capability, $menu_slug, null, $this->pluginURL() . 'images/roles_menu.png', '69.999999');
|
231 |
+
}
|
232 |
+
|
233 |
foreach ($this->admin_menu as $key => $value) {
|
234 |
$page_hook_suffix = add_submenu_page($menu_slug, $value[0], $value[1], $value[2], $value[3], $value[4]);
|
235 |
add_action('admin_print_scripts-' . $page_hook_suffix, array($this, $value[5]));
|
514 |
public function override_edit_permissions() {
|
515 |
return $this->options->override_edit_permissions();
|
516 |
}
|
517 |
+
|
518 |
+
public function disable_navigation_menu_permissions() {
|
519 |
+
return $this->options->disable_navigation_menu_permissions();
|
520 |
+
}
|
521 |
|
522 |
public function customize_permission_custom_post_types() {
|
523 |
return $this->options->customize_permission_custom_post_types();
|
533 |
|
534 |
private function rename_role_capabilities() {
|
535 |
global $wp_roles;
|
536 |
+
|
537 |
+
//removed in v2.5 but in wrong place.
|
538 |
+
// foreach ($wp_roles->role_objects as $key => $role) {
|
539 |
+
// foreach (self::$ROLE_CAPS as $value) {
|
540 |
+
// if ($role->has_cap('wpfront_' . $value)) {
|
541 |
+
// $role->add_cap($value);
|
542 |
+
// $role->remove_cap('wpfront_' . $value);
|
543 |
+
// }
|
544 |
+
// }
|
545 |
+
// }
|
546 |
|
547 |
$role_admin = $wp_roles->role_objects['administrator'];
|
548 |
foreach (self::$ROLE_CAPS as $value) {
|
languages/wpfront-user-role-editor.mo
CHANGED
Binary file
|
languages/wpfront-user-role-editor.po
CHANGED
@@ -1,126 +1,127 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WPFront Notification Bar\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WPFront <contact@wpfront.com>\n"
|
8 |
"Language: en\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 1.
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
20 |
-
#: ../templates/personal-pro/menu-editor.php:
|
21 |
msgid "Name"
|
22 |
msgstr "Name"
|
23 |
|
24 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
25 |
msgid "Version"
|
26 |
msgstr "Version"
|
27 |
|
28 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
29 |
msgid "Rating"
|
30 |
msgstr "Rating"
|
31 |
|
32 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
|
|
33 |
msgid "Description"
|
34 |
msgstr "Description"
|
35 |
|
36 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
37 |
#, php-format
|
38 |
msgid "based on %s rating(s)"
|
39 |
msgstr "based on %s rating(s)"
|
40 |
|
41 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
42 |
msgid "Unable to communicate with WordPress.org"
|
43 |
msgstr "Unable to communicate with WordPress.org"
|
44 |
|
45 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
46 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
47 |
msgid "WPFront Plugins"
|
48 |
msgstr "WPFront Plugins"
|
49 |
|
50 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
51 |
#, php-format
|
52 |
msgid "By %s"
|
53 |
msgstr "By %s"
|
54 |
|
55 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
56 |
#, php-format
|
57 |
msgid "More information about %s"
|
58 |
msgstr "More information about %s"
|
59 |
|
60 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
61 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:
|
62 |
msgid "Details"
|
63 |
msgstr "Details"
|
64 |
|
65 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
66 |
#, php-format
|
67 |
msgid "Install %s"
|
68 |
msgstr "Install %s"
|
69 |
|
70 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
71 |
msgid "Install Now"
|
72 |
msgstr "Install Now"
|
73 |
|
74 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
75 |
#, php-format
|
76 |
msgid "Update to version %s"
|
77 |
msgstr "Update to version %s"
|
78 |
|
79 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
80 |
msgid "Update Now"
|
81 |
msgstr "Update Now"
|
82 |
|
83 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
84 |
msgid "This plugin is already installed and is up to date"
|
85 |
msgstr "This plugin is already installed and is up to date"
|
86 |
|
87 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
88 |
msgid "Installed"
|
89 |
msgstr "Installed"
|
90 |
|
91 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
92 |
-
#: ../classes/base/class-wpfront-base.php:
|
93 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:
|
94 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
95 |
-
#: ../classes/class-wpfront-user-role-editor.php:
|
96 |
msgid "Settings"
|
97 |
msgstr "Settings"
|
98 |
|
99 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
100 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:
|
101 |
-
#: ../templates/go-pro.php:
|
102 |
msgid "Activate"
|
103 |
msgstr "Activate"
|
104 |
|
105 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
106 |
-
#: ../classes/class-wpfront-user-role-editor.php:
|
107 |
msgid "Feedback"
|
108 |
msgstr "Feedback"
|
109 |
|
110 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
111 |
msgid "WPFront"
|
112 |
msgstr "WPFront"
|
113 |
|
114 |
-
#: ../classes/base/class-wpfront-base-menu.php:
|
115 |
msgid "All Plugins"
|
116 |
msgstr "All Plugins"
|
117 |
|
118 |
-
#: ../classes/base/class-wpfront-base.php:
|
119 |
-
#: ../classes/class-wpfront-user-role-editor.php:
|
120 |
msgid "You do not have sufficient permissions to access this page."
|
121 |
msgstr "You do not have sufficient permissions to access this page."
|
122 |
|
123 |
-
#: ../classes/base/class-wpfront-base.php:
|
124 |
msgid ""
|
125 |
"If you have a caching plugin, clear the cache for the new settings to take "
|
126 |
"effect."
|
@@ -128,66 +129,66 @@ msgstr ""
|
|
128 |
"If you have a caching plugin, clear the cache for the new settings to take "
|
129 |
"effect."
|
130 |
|
131 |
-
#: ../classes/base/class-wpfront-base.php:
|
132 |
-
#: ../templates/personal-pro/menu-editor.php:
|
133 |
msgid "Save Changes"
|
134 |
msgstr "Save Changes"
|
135 |
|
136 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:
|
137 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:
|
138 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
139 |
-
#: ../classes/class-wpfront-user-role-editor.php:
|
140 |
-
#: ../classes/class-wpfront-user-role-editor.php:
|
141 |
-
#: ../templates/list-roles.php:
|
142 |
msgid "Roles"
|
143 |
msgstr "Roles"
|
144 |
|
145 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:
|
146 |
-
#: ../classes/class-wpfront-user-role-editor.php:
|
147 |
msgid "All Roles"
|
148 |
msgstr "All Roles"
|
149 |
|
150 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:
|
151 |
-
#: ../classes/class-wpfront-user-role-editor.php:
|
152 |
-
#: ../templates/add-edit-role.php:
|
153 |
msgid "Add New Role"
|
154 |
msgstr "Add New Role"
|
155 |
|
156 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:
|
157 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
158 |
-
#: ../classes/class-wpfront-user-role-editor.php:
|
159 |
-
#: ../templates/add-edit-role.php:
|
160 |
msgid "Add New"
|
161 |
msgstr "Add New"
|
162 |
|
163 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:
|
164 |
-
#: ../classes/class-wpfront-user-role-editor.php:
|
165 |
-
#: ../templates/restore-role.php:
|
166 |
msgid "Restore Role"
|
167 |
msgstr "Restore Role"
|
168 |
|
169 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:
|
170 |
-
#: ../classes/class-wpfront-user-role-editor.php:
|
171 |
-
#: ../templates/restore-role.php:
|
172 |
msgid "Restore"
|
173 |
msgstr "Restore"
|
174 |
|
175 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:
|
176 |
-
#: ../templates/business-pro/sync-roles.php:
|
177 |
-
#: ../templates/business-pro/sync-roles.php:
|
178 |
msgid "Sync Roles"
|
179 |
msgstr "Sync Roles"
|
180 |
|
181 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:
|
182 |
msgid "Sync"
|
183 |
msgstr "Sync"
|
184 |
|
185 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:
|
186 |
-
#: ../classes/class-wpfront-user-role-editor.php:
|
187 |
msgid "Go Pro"
|
188 |
msgstr "Go Pro"
|
189 |
|
190 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:
|
191 |
msgid ""
|
192 |
"You have a large network of sites (usually 10,000 or more sites). Roles "
|
193 |
"functionalities will be CPU and memory intensive on large networks. Use the "
|
@@ -197,34 +198,34 @@ msgstr ""
|
|
197 |
"functionalities will be CPU and memory intensive on large networks. Use the "
|
198 |
"settings screen to turn on these CPU and memory intensive functionalities."
|
199 |
|
200 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:
|
201 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
202 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
203 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
204 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:
|
205 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
206 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:
|
207 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
208 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
209 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
210 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
211 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
212 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
213 |
-
#: ../classes/class-wpfront-user-role-editor-restore.php:
|
214 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:
|
215 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:
|
216 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
217 |
msgid "Overview"
|
218 |
msgstr "Overview"
|
219 |
|
220 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:
|
221 |
msgid "This screen allows you to add a new role within your network."
|
222 |
msgstr "This screen allows you to add a new role within your network."
|
223 |
|
224 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:
|
225 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
226 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:
|
227 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
228 |
msgid ""
|
229 |
"You can copy capabilities from existing roles using the Copy from drop down "
|
230 |
"list. Select the role you want to copy from, then click Apply to copy the "
|
@@ -234,20 +235,20 @@ msgstr ""
|
|
234 |
"list. Select the role you want to copy from, then click Apply to copy the "
|
235 |
"capabilities. You can select or deselect capabilities even after you copy."
|
236 |
|
237 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:
|
238 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
239 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
240 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
241 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:
|
242 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
243 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
244 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
245 |
-
#: ../templates/add-edit-role.php:
|
246 |
msgid "Display Name"
|
247 |
msgstr "Display Name"
|
248 |
|
249 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:
|
250 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:
|
251 |
msgid ""
|
252 |
"Use the Display Name field to set the display name for the new role. "
|
253 |
"WordPress uses display name to display this role within your site. This "
|
@@ -257,20 +258,20 @@ msgstr ""
|
|
257 |
"WordPress uses display name to display this role within your site. This "
|
258 |
"field is required."
|
259 |
|
260 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:
|
261 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
262 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
263 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
264 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:
|
265 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
266 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
267 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
268 |
-
#: ../templates/add-edit-role.php:
|
269 |
msgid "Role Name"
|
270 |
msgstr "Role Name"
|
271 |
|
272 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:
|
273 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:
|
274 |
msgid ""
|
275 |
"Use the Role Name field to set the role name for the new role. WordPress "
|
276 |
"uses role name to identify this role within your site. Once set role name "
|
@@ -282,18 +283,18 @@ msgstr ""
|
|
282 |
"cannot be changed. This field is required. This plugin will auto populate "
|
283 |
"role name from the display name you have given, but you can change it."
|
284 |
|
285 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:
|
286 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
287 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:
|
288 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
289 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
290 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
291 |
-
#: ../templates/add-edit-role.php:
|
292 |
msgid "Capabilities"
|
293 |
msgstr "Capabilities"
|
294 |
|
295 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:
|
296 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:
|
297 |
msgid ""
|
298 |
"Capabilities are displayed as different groups for easy access. The Roles "
|
299 |
"section displays capabilities created by this plugin. The Other Capabilities "
|
@@ -307,21 +308,21 @@ msgstr ""
|
|
307 |
"usually created by plugins and themes. Use the check boxes to select the "
|
308 |
"capabilities required for this new role."
|
309 |
|
310 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:
|
311 |
msgid "Documentation on Multisite Add New Role"
|
312 |
msgstr "Documentation on Multisite Add New Role"
|
313 |
|
314 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
315 |
-
#: ../templates/list-roles.php:
|
316 |
msgid "Search Roles"
|
317 |
msgstr "Search Roles"
|
318 |
|
319 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
320 |
msgid "This screen allows you to edit a role within your network."
|
321 |
msgstr "This screen allows you to edit a role within your network."
|
322 |
|
323 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
324 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
325 |
msgid ""
|
326 |
"Use the Display Name field to edit display name of the role. WordPress uses "
|
327 |
"display name to display this role within your site. This field is required."
|
@@ -329,8 +330,8 @@ msgstr ""
|
|
329 |
"Use the Display Name field to edit display name of the role. WordPress uses "
|
330 |
"display name to display this role within your site. This field is required."
|
331 |
|
332 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
333 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
334 |
msgid ""
|
335 |
"Role Name is read only. WordPress uses role name to identify this role "
|
336 |
"within your site."
|
@@ -338,8 +339,8 @@ msgstr ""
|
|
338 |
"Role Name is read only. WordPress uses role name to identify this role "
|
339 |
"within your site."
|
340 |
|
341 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
342 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
343 |
msgid ""
|
344 |
"Capabilities are displayed as different groups for easy access. The Roles "
|
345 |
"section displays capabilities created by this plugin. The Other Capabilities "
|
@@ -353,12 +354,12 @@ msgstr ""
|
|
353 |
"usually created by plugins and themes. Use the check boxes to select the "
|
354 |
"capabilities required."
|
355 |
|
356 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
357 |
msgid "This screen allows you to delete roles from your network sites."
|
358 |
msgstr "This screen allows you to delete roles from your network sites."
|
359 |
|
360 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
361 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
362 |
msgid ""
|
363 |
"Use the Roles List screen to select the roles you want to delete. You can "
|
364 |
"delete individual roles using the Delete row action link or delete multiple "
|
@@ -368,14 +369,14 @@ msgstr ""
|
|
368 |
"delete individual roles using the Delete row action link or delete multiple "
|
369 |
"roles at the same time using the bulk action."
|
370 |
|
371 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
372 |
msgid ""
|
373 |
"This screen displays all the roles existing within your multisite network."
|
374 |
msgstr ""
|
375 |
"This screen displays all the roles existing within your multisite network."
|
376 |
|
377 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
378 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
379 |
msgid ""
|
380 |
"To add a new role, click the Add New button at the top of the screen or Add "
|
381 |
"New in the Roles menu section."
|
@@ -383,17 +384,17 @@ msgstr ""
|
|
383 |
"To add a new role, click the Add New button at the top of the screen or Add "
|
384 |
"New in the Roles menu section."
|
385 |
|
386 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
387 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
388 |
msgid "Columns"
|
389 |
msgstr "Columns"
|
390 |
|
391 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
392 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
393 |
msgid "Is used by WordPress to identify this role."
|
394 |
msgstr "Is used by WordPress to identify this role."
|
395 |
|
396 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
397 |
msgid ""
|
398 |
"WordPress uses display name to display this role within the site. You can "
|
399 |
"have different display names for the same role within the network."
|
@@ -401,21 +402,21 @@ msgstr ""
|
|
401 |
"WordPress uses display name to display this role within the site. You can "
|
402 |
"have different display names for the same role within the network."
|
403 |
|
404 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
405 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
406 |
msgid "Role Type"
|
407 |
msgstr "Role Type"
|
408 |
|
409 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
410 |
msgid "Displays whether that role is a built-in role or a custom role."
|
411 |
msgstr "Displays whether that role is a built-in role or a custom role."
|
412 |
|
413 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
414 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
415 |
msgid "Sites"
|
416 |
msgstr "Sites"
|
417 |
|
418 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
419 |
msgid ""
|
420 |
"Display the sites that role belongs to. [All Sites] mean, that role is part "
|
421 |
"of every site within the network. Else it will display the number of sites "
|
@@ -425,13 +426,13 @@ msgstr ""
|
|
425 |
"of every site within the network. Else it will display the number of sites "
|
426 |
"as a link. Clicking on the link will display the site list."
|
427 |
|
428 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
429 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
430 |
msgid "Actions"
|
431 |
msgstr "Actions"
|
432 |
|
433 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
434 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
435 |
msgid ""
|
436 |
"Hovering over a row in the roles list will display action links that allow "
|
437 |
"you to manage roles. You can perform the following actions:"
|
@@ -439,16 +440,16 @@ msgstr ""
|
|
439 |
"Hovering over a row in the roles list will display action links that allow "
|
440 |
"you to manage roles. You can perform the following actions:"
|
441 |
|
442 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
443 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
444 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
445 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
446 |
-
#: ../templates/list-roles.php:
|
447 |
msgid "View"
|
448 |
msgstr "View"
|
449 |
|
450 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
451 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
452 |
msgid ""
|
453 |
"Display details about the role. You can see the capabilities assigned for "
|
454 |
"that role. View link will only appear when you do not have permission to "
|
@@ -458,17 +459,17 @@ msgstr ""
|
|
458 |
"that role. View link will only appear when you do not have permission to "
|
459 |
"edit that role."
|
460 |
|
461 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
462 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
463 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
464 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
465 |
-
#: ../templates/list-roles.php:
|
466 |
-
#: ../templates/personal-pro/post-type-permissions.php:
|
467 |
msgid "Edit"
|
468 |
msgstr "Edit"
|
469 |
|
470 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
471 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
472 |
msgid ""
|
473 |
"Allows you to edit that role. You can see the capabilities assigned for that "
|
474 |
"role and also edit them. Edit link will only appear when you have permission "
|
@@ -478,55 +479,55 @@ msgstr ""
|
|
478 |
"role and also edit them. Edit link will only appear when you have permission "
|
479 |
"to edit that role."
|
480 |
|
481 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
482 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
483 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
484 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
485 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
486 |
-
#: ../templates/list-roles.php:
|
487 |
-
#: ../templates/personal-pro/post-type-permissions.php:
|
488 |
msgid "Delete"
|
489 |
msgstr "Delete"
|
490 |
|
491 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
492 |
msgid "Allows you to delete that role."
|
493 |
msgstr "Allows you to delete that role."
|
494 |
|
495 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
496 |
msgid "Documentation on Multisite Edit Role"
|
497 |
msgstr "Documentation on Multisite Edit Role"
|
498 |
|
499 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
500 |
msgid "Documentation on Multisite Delete Roles"
|
501 |
msgstr "Documentation on Multisite Delete Roles"
|
502 |
|
503 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:
|
504 |
msgid "Documentation on Multisite Roles"
|
505 |
msgstr "Documentation on Multisite Roles"
|
506 |
|
507 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:
|
508 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:
|
509 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:
|
510 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:
|
511 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:
|
512 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:
|
513 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:
|
514 |
-
#: ../classes/class-wpfront-user-role-editor-restore.php:
|
515 |
-
#: ../templates/add-edit-role.php:
|
516 |
-
#: ../templates/business-pro/sync-roles.php:
|
517 |
msgid "ERROR"
|
518 |
msgstr "ERROR"
|
519 |
|
520 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:
|
521 |
msgid "Permission denied."
|
522 |
msgstr "Permission denied."
|
523 |
|
524 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:
|
525 |
msgid "Partial Failure"
|
526 |
msgstr "Partial Failure"
|
527 |
|
528 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:
|
529 |
-
#: ../classes/class-wpfront-user-role-editor-restore.php:
|
530 |
msgid ""
|
531 |
"This screen allow you to restore WordPress built-in roles to its standard "
|
532 |
"capability settings."
|
@@ -534,71 +535,71 @@ msgstr ""
|
|
534 |
"This screen allow you to restore WordPress built-in roles to its standard "
|
535 |
"capability settings."
|
536 |
|
537 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:
|
538 |
-
#: ../classes/class-wpfront-user-role-editor-restore.php:
|
539 |
msgid "To restore a role, click the Restore button then Confirm."
|
540 |
msgstr "To restore a role, click the Restore button then Confirm."
|
541 |
|
542 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:
|
543 |
msgid "Documentation on Multisite Restore"
|
544 |
msgstr "Documentation on Multisite Restore"
|
545 |
|
546 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
547 |
msgid "No roles found."
|
548 |
msgstr "No roles found."
|
549 |
|
550 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
551 |
#, php-format
|
552 |
msgid "All <span class=\"count\">(%s)</span>"
|
553 |
msgstr "All <span class=\"count\">(%s)</span>"
|
554 |
|
555 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
556 |
#, php-format
|
557 |
msgid "Built-In <span class=\"count\">(%s)</span>"
|
558 |
msgstr "Built-In <span class=\"count\">(%s)</span>"
|
559 |
|
560 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
561 |
#, php-format
|
562 |
msgid "Custom <span class=\"count\">(%s)</span>"
|
563 |
msgstr "Custom <span class=\"count\">(%s)</span>"
|
564 |
|
565 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
566 |
-
#: ../templates/personal-pro/menu-editor.php:
|
567 |
-
#: ../templates/personal-pro/menu-editor.php:
|
568 |
#, php-format
|
569 |
msgid "Select %s"
|
570 |
msgstr "Select %s"
|
571 |
|
572 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
573 |
msgid "[All Sites]"
|
574 |
msgstr "[All Sites]"
|
575 |
|
576 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:
|
577 |
#, php-format
|
578 |
msgid "%d Site(s)"
|
579 |
msgstr "%d Site(s)"
|
580 |
|
581 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
582 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
583 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
584 |
msgid "Source site not selected."
|
585 |
msgstr "Source site not selected."
|
586 |
|
587 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
588 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
589 |
msgid "Destination type not selected."
|
590 |
msgstr "Destination type not selected."
|
591 |
|
592 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
593 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
594 |
msgid "Destination sites not selected."
|
595 |
msgstr "Destination sites not selected."
|
596 |
|
597 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
598 |
msgid "This screen allows you to sync the roles between the network."
|
599 |
msgstr "This screen allows you to sync the roles between the network."
|
600 |
|
601 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
602 |
msgid ""
|
603 |
"You will select a site as source, then sync the roles to selected sites or "
|
604 |
"entire sites within the network."
|
@@ -606,31 +607,31 @@ msgstr ""
|
|
606 |
"You will select a site as source, then sync the roles to selected sites or "
|
607 |
"entire sites within the network."
|
608 |
|
609 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
610 |
msgid "Step 1"
|
611 |
msgstr "Step 1"
|
612 |
|
613 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
614 |
msgid "Select source site."
|
615 |
msgstr "Select source site."
|
616 |
|
617 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
618 |
msgid "You will select the source site in this step."
|
619 |
msgstr "You will select the source site in this step."
|
620 |
|
621 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
622 |
msgid "Step 2"
|
623 |
msgstr "Step 2"
|
624 |
|
625 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
626 |
msgid "Select destination sites."
|
627 |
msgstr "Select destination sites."
|
628 |
|
629 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
630 |
msgid "You will select the destination sites in this step."
|
631 |
msgstr "You will select the destination sites in this step."
|
632 |
|
633 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
634 |
msgid ""
|
635 |
"Use \"All Sites\" to select all the sites within the network or you can "
|
636 |
"select individual sites using \"Selected Sites\"."
|
@@ -638,31 +639,31 @@ msgstr ""
|
|
638 |
"Use \"All Sites\" to select all the sites within the network or you can "
|
639 |
"select individual sites using \"Selected Sites\"."
|
640 |
|
641 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
642 |
msgid "Step 3"
|
643 |
msgstr "Step 3"
|
644 |
|
645 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
646 |
msgid "Choose settings."
|
647 |
msgstr "Choose settings."
|
648 |
|
649 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
650 |
-
#: ../templates/business-pro/sync-roles.php:
|
651 |
msgid "Add roles existing only in source"
|
652 |
msgstr "Add roles existing only in source"
|
653 |
|
654 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
655 |
msgid ""
|
656 |
"Roles existing in source and do not existing in destination will be created."
|
657 |
msgstr ""
|
658 |
"Roles existing in source and do not existing in destination will be created."
|
659 |
|
660 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
661 |
-
#: ../templates/business-pro/sync-roles.php:
|
662 |
msgid "Overwrite existing roles"
|
663 |
msgstr "Overwrite existing roles"
|
664 |
|
665 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
666 |
msgid ""
|
667 |
"If the role from source already exists in destination, it will be "
|
668 |
"overwritten."
|
@@ -670,12 +671,12 @@ msgstr ""
|
|
670 |
"If the role from source already exists in destination, it will be "
|
671 |
"overwritten."
|
672 |
|
673 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
674 |
-
#: ../templates/business-pro/sync-roles.php:
|
675 |
msgid "Remove roles existing only in destination"
|
676 |
msgstr "Remove roles existing only in destination"
|
677 |
|
678 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
679 |
msgid ""
|
680 |
"If a role do not exist in source, but exists in destination it will be "
|
681 |
"removed."
|
@@ -683,87 +684,100 @@ msgstr ""
|
|
683 |
"If a role do not exist in source, but exists in destination it will be "
|
684 |
"removed."
|
685 |
|
686 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
687 |
-
#: ../templates/business-pro/sync-roles.php:
|
688 |
msgid "Update new user default role"
|
689 |
msgstr "Update new user default role"
|
690 |
|
691 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
692 |
msgid ""
|
693 |
"The destination new user default role will be updated as same as source."
|
694 |
msgstr ""
|
695 |
"The destination new user default role will be updated as same as source."
|
696 |
|
697 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
698 |
msgid "Step 4"
|
699 |
msgstr "Step 4"
|
700 |
|
701 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
702 |
msgid "Confirm and Sync"
|
703 |
msgstr "Confirm and Sync"
|
704 |
|
705 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
706 |
msgid "You can verify your settings and start syncing."
|
707 |
msgstr "You can verify your settings and start syncing."
|
708 |
|
709 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
710 |
msgid "Click Sync Roles to start syncing."
|
711 |
msgstr "Click Sync Roles to start syncing."
|
712 |
|
713 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:
|
714 |
msgid "Documentation on Multisite Sync"
|
715 |
msgstr "Documentation on Multisite Sync"
|
716 |
|
717 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:
|
718 |
msgid "This screen allows you to add a new role within your site."
|
719 |
msgstr "This screen allows you to add a new role within your site."
|
720 |
|
721 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:
|
722 |
msgid "Documentation on Add New Role"
|
723 |
msgstr "Documentation on Add New Role"
|
724 |
|
725 |
-
#: ../classes/class-wpfront-user-role-editor-
|
726 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
727 |
msgid "Secondary Roles"
|
728 |
msgstr "Secondary Roles"
|
729 |
|
730 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
731 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
732 |
-
#: ../templates/assign-roles.php:
|
733 |
msgid "Assign Roles"
|
734 |
msgstr "Assign Roles"
|
735 |
|
736 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
737 |
msgid "No role for this site"
|
738 |
msgstr "No role for this site"
|
739 |
|
740 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
741 |
msgid "Invalid user."
|
742 |
msgstr "Invalid user."
|
743 |
|
744 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
745 |
msgid "Roles updated successfully."
|
746 |
msgstr "Roles updated successfully."
|
747 |
|
748 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
749 |
msgid "Invalid primary role specified."
|
750 |
msgstr "Invalid primary role specified."
|
751 |
|
752 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
753 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
754 |
msgid "Invalid primary role."
|
755 |
msgstr "Invalid primary role."
|
756 |
|
757 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
758 |
#, php-format
|
759 |
msgid "%d user(s) migrated."
|
760 |
msgstr "%d user(s) migrated."
|
761 |
|
762 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
763 |
msgid "Primary Role"
|
764 |
msgstr "Primary Role"
|
765 |
|
766 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
767 |
msgid ""
|
768 |
"This screen allows you to assign multiple roles to a user and also allows "
|
769 |
"you to migrate users from a role to another role."
|
@@ -771,7 +785,7 @@ msgstr ""
|
|
771 |
"This screen allows you to assign multiple roles to a user and also allows "
|
772 |
"you to migrate users from a role to another role."
|
773 |
|
774 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
775 |
msgid ""
|
776 |
"To assign multiple roles to a user, select that user within the User drop "
|
777 |
"down list and select the primary role you want for that user using the "
|
@@ -783,12 +797,12 @@ msgstr ""
|
|
783 |
"Primary Role drop down list. Select the secondary roles using the check "
|
784 |
"boxes below, then click Assign Roles."
|
785 |
|
786 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
787 |
-
#: ../templates/assign-roles.php:
|
788 |
msgid "Migrate Users"
|
789 |
msgstr "Migrate Users"
|
790 |
|
791 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
792 |
msgid ""
|
793 |
"To migrate users from one role to another role or to add secondary roles to "
|
794 |
"users belonging to a particular primary role, use the migrate users "
|
@@ -798,7 +812,7 @@ msgstr ""
|
|
798 |
"users belonging to a particular primary role, use the migrate users "
|
799 |
"functionality."
|
800 |
|
801 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
802 |
msgid ""
|
803 |
"Select the users using the From Primary Role drop down, to primary role "
|
804 |
"using the Primary Role drop down and secondary roles using the check boxes "
|
@@ -808,117 +822,117 @@ msgstr ""
|
|
808 |
"using the Primary Role drop down and secondary roles using the check boxes "
|
809 |
"then click Migrate Users."
|
810 |
|
811 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:
|
812 |
msgid "Documentation on Assign / Migrate Users"
|
813 |
msgstr "Documentation on Assign / Migrate Users"
|
814 |
|
815 |
-
#: ../classes/class-wpfront-user-role-editor-controller-base.php:
|
816 |
msgid "Links:"
|
817 |
msgstr "Links:"
|
818 |
|
819 |
-
#: ../classes/class-wpfront-user-role-editor-controller-base.php:
|
820 |
msgid "FAQ"
|
821 |
msgstr "FAQ"
|
822 |
|
823 |
-
#: ../classes/class-wpfront-user-role-editor-controller-base.php:
|
824 |
msgid "Support"
|
825 |
msgstr "Support"
|
826 |
|
827 |
-
#: ../classes/class-wpfront-user-role-editor-controller-base.php:
|
828 |
msgid "Review"
|
829 |
msgstr "Review"
|
830 |
|
831 |
-
#: ../classes/class-wpfront-user-role-editor-controller-base.php:
|
832 |
msgid "Contact"
|
833 |
msgstr "Contact"
|
834 |
|
835 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:
|
836 |
msgid "License key activation limit reached"
|
837 |
msgstr "License key activation limit reached"
|
838 |
|
839 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:
|
840 |
msgid "Invalid license key"
|
841 |
msgstr "Invalid license key"
|
842 |
|
843 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:
|
844 |
msgid "Unable to deactivate, expired license?"
|
845 |
msgstr "Unable to deactivate, expired license?"
|
846 |
|
847 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:
|
848 |
msgid "Unable to contact wpfront.com"
|
849 |
msgstr "Unable to contact wpfront.com"
|
850 |
|
851 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:
|
852 |
msgid "Unable to parse response"
|
853 |
msgstr "Unable to parse response"
|
854 |
|
855 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
856 |
-
#: ../templates/add-edit-role.php:
|
857 |
-
#: ../templates/personal-pro/menu-editor.php:
|
858 |
msgid "Select All"
|
859 |
msgstr "Select All"
|
860 |
|
861 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
862 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
863 |
msgid "Type"
|
864 |
msgstr "Type"
|
865 |
|
866 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
867 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
868 |
msgid "User Default"
|
869 |
msgstr "User Default"
|
870 |
|
871 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
872 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
873 |
msgid "Users"
|
874 |
msgstr "Users"
|
875 |
|
876 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
877 |
msgid "Bulk Actions"
|
878 |
msgstr "Bulk Actions"
|
879 |
|
880 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
881 |
-
#: ../templates/add-edit-role.php:
|
882 |
-
#: ../templates/personal-pro/menu-editor.php:
|
883 |
msgid "Apply"
|
884 |
msgstr "Apply"
|
885 |
|
886 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
887 |
#, php-format
|
888 |
msgid "%s item(s)"
|
889 |
msgstr "%s item(s)"
|
890 |
|
891 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
892 |
msgid "All"
|
893 |
msgstr "All"
|
894 |
|
895 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
896 |
msgid "Having Users"
|
897 |
msgstr "Having Users"
|
898 |
|
899 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
900 |
msgid "No Users"
|
901 |
msgstr "No Users"
|
902 |
|
903 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
904 |
-
#: ../templates/list-roles.php:
|
905 |
msgid "Built-In"
|
906 |
msgstr "Built-In"
|
907 |
|
908 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
909 |
-
#: ../templates/list-roles.php:
|
910 |
msgid "Custom"
|
911 |
msgstr "Custom"
|
912 |
|
913 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
914 |
msgid "This screen allows you to edit a role within your site."
|
915 |
msgstr "This screen allows you to edit a role within your site."
|
916 |
|
917 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
918 |
msgid "This screen allows you to delete roles from your WordPress site."
|
919 |
msgstr "This screen allows you to delete roles from your WordPress site."
|
920 |
|
921 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
922 |
msgid ""
|
923 |
"You cannot delete administrator role, current user’s role and roles you do "
|
924 |
"not have permission to."
|
@@ -926,15 +940,15 @@ msgstr ""
|
|
926 |
"You cannot delete administrator role, current user’s role and roles you do "
|
927 |
"not have permission to."
|
928 |
|
929 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
930 |
msgid "This screen lists all the existing roles within your site."
|
931 |
msgstr "This screen lists all the existing roles within your site."
|
932 |
|
933 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
934 |
msgid "Used to display this role within this site."
|
935 |
msgstr "Used to display this role within this site."
|
936 |
|
937 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
938 |
msgid ""
|
939 |
"Says whether the role is a WordPress built-in role or not. There are five "
|
940 |
"built-in roles."
|
@@ -942,23 +956,23 @@ msgstr ""
|
|
942 |
"Says whether the role is a WordPress built-in role or not. There are five "
|
943 |
"built-in roles."
|
944 |
|
945 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
946 |
msgid "Displays whether a role is the default role of a new user."
|
947 |
msgstr "Displays whether a role is the default role of a new user."
|
948 |
|
949 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
950 |
msgid "Number of users in that role."
|
951 |
msgstr "Number of users in that role."
|
952 |
|
953 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
954 |
msgid "Number of capabilities that role have."
|
955 |
msgstr "Number of capabilities that role have."
|
956 |
|
957 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
958 |
msgid "Menu Edited"
|
959 |
msgstr "Menu Edited"
|
960 |
|
961 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
962 |
msgid ""
|
963 |
"Displays whether the menu has been edited for this role. This is a pro "
|
964 |
"feature."
|
@@ -966,7 +980,7 @@ msgstr ""
|
|
966 |
"Displays whether the menu has been edited for this role. This is a pro "
|
967 |
"feature."
|
968 |
|
969 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
970 |
msgid ""
|
971 |
"Allows you to delete that role. Delete action will not appear if you do not "
|
972 |
"have permission to delete that role."
|
@@ -974,23 +988,23 @@ msgstr ""
|
|
974 |
"Allows you to delete that role. Delete action will not appear if you do not "
|
975 |
"have permission to delete that role."
|
976 |
|
977 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
978 |
-
#: ../templates/list-roles.php:
|
979 |
msgid "Default"
|
980 |
msgstr "Default"
|
981 |
|
982 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
983 |
msgid ""
|
984 |
"Allows you to set that role as the default role for new user registration."
|
985 |
msgstr ""
|
986 |
"Allows you to set that role as the default role for new user registration."
|
987 |
|
988 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
989 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
990 |
msgid "Edit Menu"
|
991 |
msgstr "Edit Menu"
|
992 |
|
993 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
994 |
msgid ""
|
995 |
"Takes you to the menu editor screen for that role. You need \"edit_role_menus"
|
996 |
"\" capability for this link to appear. This is a pro feature."
|
@@ -998,19 +1012,128 @@ msgstr ""
|
|
998 |
"Takes you to the menu editor screen for that role. You need \"edit_role_menus"
|
999 |
"\" capability for this link to appear. This is a pro feature."
|
1000 |
|
1001 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
1002 |
msgid "Documentation on Edit Role"
|
1003 |
msgstr "Documentation on Edit Role"
|
1004 |
|
1005 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
1006 |
msgid "Documentation on Delete Roles"
|
1007 |
msgstr "Documentation on Delete Roles"
|
1008 |
|
1009 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:
|
1010 |
msgid "Documentation on Roles"
|
1011 |
msgstr "Documentation on Roles"
|
1012 |
|
1013 |
-
#: ../classes/class-wpfront-user-role-editor-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1014 |
msgid ""
|
1015 |
"These settings are applicable for the network admin dashboard. Also these "
|
1016 |
"settings will propagate to the individual sites unless its overridden within "
|
@@ -1020,27 +1143,27 @@ msgstr ""
|
|
1020 |
"settings will propagate to the individual sites unless its overridden within "
|
1021 |
"that site’s settings."
|
1022 |
|
1023 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1024 |
-
#: ../templates/options-template.php:
|
1025 |
msgid "Enable Large Network Functionalities"
|
1026 |
msgstr "Enable Large Network Functionalities"
|
1027 |
|
1028 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1029 |
msgid "This setting is only visible when you have a large network."
|
1030 |
msgstr "This setting is only visible when you have a large network."
|
1031 |
|
1032 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1033 |
msgid "More details"
|
1034 |
msgstr "More details"
|
1035 |
|
1036 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1037 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1038 |
-
#: ../templates/options-template.php:
|
1039 |
msgid "Display Deprecated Capabilities"
|
1040 |
msgstr "Display Deprecated Capabilities"
|
1041 |
|
1042 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1043 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1044 |
msgid ""
|
1045 |
"If enabled, deprecated capabilities will be displayed within the add/edit "
|
1046 |
"screens."
|
@@ -1048,14 +1171,14 @@ msgstr ""
|
|
1048 |
"If enabled, deprecated capabilities will be displayed within the add/edit "
|
1049 |
"screens."
|
1050 |
|
1051 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1052 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1053 |
-
#: ../templates/options-template.php:
|
1054 |
msgid "Remove Non-Standard Capabilities on Restore"
|
1055 |
msgstr "Remove Non-Standard Capabilities on Restore"
|
1056 |
|
1057 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1058 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1059 |
msgid ""
|
1060 |
"If enabled, while restoring WordPress built-in capabilities non-standard "
|
1061 |
"capabilities will be removed."
|
@@ -1063,25 +1186,25 @@ msgstr ""
|
|
1063 |
"If enabled, while restoring WordPress built-in capabilities non-standard "
|
1064 |
"capabilities will be removed."
|
1065 |
|
1066 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1067 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1068 |
-
#: ../templates/options-template.php:
|
1069 |
msgid "Override Edit Permissions"
|
1070 |
msgstr "Override Edit Permissions"
|
1071 |
|
1072 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1073 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1074 |
msgid "If enabled, ignores the check to the function get_editable_roles."
|
1075 |
msgstr "If enabled, ignores the check to the function get_editable_roles."
|
1076 |
|
1077 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1078 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1079 |
-
#: ../templates/options-template.php:
|
1080 |
msgid "Remove Data on Uninstall"
|
1081 |
msgstr "Remove Data on Uninstall"
|
1082 |
|
1083 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1084 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1085 |
msgid ""
|
1086 |
"If enabled, removes all data related to this plugin from database (except "
|
1087 |
"roles data) including license information if any. This will not deactivate "
|
@@ -1091,31 +1214,64 @@ msgstr ""
|
|
1091 |
"roles data) including license information if any. This will not deactivate "
|
1092 |
"the license automatically."
|
1093 |
|
1094 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1095 |
msgid "Documentation on Multisite Settings"
|
1096 |
msgstr "Documentation on Multisite Settings"
|
1097 |
|
1098 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:
|
1099 |
msgid "Documentation on Settings"
|
1100 |
msgstr "Documentation on Settings"
|
1101 |
|
1102 |
-
#: ../classes/class-wpfront-user-role-editor-restore.php:
|
1103 |
msgid "Documentation on Restore"
|
1104 |
msgstr "Documentation on Restore"
|
1105 |
|
1106 |
-
#: ../classes/class-wpfront-user-role-editor.php:
|
1107 |
msgid "Assign Roles | Migrate Users"
|
1108 |
msgstr "Assign Roles | Migrate Users"
|
1109 |
|
1110 |
-
#: ../classes/class-wpfront-user-role-editor.php:
|
1111 |
msgid "Assign / Migrate"
|
1112 |
msgstr "Assign / Migrate"
|
1113 |
|
1114 |
-
#: ../classes/class-wpfront-user-role-editor.php:
|
1115 |
msgid "Buy me a Beer"
|
1116 |
msgstr "Buy me a Beer"
|
1117 |
|
1118 |
-
#: ../classes/personal-pro/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1119 |
msgid ""
|
1120 |
"This screen allows you to export the roles existing within your site and "
|
1121 |
"import into the same site or a different site."
|
@@ -1123,24 +1279,24 @@ msgstr ""
|
|
1123 |
"This screen allows you to export the roles existing within your site and "
|
1124 |
"import into the same site or a different site."
|
1125 |
|
1126 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:
|
1127 |
msgid "Select the roles to export, then click Download Export File."
|
1128 |
msgstr "Select the roles to export, then click Download Export File."
|
1129 |
|
1130 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:
|
1131 |
msgid "Documentation on Export"
|
1132 |
msgstr "Documentation on Export"
|
1133 |
|
1134 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:
|
1135 |
msgid "This functionality requires SimpleXML extension, which is not loaded."
|
1136 |
msgstr "This functionality requires SimpleXML extension, which is not loaded."
|
1137 |
|
1138 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:
|
1139 |
#, php-format
|
1140 |
msgid "%d role(s) imported."
|
1141 |
msgstr "%d role(s) imported."
|
1142 |
|
1143 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:
|
1144 |
#, php-format
|
1145 |
msgid ""
|
1146 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
@@ -1149,12 +1305,12 @@ msgstr ""
|
|
1149 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
1150 |
"this was caused by a permissions problem."
|
1151 |
|
1152 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:
|
1153 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:
|
1154 |
msgid "There was an error when reading this export file"
|
1155 |
msgstr "There was an error when reading this export file"
|
1156 |
|
1157 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:
|
1158 |
#, php-format
|
1159 |
msgid ""
|
1160 |
"Please update the plugin to latest version. This export file requires plugin "
|
@@ -1163,11 +1319,11 @@ msgstr ""
|
|
1163 |
"Please update the plugin to latest version. This export file requires plugin "
|
1164 |
"version %s or higher."
|
1165 |
|
1166 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:
|
1167 |
msgid "This file does not appears to be a valid export file."
|
1168 |
msgstr "This file does not appears to be a valid export file."
|
1169 |
|
1170 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:
|
1171 |
msgid ""
|
1172 |
"Step 1: Select export file using the Browse button. Then click Upload file "
|
1173 |
"and Import."
|
@@ -1175,7 +1331,7 @@ msgstr ""
|
|
1175 |
"Step 1: Select export file using the Browse button. Then click Upload file "
|
1176 |
"and Import."
|
1177 |
|
1178 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:
|
1179 |
msgid ""
|
1180 |
"Step 2: Select the roles you want to import using the check boxes and click "
|
1181 |
"Import Roles."
|
@@ -1183,23 +1339,23 @@ msgstr ""
|
|
1183 |
"Step 2: Select the roles you want to import using the check boxes and click "
|
1184 |
"Import Roles."
|
1185 |
|
1186 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:
|
1187 |
msgid "Documentation on Import"
|
1188 |
msgstr "Documentation on Import"
|
1189 |
|
1190 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1191 |
msgid "Menu changes saved."
|
1192 |
msgstr "Menu changes saved."
|
1193 |
|
1194 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1195 |
msgid "Menu defaults restored."
|
1196 |
msgstr "Menu defaults restored."
|
1197 |
|
1198 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1199 |
msgid "No editable roles found on this site."
|
1200 |
msgstr "No editable roles found on this site."
|
1201 |
|
1202 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1203 |
msgid ""
|
1204 |
"This screen allows you to enable and disable admin menus for a particular "
|
1205 |
"role."
|
@@ -1207,11 +1363,11 @@ msgstr ""
|
|
1207 |
"This screen allows you to enable and disable admin menus for a particular "
|
1208 |
"role."
|
1209 |
|
1210 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1211 |
msgid "Deselect a menu from the grid to remove that menu."
|
1212 |
msgstr "Deselect a menu from the grid to remove that menu."
|
1213 |
|
1214 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1215 |
msgid ""
|
1216 |
"Disabled menu items are already hidden, because the selected role doesn't "
|
1217 |
"have the capability to display that menu. Grid displays menus which the "
|
@@ -1221,25 +1377,25 @@ msgstr ""
|
|
1221 |
"have the capability to display that menu. Grid displays menus which the "
|
1222 |
"current user has access to."
|
1223 |
|
1224 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1225 |
msgid "Fields"
|
1226 |
msgstr "Fields"
|
1227 |
|
1228 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1229 |
-
#: ../templates/personal-pro/menu-editor.php:
|
1230 |
msgid "Override Role"
|
1231 |
msgstr "Override Role"
|
1232 |
|
1233 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1234 |
msgid "The role you want to override."
|
1235 |
msgstr "The role you want to override."
|
1236 |
|
1237 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1238 |
-
#: ../templates/personal-pro/menu-editor.php:
|
1239 |
msgid "Override Type"
|
1240 |
msgstr "Override Type"
|
1241 |
|
1242 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1243 |
msgid ""
|
1244 |
"Soft - Pages may be available through directly typing the URL. Hard - Even "
|
1245 |
"URLs will be blocked."
|
@@ -1247,257 +1403,283 @@ msgstr ""
|
|
1247 |
"Soft - Pages may be available through directly typing the URL. Hard - Even "
|
1248 |
"URLs will be blocked."
|
1249 |
|
1250 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1251 |
-
#: ../templates/personal-pro/menu-editor.php:
|
1252 |
msgid "Hide New Menus"
|
1253 |
msgstr "Hide New Menus"
|
1254 |
|
1255 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1256 |
msgid "Allow you to hide future menus."
|
1257 |
msgstr "Allow you to hide future menus."
|
1258 |
|
1259 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1260 |
-
#: ../templates/personal-pro/menu-editor.php:
|
1261 |
msgid "Disable For Secondary Role"
|
1262 |
msgstr "Disable For Secondary Role"
|
1263 |
|
1264 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1265 |
msgid "Disables menu settings while the selected role is a secondary role."
|
1266 |
msgstr "Disables menu settings while the selected role is a secondary role."
|
1267 |
|
1268 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1269 |
msgid "Restore Default"
|
1270 |
msgstr "Restore Default"
|
1271 |
|
1272 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1273 |
msgid ""
|
1274 |
"Select \"Restore default\" from the \"Copy from\" drop down and click apply."
|
1275 |
msgstr ""
|
1276 |
"Select \"Restore default\" from the \"Copy from\" drop down and click apply."
|
1277 |
|
1278 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:
|
1279 |
msgid "Documentation on Menu Editor"
|
1280 |
msgstr "Documentation on Menu Editor"
|
1281 |
|
1282 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-
|
1283 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
1284 |
msgid "Menu Editor"
|
1285 |
msgstr "Menu Editor"
|
1286 |
|
1287 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:
|
1288 |
-
#: ../templates/personal-pro/export-roles.php:
|
1289 |
msgid "Export Roles"
|
1290 |
msgstr "Export Roles"
|
1291 |
|
1292 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:
|
1293 |
msgid "Export"
|
1294 |
msgstr "Export"
|
1295 |
|
1296 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:
|
1297 |
-
#: ../templates/personal-pro/import-roles.php:
|
1298 |
-
#: ../templates/personal-pro/import-roles.php:
|
1299 |
msgid "Import Roles"
|
1300 |
msgstr "Import Roles"
|
1301 |
|
1302 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:
|
1303 |
msgid "Import"
|
1304 |
msgstr "Import"
|
1305 |
|
1306 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:
|
1307 |
#, php-format
|
1308 |
msgid "%s license not activated."
|
1309 |
msgstr "%s license not activated."
|
1310 |
|
1311 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:
|
1312 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:
|
1313 |
msgid "Role Permissions"
|
1314 |
msgstr "Role Permissions"
|
1315 |
|
1316 |
-
#: ../templates/add-edit-role.php:
|
1317 |
msgid "Edit Role"
|
1318 |
msgstr "Edit Role"
|
1319 |
|
1320 |
-
#: ../templates/add-edit-role.php:
|
1321 |
msgid "This role already exists in this site."
|
1322 |
msgstr "This role already exists in this site."
|
1323 |
|
1324 |
-
#: ../templates/add-edit-role.php:
|
1325 |
msgid "There was an unexpected error while performing this action."
|
1326 |
msgstr "There was an unexpected error while performing this action."
|
1327 |
|
1328 |
-
#: ../templates/add-edit-role.php:
|
1329 |
msgid "Create a brand new role and add it to this site."
|
1330 |
msgstr "Create a brand new role and add it to this site."
|
1331 |
|
1332 |
-
#: ../templates/add-edit-role.php:
|
1333 |
msgid "required"
|
1334 |
msgstr "required"
|
1335 |
|
1336 |
-
#: ../templates/add-edit-role.php:
|
1337 |
-
#: ../templates/personal-pro/menu-editor.php:
|
1338 |
msgid "Copy from"
|
1339 |
msgstr "Copy from"
|
1340 |
|
1341 |
-
#: ../templates/add-edit-role.php:
|
1342 |
msgid "Select None"
|
1343 |
msgstr "Select None"
|
1344 |
|
1345 |
-
#: ../templates/add-edit-role.php:
|
1346 |
msgid "Update Role"
|
1347 |
msgstr "Update Role"
|
1348 |
|
1349 |
-
#: ../templates/assign-roles.php:
|
1350 |
msgid "User"
|
1351 |
msgstr "User"
|
1352 |
|
1353 |
-
#: ../templates/assign-roles.php:
|
1354 |
msgid "From Primary Role"
|
1355 |
msgstr "From Primary Role"
|
1356 |
|
1357 |
-
#: ../templates/business-pro/sync-roles.php:
|
1358 |
msgid "Step 1: Select the source site"
|
1359 |
msgstr "Step 1: Select the source site"
|
1360 |
|
1361 |
-
#: ../templates/business-pro/sync-roles.php:
|
1362 |
-
#: ../templates/business-pro/sync-roles.php:
|
1363 |
msgid "Search Sites"
|
1364 |
msgstr "Search Sites"
|
1365 |
|
1366 |
-
#: ../templates/business-pro/sync-roles.php:
|
1367 |
-
#: ../templates/business-pro/sync-roles.php:
|
1368 |
-
#: ../templates/business-pro/sync-roles.php:
|
1369 |
msgid "Next Step"
|
1370 |
msgstr "Next Step"
|
1371 |
|
1372 |
-
#: ../templates/business-pro/sync-roles.php:
|
1373 |
msgid "Step 2: Select destination sites"
|
1374 |
msgstr "Step 2: Select destination sites"
|
1375 |
|
1376 |
-
#: ../templates/business-pro/sync-roles.php:
|
1377 |
-
#: ../templates/business-pro/sync-roles.php:
|
1378 |
msgid "All Sites"
|
1379 |
msgstr "All Sites"
|
1380 |
|
1381 |
-
#: ../templates/business-pro/sync-roles.php:
|
1382 |
msgid "Selected Sites"
|
1383 |
msgstr "Selected Sites"
|
1384 |
|
1385 |
-
#: ../templates/business-pro/sync-roles.php:
|
1386 |
msgid "Step 3: Choose settings"
|
1387 |
msgstr "Step 3: Choose settings"
|
1388 |
|
1389 |
-
#: ../templates/business-pro/sync-roles.php:
|
1390 |
msgid "Step 4: Confirm and Sync"
|
1391 |
msgstr "Step 4: Confirm and Sync"
|
1392 |
|
1393 |
-
#: ../templates/business-pro/sync-roles.php:
|
1394 |
msgid "Source: "
|
1395 |
msgstr "Source: "
|
1396 |
|
1397 |
-
#: ../templates/business-pro/sync-roles.php:
|
1398 |
msgid "Destination: "
|
1399 |
msgstr "Destination: "
|
1400 |
|
1401 |
-
#: ../templates/business-pro/sync-roles.php:
|
1402 |
msgid "Selected sites"
|
1403 |
msgstr "Selected sites"
|
1404 |
|
1405 |
-
#: ../templates/business-pro/sync-roles.php:
|
1406 |
#, php-format
|
1407 |
msgid "%s site(s) selected"
|
1408 |
msgstr "%s site(s) selected"
|
1409 |
|
1410 |
-
#: ../templates/business-pro/sync-roles.php:
|
1411 |
msgid "Add roles existing only in source: "
|
1412 |
msgstr "Add roles existing only in source: "
|
1413 |
|
1414 |
-
#: ../templates/business-pro/sync-roles.php:
|
1415 |
-
#: ../templates/business-pro/sync-roles.php:
|
1416 |
-
#: ../templates/business-pro/sync-roles.php:
|
1417 |
-
#: ../templates/business-pro/sync-roles.php:
|
1418 |
msgid "Yes"
|
1419 |
msgstr "Yes"
|
1420 |
|
1421 |
-
#: ../templates/business-pro/sync-roles.php:
|
1422 |
-
#: ../templates/business-pro/sync-roles.php:
|
1423 |
-
#: ../templates/business-pro/sync-roles.php:
|
1424 |
-
#: ../templates/business-pro/sync-roles.php:
|
1425 |
msgid "No"
|
1426 |
msgstr "No"
|
1427 |
|
1428 |
-
#: ../templates/business-pro/sync-roles.php:
|
1429 |
msgid "Overwrite existing roles: "
|
1430 |
msgstr "Overwrite existing roles: "
|
1431 |
|
1432 |
-
#: ../templates/business-pro/sync-roles.php:
|
1433 |
msgid "Remove roles existing only in destination: "
|
1434 |
msgstr "Remove roles existing only in destination: "
|
1435 |
|
1436 |
-
#: ../templates/business-pro/sync-roles.php:
|
1437 |
msgid "Update new user default role: "
|
1438 |
msgstr "Update new user default role: "
|
1439 |
|
1440 |
-
#: ../templates/business-pro/sync-roles.php:
|
1441 |
msgid "SUCCESS"
|
1442 |
msgstr "SUCCESS"
|
1443 |
|
1444 |
-
#: ../templates/business-pro/sync-roles.php:
|
1445 |
msgid "FAIL"
|
1446 |
msgstr "FAIL"
|
1447 |
|
1448 |
-
#: ../templates/business-pro/sync-roles.php:
|
1449 |
msgid "Synching site"
|
1450 |
msgstr "Synching site"
|
1451 |
|
1452 |
-
#: ../templates/delete-role.php:
|
1453 |
msgid "Delete Roles"
|
1454 |
msgstr "Delete Roles"
|
1455 |
|
1456 |
-
#: ../templates/delete-role.php:
|
1457 |
msgid "You have specified these roles for deletion"
|
1458 |
msgstr "You have specified these roles for deletion"
|
1459 |
|
1460 |
-
#: ../templates/delete-role.php:
|
1461 |
msgid "Role"
|
1462 |
msgstr "Role"
|
1463 |
|
1464 |
-
#: ../templates/delete-role.php:
|
1465 |
msgid "Confirm Deletion"
|
1466 |
msgstr "Confirm Deletion"
|
1467 |
|
1468 |
-
#: ../templates/go-pro.php:
|
1469 |
msgid "WPFront User Role Editor Pro"
|
1470 |
msgstr "WPFront User Role Editor Pro"
|
1471 |
|
1472 |
-
#: ../templates/go-pro.php:
|
1473 |
msgid "License Key"
|
1474 |
msgstr "License Key"
|
1475 |
|
1476 |
-
#: ../templates/go-pro.php:
|
1477 |
msgid "Deactivate"
|
1478 |
msgstr "Deactivate"
|
1479 |
|
1480 |
-
#: ../templates/go-pro.php:
|
1481 |
msgid "License Expires"
|
1482 |
msgstr "License Expires"
|
1483 |
|
1484 |
-
#: ../templates/options-template.php:
|
1485 |
msgid "WPFront User Role Editor Settings"
|
1486 |
msgstr "WPFront User Role Editor Settings"
|
1487 |
|
1488 |
-
#: ../templates/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1489 |
msgid "Select the roles to be uploaded"
|
1490 |
msgstr "Select the roles to be uploaded"
|
1491 |
|
1492 |
-
#: ../templates/personal-pro/export-roles.php:
|
1493 |
msgid "Download Export File"
|
1494 |
msgstr "Download Export File"
|
1495 |
|
1496 |
-
#: ../templates/personal-pro/import-roles.php:
|
1497 |
msgid "ERROR:"
|
1498 |
msgstr "ERROR:"
|
1499 |
|
1500 |
-
#: ../templates/personal-pro/import-roles.php:
|
1501 |
msgid ""
|
1502 |
"Choose a WPFront User Role Editor export file (.xml) to upload, then click "
|
1503 |
"Upload file and import."
|
@@ -1505,24 +1687,24 @@ msgstr ""
|
|
1505 |
"Choose a WPFront User Role Editor export file (.xml) to upload, then click "
|
1506 |
"Upload file and import."
|
1507 |
|
1508 |
-
#: ../templates/personal-pro/import-roles.php:
|
1509 |
#, php-format
|
1510 |
msgid "Roles exported from %s on %s by user %s."
|
1511 |
msgstr "Roles exported from %s on %s by user %s."
|
1512 |
|
1513 |
-
#: ../templates/personal-pro/import-roles.php:
|
1514 |
msgid "UTC"
|
1515 |
msgstr "UTC"
|
1516 |
|
1517 |
-
#: ../templates/personal-pro/import-roles.php:
|
1518 |
msgid "Zero roles found in this export file to import."
|
1519 |
msgstr "Zero roles found in this export file to import."
|
1520 |
|
1521 |
-
#: ../templates/personal-pro/import-roles.php:
|
1522 |
msgid "Select roles to import"
|
1523 |
msgstr "Select roles to import"
|
1524 |
|
1525 |
-
#: ../templates/personal-pro/import-roles.php:
|
1526 |
msgid ""
|
1527 |
"* These roles already exist in this site. Importing them will overwrite "
|
1528 |
"existing roles."
|
@@ -1530,7 +1712,7 @@ msgstr ""
|
|
1530 |
"* These roles already exist in this site. Importing them will overwrite "
|
1531 |
"existing roles."
|
1532 |
|
1533 |
-
#: ../templates/personal-pro/menu-editor.php:
|
1534 |
msgid ""
|
1535 |
"Select a role below to edit menu for that role. Deselect a menu from the "
|
1536 |
"grid to remove that menu. Disabled menu items are already hidden, because "
|
@@ -1542,63 +1724,59 @@ msgstr ""
|
|
1542 |
"the selected role doesn't have the capability to display that menu. Grid "
|
1543 |
"displays menus which the current user has access to. "
|
1544 |
|
1545 |
-
#: ../templates/personal-pro/menu-editor.php:
|
1546 |
msgid "Soft"
|
1547 |
msgstr "Soft"
|
1548 |
|
1549 |
-
#: ../templates/personal-pro/menu-editor.php:
|
1550 |
msgid "Hard"
|
1551 |
msgstr "Hard"
|
1552 |
|
1553 |
-
#: ../templates/personal-pro/menu-editor.php:
|
1554 |
msgid "Restore default"
|
1555 |
msgstr "Restore default"
|
1556 |
|
1557 |
-
#: ../templates/personal-pro/menu-editor.php:
|
1558 |
msgid "Hide deselected item(s)"
|
1559 |
msgstr "Hide deselected item(s)"
|
1560 |
|
1561 |
-
#: ../templates/personal-pro/menu-editor.php:
|
1562 |
msgid "Hide disabled item(s)"
|
1563 |
msgstr "Hide disabled item(s)"
|
1564 |
|
1565 |
-
#: ../templates/personal-pro/menu-editor.php:
|
1566 |
msgid "Has Capability"
|
1567 |
msgstr "Has Capability"
|
1568 |
|
1569 |
-
#: ../templates/personal-pro/menu-editor.php:
|
1570 |
msgid "No Capability"
|
1571 |
msgstr "No Capability"
|
1572 |
|
1573 |
-
#: ../templates/personal-pro/menu-editor.php:
|
1574 |
msgid "Capability"
|
1575 |
msgstr "Capability"
|
1576 |
|
1577 |
-
#: ../templates/personal-pro/menu-editor.php:
|
1578 |
msgid "Menu Slug"
|
1579 |
msgstr "Menu Slug"
|
1580 |
|
1581 |
-
#: ../templates/personal-pro/post-type-permissions.php:
|
1582 |
msgid "Enable Role Permissions"
|
1583 |
msgstr "Enable Role Permissions"
|
1584 |
|
1585 |
-
#: ../templates/personal-pro/post-type-permissions.php:
|
1586 |
msgid "Read"
|
1587 |
msgstr "Read"
|
1588 |
|
1589 |
-
#: ../templates/restore-role.php:
|
1590 |
-
msgid "Cancel"
|
1591 |
-
msgstr "Cancel"
|
1592 |
-
|
1593 |
-
#: ../templates/restore-role.php:49
|
1594 |
msgid "Confirm"
|
1595 |
msgstr "Confirm"
|
1596 |
|
1597 |
-
#: ../templates/restore-role.php:
|
1598 |
msgid "Restored"
|
1599 |
msgstr "Restored"
|
1600 |
|
1601 |
-
#: ../templates/restore-role.php:
|
1602 |
msgid "Unexpected error / Timed out"
|
1603 |
msgstr "Unexpected error / Timed out"
|
1604 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WPFront Notification Bar\n"
|
4 |
+
"POT-Creation-Date: 2015-02-09 17:28-0700\n"
|
5 |
+
"PO-Revision-Date: 2015-02-09 17:32-0700\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: WPFront <contact@wpfront.com>\n"
|
8 |
"Language: en\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 1.7.4\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../classes/base/class-wpfront-base-menu.php:56
|
20 |
+
#: ../templates/personal-pro/menu-editor.php:138
|
21 |
msgid "Name"
|
22 |
msgstr "Name"
|
23 |
|
24 |
+
#: ../classes/base/class-wpfront-base-menu.php:57
|
25 |
msgid "Version"
|
26 |
msgstr "Version"
|
27 |
|
28 |
+
#: ../classes/base/class-wpfront-base-menu.php:58
|
29 |
msgid "Rating"
|
30 |
msgstr "Rating"
|
31 |
|
32 |
+
#: ../classes/base/class-wpfront-base-menu.php:59
|
33 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:183
|
34 |
msgid "Description"
|
35 |
msgstr "Description"
|
36 |
|
37 |
+
#: ../classes/base/class-wpfront-base-menu.php:73
|
38 |
#, php-format
|
39 |
msgid "based on %s rating(s)"
|
40 |
msgstr "based on %s rating(s)"
|
41 |
|
42 |
+
#: ../classes/base/class-wpfront-base-menu.php:109
|
43 |
msgid "Unable to communicate with WordPress.org"
|
44 |
msgstr "Unable to communicate with WordPress.org"
|
45 |
|
46 |
+
#: ../classes/base/class-wpfront-base-menu.php:127
|
47 |
+
#: ../classes/base/class-wpfront-base-menu.php:221
|
48 |
msgid "WPFront Plugins"
|
49 |
msgstr "WPFront Plugins"
|
50 |
|
51 |
+
#: ../classes/base/class-wpfront-base-menu.php:151
|
52 |
#, php-format
|
53 |
msgid "By %s"
|
54 |
msgstr "By %s"
|
55 |
|
56 |
+
#: ../classes/base/class-wpfront-base-menu.php:158
|
57 |
#, php-format
|
58 |
msgid "More information about %s"
|
59 |
msgstr "More information about %s"
|
60 |
|
61 |
+
#: ../classes/base/class-wpfront-base-menu.php:158
|
62 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:223
|
63 |
msgid "Details"
|
64 |
msgstr "Details"
|
65 |
|
66 |
+
#: ../classes/base/class-wpfront-base-menu.php:167
|
67 |
#, php-format
|
68 |
msgid "Install %s"
|
69 |
msgstr "Install %s"
|
70 |
|
71 |
+
#: ../classes/base/class-wpfront-base-menu.php:167
|
72 |
msgid "Install Now"
|
73 |
msgstr "Install Now"
|
74 |
|
75 |
+
#: ../classes/base/class-wpfront-base-menu.php:172
|
76 |
#, php-format
|
77 |
msgid "Update to version %s"
|
78 |
msgstr "Update to version %s"
|
79 |
|
80 |
+
#: ../classes/base/class-wpfront-base-menu.php:172
|
81 |
msgid "Update Now"
|
82 |
msgstr "Update Now"
|
83 |
|
84 |
+
#: ../classes/base/class-wpfront-base-menu.php:177
|
85 |
msgid "This plugin is already installed and is up to date"
|
86 |
msgstr "This plugin is already installed and is up to date"
|
87 |
|
88 |
+
#: ../classes/base/class-wpfront-base-menu.php:177
|
89 |
msgid "Installed"
|
90 |
msgstr "Installed"
|
91 |
|
92 |
+
#: ../classes/base/class-wpfront-base-menu.php:179
|
93 |
+
#: ../classes/base/class-wpfront-base.php:113
|
94 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:108
|
95 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:249
|
96 |
+
#: ../classes/class-wpfront-user-role-editor.php:223
|
97 |
msgid "Settings"
|
98 |
msgstr "Settings"
|
99 |
|
100 |
+
#: ../classes/base/class-wpfront-base-menu.php:181
|
101 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:100
|
102 |
+
#: ../templates/go-pro.php:71 ../templates/go-pro.php:72
|
103 |
msgid "Activate"
|
104 |
msgstr "Activate"
|
105 |
|
106 |
+
#: ../classes/base/class-wpfront-base-menu.php:203
|
107 |
+
#: ../classes/class-wpfront-user-role-editor.php:334
|
108 |
msgid "Feedback"
|
109 |
msgstr "Feedback"
|
110 |
|
111 |
+
#: ../classes/base/class-wpfront-base-menu.php:220
|
112 |
msgid "WPFront"
|
113 |
msgstr "WPFront"
|
114 |
|
115 |
+
#: ../classes/base/class-wpfront-base-menu.php:221
|
116 |
msgid "All Plugins"
|
117 |
msgstr "All Plugins"
|
118 |
|
119 |
+
#: ../classes/base/class-wpfront-base.php:142
|
120 |
+
#: ../classes/class-wpfront-user-role-editor.php:283
|
121 |
msgid "You do not have sufficient permissions to access this page."
|
122 |
msgstr "You do not have sufficient permissions to access this page."
|
123 |
|
124 |
+
#: ../classes/base/class-wpfront-base.php:162
|
125 |
msgid ""
|
126 |
"If you have a caching plugin, clear the cache for the new settings to take "
|
127 |
"effect."
|
129 |
"If you have a caching plugin, clear the cache for the new settings to take "
|
130 |
"effect."
|
131 |
|
132 |
+
#: ../classes/base/class-wpfront-base.php:209
|
133 |
+
#: ../templates/personal-pro/menu-editor.php:232
|
134 |
msgid "Save Changes"
|
135 |
msgstr "Save Changes"
|
136 |
|
137 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:85
|
138 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:88
|
139 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:80
|
140 |
+
#: ../classes/class-wpfront-user-role-editor.php:220
|
141 |
+
#: ../classes/class-wpfront-user-role-editor.php:227
|
142 |
+
#: ../templates/list-roles.php:43
|
143 |
msgid "Roles"
|
144 |
msgstr "Roles"
|
145 |
|
146 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:88
|
147 |
+
#: ../classes/class-wpfront-user-role-editor.php:220
|
148 |
msgid "All Roles"
|
149 |
msgstr "All Roles"
|
150 |
|
151 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:93
|
152 |
+
#: ../classes/class-wpfront-user-role-editor.php:221
|
153 |
+
#: ../templates/add-edit-role.php:41 ../templates/add-edit-role.php:140
|
154 |
msgid "Add New Role"
|
155 |
msgstr "Add New Role"
|
156 |
|
157 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:93
|
158 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:83
|
159 |
+
#: ../classes/class-wpfront-user-role-editor.php:221
|
160 |
+
#: ../templates/add-edit-role.php:43 ../templates/list-roles.php:46
|
161 |
msgid "Add New"
|
162 |
msgstr "Add New"
|
163 |
|
164 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:98
|
165 |
+
#: ../classes/class-wpfront-user-role-editor.php:222
|
166 |
+
#: ../templates/restore-role.php:40
|
167 |
msgid "Restore Role"
|
168 |
msgstr "Restore Role"
|
169 |
|
170 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:98
|
171 |
+
#: ../classes/class-wpfront-user-role-editor.php:222
|
172 |
+
#: ../templates/restore-role.php:52
|
173 |
msgid "Restore"
|
174 |
msgstr "Restore"
|
175 |
|
176 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:103
|
177 |
+
#: ../templates/business-pro/sync-roles.php:15
|
178 |
+
#: ../templates/business-pro/sync-roles.php:301
|
179 |
msgid "Sync Roles"
|
180 |
msgstr "Sync Roles"
|
181 |
|
182 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:103
|
183 |
msgid "Sync"
|
184 |
msgstr "Sync"
|
185 |
|
186 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:114
|
187 |
+
#: ../classes/class-wpfront-user-role-editor.php:206
|
188 |
msgid "Go Pro"
|
189 |
msgstr "Go Pro"
|
190 |
|
191 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:125
|
192 |
msgid ""
|
193 |
"You have a large network of sites (usually 10,000 or more sites). Roles "
|
194 |
"functionalities will be CPU and memory intensive on large networks. Use the "
|
198 |
"functionalities will be CPU and memory intensive on large networks. Use the "
|
199 |
"settings screen to turn on these CPU and memory intensive functionalities."
|
200 |
|
201 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:221
|
202 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:120
|
203 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:154
|
204 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:168
|
205 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:88
|
206 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:227
|
207 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:324
|
208 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:365
|
209 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:361
|
210 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:395
|
211 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:412
|
212 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:242
|
213 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:284
|
214 |
+
#: ../classes/class-wpfront-user-role-editor-restore.php:168
|
215 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:130
|
216 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:229
|
217 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:571
|
218 |
msgid "Overview"
|
219 |
msgstr "Overview"
|
220 |
|
221 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:223
|
222 |
msgid "This screen allows you to add a new role within your network."
|
223 |
msgstr "This screen allows you to add a new role within your network."
|
224 |
|
225 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:226
|
226 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:125
|
227 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:329
|
228 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:366
|
229 |
msgid ""
|
230 |
"You can copy capabilities from existing roles using the Copy from drop down "
|
231 |
"list. Select the role you want to copy from, then click Apply to copy the "
|
235 |
"list. Select the role you want to copy from, then click Apply to copy the "
|
236 |
"capabilities. You can select or deselect capabilities even after you copy."
|
237 |
|
238 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:231
|
239 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:130
|
240 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:185
|
241 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:170
|
242 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:334
|
243 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:225
|
244 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:371
|
245 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:424
|
246 |
+
#: ../templates/add-edit-role.php:77
|
247 |
msgid "Display Name"
|
248 |
msgstr "Display Name"
|
249 |
|
250 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:233
|
251 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:336
|
252 |
msgid ""
|
253 |
"Use the Display Name field to set the display name for the new role. "
|
254 |
"WordPress uses display name to display this role within your site. This "
|
258 |
"WordPress uses display name to display this role within your site. This "
|
259 |
"field is required."
|
260 |
|
261 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:238
|
262 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:137
|
263 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:180
|
264 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:169
|
265 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:341
|
266 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:228
|
267 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:378
|
268 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:429
|
269 |
+
#: ../templates/add-edit-role.php:87
|
270 |
msgid "Role Name"
|
271 |
msgstr "Role Name"
|
272 |
|
273 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:240
|
274 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:343
|
275 |
msgid ""
|
276 |
"Use the Role Name field to set the role name for the new role. WordPress "
|
277 |
"uses role name to identify this role within your site. Once set role name "
|
283 |
"cannot be changed. This field is required. This plugin will auto populate "
|
284 |
"role name from the display name you have given, but you can change it."
|
285 |
|
286 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:245
|
287 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:144
|
288 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:348
|
289 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:240
|
290 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:385
|
291 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:449
|
292 |
+
#: ../templates/add-edit-role.php:101
|
293 |
msgid "Capabilities"
|
294 |
msgstr "Capabilities"
|
295 |
|
296 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:247
|
297 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:350
|
298 |
msgid ""
|
299 |
"Capabilities are displayed as different groups for easy access. The Roles "
|
300 |
"section displays capabilities created by this plugin. The Other Capabilities "
|
308 |
"usually created by plugins and themes. Use the check boxes to select the "
|
309 |
"capabilities required for this new role."
|
310 |
|
311 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:256
|
312 |
msgid "Documentation on Multisite Add New Role"
|
313 |
msgstr "Documentation on Multisite Add New Role"
|
314 |
|
315 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:92
|
316 |
+
#: ../templates/list-roles.php:68 ../templates/list-roles.php:70
|
317 |
msgid "Search Roles"
|
318 |
msgstr "Search Roles"
|
319 |
|
320 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:122
|
321 |
msgid "This screen allows you to edit a role within your network."
|
322 |
msgstr "This screen allows you to edit a role within your network."
|
323 |
|
324 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:132
|
325 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:373
|
326 |
msgid ""
|
327 |
"Use the Display Name field to edit display name of the role. WordPress uses "
|
328 |
"display name to display this role within your site. This field is required."
|
330 |
"Use the Display Name field to edit display name of the role. WordPress uses "
|
331 |
"display name to display this role within your site. This field is required."
|
332 |
|
333 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:139
|
334 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:380
|
335 |
msgid ""
|
336 |
"Role Name is read only. WordPress uses role name to identify this role "
|
337 |
"within your site."
|
339 |
"Role Name is read only. WordPress uses role name to identify this role "
|
340 |
"within your site."
|
341 |
|
342 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:146
|
343 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:387
|
344 |
msgid ""
|
345 |
"Capabilities are displayed as different groups for easy access. The Roles "
|
346 |
"section displays capabilities created by this plugin. The Other Capabilities "
|
354 |
"usually created by plugins and themes. Use the check boxes to select the "
|
355 |
"capabilities required."
|
356 |
|
357 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:156
|
358 |
msgid "This screen allows you to delete roles from your network sites."
|
359 |
msgstr "This screen allows you to delete roles from your network sites."
|
360 |
|
361 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:159
|
362 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:400
|
363 |
msgid ""
|
364 |
"Use the Roles List screen to select the roles you want to delete. You can "
|
365 |
"delete individual roles using the Delete row action link or delete multiple "
|
369 |
"delete individual roles using the Delete row action link or delete multiple "
|
370 |
"roles at the same time using the bulk action."
|
371 |
|
372 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:170
|
373 |
msgid ""
|
374 |
"This screen displays all the roles existing within your multisite network."
|
375 |
msgstr ""
|
376 |
"This screen displays all the roles existing within your multisite network."
|
377 |
|
378 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:173
|
379 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:417
|
380 |
msgid ""
|
381 |
"To add a new role, click the Add New button at the top of the screen or Add "
|
382 |
"New in the Roles menu section."
|
384 |
"To add a new role, click the Add New button at the top of the screen or Add "
|
385 |
"New in the Roles menu section."
|
386 |
|
387 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:178
|
388 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:422
|
389 |
msgid "Columns"
|
390 |
msgstr "Columns"
|
391 |
|
392 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:182
|
393 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:431
|
394 |
msgid "Is used by WordPress to identify this role."
|
395 |
msgstr "Is used by WordPress to identify this role."
|
396 |
|
397 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:187
|
398 |
msgid ""
|
399 |
"WordPress uses display name to display this role within the site. You can "
|
400 |
"have different display names for the same role within the network."
|
402 |
"WordPress uses display name to display this role within the site. You can "
|
403 |
"have different display names for the same role within the network."
|
404 |
|
405 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:190
|
406 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:171
|
407 |
msgid "Role Type"
|
408 |
msgstr "Role Type"
|
409 |
|
410 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:192
|
411 |
msgid "Displays whether that role is a built-in role or a custom role."
|
412 |
msgstr "Displays whether that role is a built-in role or a custom role."
|
413 |
|
414 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:195
|
415 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:172
|
416 |
msgid "Sites"
|
417 |
msgstr "Sites"
|
418 |
|
419 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:197
|
420 |
msgid ""
|
421 |
"Display the sites that role belongs to. [All Sites] mean, that role is part "
|
422 |
"of every site within the network. Else it will display the number of sites "
|
426 |
"of every site within the network. Else it will display the number of sites "
|
427 |
"as a link. Clicking on the link will display the site list."
|
428 |
|
429 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:202
|
430 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:461
|
431 |
msgid "Actions"
|
432 |
msgstr "Actions"
|
433 |
|
434 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:204
|
435 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:463
|
436 |
msgid ""
|
437 |
"Hovering over a row in the roles list will display action links that allow "
|
438 |
"you to manage roles. You can perform the following actions:"
|
440 |
"Hovering over a row in the roles list will display action links that allow "
|
441 |
"you to manage roles. You can perform the following actions:"
|
442 |
|
443 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:207
|
444 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:231
|
445 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:281
|
446 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:466
|
447 |
+
#: ../templates/list-roles.php:104
|
448 |
msgid "View"
|
449 |
msgstr "View"
|
450 |
|
451 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:209
|
452 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:468
|
453 |
msgid ""
|
454 |
"Display details about the role. You can see the capabilities assigned for "
|
455 |
"that role. View link will only appear when you do not have permission to "
|
459 |
"that role. View link will only appear when you do not have permission to "
|
460 |
"edit that role."
|
461 |
|
462 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:212
|
463 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:228
|
464 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:269
|
465 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:471
|
466 |
+
#: ../templates/list-roles.php:104
|
467 |
+
#: ../templates/personal-pro/post-type-permissions.php:34
|
468 |
msgid "Edit"
|
469 |
msgstr "Edit"
|
470 |
|
471 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:214
|
472 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:473
|
473 |
msgid ""
|
474 |
"Allows you to edit that role. You can see the capabilities assigned for that "
|
475 |
"role and also edit them. Edit link will only appear when you have permission "
|
479 |
"role and also edit them. Edit link will only appear when you have permission "
|
480 |
"to edit that role."
|
481 |
|
482 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:217
|
483 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:119
|
484 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:229
|
485 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:260
|
486 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:476
|
487 |
+
#: ../templates/list-roles.php:107
|
488 |
+
#: ../templates/personal-pro/post-type-permissions.php:35
|
489 |
msgid "Delete"
|
490 |
msgstr "Delete"
|
491 |
|
492 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:219
|
493 |
msgid "Allows you to delete that role."
|
494 |
msgstr "Allows you to delete that role."
|
495 |
|
496 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:231
|
497 |
msgid "Documentation on Multisite Edit Role"
|
498 |
msgstr "Documentation on Multisite Edit Role"
|
499 |
|
500 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:238
|
501 |
msgid "Documentation on Multisite Delete Roles"
|
502 |
msgstr "Documentation on Multisite Delete Roles"
|
503 |
|
504 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:246
|
505 |
msgid "Documentation on Multisite Roles"
|
506 |
msgstr "Documentation on Multisite Roles"
|
507 |
|
508 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:48
|
509 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:77
|
510 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:180
|
511 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:182
|
512 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:202
|
513 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:221
|
514 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:230
|
515 |
+
#: ../classes/class-wpfront-user-role-editor-restore.php:87
|
516 |
+
#: ../templates/add-edit-role.php:51 ../templates/add-edit-role.php:59
|
517 |
+
#: ../templates/business-pro/sync-roles.php:21
|
518 |
msgid "ERROR"
|
519 |
msgstr "ERROR"
|
520 |
|
521 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:48
|
522 |
msgid "Permission denied."
|
523 |
msgstr "Permission denied."
|
524 |
|
525 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:75
|
526 |
msgid "Partial Failure"
|
527 |
msgstr "Partial Failure"
|
528 |
|
529 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:90
|
530 |
+
#: ../classes/class-wpfront-user-role-editor-restore.php:170
|
531 |
msgid ""
|
532 |
"This screen allow you to restore WordPress built-in roles to its standard "
|
533 |
"capability settings."
|
535 |
"This screen allow you to restore WordPress built-in roles to its standard "
|
536 |
"capability settings."
|
537 |
|
538 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:93
|
539 |
+
#: ../classes/class-wpfront-user-role-editor-restore.php:173
|
540 |
msgid "To restore a role, click the Restore button then Confirm."
|
541 |
msgstr "To restore a role, click the Restore button then Confirm."
|
542 |
|
543 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:102
|
544 |
msgid "Documentation on Multisite Restore"
|
545 |
msgstr "Documentation on Multisite Restore"
|
546 |
|
547 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:125
|
548 |
msgid "No roles found."
|
549 |
msgstr "No roles found."
|
550 |
|
551 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:151
|
552 |
#, php-format
|
553 |
msgid "All <span class=\"count\">(%s)</span>"
|
554 |
msgstr "All <span class=\"count\">(%s)</span>"
|
555 |
|
556 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:154
|
557 |
#, php-format
|
558 |
msgid "Built-In <span class=\"count\">(%s)</span>"
|
559 |
msgstr "Built-In <span class=\"count\">(%s)</span>"
|
560 |
|
561 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:157
|
562 |
#, php-format
|
563 |
msgid "Custom <span class=\"count\">(%s)</span>"
|
564 |
msgstr "Custom <span class=\"count\">(%s)</span>"
|
565 |
|
566 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:207
|
567 |
+
#: ../templates/personal-pro/menu-editor.php:161
|
568 |
+
#: ../templates/personal-pro/menu-editor.php:197
|
569 |
#, php-format
|
570 |
msgid "Select %s"
|
571 |
msgstr "Select %s"
|
572 |
|
573 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:253
|
574 |
msgid "[All Sites]"
|
575 |
msgstr "[All Sites]"
|
576 |
|
577 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:255
|
578 |
#, php-format
|
579 |
msgid "%d Site(s)"
|
580 |
msgstr "%d Site(s)"
|
581 |
|
582 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:60
|
583 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:68
|
584 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:87
|
585 |
msgid "Source site not selected."
|
586 |
msgstr "Source site not selected."
|
587 |
|
588 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:71
|
589 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:90
|
590 |
msgid "Destination type not selected."
|
591 |
msgstr "Destination type not selected."
|
592 |
|
593 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:78
|
594 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:97
|
595 |
msgid "Destination sites not selected."
|
596 |
msgstr "Destination sites not selected."
|
597 |
|
598 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:229
|
599 |
msgid "This screen allows you to sync the roles between the network."
|
600 |
msgstr "This screen allows you to sync the roles between the network."
|
601 |
|
602 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:232
|
603 |
msgid ""
|
604 |
"You will select a site as source, then sync the roles to selected sites or "
|
605 |
"entire sites within the network."
|
607 |
"You will select a site as source, then sync the roles to selected sites or "
|
608 |
"entire sites within the network."
|
609 |
|
610 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:237
|
611 |
msgid "Step 1"
|
612 |
msgstr "Step 1"
|
613 |
|
614 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:239
|
615 |
msgid "Select source site."
|
616 |
msgstr "Select source site."
|
617 |
|
618 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:242
|
619 |
msgid "You will select the source site in this step."
|
620 |
msgstr "You will select the source site in this step."
|
621 |
|
622 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:247
|
623 |
msgid "Step 2"
|
624 |
msgstr "Step 2"
|
625 |
|
626 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:249
|
627 |
msgid "Select destination sites."
|
628 |
msgstr "Select destination sites."
|
629 |
|
630 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:252
|
631 |
msgid "You will select the destination sites in this step."
|
632 |
msgstr "You will select the destination sites in this step."
|
633 |
|
634 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:255
|
635 |
msgid ""
|
636 |
"Use \"All Sites\" to select all the sites within the network or you can "
|
637 |
"select individual sites using \"Selected Sites\"."
|
639 |
"Use \"All Sites\" to select all the sites within the network or you can "
|
640 |
"select individual sites using \"Selected Sites\"."
|
641 |
|
642 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:260
|
643 |
msgid "Step 3"
|
644 |
msgstr "Step 3"
|
645 |
|
646 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:262
|
647 |
msgid "Choose settings."
|
648 |
msgstr "Choose settings."
|
649 |
|
650 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:265
|
651 |
+
#: ../templates/business-pro/sync-roles.php:226
|
652 |
msgid "Add roles existing only in source"
|
653 |
msgstr "Add roles existing only in source"
|
654 |
|
655 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:267
|
656 |
msgid ""
|
657 |
"Roles existing in source and do not existing in destination will be created."
|
658 |
msgstr ""
|
659 |
"Roles existing in source and do not existing in destination will be created."
|
660 |
|
661 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:270
|
662 |
+
#: ../templates/business-pro/sync-roles.php:231
|
663 |
msgid "Overwrite existing roles"
|
664 |
msgstr "Overwrite existing roles"
|
665 |
|
666 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:272
|
667 |
msgid ""
|
668 |
"If the role from source already exists in destination, it will be "
|
669 |
"overwritten."
|
671 |
"If the role from source already exists in destination, it will be "
|
672 |
"overwritten."
|
673 |
|
674 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:275
|
675 |
+
#: ../templates/business-pro/sync-roles.php:236
|
676 |
msgid "Remove roles existing only in destination"
|
677 |
msgstr "Remove roles existing only in destination"
|
678 |
|
679 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:277
|
680 |
msgid ""
|
681 |
"If a role do not exist in source, but exists in destination it will be "
|
682 |
"removed."
|
684 |
"If a role do not exist in source, but exists in destination it will be "
|
685 |
"removed."
|
686 |
|
687 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:280
|
688 |
+
#: ../templates/business-pro/sync-roles.php:241
|
689 |
msgid "Update new user default role"
|
690 |
msgstr "Update new user default role"
|
691 |
|
692 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:282
|
693 |
msgid ""
|
694 |
"The destination new user default role will be updated as same as source."
|
695 |
msgstr ""
|
696 |
"The destination new user default role will be updated as same as source."
|
697 |
|
698 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:287
|
699 |
msgid "Step 4"
|
700 |
msgstr "Step 4"
|
701 |
|
702 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:289
|
703 |
msgid "Confirm and Sync"
|
704 |
msgstr "Confirm and Sync"
|
705 |
|
706 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:292
|
707 |
msgid "You can verify your settings and start syncing."
|
708 |
msgstr "You can verify your settings and start syncing."
|
709 |
|
710 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:295
|
711 |
msgid "Click Sync Roles to start syncing."
|
712 |
msgstr "Click Sync Roles to start syncing."
|
713 |
|
714 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:304
|
715 |
msgid "Documentation on Multisite Sync"
|
716 |
msgstr "Documentation on Multisite Sync"
|
717 |
|
718 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:326
|
719 |
msgid "This screen allows you to add a new role within your site."
|
720 |
msgstr "This screen allows you to add a new role within your site."
|
721 |
|
722 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:359
|
723 |
msgid "Documentation on Add New Role"
|
724 |
msgstr "Documentation on Add New Role"
|
725 |
|
726 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:378
|
727 |
+
msgid "Uses 'Posts' capabilities."
|
728 |
+
msgstr "Uses 'Posts' capabilities."
|
729 |
+
|
730 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:379
|
731 |
+
#, php-format
|
732 |
+
msgid "%s to customize capabilites."
|
733 |
+
msgstr "%s to customize capabilites."
|
734 |
+
|
735 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:379
|
736 |
+
msgid "Upgrade to Pro"
|
737 |
+
msgstr "Upgrade to Pro"
|
738 |
+
|
739 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:66
|
740 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:339
|
741 |
msgid "Secondary Roles"
|
742 |
msgstr "Secondary Roles"
|
743 |
|
744 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:81
|
745 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:372
|
746 |
+
#: ../templates/assign-roles.php:42 ../templates/assign-roles.php:94
|
747 |
msgid "Assign Roles"
|
748 |
msgstr "Assign Roles"
|
749 |
|
750 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:170
|
751 |
msgid "No role for this site"
|
752 |
msgstr "No role for this site"
|
753 |
|
754 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:196
|
755 |
msgid "Invalid user."
|
756 |
msgstr "Invalid user."
|
757 |
|
758 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:224
|
759 |
msgid "Roles updated successfully."
|
760 |
msgstr "Roles updated successfully."
|
761 |
|
762 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:226
|
763 |
msgid "Invalid primary role specified."
|
764 |
msgstr "Invalid primary role specified."
|
765 |
|
766 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:244
|
767 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:254
|
768 |
msgid "Invalid primary role."
|
769 |
msgstr "Invalid primary role."
|
770 |
|
771 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:276
|
772 |
#, php-format
|
773 |
msgid "%d user(s) migrated."
|
774 |
msgstr "%d user(s) migrated."
|
775 |
|
776 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:321
|
777 |
msgid "Primary Role"
|
778 |
msgstr "Primary Role"
|
779 |
|
780 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:367
|
781 |
msgid ""
|
782 |
"This screen allows you to assign multiple roles to a user and also allows "
|
783 |
"you to migrate users from a role to another role."
|
785 |
"This screen allows you to assign multiple roles to a user and also allows "
|
786 |
"you to migrate users from a role to another role."
|
787 |
|
788 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:374
|
789 |
msgid ""
|
790 |
"To assign multiple roles to a user, select that user within the User drop "
|
791 |
"down list and select the primary role you want for that user using the "
|
797 |
"Primary Role drop down list. Select the secondary roles using the check "
|
798 |
"boxes below, then click Assign Roles."
|
799 |
|
800 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:379
|
801 |
+
#: ../templates/assign-roles.php:99 ../templates/assign-roles.php:132
|
802 |
msgid "Migrate Users"
|
803 |
msgstr "Migrate Users"
|
804 |
|
805 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:381
|
806 |
msgid ""
|
807 |
"To migrate users from one role to another role or to add secondary roles to "
|
808 |
"users belonging to a particular primary role, use the migrate users "
|
812 |
"users belonging to a particular primary role, use the migrate users "
|
813 |
"functionality."
|
814 |
|
815 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:384
|
816 |
msgid ""
|
817 |
"Select the users using the From Primary Role drop down, to primary role "
|
818 |
"using the Primary Role drop down and secondary roles using the check boxes "
|
822 |
"using the Primary Role drop down and secondary roles using the check boxes "
|
823 |
"then click Migrate Users."
|
824 |
|
825 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:393
|
826 |
msgid "Documentation on Assign / Migrate Users"
|
827 |
msgstr "Documentation on Assign / Migrate Users"
|
828 |
|
829 |
+
#: ../classes/class-wpfront-user-role-editor-controller-base.php:85
|
830 |
msgid "Links:"
|
831 |
msgstr "Links:"
|
832 |
|
833 |
+
#: ../classes/class-wpfront-user-role-editor-controller-base.php:91
|
834 |
msgid "FAQ"
|
835 |
msgstr "FAQ"
|
836 |
|
837 |
+
#: ../classes/class-wpfront-user-role-editor-controller-base.php:92
|
838 |
msgid "Support"
|
839 |
msgstr "Support"
|
840 |
|
841 |
+
#: ../classes/class-wpfront-user-role-editor-controller-base.php:93
|
842 |
msgid "Review"
|
843 |
msgstr "Review"
|
844 |
|
845 |
+
#: ../classes/class-wpfront-user-role-editor-controller-base.php:94
|
846 |
msgid "Contact"
|
847 |
msgstr "Contact"
|
848 |
|
849 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:180
|
850 |
msgid "License key activation limit reached"
|
851 |
msgstr "License key activation limit reached"
|
852 |
|
853 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:182
|
854 |
msgid "Invalid license key"
|
855 |
msgstr "Invalid license key"
|
856 |
|
857 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:202
|
858 |
msgid "Unable to deactivate, expired license?"
|
859 |
msgstr "Unable to deactivate, expired license?"
|
860 |
|
861 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:221
|
862 |
msgid "Unable to contact wpfront.com"
|
863 |
msgstr "Unable to contact wpfront.com"
|
864 |
|
865 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:230
|
866 |
msgid "Unable to parse response"
|
867 |
msgstr "Unable to parse response"
|
868 |
|
869 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:221
|
870 |
+
#: ../templates/add-edit-role.php:117
|
871 |
+
#: ../templates/personal-pro/menu-editor.php:132
|
872 |
msgid "Select All"
|
873 |
msgstr "Select All"
|
874 |
|
875 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:231
|
876 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:434
|
877 |
msgid "Type"
|
878 |
msgstr "Type"
|
879 |
|
880 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:234
|
881 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:439
|
882 |
msgid "User Default"
|
883 |
msgstr "User Default"
|
884 |
|
885 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:237
|
886 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:444
|
887 |
msgid "Users"
|
888 |
msgstr "Users"
|
889 |
|
890 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:258
|
891 |
msgid "Bulk Actions"
|
892 |
msgstr "Bulk Actions"
|
893 |
|
894 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:263
|
895 |
+
#: ../templates/add-edit-role.php:113
|
896 |
+
#: ../templates/personal-pro/menu-editor.php:100
|
897 |
msgid "Apply"
|
898 |
msgstr "Apply"
|
899 |
|
900 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:265
|
901 |
#, php-format
|
902 |
msgid "%s item(s)"
|
903 |
msgstr "%s item(s)"
|
904 |
|
905 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:288
|
906 |
msgid "All"
|
907 |
msgstr "All"
|
908 |
|
909 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:302
|
910 |
msgid "Having Users"
|
911 |
msgstr "Having Users"
|
912 |
|
913 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:308
|
914 |
msgid "No Users"
|
915 |
msgstr "No Users"
|
916 |
|
917 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:319
|
918 |
+
#: ../templates/list-roles.php:124
|
919 |
msgid "Built-In"
|
920 |
msgstr "Built-In"
|
921 |
|
922 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:325
|
923 |
+
#: ../templates/list-roles.php:124
|
924 |
msgid "Custom"
|
925 |
msgstr "Custom"
|
926 |
|
927 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:363
|
928 |
msgid "This screen allows you to edit a role within your site."
|
929 |
msgstr "This screen allows you to edit a role within your site."
|
930 |
|
931 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:397
|
932 |
msgid "This screen allows you to delete roles from your WordPress site."
|
933 |
msgstr "This screen allows you to delete roles from your WordPress site."
|
934 |
|
935 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:403
|
936 |
msgid ""
|
937 |
"You cannot delete administrator role, current user’s role and roles you do "
|
938 |
"not have permission to."
|
940 |
"You cannot delete administrator role, current user’s role and roles you do "
|
941 |
"not have permission to."
|
942 |
|
943 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:414
|
944 |
msgid "This screen lists all the existing roles within your site."
|
945 |
msgstr "This screen lists all the existing roles within your site."
|
946 |
|
947 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:426
|
948 |
msgid "Used to display this role within this site."
|
949 |
msgstr "Used to display this role within this site."
|
950 |
|
951 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:436
|
952 |
msgid ""
|
953 |
"Says whether the role is a WordPress built-in role or not. There are five "
|
954 |
"built-in roles."
|
956 |
"Says whether the role is a WordPress built-in role or not. There are five "
|
957 |
"built-in roles."
|
958 |
|
959 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:441
|
960 |
msgid "Displays whether a role is the default role of a new user."
|
961 |
msgstr "Displays whether a role is the default role of a new user."
|
962 |
|
963 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:446
|
964 |
msgid "Number of users in that role."
|
965 |
msgstr "Number of users in that role."
|
966 |
|
967 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:451
|
968 |
msgid "Number of capabilities that role have."
|
969 |
msgstr "Number of capabilities that role have."
|
970 |
|
971 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:454
|
972 |
msgid "Menu Edited"
|
973 |
msgstr "Menu Edited"
|
974 |
|
975 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:456
|
976 |
msgid ""
|
977 |
"Displays whether the menu has been edited for this role. This is a pro "
|
978 |
"feature."
|
980 |
"Displays whether the menu has been edited for this role. This is a pro "
|
981 |
"feature."
|
982 |
|
983 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:478
|
984 |
msgid ""
|
985 |
"Allows you to delete that role. Delete action will not appear if you do not "
|
986 |
"have permission to delete that role."
|
988 |
"Allows you to delete that role. Delete action will not appear if you do not "
|
989 |
"have permission to delete that role."
|
990 |
|
991 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:481
|
992 |
+
#: ../templates/list-roles.php:110
|
993 |
msgid "Default"
|
994 |
msgstr "Default"
|
995 |
|
996 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:483
|
997 |
msgid ""
|
998 |
"Allows you to set that role as the default role for new user registration."
|
999 |
msgstr ""
|
1000 |
"Allows you to set that role as the default role for new user registration."
|
1001 |
|
1002 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:486
|
1003 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:563
|
1004 |
msgid "Edit Menu"
|
1005 |
msgstr "Edit Menu"
|
1006 |
|
1007 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:488
|
1008 |
msgid ""
|
1009 |
"Takes you to the menu editor screen for that role. You need \"edit_role_menus"
|
1010 |
"\" capability for this link to appear. This is a pro feature."
|
1012 |
"Takes you to the menu editor screen for that role. You need \"edit_role_menus"
|
1013 |
"\" capability for this link to appear. This is a pro feature."
|
1014 |
|
1015 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:500
|
1016 |
msgid "Documentation on Edit Role"
|
1017 |
msgstr "Documentation on Edit Role"
|
1018 |
|
1019 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:507
|
1020 |
msgid "Documentation on Delete Roles"
|
1021 |
msgstr "Documentation on Delete Roles"
|
1022 |
|
1023 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:515
|
1024 |
msgid "Documentation on Roles"
|
1025 |
msgstr "Documentation on Roles"
|
1026 |
|
1027 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:88
|
1028 |
+
#, php-format
|
1029 |
+
msgid "%s (Invalid)"
|
1030 |
+
msgstr "%s (Invalid)"
|
1031 |
+
|
1032 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:92
|
1033 |
+
#, php-format
|
1034 |
+
msgid "%s (Pending)"
|
1035 |
+
msgstr "%s (Pending)"
|
1036 |
+
|
1037 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:105
|
1038 |
+
msgid "sub item"
|
1039 |
+
msgstr "sub item"
|
1040 |
+
|
1041 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:137
|
1042 |
+
msgid "Edit Menu Item"
|
1043 |
+
msgstr "Edit Menu Item"
|
1044 |
+
|
1045 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:146
|
1046 |
+
msgid "URL"
|
1047 |
+
msgstr "URL"
|
1048 |
+
|
1049 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:153
|
1050 |
+
msgid "Navigation Label"
|
1051 |
+
msgstr "Navigation Label"
|
1052 |
+
|
1053 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:159
|
1054 |
+
msgid "Title Attribute"
|
1055 |
+
msgstr "Title Attribute"
|
1056 |
+
|
1057 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:166
|
1058 |
+
msgid "Open link in a new window/tab"
|
1059 |
+
msgstr "Open link in a new window/tab"
|
1060 |
+
|
1061 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:171
|
1062 |
+
msgid "CSS Classes (optional)"
|
1063 |
+
msgstr "CSS Classes (optional)"
|
1064 |
+
|
1065 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:177
|
1066 |
+
msgid "Link Relationship (XFN)"
|
1067 |
+
msgstr "Link Relationship (XFN)"
|
1068 |
+
|
1069 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:185
|
1070 |
+
msgid ""
|
1071 |
+
"The description will be displayed in the menu if the current theme supports "
|
1072 |
+
"it."
|
1073 |
+
msgstr ""
|
1074 |
+
"The description will be displayed in the menu if the current theme supports "
|
1075 |
+
"it."
|
1076 |
+
|
1077 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:195
|
1078 |
+
msgid "Move"
|
1079 |
+
msgstr "Move"
|
1080 |
+
|
1081 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:196
|
1082 |
+
msgid "Up one"
|
1083 |
+
msgstr "Up one"
|
1084 |
+
|
1085 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:197
|
1086 |
+
msgid "Down one"
|
1087 |
+
msgstr "Down one"
|
1088 |
+
|
1089 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:200
|
1090 |
+
msgid "To the top"
|
1091 |
+
msgstr "To the top"
|
1092 |
+
|
1093 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:207
|
1094 |
+
#, php-format
|
1095 |
+
msgid "Original: %s"
|
1096 |
+
msgstr "Original: %s"
|
1097 |
+
|
1098 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:220
|
1099 |
+
msgid "Remove"
|
1100 |
+
msgstr "Remove"
|
1101 |
+
|
1102 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu-walker.php:221
|
1103 |
+
#: ../templates/restore-role.php:54
|
1104 |
+
msgid "Cancel"
|
1105 |
+
msgstr "Cancel"
|
1106 |
+
|
1107 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu.php:75
|
1108 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu.php:110
|
1109 |
+
msgid "All Users"
|
1110 |
+
msgstr "All Users"
|
1111 |
+
|
1112 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu.php:79
|
1113 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu.php:111
|
1114 |
+
msgid "Logged in Users"
|
1115 |
+
msgstr "Logged in Users"
|
1116 |
+
|
1117 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu.php:82
|
1118 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu.php:112
|
1119 |
+
msgid "Guest Users"
|
1120 |
+
msgstr "Guest Users"
|
1121 |
+
|
1122 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu.php:85
|
1123 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu.php:113
|
1124 |
+
msgid "Users by Role"
|
1125 |
+
msgstr "Users by Role"
|
1126 |
+
|
1127 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu.php:96
|
1128 |
+
#, php-format
|
1129 |
+
msgid "%s to limit based on roles."
|
1130 |
+
msgstr "%s to limit based on roles."
|
1131 |
+
|
1132 |
+
#: ../classes/class-wpfront-user-role-editor-nav-menu.php:108
|
1133 |
+
msgid "User Restrictions"
|
1134 |
+
msgstr "User Restrictions"
|
1135 |
+
|
1136 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:244
|
1137 |
msgid ""
|
1138 |
"These settings are applicable for the network admin dashboard. Also these "
|
1139 |
"settings will propagate to the individual sites unless its overridden within "
|
1143 |
"settings will propagate to the individual sites unless its overridden within "
|
1144 |
"that site’s settings."
|
1145 |
|
1146 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:251
|
1147 |
+
#: ../templates/options-template.php:59
|
1148 |
msgid "Enable Large Network Functionalities"
|
1149 |
msgstr "Enable Large Network Functionalities"
|
1150 |
|
1151 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:253
|
1152 |
msgid "This setting is only visible when you have a large network."
|
1153 |
msgstr "This setting is only visible when you have a large network."
|
1154 |
|
1155 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:255
|
1156 |
msgid "More details"
|
1157 |
msgstr "More details"
|
1158 |
|
1159 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:259
|
1160 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:286
|
1161 |
+
#: ../templates/options-template.php:68
|
1162 |
msgid "Display Deprecated Capabilities"
|
1163 |
msgstr "Display Deprecated Capabilities"
|
1164 |
|
1165 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:261
|
1166 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:288
|
1167 |
msgid ""
|
1168 |
"If enabled, deprecated capabilities will be displayed within the add/edit "
|
1169 |
"screens."
|
1171 |
"If enabled, deprecated capabilities will be displayed within the add/edit "
|
1172 |
"screens."
|
1173 |
|
1174 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:264
|
1175 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:291
|
1176 |
+
#: ../templates/options-template.php:76
|
1177 |
msgid "Remove Non-Standard Capabilities on Restore"
|
1178 |
msgstr "Remove Non-Standard Capabilities on Restore"
|
1179 |
|
1180 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:266
|
1181 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:293
|
1182 |
msgid ""
|
1183 |
"If enabled, while restoring WordPress built-in capabilities non-standard "
|
1184 |
"capabilities will be removed."
|
1186 |
"If enabled, while restoring WordPress built-in capabilities non-standard "
|
1187 |
"capabilities will be removed."
|
1188 |
|
1189 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:269
|
1190 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:296
|
1191 |
+
#: ../templates/options-template.php:84
|
1192 |
msgid "Override Edit Permissions"
|
1193 |
msgstr "Override Edit Permissions"
|
1194 |
|
1195 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:271
|
1196 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:298
|
1197 |
msgid "If enabled, ignores the check to the function get_editable_roles."
|
1198 |
msgstr "If enabled, ignores the check to the function get_editable_roles."
|
1199 |
|
1200 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:274
|
1201 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:301
|
1202 |
+
#: ../templates/options-template.php:121
|
1203 |
msgid "Remove Data on Uninstall"
|
1204 |
msgstr "Remove Data on Uninstall"
|
1205 |
|
1206 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:276
|
1207 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:303
|
1208 |
msgid ""
|
1209 |
"If enabled, removes all data related to this plugin from database (except "
|
1210 |
"roles data) including license information if any. This will not deactivate "
|
1214 |
"roles data) including license information if any. This will not deactivate "
|
1215 |
"the license automatically."
|
1216 |
|
1217 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:314
|
1218 |
msgid "Documentation on Multisite Settings"
|
1219 |
msgstr "Documentation on Multisite Settings"
|
1220 |
|
1221 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:321
|
1222 |
msgid "Documentation on Settings"
|
1223 |
msgstr "Documentation on Settings"
|
1224 |
|
1225 |
+
#: ../classes/class-wpfront-user-role-editor-restore.php:182
|
1226 |
msgid "Documentation on Restore"
|
1227 |
msgstr "Documentation on Restore"
|
1228 |
|
1229 |
+
#: ../classes/class-wpfront-user-role-editor.php:239
|
1230 |
msgid "Assign Roles | Migrate Users"
|
1231 |
msgstr "Assign Roles | Migrate Users"
|
1232 |
|
1233 |
+
#: ../classes/class-wpfront-user-role-editor.php:239
|
1234 |
msgid "Assign / Migrate"
|
1235 |
msgstr "Assign / Migrate"
|
1236 |
|
1237 |
+
#: ../classes/class-wpfront-user-role-editor.php:336
|
1238 |
msgid "Buy me a Beer"
|
1239 |
msgstr "Buy me a Beer"
|
1240 |
|
1241 |
+
#: ../classes/personal-pro/EDD_SL_Plugin_Updater.php:158
|
1242 |
+
#, php-format
|
1243 |
+
msgid ""
|
1244 |
+
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
1245 |
+
"\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
1246 |
+
msgstr ""
|
1247 |
+
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
1248 |
+
"\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
1249 |
+
|
1250 |
+
#: ../classes/personal-pro/EDD_SL_Plugin_Updater.php:165
|
1251 |
+
#, php-format
|
1252 |
+
msgid ""
|
1253 |
+
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
1254 |
+
"\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
|
1255 |
+
"\">update now</a>."
|
1256 |
+
msgstr ""
|
1257 |
+
"There is a new version of %1$s available. <a target=\"_blank\" class="
|
1258 |
+
"\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
|
1259 |
+
"\">update now</a>."
|
1260 |
+
|
1261 |
+
#: ../classes/personal-pro/EDD_SL_Plugin_Updater.php:305
|
1262 |
+
msgid "You do not have permission to install plugin updates"
|
1263 |
+
msgstr "You do not have permission to install plugin updates"
|
1264 |
+
|
1265 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-custom-post-types.php:32
|
1266 |
+
#, php-format
|
1267 |
+
msgid "%s in settings."
|
1268 |
+
msgstr "%s in settings."
|
1269 |
+
|
1270 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-custom-post-types.php:32
|
1271 |
+
msgid "Enable customization"
|
1272 |
+
msgstr "Enable customization"
|
1273 |
+
|
1274 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:132
|
1275 |
msgid ""
|
1276 |
"This screen allows you to export the roles existing within your site and "
|
1277 |
"import into the same site or a different site."
|
1279 |
"This screen allows you to export the roles existing within your site and "
|
1280 |
"import into the same site or a different site."
|
1281 |
|
1282 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:135
|
1283 |
msgid "Select the roles to export, then click Download Export File."
|
1284 |
msgstr "Select the roles to export, then click Download Export File."
|
1285 |
|
1286 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:144
|
1287 |
msgid "Documentation on Export"
|
1288 |
msgstr "Documentation on Export"
|
1289 |
|
1290 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:37
|
1291 |
msgid "This functionality requires SimpleXML extension, which is not loaded."
|
1292 |
msgstr "This functionality requires SimpleXML extension, which is not loaded."
|
1293 |
|
1294 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:85
|
1295 |
#, php-format
|
1296 |
msgid "%d role(s) imported."
|
1297 |
msgstr "%d role(s) imported."
|
1298 |
|
1299 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:106
|
1300 |
#, php-format
|
1301 |
msgid ""
|
1302 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
1305 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
1306 |
"this was caused by a permissions problem."
|
1307 |
|
1308 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:137
|
1309 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:145
|
1310 |
msgid "There was an error when reading this export file"
|
1311 |
msgstr "There was an error when reading this export file"
|
1312 |
|
1313 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:162
|
1314 |
#, php-format
|
1315 |
msgid ""
|
1316 |
"Please update the plugin to latest version. This export file requires plugin "
|
1319 |
"Please update the plugin to latest version. This export file requires plugin "
|
1320 |
"version %s or higher."
|
1321 |
|
1322 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:218
|
1323 |
msgid "This file does not appears to be a valid export file."
|
1324 |
msgstr "This file does not appears to be a valid export file."
|
1325 |
|
1326 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:231
|
1327 |
msgid ""
|
1328 |
"Step 1: Select export file using the Browse button. Then click Upload file "
|
1329 |
"and Import."
|
1331 |
"Step 1: Select export file using the Browse button. Then click Upload file "
|
1332 |
"and Import."
|
1333 |
|
1334 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:234
|
1335 |
msgid ""
|
1336 |
"Step 2: Select the roles you want to import using the check boxes and click "
|
1337 |
"Import Roles."
|
1339 |
"Step 2: Select the roles you want to import using the check boxes and click "
|
1340 |
"Import Roles."
|
1341 |
|
1342 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:243
|
1343 |
msgid "Documentation on Import"
|
1344 |
msgstr "Documentation on Import"
|
1345 |
|
1346 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:161
|
1347 |
msgid "Menu changes saved."
|
1348 |
msgstr "Menu changes saved."
|
1349 |
|
1350 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:174
|
1351 |
msgid "Menu defaults restored."
|
1352 |
msgstr "Menu defaults restored."
|
1353 |
|
1354 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:189
|
1355 |
msgid "No editable roles found on this site."
|
1356 |
msgstr "No editable roles found on this site."
|
1357 |
|
1358 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:573
|
1359 |
msgid ""
|
1360 |
"This screen allows you to enable and disable admin menus for a particular "
|
1361 |
"role."
|
1363 |
"This screen allows you to enable and disable admin menus for a particular "
|
1364 |
"role."
|
1365 |
|
1366 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:576
|
1367 |
msgid "Deselect a menu from the grid to remove that menu."
|
1368 |
msgstr "Deselect a menu from the grid to remove that menu."
|
1369 |
|
1370 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:579
|
1371 |
msgid ""
|
1372 |
"Disabled menu items are already hidden, because the selected role doesn't "
|
1373 |
"have the capability to display that menu. Grid displays menus which the "
|
1377 |
"have the capability to display that menu. Grid displays menus which the "
|
1378 |
"current user has access to."
|
1379 |
|
1380 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:584
|
1381 |
msgid "Fields"
|
1382 |
msgstr "Fields"
|
1383 |
|
1384 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:586
|
1385 |
+
#: ../templates/personal-pro/menu-editor.php:39
|
1386 |
msgid "Override Role"
|
1387 |
msgstr "Override Role"
|
1388 |
|
1389 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:588
|
1390 |
msgid "The role you want to override."
|
1391 |
msgstr "The role you want to override."
|
1392 |
|
1393 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:591
|
1394 |
+
#: ../templates/personal-pro/menu-editor.php:56
|
1395 |
msgid "Override Type"
|
1396 |
msgstr "Override Type"
|
1397 |
|
1398 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:593
|
1399 |
msgid ""
|
1400 |
"Soft - Pages may be available through directly typing the URL. Hard - Even "
|
1401 |
"URLs will be blocked."
|
1403 |
"Soft - Pages may be available through directly typing the URL. Hard - Even "
|
1404 |
"URLs will be blocked."
|
1405 |
|
1406 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:596
|
1407 |
+
#: ../templates/personal-pro/menu-editor.php:67
|
1408 |
msgid "Hide New Menus"
|
1409 |
msgstr "Hide New Menus"
|
1410 |
|
1411 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:598
|
1412 |
msgid "Allow you to hide future menus."
|
1413 |
msgstr "Allow you to hide future menus."
|
1414 |
|
1415 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:601
|
1416 |
+
#: ../templates/personal-pro/menu-editor.php:75
|
1417 |
msgid "Disable For Secondary Role"
|
1418 |
msgstr "Disable For Secondary Role"
|
1419 |
|
1420 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:603
|
1421 |
msgid "Disables menu settings while the selected role is a secondary role."
|
1422 |
msgstr "Disables menu settings while the selected role is a secondary role."
|
1423 |
|
1424 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:608
|
1425 |
msgid "Restore Default"
|
1426 |
msgstr "Restore Default"
|
1427 |
|
1428 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:610
|
1429 |
msgid ""
|
1430 |
"Select \"Restore default\" from the \"Copy from\" drop down and click apply."
|
1431 |
msgstr ""
|
1432 |
"Select \"Restore default\" from the \"Copy from\" drop down and click apply."
|
1433 |
|
1434 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:619
|
1435 |
msgid "Documentation on Menu Editor"
|
1436 |
msgstr "Documentation on Menu Editor"
|
1437 |
|
1438 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-nav-menu-pro.php:23
|
1439 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:105
|
1440 |
+
msgid "[Guest]"
|
1441 |
+
msgstr "[Guest]"
|
1442 |
+
|
1443 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:77
|
1444 |
+
#: ../templates/personal-pro/menu-editor.php:9
|
1445 |
msgid "Menu Editor"
|
1446 |
msgstr "Menu Editor"
|
1447 |
|
1448 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:78
|
1449 |
+
#: ../templates/personal-pro/export-roles.php:9
|
1450 |
msgid "Export Roles"
|
1451 |
msgstr "Export Roles"
|
1452 |
|
1453 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:78
|
1454 |
msgid "Export"
|
1455 |
msgstr "Export"
|
1456 |
|
1457 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:79
|
1458 |
+
#: ../templates/personal-pro/import-roles.php:9
|
1459 |
+
#: ../templates/personal-pro/import-roles.php:88
|
1460 |
msgid "Import Roles"
|
1461 |
msgstr "Import Roles"
|
1462 |
|
1463 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:79
|
1464 |
msgid "Import"
|
1465 |
msgstr "Import"
|
1466 |
|
1467 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:99
|
1468 |
#, php-format
|
1469 |
msgid "%s license not activated."
|
1470 |
msgstr "%s license not activated."
|
1471 |
|
1472 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:70
|
1473 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:316
|
1474 |
msgid "Role Permissions"
|
1475 |
msgstr "Role Permissions"
|
1476 |
|
1477 |
+
#: ../templates/add-edit-role.php:41
|
1478 |
msgid "Edit Role"
|
1479 |
msgstr "Edit Role"
|
1480 |
|
1481 |
+
#: ../templates/add-edit-role.php:51
|
1482 |
msgid "This role already exists in this site."
|
1483 |
msgstr "This role already exists in this site."
|
1484 |
|
1485 |
+
#: ../templates/add-edit-role.php:59
|
1486 |
msgid "There was an unexpected error while performing this action."
|
1487 |
msgstr "There was an unexpected error while performing this action."
|
1488 |
|
1489 |
+
#: ../templates/add-edit-role.php:66
|
1490 |
msgid "Create a brand new role and add it to this site."
|
1491 |
msgstr "Create a brand new role and add it to this site."
|
1492 |
|
1493 |
+
#: ../templates/add-edit-role.php:77 ../templates/add-edit-role.php:87
|
1494 |
msgid "required"
|
1495 |
msgstr "required"
|
1496 |
|
1497 |
+
#: ../templates/add-edit-role.php:106
|
1498 |
+
#: ../templates/personal-pro/menu-editor.php:89
|
1499 |
msgid "Copy from"
|
1500 |
msgstr "Copy from"
|
1501 |
|
1502 |
+
#: ../templates/add-edit-role.php:118
|
1503 |
msgid "Select None"
|
1504 |
msgstr "Select None"
|
1505 |
|
1506 |
+
#: ../templates/add-edit-role.php:140
|
1507 |
msgid "Update Role"
|
1508 |
msgstr "Update Role"
|
1509 |
|
1510 |
+
#: ../templates/assign-roles.php:68
|
1511 |
msgid "User"
|
1512 |
msgstr "User"
|
1513 |
|
1514 |
+
#: ../templates/assign-roles.php:109
|
1515 |
msgid "From Primary Role"
|
1516 |
msgstr "From Primary Role"
|
1517 |
|
1518 |
+
#: ../templates/business-pro/sync-roles.php:29
|
1519 |
msgid "Step 1: Select the source site"
|
1520 |
msgstr "Step 1: Select the source site"
|
1521 |
|
1522 |
+
#: ../templates/business-pro/sync-roles.php:38
|
1523 |
+
#: ../templates/business-pro/sync-roles.php:88
|
1524 |
msgid "Search Sites"
|
1525 |
msgstr "Search Sites"
|
1526 |
|
1527 |
+
#: ../templates/business-pro/sync-roles.php:44
|
1528 |
+
#: ../templates/business-pro/sync-roles.php:99
|
1529 |
+
#: ../templates/business-pro/sync-roles.php:249
|
1530 |
msgid "Next Step"
|
1531 |
msgstr "Next Step"
|
1532 |
|
1533 |
+
#: ../templates/business-pro/sync-roles.php:74
|
1534 |
msgid "Step 2: Select destination sites"
|
1535 |
msgstr "Step 2: Select destination sites"
|
1536 |
|
1537 |
+
#: ../templates/business-pro/sync-roles.php:78
|
1538 |
+
#: ../templates/business-pro/sync-roles.php:273
|
1539 |
msgid "All Sites"
|
1540 |
msgstr "All Sites"
|
1541 |
|
1542 |
+
#: ../templates/business-pro/sync-roles.php:81
|
1543 |
msgid "Selected Sites"
|
1544 |
msgstr "Selected Sites"
|
1545 |
|
1546 |
+
#: ../templates/business-pro/sync-roles.php:220
|
1547 |
msgid "Step 3: Choose settings"
|
1548 |
msgstr "Step 3: Choose settings"
|
1549 |
|
1550 |
+
#: ../templates/business-pro/sync-roles.php:259
|
1551 |
msgid "Step 4: Confirm and Sync"
|
1552 |
msgstr "Step 4: Confirm and Sync"
|
1553 |
|
1554 |
+
#: ../templates/business-pro/sync-roles.php:264
|
1555 |
msgid "Source: "
|
1556 |
msgstr "Source: "
|
1557 |
|
1558 |
+
#: ../templates/business-pro/sync-roles.php:272
|
1559 |
msgid "Destination: "
|
1560 |
msgstr "Destination: "
|
1561 |
|
1562 |
+
#: ../templates/business-pro/sync-roles.php:273
|
1563 |
msgid "Selected sites"
|
1564 |
msgstr "Selected sites"
|
1565 |
|
1566 |
+
#: ../templates/business-pro/sync-roles.php:273
|
1567 |
#, php-format
|
1568 |
msgid "%s site(s) selected"
|
1569 |
msgstr "%s site(s) selected"
|
1570 |
|
1571 |
+
#: ../templates/business-pro/sync-roles.php:278
|
1572 |
msgid "Add roles existing only in source: "
|
1573 |
msgstr "Add roles existing only in source: "
|
1574 |
|
1575 |
+
#: ../templates/business-pro/sync-roles.php:279
|
1576 |
+
#: ../templates/business-pro/sync-roles.php:285
|
1577 |
+
#: ../templates/business-pro/sync-roles.php:291
|
1578 |
+
#: ../templates/business-pro/sync-roles.php:297
|
1579 |
msgid "Yes"
|
1580 |
msgstr "Yes"
|
1581 |
|
1582 |
+
#: ../templates/business-pro/sync-roles.php:279
|
1583 |
+
#: ../templates/business-pro/sync-roles.php:285
|
1584 |
+
#: ../templates/business-pro/sync-roles.php:291
|
1585 |
+
#: ../templates/business-pro/sync-roles.php:297
|
1586 |
msgid "No"
|
1587 |
msgstr "No"
|
1588 |
|
1589 |
+
#: ../templates/business-pro/sync-roles.php:284
|
1590 |
msgid "Overwrite existing roles: "
|
1591 |
msgstr "Overwrite existing roles: "
|
1592 |
|
1593 |
+
#: ../templates/business-pro/sync-roles.php:290
|
1594 |
msgid "Remove roles existing only in destination: "
|
1595 |
msgstr "Remove roles existing only in destination: "
|
1596 |
|
1597 |
+
#: ../templates/business-pro/sync-roles.php:296
|
1598 |
msgid "Update new user default role: "
|
1599 |
msgstr "Update new user default role: "
|
1600 |
|
1601 |
+
#: ../templates/business-pro/sync-roles.php:348
|
1602 |
msgid "SUCCESS"
|
1603 |
msgstr "SUCCESS"
|
1604 |
|
1605 |
+
#: ../templates/business-pro/sync-roles.php:351
|
1606 |
msgid "FAIL"
|
1607 |
msgstr "FAIL"
|
1608 |
|
1609 |
+
#: ../templates/business-pro/sync-roles.php:374
|
1610 |
msgid "Synching site"
|
1611 |
msgstr "Synching site"
|
1612 |
|
1613 |
+
#: ../templates/delete-role.php:41
|
1614 |
msgid "Delete Roles"
|
1615 |
msgstr "Delete Roles"
|
1616 |
|
1617 |
+
#: ../templates/delete-role.php:42
|
1618 |
msgid "You have specified these roles for deletion"
|
1619 |
msgstr "You have specified these roles for deletion"
|
1620 |
|
1621 |
+
#: ../templates/delete-role.php:49
|
1622 |
msgid "Role"
|
1623 |
msgstr "Role"
|
1624 |
|
1625 |
+
#: ../templates/delete-role.php:61
|
1626 |
msgid "Confirm Deletion"
|
1627 |
msgstr "Confirm Deletion"
|
1628 |
|
1629 |
+
#: ../templates/go-pro.php:42
|
1630 |
msgid "WPFront User Role Editor Pro"
|
1631 |
msgstr "WPFront User Role Editor Pro"
|
1632 |
|
1633 |
+
#: ../templates/go-pro.php:65
|
1634 |
msgid "License Key"
|
1635 |
msgstr "License Key"
|
1636 |
|
1637 |
+
#: ../templates/go-pro.php:74 ../templates/go-pro.php:75
|
1638 |
msgid "Deactivate"
|
1639 |
msgstr "Deactivate"
|
1640 |
|
1641 |
+
#: ../templates/go-pro.php:82
|
1642 |
msgid "License Expires"
|
1643 |
msgstr "License Expires"
|
1644 |
|
1645 |
+
#: ../templates/options-template.php:37
|
1646 |
msgid "WPFront User Role Editor Settings"
|
1647 |
msgstr "WPFront User Role Editor Settings"
|
1648 |
|
1649 |
+
#: ../templates/options-template.php:46
|
1650 |
+
#, php-format
|
1651 |
+
msgid ""
|
1652 |
+
"Menu walker class is overriden by a theme/plugin. Current value = %s. "
|
1653 |
+
"Navigation menu permissions may still work. %s"
|
1654 |
+
msgstr ""
|
1655 |
+
"Menu walker class is overriden by a theme/plugin. Current value = %s. "
|
1656 |
+
"Navigation menu permissions may still work. %s"
|
1657 |
+
|
1658 |
+
#: ../templates/options-template.php:46
|
1659 |
+
msgid "More information"
|
1660 |
+
msgstr "More information"
|
1661 |
+
|
1662 |
+
#: ../templates/options-template.php:93
|
1663 |
+
msgid "Customize Permissions (custom post types)"
|
1664 |
+
msgstr "Customize Permissions (custom post types)"
|
1665 |
+
|
1666 |
+
#: ../templates/options-template.php:99
|
1667 |
+
msgid "No customizable post types found."
|
1668 |
+
msgstr "No customizable post types found."
|
1669 |
+
|
1670 |
+
#: ../templates/personal-pro/export-roles.php:13
|
1671 |
msgid "Select the roles to be uploaded"
|
1672 |
msgstr "Select the roles to be uploaded"
|
1673 |
|
1674 |
+
#: ../templates/personal-pro/export-roles.php:40
|
1675 |
msgid "Download Export File"
|
1676 |
msgstr "Download Export File"
|
1677 |
|
1678 |
+
#: ../templates/personal-pro/import-roles.php:21
|
1679 |
msgid "ERROR:"
|
1680 |
msgstr "ERROR:"
|
1681 |
|
1682 |
+
#: ../templates/personal-pro/import-roles.php:30
|
1683 |
msgid ""
|
1684 |
"Choose a WPFront User Role Editor export file (.xml) to upload, then click "
|
1685 |
"Upload file and import."
|
1687 |
"Choose a WPFront User Role Editor export file (.xml) to upload, then click "
|
1688 |
"Upload file and import."
|
1689 |
|
1690 |
+
#: ../templates/personal-pro/import-roles.php:39
|
1691 |
#, php-format
|
1692 |
msgid "Roles exported from %s on %s by user %s."
|
1693 |
msgstr "Roles exported from %s on %s by user %s."
|
1694 |
|
1695 |
+
#: ../templates/personal-pro/import-roles.php:39
|
1696 |
msgid "UTC"
|
1697 |
msgstr "UTC"
|
1698 |
|
1699 |
+
#: ../templates/personal-pro/import-roles.php:46
|
1700 |
msgid "Zero roles found in this export file to import."
|
1701 |
msgstr "Zero roles found in this export file to import."
|
1702 |
|
1703 |
+
#: ../templates/personal-pro/import-roles.php:52
|
1704 |
msgid "Select roles to import"
|
1705 |
msgstr "Select roles to import"
|
1706 |
|
1707 |
+
#: ../templates/personal-pro/import-roles.php:81
|
1708 |
msgid ""
|
1709 |
"* These roles already exist in this site. Importing them will overwrite "
|
1710 |
"existing roles."
|
1712 |
"* These roles already exist in this site. Importing them will overwrite "
|
1713 |
"existing roles."
|
1714 |
|
1715 |
+
#: ../templates/personal-pro/menu-editor.php:26
|
1716 |
msgid ""
|
1717 |
"Select a role below to edit menu for that role. Deselect a menu from the "
|
1718 |
"grid to remove that menu. Disabled menu items are already hidden, because "
|
1724 |
"the selected role doesn't have the capability to display that menu. Grid "
|
1725 |
"displays menus which the current user has access to. "
|
1726 |
|
1727 |
+
#: ../templates/personal-pro/menu-editor.php:60
|
1728 |
msgid "Soft"
|
1729 |
msgstr "Soft"
|
1730 |
|
1731 |
+
#: ../templates/personal-pro/menu-editor.php:61
|
1732 |
msgid "Hard"
|
1733 |
msgstr "Hard"
|
1734 |
|
1735 |
+
#: ../templates/personal-pro/menu-editor.php:92
|
1736 |
msgid "Restore default"
|
1737 |
msgstr "Restore default"
|
1738 |
|
1739 |
+
#: ../templates/personal-pro/menu-editor.php:105
|
1740 |
msgid "Hide deselected item(s)"
|
1741 |
msgstr "Hide deselected item(s)"
|
1742 |
|
1743 |
+
#: ../templates/personal-pro/menu-editor.php:110
|
1744 |
msgid "Hide disabled item(s)"
|
1745 |
msgstr "Hide disabled item(s)"
|
1746 |
|
1747 |
+
#: ../templates/personal-pro/menu-editor.php:116
|
1748 |
msgid "Has Capability"
|
1749 |
msgstr "Has Capability"
|
1750 |
|
1751 |
+
#: ../templates/personal-pro/menu-editor.php:121
|
1752 |
msgid "No Capability"
|
1753 |
msgstr "No Capability"
|
1754 |
|
1755 |
+
#: ../templates/personal-pro/menu-editor.php:141
|
1756 |
msgid "Capability"
|
1757 |
msgstr "Capability"
|
1758 |
|
1759 |
+
#: ../templates/personal-pro/menu-editor.php:144
|
1760 |
msgid "Menu Slug"
|
1761 |
msgstr "Menu Slug"
|
1762 |
|
1763 |
+
#: ../templates/personal-pro/post-type-permissions.php:25
|
1764 |
msgid "Enable Role Permissions"
|
1765 |
msgstr "Enable Role Permissions"
|
1766 |
|
1767 |
+
#: ../templates/personal-pro/post-type-permissions.php:33
|
1768 |
msgid "Read"
|
1769 |
msgstr "Read"
|
1770 |
|
1771 |
+
#: ../templates/restore-role.php:55
|
|
|
|
|
|
|
|
|
1772 |
msgid "Confirm"
|
1773 |
msgstr "Confirm"
|
1774 |
|
1775 |
+
#: ../templates/restore-role.php:63
|
1776 |
msgid "Restored"
|
1777 |
msgstr "Restored"
|
1778 |
|
1779 |
+
#: ../templates/restore-role.php:107
|
1780 |
msgid "Unexpected error / Timed out"
|
1781 |
msgstr "Unexpected error / Timed out"
|
1782 |
|
readme.txt
CHANGED
@@ -1,170 +1,178 @@
|
|
1 |
-
=== WPFront User Role Editor ===
|
2 |
-
Contributors: syammohanm
|
3 |
-
Donate link: https://wpfront.com/donate/
|
4 |
-
Tags: WordPress user role editor, user role editor, role editor, user role, role, WordPress user roles, user roles, roles, user roles editor, roles editor, role manager, roles manager, manage roles, manage role, access, capability, editor, permission, role, security, user, capability editor, capability manager, custom post types, custom post type permissions, custom post type capabilities, post type permissions, post type capabilities, menu editor, role menu, role menu editor, multisite roles, multisite role editor, multisite user roles, import roles, export roles
|
5 |
-
Requires at least: 3.5
|
6 |
-
Tested up to: 4.1
|
7 |
-
Stable tag: 2.5
|
8 |
-
License: GPLv3
|
9 |
-
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
-
|
11 |
-
Easily allows you to manage WordPress user roles. You can create, edit, delete and manage capabilities, also copy existing roles.
|
12 |
-
|
13 |
-
== Description ==
|
14 |
-
WPFront User Role Editor plugin allows you to easily manage WordPress user roles within your site.
|
15 |
-
You can create, edit or delete user roles and manage role capabilities.
|
16 |
-
|
17 |
-
### Features
|
18 |
-
* Create new roles.
|
19 |
-
* Edit or rename existing roles.
|
20 |
-
* Clone existing roles.
|
21 |
-
* Manage capabilities.
|
22 |
-
* Allows you to add role capabilities.
|
23 |
-
* Change default user role.
|
24 |
-
* Restore role.
|
25 |
-
* Assign multiple roles.
|
26 |
-
* Migrate users.
|
27 |
-
* Navigation menu permissions basic.
|
28 |
-
* Admin menu editor. [PRO]
|
29 |
-
* Navigation menu permissions advanced. [PRO]
|
30 |
-
* Post/Page extended permissions. [PRO]
|
31 |
-
* Custom post type permissions. [PRO]
|
32 |
-
* Import/Export. [PRO]
|
33 |
-
* Multisite support. [PRO]
|
34 |
-
|
35 |
-
Compare [User Role Editor Pro](https://wpfront.com/ppro)
|
36 |
-
|
37 |
-
Localization Contributors:
|
38 |
-
<li>[Mauro Mascarenhas](http://nintersoft.ml) (Portuguese) </li>
|
39 |
-
|
40 |
-
Spanish tutorial
|
41 |
-
https://www.youtube.com/watch?v=YRZdWH-uukI
|
42 |
-
|
43 |
-
== Installation ==
|
44 |
-
|
45 |
-
1. Click Plugins/Add New from the WordPress admin panel
|
46 |
-
1. Search for "WPFront User Role Editor" and install
|
47 |
-
|
48 |
-
-or-
|
49 |
-
|
50 |
-
1. Download the .zip package
|
51 |
-
1. Unzip into the subdirectory 'wpfront-user-role-editor' within your local WordPress plugins directory
|
52 |
-
1. Refresh plugin page and activate plugin
|
53 |
-
1. Configure plugin using *settings* link under plugin name or by going to WPFront/User Role Editor
|
54 |
-
|
55 |
-
== Frequently Asked Questions ==
|
56 |
-
|
57 |
-
Please visit [WPFront User Role Editor FAQ](https://wpfront.com/user-role-editor-pro/faq/).
|
58 |
-
|
59 |
-
== Screenshots ==
|
60 |
-
|
61 |
-
01. Roles list
|
62 |
-
02. Settings
|
63 |
-
03. Assign / Migrate users
|
64 |
-
04. Custom post type permissions
|
65 |
-
05. Extended permissions
|
66 |
-
06. Menu editor
|
67 |
-
07. Export roles
|
68 |
-
08. Import roles
|
69 |
-
09. Multisite sync roles
|
70 |
-
10. Add new role
|
71 |
-
11. Edit role
|
72 |
-
12. Restore role
|
73 |
-
13. Navigation menu permissions
|
74 |
-
|
75 |
-
== Changelog ==
|
76 |
-
|
77 |
-
= 2.5 =
|
78 |
-
* Navigation menu
|
79 |
-
*
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
*
|
84 |
-
*
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
*
|
89 |
-
*
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
*
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
*
|
103 |
-
*
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
*
|
108 |
-
*
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
*
|
113 |
-
*
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
=
|
131 |
-
*
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
*
|
137 |
-
|
138 |
-
= 2.
|
139 |
-
*
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
*
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
=== WPFront User Role Editor ===
|
2 |
+
Contributors: syammohanm
|
3 |
+
Donate link: https://wpfront.com/donate/
|
4 |
+
Tags: WordPress user role editor, user role editor, role editor, user role, role, WordPress user roles, user roles, roles, user roles editor, roles editor, role manager, roles manager, manage roles, manage role, access, capability, editor, permission, role, security, user, capability editor, capability manager, custom post types, custom post type permissions, custom post type capabilities, post type permissions, post type capabilities, menu editor, role menu, role menu editor, multisite roles, multisite role editor, multisite user roles, import roles, export roles
|
5 |
+
Requires at least: 3.5
|
6 |
+
Tested up to: 4.1
|
7 |
+
Stable tag: 2.5.1
|
8 |
+
License: GPLv3
|
9 |
+
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
+
|
11 |
+
Easily allows you to manage WordPress user roles. You can create, edit, delete and manage capabilities, also copy existing roles.
|
12 |
+
|
13 |
+
== Description ==
|
14 |
+
WPFront User Role Editor plugin allows you to easily manage WordPress user roles within your site.
|
15 |
+
You can create, edit or delete user roles and manage role capabilities.
|
16 |
+
|
17 |
+
### Features
|
18 |
+
* Create new roles.
|
19 |
+
* Edit or rename existing roles.
|
20 |
+
* Clone existing roles.
|
21 |
+
* Manage capabilities.
|
22 |
+
* Allows you to add role capabilities.
|
23 |
+
* Change default user role.
|
24 |
+
* Restore role.
|
25 |
+
* Assign multiple roles.
|
26 |
+
* Migrate users.
|
27 |
+
* Navigation menu permissions basic.
|
28 |
+
* Admin menu editor. [PRO]
|
29 |
+
* Navigation menu permissions advanced. [PRO]
|
30 |
+
* Post/Page extended permissions. [PRO]
|
31 |
+
* Custom post type permissions. [PRO]
|
32 |
+
* Import/Export. [PRO]
|
33 |
+
* Multisite support. [PRO]
|
34 |
+
|
35 |
+
Compare [User Role Editor Pro](https://wpfront.com/ppro)
|
36 |
+
|
37 |
+
Localization Contributors:
|
38 |
+
<li>[Mauro Mascarenhas](http://nintersoft.ml) (Portuguese) </li>
|
39 |
+
|
40 |
+
Spanish tutorial
|
41 |
+
https://www.youtube.com/watch?v=YRZdWH-uukI
|
42 |
+
|
43 |
+
== Installation ==
|
44 |
+
|
45 |
+
1. Click Plugins/Add New from the WordPress admin panel
|
46 |
+
1. Search for "WPFront User Role Editor" and install
|
47 |
+
|
48 |
+
-or-
|
49 |
+
|
50 |
+
1. Download the .zip package
|
51 |
+
1. Unzip into the subdirectory 'wpfront-user-role-editor' within your local WordPress plugins directory
|
52 |
+
1. Refresh plugin page and activate plugin
|
53 |
+
1. Configure plugin using *settings* link under plugin name or by going to WPFront/User Role Editor
|
54 |
+
|
55 |
+
== Frequently Asked Questions ==
|
56 |
+
|
57 |
+
Please visit [WPFront User Role Editor FAQ](https://wpfront.com/user-role-editor-pro/faq/).
|
58 |
+
|
59 |
+
== Screenshots ==
|
60 |
+
|
61 |
+
01. Roles list
|
62 |
+
02. Settings
|
63 |
+
03. Assign / Migrate users
|
64 |
+
04. Custom post type permissions
|
65 |
+
05. Extended permissions
|
66 |
+
06. Menu editor
|
67 |
+
07. Export roles
|
68 |
+
08. Import roles
|
69 |
+
09. Multisite sync roles
|
70 |
+
10. Add new role
|
71 |
+
11. Edit role
|
72 |
+
12. Restore role
|
73 |
+
13. Navigation menu permissions
|
74 |
+
|
75 |
+
== Changelog ==
|
76 |
+
|
77 |
+
= 2.5.1 =
|
78 |
+
* Navigation menu permission setting added. [Documentation](https://wpfront.com/user-role-editor-pro/navigation-menu-permissions/).
|
79 |
+
* IMPORTANT: Disable navigation menu permission, if you already have a Nav Menu permission plugin and if it stops working.
|
80 |
+
* Navigation menu permission uninstall cleanup bug fix.
|
81 |
+
|
82 |
+
= 2.5 =
|
83 |
+
* Navigation menu permissions added. [Documentation](https://wpfront.com/user-role-editor-pro/navigation-menu-permissions/).
|
84 |
+
* Compatibility fix with "The Events Calendar".
|
85 |
+
|
86 |
+
= 2.4 =
|
87 |
+
* Gravity forms integration.
|
88 |
+
* UI changes to make columns hidden on small screens.
|
89 |
+
* Bug fix: Extended permissions not working in search results.
|
90 |
+
* Portuguese (Brazil) language added.
|
91 |
+
|
92 |
+
= 2.3 =
|
93 |
+
* Duplicator integration.
|
94 |
+
* Performance fix. Thanks to Jezze.
|
95 |
+
|
96 |
+
= 2.2.1 =
|
97 |
+
* Extended permissions bug fix.
|
98 |
+
|
99 |
+
= 2.2 =
|
100 |
+
* Extended permissions enhanced with [Guest].
|
101 |
+
* User profile secondary roles added.
|
102 |
+
* UI enhancements.
|
103 |
+
* Menu editor bug fix. Thanks to Marcus.
|
104 |
+
* Multisite user assignment bug fix.
|
105 |
+
|
106 |
+
= 2.1 =
|
107 |
+
* Custom post type permissions.
|
108 |
+
* Bug fixes.
|
109 |
+
|
110 |
+
= 2.0 =
|
111 |
+
* Removed 'wpfront_' from role capabilities.
|
112 |
+
* Removed 'Add role capabilities'. It is enabled by default.
|
113 |
+
* Assign/Migrate users.
|
114 |
+
* Bug fixes.
|
115 |
+
|
116 |
+
= 1.2 =
|
117 |
+
* Restore role.
|
118 |
+
* Bug fixes.
|
119 |
+
|
120 |
+
= 1.1 =
|
121 |
+
* Edit deprecated capabilities.
|
122 |
+
|
123 |
+
= 1.0 =
|
124 |
+
* Set new user default role.
|
125 |
+
* Stability improvements.
|
126 |
+
|
127 |
+
= 0.3.1 =
|
128 |
+
* Bug fixes.
|
129 |
+
|
130 |
+
= 0.3 =
|
131 |
+
* Initial release.
|
132 |
+
|
133 |
+
== Upgrade Notice ==
|
134 |
+
|
135 |
+
= 2.5.1 =
|
136 |
+
* Navigation menu permission setting added.
|
137 |
+
|
138 |
+
= 2.5 =
|
139 |
+
* Navigation menu permissions and compatibility fix.
|
140 |
+
|
141 |
+
= 2.4 =
|
142 |
+
* Gravity forms integration.
|
143 |
+
* UI enhancements.
|
144 |
+
* Bug fixes.
|
145 |
+
|
146 |
+
= 2.3 =
|
147 |
+
* Integrates with Duplicator plugin.
|
148 |
+
* Performance fix on list roles.
|
149 |
+
|
150 |
+
= 2.2.1 =
|
151 |
+
* Bug fixes.
|
152 |
+
|
153 |
+
= 2.2 =
|
154 |
+
* Various bug fixes and enhancements.
|
155 |
+
|
156 |
+
= 2.1 =
|
157 |
+
* Manage custom post type permissions.
|
158 |
+
|
159 |
+
= 2.0 =
|
160 |
+
* Now you can assign multiple roles to a user.
|
161 |
+
* Migrate users from role to role.
|
162 |
+
|
163 |
+
= 1.2 =
|
164 |
+
* Now you can restore roles.
|
165 |
+
|
166 |
+
= 1.1 =
|
167 |
+
* Can edit deprecated capabilities now.
|
168 |
+
|
169 |
+
= 1.0 =
|
170 |
+
* Easily set new user default role.
|
171 |
+
|
172 |
+
= 0.3.1 =
|
173 |
+
* Fixed an issue with deleting roles.
|
174 |
+
|
175 |
+
= 0.3 =
|
176 |
+
* Initial release.
|
177 |
+
|
178 |
+
|
templates/go-pro-table
CHANGED
@@ -68,6 +68,9 @@
|
|
68 |
<div class="cell">
|
69 |
Assign/Migrate Users
|
70 |
</div>
|
|
|
|
|
|
|
71 |
<div class="cell">
|
72 |
<i class="fa fa-times"></i>
|
73 |
</div>
|
@@ -100,6 +103,9 @@
|
|
100 |
<div class="cell">
|
101 |
Assign/Migrate Users
|
102 |
</div>
|
|
|
|
|
|
|
103 |
<div class="cell">
|
104 |
Import/Export
|
105 |
</div>
|
@@ -134,6 +140,9 @@
|
|
134 |
</div>
|
135 |
<div class="cell">
|
136 |
Assign/Migrate Users
|
|
|
|
|
|
|
137 |
</div>
|
138 |
<div class="cell">
|
139 |
Import/Export
|
68 |
<div class="cell">
|
69 |
Assign/Migrate Users
|
70 |
</div>
|
71 |
+
<div class="cell">
|
72 |
+
Navigation Menu Basic
|
73 |
+
</div>
|
74 |
<div class="cell">
|
75 |
<i class="fa fa-times"></i>
|
76 |
</div>
|
103 |
<div class="cell">
|
104 |
Assign/Migrate Users
|
105 |
</div>
|
106 |
+
<div class="cell">
|
107 |
+
Navigation Menu Advanced
|
108 |
+
</div>
|
109 |
<div class="cell">
|
110 |
Import/Export
|
111 |
</div>
|
140 |
</div>
|
141 |
<div class="cell">
|
142 |
Assign/Migrate Users
|
143 |
+
</div>
|
144 |
+
<div class="cell">
|
145 |
+
Navigation Menu Advanced
|
146 |
</div>
|
147 |
<div class="cell">
|
148 |
Import/Export
|
templates/options-template.php
CHANGED
@@ -38,15 +38,17 @@ if (!defined('ABSPATH')) {
|
|
38 |
?>
|
39 |
|
40 |
<?php
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
<
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
|
|
|
|
50 |
}
|
51 |
?>
|
52 |
|
@@ -87,6 +89,14 @@ if ($menu_walker !== WPFront_User_Role_Editor_Nav_Menu::override_edit_nav_menu_w
|
|
87 |
<input type="checkbox" name="override_edit_permissions" <?php echo $this->override_edit_permissions() ? 'checked' : ''; ?> />
|
88 |
</td>
|
89 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
<?php if ($this->main->enable_pro_only_options() && !$this->multisite) { ?>
|
91 |
<tr>
|
92 |
<th scope="row">
|
38 |
?>
|
39 |
|
40 |
<?php
|
41 |
+
if ($this->disable_navigation_menu_permissions() === FALSE) {
|
42 |
+
$menu_walker = apply_filters('wp_edit_nav_menu_walker', 'Walker_Nav_Menu_Edit', 0);
|
43 |
+
if ($menu_walker !== WPFront_User_Role_Editor_Nav_Menu::override_edit_nav_menu_walker()) {
|
44 |
+
?>
|
45 |
+
<div class="error below-h2">
|
46 |
+
<p>
|
47 |
+
<?php echo sprintf($this->__('Menu walker class is overriden by a theme/plugin. Current value = %s. Navigation menu permissions may still work. %s'), $menu_walker, '<a target="_blank" href="' . WPFront_User_Role_Editor_Nav_Menu::nav_menu_help_url() . '#navigation-menu-permission-warning">' . $this->__('More information') . '</a>'); ?>
|
48 |
+
</p>
|
49 |
+
</div>
|
50 |
+
<?php
|
51 |
+
}
|
52 |
}
|
53 |
?>
|
54 |
|
89 |
<input type="checkbox" name="override_edit_permissions" <?php echo $this->override_edit_permissions() ? 'checked' : ''; ?> />
|
90 |
</td>
|
91 |
</tr>
|
92 |
+
<tr>
|
93 |
+
<th scope="row">
|
94 |
+
<?php echo $this->__('Disable Navigation Menu Permissions'); ?>
|
95 |
+
</th>
|
96 |
+
<td>
|
97 |
+
<input type="checkbox" name="disable_navigation_menu_permissions" <?php echo $this->disable_navigation_menu_permissions() ? 'checked' : ''; ?> />
|
98 |
+
</td>
|
99 |
+
</tr>
|
100 |
<?php if ($this->main->enable_pro_only_options() && !$this->multisite) { ?>
|
101 |
<tr>
|
102 |
<th scope="row">
|
uninstall.php
CHANGED
@@ -19,6 +19,7 @@ if (is_multisite() && class_exists('WPFront_User_Role_Editor_Business_Pro_Contro
|
|
19 |
WPFront_User_Role_Editor_Entity_Options::uninstall();
|
20 |
WPFront_User_Role_Editor_Entity_Menu_Editor::uninstall();
|
21 |
WPFront_User_Role_Editor_Entity_Post_Type_Permissions::uninstall();
|
|
|
22 |
}
|
23 |
}
|
24 |
|
@@ -34,6 +35,9 @@ if (is_multisite() && class_exists('WPFront_User_Role_Editor_Business_Pro_Contro
|
|
34 |
|
35 |
if (class_exists('WPFront_User_Role_Editor_Entity_Post_Type_Permissions'))
|
36 |
WPFront_User_Role_Editor_Entity_Post_Type_Permissions::uninstall();
|
|
|
|
|
|
|
37 |
}
|
38 |
}
|
39 |
|
19 |
WPFront_User_Role_Editor_Entity_Options::uninstall();
|
20 |
WPFront_User_Role_Editor_Entity_Menu_Editor::uninstall();
|
21 |
WPFront_User_Role_Editor_Entity_Post_Type_Permissions::uninstall();
|
22 |
+
WPFront_User_Role_Editor_Nav_Menu::uninstall();
|
23 |
}
|
24 |
}
|
25 |
|
35 |
|
36 |
if (class_exists('WPFront_User_Role_Editor_Entity_Post_Type_Permissions'))
|
37 |
WPFront_User_Role_Editor_Entity_Post_Type_Permissions::uninstall();
|
38 |
+
|
39 |
+
if (class_exists('WPFront_User_Role_Editor_Nav_Menu'))
|
40 |
+
WPFront_User_Role_Editor_Nav_Menu::uninstall();
|
41 |
}
|
42 |
}
|
43 |
|
wpfront-user-role-editor.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: WPFront User Role Editor
|
5 |
* Plugin URI: http://wpfront.com/user-role-editor-pro/
|
6 |
* Description: Allows you to manage user roles.
|
7 |
-
* Version: 2.5
|
8 |
* Author: Syam Mohan
|
9 |
* Author URI: http://wpfront.com
|
10 |
* License: GPL v3
|
4 |
* Plugin Name: WPFront User Role Editor
|
5 |
* Plugin URI: http://wpfront.com/user-role-editor-pro/
|
6 |
* Description: Allows you to manage user roles.
|
7 |
+
* Version: 2.5.1
|
8 |
* Author: Syam Mohan
|
9 |
* Author URI: http://wpfront.com
|
10 |
* License: GPL v3
|