Version Description
- 29.08.2013
- Bug with multi-site super-admin access to the User Role Editor is fixed. Version 4.5. showed message "Insufficient permissions to work with User Role Editor" until add "manage_network_users" capability to the "Administrator" role. It is enough now to be the "Superadmin" at multi-site network.
Download this release
Release Info
Developer | shinephp |
Plugin | User Role Editor |
Version | 4.5.1 |
Comparing to | |
See all releases |
Code changes from version 4.4 to 4.5.1
- includes/class-ure-lib.php +55 -4
- includes/class-user-role-editor.php +28 -31
- includes/ure-role-edit.php +2 -2
- includes/ure-user-edit.php +1 -1
- lang/ure-he_IL.mo +0 -0
- lang/ure-he_IL.po +1542 -0
- readme.txt +23 -4
- user-role-editor.php +1 -1
includes/class-ure-lib.php
CHANGED
@@ -37,6 +37,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
37 |
protected $integrate_with_gravity_forms = false;
|
38 |
protected $advert = null;
|
39 |
protected $main_blog_id = 0;
|
|
|
40 |
|
41 |
|
42 |
/** class constructor
|
@@ -584,6 +585,14 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
584 |
{
|
585 |
global $current_user;
|
586 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
587 |
if (!$user_id) {
|
588 |
if (empty($current_user) && function_exists('get_currentuserinfo')) {
|
589 |
get_currentuserinfo();
|
@@ -607,6 +616,8 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
607 |
}
|
608 |
|
609 |
return $simple_admin || $super_admin;
|
|
|
|
|
610 |
}
|
611 |
// end of user_is_admin()
|
612 |
|
@@ -889,7 +900,13 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
889 |
$caps['export'] = 1;
|
890 |
$caps['delete_users'] = 1;
|
891 |
$caps['create_users'] = 1;
|
892 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
893 |
return $caps;
|
894 |
}
|
895 |
// end of get_built_in_wp_caps()
|
@@ -1010,10 +1027,10 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1010 |
}
|
1011 |
|
1012 |
if ($core) {
|
1013 |
-
$quant = count($this->get_built_in_wp_caps());
|
1014 |
$deprecated_caps = $this->get_deprecated_caps();
|
1015 |
} else {
|
1016 |
-
$quant = count($this->full_capabilities) - count($this->get_built_in_wp_caps());
|
1017 |
$deprecated_caps = array();
|
1018 |
}
|
1019 |
$quant_in_column = (int) $quant / 3;
|
@@ -1314,6 +1331,14 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1314 |
$this->add_capability_to_full_caps_list($gf_cap);
|
1315 |
}
|
1316 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1317 |
unset($this->built_in_wp_caps);
|
1318 |
asort($this->full_capabilities);
|
1319 |
}
|
@@ -2063,8 +2088,34 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2063 |
|
2064 |
return false;
|
2065 |
}
|
2066 |
-
// end of user_can()
|
2067 |
|
2068 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2069 |
}
|
2070 |
// end of URE_Lib class
|
37 |
protected $integrate_with_gravity_forms = false;
|
38 |
protected $advert = null;
|
39 |
protected $main_blog_id = 0;
|
40 |
+
protected $hidden_built_in_wp_caps_quant = 0;
|
41 |
|
42 |
|
43 |
/** class constructor
|
585 |
{
|
586 |
global $current_user;
|
587 |
|
588 |
+
$ure_key_capability = $this->get_key_capability();
|
589 |
+
if (empty($user_id)) {
|
590 |
+
$user_id = $current_user->ID;
|
591 |
+
}
|
592 |
+
$result = user_can($user_id, $ure_key_capability);
|
593 |
+
|
594 |
+
return $result;
|
595 |
+
/*
|
596 |
if (!$user_id) {
|
597 |
if (empty($current_user) && function_exists('get_currentuserinfo')) {
|
598 |
get_currentuserinfo();
|
616 |
}
|
617 |
|
618 |
return $simple_admin || $super_admin;
|
619 |
+
*
|
620 |
+
*/
|
621 |
}
|
622 |
// end of user_is_admin()
|
623 |
|
900 |
$caps['export'] = 1;
|
901 |
$caps['delete_users'] = 1;
|
902 |
$caps['create_users'] = 1;
|
903 |
+
$caps['manage_network'] = 1;
|
904 |
+
$caps['manage_network_users'] = 1;
|
905 |
+
$caps['manage_network_themes'] = 1;
|
906 |
+
$caps['manage_network_plugins'] = 1;
|
907 |
+
$caps['manage_network_options'] = 1;
|
908 |
+
$caps['manage_network'] = 1;
|
909 |
+
|
910 |
return $caps;
|
911 |
}
|
912 |
// end of get_built_in_wp_caps()
|
1027 |
}
|
1028 |
|
1029 |
if ($core) {
|
1030 |
+
$quant = count($this->get_built_in_wp_caps()) - $this->hidden_built_in_wp_caps_quant;
|
1031 |
$deprecated_caps = $this->get_deprecated_caps();
|
1032 |
} else {
|
1033 |
+
$quant = count($this->full_capabilities) - count($this->get_built_in_wp_caps()) + $this->hidden_built_in_wp_caps_quant;
|
1034 |
$deprecated_caps = array();
|
1035 |
}
|
1036 |
$quant_in_column = (int) $quant / 3;
|
1331 |
$this->add_capability_to_full_caps_list($gf_cap);
|
1332 |
}
|
1333 |
}
|
1334 |
+
|
1335 |
+
$this->hidden_built_in_wp_caps_quant = 0;
|
1336 |
+
foreach ($this->built_in_wp_caps as $cap=>$val) {
|
1337 |
+
if (!isset($this->full_capabilities[$cap])) {
|
1338 |
+
$this->hidden_built_in_wp_caps_quant++;
|
1339 |
+
}
|
1340 |
+
}
|
1341 |
+
|
1342 |
unset($this->built_in_wp_caps);
|
1343 |
asort($this->full_capabilities);
|
1344 |
}
|
2088 |
|
2089 |
return false;
|
2090 |
}
|
2091 |
+
// end of user_can()
|
2092 |
|
2093 |
|
2094 |
+
// returns true if current user has $capability assigned through the roles or directly
|
2095 |
+
// returns true if current user has role with name equal $capability
|
2096 |
+
public function user_has_capability($user, $cap) {
|
2097 |
+
|
2098 |
+
global $wp_roles;
|
2099 |
+
|
2100 |
+
if (is_multisite() && is_super_admin()) {
|
2101 |
+
return true;
|
2102 |
+
}
|
2103 |
+
|
2104 |
+
if (isset($user->caps[$cap])) {
|
2105 |
+
return true;
|
2106 |
+
}
|
2107 |
+
foreach ($user->roles as $role) {
|
2108 |
+
if ($role===$cap) {
|
2109 |
+
return true;
|
2110 |
+
}
|
2111 |
+
if (!empty($wp_roles->roles[$role]['capabilities'][$cap])) {
|
2112 |
+
return true;
|
2113 |
+
}
|
2114 |
+
}
|
2115 |
+
|
2116 |
+
return false;
|
2117 |
+
}
|
2118 |
+
// end of user_has_capability()
|
2119 |
+
|
2120 |
}
|
2121 |
// end of URE_Lib class
|
includes/class-user-role-editor.php
CHANGED
@@ -80,7 +80,7 @@ class User_Role_Editor {
|
|
80 |
}
|
81 |
|
82 |
// these filters and actions should prevent editing users with administrator role
|
83 |
-
// by other users with
|
84 |
if (!$this->lib->user_is_admin($user_id)) {
|
85 |
// Exclude administrator role from edit list.
|
86 |
add_filter('editable_roles', array( &$this, 'exclude_admin_role' ) );
|
@@ -98,10 +98,9 @@ class User_Role_Editor {
|
|
98 |
add_filter( 'manage_users_columns', array(&$this, 'user_role_column'), 10, 5 );
|
99 |
add_filter( 'manage_users_custom_column', array(&$this, 'user_role_row'), 10, 3 );
|
100 |
add_action( 'profile_update', array(&$this, 'user_profile_update'), 10 );
|
101 |
-
|
102 |
|
103 |
-
if ($this->lib->multisite) {
|
104 |
-
add_filter( 'all_plugins', array( &$this, 'exclude_from_plugins_list' ) );
|
105 |
$allow_edit_users_to_not_super_admin = $this->lib->get_option('allow_edit_users_to_not_super_admin', 0);
|
106 |
if ($allow_edit_users_to_not_super_admin) {
|
107 |
add_filter( 'map_meta_cap', array($this, 'restore_users_edit_caps'), 1, 4 );
|
@@ -358,24 +357,26 @@ class User_Role_Editor {
|
|
358 |
* @param type array $plugins plugins list
|
359 |
* @return type array $plugins updated plugins list
|
360 |
*/
|
361 |
-
public function exclude_from_plugins_list($plugins)
|
362 |
-
|
363 |
-
|
364 |
-
// if multi-site, then allow plugin activation for network superadmins and, if that's specially defined, - for single site administrators too
|
365 |
-
if (is_super_admin() || (defined('URE_ENABLE_SIMPLE_ADMIN_FOR_MULTISITE') && URE_ENABLE_SIMPLE_ADMIN_FOR_MULTISITE==1)) {
|
366 |
-
return $plugins;
|
367 |
-
}
|
368 |
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
}
|
375 |
|
376 |
-
|
377 |
-
|
378 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
379 |
|
380 |
|
381 |
/**
|
@@ -459,11 +460,11 @@ class User_Role_Editor {
|
|
459 |
wp_die('Security check');
|
460 |
}
|
461 |
|
462 |
-
|
463 |
$show_admin_role = 1;
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
$this->lib->put_option('show_admin_role', $show_admin_role);
|
468 |
|
469 |
$caps_readable = $this->lib->get_request_var('caps_readable', 'checkbox');
|
@@ -525,13 +526,9 @@ class User_Role_Editor {
|
|
525 |
} else {
|
526 |
$user_id = false;
|
527 |
}
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
} else {
|
532 |
-
$admin = 'Administrator';
|
533 |
-
}
|
534 |
-
die(__('Only', 'ure') . ' ' . $admin . ' ' . __('is allowed to use', 'ure') . ' ' . 'User Role Editor');
|
535 |
}
|
536 |
|
537 |
$this->lib->editor();
|
80 |
}
|
81 |
|
82 |
// these filters and actions should prevent editing users with administrator role
|
83 |
+
// by other users with 'edit_users' capability
|
84 |
if (!$this->lib->user_is_admin($user_id)) {
|
85 |
// Exclude administrator role from edit list.
|
86 |
add_filter('editable_roles', array( &$this, 'exclude_admin_role' ) );
|
98 |
add_filter( 'manage_users_columns', array(&$this, 'user_role_column'), 10, 5 );
|
99 |
add_filter( 'manage_users_custom_column', array(&$this, 'user_role_row'), 10, 3 );
|
100 |
add_action( 'profile_update', array(&$this, 'user_profile_update'), 10 );
|
101 |
+
add_filter( 'all_plugins', array( &$this, 'exclude_from_plugins_list' ) );
|
102 |
|
103 |
+
if ($this->lib->multisite) {
|
|
|
104 |
$allow_edit_users_to_not_super_admin = $this->lib->get_option('allow_edit_users_to_not_super_admin', 0);
|
105 |
if ($allow_edit_users_to_not_super_admin) {
|
106 |
add_filter( 'map_meta_cap', array($this, 'restore_users_edit_caps'), 1, 4 );
|
357 |
* @param type array $plugins plugins list
|
358 |
* @return type array $plugins updated plugins list
|
359 |
*/
|
360 |
+
public function exclude_from_plugins_list($plugins) {
|
361 |
+
global $current_user;
|
|
|
|
|
|
|
|
|
|
|
362 |
|
363 |
+
$ure_key_capability = $this->lib->get_key_capability();
|
364 |
+
// if multi-site, then allow plugin activation for network superadmins and, if that's specially defined, - for single site administrators too
|
365 |
+
if ($this->lib->user_has_capability($current_user, $ure_key_capability)) {
|
366 |
+
return $plugins;
|
367 |
+
}
|
|
|
368 |
|
369 |
+
// exclude URE from plugins list
|
370 |
+
foreach ($plugins as $key => $value) {
|
371 |
+
if ($key == 'user-role-editor/' . URE_PLUGIN_FILE) {
|
372 |
+
unset($plugins[$key]);
|
373 |
+
break;
|
374 |
+
}
|
375 |
+
}
|
376 |
+
|
377 |
+
return $plugins;
|
378 |
+
}
|
379 |
+
// end of exclude_from_plugins_list()
|
380 |
|
381 |
|
382 |
/**
|
460 |
wp_die('Security check');
|
461 |
}
|
462 |
|
463 |
+
if (defined('URE_SHOW_ADMIN_ROLE') && (URE_SHOW_ADMIN_ROLE == 1)) {
|
464 |
$show_admin_role = 1;
|
465 |
+
} else {
|
466 |
+
$show_admin_role = $this->lib->get_request_var('show_admin_role', 'checkbox');
|
467 |
+
}
|
468 |
$this->lib->put_option('show_admin_role', $show_admin_role);
|
469 |
|
470 |
$caps_readable = $this->lib->get_request_var('caps_readable', 'checkbox');
|
526 |
} else {
|
527 |
$user_id = false;
|
528 |
}
|
529 |
+
$ure_key_capability = $this->lib->get_key_capability();
|
530 |
+
if (!$this->lib->user_has_capability($current_user, $ure_key_capability)) {
|
531 |
+
die(__('Insufficient permissions to work with User Role Editor', 'ure'));
|
|
|
|
|
|
|
|
|
532 |
}
|
533 |
|
534 |
$this->lib->editor();
|
includes/ure-role-edit.php
CHANGED
@@ -14,7 +14,7 @@ if (!defined('URE_PLUGIN_URL')) {
|
|
14 |
|
15 |
<div class="has-sidebar-content">
|
16 |
<?php
|
17 |
-
$this->display_box_start(__('Select Role and change its capabilities list', 'ure'), 'min-width:
|
18 |
?>
|
19 |
<div style="float: left;"><?php echo __('Select Role:', 'ure').' '.$this->role_select_html; ?></div>
|
20 |
<?php
|
@@ -78,7 +78,7 @@ if (is_multisite() && !is_network_admin() && is_main_site( get_current_blog_id()
|
|
78 |
</tr>
|
79 |
</table>
|
80 |
<?php
|
81 |
-
$quant = count( $this->full_capabilities ) - count( $this->get_built_in_wp_caps() );
|
82 |
if ($quant>0) {
|
83 |
echo '<hr />';
|
84 |
_e('Custom capabilities:', 'ure');
|
14 |
|
15 |
<div class="has-sidebar-content">
|
16 |
<?php
|
17 |
+
$this->display_box_start(__('Select Role and change its capabilities list', 'ure'), 'min-width:820px;');
|
18 |
?>
|
19 |
<div style="float: left;"><?php echo __('Select Role:', 'ure').' '.$this->role_select_html; ?></div>
|
20 |
<?php
|
78 |
</tr>
|
79 |
</table>
|
80 |
<?php
|
81 |
+
$quant = count( $this->full_capabilities ) - count( $this->get_built_in_wp_caps() ) + $this->hidden_built_in_wp_caps_quant;
|
82 |
if ($quant>0) {
|
83 |
echo '<hr />';
|
84 |
_e('Custom capabilities:', 'ure');
|
includes/ure-user-edit.php
CHANGED
@@ -31,7 +31,7 @@ if (!defined('URE_PLUGIN_URL')) {
|
|
31 |
$user_info .= ' <span style="font-weight: bold; color:red;">'. esc_html__('Network Super Admin', 'ure') .'</span>';
|
32 |
}
|
33 |
|
34 |
-
$this->display_box_start(__('Change capabilities for user', 'ure').$user_info, 'min-width:
|
35 |
|
36 |
?>
|
37 |
<table cellpadding="0" cellspacing="0">
|
31 |
$user_info .= ' <span style="font-weight: bold; color:red;">'. esc_html__('Network Super Admin', 'ure') .'</span>';
|
32 |
}
|
33 |
|
34 |
+
$this->display_box_start(__('Change capabilities for user', 'ure').$user_info, 'min-width:850px;');
|
35 |
|
36 |
?>
|
37 |
<table cellpadding="0" cellspacing="0">
|
lang/ure-he_IL.mo
ADDED
Binary file
|
lang/ure-he_IL.po
ADDED
@@ -0,0 +1,1542 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# This file was generated by WPML
|
2 |
+
# WPML is a WordPress plugin that can turn any WordPress or WordPressMU site into a full featured multilingual content management system.
|
3 |
+
# http://wpml.org
|
4 |
+
msgid ""
|
5 |
+
msgstr ""
|
6 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
7 |
+
"Content-Transfer-Encoding: 8bit\n"
|
8 |
+
"Project-Id-Version: User Role Editor\n"
|
9 |
+
"POT-Creation-Date: \n"
|
10 |
+
"PO-Revision-Date: \n"
|
11 |
+
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
12 |
+
"Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
|
13 |
+
"MIME-Version: 1.0\n"
|
14 |
+
"Language: Hebrew עברית he_IL\n"
|
15 |
+
"X-Generator: Poedit 1.5.4\n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
|
18 |
+
#
|
19 |
+
#
|
20 |
+
#
|
21 |
+
# wpml-name: 43c90d49e4c2bd2269c7702d143184aa
|
22 |
+
msgid "3.5.3"
|
23 |
+
msgstr "3.5.3"
|
24 |
+
|
25 |
+
#
|
26 |
+
#
|
27 |
+
#
|
28 |
+
# wpml-name: d914205702ec96b3b39b44d4f6ce4ada
|
29 |
+
msgid "http://www.shinephp.com"
|
30 |
+
msgstr "http://www.shinephp.com"
|
31 |
+
|
32 |
+
#
|
33 |
+
#
|
34 |
+
#
|
35 |
+
# wpml-name: 59651fdc650e78856a160a03761ed4d1
|
36 |
+
msgid "Vladimir Garagulya"
|
37 |
+
msgstr "Vladimir Garagulya"
|
38 |
+
|
39 |
+
#
|
40 |
+
#
|
41 |
+
#
|
42 |
+
# wpml-name: 68326db2363244c533be873377f898e2
|
43 |
+
msgid ""
|
44 |
+
"It allows you to change/add/delete any WordPress user role (except "
|
45 |
+
"administrator) capabilities list with a few clicks."
|
46 |
+
msgstr ""
|
47 |
+
"זה מאפשר לך לשנות\\להוסיף\\למחוק את רשימת היכולות של כל בעל תפקיד בוורדפרס "
|
48 |
+
"(חוץ ממנהל) בכמה לחיצות עכבר."
|
49 |
+
|
50 |
+
#
|
51 |
+
#
|
52 |
+
#
|
53 |
+
# wpml-name: ea9b0e14ead2e39258208a63c62e738d
|
54 |
+
msgid "http://www.shinephp.com/user-role-editor-wordpress-plugin/"
|
55 |
+
msgstr "http://www.shinephp.com/user-role-editor-wordpress-plugin/"
|
56 |
+
|
57 |
+
#
|
58 |
+
#
|
59 |
+
#
|
60 |
+
# wpml-name: 4130d2f46523a6dd9b7976ab822e7034
|
61 |
+
msgid "For the updated Swedish translation"
|
62 |
+
msgstr "לתרגום המעודכן לשוודית"
|
63 |
+
|
64 |
+
#
|
65 |
+
#
|
66 |
+
#
|
67 |
+
# wpml-name: 9da790dcde25724425970d0efa4564a8
|
68 |
+
msgid "For the help with Hebrew translation"
|
69 |
+
msgstr "לעזרה עם התרגום לעברית"
|
70 |
+
|
71 |
+
#
|
72 |
+
#
|
73 |
+
#
|
74 |
+
# wpml-name: b068931cc450442b63f5b3d276ea4297
|
75 |
+
msgid "name"
|
76 |
+
msgstr "שם"
|
77 |
+
|
78 |
+
#
|
79 |
+
#
|
80 |
+
#
|
81 |
+
# wpml-name: 563e800b4de0b5ebaf1d7b1bb1b027c1
|
82 |
+
msgid "Error: Role name must contain latin characters and digits only!"
|
83 |
+
msgstr "שגיאה! השם של סוג המשתמש חייב להיות מורכב מאותיות באנגלית וספרות בלבד"
|
84 |
+
|
85 |
+
#
|
86 |
+
#
|
87 |
+
#
|
88 |
+
# wpml-name: be0b381e6392aea129a21db10af13e37
|
89 |
+
msgid "Backup record is created for the current role capabilities"
|
90 |
+
msgstr "גיבוי נוצר עבור יכולות סוגי המשתמשים הנוכחיים"
|
91 |
+
|
92 |
+
#
|
93 |
+
#
|
94 |
+
#
|
95 |
+
# wpml-name: 3147727e9ab954adef001f91128712e7
|
96 |
+
msgid ""
|
97 |
+
"No backup data. It is created automatically before the first role data "
|
98 |
+
"update."
|
99 |
+
msgstr ""
|
100 |
+
"אין קובץ גיבוי. מידע זה נוצר באופן אוטומטי לפני השינוי הראשון שאתם עושים "
|
101 |
+
"בהגדרות סוגי המשתמשים."
|
102 |
+
|
103 |
+
#
|
104 |
+
#
|
105 |
+
#
|
106 |
+
# wpml-name: cb6869294ec0c7a7790b7d048cffcbfa
|
107 |
+
msgid "Database operation error. Check log file."
|
108 |
+
msgstr "שגיאת מסד נתונים, אנא בדוק את קובץ היומן."
|
109 |
+
|
110 |
+
#
|
111 |
+
#
|
112 |
+
#
|
113 |
+
# wpml-name: accc157f691724053294551e39e140df
|
114 |
+
msgid "User Role Editor requires PHP 5.0 or newer."
|
115 |
+
msgstr "התוסף User Role Editor מחייב אחסון עם PHP 5.0 ומעלה"
|
116 |
+
|
117 |
+
#
|
118 |
+
#
|
119 |
+
#
|
120 |
+
# wpml-name: b9132210fa44bad7bb224c06c5aaa842
|
121 |
+
msgid "Please update!"
|
122 |
+
msgstr "אנא עדכן!"
|
123 |
+
|
124 |
+
#
|
125 |
+
#
|
126 |
+
#
|
127 |
+
# wpml-name: 7b4c00f004a37127175c86fdc7267983
|
128 |
+
msgid "User Role Editor requires WordPress 3.0 or newer."
|
129 |
+
msgstr "התוסף User Role Editor מתאים לאתרי וורדפרס בגרסה 3.0 ומעלה"
|
130 |
+
|
131 |
+
#
|
132 |
+
#
|
133 |
+
#
|
134 |
+
# wpml-name: e3c4cb24789980b4a340e92561338ecf
|
135 |
+
msgid ""
|
136 |
+
"Do you wish to see your name with link to your site here? You are welcome! "
|
137 |
+
"Your help with translation and new ideas are very appreciated."
|
138 |
+
msgstr ""
|
139 |
+
"רוצה לראות את השם שלך עם קישור אל האתר שלך כאן? אתה מוזמן לעזור עם התרגום "
|
140 |
+
"ועם רעיונות ושיפורים חדשים"
|
141 |
+
|
142 |
+
#
|
143 |
+
#
|
144 |
+
#
|
145 |
+
# wpml-name: e0af9c44871c8eeb5475ac08d8c305ae
|
146 |
+
msgid "For the code enhancement suggestion"
|
147 |
+
msgstr "הצעות לשיפור קוד"
|
148 |
+
|
149 |
+
#
|
150 |
+
#
|
151 |
+
#
|
152 |
+
# wpml-name: 4397787c8b3ea95be736439c65a506b3
|
153 |
+
msgid "For the code to hide administrator role"
|
154 |
+
msgstr "עבור קוד כדי להחביא את סוג משתמש מנהל"
|
155 |
+
|
156 |
+
#
|
157 |
+
#
|
158 |
+
#
|
159 |
+
# wpml-name: c010be7b08d958737a03a61ac2c7f682
|
160 |
+
msgid "For the help with Turkish translation"
|
161 |
+
msgstr "לעזרה עם תרגום לטורקית"
|
162 |
+
|
163 |
+
#
|
164 |
+
#
|
165 |
+
#
|
166 |
+
# wpml-name: fd2f14e7a74f804bae9f27b916132c4d
|
167 |
+
msgid "For the help with Swedish translation"
|
168 |
+
msgstr "לעזרה עם תרגום לשוודית"
|
169 |
+
|
170 |
+
#
|
171 |
+
#
|
172 |
+
#
|
173 |
+
# wpml-name: 58827ca07db8664c2aee7417d9bf43e5
|
174 |
+
msgid "For the help with Spanish translation"
|
175 |
+
msgstr "לעזרה עם תרגום לספרדית"
|
176 |
+
|
177 |
+
#
|
178 |
+
#
|
179 |
+
#
|
180 |
+
# wpml-name: 3399f76309855d1178e76370c4deffdc
|
181 |
+
msgid "For the help with Polish translation"
|
182 |
+
msgstr "לעזרה עם תרגום לפולנית"
|
183 |
+
|
184 |
+
#
|
185 |
+
#
|
186 |
+
#
|
187 |
+
# wpml-name: a19f2da000275babaf585c97a3cd3e0e
|
188 |
+
msgid "For the help with Persian translation"
|
189 |
+
msgstr "לעזרה עם תרגום לפרסית"
|
190 |
+
|
191 |
+
#
|
192 |
+
#
|
193 |
+
#
|
194 |
+
# wpml-name: c287240ffa3dfcb5fcc3ce8aaa3e58c0
|
195 |
+
msgid "For the help with Japanese translation"
|
196 |
+
msgstr "לעזרה עם תרגום ליפנית"
|
197 |
+
|
198 |
+
#
|
199 |
+
#
|
200 |
+
#
|
201 |
+
# wpml-name: 21ad771775798cb076a7bbc76e14e224
|
202 |
+
msgid "For the help with Italian translation"
|
203 |
+
msgstr "לעזרה עם תרגום לאילטקית"
|
204 |
+
|
205 |
+
#
|
206 |
+
#
|
207 |
+
#
|
208 |
+
# wpml-name: 396777c7988d2243e82e5127bcfa6048
|
209 |
+
msgid "For the help with Hungarian translation"
|
210 |
+
msgstr "לעזרה עם תרגום להונגרית"
|
211 |
+
|
212 |
+
#
|
213 |
+
#
|
214 |
+
#
|
215 |
+
# wpml-name: 577001c75be2f223eeffdef9127b8f69
|
216 |
+
msgid "For the help with German translation"
|
217 |
+
msgstr "לעזרה עם תרגום לגרמנית"
|
218 |
+
|
219 |
+
#
|
220 |
+
#
|
221 |
+
#
|
222 |
+
# wpml-name: 66a0536169cc3eaa09a68d87c5423f44
|
223 |
+
msgid "For the help with French translation"
|
224 |
+
msgstr "לעזרה עם תרגום לצרפתית"
|
225 |
+
|
226 |
+
#
|
227 |
+
#
|
228 |
+
#
|
229 |
+
# wpml-name: 8ef19ee4456fa55ffc92a88aa44d1c06
|
230 |
+
msgid "For the help with Finnish translation"
|
231 |
+
msgstr "לעזרה עם תרגום לפינית"
|
232 |
+
|
233 |
+
#
|
234 |
+
#
|
235 |
+
#
|
236 |
+
# wpml-name: cd6cbfe954fa9b1465c6404532367f4b
|
237 |
+
msgid "For the help with Dutch translation"
|
238 |
+
msgstr "לעזרה עם תרגום להולנדית"
|
239 |
+
|
240 |
+
#
|
241 |
+
#
|
242 |
+
#
|
243 |
+
# wpml-name: fc28833ae2524c3303fb8b576ffe31cd
|
244 |
+
msgid "For the help with Chinese translation"
|
245 |
+
msgstr "לעזרה עם תרגום לסינית"
|
246 |
+
|
247 |
+
#
|
248 |
+
#
|
249 |
+
#
|
250 |
+
# wpml-name: 1e58c8bdf824f1a1783c57e8e5f2f63e
|
251 |
+
msgid "For the help with Brasilian translation"
|
252 |
+
msgstr "לעזרה עם תרגום לברזילאית"
|
253 |
+
|
254 |
+
#
|
255 |
+
#
|
256 |
+
#
|
257 |
+
# wpml-name: dbf65c1a5839f2818cdd02acf35682a2
|
258 |
+
msgid "For the help with Belorussian translation"
|
259 |
+
msgstr "לעזרה עם תרגום לבלרוסית"
|
260 |
+
|
261 |
+
#
|
262 |
+
#
|
263 |
+
#
|
264 |
+
# wpml-name: c97a46ff51f636c6e7e391183dc96b05
|
265 |
+
msgid "It's me, the author"
|
266 |
+
msgstr "זה אני, יוצר התוסף"
|
267 |
+
|
268 |
+
#
|
269 |
+
#
|
270 |
+
#
|
271 |
+
# wpml-name: 1584e2aed5960d480ad90b98a04652b2
|
272 |
+
msgid "Greetings:"
|
273 |
+
msgstr "ברכות:"
|
274 |
+
|
275 |
+
#
|
276 |
+
#
|
277 |
+
#
|
278 |
+
# wpml-name: 4eaaa9d01f020bbe1c513721a15269fd
|
279 |
+
msgid "capabilities are updated successfully"
|
280 |
+
msgstr "היכולות עודכנו בהצלחה"
|
281 |
+
|
282 |
+
#
|
283 |
+
#
|
284 |
+
#
|
285 |
+
# wpml-name: 8f9bfe9d1345237cb3b2b205864da075
|
286 |
+
msgid "User"
|
287 |
+
msgstr "משתמש"
|
288 |
+
|
289 |
+
#
|
290 |
+
#
|
291 |
+
#
|
292 |
+
# wpml-name: ebf183a3ef5a893a36035ef98999c591
|
293 |
+
msgid "is updated successfully"
|
294 |
+
msgstr "עודכן בהצלחה"
|
295 |
+
|
296 |
+
#
|
297 |
+
#
|
298 |
+
#
|
299 |
+
# wpml-name: f7d076786cdf56203d72ce2a6916b162
|
300 |
+
msgid "User Roles are restored from the backup data. "
|
301 |
+
msgstr "יכולות סוגי המשתמשים שוחזרו מקובץ הגיבוי"
|
302 |
+
|
303 |
+
#
|
304 |
+
#
|
305 |
+
#
|
306 |
+
# wpml-name: 5cfc1f49b2cf74ee2942c21fb23a9be7
|
307 |
+
msgid "Add capabilities to this user:"
|
308 |
+
msgstr "הוסף יכולות למשתמש זה:"
|
309 |
+
|
310 |
+
#
|
311 |
+
#
|
312 |
+
#
|
313 |
+
# wpml-name: 6340db22f588a2b4847d27dcba4c2693
|
314 |
+
msgid "Role:"
|
315 |
+
msgstr "סוג משתמש"
|
316 |
+
|
317 |
+
#
|
318 |
+
#
|
319 |
+
#
|
320 |
+
# wpml-name: 84ab9caaeadc59d02fdfc2b3eeda1f4b
|
321 |
+
msgid "User \"%s\" update: please confirm to continue"
|
322 |
+
msgstr "עדכון המשתמש \"%s\" : אנא אשר והמשך"
|
323 |
+
|
324 |
+
#
|
325 |
+
#
|
326 |
+
#
|
327 |
+
# wpml-name: ffc55f4f6c2fee44179eace7102739b0
|
328 |
+
msgid "Remove User Capability"
|
329 |
+
msgstr "הסר יכולת משתמש"
|
330 |
+
|
331 |
+
#
|
332 |
+
#
|
333 |
+
#
|
334 |
+
# wpml-name: 1063e38cb53d94d386f21227fcd84717
|
335 |
+
msgid "Remove"
|
336 |
+
msgstr "הסר"
|
337 |
+
|
338 |
+
#
|
339 |
+
#
|
340 |
+
#
|
341 |
+
# wpml-name: e7de059be080354eb995f03451c32763
|
342 |
+
msgid "Remove Capability"
|
343 |
+
msgstr "הסר יכולת"
|
344 |
+
|
345 |
+
#
|
346 |
+
#
|
347 |
+
#
|
348 |
+
# wpml-name: 64cf963fafdf81b76c876735dba7fbb4
|
349 |
+
msgid "Add New Capability"
|
350 |
+
msgstr "הוסף יכולת חדשה"
|
351 |
+
|
352 |
+
#
|
353 |
+
#
|
354 |
+
#
|
355 |
+
# wpml-name: 7aa3fd37413ab803143d28fcc65287cf
|
356 |
+
msgid "Delete User Role"
|
357 |
+
msgstr "מחק סוג משתמש"
|
358 |
+
|
359 |
+
#
|
360 |
+
#
|
361 |
+
#
|
362 |
+
# wpml-name: f2a6c498fb90ee345d997f888fce3b18
|
363 |
+
msgid "Delete"
|
364 |
+
msgstr "למחוק"
|
365 |
+
|
366 |
+
#
|
367 |
+
#
|
368 |
+
#
|
369 |
+
# wpml-name: fa6d25a7aa5c0a05c28f0c926410a664
|
370 |
+
msgid "Set as Default User Role"
|
371 |
+
msgstr "קבע כסוג משתמש ברירת מחדל"
|
372 |
+
|
373 |
+
#
|
374 |
+
#
|
375 |
+
#
|
376 |
+
# wpml-name: f4ec5f57bd4d31b803312d873be40da9
|
377 |
+
msgid "Change"
|
378 |
+
msgstr "שנה"
|
379 |
+
|
380 |
+
#
|
381 |
+
#
|
382 |
+
#
|
383 |
+
# wpml-name: 510d977c06df1f80b31f6a79feee0622
|
384 |
+
msgid "Default Role for New User"
|
385 |
+
msgstr "סוג משתמש ברירת מחדל למשתמשים חדשים"
|
386 |
+
|
387 |
+
#
|
388 |
+
#
|
389 |
+
#
|
390 |
+
# wpml-name: 8b9ddb4d6b587810718bdaf5ef1601a8
|
391 |
+
msgid "Add New User Role"
|
392 |
+
msgstr "הוסף סוג משתמש חדש"
|
393 |
+
|
394 |
+
#
|
395 |
+
#
|
396 |
+
#
|
397 |
+
# wpml-name: ec211f7c20af43e742bf2570c3cb84f9
|
398 |
+
msgid "Add"
|
399 |
+
msgstr "הוסף"
|
400 |
+
|
401 |
+
#
|
402 |
+
#
|
403 |
+
#
|
404 |
+
# wpml-name: ade219425cdcce278c9c6f52dcb942d6
|
405 |
+
msgid "Name: "
|
406 |
+
msgstr "שם:"
|
407 |
+
|
408 |
+
#
|
409 |
+
#
|
410 |
+
#
|
411 |
+
# wpml-name: ed32b22c72a8431f1f8f078289e6e21a
|
412 |
+
msgid "Restore Roles from backup copy"
|
413 |
+
msgstr "שחזר סוגי משתמשים מהעתק הגיבוי"
|
414 |
+
|
415 |
+
#
|
416 |
+
#
|
417 |
+
#
|
418 |
+
# wpml-name: 57a4880f5506e748f08bf144896a6105
|
419 |
+
msgid "Cancel not saved changes"
|
420 |
+
msgstr "בטל שינויים שלא נשמרו"
|
421 |
+
|
422 |
+
#
|
423 |
+
#
|
424 |
+
#
|
425 |
+
# wpml-name: f5d6040ed78ca86ddc73296a49b18510
|
426 |
+
msgid "Save Changes"
|
427 |
+
msgstr "שמור שינויים"
|
428 |
+
|
429 |
+
#
|
430 |
+
#
|
431 |
+
#
|
432 |
+
# wpml-name: a1fbf81a928fffd1bb4665b5af8952ab
|
433 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
434 |
+
msgstr "אם סומן, החל פעולה על כל האתרים ברשת זאת"
|
435 |
+
|
436 |
+
#
|
437 |
+
#
|
438 |
+
#
|
439 |
+
# wpml-name: 2898363f602aa8114c31498a03bfca68
|
440 |
+
msgid "Role \"%s\" update: please confirm to continue"
|
441 |
+
msgstr "סוג המשתמש \"%s\" עודכן: אנא אשר והמשך"
|
442 |
+
|
443 |
+
#
|
444 |
+
#
|
445 |
+
#
|
446 |
+
# wpml-name: 8af1ce6cd9546925b87fd24f3cc43390
|
447 |
+
msgid "Please confirm to continue"
|
448 |
+
msgstr "אשר את הפעולה והמשך"
|
449 |
+
|
450 |
+
#
|
451 |
+
#
|
452 |
+
#
|
453 |
+
# wpml-name: 9155fd6ce7d61b80699c0f45996ab60d
|
454 |
+
msgid ""
|
455 |
+
"Restore Roles from backup copy. Be careful, backup was created when you "
|
456 |
+
"started URE 1st time. All changes you made after that will be lost"
|
457 |
+
msgstr ""
|
458 |
+
"שחזור עותק גיבוי של תפקידים. שים לב: הגיבוי נוצר מתי שהתחלת להשתמש בתוסף "
|
459 |
+
"בפעם הראשונה, כל השינויים שביצעת לאחר מכן יאבדו."
|
460 |
+
|
461 |
+
#
|
462 |
+
#
|
463 |
+
#
|
464 |
+
# wpml-name: 47d1d4e4f3a16c30a3bbf34582385f47
|
465 |
+
msgid "Change Default Role"
|
466 |
+
msgstr "שנה את סוג משתמש המוגדר כברירת מחדל"
|
467 |
+
|
468 |
+
#
|
469 |
+
#
|
470 |
+
#
|
471 |
+
# wpml-name: 20490f852da53007d6552cf821acab6d
|
472 |
+
msgid " Name must contain latin characters and digits only!"
|
473 |
+
msgstr "שם חייב להכיל אותיות באנגלית וספרות בלבד!"
|
474 |
+
|
475 |
+
#
|
476 |
+
#
|
477 |
+
#
|
478 |
+
# wpml-name: bfb46b8d73255b3435fd2d30b2ee789a
|
479 |
+
msgid " Name can not be empty!"
|
480 |
+
msgstr "שם לא יכול להשאר ריק!"
|
481 |
+
|
482 |
+
# if (is_multisite() && is_super_admin($this->user_to_edit->ID)) {
|
483 |
+
# $user_info .= ' <span style="font-weight: bold; color:red;">'. esc_html__('Network Super Admin', 'ure') .'</span>';
|
484 |
+
# }
|
485 |
+
# wpml-name: 5213962fd38769a637909d6bc2a37197
|
486 |
+
msgid "Network Super Admin"
|
487 |
+
msgstr "מנהל-על של רשת"
|
488 |
+
|
489 |
+
# ?>
|
490 |
+
# <div style="margin-top: 5px;margin-bottom: 5px; font-weight: bold;"><?php echo __('Other Roles:', 'ure'); ?></div>
|
491 |
+
# <?php
|
492 |
+
# wpml-name: 3ebb5c3609cf2634c669e655a7bfb162
|
493 |
+
msgid "Other Roles:"
|
494 |
+
msgstr "תפקידים אחרים:"
|
495 |
+
|
496 |
+
# ?>
|
497 |
+
# <div style="margin-top: 5px;margin-bottom: 5px; font-weight: bold;"><?php echo __('bbPress Role:', 'ure'); ?></div>
|
498 |
+
# <?php
|
499 |
+
# wpml-name: 918b62d985dd5ef7af537376c0a8273b
|
500 |
+
msgid "bbPress Role:"
|
501 |
+
msgstr "תפקיד bbPress:"
|
502 |
+
|
503 |
+
# <td class="ure-user-roles">
|
504 |
+
# <div style="margin-bottom: 5px; font-weight: bold;"><?php echo __('Primary Role:', 'ure'); ?></div>
|
505 |
+
# <?php
|
506 |
+
# wpml-name: 670867664b460254a4dfcb782c811472
|
507 |
+
msgid "Primary Role:"
|
508 |
+
msgstr "תפקיד עיקרי:"
|
509 |
+
|
510 |
+
#
|
511 |
+
# $this->display_box_start(__('Change capabilities for user', 'ure').$user_info, 'min-width:830px;');
|
512 |
+
#
|
513 |
+
# wpml-name: 3c4a4bfb7afa015a22eee9e5b9b098e2
|
514 |
+
msgid "Change capabilities for user"
|
515 |
+
msgstr "שינוי יכולות המשתמש"
|
516 |
+
|
517 |
+
# <tr>
|
518 |
+
# <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
|
519 |
+
# <td>
|
520 |
+
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
521 |
+
msgid "Other Roles"
|
522 |
+
msgstr "תפקידים אחרים"
|
523 |
+
|
524 |
+
# $output = $this->lib->roles_text($roles);
|
525 |
+
# echo $output . ' >> <a href="' . wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&user_id={$user->ID}", "ure_user_{$user->ID}") . '">' . __('Edit', 'ure') . '</a>';
|
526 |
+
# ?>
|
527 |
+
# wpml-name: 7dce122004969d56ae2e0245cb754d35
|
528 |
+
msgid "Edit"
|
529 |
+
msgstr "עריכה"
|
530 |
+
|
531 |
+
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
532 |
+
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
533 |
+
# ) );
|
534 |
+
# wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
|
535 |
+
msgid ""
|
536 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
537 |
+
"underscore only!"
|
538 |
+
msgstr ""
|
539 |
+
" שם היכולת (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
540 |
+
|
541 |
+
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
542 |
+
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
543 |
+
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
544 |
+
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
545 |
+
msgid " Capability name (ID) can not be empty!"
|
546 |
+
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
547 |
+
|
548 |
+
# 'delete_capability' => __('Delete Capability', 'ure'),
|
549 |
+
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
550 |
+
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
551 |
+
# wpml-name: b8827a096ab461b8e26931adf82c8d85
|
552 |
+
msgid ""
|
553 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
554 |
+
"or other custom code"
|
555 |
+
msgstr ""
|
556 |
+
"זהירות! הסרה של אפשרויות קריטיות עשוי לגרום לתוספים מסוים או קוד נסמך שלא "
|
557 |
+
"לעבוד כשורה"
|
558 |
+
|
559 |
+
# 'default_role' => __('Default Role', 'ure'),
|
560 |
+
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
561 |
+
# 'delete_capability' => __('Delete Capability', 'ure'),
|
562 |
+
# wpml-name: f28d52a1096a73cff427d1216dc578ad
|
563 |
+
msgid "Set New Default Role"
|
564 |
+
msgstr "הגדר תפקיד ברירת מחדל חדש"
|
565 |
+
|
566 |
+
# 'reset_warning' => __('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation could be needed. Continue?', 'ure'),
|
567 |
+
# 'default_role' => __('Default Role', 'ure'),
|
568 |
+
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
569 |
+
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
570 |
+
msgid "Default Role"
|
571 |
+
msgstr "תפקיד ברירת מחדל"
|
572 |
+
|
573 |
+
# 'reset' => __('Reset', 'ure'),
|
574 |
+
# 'reset_warning' => __('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation could be needed. Continue?', 'ure'),
|
575 |
+
# 'default_role' => __('Default Role', 'ure'),
|
576 |
+
# wpml-name: aeecd743b0aedffaef5122cebd7ff261
|
577 |
+
msgid ""
|
578 |
+
"Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
579 |
+
"plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
|
580 |
+
"could be needed. Continue?"
|
581 |
+
msgstr ""
|
582 |
+
"האם לאפס את התפקידים לברירת המחדל של וורדפרס? נא להיזהר, כל שינוי שנעשה על-"
|
583 |
+
"ידך או ע\"י התוספים יאבד. יש תוספים, למשל S2member ו Woocommerce שיהיה צורך "
|
584 |
+
"להפעילם מחדש. להמשיך?"
|
585 |
+
|
586 |
+
# 'delete_capability' => __('Delete Capability', 'ure'),
|
587 |
+
# 'reset' => __('Reset', 'ure'),
|
588 |
+
# 'reset_warning' => __('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation could be needed. Continue?', 'ure'),
|
589 |
+
# wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
|
590 |
+
msgid "Reset"
|
591 |
+
msgstr "איפוס"
|
592 |
+
|
593 |
+
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
594 |
+
# 'delete_capability' => __('Delete Capability', 'ure'),
|
595 |
+
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
596 |
+
# wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
|
597 |
+
msgid "Delete Capability"
|
598 |
+
msgstr "מחיקת יכולת"
|
599 |
+
|
600 |
+
# 'cancel' => __('Cancel', 'ure'),
|
601 |
+
# 'add_capability' => __('Add Capability', 'ure'),
|
602 |
+
# 'delete_capability' => __('Delete Capability', 'ure'),
|
603 |
+
# wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
|
604 |
+
msgid "Add Capability"
|
605 |
+
msgstr "הוספת יכולת"
|
606 |
+
|
607 |
+
# 'delete_role' => __('Delete Role', 'ure'),
|
608 |
+
# 'cancel' => __('Cancel', 'ure'),
|
609 |
+
# 'add_capability' => __('Add Capability', 'ure'),
|
610 |
+
# wpml-name: ea4788705e6873b424c65e91c2846b19
|
611 |
+
msgid "Cancel"
|
612 |
+
msgstr "ביטול"
|
613 |
+
|
614 |
+
# 'add_role' => __('Add Role', 'ure'),
|
615 |
+
# 'delete_role' => __('Delete Role', 'ure'),
|
616 |
+
# 'cancel' => __('Cancel', 'ure'),
|
617 |
+
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
618 |
+
msgid "Delete Role"
|
619 |
+
msgstr "מחיקת סוג משתמש"
|
620 |
+
|
621 |
+
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
622 |
+
# 'add_role' => __('Add Role', 'ure'),
|
623 |
+
# 'delete_role' => __('Delete Role', 'ure'),
|
624 |
+
# wpml-name: 1453b39dcc15a372640d960c6db7db25
|
625 |
+
msgid "Add Role"
|
626 |
+
msgstr "הוספת תפקיד"
|
627 |
+
|
628 |
+
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
629 |
+
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
630 |
+
# 'add_role' => __('Add Role', 'ure'),
|
631 |
+
# wpml-name: 7b94f04285f5efc287652bd40338e730
|
632 |
+
msgid ""
|
633 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
634 |
+
"only!"
|
635 |
+
msgstr ""
|
636 |
+
" שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
637 |
+
|
638 |
+
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
639 |
+
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
640 |
+
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
641 |
+
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
642 |
+
msgid " Role name (ID) can not be empty!"
|
643 |
+
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
644 |
+
|
645 |
+
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
646 |
+
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
647 |
+
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
648 |
+
# wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
|
649 |
+
msgid "Add New Role"
|
650 |
+
msgstr "הוסף סוג משתמש חדש"
|
651 |
+
|
652 |
+
# 'update' => __('Update', 'ure'),
|
653 |
+
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
654 |
+
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
655 |
+
# wpml-name: 85251872440cc94c6080a90451e018c4
|
656 |
+
msgid "Please confirm permissions update"
|
657 |
+
msgstr "נא לאשר את עדכון ההרשאות"
|
658 |
+
|
659 |
+
# 'reverse' => __('Reverse', 'ure'),
|
660 |
+
# 'update' => __('Update', 'ure'),
|
661 |
+
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
662 |
+
# wpml-name: 06933067aafd48425d67bcb01bba5cb6
|
663 |
+
msgid "Update"
|
664 |
+
msgstr "עדכן"
|
665 |
+
|
666 |
+
# 'unselect_all' => __('Unselect All', 'ure'),
|
667 |
+
# 'reverse' => __('Reverse', 'ure'),
|
668 |
+
# 'update' => __('Update', 'ure'),
|
669 |
+
# wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
|
670 |
+
msgid "Reverse"
|
671 |
+
msgstr "להפוך"
|
672 |
+
|
673 |
+
# 'select_all' => __('Select All', 'ure'),
|
674 |
+
# 'unselect_all' => __('Unselect All', 'ure'),
|
675 |
+
# 'reverse' => __('Reverse', 'ure'),
|
676 |
+
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
677 |
+
msgid "Unselect All"
|
678 |
+
msgstr "לא לבחור שום דבר"
|
679 |
+
|
680 |
+
# 'is_multisite' => is_multisite() ? 1 : 0,
|
681 |
+
# 'select_all' => __('Select All', 'ure'),
|
682 |
+
# 'unselect_all' => __('Unselect All', 'ure'),
|
683 |
+
# wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
|
684 |
+
msgid "Select All"
|
685 |
+
msgstr "בחירת הכל"
|
686 |
+
|
687 |
+
# }
|
688 |
+
# die(__('Only', 'ure') . ' ' . $admin . ' ' . __('is allowed to use', 'ure') . ' ' . 'User Role Editor');
|
689 |
+
# }
|
690 |
+
# wpml-name: bf92269227c681dec97477844e2ddada
|
691 |
+
msgid "is allowed to use"
|
692 |
+
msgstr "מותר לשימוש"
|
693 |
+
|
694 |
+
# }
|
695 |
+
# die(__('Only', 'ure') . ' ' . $admin . ' ' . __('is allowed to use', 'ure') . ' ' . 'User Role Editor');
|
696 |
+
# }
|
697 |
+
# wpml-name: 8392461cf759088854e16710b9b75d1a
|
698 |
+
msgid "Only"
|
699 |
+
msgstr "רק"
|
700 |
+
|
701 |
+
# $this->lib->flush_options();
|
702 |
+
# $this->lib->show_message(__('User Role Editor options are updated', 'ure'));
|
703 |
+
# } else { // get options from the options storage
|
704 |
+
# wpml-name: aef323fbbd25d577170fff17c15cf857
|
705 |
+
msgid "User Role Editor options are updated"
|
706 |
+
msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
707 |
+
|
708 |
+
# if ($file == plugin_basename(dirname(URE_PLUGIN_FULL_PATH).'/'.URE_PLUGIN_FILE)) {
|
709 |
+
# $settings_link = "<a href='options-general.php?page=settings-".URE_PLUGIN_FILE."'>" . __('Settings', 'ure') . "</a>";
|
710 |
+
# array_unshift($links, $settings_link);
|
711 |
+
# wpml-name: f4f70727dc34561dfde1a3c529b6205c
|
712 |
+
msgid "Settings"
|
713 |
+
msgstr "הגדרות"
|
714 |
+
|
715 |
+
# wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&user_id={$user->ID}", "ure_user_{$user->ID}") .
|
716 |
+
# '">' . __('Capabilities', 'ure') . '</a>';
|
717 |
+
# }
|
718 |
+
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
719 |
+
msgid "Capabilities"
|
720 |
+
msgstr "יכולות"
|
721 |
+
|
722 |
+
# <tr>
|
723 |
+
# <td><label for="allow_edit_users_to_not_super_admin"><?php esc_html_e('Allow create, edit and delete user to not super-admininstrators:', 'ure'); ?></label></td>
|
724 |
+
# <td>
|
725 |
+
# wpml-name: 4bc50461b16d09d4cea688ef6c286c6f
|
726 |
+
msgid "Allow create, edit and delete user to not super-admininstrators:"
|
727 |
+
msgstr "אפשר ליצור, לערוך ולמחוק משתמש למנהלים שאינם מנהלי על:"
|
728 |
+
|
729 |
+
# <tr>
|
730 |
+
# <td><label for="show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities:', 'ure'); ?></label></td>
|
731 |
+
# <td>
|
732 |
+
# wpml-name: f941eb3a0500fd0776edec8343ccd89e
|
733 |
+
msgid "Show deprecated capabilities:"
|
734 |
+
msgstr "הצג יכולות מומלצות:"
|
735 |
+
|
736 |
+
# <tr>
|
737 |
+
# <td><label for="caps_readable"><?php esc_html_e('Show capabilities in the human readable form:', 'ure'); ?></label></td>
|
738 |
+
# <td>
|
739 |
+
# wpml-name: a19a4f985d31bbbd3d3b6d5dbd368ef0
|
740 |
+
msgid "Show capabilities in the human readable form:"
|
741 |
+
msgstr "הצג יכולות בפורמט קריא ואנושי:"
|
742 |
+
|
743 |
+
# <tr>
|
744 |
+
# <td><label for="show_admin_role"><?php esc_html_e('Show Administrator role at User Role Editor:', 'ure'); ?></label></td>
|
745 |
+
# <td><input type="checkbox" name="show_admin_role" id="show_admin_role" value="1"
|
746 |
+
# wpml-name: 03c5b123f148104af580b68ade741c67
|
747 |
+
msgid "Show Administrator role at User Role Editor:"
|
748 |
+
msgstr "הצג תפקיד מנהל בעורך תפקידי משתמש:"
|
749 |
+
|
750 |
+
# <div class="icon32" id="icon-options-general"><br/></div>
|
751 |
+
# <h2><?php esc_html_e('User Role Editor - Options', 'ure'); ?></h2>
|
752 |
+
# <hr/>
|
753 |
+
# wpml-name: ee7816d892f54d4aa67456e2486d8a09
|
754 |
+
msgid "User Role Editor - Options"
|
755 |
+
msgstr "עורך תפקידי משתמש - אפשרויות"
|
756 |
+
|
757 |
+
# <p class="submit">
|
758 |
+
# <input type="submit" class="button-primary" name="user_role_editor_settings_update" value="<?php _e('Save', 'ure') ?>" />
|
759 |
+
# </p>
|
760 |
+
# wpml-name: c9cc8cce247e49bae79f15173ce97354
|
761 |
+
msgid "Save"
|
762 |
+
msgstr "שמירה"
|
763 |
+
|
764 |
+
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#changelog"><?php _e('Changelog', 'ure'); ?></a>
|
765 |
+
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/faq-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#faq"><?php _e('FAQ', 'ure'); ?></a>
|
766 |
+
# <?php
|
767 |
+
# wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
|
768 |
+
msgid "FAQ"
|
769 |
+
msgstr "שאלות נפוצות"
|
770 |
+
|
771 |
+
# if ($file == plugin_basename(dirname(URE_PLUGIN_FULL_PATH) .'/'.URE_PLUGIN_FILE)) {
|
772 |
+
# $links[] = '<a target="_blank" href="http://role-editor.com/changelog">' . __('Changelog', 'ure') . '</a>';
|
773 |
+
# }
|
774 |
+
# wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
|
775 |
+
msgid "Changelog"
|
776 |
+
msgstr "יומן שינויים"
|
777 |
+
|
778 |
+
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/vladimir.png'; ?>);" target="_blank" href="http://www.shinephp.com/"><?php _e("Author's website", 'ure'); ?></a>
|
779 |
+
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
|
780 |
+
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#changelog"><?php _e('Changelog', 'ure'); ?></a>
|
781 |
+
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
782 |
+
msgid "Plugin webpage"
|
783 |
+
msgstr "דף התוסף"
|
784 |
+
|
785 |
+
# ?>
|
786 |
+
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/vladimir.png'; ?>);" target="_blank" href="http://www.shinephp.com/"><?php _e("Author's website", 'ure'); ?></a>
|
787 |
+
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
|
788 |
+
# wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
|
789 |
+
msgid "Author's website"
|
790 |
+
msgstr "אתר היוצר"
|
791 |
+
|
792 |
+
# esc_html__('User Role Editor', 'ure'),
|
793 |
+
# esc_html__('User Role Editor', 'ure'),
|
794 |
+
# $this->key_capability, 'settings-'.URE_PLUGIN_FILE, array(&$this, 'settings'));
|
795 |
+
# wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
|
796 |
+
msgid "User Role Editor"
|
797 |
+
msgstr "User Role Editor"
|
798 |
+
|
799 |
+
# <div style="padding:10px;">
|
800 |
+
# <div class="ure-label"><?php _e('Delete:', 'ure');?></div>
|
801 |
+
# <div class="ure-input"><?php echo $this->capability_remove_html; ?></div>
|
802 |
+
# wpml-name: 62f0d909f4edb78b805e4cf6747a4c36
|
803 |
+
msgid "Delete:"
|
804 |
+
msgstr "מחיקה:"
|
805 |
+
|
806 |
+
# $this->role_to_copy_html = '<select id="user_role_copy_from" name="user_role_copy_from" width="200" style="width: 200px">
|
807 |
+
# <option value="none" selected="selected">' . __('None', 'ure') . '</option>';
|
808 |
+
# $this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
|
809 |
+
# wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
|
810 |
+
msgid "None"
|
811 |
+
msgstr "תרום"
|
812 |
+
|
813 |
+
# protected function about() {
|
814 |
+
# $this->display_box_start(__('About this Plugin:', 'ure'));
|
815 |
+
# ?>
|
816 |
+
# wpml-name: 426a0f7faa99074ad799f9923e41aff4
|
817 |
+
msgid "About this Plugin:"
|
818 |
+
msgstr "אודות תוסף זה:"
|
819 |
+
|
820 |
+
#
|
821 |
+
# $mess = sprintf(__('Capability %s is removed successfully', 'ure'), $capability_id);
|
822 |
+
# }
|
823 |
+
# wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
|
824 |
+
msgid "Capability %s is removed successfully"
|
825 |
+
msgstr "היכולת %s הוסרה בהצלחה"
|
826 |
+
|
827 |
+
# if (!is_array($caps_to_remove) || count($caps_to_remove) == 0 || !isset($caps_to_remove[$capability_id])) {
|
828 |
+
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
829 |
+
# }
|
830 |
+
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
831 |
+
msgid "Error! You do not have permission to delete this capability: %s!"
|
832 |
+
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
833 |
+
|
834 |
+
# } else {
|
835 |
+
# $mess = sprintf('Error! ' . __('Capability %s exists already', 'ure'), $user_capability);
|
836 |
+
# }
|
837 |
+
# wpml-name: d5c1ec0556aadfa88cadffb62266b83d
|
838 |
+
msgid "Capability %s exists already"
|
839 |
+
msgstr "כבר קיימת יכולת בשם %s"
|
840 |
+
|
841 |
+
# $wp_roles->add_cap('administrator', $user_capability);
|
842 |
+
# $mess = sprintf(__('Capability %s is added successfully', 'ure'), $user_capability);
|
843 |
+
# } else {
|
844 |
+
# wpml-name: 6dcaae98207ba2673da987515b02fe31
|
845 |
+
msgid "Capability %s is added successfully"
|
846 |
+
msgstr "היכולת %s נוספה בהצלחה"
|
847 |
+
|
848 |
+
# if (!$valid_name || ($valid_name && ($match[0] != $user_capability))) { // some non-alphanumeric charactes found!
|
849 |
+
# return 'Error! ' . __('Error: Capability name must contain latin characters and digits only!', 'ure');
|
850 |
+
# ;
|
851 |
+
# wpml-name: 03766b9586d3012af6fc788e85d39530
|
852 |
+
msgid "Error: Capability name must contain latin characters and digits only!"
|
853 |
+
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
854 |
+
|
855 |
+
# __('Delete themes', 'ure');
|
856 |
+
# __('Export', 'ure');
|
857 |
+
# }
|
858 |
+
# wpml-name: 0095a9fa74d1713e43e370a7d7846224
|
859 |
+
msgid "Export"
|
860 |
+
msgstr "ייצוא תוכן"
|
861 |
+
|
862 |
+
# __('Edit theme options', 'ure');
|
863 |
+
# __('Delete themes', 'ure');
|
864 |
+
# __('Export', 'ure');
|
865 |
+
# wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
|
866 |
+
msgid "Delete themes"
|
867 |
+
msgstr "מחיקת תבניות"
|
868 |
+
|
869 |
+
# __('Promote users', 'ure');
|
870 |
+
# __('Edit theme options', 'ure');
|
871 |
+
# __('Delete themes', 'ure');
|
872 |
+
# wpml-name: 8841974497684dad4d55beaf2b6c52ef
|
873 |
+
msgid "Edit theme options"
|
874 |
+
msgstr "עריכת אפשרויות התבנית"
|
875 |
+
|
876 |
+
# __('Add users', 'ure');
|
877 |
+
# __('Promote users', 'ure');
|
878 |
+
# __('Edit theme options', 'ure');
|
879 |
+
# wpml-name: 12f4ba95cdfd04b791820b9c20887913
|
880 |
+
msgid "Promote users"
|
881 |
+
msgstr "שינוי משתמשים"
|
882 |
+
|
883 |
+
# __('Remove users', 'ure');
|
884 |
+
# __('Add users', 'ure');
|
885 |
+
# __('Promote users', 'ure');
|
886 |
+
# wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
|
887 |
+
msgid "Add users"
|
888 |
+
msgstr "הוספת משתמשים"
|
889 |
+
|
890 |
+
# __('List users', 'ure');
|
891 |
+
# __('Remove users', 'ure');
|
892 |
+
# __('Add users', 'ure');
|
893 |
+
# wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
|
894 |
+
msgid "Remove users"
|
895 |
+
msgstr "הסרת משתמשים"
|
896 |
+
|
897 |
+
# __('Update core', 'ure');
|
898 |
+
# __('List users', 'ure');
|
899 |
+
# __('Remove users', 'ure');
|
900 |
+
# wpml-name: f923f903857a5387d3db70494e074632
|
901 |
+
msgid "List users"
|
902 |
+
msgstr "בצפייה במשתמשים"
|
903 |
+
|
904 |
+
# __('Install themes', 'ure');
|
905 |
+
# __('Update core', 'ure');
|
906 |
+
# __('List users', 'ure');
|
907 |
+
# wpml-name: e56e5b87db548cd42be7a8a0f916205d
|
908 |
+
msgid "Update core"
|
909 |
+
msgstr "עדכון וורדפרס"
|
910 |
+
|
911 |
+
# __('Update themes', 'ure');
|
912 |
+
# __('Install themes', 'ure');
|
913 |
+
# __('Update core', 'ure');
|
914 |
+
# wpml-name: a7d67fb17876569a4590902d3566a6fd
|
915 |
+
msgid "Install themes"
|
916 |
+
msgstr "התקנת תבניות חדשות"
|
917 |
+
|
918 |
+
# __('Install plugins', 'ure');
|
919 |
+
# __('Update themes', 'ure');
|
920 |
+
# __('Install themes', 'ure');
|
921 |
+
# wpml-name: 504ea4a27260ac1e8822c5877ffe526b
|
922 |
+
msgid "Update themes"
|
923 |
+
msgstr "עדכון תבניות"
|
924 |
+
|
925 |
+
# __('Delete plugins', 'ure');
|
926 |
+
# __('Install plugins', 'ure');
|
927 |
+
# __('Update themes', 'ure');
|
928 |
+
# wpml-name: 9d06472988c53bfc768bc7b6a788b697
|
929 |
+
msgid "Install plugins"
|
930 |
+
msgstr "התקנת תוספים"
|
931 |
+
|
932 |
+
# __('Update plugins', 'ure');
|
933 |
+
# __('Delete plugins', 'ure');
|
934 |
+
# __('Install plugins', 'ure');
|
935 |
+
# wpml-name: f2a839940dae3934317d8d6a6f647ebd
|
936 |
+
msgid "Delete plugins"
|
937 |
+
msgstr "מחיקת תוספים"
|
938 |
+
|
939 |
+
# __('Edit dashboard', 'ure');
|
940 |
+
# __('Update plugins', 'ure');
|
941 |
+
# __('Delete plugins', 'ure');
|
942 |
+
# wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
|
943 |
+
msgid "Update plugins"
|
944 |
+
msgstr "עדכון תוספים"
|
945 |
+
|
946 |
+
# __('Unfiltered upload', 'ure');
|
947 |
+
# __('Edit dashboard', 'ure');
|
948 |
+
# __('Update plugins', 'ure');
|
949 |
+
# wpml-name: b5577d27ebfdd60a3bda83ae726d574b
|
950 |
+
msgid "Edit dashboard"
|
951 |
+
msgstr "שינוי לוח הבקרה"
|
952 |
+
|
953 |
+
# __('Create users', 'ure');
|
954 |
+
# __('Unfiltered upload', 'ure');
|
955 |
+
# __('Edit dashboard', 'ure');
|
956 |
+
# wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
|
957 |
+
msgid "Unfiltered upload"
|
958 |
+
msgstr "העלאת קבצים חופשית"
|
959 |
+
|
960 |
+
# __('Delete users', 'ure');
|
961 |
+
# __('Create users', 'ure');
|
962 |
+
# __('Unfiltered upload', 'ure');
|
963 |
+
# wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
|
964 |
+
msgid "Create users"
|
965 |
+
msgstr "יצירת משתמשים"
|
966 |
+
|
967 |
+
# __('Read private pages', 'ure');
|
968 |
+
# __('Delete users', 'ure');
|
969 |
+
# __('Create users', 'ure');
|
970 |
+
# wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
|
971 |
+
msgid "Delete users"
|
972 |
+
msgstr "מחיקת משתמשים"
|
973 |
+
|
974 |
+
# __('Edit private pages', 'ure');
|
975 |
+
# __('Read private pages', 'ure');
|
976 |
+
# __('Delete users', 'ure');
|
977 |
+
# wpml-name: 5faa3f2e9585e107dc5f23748a825882
|
978 |
+
msgid "Read private pages"
|
979 |
+
msgstr "קריאת עמודים פרטיים"
|
980 |
+
|
981 |
+
# __('Delete private pages', 'ure');
|
982 |
+
# __('Edit private pages', 'ure');
|
983 |
+
# __('Read private pages', 'ure');
|
984 |
+
# wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
|
985 |
+
msgid "Edit private pages"
|
986 |
+
msgstr "מחיקת עמודים פרטיים"
|
987 |
+
|
988 |
+
# __('Read private posts', 'ure');
|
989 |
+
# __('Delete private pages', 'ure');
|
990 |
+
# __('Edit private pages', 'ure');
|
991 |
+
# wpml-name: 2136c12e2beeadfe0da80a36ef967eca
|
992 |
+
msgid "Delete private pages"
|
993 |
+
msgstr "מחיקת עמודים פרטיים"
|
994 |
+
|
995 |
+
# __('Edit private posts', 'ure');
|
996 |
+
# __('Read private posts', 'ure');
|
997 |
+
# __('Delete private pages', 'ure');
|
998 |
+
# wpml-name: eab0355307288f6480f8c53a0d953d79
|
999 |
+
msgid "Read private posts"
|
1000 |
+
msgstr "קריאת פוסטים פרטיים"
|
1001 |
+
|
1002 |
+
# __('Delete private posts', 'ure');
|
1003 |
+
# __('Edit private posts', 'ure');
|
1004 |
+
# __('Read private posts', 'ure');
|
1005 |
+
# wpml-name: da9ee842794f7caf9fa32271073d5f7a
|
1006 |
+
msgid "Edit private posts"
|
1007 |
+
msgstr "עריכת פוסטים פרטיים"
|
1008 |
+
|
1009 |
+
# __('Delete published posts', 'ure');
|
1010 |
+
# __('Delete private posts', 'ure');
|
1011 |
+
# __('Edit private posts', 'ure');
|
1012 |
+
# wpml-name: dcd02c374764e49b36f0f959cc2917bb
|
1013 |
+
msgid "Delete private posts"
|
1014 |
+
msgstr "מחיקת פוסטים פרטיים"
|
1015 |
+
|
1016 |
+
# __('Delete others posts', 'ure');
|
1017 |
+
# __('Delete published posts', 'ure');
|
1018 |
+
# __('Delete private posts', 'ure');
|
1019 |
+
# wpml-name: b0a2d2039494d73f81f4e476bfda24da
|
1020 |
+
msgid "Delete published posts"
|
1021 |
+
msgstr "מחיקת פוסטים שפורסמו"
|
1022 |
+
|
1023 |
+
# __('Delete posts', 'ure');
|
1024 |
+
# __('Delete others posts', 'ure');
|
1025 |
+
# __('Delete published posts', 'ure');
|
1026 |
+
# wpml-name: c0496287732814df690c8966027a58d6
|
1027 |
+
msgid "Delete others posts"
|
1028 |
+
msgstr "מחיקת פוסטים של אחרים"
|
1029 |
+
|
1030 |
+
# __('Delete published pages', 'ure');
|
1031 |
+
# __('Delete posts', 'ure');
|
1032 |
+
# __('Delete others posts', 'ure');
|
1033 |
+
# wpml-name: 3dce6f688c85f06c63224b5c3be13919
|
1034 |
+
msgid "Delete posts"
|
1035 |
+
msgstr "מחיקת פוסטים"
|
1036 |
+
|
1037 |
+
# __('Delete others pages', 'ure');
|
1038 |
+
# __('Delete published pages', 'ure');
|
1039 |
+
# __('Delete posts', 'ure');
|
1040 |
+
# wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
|
1041 |
+
msgid "Delete published pages"
|
1042 |
+
msgstr "מחיקת דפים שפורסמו"
|
1043 |
+
|
1044 |
+
# __('Delete pages', 'ure');
|
1045 |
+
# __('Delete others pages', 'ure');
|
1046 |
+
# __('Delete published pages', 'ure');
|
1047 |
+
# wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
|
1048 |
+
msgid "Delete others pages"
|
1049 |
+
msgstr "מחיקת דפים של אחרים"
|
1050 |
+
|
1051 |
+
# __('Publish pages', 'ure');
|
1052 |
+
# __('Delete pages', 'ure');
|
1053 |
+
# __('Delete others pages', 'ure');
|
1054 |
+
# wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
|
1055 |
+
msgid "Delete pages"
|
1056 |
+
msgstr "מחיקת דפים"
|
1057 |
+
|
1058 |
+
# __('Edit published pages', 'ure');
|
1059 |
+
# __('Publish pages', 'ure');
|
1060 |
+
# __('Delete pages', 'ure');
|
1061 |
+
# wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
|
1062 |
+
msgid "Publish pages"
|
1063 |
+
msgstr "פרסום דפים"
|
1064 |
+
|
1065 |
+
# __('Edit others pages', 'ure');
|
1066 |
+
# __('Edit published pages', 'ure');
|
1067 |
+
# __('Publish pages', 'ure');
|
1068 |
+
# wpml-name: c5bfc24b0b891c9465134b83b2c6c259
|
1069 |
+
msgid "Edit published pages"
|
1070 |
+
msgstr "עריכת דפים שפורסמו"
|
1071 |
+
|
1072 |
+
# __('Level 0', 'ure');
|
1073 |
+
# __('Edit others pages', 'ure');
|
1074 |
+
# __('Edit published pages', 'ure');
|
1075 |
+
# wpml-name: b10af907824940fe6a5aa0a77c62be6f
|
1076 |
+
msgid "Edit others pages"
|
1077 |
+
msgstr "עריכת דפים של אחרים"
|
1078 |
+
|
1079 |
+
# __('Level 1', 'ure');
|
1080 |
+
# __('Level 0', 'ure');
|
1081 |
+
# __('Edit others pages', 'ure');
|
1082 |
+
# wpml-name: 057e95a59e032dbed970592dd1245092
|
1083 |
+
msgid "Level 0"
|
1084 |
+
msgstr "דרגה 0"
|
1085 |
+
|
1086 |
+
# __('Level 2', 'ure');
|
1087 |
+
# __('Level 1', 'ure');
|
1088 |
+
# __('Level 0', 'ure');
|
1089 |
+
# wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
|
1090 |
+
msgid "Level 1"
|
1091 |
+
msgstr "דרגה 1"
|
1092 |
+
|
1093 |
+
# __('Level 3', 'ure');
|
1094 |
+
# __('Level 2', 'ure');
|
1095 |
+
# __('Level 1', 'ure');
|
1096 |
+
# wpml-name: 228e9da47384bacde793a2b78d488bb0
|
1097 |
+
msgid "Level 2"
|
1098 |
+
msgstr "דרגה 2"
|
1099 |
+
|
1100 |
+
# __('Level 4', 'ure');
|
1101 |
+
# __('Level 3', 'ure');
|
1102 |
+
# __('Level 2', 'ure');
|
1103 |
+
# wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
|
1104 |
+
msgid "Level 3"
|
1105 |
+
msgstr "דרגה 3"
|
1106 |
+
|
1107 |
+
# __('Level 5', 'ure');
|
1108 |
+
# __('Level 4', 'ure');
|
1109 |
+
# __('Level 3', 'ure');
|
1110 |
+
# wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
|
1111 |
+
msgid "Level 4"
|
1112 |
+
msgstr "דרגה 4"
|
1113 |
+
|
1114 |
+
# __('Level 6', 'ure');
|
1115 |
+
# __('Level 5', 'ure');
|
1116 |
+
# __('Level 4', 'ure');
|
1117 |
+
# wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
|
1118 |
+
msgid "Level 5"
|
1119 |
+
msgstr "דרגה 5"
|
1120 |
+
|
1121 |
+
# __('Level 7', 'ure');
|
1122 |
+
# __('Level 6', 'ure');
|
1123 |
+
# __('Level 5', 'ure');
|
1124 |
+
# wpml-name: b30ce92fb9295725ef29254ba5ae17e1
|
1125 |
+
msgid "Level 6"
|
1126 |
+
msgstr "דרגה 6"
|
1127 |
+
|
1128 |
+
# __('Level 8', 'ure');
|
1129 |
+
# __('Level 7', 'ure');
|
1130 |
+
# __('Level 6', 'ure');
|
1131 |
+
# wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
|
1132 |
+
msgid "Level 7"
|
1133 |
+
msgstr "דרגה 7"
|
1134 |
+
|
1135 |
+
# __('Level 9', 'ure');
|
1136 |
+
# __('Level 8', 'ure');
|
1137 |
+
# __('Level 7', 'ure');
|
1138 |
+
# wpml-name: 625fef0c34a92b3685266a47f16c85dd
|
1139 |
+
msgid "Level 8"
|
1140 |
+
msgstr "דרגה 8"
|
1141 |
+
|
1142 |
+
# __('Level 10', 'ure');
|
1143 |
+
# __('Level 9', 'ure');
|
1144 |
+
# __('Level 8', 'ure');
|
1145 |
+
# wpml-name: d48252bc9cffec4bed5028a7c71d8196
|
1146 |
+
msgid "Level 9"
|
1147 |
+
msgstr "דרגה 9"
|
1148 |
+
|
1149 |
+
# __('Read', 'ure');
|
1150 |
+
# __('Level 10', 'ure');
|
1151 |
+
# __('Level 9', 'ure');
|
1152 |
+
# wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
|
1153 |
+
msgid "Level 10"
|
1154 |
+
msgstr "דרגה 10"
|
1155 |
+
|
1156 |
+
# __('Edit pages', 'ure');
|
1157 |
+
# __('Read', 'ure');
|
1158 |
+
# __('Level 10', 'ure');
|
1159 |
+
# wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
|
1160 |
+
msgid "Read"
|
1161 |
+
msgstr "קורא"
|
1162 |
+
|
1163 |
+
# __('Publish posts', 'ure');
|
1164 |
+
# __('Edit pages', 'ure');
|
1165 |
+
# __('Read', 'ure');
|
1166 |
+
# wpml-name: e7a51430fa0fbb32587c083ffae4b525
|
1167 |
+
msgid "Edit pages"
|
1168 |
+
msgstr "עריכת עמודים"
|
1169 |
+
|
1170 |
+
# __('Edit published posts', 'ure');
|
1171 |
+
# __('Publish posts', 'ure');
|
1172 |
+
# __('Edit pages', 'ure');
|
1173 |
+
# wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
|
1174 |
+
msgid "Publish posts"
|
1175 |
+
msgstr "פוסטים שפורסמו"
|
1176 |
+
|
1177 |
+
# __('Edit others posts', 'ure');
|
1178 |
+
# __('Edit published posts', 'ure');
|
1179 |
+
# __('Publish posts', 'ure');
|
1180 |
+
# wpml-name: d42efc04e7900de59ed3667c971e9e9d
|
1181 |
+
msgid "Edit published posts"
|
1182 |
+
msgstr "עריכת פוסטים שפורסמו"
|
1183 |
+
|
1184 |
+
# __('Edit posts', 'ure');
|
1185 |
+
# __('Edit others posts', 'ure');
|
1186 |
+
# __('Edit published posts', 'ure');
|
1187 |
+
# wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
|
1188 |
+
msgid "Edit others posts"
|
1189 |
+
msgstr "עריכת פוסטים של אחרים"
|
1190 |
+
|
1191 |
+
# __('Unfiltered html', 'ure');
|
1192 |
+
# __('Edit posts', 'ure');
|
1193 |
+
# __('Edit others posts', 'ure');
|
1194 |
+
# wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
|
1195 |
+
msgid "Edit posts"
|
1196 |
+
msgstr "עריכת פוסטים"
|
1197 |
+
|
1198 |
+
# __('Import', 'ure');
|
1199 |
+
# __('Unfiltered html', 'ure');
|
1200 |
+
# __('Edit posts', 'ure');
|
1201 |
+
# wpml-name: fdd95e5640d6d73230b7544ac261457a
|
1202 |
+
msgid "Unfiltered html"
|
1203 |
+
msgstr "עריכת HTML"
|
1204 |
+
|
1205 |
+
# __('Upload files', 'ure');
|
1206 |
+
# __('Import', 'ure');
|
1207 |
+
# __('Unfiltered html', 'ure');
|
1208 |
+
# wpml-name: 72d6d7a1885885bb55a565fd1070581a
|
1209 |
+
msgid "Import"
|
1210 |
+
msgstr "יבוא"
|
1211 |
+
|
1212 |
+
# __('Manage links', 'ure');
|
1213 |
+
# __('Upload files', 'ure');
|
1214 |
+
# __('Import', 'ure');
|
1215 |
+
# wpml-name: c7de86f69db264c3950d8ae46ed2e33f
|
1216 |
+
msgid "Upload files"
|
1217 |
+
msgstr "העלאת קבצים"
|
1218 |
+
|
1219 |
+
# __('Manage categories', 'ure');
|
1220 |
+
# __('Manage links', 'ure');
|
1221 |
+
# __('Upload files', 'ure');
|
1222 |
+
# wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
|
1223 |
+
msgid "Manage links"
|
1224 |
+
msgstr "ניהול קישורים"
|
1225 |
+
|
1226 |
+
# __('Moderate comments', 'ure');
|
1227 |
+
# __('Manage categories', 'ure');
|
1228 |
+
# __('Manage links', 'ure');
|
1229 |
+
# wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
|
1230 |
+
msgid "Manage categories"
|
1231 |
+
msgstr "ניהול קטגוריות"
|
1232 |
+
|
1233 |
+
# __('Manage options', 'ure');
|
1234 |
+
# __('Moderate comments', 'ure');
|
1235 |
+
# __('Manage categories', 'ure');
|
1236 |
+
# wpml-name: abb293cb5d17f4acca429ea13d74c593
|
1237 |
+
msgid "Moderate comments"
|
1238 |
+
msgstr "ניהול תגובות"
|
1239 |
+
|
1240 |
+
# __('Edit files', 'ure');
|
1241 |
+
# __('Manage options', 'ure');
|
1242 |
+
# __('Moderate comments', 'ure');
|
1243 |
+
# wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
|
1244 |
+
msgid "Manage options"
|
1245 |
+
msgstr "ניהול אפשרויות אתר"
|
1246 |
+
|
1247 |
+
# __('Edit users', 'ure');
|
1248 |
+
# __('Edit files', 'ure');
|
1249 |
+
# __('Manage options', 'ure');
|
1250 |
+
# wpml-name: 91c6e7a54b91cdc161f71958c597ed11
|
1251 |
+
msgid "Edit files"
|
1252 |
+
msgstr "עריכת קבצים"
|
1253 |
+
|
1254 |
+
# __('Edit plugins', 'ure');
|
1255 |
+
# __('Edit users', 'ure');
|
1256 |
+
# __('Edit files', 'ure');
|
1257 |
+
# wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
|
1258 |
+
msgid "Edit users"
|
1259 |
+
msgstr "עריכת משתמשים"
|
1260 |
+
|
1261 |
+
# __('Activate plugins', 'ure');
|
1262 |
+
# __('Edit plugins', 'ure');
|
1263 |
+
# __('Edit users', 'ure');
|
1264 |
+
# wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
|
1265 |
+
msgid "Edit plugins"
|
1266 |
+
msgstr "עריכת תוספים"
|
1267 |
+
|
1268 |
+
# __('Edit themes', 'ure');
|
1269 |
+
# __('Activate plugins', 'ure');
|
1270 |
+
# __('Edit plugins', 'ure');
|
1271 |
+
# wpml-name: c38bc47406355ef06ad3e10a98505536
|
1272 |
+
msgid "Activate plugins"
|
1273 |
+
msgstr "הפעלת תוספים"
|
1274 |
+
|
1275 |
+
# __('Switch themes', 'ure');
|
1276 |
+
# __('Edit themes', 'ure');
|
1277 |
+
# __('Activate plugins', 'ure');
|
1278 |
+
# wpml-name: 8395d1904c778ee1b2762e07a6a03878
|
1279 |
+
msgid "Edit themes"
|
1280 |
+
msgstr "עריכת תבניות"
|
1281 |
+
|
1282 |
+
# // Standard WordPress capabilities
|
1283 |
+
# __('Switch themes', 'ure');
|
1284 |
+
# __('Edit themes', 'ure');
|
1285 |
+
# wpml-name: 87d980c0c79638536655ce7fa0a4b85d
|
1286 |
+
msgid "Switch themes"
|
1287 |
+
msgstr "החלפת תבניות"
|
1288 |
+
|
1289 |
+
# __('Contributor', 'ure');
|
1290 |
+
# __('Subscriber', 'ure');
|
1291 |
+
# // Standard WordPress capabilities
|
1292 |
+
# wpml-name: 992c4a5b4628d8ebf671cf460254ee81
|
1293 |
+
msgid "Subscriber"
|
1294 |
+
msgstr "מנוי"
|
1295 |
+
|
1296 |
+
# __('Author', 'ure');
|
1297 |
+
# __('Contributor', 'ure');
|
1298 |
+
# __('Subscriber', 'ure');
|
1299 |
+
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
1300 |
+
msgid "Contributor"
|
1301 |
+
msgstr "תורם"
|
1302 |
+
|
1303 |
+
# __('Editor', 'ure');
|
1304 |
+
# __('Author', 'ure');
|
1305 |
+
# __('Contributor', 'ure');
|
1306 |
+
# wpml-name: a517747c3d12f99244ae598910d979c5
|
1307 |
+
msgid "Author"
|
1308 |
+
msgstr "כותב"
|
1309 |
+
|
1310 |
+
# // Standard WordPress roles
|
1311 |
+
# __('Editor', 'ure');
|
1312 |
+
# __('Author', 'ure');
|
1313 |
+
# wpml-name: 344a7f427fb765610ef96eb7bce95257
|
1314 |
+
msgid "Editor"
|
1315 |
+
msgstr "עורך"
|
1316 |
+
|
1317 |
+
# } else {
|
1318 |
+
# $mess = sprintf(__('Default role for new users is set to %s successfully', 'ure'), $wp_roles->role_names[$user_role_id]);
|
1319 |
+
# }
|
1320 |
+
# wpml-name: 94978d82edc73eba0f44bc7bceb299f4
|
1321 |
+
msgid "Default role for new users is set to %s successfully"
|
1322 |
+
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
1323 |
+
|
1324 |
+
# unset($_POST['user_role_id']);
|
1325 |
+
# $errorMessage = 'Error! ' . __('Error encountered during default role change operation', 'ure');
|
1326 |
+
# if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
|
1327 |
+
# wpml-name: b64bfe4842bc0638b79a24687976394e
|
1328 |
+
msgid "Error encountered during default role change operation"
|
1329 |
+
msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
|
1330 |
+
|
1331 |
+
# } else {
|
1332 |
+
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
1333 |
+
# }
|
1334 |
+
# wpml-name: 53552ec95bc8303219e8c39375763370
|
1335 |
+
msgid "Role %s is deleted successfully"
|
1336 |
+
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
1337 |
+
|
1338 |
+
# if (empty($result)) {
|
1339 |
+
# $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
|
1340 |
+
# } else {
|
1341 |
+
# wpml-name: 5ca27dda122445e597586a22e18088e6
|
1342 |
+
msgid "Error encountered during role delete operation"
|
1343 |
+
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
1344 |
+
|
1345 |
+
# } else {
|
1346 |
+
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
1347 |
+
# }
|
1348 |
+
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
1349 |
+
msgid "Role %s is created successfully"
|
1350 |
+
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
1351 |
+
|
1352 |
+
# if (!isset($result) || empty($result)) {
|
1353 |
+
# $mess = 'Error! ' . __('Error is encountered during new role create operation', 'ure');
|
1354 |
+
# } else {
|
1355 |
+
# wpml-name: e0618b1a4160611a46b1b95acab0821c
|
1356 |
+
msgid "Error is encountered during new role create operation"
|
1357 |
+
msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
1358 |
+
|
1359 |
+
# if (isset($wp_roles->roles[$user_role_id])) {
|
1360 |
+
# return sprintf('Error! ' . __('Role %s exists already', 'ure'), $user_role_id);
|
1361 |
+
# }
|
1362 |
+
# wpml-name: 61b6d86154b5437be56e6565f2820391
|
1363 |
+
msgid "Role %s exists already"
|
1364 |
+
msgstr "סוג המשתמש %s כבר קיים"
|
1365 |
+
|
1366 |
+
# if (!$valid_name || ($valid_name && ($match[0] != $user_role_id))) { // some non-alphanumeric charactes found!
|
1367 |
+
# return __('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'ure');
|
1368 |
+
# }
|
1369 |
+
# wpml-name: f9182094e24a9e2fbb7317b1724a69c9
|
1370 |
+
msgid ""
|
1371 |
+
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
1372 |
+
"only!"
|
1373 |
+
msgstr ""
|
1374 |
+
"שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
|
1375 |
+
|
1376 |
+
# if ($show_message) {
|
1377 |
+
# $this->show_message('Error! ' . __('Error is occur. Please check the log file.', 'ure'));
|
1378 |
+
# }
|
1379 |
+
# wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
|
1380 |
+
msgid "Error is occur. Please check the log file."
|
1381 |
+
msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
1382 |
+
|
1383 |
+
# if (!empty($url)) {
|
1384 |
+
# $link = '<a href="' . $url . '" title="read about ' . $capability . ' user capability" target="new"><img src="' . URE_PLUGIN_URL . '/images/help.png" alt="' . __('Help', 'ure') . '" /></a>';
|
1385 |
+
# } else {
|
1386 |
+
# wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
|
1387 |
+
msgid "Help"
|
1388 |
+
msgstr "עזרה"
|
1389 |
+
|
1390 |
+
# } else if ($action == 'roles_restore_note') {
|
1391 |
+
# $this->notification = __('User Roles are restored to WordPress default values. ', 'ure');
|
1392 |
+
# } else if ($action == 'update') {
|
1393 |
+
# wpml-name: 7182950b4f92d446844be24cfea6276a
|
1394 |
+
msgid "User Roles are restored to WordPress default values. "
|
1395 |
+
msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל של וורדפרס."
|
1396 |
+
|
1397 |
+
# }
|
1398 |
+
# $mess = __('Error occured during user update', 'ure');
|
1399 |
+
# }
|
1400 |
+
# wpml-name: f7283da5501e7e1cb13255d323859feb
|
1401 |
+
msgid "Error occured during user update"
|
1402 |
+
msgstr "קרתה שגיאה בזמן עדכון המשתמש"
|
1403 |
+
|
1404 |
+
# }
|
1405 |
+
# $mess = __('User capabilities are updated successfully', 'ure');
|
1406 |
+
# } else {
|
1407 |
+
# wpml-name: ee37618edaa53156b3a18d543ec60412
|
1408 |
+
msgid "User capabilities are updated successfully"
|
1409 |
+
msgstr "יכולות המשתמש עודכנו בהצלחה"
|
1410 |
+
|
1411 |
+
# }
|
1412 |
+
# $mess = __('Error occured during role(s) update', 'ure');
|
1413 |
+
# }
|
1414 |
+
# wpml-name: 9f528ca4741155f636c4331b19f2b170
|
1415 |
+
msgid "Error occured during role(s) update"
|
1416 |
+
msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
|
1417 |
+
|
1418 |
+
# } else {
|
1419 |
+
# $mess = __('Roles are updated for all network', 'ure');
|
1420 |
+
# }
|
1421 |
+
# wpml-name: f89c187756348dad944b0fcca790fde6
|
1422 |
+
msgid "Roles are updated for all network"
|
1423 |
+
msgstr "התפקידים עודכנו עבור כל הרשת"
|
1424 |
+
|
1425 |
+
# if (!$this->apply_to_all) {
|
1426 |
+
# $mess = __('Role is updated successfully', 'ure');
|
1427 |
+
# } else {
|
1428 |
+
# wpml-name: 9fd866f99b55510d60384b7efeb22018
|
1429 |
+
msgid "Role is updated successfully"
|
1430 |
+
msgstr "התפקיד עודכן בהצלחה"
|
1431 |
+
|
1432 |
+
# if (!isset($this->roles[$_POST['user_role']])) {
|
1433 |
+
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
1434 |
+
# $this->current_role = '';
|
1435 |
+
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
1436 |
+
msgid "does not exist"
|
1437 |
+
msgstr "לא נמצא"
|
1438 |
+
|
1439 |
+
# if (!isset($this->roles[$_POST['user_role']])) {
|
1440 |
+
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
1441 |
+
# $this->current_role = '';
|
1442 |
+
# wpml-name: bbbabdbe1b262f75d99d62880b953be1
|
1443 |
+
msgid "Role"
|
1444 |
+
msgstr "סוג משתמש:"
|
1445 |
+
|
1446 |
+
# if (!isset($this->roles[$_POST['user_role']])) {
|
1447 |
+
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
1448 |
+
# $this->current_role = '';
|
1449 |
+
# wpml-name: f97d2eb0a66987899d02bb180936afa3
|
1450 |
+
msgid "Error: "
|
1451 |
+
msgstr "שגיאה:"
|
1452 |
+
|
1453 |
+
# <div style="padding:10px;">
|
1454 |
+
# <div class="ure-label"><?php echo __('Capability name (ID): ', 'ure'); ?></div>
|
1455 |
+
# <div class="ure-input"><input type="text" name="capability_id" id="capability_id" size="25"/></div>
|
1456 |
+
# wpml-name: 42eabb45e3d2920f6a763458c3c5fffe
|
1457 |
+
msgid "Capability name (ID): "
|
1458 |
+
msgstr "שם היכולת (מזהה): "
|
1459 |
+
|
1460 |
+
# <div class="ure-input"><input type="text" name="user_role_name" id="user_role_name" size="25"/></div>
|
1461 |
+
# <div class="ure-label"><?php echo __('Make copy of: ', 'ure'); ?></div>
|
1462 |
+
# <div class="ure-input"><?php echo $this->role_to_copy_html; ?></div>
|
1463 |
+
# wpml-name: 1f2d970e46f567eb2fe77e1f8387f37a
|
1464 |
+
msgid "Make copy of: "
|
1465 |
+
msgstr "העתק:"
|
1466 |
+
|
1467 |
+
# <div class="ure-input"><input type="text" name="user_role_id" id="user_role_id" size="25"/></div>
|
1468 |
+
# <div class="ure-label"><?php echo __('Display Role Name: ', 'ure'); ?></div>
|
1469 |
+
# <div class="ure-input"><input type="text" name="user_role_name" id="user_role_name" size="25"/></div>
|
1470 |
+
# wpml-name: 246c9066a0e20805752f69f87ffb66af
|
1471 |
+
msgid "Display Role Name: "
|
1472 |
+
msgstr "הצג שם תפקיד:"
|
1473 |
+
|
1474 |
+
# <form id="ure_add_role_form" name="ure_add_role_form" method="POST">
|
1475 |
+
# <div class="ure-label"><?php echo __('Role name (ID): ', 'ure'); ?></div>
|
1476 |
+
# <div class="ure-input"><input type="text" name="user_role_id" id="user_role_id" size="25"/></div>
|
1477 |
+
# wpml-name: 37b0a122a7eb7b961dc33e61b8d5df10
|
1478 |
+
msgid "Role name (ID): "
|
1479 |
+
msgstr "שם התפקיד (מזהה): "
|
1480 |
+
|
1481 |
+
# if (!$this->editor_init0()) {
|
1482 |
+
# $this->show_message(__('Error: wrong request', 'URE'));
|
1483 |
+
# return false;
|
1484 |
+
# wpml-name: a4b9ac7e09dc5996d763f6bae29fd31a
|
1485 |
+
msgid "Error: wrong request"
|
1486 |
+
msgstr "שגיאה: בקשה מוטעית"
|
1487 |
+
|
1488 |
+
# ?>
|
1489 |
+
# <span style="font-weight: bold;"><?php _e('Custom capabilities:', 'ure'); ?></span>
|
1490 |
+
# <table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
|
1491 |
+
# wpml-name: 0e57c9d7615e130906e8fc6e10065ae1
|
1492 |
+
msgid "Custom capabilities:"
|
1493 |
+
msgstr "יכולות מותאמות אישית:"
|
1494 |
+
|
1495 |
+
# <div style="display:table-inline; float: right; margin-right: 12px;">
|
1496 |
+
# <?php _e('Quick filter:', 'ure'); ?>
|
1497 |
+
# <input type="text" id="quick_filter" name="quick_filter" value="" size="20" onkeyup="ure_filter_capabilities(this.value);" />
|
1498 |
+
# wpml-name: dfcd600fb9e5ccb12b8bb4d83f45d35a
|
1499 |
+
msgid "Quick filter:"
|
1500 |
+
msgstr "סינון מהיר:"
|
1501 |
+
|
1502 |
+
# <td style="padding-left: 5px; padding-top: 5px; border-top: 1px solid #ccc;">
|
1503 |
+
# <span style="font-weight: bold;"><?php _e('Core capabilities:', 'ure'); ?></span>
|
1504 |
+
# <div style="display:table-inline; float: right; margin-right: 12px;">
|
1505 |
+
# wpml-name: cca700a30d083e59a9879c24f255abe3
|
1506 |
+
msgid "Core capabilities:"
|
1507 |
+
msgstr "יכולות ליבה:"
|
1508 |
+
|
1509 |
+
# <?php echo $checked; ?> title="<?php echo $hint;?>" onclick="ure_applyToAllOnClick(this)"/>
|
1510 |
+
# <label for="ure_apply_to_all" title="<?php echo $hint;?>"><?php _e('Apply to All Sites', 'ure');?></label>
|
1511 |
+
# </div>
|
1512 |
+
# wpml-name: 3c3416f05587ed480626948fab988eea
|
1513 |
+
msgid "Apply to All Sites"
|
1514 |
+
msgstr "החל על כל האתרים"
|
1515 |
+
|
1516 |
+
# <?php echo $checked; ?> onclick="ure_turn_deprecated_caps(<?php echo $this->user_to_edit->ID; ?>);"/>
|
1517 |
+
# <label for="ure_show_deprecated_caps"><?php _e('Show deprecated capabilities', 'ure'); ?></label>
|
1518 |
+
# </td>
|
1519 |
+
# wpml-name: 130b09deaec4b13948be95555d546f25
|
1520 |
+
msgid "Show deprecated capabilities"
|
1521 |
+
msgstr "הצג הרשאות לפי מספר"
|
1522 |
+
|
1523 |
+
# <?php echo $checked; ?> onclick="ure_turn_caps_readable(<?php echo $this->user_to_edit->ID; ?>);" />
|
1524 |
+
# <label for="ure_caps_readable"><?php _e('Show capabilities in human readable form', 'ure'); ?></label>
|
1525 |
+
# <?php
|
1526 |
+
# wpml-name: 5e09edd7b2ed1864deffbd964073b27a
|
1527 |
+
msgid "Show capabilities in human readable form"
|
1528 |
+
msgstr "הראה יכולות משתמשים בשפה קריאה"
|
1529 |
+
|
1530 |
+
# <div style="padding:10px;">
|
1531 |
+
# <div class="ure-label"><?php _e('Select Role:', 'ure');?></div>
|
1532 |
+
# <div class="ure-input"><?php echo $this->role_delete_html; ?></div>
|
1533 |
+
# wpml-name: 6ae3f08b992f68a1bf8924945d2c7c98
|
1534 |
+
msgid "Select Role:"
|
1535 |
+
msgstr "בחר סוג משתמש"
|
1536 |
+
|
1537 |
+
# <?php
|
1538 |
+
# $this->display_box_start(__('Select Role and change its capabilities list', 'ure'), 'min-width:800px;');
|
1539 |
+
# ?>
|
1540 |
+
# wpml-name: 6a9631dbe20237a244cb3721ab6fc7d8
|
1541 |
+
msgid "Select Role and change its capabilities list"
|
1542 |
+
msgstr "בחר סוג משתמש ושנה את היכולות שלו"
|
readme.txt
CHANGED
@@ -62,8 +62,9 @@ To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/
|
|
62 |
|
63 |
|
64 |
= Translations =
|
65 |
-
* Catalan: [Efraim Bayarri](http://replicantsfactory.com/)
|
66 |
-
* Turkish: [Muhammed YILDIRIM](http://ben.muhammed.im)
|
|
|
67 |
|
68 |
|
69 |
Dear plugin User!
|
@@ -74,9 +75,27 @@ Share with me new ideas about plugin further development and link to your site w
|
|
74 |
|
75 |
== Changelog ==
|
76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
= 4.4 =
|
78 |
-
* 15.08.2013
|
79 |
-
* [Pro version](http://role-editor.com) only: Users of "Gravity Forms" plugin may restrict users access to the Forms on per form basis.
|
|
|
|
|
80 |
* Pro version: User Role Editor license key is not shown now on the Setting page. User sees just word "Installed" after he saved it.
|
81 |
* Bug fixed which prevented creation of current roles backup record during User Role Editor plugin installation and produced unexpected output (PHP notices).
|
82 |
|
62 |
|
63 |
|
64 |
= Translations =
|
65 |
+
* Catalan: [Efraim Bayarri](http://replicantsfactory.com/);
|
66 |
+
* Turkish: [Muhammed YILDIRIM](http://ben.muhammed.im);
|
67 |
+
* Hebrew: [atar4u](http://atar4u.com)
|
68 |
|
69 |
|
70 |
Dear plugin User!
|
75 |
|
76 |
== Changelog ==
|
77 |
|
78 |
+
= 4.5.1 =
|
79 |
+
* 29.08.2013
|
80 |
+
* Bug with multi-site super-admin access to the User Role Editor is fixed. Version 4.5. showed message "Insufficient permissions to work with User Role Editor" until add "manage_network_users" capability to the "Administrator" role. It is enough now to be the "Superadmin" at multi-site network.
|
81 |
+
|
82 |
+
= 4.5 =
|
83 |
+
* 29.08.2013
|
84 |
+
* Direct checking of the "administrator" role is removed from the code to support ability to change User Role Editor access key capability.
|
85 |
+
URE uses by default the "administrator" role for single site as the key capability to permit access to the User Role Editor.
|
86 |
+
You may change this capability manually by replacing value of URE_KEY_CAPABILITY constant at includes/define_constants.php file. Pro version
|
87 |
+
starting from 4.5 allows to change this key capability name (input your own, custom one) via User Role Editor settings page.
|
88 |
+
* The Hebrew translation is added. Thanks to [atar4u](http://atar4u.com).
|
89 |
+
* [Pro version](http://role-editor.com) only: Ability to restrict access of different administrators to plugins activation/deactivation on the per plugin base is realized.
|
90 |
+
Go to the user profile (user should have 'activate_plugins' capability) and select plugins to which you allow access for this user.
|
91 |
+
* Pro version: Gravity forms access restriction was re-factored and does not use JavaScript - it works on the SQL queries level now.
|
92 |
+
In order apply form access restriction to the user it is enough that the user has any capability from the Gravity Forms capabilities list.
|
93 |
+
|
94 |
= 4.4 =
|
95 |
+
* 15.08.2013
|
96 |
+
* [Pro version](http://role-editor.com) only: Users of "Gravity Forms" plugin may restrict users access to the Forms on per form basis.
|
97 |
+
Activate this option at URE Settings page and input at user's profile the list of Gravity Forms IDs, to which you allow access for this user.
|
98 |
+
User should have at least 'gravityforms_edit_forms' capability in order you see GF access control option at his profile.
|
99 |
* Pro version: User Role Editor license key is not shown now on the Setting page. User sees just word "Installed" after he saved it.
|
100 |
* Bug fixed which prevented creation of current roles backup record during User Role Editor plugin installation and produced unexpected output (PHP notices).
|
101 |
|
user-role-editor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: User Role Editor
|
4 |
Plugin URI: http://role-editor.com
|
5 |
Description: Change/add/delete WordPress user roles and capabilities.
|
6 |
-
Version: 4.
|
7 |
Author: Vladimir Garagulya
|
8 |
Author URI: http://www.shinephp.com
|
9 |
Text Domain: ure
|
3 |
Plugin Name: User Role Editor
|
4 |
Plugin URI: http://role-editor.com
|
5 |
Description: Change/add/delete WordPress user roles and capabilities.
|
6 |
+
Version: 4.5.1
|
7 |
Author: Vladimir Garagulya
|
8 |
Author URI: http://www.shinephp.com
|
9 |
Text Domain: ure
|