Version Description
- Custom post type permissions.
- Bug fixes.
Download this release
Release Info
Developer | syammohanm |
Plugin | WPFront User Role Editor |
Version | 2.1 |
Comparing to | |
See all releases |
Code changes from version 2.0 to 2.1
- classes/class-wpfront-user-role-editor-add-edit.php +20 -1
- classes/class-wpfront-user-role-editor-controller-base.php +4 -0
- classes/class-wpfront-user-role-editor-delete.php +3 -2
- classes/class-wpfront-user-role-editor-go-pro.php +3 -1
- classes/class-wpfront-user-role-editor-list.php +1 -1
- classes/class-wpfront-user-role-editor-options.php +63 -16
- classes/class-wpfront-user-role-editor.php +89 -9
- css/style.css +143 -129
- languages/wpfront-user-role-editor.po +1821 -1821
- readme.txt +8 -1
- templates/add-edit-role.php +29 -9
- templates/options-template.php +35 -2
- wpfront-user-role-editor.php +1 -1
classes/class-wpfront-user-role-editor-add-edit.php
CHANGED
@@ -200,11 +200,15 @@ if (!class_exists('WPFront_User_Role_Editor_Add_Edit')) {
|
|
200 |
return TRUE;
|
201 |
return FALSE;
|
202 |
}
|
|
|
|
|
|
|
|
|
203 |
|
204 |
protected function get_capability_groups() {
|
205 |
$caps_group = array();
|
206 |
|
207 |
-
foreach ($this->main->get_capabilities() as $key => $value) {
|
208 |
$deprecated = array_key_exists($key, WPFront_User_Role_Editor::$DEPRECATED_CAPABILITIES);
|
209 |
$other = array_key_exists($key, WPFront_User_Role_Editor::$OTHER_CAPABILITIES);
|
210 |
|
@@ -219,6 +223,18 @@ if (!class_exists('WPFront_User_Role_Editor_Add_Edit')) {
|
|
219 |
);
|
220 |
}
|
221 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
222 |
return $caps_group;
|
223 |
}
|
224 |
|
@@ -282,6 +298,9 @@ if (!class_exists('WPFront_User_Role_Editor_Add_Edit')) {
|
|
282 |
}
|
283 |
|
284 |
protected function get_help_url($cap) {
|
|
|
|
|
|
|
285 |
return 'http://wpfront.com/wordpress-capabilities/#' . $cap;
|
286 |
}
|
287 |
|
200 |
return TRUE;
|
201 |
return FALSE;
|
202 |
}
|
203 |
+
|
204 |
+
protected function exclude_custom_post_types() {
|
205 |
+
return FALSE;
|
206 |
+
}
|
207 |
|
208 |
protected function get_capability_groups() {
|
209 |
$caps_group = array();
|
210 |
|
211 |
+
foreach ($this->main->get_capabilities($this->exclude_custom_post_types()) as $key => $value) {
|
212 |
$deprecated = array_key_exists($key, WPFront_User_Role_Editor::$DEPRECATED_CAPABILITIES);
|
213 |
$other = array_key_exists($key, WPFront_User_Role_Editor::$OTHER_CAPABILITIES);
|
214 |
|
223 |
);
|
224 |
}
|
225 |
|
226 |
+
foreach (WPFront_User_Role_Editor::$CUSTOM_POST_TYPES_DEFAULTED as $key => $value) {
|
227 |
+
$caps_group[$key] = (OBJECT) array(
|
228 |
+
'caps' => 'defaulted',
|
229 |
+
'display_name' => $this->__($key),
|
230 |
+
'deprecated' => FALSE,
|
231 |
+
'disabled' => TRUE,
|
232 |
+
'hidden' => FALSE,
|
233 |
+
'key' => str_replace(' ', '-', $key),
|
234 |
+
'has_help' => FALSE
|
235 |
+
);
|
236 |
+
}
|
237 |
+
|
238 |
return $caps_group;
|
239 |
}
|
240 |
|
298 |
}
|
299 |
|
300 |
protected function get_help_url($cap) {
|
301 |
+
if (isset(WPFront_User_Role_Editor::$DYNAMIC_CAPS[$cap]))
|
302 |
+
return NULL;
|
303 |
+
|
304 |
return 'http://wpfront.com/wordpress-capabilities/#' . $cap;
|
305 |
}
|
306 |
|
classes/class-wpfront-user-role-editor-controller-base.php
CHANGED
@@ -154,6 +154,10 @@ if (!class_exists('WPFront_User_Role_Editor_Controller_Base')) {
|
|
154 |
public function set_default_url() {
|
155 |
return admin_url('admin.php') . '?page=' . WPFront_User_Role_Editor_List::MENU_SLUG . '&nonce=' . wp_create_nonce($this->list_url()) . '&set_default_role=';
|
156 |
}
|
|
|
|
|
|
|
|
|
157 |
|
158 |
public function cache_add($key, $data) {
|
159 |
wp_cache_set($key, $data, WPFront_User_Role_Editor::PLUGIN_SLUG);
|
154 |
public function set_default_url() {
|
155 |
return admin_url('admin.php') . '?page=' . WPFront_User_Role_Editor_List::MENU_SLUG . '&nonce=' . wp_create_nonce($this->list_url()) . '&set_default_role=';
|
156 |
}
|
157 |
+
|
158 |
+
public function settings_url() {
|
159 |
+
return admin_url('admin.php') . '?page=' . WPFront_User_Role_Editor_Options::MENU_SLUG;
|
160 |
+
}
|
161 |
|
162 |
public function cache_add($key, $data) {
|
163 |
wp_cache_set($key, $data, WPFront_User_Role_Editor::PLUGIN_SLUG);
|
classes/class-wpfront-user-role-editor-delete.php
CHANGED
@@ -66,7 +66,8 @@ if (!class_exists('WPFront_User_Role_Editor_Delete')) {
|
|
66 |
|
67 |
$editable_roles = get_editable_roles();
|
68 |
global $wp_roles;
|
69 |
-
|
|
|
70 |
$editable_roles = $wp_roles->get_names();
|
71 |
|
72 |
foreach ($delete_roles as $value) {
|
@@ -82,7 +83,7 @@ if (!class_exists('WPFront_User_Role_Editor_Delete')) {
|
|
82 |
} else {
|
83 |
global $user_ID;
|
84 |
$user = new WP_User($user_ID);
|
85 |
-
if (in_array($value, $user->roles)) {
|
86 |
$status_message = 'Current user\'s role cannot be deleted.';
|
87 |
$is_deletable = FALSE;
|
88 |
}
|
66 |
|
67 |
$editable_roles = get_editable_roles();
|
68 |
global $wp_roles;
|
69 |
+
$override = $this->main->override_edit_permissions();
|
70 |
+
if ($override)
|
71 |
$editable_roles = $wp_roles->get_names();
|
72 |
|
73 |
foreach ($delete_roles as $value) {
|
83 |
} else {
|
84 |
global $user_ID;
|
85 |
$user = new WP_User($user_ID);
|
86 |
+
if (!$override && in_array($value, $user->roles)) {
|
87 |
$status_message = 'Current user\'s role cannot be deleted.';
|
88 |
$is_deletable = FALSE;
|
89 |
}
|
classes/class-wpfront-user-role-editor-go-pro.php
CHANGED
@@ -136,7 +136,9 @@ if (!class_exists('WPFront_User_Role_Editor_Go_Pro')) {
|
|
136 |
$this->license_key = substr_replace($this->license_key, 'X', $i, 1);
|
137 |
}
|
138 |
|
139 |
-
|
|
|
|
|
140 |
} else {
|
141 |
$this->license_key = '';
|
142 |
$this->has_license = FALSE;
|
136 |
$this->license_key = substr_replace($this->license_key, 'X', $i, 1);
|
137 |
}
|
138 |
|
139 |
+
//Software licensing change
|
140 |
+
$this->edd_plugin_update();
|
141 |
+
//add_action('admin_init', array($this, 'edd_plugin_update'));
|
142 |
} else {
|
143 |
$this->license_key = '';
|
144 |
$this->has_license = FALSE;
|
classes/class-wpfront-user-role-editor-list.php
CHANGED
@@ -135,7 +135,7 @@ if (!class_exists('WPFront_User_Role_Editor_List')) {
|
|
135 |
'display_name' => $value,
|
136 |
'is_default' => in_array($key, WPFront_User_Role_Editor::$DEFAULT_ROLES),
|
137 |
'user_count' => count(get_users(array('role' => $key))),
|
138 |
-
'caps_count' => count($wp_roles->roles[$key]['capabilities']),
|
139 |
'user_default' => $key == $user_default
|
140 |
);
|
141 |
|
135 |
'display_name' => $value,
|
136 |
'is_default' => in_array($key, WPFront_User_Role_Editor::$DEFAULT_ROLES),
|
137 |
'user_count' => count(get_users(array('role' => $key))),
|
138 |
+
'caps_count' => count(array_filter($wp_roles->roles[$key]['capabilities'])),
|
139 |
'user_default' => $key == $user_default
|
140 |
);
|
141 |
|
classes/class-wpfront-user-role-editor-options.php
CHANGED
@@ -46,6 +46,17 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
|
|
46 |
include($this->main->pluginDIR() . 'templates/options-template.php');
|
47 |
}
|
48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
public function update_options_callback() {
|
50 |
check_ajax_referer($_POST['referer'], 'nonce');
|
51 |
|
@@ -58,10 +69,29 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
|
|
58 |
if ($this->multisite && wp_is_large_network()) {
|
59 |
$this->update_option_boolean('enable_large_network_functionalities');
|
60 |
}
|
61 |
-
if($this->main->enable_multisite_only_options($this->multisite)) {
|
62 |
$this->update_option_boolean('remove_data_on_uninstall', TRUE);
|
63 |
}
|
64 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
if ($this->multisite)
|
66 |
echo network_admin_url('admin.php?page=' . self::MENU_SLUG . '&settings-updated=true');
|
67 |
else
|
@@ -78,20 +108,24 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
|
|
78 |
$value = 0;
|
79 |
}
|
80 |
|
81 |
-
$
|
82 |
-
|
83 |
-
|
84 |
-
switch_to_blog($this->ms_options_blog_id());
|
85 |
-
}
|
86 |
-
|
87 |
-
$entity = new WPFront_User_Role_Editor_Entity_Options();
|
88 |
-
$entity->update_option($prefix . $key, $value);
|
89 |
-
if($clone)
|
90 |
-
$entity->update_option($key, $value);
|
91 |
|
92 |
-
|
93 |
-
|
|
|
|
|
|
|
94 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
}
|
96 |
|
97 |
public function enable_role_capabilities() {
|
@@ -99,6 +133,11 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
|
|
99 |
}
|
100 |
|
101 |
private function get_boolean_option($key, $ms = FALSE) {
|
|
|
|
|
|
|
|
|
|
|
102 |
$prefix = '';
|
103 |
if ($ms) {
|
104 |
$prefix = 'ms_';
|
@@ -109,14 +148,14 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
|
|
109 |
$value = $entity->get_option($prefix . $key);
|
110 |
if ($value === NULL) {
|
111 |
if ($ms === FALSE && is_multisite()) {
|
112 |
-
return $this->
|
113 |
}
|
114 |
}
|
115 |
|
116 |
if ($ms)
|
117 |
restore_current_blog();
|
118 |
|
119 |
-
return $value
|
120 |
}
|
121 |
|
122 |
public function display_deprecated() {
|
@@ -147,6 +186,14 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
|
|
147 |
return $this->get_boolean_option('remove_data_on_uninstall');
|
148 |
}
|
149 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
public static function get_ms_options_blog_id() {
|
151 |
if (!is_multisite()) {
|
152 |
throw new Exception('Invalid call');
|
@@ -158,7 +205,7 @@ if (!class_exists('WPFront_User_Role_Editor_Options')) {
|
|
158 |
}
|
159 |
return $blog_id;
|
160 |
}
|
161 |
-
|
162 |
public function ms_options_blog_id() {
|
163 |
return self::get_ms_options_blog_id();
|
164 |
}
|
46 |
include($this->main->pluginDIR() . 'templates/options-template.php');
|
47 |
}
|
48 |
|
49 |
+
private function get_custom_post_type_list() {
|
50 |
+
$post_types = apply_filters('wpfront_ure_custom_post_type_permission_settings_list', array());
|
51 |
+
$customize = $this->customize_permission_custom_post_types();
|
52 |
+
|
53 |
+
foreach ($post_types as $key => $value) {
|
54 |
+
$post_types[$key] = (OBJECT) array('label' => $value, 'enabled' => in_array($key, $customize));
|
55 |
+
}
|
56 |
+
|
57 |
+
return $post_types;
|
58 |
+
}
|
59 |
+
|
60 |
public function update_options_callback() {
|
61 |
check_ajax_referer($_POST['referer'], 'nonce');
|
62 |
|
69 |
if ($this->multisite && wp_is_large_network()) {
|
70 |
$this->update_option_boolean('enable_large_network_functionalities');
|
71 |
}
|
72 |
+
if ($this->main->enable_multisite_only_options($this->multisite)) {
|
73 |
$this->update_option_boolean('remove_data_on_uninstall', TRUE);
|
74 |
}
|
75 |
|
76 |
+
if (isset($_POST['custom-post-types'])) {
|
77 |
+
$custom_post_types = $_POST['custom-post-types'];
|
78 |
+
if (is_array($custom_post_types)) {
|
79 |
+
$post_type_values = $this->customize_permission_custom_post_types();
|
80 |
+
foreach ($custom_post_types as $key => $value) {
|
81 |
+
if ($value === 'true') {
|
82 |
+
if (!in_array($key, $post_type_values))
|
83 |
+
$post_type_values[] = $key;
|
84 |
+
} else {
|
85 |
+
if (in_array($key, $post_type_values))
|
86 |
+
$post_type_values = array_diff($post_type_values, array($key));
|
87 |
+
}
|
88 |
+
}
|
89 |
+
|
90 |
+
do_action('wpfront_ure_update_customize_permission_custom_post_types', $post_type_values, $this->customize_permission_custom_post_types());
|
91 |
+
$this->update_option('customize_permission_custom_post_types', implode(',', $post_type_values));
|
92 |
+
}
|
93 |
+
}
|
94 |
+
|
95 |
if ($this->multisite)
|
96 |
echo network_admin_url('admin.php?page=' . self::MENU_SLUG . '&settings-updated=true');
|
97 |
else
|
108 |
$value = 0;
|
109 |
}
|
110 |
|
111 |
+
$this->update_option($key, $value, $clone);
|
112 |
+
}
|
113 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
|
115 |
+
private function update_option($key, $value, $clone = FALSE) {
|
116 |
+
$prefix = '';
|
117 |
+
if ($this->multisite) {
|
118 |
+
$prefix = 'ms_';
|
119 |
+
switch_to_blog($this->ms_options_blog_id());
|
120 |
}
|
121 |
+
|
122 |
+
$entity = new WPFront_User_Role_Editor_Entity_Options();
|
123 |
+
$entity->update_option($prefix . $key, $value);
|
124 |
+
if ($clone)
|
125 |
+
$entity->update_option($key, $value);
|
126 |
+
|
127 |
+
if ($this->multisite)
|
128 |
+
restore_current_blog();
|
129 |
}
|
130 |
|
131 |
public function enable_role_capabilities() {
|
133 |
}
|
134 |
|
135 |
private function get_boolean_option($key, $ms = FALSE) {
|
136 |
+
$value = $this->get_option($key, $ms);
|
137 |
+
return $value === '1' ? TRUE : FALSE;
|
138 |
+
}
|
139 |
+
|
140 |
+
private function get_option($key, $ms = FALSE) {
|
141 |
$prefix = '';
|
142 |
if ($ms) {
|
143 |
$prefix = 'ms_';
|
148 |
$value = $entity->get_option($prefix . $key);
|
149 |
if ($value === NULL) {
|
150 |
if ($ms === FALSE && is_multisite()) {
|
151 |
+
return $this->get_option($key, TRUE);
|
152 |
}
|
153 |
}
|
154 |
|
155 |
if ($ms)
|
156 |
restore_current_blog();
|
157 |
|
158 |
+
return $value;
|
159 |
}
|
160 |
|
161 |
public function display_deprecated() {
|
186 |
return $this->get_boolean_option('remove_data_on_uninstall');
|
187 |
}
|
188 |
|
189 |
+
public function customize_permission_custom_post_types() {
|
190 |
+
$value = $this->get_option('customize_permission_custom_post_types');
|
191 |
+
if ($value === NULL || $value === '')
|
192 |
+
return array();
|
193 |
+
|
194 |
+
return explode(',', $value);
|
195 |
+
}
|
196 |
+
|
197 |
public static function get_ms_options_blog_id() {
|
198 |
if (!is_multisite()) {
|
199 |
throw new Exception('Invalid call');
|
205 |
}
|
206 |
return $blog_id;
|
207 |
}
|
208 |
+
|
209 |
public function ms_options_blog_id() {
|
210 |
return self::get_ms_options_blog_id();
|
211 |
}
|
classes/class-wpfront-user-role-editor.php
CHANGED
@@ -34,11 +34,12 @@ if (!class_exists('WPFront_User_Role_Editor')) {
|
|
34 |
class WPFront_User_Role_Editor extends WPFront_Base_URE {
|
35 |
|
36 |
//Constants
|
37 |
-
const VERSION = '2.
|
38 |
const OPTIONS_GROUP_NAME = 'wpfront-user-role-editor-options-group';
|
39 |
const OPTION_NAME = 'wpfront-user-role-editor-options';
|
40 |
const PLUGIN_SLUG = 'wpfront-user-role-editor';
|
41 |
|
|
|
42 |
public static $ROLE_CAPS = array('list_roles', 'create_roles', 'edit_roles', 'delete_roles', 'edit_role_menus', 'edit_posts_role_permissions', 'edit_pages_role_permissions');
|
43 |
public static $DEFAULT_ROLES = array('administrator', 'editor', 'author', 'contributor', 'subscriber');
|
44 |
public static $STANDARD_CAPABILITIES = array(
|
@@ -136,6 +137,7 @@ if (!class_exists('WPFront_User_Role_Editor')) {
|
|
136 |
'Other Capabilities' => array(
|
137 |
)
|
138 |
);
|
|
|
139 |
private static $CAPABILITIES = NULL;
|
140 |
//Variables
|
141 |
protected $admin_menu = array();
|
@@ -326,7 +328,7 @@ if (!class_exists('WPFront_User_Role_Editor')) {
|
|
326 |
parent::options_page_footer($settingsLink, $FAQLink, $extraLinks);
|
327 |
}
|
328 |
|
329 |
-
public function get_capabilities() {
|
330 |
if (self::$CAPABILITIES != NULL)
|
331 |
return self::$CAPABILITIES;
|
332 |
|
@@ -346,12 +348,19 @@ if (!class_exists('WPFront_User_Role_Editor')) {
|
|
346 |
}
|
347 |
}
|
348 |
|
349 |
-
if ($this->enable_role_capabilities())
|
350 |
-
self::$CAPABILITIES['Roles (WPFront)'] = self::$ROLE_CAPS;
|
351 |
-
|
352 |
reset(self::$OTHER_CAPABILITIES);
|
353 |
$other_key = key(self::$OTHER_CAPABILITIES);
|
354 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
355 |
global $wp_roles;
|
356 |
if (isset($wp_roles->roles) && is_array($wp_roles->roles)) {
|
357 |
foreach ($wp_roles->roles as $key => $role) {
|
@@ -370,14 +379,78 @@ if (!class_exists('WPFront_User_Role_Editor')) {
|
|
370 |
}
|
371 |
}
|
372 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
373 |
foreach (self::$OTHER_CAPABILITIES as $key => $value) {
|
374 |
-
if (count($value)
|
375 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
376 |
}
|
377 |
|
378 |
return self::$CAPABILITIES;
|
379 |
}
|
380 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
381 |
public function reset_capabilities() {
|
382 |
self::$CAPABILITIES = NULL;
|
383 |
|
@@ -392,7 +465,6 @@ if (!class_exists('WPFront_User_Role_Editor')) {
|
|
392 |
|
393 |
public function enable_role_capabilities() {
|
394 |
return TRUE;
|
395 |
-
//return $this->options->enable_role_capabilities();
|
396 |
}
|
397 |
|
398 |
public function remove_nonstandard_capabilities_restore() {
|
@@ -402,11 +474,19 @@ if (!class_exists('WPFront_User_Role_Editor')) {
|
|
402 |
public function override_edit_permissions() {
|
403 |
return $this->options->override_edit_permissions();
|
404 |
}
|
405 |
-
|
|
|
|
|
|
|
|
|
406 |
public function enable_multisite_only_options($multisite) {
|
407 |
return TRUE;
|
408 |
}
|
409 |
|
|
|
|
|
|
|
|
|
410 |
private function rename_role_capabilities() {
|
411 |
global $wp_roles;
|
412 |
foreach ($wp_roles->role_objects as $key => $role) {
|
34 |
class WPFront_User_Role_Editor extends WPFront_Base_URE {
|
35 |
|
36 |
//Constants
|
37 |
+
const VERSION = '2.1';
|
38 |
const OPTIONS_GROUP_NAME = 'wpfront-user-role-editor-options-group';
|
39 |
const OPTION_NAME = 'wpfront-user-role-editor-options';
|
40 |
const PLUGIN_SLUG = 'wpfront-user-role-editor';
|
41 |
|
42 |
+
public static $DYNAMIC_CAPS = array();
|
43 |
public static $ROLE_CAPS = array('list_roles', 'create_roles', 'edit_roles', 'delete_roles', 'edit_role_menus', 'edit_posts_role_permissions', 'edit_pages_role_permissions');
|
44 |
public static $DEFAULT_ROLES = array('administrator', 'editor', 'author', 'contributor', 'subscriber');
|
45 |
public static $STANDARD_CAPABILITIES = array(
|
137 |
'Other Capabilities' => array(
|
138 |
)
|
139 |
);
|
140 |
+
public static $CUSTOM_POST_TYPES_DEFAULTED = array();
|
141 |
private static $CAPABILITIES = NULL;
|
142 |
//Variables
|
143 |
protected $admin_menu = array();
|
328 |
parent::options_page_footer($settingsLink, $FAQLink, $extraLinks);
|
329 |
}
|
330 |
|
331 |
+
public function get_capabilities($exclude_custom_post_types = FALSE) {
|
332 |
if (self::$CAPABILITIES != NULL)
|
333 |
return self::$CAPABILITIES;
|
334 |
|
348 |
}
|
349 |
}
|
350 |
|
|
|
|
|
|
|
351 |
reset(self::$OTHER_CAPABILITIES);
|
352 |
$other_key = key(self::$OTHER_CAPABILITIES);
|
353 |
|
354 |
+
if($exclude_custom_post_types) {
|
355 |
+
foreach (self::$DYNAMIC_CAPS as $cap) {
|
356 |
+
self::$ROLE_CAPS = array_diff(self::$ROLE_CAPS, array($cap));
|
357 |
+
self::$OTHER_CAPABILITIES[$other_key][] = $cap;
|
358 |
+
}
|
359 |
+
}
|
360 |
+
|
361 |
+
if ($this->enable_role_capabilities())
|
362 |
+
self::$CAPABILITIES['Roles (WPFront)'] = self::$ROLE_CAPS;
|
363 |
+
|
364 |
global $wp_roles;
|
365 |
if (isset($wp_roles->roles) && is_array($wp_roles->roles)) {
|
366 |
foreach ($wp_roles->roles as $key => $role) {
|
379 |
}
|
380 |
}
|
381 |
|
382 |
+
if (!$exclude_custom_post_types) {
|
383 |
+
$post_types = get_post_types(array(
|
384 |
+
'_builtin' => FALSE
|
385 |
+
));
|
386 |
+
|
387 |
+
$other_caps = self::$OTHER_CAPABILITIES[$other_key];
|
388 |
+
unset(self::$OTHER_CAPABILITIES[$other_key]);
|
389 |
+
|
390 |
+
foreach ($post_types as $key => $value) {
|
391 |
+
$post_type_object = get_post_type_object($key);
|
392 |
+
$caps = $post_type_object->cap;
|
393 |
+
|
394 |
+
if ($post_type_object->capability_type === 'post') {
|
395 |
+
if ($post_type_object->show_ui)
|
396 |
+
self::$CUSTOM_POST_TYPES_DEFAULTED[$this->get_custom_post_type_label($post_type_object)] = array();
|
397 |
+
} else {
|
398 |
+
$caps = (OBJECT) $this->remove_meta_capabilities((ARRAY) $caps, $other_caps);
|
399 |
+
self::$OTHER_CAPABILITIES[$this->get_custom_post_type_label($post_type_object)] = array_values((array) $caps);
|
400 |
+
}
|
401 |
+
}
|
402 |
+
|
403 |
+
self::$OTHER_CAPABILITIES[$other_key] = $other_caps;
|
404 |
+
}
|
405 |
+
|
406 |
foreach (self::$OTHER_CAPABILITIES as $key => $value) {
|
407 |
+
if (count($value) === 0)
|
408 |
+
continue;
|
409 |
+
|
410 |
+
self::$CAPABILITIES[$key] = $value;
|
411 |
+
|
412 |
+
if ($key != $other_key) {
|
413 |
+
foreach ($value as $cap) {
|
414 |
+
self::$OTHER_CAPABILITIES[$other_key] = array_values(array_diff(self::$OTHER_CAPABILITIES[$other_key], array($cap)));
|
415 |
+
}
|
416 |
+
}
|
417 |
}
|
418 |
|
419 |
return self::$CAPABILITIES;
|
420 |
}
|
421 |
|
422 |
+
public function add_role_capability($cap) {
|
423 |
+
self::$ROLE_CAPS[] = $cap;
|
424 |
+
$this->add_dynamic_capability($cap);
|
425 |
+
}
|
426 |
+
|
427 |
+
public function add_dynamic_capability($cap) {
|
428 |
+
self::$DYNAMIC_CAPS[$cap] = $cap;
|
429 |
+
}
|
430 |
+
|
431 |
+
private function get_custom_post_type_label($post_type_object) {
|
432 |
+
return $post_type_object->labels->name . ' (' . $post_type_object->name . ')';
|
433 |
+
}
|
434 |
+
|
435 |
+
private function remove_meta_capabilities($caps, $other_caps) {
|
436 |
+
foreach ($caps as $key => $value) {
|
437 |
+
if ($key === 'read') {
|
438 |
+
unset($caps[$key]);
|
439 |
+
continue;
|
440 |
+
}
|
441 |
+
|
442 |
+
if (!in_array($value, $other_caps))
|
443 |
+
unset($caps[$key]);
|
444 |
+
}
|
445 |
+
|
446 |
+
if (array_key_exists('create_posts', $caps) && array_key_exists('edit_posts', $caps)) {
|
447 |
+
if ($caps['create_posts'] === $caps['edit_posts'])
|
448 |
+
unset($caps['create_posts']);
|
449 |
+
}
|
450 |
+
|
451 |
+
return $caps;
|
452 |
+
}
|
453 |
+
|
454 |
public function reset_capabilities() {
|
455 |
self::$CAPABILITIES = NULL;
|
456 |
|
465 |
|
466 |
public function enable_role_capabilities() {
|
467 |
return TRUE;
|
|
|
468 |
}
|
469 |
|
470 |
public function remove_nonstandard_capabilities_restore() {
|
474 |
public function override_edit_permissions() {
|
475 |
return $this->options->override_edit_permissions();
|
476 |
}
|
477 |
+
|
478 |
+
public function customize_permission_custom_post_types() {
|
479 |
+
return $this->options->customize_permission_custom_post_types();
|
480 |
+
}
|
481 |
+
|
482 |
public function enable_multisite_only_options($multisite) {
|
483 |
return TRUE;
|
484 |
}
|
485 |
|
486 |
+
public function enable_pro_only_options() {
|
487 |
+
return FALSE;
|
488 |
+
}
|
489 |
+
|
490 |
private function rename_role_capabilities() {
|
491 |
global $wp_roles;
|
492 |
foreach ($wp_roles->role_objects as $key => $role) {
|
css/style.css
CHANGED
@@ -1,129 +1,143 @@
|
|
1 |
-
/*
|
2 |
-
WPFront User Role Editor Plugin
|
3 |
-
Copyright (C) 2014, WPFront.com
|
4 |
-
Website: wpfront.com
|
5 |
-
Contact: syam@wpfront.com
|
6 |
-
|
7 |
-
WPFront User Role Editor Plugin is distributed under the GNU General Public License, Version 3,
|
8 |
-
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
9 |
-
St, Fifth Floor, Boston, MA 02110, USA
|
10 |
-
|
11 |
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
12 |
-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
13 |
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
14 |
-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
15 |
-
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
16 |
-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
17 |
-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
18 |
-
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
19 |
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
20 |
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
21 |
-
*/
|
22 |
-
|
23 |
-
#adminmenu ul.wp-submenu li a span.wpfront-go-pro {
|
24 |
-
color: #2EA2CC;
|
25 |
-
}
|
26 |
-
|
27 |
-
#adminmenu ul.wp-submenu li.current a.current span.wpfront-go-pro {
|
28 |
-
color: inherit;
|
29 |
-
}
|
30 |
-
|
31 |
-
div.wrap div.footer {
|
32 |
-
text-align: center;
|
33 |
-
}
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
}
|
39 |
-
|
40 |
-
div.list-roles
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
}
|
52 |
-
|
53 |
-
div.role-add-new form#createuser table.sub-head th.sub-head
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
}
|
60 |
-
|
61 |
-
div.role-add-new form#createuser table.sub-head td.sub-head-controls
|
62 |
-
|
63 |
-
|
64 |
-
}
|
65 |
-
|
66 |
-
div.role-add-new form#createuser table.sub-head td.sub-head-controls div
|
67 |
-
|
68 |
-
|
69 |
-
}
|
70 |
-
|
71 |
-
div.role-add-new form#createuser table.sub-head td.sub-head-controls
|
72 |
-
width:
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
}
|
83 |
-
|
84 |
-
div.role-add-new div.metabox-holder div.postbox
|
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 |
-
div.
|
119 |
-
|
120 |
-
}
|
121 |
-
|
122 |
-
div.
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
WPFront User Role Editor Plugin
|
3 |
+
Copyright (C) 2014, WPFront.com
|
4 |
+
Website: wpfront.com
|
5 |
+
Contact: syam@wpfront.com
|
6 |
+
|
7 |
+
WPFront User Role Editor Plugin is distributed under the GNU General Public License, Version 3,
|
8 |
+
June 2007. Copyright (C) 2007 Free Software Foundation, Inc., 51 Franklin
|
9 |
+
St, Fifth Floor, Boston, MA 02110, USA
|
10 |
+
|
11 |
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
12 |
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
13 |
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
14 |
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
15 |
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
16 |
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
17 |
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
18 |
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
19 |
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
20 |
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
21 |
+
*/
|
22 |
+
|
23 |
+
#adminmenu ul.wp-submenu li a span.wpfront-go-pro {
|
24 |
+
color: #2EA2CC;
|
25 |
+
}
|
26 |
+
|
27 |
+
#adminmenu ul.wp-submenu li.current a.current span.wpfront-go-pro {
|
28 |
+
color: inherit;
|
29 |
+
}
|
30 |
+
|
31 |
+
div.wrap div.footer {
|
32 |
+
text-align: center;
|
33 |
+
}
|
34 |
+
|
35 |
+
#wpfront-user-role-editor-options table div.options-list {
|
36 |
+
float: left;
|
37 |
+
width: 200px;
|
38 |
+
}
|
39 |
+
|
40 |
+
div.list-roles img.user-default {
|
41 |
+
width: 16px;
|
42 |
+
height: 16px;
|
43 |
+
}
|
44 |
+
|
45 |
+
div.list-roles table div.row-actions {
|
46 |
+
/*white-space: nowrap;*/
|
47 |
+
}
|
48 |
+
|
49 |
+
div.role-add-new form#createuser table.sub-head {
|
50 |
+
width: 100%;
|
51 |
+
}
|
52 |
+
|
53 |
+
div.role-add-new form#createuser table.sub-head th.sub-head {
|
54 |
+
text-align: left;
|
55 |
+
padding: 0px;
|
56 |
+
}
|
57 |
+
|
58 |
+
div.role-add-new form#createuser table.sub-head th.sub-head h3 {
|
59 |
+
}
|
60 |
+
|
61 |
+
div.role-add-new form#createuser table.sub-head td.sub-head-controls {
|
62 |
+
text-align: right;
|
63 |
+
padding: 0px;
|
64 |
+
}
|
65 |
+
|
66 |
+
div.role-add-new form#createuser table.sub-head td.sub-head-controls div {
|
67 |
+
display: inline-block;
|
68 |
+
vertical-align: top;
|
69 |
+
}
|
70 |
+
|
71 |
+
div.role-add-new form#createuser table.sub-head td.sub-head-controls div.spacer {
|
72 |
+
width: 10px;
|
73 |
+
height: 0px;
|
74 |
+
}
|
75 |
+
|
76 |
+
div.role-add-new form#createuser table.sub-head td.sub-head-controls input.select-all, div.role-add-new form#createuser table.sub-head td.sub-head-controls input.select-none {
|
77 |
+
width: 100px;
|
78 |
+
}
|
79 |
+
|
80 |
+
div.role-add-new div.metabox-holder div.postbox {
|
81 |
+
margin-bottom: 8px;
|
82 |
+
}
|
83 |
+
|
84 |
+
div.role-add-new div.metabox-holder div.postbox.deprecated {
|
85 |
+
filter: alpha(opacity=80);
|
86 |
+
opacity: 0.8;
|
87 |
+
}
|
88 |
+
|
89 |
+
div.role-add-new div.metabox-holder div.postbox h3.hndle {
|
90 |
+
cursor: default;
|
91 |
+
}
|
92 |
+
|
93 |
+
div.role-add-new div.metabox-holder div.postbox div.inside div.main div {
|
94 |
+
padding: 2px 0px;
|
95 |
+
display: inline-block;
|
96 |
+
width: 250px;
|
97 |
+
}
|
98 |
+
|
99 |
+
div.role-add-new div.metabox-holder div.postbox div.inside div.main div.no-capability {
|
100 |
+
width: auto;
|
101 |
+
}
|
102 |
+
|
103 |
+
div.role-add-new div.metabox-holder div.postbox label {
|
104 |
+
vertical-align: top;
|
105 |
+
max-width: 205px;
|
106 |
+
overflow: hidden;
|
107 |
+
display: inline-block;
|
108 |
+
white-space: nowrap;
|
109 |
+
text-overflow: ellipsis;
|
110 |
+
}
|
111 |
+
|
112 |
+
div.role-add-new div.metabox-holder div.postbox div.main img.help {
|
113 |
+
width: 12px;
|
114 |
+
height: 12px;
|
115 |
+
opacity: 0.8;
|
116 |
+
}
|
117 |
+
|
118 |
+
div.role-add-new div.footer {
|
119 |
+
text-align: center;
|
120 |
+
}
|
121 |
+
|
122 |
+
div.role-restore table.form-table td div.restore-role-button-container,
|
123 |
+
div.role-restore table.form-table td div.restore-role-loader,
|
124 |
+
div.role-restore table.form-table td div.restore-role-success {
|
125 |
+
display: none;
|
126 |
+
}
|
127 |
+
|
128 |
+
div.wrap.assign-roles div.role-list div.role-list-item {
|
129 |
+
padding-bottom: 5px;
|
130 |
+
}
|
131 |
+
|
132 |
+
div.wrap.go-pro div.license-container {
|
133 |
+
margin-bottom: 25px;
|
134 |
+
}
|
135 |
+
|
136 |
+
div.wrap.go-pro #license_key {
|
137 |
+
padding-top: 5px;
|
138 |
+
padding-bottom: 5px;
|
139 |
+
}
|
140 |
+
|
141 |
+
div.wrap.go-pro div.license-container table.form-table td.expired {
|
142 |
+
color: red;
|
143 |
+
}
|
languages/wpfront-user-role-editor.po
CHANGED
@@ -1,1821 +1,1821 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: WPFront Notification Bar\n"
|
4 |
-
"POT-Creation-Date: 2014-10-17 22:13-0700\n"
|
5 |
-
"PO-Revision-Date: 2014-10-17 22:16-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.6.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:52
|
20 |
-
#: ../templates/personal-pro/menu-editor.php:132
|
21 |
-
msgid "Name"
|
22 |
-
msgstr "Name"
|
23 |
-
|
24 |
-
#: ../classes/base/class-wpfront-base-menu.php:53
|
25 |
-
msgid "Version"
|
26 |
-
msgstr "Version"
|
27 |
-
|
28 |
-
#: ../classes/base/class-wpfront-base-menu.php:54
|
29 |
-
msgid "Rating"
|
30 |
-
msgstr "Rating"
|
31 |
-
|
32 |
-
#: ../classes/base/class-wpfront-base-menu.php:55
|
33 |
-
msgid "Description"
|
34 |
-
msgstr "Description"
|
35 |
-
|
36 |
-
#: ../classes/base/class-wpfront-base-menu.php:69
|
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:105
|
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:123
|
46 |
-
#: ../classes/base/class-wpfront-base-menu.php:217
|
47 |
-
msgid "WPFront Plugins"
|
48 |
-
msgstr "WPFront Plugins"
|
49 |
-
|
50 |
-
#: ../classes/base/class-wpfront-base-menu.php:147
|
51 |
-
#, php-format
|
52 |
-
msgid "By %s"
|
53 |
-
msgstr "By %s"
|
54 |
-
|
55 |
-
#: ../classes/base/class-wpfront-base-menu.php:154
|
56 |
-
#, php-format
|
57 |
-
msgid "More information about %s"
|
58 |
-
msgstr "More information about %s"
|
59 |
-
|
60 |
-
#: ../classes/base/class-wpfront-base-menu.php:154
|
61 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:217
|
62 |
-
msgid "Details"
|
63 |
-
msgstr "Details"
|
64 |
-
|
65 |
-
#: ../classes/base/class-wpfront-base-menu.php:163
|
66 |
-
#, php-format
|
67 |
-
msgid "Install %s"
|
68 |
-
msgstr "Install %s"
|
69 |
-
|
70 |
-
#: ../classes/base/class-wpfront-base-menu.php:163
|
71 |
-
msgid "Install Now"
|
72 |
-
msgstr "Install Now"
|
73 |
-
|
74 |
-
#: ../classes/base/class-wpfront-base-menu.php:168
|
75 |
-
#, php-format
|
76 |
-
msgid "Update to version %s"
|
77 |
-
msgstr "Update to version %s"
|
78 |
-
|
79 |
-
#: ../classes/base/class-wpfront-base-menu.php:168
|
80 |
-
msgid "Update Now"
|
81 |
-
msgstr "Update Now"
|
82 |
-
|
83 |
-
#: ../classes/base/class-wpfront-base-menu.php:173
|
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:173
|
88 |
-
msgid "Installed"
|
89 |
-
msgstr "Installed"
|
90 |
-
|
91 |
-
#: ../classes/base/class-wpfront-base-menu.php:175
|
92 |
-
#: ../classes/base/class-wpfront-base.php:109
|
93 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:104
|
94 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:198
|
95 |
-
#: ../classes/class-wpfront-user-role-editor.php:205
|
96 |
-
msgid "Settings"
|
97 |
-
msgstr "Settings"
|
98 |
-
|
99 |
-
#: ../classes/base/class-wpfront-base-menu.php:177
|
100 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:88
|
101 |
-
#: ../templates/go-pro.php:65 ../templates/go-pro.php:66
|
102 |
-
msgid "Activate"
|
103 |
-
msgstr "Activate"
|
104 |
-
|
105 |
-
#: ../classes/base/class-wpfront-base-menu.php:199
|
106 |
-
#: ../classes/class-wpfront-user-role-editor.php:314
|
107 |
-
msgid "Feedback"
|
108 |
-
msgstr "Feedback"
|
109 |
-
|
110 |
-
#: ../classes/base/class-wpfront-base-menu.php:216
|
111 |
-
msgid "WPFront"
|
112 |
-
msgstr "WPFront"
|
113 |
-
|
114 |
-
#: ../classes/base/class-wpfront-base-menu.php:217
|
115 |
-
msgid "All Plugins"
|
116 |
-
msgstr "All Plugins"
|
117 |
-
|
118 |
-
#: ../classes/base/class-wpfront-base.php:138
|
119 |
-
#: ../classes/class-wpfront-user-role-editor.php:263
|
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:158
|
124 |
-
msgid ""
|
125 |
-
"If you have a caching plugin, clear the cache for the new settings to take "
|
126 |
-
"effect."
|
127 |
-
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:205
|
132 |
-
#: ../templates/personal-pro/menu-editor.php:226
|
133 |
-
msgid "Save Changes"
|
134 |
-
msgstr "Save Changes"
|
135 |
-
|
136 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:81
|
137 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:84
|
138 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:74
|
139 |
-
#: ../classes/class-wpfront-user-role-editor.php:202
|
140 |
-
#: ../classes/class-wpfront-user-role-editor.php:209
|
141 |
-
#: ../templates/list-roles.php:37
|
142 |
-
msgid "Roles"
|
143 |
-
msgstr "Roles"
|
144 |
-
|
145 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:84
|
146 |
-
#: ../classes/class-wpfront-user-role-editor.php:202
|
147 |
-
msgid "All Roles"
|
148 |
-
msgstr "All Roles"
|
149 |
-
|
150 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:89
|
151 |
-
#: ../classes/class-wpfront-user-role-editor.php:203
|
152 |
-
#: ../templates/add-edit-role.php:35 ../templates/add-edit-role.php:154
|
153 |
-
msgid "Add New Role"
|
154 |
-
msgstr "Add New Role"
|
155 |
-
|
156 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:89
|
157 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:77
|
158 |
-
#: ../classes/class-wpfront-user-role-editor.php:203
|
159 |
-
#: ../templates/add-edit-role.php:37 ../templates/list-roles.php:40
|
160 |
-
msgid "Add New"
|
161 |
-
msgstr "Add New"
|
162 |
-
|
163 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:94
|
164 |
-
#: ../classes/class-wpfront-user-role-editor.php:204
|
165 |
-
#: ../templates/restore-role.php:34
|
166 |
-
msgid "Restore Role"
|
167 |
-
msgstr "Restore Role"
|
168 |
-
|
169 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:94
|
170 |
-
#: ../classes/class-wpfront-user-role-editor.php:204
|
171 |
-
#: ../templates/restore-role.php:46
|
172 |
-
msgid "Restore"
|
173 |
-
msgstr "Restore"
|
174 |
-
|
175 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:99
|
176 |
-
#: ../templates/business-pro/sync-roles.php:11
|
177 |
-
#: ../templates/business-pro/sync-roles.php:297
|
178 |
-
msgid "Sync Roles"
|
179 |
-
msgstr "Sync Roles"
|
180 |
-
|
181 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:99
|
182 |
-
msgid "Sync"
|
183 |
-
msgstr "Sync"
|
184 |
-
|
185 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:110
|
186 |
-
#: ../classes/class-wpfront-user-role-editor.php:188
|
187 |
-
msgid "Go Pro"
|
188 |
-
msgstr "Go Pro"
|
189 |
-
|
190 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:121
|
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 "
|
194 |
-
"settings screen to turn on these CPU and memory intensive functionalities."
|
195 |
-
msgstr ""
|
196 |
-
"You have a large network of sites (usually 10,000 or more sites). Roles "
|
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:213
|
201 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:114
|
202 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:148
|
203 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:162
|
204 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:84
|
205 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:223
|
206 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:303
|
207 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:296
|
208 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:351
|
209 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:385
|
210 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:402
|
211 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:191
|
212 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:233
|
213 |
-
#: ../classes/class-wpfront-user-role-editor-restore.php:165
|
214 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:126
|
215 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:225
|
216 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:563
|
217 |
-
msgid "Overview"
|
218 |
-
msgstr "Overview"
|
219 |
-
|
220 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:215
|
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:218
|
225 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:119
|
226 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:308
|
227 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:356
|
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 "
|
231 |
-
"capabilities. You can select or deselect capabilities even after you copy."
|
232 |
-
msgstr ""
|
233 |
-
"You can copy capabilities from existing roles using the Copy from drop down "
|
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:223
|
238 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:124
|
239 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:179
|
240 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:161
|
241 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:313
|
242 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:218
|
243 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:361
|
244 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:414
|
245 |
-
#: ../templates/add-edit-role.php:71
|
246 |
-
msgid "Display Name"
|
247 |
-
msgstr "Display Name"
|
248 |
-
|
249 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:225
|
250 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:315
|
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 "
|
254 |
-
"field is required."
|
255 |
-
msgstr ""
|
256 |
-
"Use the Display Name field to set the display name for the new role. "
|
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:230
|
261 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:131
|
262 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:174
|
263 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:160
|
264 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:320
|
265 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:221
|
266 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:368
|
267 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:419
|
268 |
-
#: ../templates/add-edit-role.php:81
|
269 |
-
msgid "Role Name"
|
270 |
-
msgstr "Role Name"
|
271 |
-
|
272 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:232
|
273 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:322
|
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 "
|
277 |
-
"cannot be changed. This field is required. This plugin will auto populate "
|
278 |
-
"role name from the display name you have given, but you can change it."
|
279 |
-
msgstr ""
|
280 |
-
"Use the Role Name field to set the role name for the new role. WordPress "
|
281 |
-
"uses role name to identify this role within your site. Once set role name "
|
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:237
|
286 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:138
|
287 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:327
|
288 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:233
|
289 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:375
|
290 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:439
|
291 |
-
#: ../templates/add-edit-role.php:95
|
292 |
-
msgid "Capabilities"
|
293 |
-
msgstr "Capabilities"
|
294 |
-
|
295 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:239
|
296 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:329
|
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 "
|
300 |
-
"section displays non-standard capabilities within your site. These are "
|
301 |
-
"usually created by plugins and themes. Use the check boxes to select the "
|
302 |
-
"capabilities required for this new role."
|
303 |
-
msgstr ""
|
304 |
-
"Capabilities are displayed as different groups for easy access. The Roles "
|
305 |
-
"section displays capabilities created by this plugin. The Other Capabilities "
|
306 |
-
"section displays non-standard capabilities within your site. These are "
|
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:248
|
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:86
|
315 |
-
#: ../templates/list-roles.php:62 ../templates/list-roles.php:64
|
316 |
-
msgid "Search Roles"
|
317 |
-
msgstr "Search Roles"
|
318 |
-
|
319 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:116
|
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:126
|
324 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:363
|
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."
|
328 |
-
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:133
|
333 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:370
|
334 |
-
msgid ""
|
335 |
-
"Role Name is read only. WordPress uses role name to identify this role "
|
336 |
-
"within your site."
|
337 |
-
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:140
|
342 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:377
|
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 "
|
346 |
-
"section displays non-standard capabilities within your site. These are "
|
347 |
-
"usually created by plugins and themes. Use the check boxes to select the "
|
348 |
-
"capabilities required."
|
349 |
-
msgstr ""
|
350 |
-
"Capabilities are displayed as different groups for easy access. The Roles "
|
351 |
-
"section displays capabilities created by this plugin. The Other Capabilities "
|
352 |
-
"section displays non-standard capabilities within your site. These are "
|
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:150
|
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:153
|
361 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:390
|
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 "
|
365 |
-
"roles at the same time using the bulk action."
|
366 |
-
msgstr ""
|
367 |
-
"Use the Roles List screen to select the roles you want to delete. You can "
|
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:164
|
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:167
|
378 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:407
|
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."
|
382 |
-
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:172
|
387 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:412
|
388 |
-
msgid "Columns"
|
389 |
-
msgstr "Columns"
|
390 |
-
|
391 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:176
|
392 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:421
|
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:181
|
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."
|
400 |
-
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:184
|
405 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:162
|
406 |
-
msgid "Role Type"
|
407 |
-
msgstr "Role Type"
|
408 |
-
|
409 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:186
|
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:189
|
414 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:163
|
415 |
-
msgid "Sites"
|
416 |
-
msgstr "Sites"
|
417 |
-
|
418 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:191
|
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 "
|
422 |
-
"as a link. Clicking on the link will display the site list."
|
423 |
-
msgstr ""
|
424 |
-
"Display the sites that role belongs to. [All Sites] mean, that role is part "
|
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:196
|
429 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:451
|
430 |
-
msgid "Actions"
|
431 |
-
msgstr "Actions"
|
432 |
-
|
433 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:198
|
434 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:453
|
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:"
|
438 |
-
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:201
|
443 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:222
|
444 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:272
|
445 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:456
|
446 |
-
#: ../templates/list-roles.php:98
|
447 |
-
msgid "View"
|
448 |
-
msgstr "View"
|
449 |
-
|
450 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:203
|
451 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:458
|
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 "
|
455 |
-
"edit that role."
|
456 |
-
msgstr ""
|
457 |
-
"Display details about the role. You can see the capabilities assigned for "
|
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:206
|
462 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:219
|
463 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:260
|
464 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:461
|
465 |
-
#: ../templates/list-roles.php:98
|
466 |
-
#: ../templates/personal-pro/post-type-permissions.php:28
|
467 |
-
msgid "Edit"
|
468 |
-
msgstr "Edit"
|
469 |
-
|
470 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:208
|
471 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:463
|
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 "
|
475 |
-
"to edit that role."
|
476 |
-
msgstr ""
|
477 |
-
"Allows you to edit that role. You can see the capabilities assigned for that "
|
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:211
|
482 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:110
|
483 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:220
|
484 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:253
|
485 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:466
|
486 |
-
#: ../templates/list-roles.php:101
|
487 |
-
#: ../templates/personal-pro/post-type-permissions.php:29
|
488 |
-
msgid "Delete"
|
489 |
-
msgstr "Delete"
|
490 |
-
|
491 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:213
|
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:225
|
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:232
|
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:240
|
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:44
|
508 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:73
|
509 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:174
|
510 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:176
|
511 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:196
|
512 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:215
|
513 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:224
|
514 |
-
#: ../classes/class-wpfront-user-role-editor-restore.php:84
|
515 |
-
#: ../templates/add-edit-role.php:45 ../templates/add-edit-role.php:53
|
516 |
-
#: ../templates/business-pro/sync-roles.php:17
|
517 |
-
msgid "ERROR"
|
518 |
-
msgstr "ERROR"
|
519 |
-
|
520 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:44
|
521 |
-
msgid "Permission denied."
|
522 |
-
msgstr "Permission denied."
|
523 |
-
|
524 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:71
|
525 |
-
msgid "Partial Failure"
|
526 |
-
msgstr "Partial Failure"
|
527 |
-
|
528 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:86
|
529 |
-
#: ../classes/class-wpfront-user-role-editor-restore.php:167
|
530 |
-
msgid ""
|
531 |
-
"This screen allow you to restore WordPress built-in roles to its standard "
|
532 |
-
"capability settings."
|
533 |
-
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:89
|
538 |
-
#: ../classes/class-wpfront-user-role-editor-restore.php:170
|
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:98
|
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:116
|
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:142
|
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:145
|
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:148
|
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:198
|
566 |
-
#: ../templates/personal-pro/menu-editor.php:155
|
567 |
-
#: ../templates/personal-pro/menu-editor.php:191
|
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:244
|
573 |
-
msgid "[All Sites]"
|
574 |
-
msgstr "[All Sites]"
|
575 |
-
|
576 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:246
|
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:56
|
582 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:64
|
583 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:83
|
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:67
|
588 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:86
|
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:74
|
593 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:93
|
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:225
|
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:228
|
602 |
-
msgid ""
|
603 |
-
"You will select a site as source, then sync the roles to selected sites or "
|
604 |
-
"entire sites within the network."
|
605 |
-
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:233
|
610 |
-
msgid "Step 1"
|
611 |
-
msgstr "Step 1"
|
612 |
-
|
613 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:235
|
614 |
-
msgid "Select source site."
|
615 |
-
msgstr "Select source site."
|
616 |
-
|
617 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:238
|
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:243
|
622 |
-
msgid "Step 2"
|
623 |
-
msgstr "Step 2"
|
624 |
-
|
625 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:245
|
626 |
-
msgid "Select destination sites."
|
627 |
-
msgstr "Select destination sites."
|
628 |
-
|
629 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:248
|
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:251
|
634 |
-
msgid ""
|
635 |
-
"Use \"All Sites\" to select all the sites within the network or you can "
|
636 |
-
"select individual sites using \"Selected Sites\"."
|
637 |
-
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:256
|
642 |
-
msgid "Step 3"
|
643 |
-
msgstr "Step 3"
|
644 |
-
|
645 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:258
|
646 |
-
msgid "Choose settings."
|
647 |
-
msgstr "Choose settings."
|
648 |
-
|
649 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:261
|
650 |
-
#: ../templates/business-pro/sync-roles.php:222
|
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:263
|
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:266
|
661 |
-
#: ../templates/business-pro/sync-roles.php:227
|
662 |
-
msgid "Overwrite existing roles"
|
663 |
-
msgstr "Overwrite existing roles"
|
664 |
-
|
665 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:268
|
666 |
-
msgid ""
|
667 |
-
"If the role from source already exists in destination, it will be "
|
668 |
-
"overwritten."
|
669 |
-
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:271
|
674 |
-
#: ../templates/business-pro/sync-roles.php:232
|
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:273
|
679 |
-
msgid ""
|
680 |
-
"If a role do not exist in source, but exists in destination it will be "
|
681 |
-
"removed."
|
682 |
-
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:276
|
687 |
-
#: ../templates/business-pro/sync-roles.php:237
|
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:278
|
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:283
|
698 |
-
msgid "Step 4"
|
699 |
-
msgstr "Step 4"
|
700 |
-
|
701 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:285
|
702 |
-
msgid "Confirm and Sync"
|
703 |
-
msgstr "Confirm and Sync"
|
704 |
-
|
705 |
-
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:288
|
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:291
|
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:300
|
714 |
-
msgid "Documentation on Multisite Sync"
|
715 |
-
msgstr "Documentation on Multisite Sync"
|
716 |
-
|
717 |
-
#: ../classes/class-wpfront-user-role-editor-add-edit.php:305
|
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:338
|
722 |
-
msgid "Documentation on Add New Role"
|
723 |
-
msgstr "Documentation on Add New Role"
|
724 |
-
|
725 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:59
|
726 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:270
|
727 |
-
msgid "Secondary Roles"
|
728 |
-
msgstr "Secondary Roles"
|
729 |
-
|
730 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:74
|
731 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:303
|
732 |
-
#: ../templates/assign-roles.php:36 ../templates/assign-roles.php:88
|
733 |
-
msgid "Assign Roles"
|
734 |
-
msgstr "Assign Roles"
|
735 |
-
|
736 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:111
|
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:127
|
741 |
-
msgid "Invalid user."
|
742 |
-
msgstr "Invalid user."
|
743 |
-
|
744 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:155
|
745 |
-
msgid "Roles updated successfully."
|
746 |
-
msgstr "Roles updated successfully."
|
747 |
-
|
748 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:157
|
749 |
-
msgid "Invalid primary role specified."
|
750 |
-
msgstr "Invalid primary role specified."
|
751 |
-
|
752 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:175
|
753 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:185
|
754 |
-
msgid "Invalid primary role."
|
755 |
-
msgstr "Invalid primary role."
|
756 |
-
|
757 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:207
|
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:252
|
763 |
-
msgid "Primary Role"
|
764 |
-
msgstr "Primary Role"
|
765 |
-
|
766 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:298
|
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."
|
770 |
-
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:305
|
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 "
|
778 |
-
"Primary Role drop down list. Select the secondary roles using the check "
|
779 |
-
"boxes below, then click Assign Roles."
|
780 |
-
msgstr ""
|
781 |
-
"To assign multiple roles to a user, select that user within the User drop "
|
782 |
-
"down list and select the primary role you want for that user using the "
|
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:310
|
787 |
-
#: ../templates/assign-roles.php:93 ../templates/assign-roles.php:126
|
788 |
-
msgid "Migrate Users"
|
789 |
-
msgstr "Migrate Users"
|
790 |
-
|
791 |
-
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:312
|
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 "
|
795 |
-
"functionality."
|
796 |
-
msgstr ""
|
797 |
-
"To migrate users from one role to another role or to add secondary roles to "
|
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:315
|
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 "
|
805 |
-
"then click Migrate Users."
|
806 |
-
msgstr ""
|
807 |
-
"Select the users using the From Primary Role drop down, to primary role "
|
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:324
|
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:81
|
816 |
-
msgid "Links:"
|
817 |
-
msgstr "Links:"
|
818 |
-
|
819 |
-
#: ../classes/class-wpfront-user-role-editor-controller-base.php:87
|
820 |
-
msgid "FAQ"
|
821 |
-
msgstr "FAQ"
|
822 |
-
|
823 |
-
#: ../classes/class-wpfront-user-role-editor-controller-base.php:88
|
824 |
-
msgid "Support"
|
825 |
-
msgstr "Support"
|
826 |
-
|
827 |
-
#: ../classes/class-wpfront-user-role-editor-controller-base.php:89
|
828 |
-
msgid "Review"
|
829 |
-
msgstr "Review"
|
830 |
-
|
831 |
-
#: ../classes/class-wpfront-user-role-editor-controller-base.php:90
|
832 |
-
msgid "Contact"
|
833 |
-
msgstr "Contact"
|
834 |
-
|
835 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:174
|
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:176
|
840 |
-
msgid "Invalid license key"
|
841 |
-
msgstr "Invalid license key"
|
842 |
-
|
843 |
-
#: ../classes/class-wpfront-user-role-editor-go-pro.php:196
|
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:215
|
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:224
|
852 |
-
msgid "Unable to parse response"
|
853 |
-
msgstr "Unable to parse response"
|
854 |
-
|
855 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:214
|
856 |
-
#: ../templates/add-edit-role.php:111
|
857 |
-
#: ../templates/personal-pro/menu-editor.php:126
|
858 |
-
msgid "Select All"
|
859 |
-
msgstr "Select All"
|
860 |
-
|
861 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:224
|
862 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:424
|
863 |
-
msgid "Type"
|
864 |
-
msgstr "Type"
|
865 |
-
|
866 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:227
|
867 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:429
|
868 |
-
msgid "User Default"
|
869 |
-
msgstr "User Default"
|
870 |
-
|
871 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:230
|
872 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:434
|
873 |
-
msgid "Users"
|
874 |
-
msgstr "Users"
|
875 |
-
|
876 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:251
|
877 |
-
msgid "Bulk Actions"
|
878 |
-
msgstr "Bulk Actions"
|
879 |
-
|
880 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:256
|
881 |
-
#: ../templates/add-edit-role.php:107
|
882 |
-
#: ../templates/personal-pro/menu-editor.php:94
|
883 |
-
msgid "Apply"
|
884 |
-
msgstr "Apply"
|
885 |
-
|
886 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:258
|
887 |
-
#, php-format
|
888 |
-
msgid "%s item(s)"
|
889 |
-
msgstr "%s item(s)"
|
890 |
-
|
891 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:281
|
892 |
-
msgid "All"
|
893 |
-
msgstr "All"
|
894 |
-
|
895 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:292
|
896 |
-
msgid "Having Users"
|
897 |
-
msgstr "Having Users"
|
898 |
-
|
899 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:298
|
900 |
-
msgid "No Users"
|
901 |
-
msgstr "No Users"
|
902 |
-
|
903 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:309
|
904 |
-
#: ../templates/list-roles.php:118
|
905 |
-
msgid "Built-In"
|
906 |
-
msgstr "Built-In"
|
907 |
-
|
908 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:315
|
909 |
-
#: ../templates/list-roles.php:118
|
910 |
-
msgid "Custom"
|
911 |
-
msgstr "Custom"
|
912 |
-
|
913 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:353
|
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:387
|
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:393
|
922 |
-
msgid ""
|
923 |
-
"You cannot delete administrator role, current user’s role and roles you do "
|
924 |
-
"not have permission to."
|
925 |
-
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:404
|
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:416
|
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:426
|
938 |
-
msgid ""
|
939 |
-
"Says whether the role is a WordPress built-in role or not. There are five "
|
940 |
-
"built-in roles."
|
941 |
-
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:431
|
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:436
|
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:441
|
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:444
|
958 |
-
msgid "Menu Edited"
|
959 |
-
msgstr "Menu Edited"
|
960 |
-
|
961 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:446
|
962 |
-
msgid ""
|
963 |
-
"Displays whether the menu has been edited for this role. This is a pro "
|
964 |
-
"feature."
|
965 |
-
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:468
|
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."
|
973 |
-
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:471
|
978 |
-
#: ../templates/list-roles.php:104
|
979 |
-
msgid "Default"
|
980 |
-
msgstr "Default"
|
981 |
-
|
982 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:473
|
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:476
|
989 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:555
|
990 |
-
msgid "Edit Menu"
|
991 |
-
msgstr "Edit Menu"
|
992 |
-
|
993 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:478
|
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."
|
997 |
-
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:490
|
1002 |
-
msgid "Documentation on Edit Role"
|
1003 |
-
msgstr "Documentation on Edit Role"
|
1004 |
-
|
1005 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:497
|
1006 |
-
msgid "Documentation on Delete Roles"
|
1007 |
-
msgstr "Documentation on Delete Roles"
|
1008 |
-
|
1009 |
-
#: ../classes/class-wpfront-user-role-editor-list.php:505
|
1010 |
-
msgid "Documentation on Roles"
|
1011 |
-
msgstr "Documentation on Roles"
|
1012 |
-
|
1013 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:193
|
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 "
|
1017 |
-
"that site’s settings."
|
1018 |
-
msgstr ""
|
1019 |
-
"These settings are applicable for the network admin dashboard. Also these "
|
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:200
|
1024 |
-
#: ../templates/options-template.php:40
|
1025 |
-
msgid "Enable Large Network Functionalities"
|
1026 |
-
msgstr "Enable Large Network Functionalities"
|
1027 |
-
|
1028 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:202
|
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:204
|
1033 |
-
msgid "More details"
|
1034 |
-
msgstr "More details"
|
1035 |
-
|
1036 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:208
|
1037 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:235
|
1038 |
-
#: ../templates/options-template.php:49
|
1039 |
-
msgid "Display Deprecated Capabilities"
|
1040 |
-
msgstr "Display Deprecated Capabilities"
|
1041 |
-
|
1042 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:210
|
1043 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:237
|
1044 |
-
msgid ""
|
1045 |
-
"If enabled, deprecated capabilities will be displayed within the add/edit "
|
1046 |
-
"screens."
|
1047 |
-
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:213
|
1052 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:240
|
1053 |
-
#: ../templates/options-template.php:57
|
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:215
|
1058 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:242
|
1059 |
-
msgid ""
|
1060 |
-
"If enabled, while restoring WordPress built-in capabilities non-standard "
|
1061 |
-
"capabilities will be removed."
|
1062 |
-
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:218
|
1067 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:245
|
1068 |
-
#: ../templates/options-template.php:65
|
1069 |
-
msgid "Override Edit Permissions"
|
1070 |
-
msgstr "Override Edit Permissions"
|
1071 |
-
|
1072 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:220
|
1073 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:247
|
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:223
|
1078 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:250
|
1079 |
-
#: ../templates/options-template.php:74
|
1080 |
-
msgid "Remove Data on Uninstall"
|
1081 |
-
msgstr "Remove Data on Uninstall"
|
1082 |
-
|
1083 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:225
|
1084 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:252
|
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 "
|
1088 |
-
"the license automatically."
|
1089 |
-
msgstr ""
|
1090 |
-
"If enabled, removes all data related to this plugin from database (except "
|
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:263
|
1095 |
-
msgid "Documentation on Multisite Settings"
|
1096 |
-
msgstr "Documentation on Multisite Settings"
|
1097 |
-
|
1098 |
-
#: ../classes/class-wpfront-user-role-editor-options.php:270
|
1099 |
-
msgid "Documentation on Settings"
|
1100 |
-
msgstr "Documentation on Settings"
|
1101 |
-
|
1102 |
-
#: ../classes/class-wpfront-user-role-editor-restore.php:179
|
1103 |
-
msgid "Documentation on Restore"
|
1104 |
-
msgstr "Documentation on Restore"
|
1105 |
-
|
1106 |
-
#: ../classes/class-wpfront-user-role-editor.php:221
|
1107 |
-
msgid "Assign Roles | Migrate Users"
|
1108 |
-
msgstr "Assign Roles | Migrate Users"
|
1109 |
-
|
1110 |
-
#: ../classes/class-wpfront-user-role-editor.php:221
|
1111 |
-
msgid "Assign / Migrate"
|
1112 |
-
msgstr "Assign / Migrate"
|
1113 |
-
|
1114 |
-
#: ../classes/class-wpfront-user-role-editor.php:316
|
1115 |
-
msgid "Buy me a Beer"
|
1116 |
-
msgstr "Buy me a Beer"
|
1117 |
-
|
1118 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:128
|
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."
|
1122 |
-
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:131
|
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:140
|
1131 |
-
msgid "Documentation on Export"
|
1132 |
-
msgstr "Documentation on Export"
|
1133 |
-
|
1134 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:33
|
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:81
|
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:102
|
1144 |
-
#, php-format
|
1145 |
-
msgid ""
|
1146 |
-
"The export file could not be found at <code>%s</code>. It is likely that "
|
1147 |
-
"this was caused by a permissions problem."
|
1148 |
-
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:133
|
1153 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:141
|
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:158
|
1158 |
-
#, php-format
|
1159 |
-
msgid ""
|
1160 |
-
"Please update the plugin to latest version. This export file requires plugin "
|
1161 |
-
"version %s or higher."
|
1162 |
-
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:214
|
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:227
|
1171 |
-
msgid ""
|
1172 |
-
"Step 1: Select export file using the Browse button. Then click Upload file "
|
1173 |
-
"and Import."
|
1174 |
-
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:230
|
1179 |
-
msgid ""
|
1180 |
-
"Step 2: Select the roles you want to import using the check boxes and click "
|
1181 |
-
"Import Roles."
|
1182 |
-
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:239
|
1187 |
-
msgid "Documentation on Import"
|
1188 |
-
msgstr "Documentation on Import"
|
1189 |
-
|
1190 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:157
|
1191 |
-
msgid "Menu changes saved."
|
1192 |
-
msgstr "Menu changes saved."
|
1193 |
-
|
1194 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:170
|
1195 |
-
msgid "Menu defaults restored."
|
1196 |
-
msgstr "Menu defaults restored."
|
1197 |
-
|
1198 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:185
|
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:565
|
1203 |
-
msgid ""
|
1204 |
-
"This screen allows you to enable and disable admin menus for a particular "
|
1205 |
-
"role."
|
1206 |
-
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:568
|
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:571
|
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 "
|
1218 |
-
"current user has access to."
|
1219 |
-
msgstr ""
|
1220 |
-
"Disabled menu items are already hidden, because the selected role doesn't "
|
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:576
|
1225 |
-
msgid "Fields"
|
1226 |
-
msgstr "Fields"
|
1227 |
-
|
1228 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:578
|
1229 |
-
#: ../templates/personal-pro/menu-editor.php:33
|
1230 |
-
msgid "Override Role"
|
1231 |
-
msgstr "Override Role"
|
1232 |
-
|
1233 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:580
|
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:583
|
1238 |
-
#: ../templates/personal-pro/menu-editor.php:50
|
1239 |
-
msgid "Override Type"
|
1240 |
-
msgstr "Override Type"
|
1241 |
-
|
1242 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:585
|
1243 |
-
msgid ""
|
1244 |
-
"Soft - Pages may be available through directly typing the URL. Hard - Even "
|
1245 |
-
"URLs will be blocked."
|
1246 |
-
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:588
|
1251 |
-
#: ../templates/personal-pro/menu-editor.php:61
|
1252 |
-
msgid "Hide New Menus"
|
1253 |
-
msgstr "Hide New Menus"
|
1254 |
-
|
1255 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:590
|
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:593
|
1260 |
-
#: ../templates/personal-pro/menu-editor.php:69
|
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:595
|
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:600
|
1269 |
-
msgid "Restore Default"
|
1270 |
-
msgstr "Restore Default"
|
1271 |
-
|
1272 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:602
|
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:611
|
1279 |
-
msgid "Documentation on Menu Editor"
|
1280 |
-
msgstr "Documentation on Menu Editor"
|
1281 |
-
|
1282 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:65
|
1283 |
-
#: ../templates/personal-pro/menu-editor.php:3
|
1284 |
-
msgid "Menu Editor"
|
1285 |
-
msgstr "Menu Editor"
|
1286 |
-
|
1287 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:66
|
1288 |
-
#: ../templates/personal-pro/export-roles.php:3
|
1289 |
-
msgid "Export Roles"
|
1290 |
-
msgstr "Export Roles"
|
1291 |
-
|
1292 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:66
|
1293 |
-
msgid "Export"
|
1294 |
-
msgstr "Export"
|
1295 |
-
|
1296 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:67
|
1297 |
-
#: ../templates/personal-pro/import-roles.php:3
|
1298 |
-
#: ../templates/personal-pro/import-roles.php:82
|
1299 |
-
msgid "Import Roles"
|
1300 |
-
msgstr "Import Roles"
|
1301 |
-
|
1302 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:67
|
1303 |
-
msgid "Import"
|
1304 |
-
msgstr "Import"
|
1305 |
-
|
1306 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:87
|
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:44
|
1312 |
-
#: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:269
|
1313 |
-
msgid "Role Permissions"
|
1314 |
-
msgstr "Role Permissions"
|
1315 |
-
|
1316 |
-
#: ../templates/add-edit-role.php:35
|
1317 |
-
msgid "Edit Role"
|
1318 |
-
msgstr "Edit Role"
|
1319 |
-
|
1320 |
-
#: ../templates/add-edit-role.php:45
|
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:53
|
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:60
|
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:71 ../templates/add-edit-role.php:81
|
1333 |
-
msgid "required"
|
1334 |
-
msgstr "required"
|
1335 |
-
|
1336 |
-
#: ../templates/add-edit-role.php:100
|
1337 |
-
#: ../templates/personal-pro/menu-editor.php:83
|
1338 |
-
msgid "Copy from"
|
1339 |
-
msgstr "Copy from"
|
1340 |
-
|
1341 |
-
#: ../templates/add-edit-role.php:112
|
1342 |
-
msgid "Select None"
|
1343 |
-
msgstr "Select None"
|
1344 |
-
|
1345 |
-
#: ../templates/add-edit-role.php:154
|
1346 |
-
msgid "Update Role"
|
1347 |
-
msgstr "Update Role"
|
1348 |
-
|
1349 |
-
#: ../templates/assign-roles.php:62
|
1350 |
-
msgid "User"
|
1351 |
-
msgstr "User"
|
1352 |
-
|
1353 |
-
#: ../templates/assign-roles.php:103
|
1354 |
-
msgid "From Primary Role"
|
1355 |
-
msgstr "From Primary Role"
|
1356 |
-
|
1357 |
-
#: ../templates/business-pro/sync-roles.php:25
|
1358 |
-
msgid "Step 1: Select the source site"
|
1359 |
-
msgstr "Step 1: Select the source site"
|
1360 |
-
|
1361 |
-
#: ../templates/business-pro/sync-roles.php:34
|
1362 |
-
#: ../templates/business-pro/sync-roles.php:84
|
1363 |
-
msgid "Search Sites"
|
1364 |
-
msgstr "Search Sites"
|
1365 |
-
|
1366 |
-
#: ../templates/business-pro/sync-roles.php:40
|
1367 |
-
#: ../templates/business-pro/sync-roles.php:95
|
1368 |
-
#: ../templates/business-pro/sync-roles.php:245
|
1369 |
-
msgid "Next Step"
|
1370 |
-
msgstr "Next Step"
|
1371 |
-
|
1372 |
-
#: ../templates/business-pro/sync-roles.php:70
|
1373 |
-
msgid "Step 2: Select destination sites"
|
1374 |
-
msgstr "Step 2: Select destination sites"
|
1375 |
-
|
1376 |
-
#: ../templates/business-pro/sync-roles.php:74
|
1377 |
-
#: ../templates/business-pro/sync-roles.php:269
|
1378 |
-
msgid "All Sites"
|
1379 |
-
msgstr "All Sites"
|
1380 |
-
|
1381 |
-
#: ../templates/business-pro/sync-roles.php:77
|
1382 |
-
msgid "Selected Sites"
|
1383 |
-
msgstr "Selected Sites"
|
1384 |
-
|
1385 |
-
#: ../templates/business-pro/sync-roles.php:216
|
1386 |
-
msgid "Step 3: Choose settings"
|
1387 |
-
msgstr "Step 3: Choose settings"
|
1388 |
-
|
1389 |
-
#: ../templates/business-pro/sync-roles.php:255
|
1390 |
-
msgid "Step 4: Confirm and Sync"
|
1391 |
-
msgstr "Step 4: Confirm and Sync"
|
1392 |
-
|
1393 |
-
#: ../templates/business-pro/sync-roles.php:260
|
1394 |
-
msgid "Source: "
|
1395 |
-
msgstr "Source: "
|
1396 |
-
|
1397 |
-
#: ../templates/business-pro/sync-roles.php:268
|
1398 |
-
msgid "Destination: "
|
1399 |
-
msgstr "Destination: "
|
1400 |
-
|
1401 |
-
#: ../templates/business-pro/sync-roles.php:269
|
1402 |
-
msgid "Selected sites"
|
1403 |
-
msgstr "Selected sites"
|
1404 |
-
|
1405 |
-
#: ../templates/business-pro/sync-roles.php:269
|
1406 |
-
#, php-format
|
1407 |
-
msgid "%s site(s) selected"
|
1408 |
-
msgstr "%s site(s) selected"
|
1409 |
-
|
1410 |
-
#: ../templates/business-pro/sync-roles.php:274
|
1411 |
-
msgid "Add roles existing only in source: "
|
1412 |
-
msgstr "Add roles existing only in source: "
|
1413 |
-
|
1414 |
-
#: ../templates/business-pro/sync-roles.php:275
|
1415 |
-
#: ../templates/business-pro/sync-roles.php:281
|
1416 |
-
#: ../templates/business-pro/sync-roles.php:287
|
1417 |
-
#: ../templates/business-pro/sync-roles.php:293
|
1418 |
-
msgid "Yes"
|
1419 |
-
msgstr "Yes"
|
1420 |
-
|
1421 |
-
#: ../templates/business-pro/sync-roles.php:275
|
1422 |
-
#: ../templates/business-pro/sync-roles.php:281
|
1423 |
-
#: ../templates/business-pro/sync-roles.php:287
|
1424 |
-
#: ../templates/business-pro/sync-roles.php:293
|
1425 |
-
msgid "No"
|
1426 |
-
msgstr "No"
|
1427 |
-
|
1428 |
-
#: ../templates/business-pro/sync-roles.php:280
|
1429 |
-
msgid "Overwrite existing roles: "
|
1430 |
-
msgstr "Overwrite existing roles: "
|
1431 |
-
|
1432 |
-
#: ../templates/business-pro/sync-roles.php:286
|
1433 |
-
msgid "Remove roles existing only in destination: "
|
1434 |
-
msgstr "Remove roles existing only in destination: "
|
1435 |
-
|
1436 |
-
#: ../templates/business-pro/sync-roles.php:292
|
1437 |
-
msgid "Update new user default role: "
|
1438 |
-
msgstr "Update new user default role: "
|
1439 |
-
|
1440 |
-
#: ../templates/business-pro/sync-roles.php:344
|
1441 |
-
msgid "SUCCESS"
|
1442 |
-
msgstr "SUCCESS"
|
1443 |
-
|
1444 |
-
#: ../templates/business-pro/sync-roles.php:347
|
1445 |
-
msgid "FAIL"
|
1446 |
-
msgstr "FAIL"
|
1447 |
-
|
1448 |
-
#: ../templates/business-pro/sync-roles.php:370
|
1449 |
-
msgid "Synching site"
|
1450 |
-
msgstr "Synching site"
|
1451 |
-
|
1452 |
-
#: ../templates/delete-role.php:37
|
1453 |
-
msgid "Delete Roles"
|
1454 |
-
msgstr "Delete Roles"
|
1455 |
-
|
1456 |
-
#: ../templates/delete-role.php:38
|
1457 |
-
msgid "You have specified these roles for deletion"
|
1458 |
-
msgstr "You have specified these roles for deletion"
|
1459 |
-
|
1460 |
-
#: ../templates/delete-role.php:45
|
1461 |
-
msgid "Role"
|
1462 |
-
msgstr "Role"
|
1463 |
-
|
1464 |
-
#: ../templates/delete-role.php:57
|
1465 |
-
msgid "Confirm Deletion"
|
1466 |
-
msgstr "Confirm Deletion"
|
1467 |
-
|
1468 |
-
#: ../templates/go-pro.php:36
|
1469 |
-
msgid "WPFront User Role Editor Pro"
|
1470 |
-
msgstr "WPFront User Role Editor Pro"
|
1471 |
-
|
1472 |
-
#: ../templates/go-pro.php:59
|
1473 |
-
msgid "License Key"
|
1474 |
-
msgstr "License Key"
|
1475 |
-
|
1476 |
-
#: ../templates/go-pro.php:68 ../templates/go-pro.php:69
|
1477 |
-
msgid "Deactivate"
|
1478 |
-
msgstr "Deactivate"
|
1479 |
-
|
1480 |
-
#: ../templates/go-pro.php:76
|
1481 |
-
msgid "License Expires"
|
1482 |
-
msgstr "License Expires"
|
1483 |
-
|
1484 |
-
#: ../templates/options-template.php:32
|
1485 |
-
msgid "WPFront User Role Editor Settings"
|
1486 |
-
msgstr "WPFront User Role Editor Settings"
|
1487 |
-
|
1488 |
-
#: ../templates/personal-pro/export-roles.php:7
|
1489 |
-
msgid "Select the roles to be uploaded"
|
1490 |
-
msgstr "Select the roles to be uploaded"
|
1491 |
-
|
1492 |
-
#: ../templates/personal-pro/export-roles.php:34
|
1493 |
-
msgid "Download Export File"
|
1494 |
-
msgstr "Download Export File"
|
1495 |
-
|
1496 |
-
#: ../templates/personal-pro/import-roles.php:15
|
1497 |
-
msgid "ERROR:"
|
1498 |
-
msgstr "ERROR:"
|
1499 |
-
|
1500 |
-
#: ../templates/personal-pro/import-roles.php:24
|
1501 |
-
msgid ""
|
1502 |
-
"Choose a WPFront User Role Editor export file (.xml) to upload, then click "
|
1503 |
-
"Upload file and import."
|
1504 |
-
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:33
|
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:33
|
1514 |
-
msgid "UTC"
|
1515 |
-
msgstr "UTC"
|
1516 |
-
|
1517 |
-
#: ../templates/personal-pro/import-roles.php:40
|
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:46
|
1522 |
-
msgid "Select roles to import"
|
1523 |
-
msgstr "Select roles to import"
|
1524 |
-
|
1525 |
-
#: ../templates/personal-pro/import-roles.php:75
|
1526 |
-
msgid ""
|
1527 |
-
"* These roles already exist in this site. Importing them will overwrite "
|
1528 |
-
"existing roles."
|
1529 |
-
msgstr ""
|
1530 |
-
"* These roles already exist in this site. Importing them will overwrite "
|
1531 |
-
"existing roles."
|
1532 |
-
|
1533 |
-
#: ../templates/personal-pro/menu-editor.php:20
|
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 "
|
1537 |
-
"the selected role doesn't have the capability to display that menu. Grid "
|
1538 |
-
"displays menus which the current user has access to. "
|
1539 |
-
msgstr ""
|
1540 |
-
"Select a role below to edit menu for that role. Deselect a menu from the "
|
1541 |
-
"grid to remove that menu. Disabled menu items are already hidden, because "
|
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:54
|
1546 |
-
msgid "Soft"
|
1547 |
-
msgstr "Soft"
|
1548 |
-
|
1549 |
-
#: ../templates/personal-pro/menu-editor.php:55
|
1550 |
-
msgid "Hard"
|
1551 |
-
msgstr "Hard"
|
1552 |
-
|
1553 |
-
#: ../templates/personal-pro/menu-editor.php:86
|
1554 |
-
msgid "Restore default"
|
1555 |
-
msgstr "Restore default"
|
1556 |
-
|
1557 |
-
#: ../templates/personal-pro/menu-editor.php:99
|
1558 |
-
msgid "Hide deselected item(s)"
|
1559 |
-
msgstr "Hide deselected item(s)"
|
1560 |
-
|
1561 |
-
#: ../templates/personal-pro/menu-editor.php:104
|
1562 |
-
msgid "Hide disabled item(s)"
|
1563 |
-
msgstr "Hide disabled item(s)"
|
1564 |
-
|
1565 |
-
#: ../templates/personal-pro/menu-editor.php:110
|
1566 |
-
msgid "Has Capability"
|
1567 |
-
msgstr "Has Capability"
|
1568 |
-
|
1569 |
-
#: ../templates/personal-pro/menu-editor.php:115
|
1570 |
-
msgid "No Capability"
|
1571 |
-
msgstr "No Capability"
|
1572 |
-
|
1573 |
-
#: ../templates/personal-pro/menu-editor.php:135
|
1574 |
-
msgid "Capability"
|
1575 |
-
msgstr "Capability"
|
1576 |
-
|
1577 |
-
#: ../templates/personal-pro/menu-editor.php:138
|
1578 |
-
msgid "Menu Slug"
|
1579 |
-
msgstr "Menu Slug"
|
1580 |
-
|
1581 |
-
#: ../templates/personal-pro/post-type-permissions.php:19
|
1582 |
-
msgid "Enable Role Permissions"
|
1583 |
-
msgstr "Enable Role Permissions"
|
1584 |
-
|
1585 |
-
#: ../templates/personal-pro/post-type-permissions.php:27
|
1586 |
-
msgid "Read"
|
1587 |
-
msgstr "Read"
|
1588 |
-
|
1589 |
-
#: ../templates/restore-role.php:48
|
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:57
|
1598 |
-
msgid "Restored"
|
1599 |
-
msgstr "Restored"
|
1600 |
-
|
1601 |
-
#: ../templates/restore-role.php:101
|
1602 |
-
msgid "Unexpected error / Timed out"
|
1603 |
-
msgstr "Unexpected error / Timed out"
|
1604 |
-
|
1605 |
-
#~ msgid "Settings Description"
|
1606 |
-
#~ msgstr "Settings Description"
|
1607 |
-
|
1608 |
-
#~ msgid "Plugin FAQ"
|
1609 |
-
#~ msgstr "Plugin FAQ"
|
1610 |
-
|
1611 |
-
#~ msgid "Feature Request"
|
1612 |
-
#~ msgstr "Feature Request"
|
1613 |
-
|
1614 |
-
#~ msgid "Report Bug"
|
1615 |
-
#~ msgstr "Report Bug"
|
1616 |
-
|
1617 |
-
#~ msgid "Buy me a Beer or Coffee"
|
1618 |
-
#~ msgstr "Buy me a Beer or Coffee"
|
1619 |
-
|
1620 |
-
#~ msgid "Add Role Capabilities"
|
1621 |
-
#~ msgstr "Add Role Capabilities"
|
1622 |
-
|
1623 |
-
#~ msgid "User Role Editor"
|
1624 |
-
#~ msgstr "User Role Editor"
|
1625 |
-
|
1626 |
-
#~ msgid "Enabled"
|
1627 |
-
#~ msgstr "Enabled"
|
1628 |
-
|
1629 |
-
#~ msgid "Position"
|
1630 |
-
#~ msgstr "Position"
|
1631 |
-
|
1632 |
-
#~ msgid "Bar Height"
|
1633 |
-
#~ msgstr "Bar Height"
|
1634 |
-
|
1635 |
-
#~ msgid "Message Text"
|
1636 |
-
#~ msgstr "Message Text"
|
1637 |
-
|
1638 |
-
#~ msgid "Display After"
|
1639 |
-
#~ msgstr "Display After"
|
1640 |
-
|
1641 |
-
#~ msgid "Animation Duration"
|
1642 |
-
#~ msgstr "Animation Duration"
|
1643 |
-
|
1644 |
-
#~ msgid "Display Close Button"
|
1645 |
-
#~ msgstr "Display Close Button"
|
1646 |
-
|
1647 |
-
#~ msgid "Auto Close After"
|
1648 |
-
#~ msgstr "Auto Close After"
|
1649 |
-
|
1650 |
-
#~ msgid "Display Button"
|
1651 |
-
#~ msgstr "Display Button"
|
1652 |
-
|
1653 |
-
#~ msgid "Button Text"
|
1654 |
-
#~ msgstr "Button Text"
|
1655 |
-
|
1656 |
-
#~ msgid "Open URL:"
|
1657 |
-
#~ msgstr "Open URL:"
|
1658 |
-
|
1659 |
-
#~ msgid "Open URL in new tab/window"
|
1660 |
-
#~ msgstr "Open URL in new tab/window"
|
1661 |
-
|
1662 |
-
#~ msgid "Execute JavaScript"
|
1663 |
-
#~ msgstr "Execute JavaScript"
|
1664 |
-
|
1665 |
-
#~ msgid "Close Bar on Button Click"
|
1666 |
-
#~ msgstr "Close Bar on Button Click"
|
1667 |
-
|
1668 |
-
#~ msgid "Display Shadow"
|
1669 |
-
#~ msgstr "Display Shadow"
|
1670 |
-
|
1671 |
-
#~ msgid "Fixed at Position"
|
1672 |
-
#~ msgstr "Fixed at Position"
|
1673 |
-
|
1674 |
-
#~ msgid "Message Text Color"
|
1675 |
-
#~ msgstr "Message Text Color"
|
1676 |
-
|
1677 |
-
#~ msgid "From Color"
|
1678 |
-
#~ msgstr "From Color"
|
1679 |
-
|
1680 |
-
#~ msgid "To Color"
|
1681 |
-
#~ msgstr "To Color"
|
1682 |
-
|
1683 |
-
#~ msgid "Button Text Color"
|
1684 |
-
#~ msgstr "Button Text Color"
|
1685 |
-
|
1686 |
-
#~ msgid "Display on Pages"
|
1687 |
-
#~ msgstr "Display on Pages"
|
1688 |
-
|
1689 |
-
#~ msgid "Display Reopen Button"
|
1690 |
-
#~ msgstr "Display Reopen Button"
|
1691 |
-
|
1692 |
-
#~ msgid "Reopen Button Color"
|
1693 |
-
#~ msgstr "Reopen Button Color"
|
1694 |
-
|
1695 |
-
#~ msgid "Keep Closed"
|
1696 |
-
#~ msgstr "Keep Closed"
|
1697 |
-
|
1698 |
-
#~ msgid "Keep Closed For"
|
1699 |
-
#~ msgstr "Keep Closed For"
|
1700 |
-
|
1701 |
-
#~ msgid "Position Offset"
|
1702 |
-
#~ msgstr "Position Offset"
|
1703 |
-
|
1704 |
-
#~ msgid "Close Button Color"
|
1705 |
-
#~ msgstr "Close Button Color"
|
1706 |
-
|
1707 |
-
#~ msgid "WPFront Notification Bar"
|
1708 |
-
#~ msgstr "WPFront Notification Bar"
|
1709 |
-
|
1710 |
-
#~ msgid "Notification Bar"
|
1711 |
-
#~ msgstr "Notification Bar"
|
1712 |
-
|
1713 |
-
#~ msgid "[Page]"
|
1714 |
-
#~ msgstr "[Page]"
|
1715 |
-
|
1716 |
-
#~ msgid "Home"
|
1717 |
-
#~ msgstr "Home"
|
1718 |
-
|
1719 |
-
#~ msgid "[Post]"
|
1720 |
-
#~ msgstr "[Post]"
|
1721 |
-
|
1722 |
-
#~ msgid "Top"
|
1723 |
-
#~ msgstr "Top"
|
1724 |
-
|
1725 |
-
#~ msgid "Bottom"
|
1726 |
-
#~ msgstr "Bottom"
|
1727 |
-
|
1728 |
-
#~ msgid "[Sticky Bar, bar will stay at position regardless of scrolling.]"
|
1729 |
-
#~ msgstr "[Sticky Bar, bar will stay at position regardless of scrolling.]"
|
1730 |
-
|
1731 |
-
#~ msgid "px"
|
1732 |
-
#~ msgstr "px"
|
1733 |
-
|
1734 |
-
#~ msgid "Set 0px to auto fit contents."
|
1735 |
-
#~ msgstr "Set 0px to auto fit contents."
|
1736 |
-
|
1737 |
-
#~ msgid ""
|
1738 |
-
#~ "(Top bar only) If you find the bar overlapping, try increasing this "
|
1739 |
-
#~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
|
1740 |
-
#~ msgstr ""
|
1741 |
-
#~ "(Top bar only) If you find the bar overlapping, try increasing this "
|
1742 |
-
#~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
|
1743 |
-
|
1744 |
-
#~ msgid "second(s)"
|
1745 |
-
#~ msgstr "second(s)"
|
1746 |
-
|
1747 |
-
#~ msgid "Set 0 second(s) to display immediately."
|
1748 |
-
#~ msgstr "Set 0 second(s) to display immediately."
|
1749 |
-
|
1750 |
-
#~ msgid "Set 0 second(s) for no animation."
|
1751 |
-
#~ msgstr "Set 0 second(s) for no animation."
|
1752 |
-
|
1753 |
-
#~ msgid "[Displays a close button at the top right corner of the bar.]"
|
1754 |
-
#~ msgstr "[Displays a close button at the top right corner of the bar.]"
|
1755 |
-
|
1756 |
-
#~ msgid "Set 0 second(s) to disable auto close."
|
1757 |
-
#~ msgstr "Set 0 second(s) to disable auto close."
|
1758 |
-
|
1759 |
-
#~ msgid "A reopen button will be displayed after the bar is closed."
|
1760 |
-
#~ msgstr "A reopen button will be displayed after the bar is closed."
|
1761 |
-
|
1762 |
-
#~ msgid "Once closed, bar will display closed on other pages."
|
1763 |
-
#~ msgstr "Once closed, bar will display closed on other pages."
|
1764 |
-
|
1765 |
-
#~ msgid "day(s)"
|
1766 |
-
#~ msgstr "day(s)"
|
1767 |
-
|
1768 |
-
#~ msgid ""
|
1769 |
-
#~ "Bar will be kept closed for the number of days specified from last closed "
|
1770 |
-
#~ "date."
|
1771 |
-
#~ msgstr ""
|
1772 |
-
#~ "Bar will be kept closed for the number of days specified from last closed "
|
1773 |
-
#~ "date."
|
1774 |
-
|
1775 |
-
#~ msgid "Content"
|
1776 |
-
#~ msgstr "Content"
|
1777 |
-
|
1778 |
-
#~ msgid "[HTML tags are allowed. e.g. Add <br /> for break.]"
|
1779 |
-
#~ msgstr "[HTML tags are allowed. e.g. Add <br /> for break.]"
|
1780 |
-
|
1781 |
-
#~ msgid "[Displays a button next to the message.]"
|
1782 |
-
#~ msgstr "[Displays a button next to the message.]"
|
1783 |
-
|
1784 |
-
#~ msgid "Filter"
|
1785 |
-
#~ msgstr "Filter"
|
1786 |
-
|
1787 |
-
#~ msgid "Only in landing page."
|
1788 |
-
#~ msgstr "Only in landing page."
|
1789 |
-
|
1790 |
-
#~ msgid "Include in following pages"
|
1791 |
-
#~ msgstr "Include in following pages"
|
1792 |
-
|
1793 |
-
#~ msgid "Exclude in following pages"
|
1794 |
-
#~ msgstr "Exclude in following pages"
|
1795 |
-
|
1796 |
-
#~ msgid "Color"
|
1797 |
-
#~ msgstr "Color"
|
1798 |
-
|
1799 |
-
#~ msgid "Bar Color"
|
1800 |
-
#~ msgstr "Bar Color"
|
1801 |
-
|
1802 |
-
#~ msgid "[Select two different colors to create a gradient.]"
|
1803 |
-
#~ msgstr "[Select two different colors to create a gradient.]"
|
1804 |
-
|
1805 |
-
#~ msgid "Button Color"
|
1806 |
-
#~ msgstr "Button Color"
|
1807 |
-
|
1808 |
-
#~ msgid "[Normal, Hover, X]"
|
1809 |
-
#~ msgstr "[Normal, Hover, X]"
|
1810 |
-
|
1811 |
-
#~ msgid "CSS"
|
1812 |
-
#~ msgstr "CSS"
|
1813 |
-
|
1814 |
-
#~ msgid "Plugin Ideas"
|
1815 |
-
#~ msgstr "Plugin Ideas"
|
1816 |
-
|
1817 |
-
#~ msgid "Animate Display"
|
1818 |
-
#~ msgstr "Animate Display"
|
1819 |
-
|
1820 |
-
#~ msgid "Animate Display Delay"
|
1821 |
-
#~ msgstr "Animate Display Delay"
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WPFront Notification Bar\n"
|
4 |
+
"POT-Creation-Date: 2014-10-17 22:13-0700\n"
|
5 |
+
"PO-Revision-Date: 2014-10-17 22:16-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.6.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:52
|
20 |
+
#: ../templates/personal-pro/menu-editor.php:132
|
21 |
+
msgid "Name"
|
22 |
+
msgstr "Name"
|
23 |
+
|
24 |
+
#: ../classes/base/class-wpfront-base-menu.php:53
|
25 |
+
msgid "Version"
|
26 |
+
msgstr "Version"
|
27 |
+
|
28 |
+
#: ../classes/base/class-wpfront-base-menu.php:54
|
29 |
+
msgid "Rating"
|
30 |
+
msgstr "Rating"
|
31 |
+
|
32 |
+
#: ../classes/base/class-wpfront-base-menu.php:55
|
33 |
+
msgid "Description"
|
34 |
+
msgstr "Description"
|
35 |
+
|
36 |
+
#: ../classes/base/class-wpfront-base-menu.php:69
|
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:105
|
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:123
|
46 |
+
#: ../classes/base/class-wpfront-base-menu.php:217
|
47 |
+
msgid "WPFront Plugins"
|
48 |
+
msgstr "WPFront Plugins"
|
49 |
+
|
50 |
+
#: ../classes/base/class-wpfront-base-menu.php:147
|
51 |
+
#, php-format
|
52 |
+
msgid "By %s"
|
53 |
+
msgstr "By %s"
|
54 |
+
|
55 |
+
#: ../classes/base/class-wpfront-base-menu.php:154
|
56 |
+
#, php-format
|
57 |
+
msgid "More information about %s"
|
58 |
+
msgstr "More information about %s"
|
59 |
+
|
60 |
+
#: ../classes/base/class-wpfront-base-menu.php:154
|
61 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:217
|
62 |
+
msgid "Details"
|
63 |
+
msgstr "Details"
|
64 |
+
|
65 |
+
#: ../classes/base/class-wpfront-base-menu.php:163
|
66 |
+
#, php-format
|
67 |
+
msgid "Install %s"
|
68 |
+
msgstr "Install %s"
|
69 |
+
|
70 |
+
#: ../classes/base/class-wpfront-base-menu.php:163
|
71 |
+
msgid "Install Now"
|
72 |
+
msgstr "Install Now"
|
73 |
+
|
74 |
+
#: ../classes/base/class-wpfront-base-menu.php:168
|
75 |
+
#, php-format
|
76 |
+
msgid "Update to version %s"
|
77 |
+
msgstr "Update to version %s"
|
78 |
+
|
79 |
+
#: ../classes/base/class-wpfront-base-menu.php:168
|
80 |
+
msgid "Update Now"
|
81 |
+
msgstr "Update Now"
|
82 |
+
|
83 |
+
#: ../classes/base/class-wpfront-base-menu.php:173
|
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:173
|
88 |
+
msgid "Installed"
|
89 |
+
msgstr "Installed"
|
90 |
+
|
91 |
+
#: ../classes/base/class-wpfront-base-menu.php:175
|
92 |
+
#: ../classes/base/class-wpfront-base.php:109
|
93 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:104
|
94 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:198
|
95 |
+
#: ../classes/class-wpfront-user-role-editor.php:205
|
96 |
+
msgid "Settings"
|
97 |
+
msgstr "Settings"
|
98 |
+
|
99 |
+
#: ../classes/base/class-wpfront-base-menu.php:177
|
100 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:88
|
101 |
+
#: ../templates/go-pro.php:65 ../templates/go-pro.php:66
|
102 |
+
msgid "Activate"
|
103 |
+
msgstr "Activate"
|
104 |
+
|
105 |
+
#: ../classes/base/class-wpfront-base-menu.php:199
|
106 |
+
#: ../classes/class-wpfront-user-role-editor.php:314
|
107 |
+
msgid "Feedback"
|
108 |
+
msgstr "Feedback"
|
109 |
+
|
110 |
+
#: ../classes/base/class-wpfront-base-menu.php:216
|
111 |
+
msgid "WPFront"
|
112 |
+
msgstr "WPFront"
|
113 |
+
|
114 |
+
#: ../classes/base/class-wpfront-base-menu.php:217
|
115 |
+
msgid "All Plugins"
|
116 |
+
msgstr "All Plugins"
|
117 |
+
|
118 |
+
#: ../classes/base/class-wpfront-base.php:138
|
119 |
+
#: ../classes/class-wpfront-user-role-editor.php:263
|
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:158
|
124 |
+
msgid ""
|
125 |
+
"If you have a caching plugin, clear the cache for the new settings to take "
|
126 |
+
"effect."
|
127 |
+
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:205
|
132 |
+
#: ../templates/personal-pro/menu-editor.php:226
|
133 |
+
msgid "Save Changes"
|
134 |
+
msgstr "Save Changes"
|
135 |
+
|
136 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:81
|
137 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:84
|
138 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:74
|
139 |
+
#: ../classes/class-wpfront-user-role-editor.php:202
|
140 |
+
#: ../classes/class-wpfront-user-role-editor.php:209
|
141 |
+
#: ../templates/list-roles.php:37
|
142 |
+
msgid "Roles"
|
143 |
+
msgstr "Roles"
|
144 |
+
|
145 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:84
|
146 |
+
#: ../classes/class-wpfront-user-role-editor.php:202
|
147 |
+
msgid "All Roles"
|
148 |
+
msgstr "All Roles"
|
149 |
+
|
150 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:89
|
151 |
+
#: ../classes/class-wpfront-user-role-editor.php:203
|
152 |
+
#: ../templates/add-edit-role.php:35 ../templates/add-edit-role.php:154
|
153 |
+
msgid "Add New Role"
|
154 |
+
msgstr "Add New Role"
|
155 |
+
|
156 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:89
|
157 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:77
|
158 |
+
#: ../classes/class-wpfront-user-role-editor.php:203
|
159 |
+
#: ../templates/add-edit-role.php:37 ../templates/list-roles.php:40
|
160 |
+
msgid "Add New"
|
161 |
+
msgstr "Add New"
|
162 |
+
|
163 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:94
|
164 |
+
#: ../classes/class-wpfront-user-role-editor.php:204
|
165 |
+
#: ../templates/restore-role.php:34
|
166 |
+
msgid "Restore Role"
|
167 |
+
msgstr "Restore Role"
|
168 |
+
|
169 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:94
|
170 |
+
#: ../classes/class-wpfront-user-role-editor.php:204
|
171 |
+
#: ../templates/restore-role.php:46
|
172 |
+
msgid "Restore"
|
173 |
+
msgstr "Restore"
|
174 |
+
|
175 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:99
|
176 |
+
#: ../templates/business-pro/sync-roles.php:11
|
177 |
+
#: ../templates/business-pro/sync-roles.php:297
|
178 |
+
msgid "Sync Roles"
|
179 |
+
msgstr "Sync Roles"
|
180 |
+
|
181 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:99
|
182 |
+
msgid "Sync"
|
183 |
+
msgstr "Sync"
|
184 |
+
|
185 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:110
|
186 |
+
#: ../classes/class-wpfront-user-role-editor.php:188
|
187 |
+
msgid "Go Pro"
|
188 |
+
msgstr "Go Pro"
|
189 |
+
|
190 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-business-pro.php:121
|
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 "
|
194 |
+
"settings screen to turn on these CPU and memory intensive functionalities."
|
195 |
+
msgstr ""
|
196 |
+
"You have a large network of sites (usually 10,000 or more sites). Roles "
|
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:213
|
201 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:114
|
202 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:148
|
203 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:162
|
204 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:84
|
205 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:223
|
206 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:303
|
207 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:296
|
208 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:351
|
209 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:385
|
210 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:402
|
211 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:191
|
212 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:233
|
213 |
+
#: ../classes/class-wpfront-user-role-editor-restore.php:165
|
214 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:126
|
215 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:225
|
216 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:563
|
217 |
+
msgid "Overview"
|
218 |
+
msgstr "Overview"
|
219 |
+
|
220 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:215
|
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:218
|
225 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:119
|
226 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:308
|
227 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:356
|
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 "
|
231 |
+
"capabilities. You can select or deselect capabilities even after you copy."
|
232 |
+
msgstr ""
|
233 |
+
"You can copy capabilities from existing roles using the Copy from drop down "
|
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:223
|
238 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:124
|
239 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:179
|
240 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:161
|
241 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:313
|
242 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:218
|
243 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:361
|
244 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:414
|
245 |
+
#: ../templates/add-edit-role.php:71
|
246 |
+
msgid "Display Name"
|
247 |
+
msgstr "Display Name"
|
248 |
+
|
249 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:225
|
250 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:315
|
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 "
|
254 |
+
"field is required."
|
255 |
+
msgstr ""
|
256 |
+
"Use the Display Name field to set the display name for the new role. "
|
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:230
|
261 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:131
|
262 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:174
|
263 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:160
|
264 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:320
|
265 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:221
|
266 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:368
|
267 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:419
|
268 |
+
#: ../templates/add-edit-role.php:81
|
269 |
+
msgid "Role Name"
|
270 |
+
msgstr "Role Name"
|
271 |
+
|
272 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:232
|
273 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:322
|
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 "
|
277 |
+
"cannot be changed. This field is required. This plugin will auto populate "
|
278 |
+
"role name from the display name you have given, but you can change it."
|
279 |
+
msgstr ""
|
280 |
+
"Use the Role Name field to set the role name for the new role. WordPress "
|
281 |
+
"uses role name to identify this role within your site. Once set role name "
|
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:237
|
286 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:138
|
287 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:327
|
288 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:233
|
289 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:375
|
290 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:439
|
291 |
+
#: ../templates/add-edit-role.php:95
|
292 |
+
msgid "Capabilities"
|
293 |
+
msgstr "Capabilities"
|
294 |
+
|
295 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-add-edit.php:239
|
296 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:329
|
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 "
|
300 |
+
"section displays non-standard capabilities within your site. These are "
|
301 |
+
"usually created by plugins and themes. Use the check boxes to select the "
|
302 |
+
"capabilities required for this new role."
|
303 |
+
msgstr ""
|
304 |
+
"Capabilities are displayed as different groups for easy access. The Roles "
|
305 |
+
"section displays capabilities created by this plugin. The Other Capabilities "
|
306 |
+
"section displays non-standard capabilities within your site. These are "
|
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:248
|
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:86
|
315 |
+
#: ../templates/list-roles.php:62 ../templates/list-roles.php:64
|
316 |
+
msgid "Search Roles"
|
317 |
+
msgstr "Search Roles"
|
318 |
+
|
319 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:116
|
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:126
|
324 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:363
|
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."
|
328 |
+
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:133
|
333 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:370
|
334 |
+
msgid ""
|
335 |
+
"Role Name is read only. WordPress uses role name to identify this role "
|
336 |
+
"within your site."
|
337 |
+
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:140
|
342 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:377
|
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 "
|
346 |
+
"section displays non-standard capabilities within your site. These are "
|
347 |
+
"usually created by plugins and themes. Use the check boxes to select the "
|
348 |
+
"capabilities required."
|
349 |
+
msgstr ""
|
350 |
+
"Capabilities are displayed as different groups for easy access. The Roles "
|
351 |
+
"section displays capabilities created by this plugin. The Other Capabilities "
|
352 |
+
"section displays non-standard capabilities within your site. These are "
|
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:150
|
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:153
|
361 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:390
|
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 "
|
365 |
+
"roles at the same time using the bulk action."
|
366 |
+
msgstr ""
|
367 |
+
"Use the Roles List screen to select the roles you want to delete. You can "
|
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:164
|
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:167
|
378 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:407
|
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."
|
382 |
+
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:172
|
387 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:412
|
388 |
+
msgid "Columns"
|
389 |
+
msgstr "Columns"
|
390 |
+
|
391 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:176
|
392 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:421
|
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:181
|
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."
|
400 |
+
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:184
|
405 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:162
|
406 |
+
msgid "Role Type"
|
407 |
+
msgstr "Role Type"
|
408 |
+
|
409 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:186
|
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:189
|
414 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:163
|
415 |
+
msgid "Sites"
|
416 |
+
msgstr "Sites"
|
417 |
+
|
418 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:191
|
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 "
|
422 |
+
"as a link. Clicking on the link will display the site list."
|
423 |
+
msgstr ""
|
424 |
+
"Display the sites that role belongs to. [All Sites] mean, that role is part "
|
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:196
|
429 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:451
|
430 |
+
msgid "Actions"
|
431 |
+
msgstr "Actions"
|
432 |
+
|
433 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:198
|
434 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:453
|
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:"
|
438 |
+
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:201
|
443 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:222
|
444 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:272
|
445 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:456
|
446 |
+
#: ../templates/list-roles.php:98
|
447 |
+
msgid "View"
|
448 |
+
msgstr "View"
|
449 |
+
|
450 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:203
|
451 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:458
|
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 "
|
455 |
+
"edit that role."
|
456 |
+
msgstr ""
|
457 |
+
"Display details about the role. You can see the capabilities assigned for "
|
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:206
|
462 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:219
|
463 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:260
|
464 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:461
|
465 |
+
#: ../templates/list-roles.php:98
|
466 |
+
#: ../templates/personal-pro/post-type-permissions.php:28
|
467 |
+
msgid "Edit"
|
468 |
+
msgstr "Edit"
|
469 |
+
|
470 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:208
|
471 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:463
|
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 "
|
475 |
+
"to edit that role."
|
476 |
+
msgstr ""
|
477 |
+
"Allows you to edit that role. You can see the capabilities assigned for that "
|
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:211
|
482 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:110
|
483 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:220
|
484 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:253
|
485 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:466
|
486 |
+
#: ../templates/list-roles.php:101
|
487 |
+
#: ../templates/personal-pro/post-type-permissions.php:29
|
488 |
+
msgid "Delete"
|
489 |
+
msgstr "Delete"
|
490 |
+
|
491 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-list.php:213
|
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:225
|
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:232
|
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:240
|
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:44
|
508 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:73
|
509 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:174
|
510 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:176
|
511 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:196
|
512 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:215
|
513 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:224
|
514 |
+
#: ../classes/class-wpfront-user-role-editor-restore.php:84
|
515 |
+
#: ../templates/add-edit-role.php:45 ../templates/add-edit-role.php:53
|
516 |
+
#: ../templates/business-pro/sync-roles.php:17
|
517 |
+
msgid "ERROR"
|
518 |
+
msgstr "ERROR"
|
519 |
+
|
520 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:44
|
521 |
+
msgid "Permission denied."
|
522 |
+
msgstr "Permission denied."
|
523 |
+
|
524 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:71
|
525 |
+
msgid "Partial Failure"
|
526 |
+
msgstr "Partial Failure"
|
527 |
+
|
528 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-restore.php:86
|
529 |
+
#: ../classes/class-wpfront-user-role-editor-restore.php:167
|
530 |
+
msgid ""
|
531 |
+
"This screen allow you to restore WordPress built-in roles to its standard "
|
532 |
+
"capability settings."
|
533 |
+
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:89
|
538 |
+
#: ../classes/class-wpfront-user-role-editor-restore.php:170
|
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:98
|
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:116
|
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:142
|
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:145
|
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:148
|
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:198
|
566 |
+
#: ../templates/personal-pro/menu-editor.php:155
|
567 |
+
#: ../templates/personal-pro/menu-editor.php:191
|
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:244
|
573 |
+
msgid "[All Sites]"
|
574 |
+
msgstr "[All Sites]"
|
575 |
+
|
576 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-roles-list-table.php:246
|
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:56
|
582 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:64
|
583 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:83
|
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:67
|
588 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:86
|
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:74
|
593 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:93
|
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:225
|
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:228
|
602 |
+
msgid ""
|
603 |
+
"You will select a site as source, then sync the roles to selected sites or "
|
604 |
+
"entire sites within the network."
|
605 |
+
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:233
|
610 |
+
msgid "Step 1"
|
611 |
+
msgstr "Step 1"
|
612 |
+
|
613 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:235
|
614 |
+
msgid "Select source site."
|
615 |
+
msgstr "Select source site."
|
616 |
+
|
617 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:238
|
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:243
|
622 |
+
msgid "Step 2"
|
623 |
+
msgstr "Step 2"
|
624 |
+
|
625 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:245
|
626 |
+
msgid "Select destination sites."
|
627 |
+
msgstr "Select destination sites."
|
628 |
+
|
629 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:248
|
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:251
|
634 |
+
msgid ""
|
635 |
+
"Use \"All Sites\" to select all the sites within the network or you can "
|
636 |
+
"select individual sites using \"Selected Sites\"."
|
637 |
+
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:256
|
642 |
+
msgid "Step 3"
|
643 |
+
msgstr "Step 3"
|
644 |
+
|
645 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:258
|
646 |
+
msgid "Choose settings."
|
647 |
+
msgstr "Choose settings."
|
648 |
+
|
649 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:261
|
650 |
+
#: ../templates/business-pro/sync-roles.php:222
|
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:263
|
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:266
|
661 |
+
#: ../templates/business-pro/sync-roles.php:227
|
662 |
+
msgid "Overwrite existing roles"
|
663 |
+
msgstr "Overwrite existing roles"
|
664 |
+
|
665 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:268
|
666 |
+
msgid ""
|
667 |
+
"If the role from source already exists in destination, it will be "
|
668 |
+
"overwritten."
|
669 |
+
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:271
|
674 |
+
#: ../templates/business-pro/sync-roles.php:232
|
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:273
|
679 |
+
msgid ""
|
680 |
+
"If a role do not exist in source, but exists in destination it will be "
|
681 |
+
"removed."
|
682 |
+
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:276
|
687 |
+
#: ../templates/business-pro/sync-roles.php:237
|
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:278
|
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:283
|
698 |
+
msgid "Step 4"
|
699 |
+
msgstr "Step 4"
|
700 |
+
|
701 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:285
|
702 |
+
msgid "Confirm and Sync"
|
703 |
+
msgstr "Confirm and Sync"
|
704 |
+
|
705 |
+
#: ../classes/business-pro/class-wpfront-user-role-editor-ms-sync.php:288
|
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:291
|
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:300
|
714 |
+
msgid "Documentation on Multisite Sync"
|
715 |
+
msgstr "Documentation on Multisite Sync"
|
716 |
+
|
717 |
+
#: ../classes/class-wpfront-user-role-editor-add-edit.php:305
|
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:338
|
722 |
+
msgid "Documentation on Add New Role"
|
723 |
+
msgstr "Documentation on Add New Role"
|
724 |
+
|
725 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:59
|
726 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:270
|
727 |
+
msgid "Secondary Roles"
|
728 |
+
msgstr "Secondary Roles"
|
729 |
+
|
730 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:74
|
731 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:303
|
732 |
+
#: ../templates/assign-roles.php:36 ../templates/assign-roles.php:88
|
733 |
+
msgid "Assign Roles"
|
734 |
+
msgstr "Assign Roles"
|
735 |
+
|
736 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:111
|
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:127
|
741 |
+
msgid "Invalid user."
|
742 |
+
msgstr "Invalid user."
|
743 |
+
|
744 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:155
|
745 |
+
msgid "Roles updated successfully."
|
746 |
+
msgstr "Roles updated successfully."
|
747 |
+
|
748 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:157
|
749 |
+
msgid "Invalid primary role specified."
|
750 |
+
msgstr "Invalid primary role specified."
|
751 |
+
|
752 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:175
|
753 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:185
|
754 |
+
msgid "Invalid primary role."
|
755 |
+
msgstr "Invalid primary role."
|
756 |
+
|
757 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:207
|
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:252
|
763 |
+
msgid "Primary Role"
|
764 |
+
msgstr "Primary Role"
|
765 |
+
|
766 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:298
|
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."
|
770 |
+
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:305
|
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 "
|
778 |
+
"Primary Role drop down list. Select the secondary roles using the check "
|
779 |
+
"boxes below, then click Assign Roles."
|
780 |
+
msgstr ""
|
781 |
+
"To assign multiple roles to a user, select that user within the User drop "
|
782 |
+
"down list and select the primary role you want for that user using the "
|
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:310
|
787 |
+
#: ../templates/assign-roles.php:93 ../templates/assign-roles.php:126
|
788 |
+
msgid "Migrate Users"
|
789 |
+
msgstr "Migrate Users"
|
790 |
+
|
791 |
+
#: ../classes/class-wpfront-user-role-editor-assign-roles.php:312
|
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 "
|
795 |
+
"functionality."
|
796 |
+
msgstr ""
|
797 |
+
"To migrate users from one role to another role or to add secondary roles to "
|
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:315
|
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 "
|
805 |
+
"then click Migrate Users."
|
806 |
+
msgstr ""
|
807 |
+
"Select the users using the From Primary Role drop down, to primary role "
|
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:324
|
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:81
|
816 |
+
msgid "Links:"
|
817 |
+
msgstr "Links:"
|
818 |
+
|
819 |
+
#: ../classes/class-wpfront-user-role-editor-controller-base.php:87
|
820 |
+
msgid "FAQ"
|
821 |
+
msgstr "FAQ"
|
822 |
+
|
823 |
+
#: ../classes/class-wpfront-user-role-editor-controller-base.php:88
|
824 |
+
msgid "Support"
|
825 |
+
msgstr "Support"
|
826 |
+
|
827 |
+
#: ../classes/class-wpfront-user-role-editor-controller-base.php:89
|
828 |
+
msgid "Review"
|
829 |
+
msgstr "Review"
|
830 |
+
|
831 |
+
#: ../classes/class-wpfront-user-role-editor-controller-base.php:90
|
832 |
+
msgid "Contact"
|
833 |
+
msgstr "Contact"
|
834 |
+
|
835 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:174
|
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:176
|
840 |
+
msgid "Invalid license key"
|
841 |
+
msgstr "Invalid license key"
|
842 |
+
|
843 |
+
#: ../classes/class-wpfront-user-role-editor-go-pro.php:196
|
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:215
|
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:224
|
852 |
+
msgid "Unable to parse response"
|
853 |
+
msgstr "Unable to parse response"
|
854 |
+
|
855 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:214
|
856 |
+
#: ../templates/add-edit-role.php:111
|
857 |
+
#: ../templates/personal-pro/menu-editor.php:126
|
858 |
+
msgid "Select All"
|
859 |
+
msgstr "Select All"
|
860 |
+
|
861 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:224
|
862 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:424
|
863 |
+
msgid "Type"
|
864 |
+
msgstr "Type"
|
865 |
+
|
866 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:227
|
867 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:429
|
868 |
+
msgid "User Default"
|
869 |
+
msgstr "User Default"
|
870 |
+
|
871 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:230
|
872 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:434
|
873 |
+
msgid "Users"
|
874 |
+
msgstr "Users"
|
875 |
+
|
876 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:251
|
877 |
+
msgid "Bulk Actions"
|
878 |
+
msgstr "Bulk Actions"
|
879 |
+
|
880 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:256
|
881 |
+
#: ../templates/add-edit-role.php:107
|
882 |
+
#: ../templates/personal-pro/menu-editor.php:94
|
883 |
+
msgid "Apply"
|
884 |
+
msgstr "Apply"
|
885 |
+
|
886 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:258
|
887 |
+
#, php-format
|
888 |
+
msgid "%s item(s)"
|
889 |
+
msgstr "%s item(s)"
|
890 |
+
|
891 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:281
|
892 |
+
msgid "All"
|
893 |
+
msgstr "All"
|
894 |
+
|
895 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:292
|
896 |
+
msgid "Having Users"
|
897 |
+
msgstr "Having Users"
|
898 |
+
|
899 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:298
|
900 |
+
msgid "No Users"
|
901 |
+
msgstr "No Users"
|
902 |
+
|
903 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:309
|
904 |
+
#: ../templates/list-roles.php:118
|
905 |
+
msgid "Built-In"
|
906 |
+
msgstr "Built-In"
|
907 |
+
|
908 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:315
|
909 |
+
#: ../templates/list-roles.php:118
|
910 |
+
msgid "Custom"
|
911 |
+
msgstr "Custom"
|
912 |
+
|
913 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:353
|
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:387
|
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:393
|
922 |
+
msgid ""
|
923 |
+
"You cannot delete administrator role, current user’s role and roles you do "
|
924 |
+
"not have permission to."
|
925 |
+
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:404
|
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:416
|
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:426
|
938 |
+
msgid ""
|
939 |
+
"Says whether the role is a WordPress built-in role or not. There are five "
|
940 |
+
"built-in roles."
|
941 |
+
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:431
|
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:436
|
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:441
|
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:444
|
958 |
+
msgid "Menu Edited"
|
959 |
+
msgstr "Menu Edited"
|
960 |
+
|
961 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:446
|
962 |
+
msgid ""
|
963 |
+
"Displays whether the menu has been edited for this role. This is a pro "
|
964 |
+
"feature."
|
965 |
+
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:468
|
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."
|
973 |
+
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:471
|
978 |
+
#: ../templates/list-roles.php:104
|
979 |
+
msgid "Default"
|
980 |
+
msgstr "Default"
|
981 |
+
|
982 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:473
|
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:476
|
989 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:555
|
990 |
+
msgid "Edit Menu"
|
991 |
+
msgstr "Edit Menu"
|
992 |
+
|
993 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:478
|
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."
|
997 |
+
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:490
|
1002 |
+
msgid "Documentation on Edit Role"
|
1003 |
+
msgstr "Documentation on Edit Role"
|
1004 |
+
|
1005 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:497
|
1006 |
+
msgid "Documentation on Delete Roles"
|
1007 |
+
msgstr "Documentation on Delete Roles"
|
1008 |
+
|
1009 |
+
#: ../classes/class-wpfront-user-role-editor-list.php:505
|
1010 |
+
msgid "Documentation on Roles"
|
1011 |
+
msgstr "Documentation on Roles"
|
1012 |
+
|
1013 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:193
|
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 "
|
1017 |
+
"that site’s settings."
|
1018 |
+
msgstr ""
|
1019 |
+
"These settings are applicable for the network admin dashboard. Also these "
|
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:200
|
1024 |
+
#: ../templates/options-template.php:40
|
1025 |
+
msgid "Enable Large Network Functionalities"
|
1026 |
+
msgstr "Enable Large Network Functionalities"
|
1027 |
+
|
1028 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:202
|
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:204
|
1033 |
+
msgid "More details"
|
1034 |
+
msgstr "More details"
|
1035 |
+
|
1036 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:208
|
1037 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:235
|
1038 |
+
#: ../templates/options-template.php:49
|
1039 |
+
msgid "Display Deprecated Capabilities"
|
1040 |
+
msgstr "Display Deprecated Capabilities"
|
1041 |
+
|
1042 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:210
|
1043 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:237
|
1044 |
+
msgid ""
|
1045 |
+
"If enabled, deprecated capabilities will be displayed within the add/edit "
|
1046 |
+
"screens."
|
1047 |
+
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:213
|
1052 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:240
|
1053 |
+
#: ../templates/options-template.php:57
|
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:215
|
1058 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:242
|
1059 |
+
msgid ""
|
1060 |
+
"If enabled, while restoring WordPress built-in capabilities non-standard "
|
1061 |
+
"capabilities will be removed."
|
1062 |
+
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:218
|
1067 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:245
|
1068 |
+
#: ../templates/options-template.php:65
|
1069 |
+
msgid "Override Edit Permissions"
|
1070 |
+
msgstr "Override Edit Permissions"
|
1071 |
+
|
1072 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:220
|
1073 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:247
|
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:223
|
1078 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:250
|
1079 |
+
#: ../templates/options-template.php:74
|
1080 |
+
msgid "Remove Data on Uninstall"
|
1081 |
+
msgstr "Remove Data on Uninstall"
|
1082 |
+
|
1083 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:225
|
1084 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:252
|
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 "
|
1088 |
+
"the license automatically."
|
1089 |
+
msgstr ""
|
1090 |
+
"If enabled, removes all data related to this plugin from database (except "
|
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:263
|
1095 |
+
msgid "Documentation on Multisite Settings"
|
1096 |
+
msgstr "Documentation on Multisite Settings"
|
1097 |
+
|
1098 |
+
#: ../classes/class-wpfront-user-role-editor-options.php:270
|
1099 |
+
msgid "Documentation on Settings"
|
1100 |
+
msgstr "Documentation on Settings"
|
1101 |
+
|
1102 |
+
#: ../classes/class-wpfront-user-role-editor-restore.php:179
|
1103 |
+
msgid "Documentation on Restore"
|
1104 |
+
msgstr "Documentation on Restore"
|
1105 |
+
|
1106 |
+
#: ../classes/class-wpfront-user-role-editor.php:221
|
1107 |
+
msgid "Assign Roles | Migrate Users"
|
1108 |
+
msgstr "Assign Roles | Migrate Users"
|
1109 |
+
|
1110 |
+
#: ../classes/class-wpfront-user-role-editor.php:221
|
1111 |
+
msgid "Assign / Migrate"
|
1112 |
+
msgstr "Assign / Migrate"
|
1113 |
+
|
1114 |
+
#: ../classes/class-wpfront-user-role-editor.php:316
|
1115 |
+
msgid "Buy me a Beer"
|
1116 |
+
msgstr "Buy me a Beer"
|
1117 |
+
|
1118 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-export.php:128
|
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."
|
1122 |
+
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:131
|
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:140
|
1131 |
+
msgid "Documentation on Export"
|
1132 |
+
msgstr "Documentation on Export"
|
1133 |
+
|
1134 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:33
|
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:81
|
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:102
|
1144 |
+
#, php-format
|
1145 |
+
msgid ""
|
1146 |
+
"The export file could not be found at <code>%s</code>. It is likely that "
|
1147 |
+
"this was caused by a permissions problem."
|
1148 |
+
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:133
|
1153 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-import.php:141
|
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:158
|
1158 |
+
#, php-format
|
1159 |
+
msgid ""
|
1160 |
+
"Please update the plugin to latest version. This export file requires plugin "
|
1161 |
+
"version %s or higher."
|
1162 |
+
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:214
|
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:227
|
1171 |
+
msgid ""
|
1172 |
+
"Step 1: Select export file using the Browse button. Then click Upload file "
|
1173 |
+
"and Import."
|
1174 |
+
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:230
|
1179 |
+
msgid ""
|
1180 |
+
"Step 2: Select the roles you want to import using the check boxes and click "
|
1181 |
+
"Import Roles."
|
1182 |
+
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:239
|
1187 |
+
msgid "Documentation on Import"
|
1188 |
+
msgstr "Documentation on Import"
|
1189 |
+
|
1190 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:157
|
1191 |
+
msgid "Menu changes saved."
|
1192 |
+
msgstr "Menu changes saved."
|
1193 |
+
|
1194 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:170
|
1195 |
+
msgid "Menu defaults restored."
|
1196 |
+
msgstr "Menu defaults restored."
|
1197 |
+
|
1198 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:185
|
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:565
|
1203 |
+
msgid ""
|
1204 |
+
"This screen allows you to enable and disable admin menus for a particular "
|
1205 |
+
"role."
|
1206 |
+
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:568
|
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:571
|
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 "
|
1218 |
+
"current user has access to."
|
1219 |
+
msgstr ""
|
1220 |
+
"Disabled menu items are already hidden, because the selected role doesn't "
|
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:576
|
1225 |
+
msgid "Fields"
|
1226 |
+
msgstr "Fields"
|
1227 |
+
|
1228 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:578
|
1229 |
+
#: ../templates/personal-pro/menu-editor.php:33
|
1230 |
+
msgid "Override Role"
|
1231 |
+
msgstr "Override Role"
|
1232 |
+
|
1233 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:580
|
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:583
|
1238 |
+
#: ../templates/personal-pro/menu-editor.php:50
|
1239 |
+
msgid "Override Type"
|
1240 |
+
msgstr "Override Type"
|
1241 |
+
|
1242 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:585
|
1243 |
+
msgid ""
|
1244 |
+
"Soft - Pages may be available through directly typing the URL. Hard - Even "
|
1245 |
+
"URLs will be blocked."
|
1246 |
+
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:588
|
1251 |
+
#: ../templates/personal-pro/menu-editor.php:61
|
1252 |
+
msgid "Hide New Menus"
|
1253 |
+
msgstr "Hide New Menus"
|
1254 |
+
|
1255 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:590
|
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:593
|
1260 |
+
#: ../templates/personal-pro/menu-editor.php:69
|
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:595
|
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:600
|
1269 |
+
msgid "Restore Default"
|
1270 |
+
msgstr "Restore Default"
|
1271 |
+
|
1272 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-menu-editor.php:602
|
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:611
|
1279 |
+
msgid "Documentation on Menu Editor"
|
1280 |
+
msgstr "Documentation on Menu Editor"
|
1281 |
+
|
1282 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:65
|
1283 |
+
#: ../templates/personal-pro/menu-editor.php:3
|
1284 |
+
msgid "Menu Editor"
|
1285 |
+
msgstr "Menu Editor"
|
1286 |
+
|
1287 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:66
|
1288 |
+
#: ../templates/personal-pro/export-roles.php:3
|
1289 |
+
msgid "Export Roles"
|
1290 |
+
msgstr "Export Roles"
|
1291 |
+
|
1292 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:66
|
1293 |
+
msgid "Export"
|
1294 |
+
msgstr "Export"
|
1295 |
+
|
1296 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:67
|
1297 |
+
#: ../templates/personal-pro/import-roles.php:3
|
1298 |
+
#: ../templates/personal-pro/import-roles.php:82
|
1299 |
+
msgid "Import Roles"
|
1300 |
+
msgstr "Import Roles"
|
1301 |
+
|
1302 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:67
|
1303 |
+
msgid "Import"
|
1304 |
+
msgstr "Import"
|
1305 |
+
|
1306 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-personal-pro.php:87
|
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:44
|
1312 |
+
#: ../classes/personal-pro/class-wpfront-user-role-editor-post-type-permissions.php:269
|
1313 |
+
msgid "Role Permissions"
|
1314 |
+
msgstr "Role Permissions"
|
1315 |
+
|
1316 |
+
#: ../templates/add-edit-role.php:35
|
1317 |
+
msgid "Edit Role"
|
1318 |
+
msgstr "Edit Role"
|
1319 |
+
|
1320 |
+
#: ../templates/add-edit-role.php:45
|
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:53
|
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:60
|
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:71 ../templates/add-edit-role.php:81
|
1333 |
+
msgid "required"
|
1334 |
+
msgstr "required"
|
1335 |
+
|
1336 |
+
#: ../templates/add-edit-role.php:100
|
1337 |
+
#: ../templates/personal-pro/menu-editor.php:83
|
1338 |
+
msgid "Copy from"
|
1339 |
+
msgstr "Copy from"
|
1340 |
+
|
1341 |
+
#: ../templates/add-edit-role.php:112
|
1342 |
+
msgid "Select None"
|
1343 |
+
msgstr "Select None"
|
1344 |
+
|
1345 |
+
#: ../templates/add-edit-role.php:154
|
1346 |
+
msgid "Update Role"
|
1347 |
+
msgstr "Update Role"
|
1348 |
+
|
1349 |
+
#: ../templates/assign-roles.php:62
|
1350 |
+
msgid "User"
|
1351 |
+
msgstr "User"
|
1352 |
+
|
1353 |
+
#: ../templates/assign-roles.php:103
|
1354 |
+
msgid "From Primary Role"
|
1355 |
+
msgstr "From Primary Role"
|
1356 |
+
|
1357 |
+
#: ../templates/business-pro/sync-roles.php:25
|
1358 |
+
msgid "Step 1: Select the source site"
|
1359 |
+
msgstr "Step 1: Select the source site"
|
1360 |
+
|
1361 |
+
#: ../templates/business-pro/sync-roles.php:34
|
1362 |
+
#: ../templates/business-pro/sync-roles.php:84
|
1363 |
+
msgid "Search Sites"
|
1364 |
+
msgstr "Search Sites"
|
1365 |
+
|
1366 |
+
#: ../templates/business-pro/sync-roles.php:40
|
1367 |
+
#: ../templates/business-pro/sync-roles.php:95
|
1368 |
+
#: ../templates/business-pro/sync-roles.php:245
|
1369 |
+
msgid "Next Step"
|
1370 |
+
msgstr "Next Step"
|
1371 |
+
|
1372 |
+
#: ../templates/business-pro/sync-roles.php:70
|
1373 |
+
msgid "Step 2: Select destination sites"
|
1374 |
+
msgstr "Step 2: Select destination sites"
|
1375 |
+
|
1376 |
+
#: ../templates/business-pro/sync-roles.php:74
|
1377 |
+
#: ../templates/business-pro/sync-roles.php:269
|
1378 |
+
msgid "All Sites"
|
1379 |
+
msgstr "All Sites"
|
1380 |
+
|
1381 |
+
#: ../templates/business-pro/sync-roles.php:77
|
1382 |
+
msgid "Selected Sites"
|
1383 |
+
msgstr "Selected Sites"
|
1384 |
+
|
1385 |
+
#: ../templates/business-pro/sync-roles.php:216
|
1386 |
+
msgid "Step 3: Choose settings"
|
1387 |
+
msgstr "Step 3: Choose settings"
|
1388 |
+
|
1389 |
+
#: ../templates/business-pro/sync-roles.php:255
|
1390 |
+
msgid "Step 4: Confirm and Sync"
|
1391 |
+
msgstr "Step 4: Confirm and Sync"
|
1392 |
+
|
1393 |
+
#: ../templates/business-pro/sync-roles.php:260
|
1394 |
+
msgid "Source: "
|
1395 |
+
msgstr "Source: "
|
1396 |
+
|
1397 |
+
#: ../templates/business-pro/sync-roles.php:268
|
1398 |
+
msgid "Destination: "
|
1399 |
+
msgstr "Destination: "
|
1400 |
+
|
1401 |
+
#: ../templates/business-pro/sync-roles.php:269
|
1402 |
+
msgid "Selected sites"
|
1403 |
+
msgstr "Selected sites"
|
1404 |
+
|
1405 |
+
#: ../templates/business-pro/sync-roles.php:269
|
1406 |
+
#, php-format
|
1407 |
+
msgid "%s site(s) selected"
|
1408 |
+
msgstr "%s site(s) selected"
|
1409 |
+
|
1410 |
+
#: ../templates/business-pro/sync-roles.php:274
|
1411 |
+
msgid "Add roles existing only in source: "
|
1412 |
+
msgstr "Add roles existing only in source: "
|
1413 |
+
|
1414 |
+
#: ../templates/business-pro/sync-roles.php:275
|
1415 |
+
#: ../templates/business-pro/sync-roles.php:281
|
1416 |
+
#: ../templates/business-pro/sync-roles.php:287
|
1417 |
+
#: ../templates/business-pro/sync-roles.php:293
|
1418 |
+
msgid "Yes"
|
1419 |
+
msgstr "Yes"
|
1420 |
+
|
1421 |
+
#: ../templates/business-pro/sync-roles.php:275
|
1422 |
+
#: ../templates/business-pro/sync-roles.php:281
|
1423 |
+
#: ../templates/business-pro/sync-roles.php:287
|
1424 |
+
#: ../templates/business-pro/sync-roles.php:293
|
1425 |
+
msgid "No"
|
1426 |
+
msgstr "No"
|
1427 |
+
|
1428 |
+
#: ../templates/business-pro/sync-roles.php:280
|
1429 |
+
msgid "Overwrite existing roles: "
|
1430 |
+
msgstr "Overwrite existing roles: "
|
1431 |
+
|
1432 |
+
#: ../templates/business-pro/sync-roles.php:286
|
1433 |
+
msgid "Remove roles existing only in destination: "
|
1434 |
+
msgstr "Remove roles existing only in destination: "
|
1435 |
+
|
1436 |
+
#: ../templates/business-pro/sync-roles.php:292
|
1437 |
+
msgid "Update new user default role: "
|
1438 |
+
msgstr "Update new user default role: "
|
1439 |
+
|
1440 |
+
#: ../templates/business-pro/sync-roles.php:344
|
1441 |
+
msgid "SUCCESS"
|
1442 |
+
msgstr "SUCCESS"
|
1443 |
+
|
1444 |
+
#: ../templates/business-pro/sync-roles.php:347
|
1445 |
+
msgid "FAIL"
|
1446 |
+
msgstr "FAIL"
|
1447 |
+
|
1448 |
+
#: ../templates/business-pro/sync-roles.php:370
|
1449 |
+
msgid "Synching site"
|
1450 |
+
msgstr "Synching site"
|
1451 |
+
|
1452 |
+
#: ../templates/delete-role.php:37
|
1453 |
+
msgid "Delete Roles"
|
1454 |
+
msgstr "Delete Roles"
|
1455 |
+
|
1456 |
+
#: ../templates/delete-role.php:38
|
1457 |
+
msgid "You have specified these roles for deletion"
|
1458 |
+
msgstr "You have specified these roles for deletion"
|
1459 |
+
|
1460 |
+
#: ../templates/delete-role.php:45
|
1461 |
+
msgid "Role"
|
1462 |
+
msgstr "Role"
|
1463 |
+
|
1464 |
+
#: ../templates/delete-role.php:57
|
1465 |
+
msgid "Confirm Deletion"
|
1466 |
+
msgstr "Confirm Deletion"
|
1467 |
+
|
1468 |
+
#: ../templates/go-pro.php:36
|
1469 |
+
msgid "WPFront User Role Editor Pro"
|
1470 |
+
msgstr "WPFront User Role Editor Pro"
|
1471 |
+
|
1472 |
+
#: ../templates/go-pro.php:59
|
1473 |
+
msgid "License Key"
|
1474 |
+
msgstr "License Key"
|
1475 |
+
|
1476 |
+
#: ../templates/go-pro.php:68 ../templates/go-pro.php:69
|
1477 |
+
msgid "Deactivate"
|
1478 |
+
msgstr "Deactivate"
|
1479 |
+
|
1480 |
+
#: ../templates/go-pro.php:76
|
1481 |
+
msgid "License Expires"
|
1482 |
+
msgstr "License Expires"
|
1483 |
+
|
1484 |
+
#: ../templates/options-template.php:32
|
1485 |
+
msgid "WPFront User Role Editor Settings"
|
1486 |
+
msgstr "WPFront User Role Editor Settings"
|
1487 |
+
|
1488 |
+
#: ../templates/personal-pro/export-roles.php:7
|
1489 |
+
msgid "Select the roles to be uploaded"
|
1490 |
+
msgstr "Select the roles to be uploaded"
|
1491 |
+
|
1492 |
+
#: ../templates/personal-pro/export-roles.php:34
|
1493 |
+
msgid "Download Export File"
|
1494 |
+
msgstr "Download Export File"
|
1495 |
+
|
1496 |
+
#: ../templates/personal-pro/import-roles.php:15
|
1497 |
+
msgid "ERROR:"
|
1498 |
+
msgstr "ERROR:"
|
1499 |
+
|
1500 |
+
#: ../templates/personal-pro/import-roles.php:24
|
1501 |
+
msgid ""
|
1502 |
+
"Choose a WPFront User Role Editor export file (.xml) to upload, then click "
|
1503 |
+
"Upload file and import."
|
1504 |
+
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:33
|
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:33
|
1514 |
+
msgid "UTC"
|
1515 |
+
msgstr "UTC"
|
1516 |
+
|
1517 |
+
#: ../templates/personal-pro/import-roles.php:40
|
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:46
|
1522 |
+
msgid "Select roles to import"
|
1523 |
+
msgstr "Select roles to import"
|
1524 |
+
|
1525 |
+
#: ../templates/personal-pro/import-roles.php:75
|
1526 |
+
msgid ""
|
1527 |
+
"* These roles already exist in this site. Importing them will overwrite "
|
1528 |
+
"existing roles."
|
1529 |
+
msgstr ""
|
1530 |
+
"* These roles already exist in this site. Importing them will overwrite "
|
1531 |
+
"existing roles."
|
1532 |
+
|
1533 |
+
#: ../templates/personal-pro/menu-editor.php:20
|
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 "
|
1537 |
+
"the selected role doesn't have the capability to display that menu. Grid "
|
1538 |
+
"displays menus which the current user has access to. "
|
1539 |
+
msgstr ""
|
1540 |
+
"Select a role below to edit menu for that role. Deselect a menu from the "
|
1541 |
+
"grid to remove that menu. Disabled menu items are already hidden, because "
|
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:54
|
1546 |
+
msgid "Soft"
|
1547 |
+
msgstr "Soft"
|
1548 |
+
|
1549 |
+
#: ../templates/personal-pro/menu-editor.php:55
|
1550 |
+
msgid "Hard"
|
1551 |
+
msgstr "Hard"
|
1552 |
+
|
1553 |
+
#: ../templates/personal-pro/menu-editor.php:86
|
1554 |
+
msgid "Restore default"
|
1555 |
+
msgstr "Restore default"
|
1556 |
+
|
1557 |
+
#: ../templates/personal-pro/menu-editor.php:99
|
1558 |
+
msgid "Hide deselected item(s)"
|
1559 |
+
msgstr "Hide deselected item(s)"
|
1560 |
+
|
1561 |
+
#: ../templates/personal-pro/menu-editor.php:104
|
1562 |
+
msgid "Hide disabled item(s)"
|
1563 |
+
msgstr "Hide disabled item(s)"
|
1564 |
+
|
1565 |
+
#: ../templates/personal-pro/menu-editor.php:110
|
1566 |
+
msgid "Has Capability"
|
1567 |
+
msgstr "Has Capability"
|
1568 |
+
|
1569 |
+
#: ../templates/personal-pro/menu-editor.php:115
|
1570 |
+
msgid "No Capability"
|
1571 |
+
msgstr "No Capability"
|
1572 |
+
|
1573 |
+
#: ../templates/personal-pro/menu-editor.php:135
|
1574 |
+
msgid "Capability"
|
1575 |
+
msgstr "Capability"
|
1576 |
+
|
1577 |
+
#: ../templates/personal-pro/menu-editor.php:138
|
1578 |
+
msgid "Menu Slug"
|
1579 |
+
msgstr "Menu Slug"
|
1580 |
+
|
1581 |
+
#: ../templates/personal-pro/post-type-permissions.php:19
|
1582 |
+
msgid "Enable Role Permissions"
|
1583 |
+
msgstr "Enable Role Permissions"
|
1584 |
+
|
1585 |
+
#: ../templates/personal-pro/post-type-permissions.php:27
|
1586 |
+
msgid "Read"
|
1587 |
+
msgstr "Read"
|
1588 |
+
|
1589 |
+
#: ../templates/restore-role.php:48
|
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:57
|
1598 |
+
msgid "Restored"
|
1599 |
+
msgstr "Restored"
|
1600 |
+
|
1601 |
+
#: ../templates/restore-role.php:101
|
1602 |
+
msgid "Unexpected error / Timed out"
|
1603 |
+
msgstr "Unexpected error / Timed out"
|
1604 |
+
|
1605 |
+
#~ msgid "Settings Description"
|
1606 |
+
#~ msgstr "Settings Description"
|
1607 |
+
|
1608 |
+
#~ msgid "Plugin FAQ"
|
1609 |
+
#~ msgstr "Plugin FAQ"
|
1610 |
+
|
1611 |
+
#~ msgid "Feature Request"
|
1612 |
+
#~ msgstr "Feature Request"
|
1613 |
+
|
1614 |
+
#~ msgid "Report Bug"
|
1615 |
+
#~ msgstr "Report Bug"
|
1616 |
+
|
1617 |
+
#~ msgid "Buy me a Beer or Coffee"
|
1618 |
+
#~ msgstr "Buy me a Beer or Coffee"
|
1619 |
+
|
1620 |
+
#~ msgid "Add Role Capabilities"
|
1621 |
+
#~ msgstr "Add Role Capabilities"
|
1622 |
+
|
1623 |
+
#~ msgid "User Role Editor"
|
1624 |
+
#~ msgstr "User Role Editor"
|
1625 |
+
|
1626 |
+
#~ msgid "Enabled"
|
1627 |
+
#~ msgstr "Enabled"
|
1628 |
+
|
1629 |
+
#~ msgid "Position"
|
1630 |
+
#~ msgstr "Position"
|
1631 |
+
|
1632 |
+
#~ msgid "Bar Height"
|
1633 |
+
#~ msgstr "Bar Height"
|
1634 |
+
|
1635 |
+
#~ msgid "Message Text"
|
1636 |
+
#~ msgstr "Message Text"
|
1637 |
+
|
1638 |
+
#~ msgid "Display After"
|
1639 |
+
#~ msgstr "Display After"
|
1640 |
+
|
1641 |
+
#~ msgid "Animation Duration"
|
1642 |
+
#~ msgstr "Animation Duration"
|
1643 |
+
|
1644 |
+
#~ msgid "Display Close Button"
|
1645 |
+
#~ msgstr "Display Close Button"
|
1646 |
+
|
1647 |
+
#~ msgid "Auto Close After"
|
1648 |
+
#~ msgstr "Auto Close After"
|
1649 |
+
|
1650 |
+
#~ msgid "Display Button"
|
1651 |
+
#~ msgstr "Display Button"
|
1652 |
+
|
1653 |
+
#~ msgid "Button Text"
|
1654 |
+
#~ msgstr "Button Text"
|
1655 |
+
|
1656 |
+
#~ msgid "Open URL:"
|
1657 |
+
#~ msgstr "Open URL:"
|
1658 |
+
|
1659 |
+
#~ msgid "Open URL in new tab/window"
|
1660 |
+
#~ msgstr "Open URL in new tab/window"
|
1661 |
+
|
1662 |
+
#~ msgid "Execute JavaScript"
|
1663 |
+
#~ msgstr "Execute JavaScript"
|
1664 |
+
|
1665 |
+
#~ msgid "Close Bar on Button Click"
|
1666 |
+
#~ msgstr "Close Bar on Button Click"
|
1667 |
+
|
1668 |
+
#~ msgid "Display Shadow"
|
1669 |
+
#~ msgstr "Display Shadow"
|
1670 |
+
|
1671 |
+
#~ msgid "Fixed at Position"
|
1672 |
+
#~ msgstr "Fixed at Position"
|
1673 |
+
|
1674 |
+
#~ msgid "Message Text Color"
|
1675 |
+
#~ msgstr "Message Text Color"
|
1676 |
+
|
1677 |
+
#~ msgid "From Color"
|
1678 |
+
#~ msgstr "From Color"
|
1679 |
+
|
1680 |
+
#~ msgid "To Color"
|
1681 |
+
#~ msgstr "To Color"
|
1682 |
+
|
1683 |
+
#~ msgid "Button Text Color"
|
1684 |
+
#~ msgstr "Button Text Color"
|
1685 |
+
|
1686 |
+
#~ msgid "Display on Pages"
|
1687 |
+
#~ msgstr "Display on Pages"
|
1688 |
+
|
1689 |
+
#~ msgid "Display Reopen Button"
|
1690 |
+
#~ msgstr "Display Reopen Button"
|
1691 |
+
|
1692 |
+
#~ msgid "Reopen Button Color"
|
1693 |
+
#~ msgstr "Reopen Button Color"
|
1694 |
+
|
1695 |
+
#~ msgid "Keep Closed"
|
1696 |
+
#~ msgstr "Keep Closed"
|
1697 |
+
|
1698 |
+
#~ msgid "Keep Closed For"
|
1699 |
+
#~ msgstr "Keep Closed For"
|
1700 |
+
|
1701 |
+
#~ msgid "Position Offset"
|
1702 |
+
#~ msgstr "Position Offset"
|
1703 |
+
|
1704 |
+
#~ msgid "Close Button Color"
|
1705 |
+
#~ msgstr "Close Button Color"
|
1706 |
+
|
1707 |
+
#~ msgid "WPFront Notification Bar"
|
1708 |
+
#~ msgstr "WPFront Notification Bar"
|
1709 |
+
|
1710 |
+
#~ msgid "Notification Bar"
|
1711 |
+
#~ msgstr "Notification Bar"
|
1712 |
+
|
1713 |
+
#~ msgid "[Page]"
|
1714 |
+
#~ msgstr "[Page]"
|
1715 |
+
|
1716 |
+
#~ msgid "Home"
|
1717 |
+
#~ msgstr "Home"
|
1718 |
+
|
1719 |
+
#~ msgid "[Post]"
|
1720 |
+
#~ msgstr "[Post]"
|
1721 |
+
|
1722 |
+
#~ msgid "Top"
|
1723 |
+
#~ msgstr "Top"
|
1724 |
+
|
1725 |
+
#~ msgid "Bottom"
|
1726 |
+
#~ msgstr "Bottom"
|
1727 |
+
|
1728 |
+
#~ msgid "[Sticky Bar, bar will stay at position regardless of scrolling.]"
|
1729 |
+
#~ msgstr "[Sticky Bar, bar will stay at position regardless of scrolling.]"
|
1730 |
+
|
1731 |
+
#~ msgid "px"
|
1732 |
+
#~ msgstr "px"
|
1733 |
+
|
1734 |
+
#~ msgid "Set 0px to auto fit contents."
|
1735 |
+
#~ msgstr "Set 0px to auto fit contents."
|
1736 |
+
|
1737 |
+
#~ msgid ""
|
1738 |
+
#~ "(Top bar only) If you find the bar overlapping, try increasing this "
|
1739 |
+
#~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
|
1740 |
+
#~ msgstr ""
|
1741 |
+
#~ "(Top bar only) If you find the bar overlapping, try increasing this "
|
1742 |
+
#~ "value. (eg. WordPress 3.8 Twenty Fourteen theme, set 48px)"
|
1743 |
+
|
1744 |
+
#~ msgid "second(s)"
|
1745 |
+
#~ msgstr "second(s)"
|
1746 |
+
|
1747 |
+
#~ msgid "Set 0 second(s) to display immediately."
|
1748 |
+
#~ msgstr "Set 0 second(s) to display immediately."
|
1749 |
+
|
1750 |
+
#~ msgid "Set 0 second(s) for no animation."
|
1751 |
+
#~ msgstr "Set 0 second(s) for no animation."
|
1752 |
+
|
1753 |
+
#~ msgid "[Displays a close button at the top right corner of the bar.]"
|
1754 |
+
#~ msgstr "[Displays a close button at the top right corner of the bar.]"
|
1755 |
+
|
1756 |
+
#~ msgid "Set 0 second(s) to disable auto close."
|
1757 |
+
#~ msgstr "Set 0 second(s) to disable auto close."
|
1758 |
+
|
1759 |
+
#~ msgid "A reopen button will be displayed after the bar is closed."
|
1760 |
+
#~ msgstr "A reopen button will be displayed after the bar is closed."
|
1761 |
+
|
1762 |
+
#~ msgid "Once closed, bar will display closed on other pages."
|
1763 |
+
#~ msgstr "Once closed, bar will display closed on other pages."
|
1764 |
+
|
1765 |
+
#~ msgid "day(s)"
|
1766 |
+
#~ msgstr "day(s)"
|
1767 |
+
|
1768 |
+
#~ msgid ""
|
1769 |
+
#~ "Bar will be kept closed for the number of days specified from last closed "
|
1770 |
+
#~ "date."
|
1771 |
+
#~ msgstr ""
|
1772 |
+
#~ "Bar will be kept closed for the number of days specified from last closed "
|
1773 |
+
#~ "date."
|
1774 |
+
|
1775 |
+
#~ msgid "Content"
|
1776 |
+
#~ msgstr "Content"
|
1777 |
+
|
1778 |
+
#~ msgid "[HTML tags are allowed. e.g. Add <br /> for break.]"
|
1779 |
+
#~ msgstr "[HTML tags are allowed. e.g. Add <br /> for break.]"
|
1780 |
+
|
1781 |
+
#~ msgid "[Displays a button next to the message.]"
|
1782 |
+
#~ msgstr "[Displays a button next to the message.]"
|
1783 |
+
|
1784 |
+
#~ msgid "Filter"
|
1785 |
+
#~ msgstr "Filter"
|
1786 |
+
|
1787 |
+
#~ msgid "Only in landing page."
|
1788 |
+
#~ msgstr "Only in landing page."
|
1789 |
+
|
1790 |
+
#~ msgid "Include in following pages"
|
1791 |
+
#~ msgstr "Include in following pages"
|
1792 |
+
|
1793 |
+
#~ msgid "Exclude in following pages"
|
1794 |
+
#~ msgstr "Exclude in following pages"
|
1795 |
+
|
1796 |
+
#~ msgid "Color"
|
1797 |
+
#~ msgstr "Color"
|
1798 |
+
|
1799 |
+
#~ msgid "Bar Color"
|
1800 |
+
#~ msgstr "Bar Color"
|
1801 |
+
|
1802 |
+
#~ msgid "[Select two different colors to create a gradient.]"
|
1803 |
+
#~ msgstr "[Select two different colors to create a gradient.]"
|
1804 |
+
|
1805 |
+
#~ msgid "Button Color"
|
1806 |
+
#~ msgstr "Button Color"
|
1807 |
+
|
1808 |
+
#~ msgid "[Normal, Hover, X]"
|
1809 |
+
#~ msgstr "[Normal, Hover, X]"
|
1810 |
+
|
1811 |
+
#~ msgid "CSS"
|
1812 |
+
#~ msgstr "CSS"
|
1813 |
+
|
1814 |
+
#~ msgid "Plugin Ideas"
|
1815 |
+
#~ msgstr "Plugin Ideas"
|
1816 |
+
|
1817 |
+
#~ msgid "Animate Display"
|
1818 |
+
#~ msgstr "Animate Display"
|
1819 |
+
|
1820 |
+
#~ msgid "Animate Display Delay"
|
1821 |
+
#~ msgstr "Animate Display Delay"
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://wpfront.com/donate/
|
|
4 |
Tags: user role editor, role editor, user role, role, 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.0
|
7 |
-
Stable tag: 2.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -65,6 +65,10 @@ Please visit [WPFront User Role Editor FAQ](https://wpfront.com/user-role-editor
|
|
65 |
|
66 |
== Changelog ==
|
67 |
|
|
|
|
|
|
|
|
|
68 |
= 2.0 =
|
69 |
* Removed 'wpfront_' from role capabilities.
|
70 |
* Removed 'Add role capabilities'. It is enabled by default.
|
@@ -90,6 +94,9 @@ Please visit [WPFront User Role Editor FAQ](https://wpfront.com/user-role-editor
|
|
90 |
|
91 |
== Upgrade Notice ==
|
92 |
|
|
|
|
|
|
|
93 |
= 2.0 =
|
94 |
* Now you can assign multiple roles to a user.
|
95 |
* Migrate users from role to role.
|
4 |
Tags: user role editor, role editor, user role, role, 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.0
|
7 |
+
Stable tag: 2.1
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
65 |
|
66 |
== Changelog ==
|
67 |
|
68 |
+
= 2.1 =
|
69 |
+
* Custom post type permissions.
|
70 |
+
* Bug fixes.
|
71 |
+
|
72 |
= 2.0 =
|
73 |
* Removed 'wpfront_' from role capabilities.
|
74 |
* Removed 'Add role capabilities'. It is enabled by default.
|
94 |
|
95 |
== Upgrade Notice ==
|
96 |
|
97 |
+
= 2.1 =
|
98 |
+
* Manage custom post type permissions.
|
99 |
+
|
100 |
= 2.0 =
|
101 |
* Now you can assign multiple roles to a user.
|
102 |
* Migrate users from role to role.
|
templates/add-edit-role.php
CHANGED
@@ -128,18 +128,38 @@
|
|
128 |
<div class="inside">
|
129 |
<div class="main">
|
130 |
<?php
|
131 |
-
|
132 |
?>
|
133 |
-
<div>
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
<?php } ?>
|
141 |
</div>
|
142 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
}
|
144 |
?>
|
145 |
</div>
|
128 |
<div class="inside">
|
129 |
<div class="main">
|
130 |
<?php
|
131 |
+
if ($value->caps === 'defaulted') {
|
132 |
?>
|
133 |
+
<div class="no-capability">
|
134 |
+
<?php
|
135 |
+
echo $this->__("Uses 'Posts' capabilities.");
|
136 |
+
$upgrade_message = sprintf($this->__("%s to customize capabilites."), '<a href="https://wpfront.com/ureaddedit" target="_blank">' . $this->__('Upgrade to Pro') . '</a>');
|
137 |
+
$upgrade_message = apply_filters('wpfront_ure_custom_post_type_upgrade_message', $upgrade_message);
|
138 |
+
echo ' ' . $upgrade_message;
|
139 |
+
?>
|
|
|
140 |
</div>
|
141 |
<?php
|
142 |
+
} else {
|
143 |
+
foreach ($value->caps as $cap) {
|
144 |
+
?>
|
145 |
+
<div>
|
146 |
+
<input type="checkbox" id="<?php echo $cap; ?>" name="capabilities[<?php echo $cap; ?>]" <?php echo $value->disabled ? 'disabled' : '' ?> <?php echo $this->capability_checked($cap) ? 'checked' : '' ?> />
|
147 |
+
<label for="<?php echo $cap; ?>" title="<?php echo $cap; ?>"><?php echo $cap; ?></label>
|
148 |
+
<?php
|
149 |
+
if ($value->has_help) {
|
150 |
+
$help_url = $this->get_help_url($cap);
|
151 |
+
if ($help_url !== NULL) {
|
152 |
+
?>
|
153 |
+
<a target="_blank" href="<?php echo $help_url; ?>">
|
154 |
+
<img class="help" src="<?php echo $this->image_url() . 'help.png'; ?>" />
|
155 |
+
</a>
|
156 |
+
<?php
|
157 |
+
}
|
158 |
+
}
|
159 |
+
?>
|
160 |
+
</div>
|
161 |
+
<?php
|
162 |
+
}
|
163 |
}
|
164 |
?>
|
165 |
</div>
|
templates/options-template.php
CHANGED
@@ -68,7 +68,35 @@
|
|
68 |
<input type="checkbox" name="override_edit_permissions" <?php echo $this->override_edit_permissions() ? 'checked' : ''; ?> />
|
69 |
</td>
|
70 |
</tr>
|
71 |
-
<?php if ($this->main->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
<tr>
|
73 |
<th scope="row">
|
74 |
<?php echo $this->__('Remove Data on Uninstall'); ?>
|
@@ -101,7 +129,12 @@
|
|
101 |
fields.each(function(i, e) {
|
102 |
var ele = $(e);
|
103 |
if (ele.attr("type") == "checkbox") {
|
104 |
-
|
|
|
|
|
|
|
|
|
|
|
105 |
}
|
106 |
else
|
107 |
data[ele.attr("name")] = ele.val();
|
68 |
<input type="checkbox" name="override_edit_permissions" <?php echo $this->override_edit_permissions() ? 'checked' : ''; ?> />
|
69 |
</td>
|
70 |
</tr>
|
71 |
+
<?php if ($this->main->enable_pro_only_options() && !$this->multisite) { ?>
|
72 |
+
<tr>
|
73 |
+
<th scope="row">
|
74 |
+
<?php echo $this->__('Customize permissions (custom post types)'); ?>
|
75 |
+
</th>
|
76 |
+
<td>
|
77 |
+
<?php
|
78 |
+
$post_types = $this->get_custom_post_type_list();
|
79 |
+
if (empty($post_types))
|
80 |
+
echo $this->__('No customizable post types found.');
|
81 |
+
else {
|
82 |
+
foreach ($post_types as $key => $value) {
|
83 |
+
?>
|
84 |
+
<div class="options-list">
|
85 |
+
<label>
|
86 |
+
<input name="custom-post-types" type="checkbox" value="<?php echo $key; ?>" <?php echo $value->enabled ? 'checked' : ''; ?> />
|
87 |
+
<?php echo $this->__($value->label); ?>
|
88 |
+
</label>
|
89 |
+
</div>
|
90 |
+
<?php
|
91 |
+
}
|
92 |
+
}
|
93 |
+
?>
|
94 |
+
</td>
|
95 |
+
</tr>
|
96 |
+
<?php
|
97 |
+
}
|
98 |
+
if ($this->main->enable_multisite_only_options($this->multisite)) {
|
99 |
+
?>
|
100 |
<tr>
|
101 |
<th scope="row">
|
102 |
<?php echo $this->__('Remove Data on Uninstall'); ?>
|
129 |
fields.each(function(i, e) {
|
130 |
var ele = $(e);
|
131 |
if (ele.attr("type") == "checkbox") {
|
132 |
+
if (ele.attr("name") == "custom-post-types") {
|
133 |
+
data[ele.attr("name") + "[" + ele.val() + "]"] = ele.prop("checked");
|
134 |
+
}
|
135 |
+
else {
|
136 |
+
data[ele.attr("name")] = ele.prop("checked");
|
137 |
+
}
|
138 |
}
|
139 |
else
|
140 |
data[ele.attr("name")] = ele.val();
|
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.
|
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.1
|
8 |
* Author: Syam Mohan
|
9 |
* Author URI: http://wpfront.com
|
10 |
* License: GPL v3
|