Version Description
- 06.04.2014
- Single-site: It is possible to bulk move users without role (--No role for this site--) to the selected role or automatically created role "No rights" without any capabilities. Get more details at http://role-editor.com/no-role-for-this-site/
- Plugin uses for dialogs jQuery UI CSS included into WordPress package.
- Pro version: It is possible to restrict editing posts/pages by its authors user ID (targeted user should have edit_others_posts or edit_others_pages capability).
- Pro version, multi-site: Superadmin can setup individual lists of themes available for activation to selected sites administrators.
- Pro version, Gravity Forms access restriction module was tested and compatible with Gravity Forms version 1.8.5
Download this release
Release Info
Developer | shinephp |
Plugin | User Role Editor |
Version | 4.11 |
Comparing to | |
See all releases |
Code changes from version 4.10 to 4.11
- css/ure-admin.css +4 -0
- includes/class-ajax-processor.php +98 -0
- includes/class-ure-lib.php +36 -0
- includes/class-user-role-editor.php +96 -5
- includes/settings-template.php +13 -1
- js/ure-users.js +95 -0
- lang/ure-ca.mo +0 -0
- lang/ure-ca.po +241 -243
- lang/ure-es_ES.mo +0 -0
- lang/ure-es_ES.po +282 -211
- lang/ure-he_IL.mo +0 -0
- lang/ure-he_IL.po +206 -284
- lang/ure-id_ID.mo +0 -0
- lang/ure-id_ID.po +242 -216
- lang/ure-ru_RU.mo +0 -0
- lang/ure-ru_RU.po +304 -226
- lang/ure-tr_TR.mo +0 -0
- lang/ure-tr_TR.po +283 -226
- lang/ure.mo +0 -0
- lang/ure.pot +169 -202
- readme.txt +10 -1
- screenshot-5.png +0 -0
- user-role-editor.php +2 -2
css/ure-admin.css
CHANGED
@@ -171,4 +171,8 @@ input.warning:hover, a.warning:hover {
|
|
171 |
#other_default_roles {
|
172 |
display: block;
|
173 |
margin: 10px;
|
|
|
|
|
|
|
|
|
174 |
}
|
171 |
#other_default_roles {
|
172 |
display: block;
|
173 |
margin: 10px;
|
174 |
+
}
|
175 |
+
|
176 |
+
.ure-dialog {
|
177 |
+
display: none;
|
178 |
}
|
includes/class-ajax-processor.php
ADDED
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*
|
4 |
+
* User Role Editor WordPress plugin
|
5 |
+
* Author: Vladimir Garagulya
|
6 |
+
* Email: support@role-editor.com
|
7 |
+
* License: GPLv2 or later
|
8 |
+
*/
|
9 |
+
|
10 |
+
|
11 |
+
/**
|
12 |
+
* Process AJAX requrest from User Role Editor
|
13 |
+
*
|
14 |
+
* @author vladimir
|
15 |
+
*/
|
16 |
+
class URE_Ajax_Processor {
|
17 |
+
|
18 |
+
protected $lib = null;
|
19 |
+
|
20 |
+
|
21 |
+
public function __construct($lib) {
|
22 |
+
|
23 |
+
$this->lib = $lib;
|
24 |
+
|
25 |
+
}
|
26 |
+
// end of __construct()
|
27 |
+
|
28 |
+
|
29 |
+
protected function ajax_check_permissions() {
|
30 |
+
|
31 |
+
if (!wp_verify_nonce($_REQUEST['wp_nonce'], 'user-role-editor-users')) {
|
32 |
+
echo json_encode(array('result'=>'error', 'message'=>'URE: Wrong or expired request'));
|
33 |
+
die;
|
34 |
+
}
|
35 |
+
|
36 |
+
$key_capability = $this->lib->get_key_capability();
|
37 |
+
if (!current_user_can($key_capability)) {
|
38 |
+
echo json_encode(array('result'=>'error', 'message'=>'URE: Insufficient permissions'));
|
39 |
+
die;
|
40 |
+
}
|
41 |
+
|
42 |
+
}
|
43 |
+
|
44 |
+
|
45 |
+
protected function get_users_without_role() {
|
46 |
+
global $wp_roles;
|
47 |
+
|
48 |
+
$new_role = filter_input(INPUT_POST, 'new_role', FILTER_SANITIZE_STRING);
|
49 |
+
if (empty($new_role)) {
|
50 |
+
$answer = array('result'=>'failure', 'message'=>'Provide new role');
|
51 |
+
return $answer;
|
52 |
+
}
|
53 |
+
if ($new_role==='no_rights') {
|
54 |
+
$this->lib->create_no_rights_role();
|
55 |
+
}
|
56 |
+
|
57 |
+
if (!isset($wp_roles)) {
|
58 |
+
$wp_roles = new WP_Roles();
|
59 |
+
}
|
60 |
+
if (!isset($wp_roles->roles[$new_role])) {
|
61 |
+
$answer = array('result'=>'failure', 'message'=>'Selected new role does not exist');
|
62 |
+
return $answer;
|
63 |
+
}
|
64 |
+
|
65 |
+
$users = $this->lib->get_users_without_role();
|
66 |
+
$answer = array('result'=>'success', 'users'=>$users, 'new_role'=>$new_role);
|
67 |
+
|
68 |
+
return $answer;
|
69 |
+
}
|
70 |
+
// end of get_users_without_role()
|
71 |
+
|
72 |
+
|
73 |
+
/**
|
74 |
+
* AJAX requests dispatcher
|
75 |
+
*/
|
76 |
+
public function dispatch() {
|
77 |
+
|
78 |
+
self::ajax_check_permissions();
|
79 |
+
|
80 |
+
$action = filter_input(INPUT_POST, 'sub_action', FILTER_SANITIZE_STRING);
|
81 |
+
if (empty($action)) {
|
82 |
+
$action = filter_input(INPUT_GET, 'sub_action', FILTER_SANITIZE_STRING);
|
83 |
+
}
|
84 |
+
switch ($action) {
|
85 |
+
case 'get_users_without_role':
|
86 |
+
$answer = self::get_users_without_role();
|
87 |
+
break;
|
88 |
+
default:
|
89 |
+
$answer = array('result'=>'error', 'message'=>'unknown action "'. $action .'"');
|
90 |
+
}
|
91 |
+
|
92 |
+
$json_answer = json_encode($answer);
|
93 |
+
echo $json_answer;
|
94 |
+
die;
|
95 |
+
}
|
96 |
+
|
97 |
+
}
|
98 |
+
// end of URE_Ajax_Processor
|
includes/class-ure-lib.php
CHANGED
@@ -2406,6 +2406,42 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2406 |
|
2407 |
}
|
2408 |
// end of show_other_default_roles()
|
|
|
2409 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2410 |
}
|
2411 |
// end of URE_Lib class
|
2406 |
|
2407 |
}
|
2408 |
// end of show_other_default_roles()
|
2409 |
+
|
2410 |
|
2411 |
+
public function create_no_rights_role() {
|
2412 |
+
global $wp_roles;
|
2413 |
+
|
2414 |
+
$role_id = 'no_rights';
|
2415 |
+
$role_name = 'No rights';
|
2416 |
+
|
2417 |
+
if (!isset($wp_roles)) {
|
2418 |
+
$wp_roles = new WP_Roles();
|
2419 |
+
}
|
2420 |
+
if (isset($wp_roles->roles[$role_name])) {
|
2421 |
+
return;
|
2422 |
+
}
|
2423 |
+
add_role($role_id, $role_name, array());
|
2424 |
+
|
2425 |
+
}
|
2426 |
+
// end of create_no_rights_role()
|
2427 |
+
|
2428 |
+
|
2429 |
+
public function get_users_without_role() {
|
2430 |
+
|
2431 |
+
global $wpdb;
|
2432 |
+
|
2433 |
+
$id = get_current_blog_id();
|
2434 |
+
$blog_prefix = $wpdb->get_blog_prefix($id);
|
2435 |
+
$query = "select ID from {$wpdb->users} users
|
2436 |
+
where not exists (select user_id from {$wpdb->usermeta}
|
2437 |
+
where user_id=users.ID and meta_key='{$blog_prefix}capabilities') or
|
2438 |
+
exists (select user_id from wp_usermeta
|
2439 |
+
where user_id=users.ID and meta_key='{$blog_prefix}capabilities' and meta_value='a:0:{}') ;";
|
2440 |
+
$users = $wpdb->get_col($query);
|
2441 |
+
|
2442 |
+
return $users;
|
2443 |
+
|
2444 |
+
}
|
2445 |
+
// end of get_users_without_role()
|
2446 |
}
|
2447 |
// end of URE_Lib class
|
includes/class-user-role-editor.php
CHANGED
@@ -97,7 +97,7 @@ class User_Role_Editor {
|
|
97 |
add_action( 'admin_enqueue_scripts', array($this, 'admin_load_js' ) );
|
98 |
add_action( 'user_row_actions', array($this, 'user_row'), 10, 2 );
|
99 |
add_action( 'edit_user_profile', array($this, 'edit_user_profile'), 10, 2 );
|
100 |
-
add_filter( 'manage_users_columns', array($this, 'user_role_column'), 10,
|
101 |
add_filter( 'manage_users_custom_column', array($this, 'user_role_row'), 10, 3 );
|
102 |
add_action( 'profile_update', array($this, 'user_profile_update'), 10 );
|
103 |
add_filter( 'all_plugins', array($this, 'exclude_from_plugins_list' ) );
|
@@ -114,12 +114,83 @@ class User_Role_Editor {
|
|
114 |
}
|
115 |
} else {
|
116 |
add_action( 'user_register', array($this, 'add_other_default_roles'), 10, 1 );
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
}
|
118 |
|
|
|
|
|
119 |
}
|
120 |
// end of plugin_init()
|
121 |
|
122 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
public function add_other_default_roles($user_id) {
|
124 |
|
125 |
if (empty($user_id)) {
|
@@ -557,6 +628,11 @@ class User_Role_Editor {
|
|
557 |
$show_deprecated_caps = $this->lib->get_request_var('show_deprecated_caps', 'checkbox');
|
558 |
$this->lib->put_option('ure_show_deprecated_caps', $show_deprecated_caps);
|
559 |
|
|
|
|
|
|
|
|
|
|
|
560 |
do_action('ure_settings_update');
|
561 |
|
562 |
$this->lib->flush_options();
|
@@ -637,8 +713,11 @@ class User_Role_Editor {
|
|
637 |
}
|
638 |
$caps_readable = $this->lib->get_option('ure_caps_readable', 0);
|
639 |
$show_deprecated_caps = $this->lib->get_option('ure_show_deprecated_caps', 0);
|
|
|
640 |
if ($this->lib->multisite) {
|
641 |
$allow_edit_users_to_not_super_admin = $this->lib->get_option('allow_edit_users_to_not_super_admin', 0);
|
|
|
|
|
642 |
}
|
643 |
|
644 |
$this->lib->get_default_role();
|
@@ -649,7 +728,7 @@ class User_Role_Editor {
|
|
649 |
|
650 |
do_action('ure_settings_load');
|
651 |
|
652 |
-
if (
|
653 |
$link = 'settings.php';
|
654 |
} else {
|
655 |
$link = 'options-general.php';
|
@@ -661,8 +740,10 @@ class User_Role_Editor {
|
|
661 |
|
662 |
public function admin_css_action() {
|
663 |
|
664 |
-
wp_enqueue_style('wp-jquery-ui-dialog');
|
665 |
-
|
|
|
|
|
666 |
wp_enqueue_style('ure-admin-css', URE_PLUGIN_URL . 'css/ure-admin.css', array(), false, 'screen');
|
667 |
}
|
668 |
// end of admin_css_action()
|
@@ -726,7 +807,7 @@ class User_Role_Editor {
|
|
726 |
$ure_hook_suffixes = array('settings_page_settings-user-role-editor', 'users_page_users-user-role-editor');
|
727 |
}
|
728 |
if (in_array($hook_suffix, $ure_hook_suffixes)) {
|
729 |
-
wp_enqueue_script('jquery-ui-dialog', false, array('jquery-ui-core','jquery-ui-button', 'jquery
|
730 |
wp_enqueue_script('jquery-ui-tabs', false, array('jquery-ui-core', 'jquery') );
|
731 |
wp_register_script( 'ure-js', plugins_url( '/js/ure-js.js', URE_PLUGIN_FULL_PATH ) );
|
732 |
wp_enqueue_script ( 'ure-js' );
|
@@ -879,6 +960,16 @@ class User_Role_Editor {
|
|
879 |
}
|
880 |
// update_user_profile()
|
881 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
882 |
|
883 |
|
884 |
// execute on plugin deactivation
|
97 |
add_action( 'admin_enqueue_scripts', array($this, 'admin_load_js' ) );
|
98 |
add_action( 'user_row_actions', array($this, 'user_row'), 10, 2 );
|
99 |
add_action( 'edit_user_profile', array($this, 'edit_user_profile'), 10, 2 );
|
100 |
+
add_filter( 'manage_users_columns', array($this, 'user_role_column'), 10, 1 );
|
101 |
add_filter( 'manage_users_custom_column', array($this, 'user_role_row'), 10, 3 );
|
102 |
add_action( 'profile_update', array($this, 'user_profile_update'), 10 );
|
103 |
add_filter( 'all_plugins', array($this, 'exclude_from_plugins_list' ) );
|
114 |
}
|
115 |
} else {
|
116 |
add_action( 'user_register', array($this, 'add_other_default_roles'), 10, 1 );
|
117 |
+
$count_users_without_role = $this->lib->get_option('count_users_without_role', 0);
|
118 |
+
if ($count_users_without_role) {
|
119 |
+
add_action( 'restrict_manage_users', array($this, 'move_users_from_no_role_button') );
|
120 |
+
add_action( 'admin_init', array($this, 'add_css_to_users_page'));
|
121 |
+
add_action( 'admin_footer', array($this, 'add_js_to_users_page') );
|
122 |
+
}
|
123 |
}
|
124 |
|
125 |
+
add_action('wp_ajax_ure_ajax', array($this, 'ure_ajax'));
|
126 |
+
|
127 |
}
|
128 |
// end of plugin_init()
|
129 |
|
130 |
|
131 |
+
public function move_users_from_no_role_button() {
|
132 |
+
|
133 |
+
global $wpdb;
|
134 |
+
|
135 |
+
if ( stripos($_SERVER['REQUEST_URI'], 'wp-admin/users.php')===false ) {
|
136 |
+
return;
|
137 |
+
}
|
138 |
+
|
139 |
+
$id = get_current_blog_id();
|
140 |
+
$blog_prefix = $wpdb->get_blog_prefix($id);
|
141 |
+
$query = "select count(ID) from {$wpdb->users} users
|
142 |
+
where not exists (select user_id from {$wpdb->usermeta}
|
143 |
+
where user_id=users.ID and meta_key='{$blog_prefix}capabilities') or
|
144 |
+
exists (select user_id from wp_usermeta
|
145 |
+
where user_id=users.ID and meta_key='{$blog_prefix}capabilities' and meta_value='a:0:{}') ;";
|
146 |
+
$users_count = $wpdb->get_var($query);
|
147 |
+
if ($users_count>0) {
|
148 |
+
?>
|
149 |
+
<input type="button" name="move_from_no_role" id="move_from_no_role" class="button"
|
150 |
+
value="Without role (<?php echo $users_count;?>)" onclick="ure_move_users_from_no_role_dialog()">
|
151 |
+
<div id="move_from_no_role_dialog" class="ure-dialog">
|
152 |
+
<div id="move_from_no_role_content" style="padding: 10px;">
|
153 |
+
To: <select name="ure_new_role" id="ure_new_role">
|
154 |
+
<option value="no_rights">No rights</option>
|
155 |
+
</select><br>
|
156 |
+
</div>
|
157 |
+
</div>
|
158 |
+
<?php
|
159 |
+
}
|
160 |
+
|
161 |
+
}
|
162 |
+
// end of move_users_from_no_role()
|
163 |
+
|
164 |
+
|
165 |
+
public function add_css_to_users_page() {
|
166 |
+
if ( stripos($_SERVER['REQUEST_URI'], 'wp-admin/users.php')===false ) {
|
167 |
+
return;
|
168 |
+
}
|
169 |
+
wp_enqueue_style('wp-jquery-ui-dialog');
|
170 |
+
wp_enqueue_style('ure-admin-css', URE_PLUGIN_URL . 'css/ure-admin.css', array(), false, 'screen');
|
171 |
+
|
172 |
+
}
|
173 |
+
|
174 |
+
public function add_js_to_users_page() {
|
175 |
+
|
176 |
+
if ( stripos($_SERVER['REQUEST_URI'], 'wp-admin/users.php')===false ) {
|
177 |
+
return;
|
178 |
+
}
|
179 |
+
|
180 |
+
wp_enqueue_script('jquery-ui-dialog', false, array('jquery-ui-core','jquery-ui-button', 'jquery') );
|
181 |
+
wp_register_script( 'ure-users-js', plugins_url( '/js/ure-users.js', URE_PLUGIN_FULL_PATH ) );
|
182 |
+
wp_enqueue_script ( 'ure-users-js' );
|
183 |
+
wp_localize_script( 'ure-users-js', 'ure_users_data', array(
|
184 |
+
'wp_nonce' => wp_create_nonce('user-role-editor-users'),
|
185 |
+
'move_from_no_role_title' => esc_html__('Change role for users without role', 'ure'),
|
186 |
+
'no_rights_caption' => esc_html__('No rights', 'ure'),
|
187 |
+
'provide_new_role_caption' => esc_html__('Provide new role', 'ure')
|
188 |
+
));
|
189 |
+
|
190 |
+
}
|
191 |
+
// end of add_js_to_users_page()
|
192 |
+
|
193 |
+
|
194 |
public function add_other_default_roles($user_id) {
|
195 |
|
196 |
if (empty($user_id)) {
|
628 |
$show_deprecated_caps = $this->lib->get_request_var('show_deprecated_caps', 'checkbox');
|
629 |
$this->lib->put_option('ure_show_deprecated_caps', $show_deprecated_caps);
|
630 |
|
631 |
+
if (!$this->lib->multisite) {
|
632 |
+
$count_users_without_role = $this->lib->get_request_var('count_users_without_role', 'checkbox');
|
633 |
+
$this->lib->put_option('count_users_without_role', $count_users_without_role);
|
634 |
+
}
|
635 |
+
|
636 |
do_action('ure_settings_update');
|
637 |
|
638 |
$this->lib->flush_options();
|
713 |
}
|
714 |
$caps_readable = $this->lib->get_option('ure_caps_readable', 0);
|
715 |
$show_deprecated_caps = $this->lib->get_option('ure_show_deprecated_caps', 0);
|
716 |
+
|
717 |
if ($this->lib->multisite) {
|
718 |
$allow_edit_users_to_not_super_admin = $this->lib->get_option('allow_edit_users_to_not_super_admin', 0);
|
719 |
+
} else {
|
720 |
+
$count_users_without_role = $this->lib->get_option('count_users_without_role', 0);
|
721 |
}
|
722 |
|
723 |
$this->lib->get_default_role();
|
728 |
|
729 |
do_action('ure_settings_load');
|
730 |
|
731 |
+
if ($this->lib->multisite) {
|
732 |
$link = 'settings.php';
|
733 |
} else {
|
734 |
$link = 'options-general.php';
|
740 |
|
741 |
public function admin_css_action() {
|
742 |
|
743 |
+
wp_enqueue_style('wp-jquery-ui-dialog');
|
744 |
+
if (stripos($_SERVER['REQUEST_URI'], 'settings-user-role-editor')!==false) {
|
745 |
+
wp_enqueue_style('ure-jquery-ui-tabs', URE_PLUGIN_URL . 'css/jquery-ui-1.10.4.custom.min.css', array(), false, 'screen');
|
746 |
+
}
|
747 |
wp_enqueue_style('ure-admin-css', URE_PLUGIN_URL . 'css/ure-admin.css', array(), false, 'screen');
|
748 |
}
|
749 |
// end of admin_css_action()
|
807 |
$ure_hook_suffixes = array('settings_page_settings-user-role-editor', 'users_page_users-user-role-editor');
|
808 |
}
|
809 |
if (in_array($hook_suffix, $ure_hook_suffixes)) {
|
810 |
+
wp_enqueue_script('jquery-ui-dialog', false, array('jquery-ui-core','jquery-ui-button', 'jquery') );
|
811 |
wp_enqueue_script('jquery-ui-tabs', false, array('jquery-ui-core', 'jquery') );
|
812 |
wp_register_script( 'ure-js', plugins_url( '/js/ure-js.js', URE_PLUGIN_FULL_PATH ) );
|
813 |
wp_enqueue_script ( 'ure-js' );
|
960 |
}
|
961 |
// update_user_profile()
|
962 |
|
963 |
+
|
964 |
+
|
965 |
+
public function ure_ajax() {
|
966 |
+
|
967 |
+
require_once(URE_PLUGIN_DIR . 'includes/class-ajax-processor.php');
|
968 |
+
$ajax_processor = new URE_Ajax_Processor($this->lib);
|
969 |
+
$ajax_processor->dispatch();
|
970 |
+
|
971 |
+
}
|
972 |
+
// end of ure_ajax_process()
|
973 |
|
974 |
|
975 |
// execute on plugin deactivation
|
includes/settings-template.php
CHANGED
@@ -57,8 +57,20 @@
|
|
57 |
<label for="show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities', 'ure'); ?></label></td>
|
58 |
<td>
|
59 |
</td>
|
60 |
-
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
<?php
|
|
|
62 |
do_action('ure_settings_show');
|
63 |
?>
|
64 |
</table>
|
57 |
<label for="show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities', 'ure'); ?></label></td>
|
58 |
<td>
|
59 |
</td>
|
60 |
+
</tr>
|
61 |
+
<?php
|
62 |
+
if (!$this->lib->multisite) {
|
63 |
+
?>
|
64 |
+
<tr>
|
65 |
+
<td>
|
66 |
+
<input type="checkbox" name="count_users_without_role" id="count_users_without_role" value="1"
|
67 |
+
<?php echo ($count_users_without_role == 1) ? 'checked="checked"' : ''; ?> />
|
68 |
+
<label for="count_users_without_role"><?php esc_html_e('Count users without role', 'ure'); ?></label></td>
|
69 |
+
<td>
|
70 |
+
</td>
|
71 |
+
</tr>
|
72 |
<?php
|
73 |
+
}
|
74 |
do_action('ure_settings_show');
|
75 |
?>
|
76 |
</table>
|
js/ure-users.js
ADDED
@@ -0,0 +1,95 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* User Role Editor for users.php */
|
2 |
+
|
3 |
+
function ure_move_users_from_no_role_dialog() {
|
4 |
+
jQuery('#move_from_no_role_dialog').dialog({
|
5 |
+
dialogClass: 'wp-dialog',
|
6 |
+
modal: true,
|
7 |
+
autoOpen: true,
|
8 |
+
closeOnEscape: true,
|
9 |
+
width: 400,
|
10 |
+
height: 200,
|
11 |
+
resizable: false,
|
12 |
+
title: ure_users_data.move_from_no_role_title,
|
13 |
+
'buttons' : {
|
14 |
+
'OK': function () {
|
15 |
+
ure_move_users_from_no_role();
|
16 |
+
|
17 |
+
},
|
18 |
+
Cancel: function() {
|
19 |
+
jQuery(this).dialog('close');
|
20 |
+
return false;
|
21 |
+
}
|
22 |
+
}
|
23 |
+
});
|
24 |
+
|
25 |
+
var options = jQuery("#new_role > option").clone();
|
26 |
+
jQuery('#ure_new_role').empty().append(options);
|
27 |
+
if (jQuery('#ure_new_role option[value="no_rights"]').length===0) {
|
28 |
+
jQuery('#ure_new_role').append('<option value="no_rights">'+ ure_users_data.no_rights_caption +'</option>');
|
29 |
+
}
|
30 |
+
|
31 |
+
// Exclude change role to
|
32 |
+
jQuery('#selectBox option[value=""]').remove();
|
33 |
+
var new_role = jQuery('#new_role').find(":selected").val();
|
34 |
+
if (new_role.length>0) {
|
35 |
+
jQuery("#ure_new_role").val(new_role);
|
36 |
+
}
|
37 |
+
}
|
38 |
+
|
39 |
+
|
40 |
+
function ure_move_users_from_no_role() {
|
41 |
+
new_role = jQuery('#ure_new_role').find(":selected").val();
|
42 |
+
if (new_role.length==0) {
|
43 |
+
alert(ure_users_data.provide_new_role_caption);
|
44 |
+
return;
|
45 |
+
}
|
46 |
+
jQuery.ajax({
|
47 |
+
url: ajaxurl,
|
48 |
+
type: 'POST',
|
49 |
+
dataType: 'html',
|
50 |
+
data: {
|
51 |
+
action: 'ure_ajax',
|
52 |
+
sub_action: 'get_users_without_role',
|
53 |
+
wp_nonce: ure_users_data.wp_nonce,
|
54 |
+
new_role: new_role
|
55 |
+
},
|
56 |
+
success: function(response) {
|
57 |
+
var data = jQuery.parseJSON(response);
|
58 |
+
if (typeof data.result !== 'undefined') {
|
59 |
+
if (data.result === 'success') {
|
60 |
+
ure_post_move_users_command(data);
|
61 |
+
} else if (data.result === 'failure') {
|
62 |
+
alert(data.message);
|
63 |
+
} else {
|
64 |
+
alert('Wrong response: ' + response)
|
65 |
+
}
|
66 |
+
} else {
|
67 |
+
alert('Wrong response: ' + response)
|
68 |
+
}
|
69 |
+
},
|
70 |
+
error: function(XMLHttpRequest, textStatus, exception) {
|
71 |
+
alert("Ajax failure\n" + errortext);
|
72 |
+
},
|
73 |
+
async: true
|
74 |
+
});
|
75 |
+
|
76 |
+
}
|
77 |
+
|
78 |
+
|
79 |
+
function ure_post_move_users_command(data) {
|
80 |
+
var options = jQuery("#ure_new_role > option").clone();
|
81 |
+
jQuery('#new_role').empty().append(options);
|
82 |
+
jQuery("#new_role").val(data.new_role);
|
83 |
+
var el = jQuery('.bulkactions').append();
|
84 |
+
for(var i=0; i<data.users.length; i++) {
|
85 |
+
if (jQuery('#user_'+ data.users[i]).length>0) {
|
86 |
+
jQuery('#user_'+ data.users[i]).prop('checked', true);
|
87 |
+
} else {
|
88 |
+
var html = '<input type="checkbox" name="users[]" id="user_'+ data.users[i] +'" value="1" checked="checked" style="display: none;">';
|
89 |
+
el.append(html);
|
90 |
+
}
|
91 |
+
}
|
92 |
+
|
93 |
+
// submit form
|
94 |
+
jQuery('#changeit').click();
|
95 |
+
}
|
lang/ure-ca.mo
CHANGED
Binary file
|
lang/ure-ca.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v. 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -19,156 +19,198 @@ msgstr ""
|
|
19 |
"X-Generator: Poedit 1.5.4\n"
|
20 |
"X-Poedit-SearchPath-0: user-role-editor\n"
|
21 |
|
22 |
-
#:
|
|
|
23 |
msgid "Save"
|
24 |
msgstr ""
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
# @ ure
|
27 |
-
#:
|
28 |
-
#:
|
29 |
msgid "You do not have permission to edit this user."
|
30 |
msgstr ""
|
31 |
|
32 |
# @ ure
|
33 |
-
#:
|
34 |
msgid "Capabilities"
|
35 |
msgstr "Capacitats"
|
36 |
|
37 |
# @ ure
|
38 |
-
#:
|
39 |
msgid "Settings"
|
40 |
msgstr "Opcions"
|
41 |
|
42 |
# @ ure
|
43 |
-
#:
|
44 |
-
#:
|
45 |
msgid "Changelog"
|
46 |
msgstr "Registre de canvis"
|
47 |
|
48 |
-
#:
|
49 |
msgid "Overview"
|
50 |
msgstr ""
|
51 |
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
|
|
|
|
|
|
57 |
|
58 |
# @ ure
|
59 |
# @ default
|
60 |
-
#:
|
|
|
61 |
msgid "User Role Editor options are updated"
|
62 |
msgstr ""
|
63 |
|
64 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
msgid "Insufficient permissions to work with User Role Editor"
|
66 |
msgstr ""
|
67 |
|
68 |
# @ ure
|
69 |
-
#:
|
70 |
msgid "Select All"
|
71 |
msgstr "Seleccionar-ho tot"
|
72 |
|
73 |
-
#:
|
74 |
msgid "Unselect All"
|
75 |
msgstr "De-selecciona-ho tot"
|
76 |
|
77 |
-
#:
|
78 |
msgid "Reverse"
|
79 |
msgstr "Invertir"
|
80 |
|
81 |
# @ ure
|
82 |
-
#:
|
83 |
msgid "Update"
|
84 |
msgstr "Actualitzar"
|
85 |
|
86 |
# @ ure
|
87 |
-
#:
|
88 |
msgid "Please confirm permissions update"
|
89 |
msgstr "Si us plau confirmeu l'actualització de permisos "
|
90 |
|
91 |
# @ ure
|
92 |
-
#:
|
93 |
msgid "Add New Role"
|
94 |
msgstr "Afegir nou Rol"
|
95 |
|
96 |
# @ ure
|
97 |
-
#:
|
98 |
msgid " Role name (ID) can not be empty!"
|
99 |
msgstr "El nom de rol (ID) no pot estar buit!"
|
100 |
|
101 |
# @ ure
|
102 |
-
#:
|
103 |
msgid ""
|
104 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
105 |
"only!"
|
106 |
msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
|
107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
# @ ure
|
109 |
-
#:
|
110 |
msgid "Add Role"
|
111 |
msgstr "Afegir nou Rol"
|
112 |
|
113 |
# @ ure
|
114 |
-
#:
|
115 |
msgid "Delete Role"
|
116 |
msgstr "Eliminar Rol"
|
117 |
|
118 |
# @ ure
|
119 |
-
#:
|
120 |
msgid "Cancel"
|
121 |
msgstr "Cancel·lar"
|
122 |
|
123 |
# @ ure
|
124 |
-
#:
|
125 |
msgid "Add Capability"
|
126 |
msgstr "Afegir nou privilegi"
|
127 |
|
128 |
# @ ure
|
129 |
-
#:
|
130 |
-
#:
|
131 |
msgid "Delete Capability"
|
132 |
msgstr "Eliminar privilegi"
|
133 |
|
134 |
# @ ure
|
135 |
-
#:
|
136 |
msgid "Reset"
|
137 |
msgstr "Reiniciar"
|
138 |
|
139 |
-
#:
|
140 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
141 |
msgstr ""
|
142 |
|
143 |
-
#:
|
144 |
msgid ""
|
145 |
"If any plugins have changed capabilities in any way upon installation (such "
|
146 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#:
|
150 |
msgid ""
|
151 |
"For more information on how to undo changes and restore plugin capabilities "
|
152 |
"go to"
|
153 |
msgstr ""
|
154 |
|
155 |
# @ ure
|
156 |
-
#:
|
157 |
msgid "Continue?"
|
158 |
msgstr ""
|
159 |
|
160 |
# @ ure
|
161 |
-
#:
|
162 |
msgid "Default Role"
|
163 |
msgstr "Rol predeterminat"
|
164 |
|
165 |
# @ ure
|
166 |
-
#:
|
167 |
msgid "Set New Default Role"
|
168 |
msgstr "Assignar com a rol predeterminat"
|
169 |
|
170 |
# @ ure
|
171 |
-
#:
|
172 |
msgid ""
|
173 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
174 |
"or other custom code"
|
@@ -177,12 +219,12 @@ msgstr ""
|
|
177 |
"algun connector o algun altre codi personalitzat."
|
178 |
|
179 |
# @ ure
|
180 |
-
#:
|
181 |
msgid " Capability name (ID) can not be empty!"
|
182 |
msgstr "El nom de priviliegi (ID) no pot estar buit!"
|
183 |
|
184 |
# @ ure
|
185 |
-
#:
|
186 |
msgid ""
|
187 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
188 |
"underscore only!"
|
@@ -191,628 +233,584 @@ msgstr ""
|
|
191 |
"dígits."
|
192 |
|
193 |
# @ ure
|
194 |
-
|
195 |
-
#:
|
196 |
-
#: user-role-editor/includes/class-ure-lib.php:223
|
197 |
-
msgid "User Role Editor"
|
198 |
-
msgstr "User Role Editor"
|
199 |
-
|
200 |
-
# @ ure
|
201 |
-
#: user-role-editor/includes/class-user-role-editor.php:681
|
202 |
-
#: user-role-editor/includes/class-user-role-editor.php:709
|
203 |
msgid "Other Roles"
|
204 |
msgstr "Altres rols"
|
205 |
|
206 |
# @ ure
|
207 |
-
#:
|
208 |
msgid "Edit"
|
209 |
msgstr "Editar"
|
210 |
|
211 |
-
# @ ure
|
212 |
-
#: user-role-editor/includes/ure-role-edit.php:17
|
213 |
-
msgid "Select Role and change its capabilities list"
|
214 |
-
msgstr "Selecciona el Rol per canviar la seva llista de privilegis"
|
215 |
-
|
216 |
-
# @ ure
|
217 |
-
#: user-role-editor/includes/ure-role-edit.php:19
|
218 |
-
#: user-role-editor/includes/class-ure-lib.php:184
|
219 |
-
msgid "Select Role:"
|
220 |
-
msgstr "Selecciona el Rol:"
|
221 |
-
|
222 |
-
# @ ure
|
223 |
-
#: user-role-editor/includes/ure-role-edit.php:30
|
224 |
-
#: user-role-editor/includes/ure-user-edit.php:51
|
225 |
-
msgid "Show capabilities in human readable form"
|
226 |
-
msgstr "Mostra privilegis de forma llegible"
|
227 |
-
|
228 |
-
# @ ure
|
229 |
-
#: user-role-editor/includes/ure-role-edit.php:40
|
230 |
-
#: user-role-editor/includes/ure-user-edit.php:61
|
231 |
-
msgid "Show deprecated capabilities"
|
232 |
-
msgstr "Mostrar privilegis obsolets"
|
233 |
-
|
234 |
# @ default
|
235 |
-
#:
|
236 |
msgid "If checked, then apply action to ALL sites of this Network"
|
237 |
msgstr "Si està marcat s'aplica l'acció a TOTS els llocs d'aquesta xarxa"
|
238 |
|
239 |
-
|
240 |
-
#: user-role-editor/includes/ure-role-edit.php:57
|
241 |
-
msgid "Apply to All Sites"
|
242 |
-
msgstr "Aplicar a tot arreu"
|
243 |
-
|
244 |
-
# @ ure
|
245 |
-
#: user-role-editor/includes/ure-role-edit.php:64
|
246 |
-
#: user-role-editor/includes/ure-user-edit.php:104
|
247 |
-
msgid "Core capabilities:"
|
248 |
-
msgstr "Privilegis"
|
249 |
-
|
250 |
-
#: user-role-editor/includes/ure-role-edit.php:66
|
251 |
-
#: user-role-editor/includes/ure-user-edit.php:106
|
252 |
-
msgid "Quick filter:"
|
253 |
-
msgstr ""
|
254 |
-
|
255 |
-
# @ ure
|
256 |
-
#: user-role-editor/includes/ure-role-edit.php:84
|
257 |
-
#: user-role-editor/includes/ure-user-edit.php:125
|
258 |
-
msgid "Custom capabilities:"
|
259 |
-
msgstr "Privilegis personalitzats"
|
260 |
-
|
261 |
-
#: user-role-editor/includes/class-ure-lib.php:141
|
262 |
msgid "Error: wrong request"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: user-role-editor/includes/class-ure-lib.php:173
|
266 |
-
msgid "Role name (ID): "
|
267 |
-
msgstr "Nom de rol (ID):"
|
268 |
-
|
269 |
-
#: user-role-editor/includes/class-ure-lib.php:175
|
270 |
-
msgid "Display Role Name: "
|
271 |
-
msgstr "Visualització de nom de rol:"
|
272 |
-
|
273 |
-
# @ ure
|
274 |
-
#: user-role-editor/includes/class-ure-lib.php:177
|
275 |
-
msgid "Make copy of: "
|
276 |
-
msgstr "Fer còpia de:"
|
277 |
-
|
278 |
-
# @ ure
|
279 |
-
#: user-role-editor/includes/class-ure-lib.php:199
|
280 |
-
msgid "Delete:"
|
281 |
-
msgstr "Eliminar:"
|
282 |
-
|
283 |
-
#: user-role-editor/includes/class-ure-lib.php:206
|
284 |
-
msgid "Capability name (ID): "
|
285 |
-
msgstr "Nom provolegi (ID):"
|
286 |
-
|
287 |
# @ ure
|
288 |
-
#:
|
289 |
msgid "Error: "
|
290 |
msgstr "Error:"
|
291 |
|
292 |
# @ ure
|
293 |
-
#:
|
294 |
msgid "Role"
|
295 |
msgstr "Rol"
|
296 |
|
297 |
# @ ure
|
298 |
-
#:
|
299 |
msgid "does not exist"
|
300 |
msgstr "no existeix"
|
301 |
|
302 |
# @ ure
|
303 |
-
#:
|
304 |
msgid "Role is updated successfully"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#:
|
308 |
msgid "Roles are updated for all network"
|
309 |
msgstr ""
|
310 |
|
311 |
# @ ure
|
312 |
-
#:
|
313 |
msgid "Error occured during role(s) update"
|
314 |
msgstr ""
|
315 |
|
316 |
# @ ure
|
317 |
-
#:
|
318 |
msgid "User capabilities are updated successfully"
|
319 |
msgstr ""
|
320 |
|
321 |
# @ ure
|
322 |
-
#:
|
323 |
msgid "Error occured during user update"
|
324 |
msgstr "Error trobat durant l'actualització del rol"
|
325 |
|
326 |
# @ ure
|
327 |
-
#:
|
328 |
msgid "User Roles are restored to WordPress default values. "
|
329 |
msgstr ""
|
330 |
"Els rols d'usuari es restableixen als valors predeterminats de WordPress."
|
331 |
|
332 |
# @ ure
|
333 |
-
#:
|
334 |
msgid "Help"
|
335 |
msgstr "Ajuda"
|
336 |
|
337 |
# ure
|
338 |
-
#:
|
339 |
msgid "Error is occur. Please check the log file."
|
340 |
msgstr "Ha ocorregut un error. Si us plau revisa l'arxiu de registres."
|
341 |
|
342 |
# @ ure
|
343 |
-
#:
|
344 |
msgid ""
|
345 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
346 |
"only!"
|
347 |
msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
|
348 |
|
|
|
|
|
|
|
|
|
|
|
|
|
349 |
# @ ure
|
350 |
-
#:
|
351 |
#, php-format
|
352 |
msgid "Role %s exists already"
|
353 |
msgstr "Rol %s ja existeix"
|
354 |
|
355 |
# @ ure
|
356 |
-
#:
|
357 |
msgid "Error is encountered during new role create operation"
|
358 |
msgstr "Error trobat durant la creació d'un nou Rol"
|
359 |
|
360 |
# @ ure
|
361 |
-
#:
|
362 |
#, php-format
|
363 |
msgid "Role %s is created successfully"
|
364 |
msgstr "Rol %s s'ha creat correctament"
|
365 |
|
366 |
# @ ure
|
367 |
-
#:
|
368 |
msgid "Error encountered during role delete operation"
|
369 |
msgstr "Error trobat durant l'eliminació del Rol"
|
370 |
|
371 |
# @ ure
|
372 |
-
#:
|
373 |
msgid "Unused roles are deleted successfully"
|
374 |
msgstr ""
|
375 |
|
376 |
# @ ure
|
377 |
-
#:
|
378 |
#, php-format
|
379 |
msgid "Role %s is deleted successfully"
|
380 |
msgstr "Rol %s s'elimina amb èxit"
|
381 |
|
382 |
# @ ure
|
383 |
-
#:
|
384 |
msgid "Error encountered during default role change operation"
|
385 |
msgstr "Error trobat durant el canvi de Rol per defecte"
|
386 |
|
387 |
# @ ure
|
388 |
-
#:
|
389 |
#, php-format
|
390 |
msgid "Default role for new users is set to %s successfully"
|
391 |
msgstr "Rol predeterminat per a nous usuaris està establert en %s amb èxit"
|
392 |
|
393 |
# @ ure
|
394 |
-
#:
|
395 |
msgid "Editor"
|
396 |
msgstr "Editor"
|
397 |
|
398 |
# @ ure
|
399 |
-
#:
|
400 |
msgid "Author"
|
401 |
msgstr "Autor"
|
402 |
|
403 |
# @ ure
|
404 |
-
#:
|
405 |
msgid "Contributor"
|
406 |
msgstr "Col·laborador"
|
407 |
|
408 |
# @ ure
|
409 |
-
#:
|
410 |
msgid "Subscriber"
|
411 |
msgstr "Subscriptor"
|
412 |
|
413 |
# @ ure
|
414 |
-
#:
|
415 |
msgid "Switch themes"
|
416 |
msgstr "Canviar plantilles"
|
417 |
|
418 |
# @ ure
|
419 |
-
#:
|
420 |
msgid "Edit themes"
|
421 |
msgstr "Editar plantilles"
|
422 |
|
423 |
# @ ure
|
424 |
-
#:
|
425 |
msgid "Activate plugins"
|
426 |
msgstr "Activar connectors"
|
427 |
|
428 |
# @ ure
|
429 |
-
#:
|
430 |
msgid "Edit plugins"
|
431 |
msgstr "Editar connectors"
|
432 |
|
433 |
# @ ure
|
434 |
-
#:
|
435 |
msgid "Edit users"
|
436 |
msgstr "Editar usuaris"
|
437 |
|
438 |
# @ ure
|
439 |
-
#:
|
440 |
msgid "Edit files"
|
441 |
msgstr "Editar arxius"
|
442 |
|
443 |
# @ ure
|
444 |
-
#:
|
445 |
msgid "Manage options"
|
446 |
msgstr "Administrar opcions"
|
447 |
|
448 |
# @ ure
|
449 |
-
#:
|
450 |
msgid "Moderate comments"
|
451 |
msgstr "Moderar comentaris"
|
452 |
|
453 |
# @ ure
|
454 |
-
#:
|
455 |
msgid "Manage categories"
|
456 |
msgstr "Administrar categories"
|
457 |
|
458 |
# @ ure
|
459 |
-
#:
|
460 |
msgid "Manage links"
|
461 |
msgstr "Administrar enllaços"
|
462 |
|
463 |
# @ ure
|
464 |
-
#:
|
465 |
msgid "Upload files"
|
466 |
msgstr "Pujar arxius"
|
467 |
|
468 |
# @ ure
|
469 |
-
#:
|
470 |
msgid "Import"
|
471 |
msgstr "Importar"
|
472 |
|
473 |
# @ ure
|
474 |
-
#:
|
475 |
msgid "Unfiltered html"
|
476 |
msgstr "Ometre Filtrat d'HTML"
|
477 |
|
478 |
# @ ure
|
479 |
-
#:
|
480 |
msgid "Edit posts"
|
481 |
msgstr "Editar missatges"
|
482 |
|
483 |
# @ ure
|
484 |
-
#:
|
485 |
msgid "Edit others posts"
|
486 |
msgstr "Editar missatges de altres"
|
487 |
|
488 |
# @ ure
|
489 |
-
#:
|
490 |
msgid "Edit published posts"
|
491 |
msgstr "Editar els missatges publicats"
|
492 |
|
493 |
# @ ure
|
494 |
-
#:
|
495 |
msgid "Publish posts"
|
496 |
msgstr "Publicar missatges"
|
497 |
|
498 |
# @ ure
|
499 |
-
#:
|
500 |
msgid "Edit pages"
|
501 |
msgstr "Editar pàgines"
|
502 |
|
503 |
# @ ure
|
504 |
-
#:
|
505 |
msgid "Read"
|
506 |
msgstr "Llegir"
|
507 |
|
508 |
# @ ure
|
509 |
-
#:
|
510 |
msgid "Level 10"
|
511 |
msgstr "Nivell 10"
|
512 |
|
513 |
# @ ure
|
514 |
-
#:
|
515 |
msgid "Level 9"
|
516 |
msgstr "Nivell 9"
|
517 |
|
518 |
# @ ure
|
519 |
-
#:
|
520 |
msgid "Level 8"
|
521 |
msgstr "Nivell 8"
|
522 |
|
523 |
# @ ure
|
524 |
-
#:
|
525 |
msgid "Level 7"
|
526 |
msgstr "Nivell 7"
|
527 |
|
528 |
# @ ure
|
529 |
-
#:
|
530 |
msgid "Level 6"
|
531 |
msgstr "Nivell 6"
|
532 |
|
533 |
# @ ure
|
534 |
-
#:
|
535 |
msgid "Level 5"
|
536 |
msgstr "Nivell 5"
|
537 |
|
538 |
# @ ure
|
539 |
-
#:
|
540 |
msgid "Level 4"
|
541 |
msgstr "Nivell 4"
|
542 |
|
543 |
# @ ure
|
544 |
-
#:
|
545 |
msgid "Level 3"
|
546 |
msgstr "Nivell 3"
|
547 |
|
548 |
# @ ure
|
549 |
-
#:
|
550 |
msgid "Level 2"
|
551 |
msgstr "Nivell 2"
|
552 |
|
553 |
# @ ure
|
554 |
-
#:
|
555 |
msgid "Level 1"
|
556 |
msgstr "Nivell 1"
|
557 |
|
558 |
# @ ure
|
559 |
-
#:
|
560 |
msgid "Level 0"
|
561 |
msgstr "Nivell 0"
|
562 |
|
563 |
# @ ure
|
564 |
-
#:
|
565 |
msgid "Edit others pages"
|
566 |
msgstr "Editar pàgines de altres"
|
567 |
|
568 |
# @ ure
|
569 |
-
#:
|
570 |
msgid "Edit published pages"
|
571 |
msgstr "Editar pàgines publicades"
|
572 |
|
573 |
# @ ure
|
574 |
-
#:
|
575 |
msgid "Publish pages"
|
576 |
msgstr "Publicar pàgines"
|
577 |
|
578 |
# @ ure
|
579 |
-
#:
|
580 |
msgid "Delete pages"
|
581 |
msgstr "Eliminar pàgines"
|
582 |
|
583 |
# ure
|
584 |
-
#:
|
585 |
msgid "Delete others pages"
|
586 |
msgstr "Eliminar pàgines de altres"
|
587 |
|
588 |
# @ ure
|
589 |
-
#:
|
590 |
msgid "Delete published pages"
|
591 |
msgstr "Eliminar pàgines publicades"
|
592 |
|
593 |
# ure
|
594 |
-
#:
|
595 |
msgid "Delete posts"
|
596 |
msgstr "Eliminar missatges"
|
597 |
|
598 |
# @ ure
|
599 |
-
#:
|
600 |
msgid "Delete others posts"
|
601 |
msgstr "Eliminar missatges de altres"
|
602 |
|
603 |
# ure
|
604 |
-
#:
|
605 |
msgid "Delete published posts"
|
606 |
msgstr "Eliminar missatges publicats"
|
607 |
|
608 |
# ure
|
609 |
-
#:
|
610 |
msgid "Delete private posts"
|
611 |
msgstr "Eliminar missatges privats"
|
612 |
|
613 |
# @ ure
|
614 |
-
#:
|
615 |
msgid "Edit private posts"
|
616 |
msgstr "Editar missatges privats"
|
617 |
|
618 |
# @ ure
|
619 |
-
#:
|
620 |
msgid "Read private posts"
|
621 |
msgstr "Llegir missatges privats"
|
622 |
|
623 |
# @ ure
|
624 |
-
#:
|
625 |
msgid "Delete private pages"
|
626 |
msgstr "Eliminar pàgines privades"
|
627 |
|
628 |
# @ ure
|
629 |
-
#:
|
630 |
msgid "Edit private pages"
|
631 |
msgstr "Editar pàgines privades"
|
632 |
|
633 |
# @ ure
|
634 |
-
#:
|
635 |
msgid "Read private pages"
|
636 |
msgstr "Llegir pàgines privades"
|
637 |
|
638 |
# @ ure
|
639 |
-
#:
|
640 |
msgid "Delete users"
|
641 |
msgstr "Eliminar usuaris"
|
642 |
|
643 |
# @ ure
|
644 |
-
#:
|
645 |
msgid "Create users"
|
646 |
msgstr "Crear usuaris"
|
647 |
|
648 |
# @ ure
|
649 |
-
#:
|
650 |
msgid "Unfiltered upload"
|
651 |
msgstr "Sense filtre de càrrega"
|
652 |
|
653 |
# @ ure
|
654 |
-
#:
|
655 |
msgid "Edit dashboard"
|
656 |
msgstr "Editar taulell"
|
657 |
|
658 |
# @ ure
|
659 |
-
#:
|
660 |
msgid "Update plugins"
|
661 |
msgstr "Actualitzar connectors"
|
662 |
|
663 |
# @ ure
|
664 |
-
#:
|
665 |
msgid "Delete plugins"
|
666 |
msgstr "Eliminar connectors"
|
667 |
|
668 |
# @ ure
|
669 |
-
#:
|
670 |
msgid "Install plugins"
|
671 |
msgstr "Instal·lar connectors"
|
672 |
|
673 |
# @ ure
|
674 |
-
#:
|
675 |
msgid "Update themes"
|
676 |
msgstr "Actualitzar plantilles"
|
677 |
|
678 |
# @ ure
|
679 |
-
#:
|
680 |
msgid "Install themes"
|
681 |
msgstr "Instal·lar plantilles"
|
682 |
|
683 |
# @ ure
|
684 |
-
#:
|
685 |
msgid "Update core"
|
686 |
msgstr "Actualitzar nucli"
|
687 |
|
688 |
# @ ure
|
689 |
-
#:
|
690 |
msgid "List users"
|
691 |
msgstr "Llistar usuaris"
|
692 |
|
693 |
# @ ure
|
694 |
-
#:
|
695 |
msgid "Remove users"
|
696 |
msgstr "Eliminar usuaris"
|
697 |
|
698 |
# @ ure
|
699 |
-
#:
|
700 |
msgid "Add users"
|
701 |
msgstr "Afegir usuaris"
|
702 |
|
703 |
# @ ure
|
704 |
-
#:
|
705 |
msgid "Promote users"
|
706 |
msgstr "Promoure usuaris"
|
707 |
|
708 |
# @ ure
|
709 |
-
#:
|
710 |
msgid "Edit theme options"
|
711 |
msgstr "Editar opcions de plantilla"
|
712 |
|
713 |
# @ ure
|
714 |
-
#:
|
715 |
msgid "Delete themes"
|
716 |
msgstr "Eliminar plantilles"
|
717 |
|
718 |
# @ ure
|
719 |
-
#:
|
720 |
msgid "Export"
|
721 |
msgstr "Exportar"
|
722 |
|
723 |
# @ ure
|
724 |
-
#:
|
725 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
726 |
msgstr ""
|
727 |
"Error: el nom del Privilegi només ha de contenir caràcters llatins i dígits."
|
728 |
|
729 |
# @ ure
|
730 |
-
#:
|
731 |
#, php-format
|
732 |
msgid "Capability %s is added successfully"
|
733 |
msgstr "Privilegi %s s'ha afegit correctament"
|
734 |
|
735 |
# @ ure
|
736 |
-
#:
|
737 |
#, php-format
|
738 |
msgid "Capability %s exists already"
|
739 |
msgstr "Ja existeix el privilegi %s"
|
740 |
|
741 |
# @ ure
|
742 |
-
#:
|
743 |
#, php-format
|
744 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
745 |
msgstr "¡Error! No tens permisos per esborrar aquest privilegi: %s !"
|
746 |
|
747 |
# @ ure
|
748 |
-
#:
|
749 |
#, php-format
|
750 |
msgid "Capability %s is removed successfully"
|
751 |
msgstr "El privilegi %s s'ha eliminat amb èxit"
|
752 |
|
753 |
# @ ure
|
754 |
-
#:
|
755 |
-
msgid "About this Plugin:"
|
756 |
-
msgstr "Sobre aquest connector:"
|
757 |
-
|
758 |
-
# @ ure
|
759 |
-
#: user-role-editor/includes/class-ure-lib.php:2087
|
760 |
msgid "Author's website"
|
761 |
msgstr "Lloc web del autor"
|
762 |
|
763 |
# @ ure
|
764 |
-
#:
|
765 |
msgid "Plugin webpage"
|
766 |
msgstr "Pàgina web del connector"
|
767 |
|
768 |
# @ ure
|
769 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
770 |
msgid "FAQ"
|
771 |
msgstr "FAQ"
|
772 |
|
773 |
# @ ure
|
774 |
-
#:
|
775 |
msgid "None"
|
776 |
msgstr "Cap"
|
777 |
|
778 |
# @ ure
|
779 |
-
#:
|
780 |
msgid "Delete All Unused Roles"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#:
|
784 |
msgid "— No role for this site —"
|
785 |
msgstr ""
|
786 |
|
|
|
|
|
|
|
|
|
787 |
# @ ure
|
788 |
-
#:
|
789 |
msgid "Change capabilities for user"
|
790 |
msgstr "Canviar privilegis d'usuari"
|
791 |
|
792 |
-
#:
|
793 |
-
msgid "
|
794 |
-
msgstr "
|
795 |
|
796 |
-
#:
|
797 |
-
msgid "
|
798 |
-
|
|
|
|
|
|
|
799 |
|
800 |
# @ ure
|
801 |
-
#:
|
802 |
-
|
803 |
-
|
|
|
804 |
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
#~ "tots els canvis realitzats per vostè o per connectors es perdran. Alguns "
|
812 |
-
#~ "connectors, per exemple, S2Member, WooCommerce, podrian necessitar una "
|
813 |
-
#~ "reactivació. Continuar?"
|
814 |
|
815 |
# @ ure
|
816 |
-
|
817 |
-
|
818 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v. 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-06 12:21+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
19 |
"X-Generator: Poedit 1.5.4\n"
|
20 |
"X-Poedit-SearchPath-0: user-role-editor\n"
|
21 |
|
22 |
+
#: ../includes/settings-template.php:80 ../includes/settings-template.php:111
|
23 |
+
#: ../includes/settings-template.php:140
|
24 |
msgid "Save"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: ../includes/settings-template.php:104
|
28 |
+
msgid ""
|
29 |
+
"Note for multisite environment: take into account that other default roles "
|
30 |
+
"should exist at the site, in order to be assigned to the new registered "
|
31 |
+
"users."
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: ../includes/class-user-role-editor.php:185
|
35 |
+
msgid "Change role for users without role"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: ../includes/class-user-role-editor.php:186
|
39 |
+
msgid "No rights"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: ../includes/class-user-role-editor.php:187
|
43 |
+
msgid "Provide new role"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
# @ ure
|
47 |
+
#: ../includes/class-user-role-editor.php:271
|
48 |
+
#: ../includes/class-user-role-editor.php:273
|
49 |
msgid "You do not have permission to edit this user."
|
50 |
msgstr ""
|
51 |
|
52 |
# @ ure
|
53 |
+
#: ../includes/class-user-role-editor.php:414
|
54 |
msgid "Capabilities"
|
55 |
msgstr "Capacitats"
|
56 |
|
57 |
# @ ure
|
58 |
+
#: ../includes/class-user-role-editor.php:507
|
59 |
msgid "Settings"
|
60 |
msgstr "Opcions"
|
61 |
|
62 |
# @ ure
|
63 |
+
#: ../includes/class-user-role-editor.php:520
|
64 |
+
#: ../includes/class-ure-lib.php:2235
|
65 |
msgid "Changelog"
|
66 |
msgstr "Registre de canvis"
|
67 |
|
68 |
+
#: ../includes/class-user-role-editor.php:542
|
69 |
msgid "Overview"
|
70 |
msgstr ""
|
71 |
|
72 |
+
# @ ure
|
73 |
+
# @ default
|
74 |
+
#: ../includes/class-user-role-editor.php:551
|
75 |
+
#: ../includes/class-user-role-editor.php:579
|
76 |
+
#: ../includes/class-user-role-editor.php:873
|
77 |
+
#: ../includes/class-ure-lib.php:225
|
78 |
+
msgid "User Role Editor"
|
79 |
+
msgstr "User Role Editor"
|
80 |
|
81 |
# @ ure
|
82 |
# @ default
|
83 |
+
#: ../includes/class-user-role-editor.php:639
|
84 |
+
#: ../includes/class-user-role-editor.php:684
|
85 |
msgid "User Role Editor options are updated"
|
86 |
msgstr ""
|
87 |
|
88 |
+
# @ ure
|
89 |
+
#: ../includes/class-user-role-editor.php:668
|
90 |
+
#, fuzzy
|
91 |
+
msgid "Default Roles are updated"
|
92 |
+
msgstr "Rol predeterminat"
|
93 |
+
|
94 |
+
#: ../includes/class-user-role-editor.php:692
|
95 |
+
msgid ""
|
96 |
+
"You do not have sufficient permissions to manage options for User Role "
|
97 |
+
"Editor."
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: ../includes/class-user-role-editor.php:764
|
101 |
msgid "Insufficient permissions to work with User Role Editor"
|
102 |
msgstr ""
|
103 |
|
104 |
# @ ure
|
105 |
+
#: ../includes/class-user-role-editor.php:818
|
106 |
msgid "Select All"
|
107 |
msgstr "Seleccionar-ho tot"
|
108 |
|
109 |
+
#: ../includes/class-user-role-editor.php:819
|
110 |
msgid "Unselect All"
|
111 |
msgstr "De-selecciona-ho tot"
|
112 |
|
113 |
+
#: ../includes/class-user-role-editor.php:820
|
114 |
msgid "Reverse"
|
115 |
msgstr "Invertir"
|
116 |
|
117 |
# @ ure
|
118 |
+
#: ../includes/class-user-role-editor.php:821
|
119 |
msgid "Update"
|
120 |
msgstr "Actualitzar"
|
121 |
|
122 |
# @ ure
|
123 |
+
#: ../includes/class-user-role-editor.php:822
|
124 |
msgid "Please confirm permissions update"
|
125 |
msgstr "Si us plau confirmeu l'actualització de permisos "
|
126 |
|
127 |
# @ ure
|
128 |
+
#: ../includes/class-user-role-editor.php:823
|
129 |
msgid "Add New Role"
|
130 |
msgstr "Afegir nou Rol"
|
131 |
|
132 |
# @ ure
|
133 |
+
#: ../includes/class-user-role-editor.php:824
|
134 |
msgid " Role name (ID) can not be empty!"
|
135 |
msgstr "El nom de rol (ID) no pot estar buit!"
|
136 |
|
137 |
# @ ure
|
138 |
+
#: ../includes/class-user-role-editor.php:825
|
139 |
msgid ""
|
140 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
141 |
"only!"
|
142 |
msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
|
143 |
|
144 |
+
#: ../includes/class-user-role-editor.php:826
|
145 |
+
msgid ""
|
146 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
147 |
+
"it."
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
# @ ure
|
151 |
+
#: ../includes/class-user-role-editor.php:827
|
152 |
msgid "Add Role"
|
153 |
msgstr "Afegir nou Rol"
|
154 |
|
155 |
# @ ure
|
156 |
+
#: ../includes/class-user-role-editor.php:828
|
157 |
msgid "Delete Role"
|
158 |
msgstr "Eliminar Rol"
|
159 |
|
160 |
# @ ure
|
161 |
+
#: ../includes/class-user-role-editor.php:829
|
162 |
msgid "Cancel"
|
163 |
msgstr "Cancel·lar"
|
164 |
|
165 |
# @ ure
|
166 |
+
#: ../includes/class-user-role-editor.php:830
|
167 |
msgid "Add Capability"
|
168 |
msgstr "Afegir nou privilegi"
|
169 |
|
170 |
# @ ure
|
171 |
+
#: ../includes/class-user-role-editor.php:831
|
172 |
+
#: ../includes/class-user-role-editor.php:840
|
173 |
msgid "Delete Capability"
|
174 |
msgstr "Eliminar privilegi"
|
175 |
|
176 |
# @ ure
|
177 |
+
#: ../includes/class-user-role-editor.php:832
|
178 |
msgid "Reset"
|
179 |
msgstr "Reiniciar"
|
180 |
|
181 |
+
#: ../includes/class-user-role-editor.php:833
|
182 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: ../includes/class-user-role-editor.php:834
|
186 |
msgid ""
|
187 |
"If any plugins have changed capabilities in any way upon installation (such "
|
188 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: ../includes/class-user-role-editor.php:835
|
192 |
msgid ""
|
193 |
"For more information on how to undo changes and restore plugin capabilities "
|
194 |
"go to"
|
195 |
msgstr ""
|
196 |
|
197 |
# @ ure
|
198 |
+
#: ../includes/class-user-role-editor.php:837
|
199 |
msgid "Continue?"
|
200 |
msgstr ""
|
201 |
|
202 |
# @ ure
|
203 |
+
#: ../includes/class-user-role-editor.php:838
|
204 |
msgid "Default Role"
|
205 |
msgstr "Rol predeterminat"
|
206 |
|
207 |
# @ ure
|
208 |
+
#: ../includes/class-user-role-editor.php:839
|
209 |
msgid "Set New Default Role"
|
210 |
msgstr "Assignar com a rol predeterminat"
|
211 |
|
212 |
# @ ure
|
213 |
+
#: ../includes/class-user-role-editor.php:841
|
214 |
msgid ""
|
215 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
216 |
"or other custom code"
|
219 |
"algun connector o algun altre codi personalitzat."
|
220 |
|
221 |
# @ ure
|
222 |
+
#: ../includes/class-user-role-editor.php:842
|
223 |
msgid " Capability name (ID) can not be empty!"
|
224 |
msgstr "El nom de priviliegi (ID) no pot estar buit!"
|
225 |
|
226 |
# @ ure
|
227 |
+
#: ../includes/class-user-role-editor.php:843
|
228 |
msgid ""
|
229 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
230 |
"underscore only!"
|
233 |
"dígits."
|
234 |
|
235 |
# @ ure
|
236 |
+
#: ../includes/class-user-role-editor.php:876
|
237 |
+
#: ../includes/class-user-role-editor.php:905
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
msgid "Other Roles"
|
239 |
msgstr "Altres rols"
|
240 |
|
241 |
# @ ure
|
242 |
+
#: ../includes/class-user-role-editor.php:887
|
243 |
msgid "Edit"
|
244 |
msgstr "Editar"
|
245 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
# @ default
|
247 |
+
#: ../includes/ure-role-edit.php:44
|
248 |
msgid "If checked, then apply action to ALL sites of this Network"
|
249 |
msgstr "Si està marcat s'aplica l'acció a TOTS els llocs d'aquesta xarxa"
|
250 |
|
251 |
+
#: ../includes/class-ure-lib.php:143
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
252 |
msgid "Error: wrong request"
|
253 |
msgstr ""
|
254 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
# @ ure
|
256 |
+
#: ../includes/class-ure-lib.php:322
|
257 |
msgid "Error: "
|
258 |
msgstr "Error:"
|
259 |
|
260 |
# @ ure
|
261 |
+
#: ../includes/class-ure-lib.php:322
|
262 |
msgid "Role"
|
263 |
msgstr "Rol"
|
264 |
|
265 |
# @ ure
|
266 |
+
#: ../includes/class-ure-lib.php:323
|
267 |
msgid "does not exist"
|
268 |
msgstr "no existeix"
|
269 |
|
270 |
# @ ure
|
271 |
+
#: ../includes/class-ure-lib.php:366
|
272 |
msgid "Role is updated successfully"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: ../includes/class-ure-lib.php:368
|
276 |
msgid "Roles are updated for all network"
|
277 |
msgstr ""
|
278 |
|
279 |
# @ ure
|
280 |
+
#: ../includes/class-ure-lib.php:374
|
281 |
msgid "Error occured during role(s) update"
|
282 |
msgstr ""
|
283 |
|
284 |
# @ ure
|
285 |
+
#: ../includes/class-ure-lib.php:381
|
286 |
msgid "User capabilities are updated successfully"
|
287 |
msgstr ""
|
288 |
|
289 |
# @ ure
|
290 |
+
#: ../includes/class-ure-lib.php:386
|
291 |
msgid "Error occured during user update"
|
292 |
msgstr "Error trobat durant l'actualització del rol"
|
293 |
|
294 |
# @ ure
|
295 |
+
#: ../includes/class-ure-lib.php:441
|
296 |
msgid "User Roles are restored to WordPress default values. "
|
297 |
msgstr ""
|
298 |
"Els rols d'usuari es restableixen als valors predeterminats de WordPress."
|
299 |
|
300 |
# @ ure
|
301 |
+
#: ../includes/class-ure-lib.php:1340
|
302 |
msgid "Help"
|
303 |
msgstr "Ajuda"
|
304 |
|
305 |
# ure
|
306 |
+
#: ../includes/class-ure-lib.php:1690
|
307 |
msgid "Error is occur. Please check the log file."
|
308 |
msgstr "Ha ocorregut un error. Si us plau revisa l'arxiu de registres."
|
309 |
|
310 |
# @ ure
|
311 |
+
#: ../includes/class-ure-lib.php:1733
|
312 |
msgid ""
|
313 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
314 |
"only!"
|
315 |
msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
|
316 |
|
317 |
+
#: ../includes/class-ure-lib.php:1737
|
318 |
+
msgid ""
|
319 |
+
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
320 |
+
"characters to it."
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
# @ ure
|
324 |
+
#: ../includes/class-ure-lib.php:1752
|
325 |
#, php-format
|
326 |
msgid "Role %s exists already"
|
327 |
msgstr "Rol %s ja existeix"
|
328 |
|
329 |
# @ ure
|
330 |
+
#: ../includes/class-ure-lib.php:1767
|
331 |
msgid "Error is encountered during new role create operation"
|
332 |
msgstr "Error trobat durant la creació d'un nou Rol"
|
333 |
|
334 |
# @ ure
|
335 |
+
#: ../includes/class-ure-lib.php:1769
|
336 |
#, php-format
|
337 |
msgid "Role %s is created successfully"
|
338 |
msgstr "Rol %s s'ha creat correctament"
|
339 |
|
340 |
# @ ure
|
341 |
+
#: ../includes/class-ure-lib.php:1838
|
342 |
msgid "Error encountered during role delete operation"
|
343 |
msgstr "Error trobat durant l'eliminació del Rol"
|
344 |
|
345 |
# @ ure
|
346 |
+
#: ../includes/class-ure-lib.php:1840
|
347 |
msgid "Unused roles are deleted successfully"
|
348 |
msgstr ""
|
349 |
|
350 |
# @ ure
|
351 |
+
#: ../includes/class-ure-lib.php:1842
|
352 |
#, php-format
|
353 |
msgid "Role %s is deleted successfully"
|
354 |
msgstr "Rol %s s'elimina amb èxit"
|
355 |
|
356 |
# @ ure
|
357 |
+
#: ../includes/class-ure-lib.php:1867
|
358 |
msgid "Error encountered during default role change operation"
|
359 |
msgstr "Error trobat durant el canvi de Rol per defecte"
|
360 |
|
361 |
# @ ure
|
362 |
+
#: ../includes/class-ure-lib.php:1873
|
363 |
#, php-format
|
364 |
msgid "Default role for new users is set to %s successfully"
|
365 |
msgstr "Rol predeterminat per a nous usuaris està establert en %s amb èxit"
|
366 |
|
367 |
# @ ure
|
368 |
+
#: ../includes/class-ure-lib.php:1892
|
369 |
msgid "Editor"
|
370 |
msgstr "Editor"
|
371 |
|
372 |
# @ ure
|
373 |
+
#: ../includes/class-ure-lib.php:1893
|
374 |
msgid "Author"
|
375 |
msgstr "Autor"
|
376 |
|
377 |
# @ ure
|
378 |
+
#: ../includes/class-ure-lib.php:1894
|
379 |
msgid "Contributor"
|
380 |
msgstr "Col·laborador"
|
381 |
|
382 |
# @ ure
|
383 |
+
#: ../includes/class-ure-lib.php:1895
|
384 |
msgid "Subscriber"
|
385 |
msgstr "Subscriptor"
|
386 |
|
387 |
# @ ure
|
388 |
+
#: ../includes/class-ure-lib.php:1897
|
389 |
msgid "Switch themes"
|
390 |
msgstr "Canviar plantilles"
|
391 |
|
392 |
# @ ure
|
393 |
+
#: ../includes/class-ure-lib.php:1898
|
394 |
msgid "Edit themes"
|
395 |
msgstr "Editar plantilles"
|
396 |
|
397 |
# @ ure
|
398 |
+
#: ../includes/class-ure-lib.php:1899
|
399 |
msgid "Activate plugins"
|
400 |
msgstr "Activar connectors"
|
401 |
|
402 |
# @ ure
|
403 |
+
#: ../includes/class-ure-lib.php:1900
|
404 |
msgid "Edit plugins"
|
405 |
msgstr "Editar connectors"
|
406 |
|
407 |
# @ ure
|
408 |
+
#: ../includes/class-ure-lib.php:1901
|
409 |
msgid "Edit users"
|
410 |
msgstr "Editar usuaris"
|
411 |
|
412 |
# @ ure
|
413 |
+
#: ../includes/class-ure-lib.php:1902
|
414 |
msgid "Edit files"
|
415 |
msgstr "Editar arxius"
|
416 |
|
417 |
# @ ure
|
418 |
+
#: ../includes/class-ure-lib.php:1903
|
419 |
msgid "Manage options"
|
420 |
msgstr "Administrar opcions"
|
421 |
|
422 |
# @ ure
|
423 |
+
#: ../includes/class-ure-lib.php:1904
|
424 |
msgid "Moderate comments"
|
425 |
msgstr "Moderar comentaris"
|
426 |
|
427 |
# @ ure
|
428 |
+
#: ../includes/class-ure-lib.php:1905
|
429 |
msgid "Manage categories"
|
430 |
msgstr "Administrar categories"
|
431 |
|
432 |
# @ ure
|
433 |
+
#: ../includes/class-ure-lib.php:1906
|
434 |
msgid "Manage links"
|
435 |
msgstr "Administrar enllaços"
|
436 |
|
437 |
# @ ure
|
438 |
+
#: ../includes/class-ure-lib.php:1907
|
439 |
msgid "Upload files"
|
440 |
msgstr "Pujar arxius"
|
441 |
|
442 |
# @ ure
|
443 |
+
#: ../includes/class-ure-lib.php:1908
|
444 |
msgid "Import"
|
445 |
msgstr "Importar"
|
446 |
|
447 |
# @ ure
|
448 |
+
#: ../includes/class-ure-lib.php:1909
|
449 |
msgid "Unfiltered html"
|
450 |
msgstr "Ometre Filtrat d'HTML"
|
451 |
|
452 |
# @ ure
|
453 |
+
#: ../includes/class-ure-lib.php:1910
|
454 |
msgid "Edit posts"
|
455 |
msgstr "Editar missatges"
|
456 |
|
457 |
# @ ure
|
458 |
+
#: ../includes/class-ure-lib.php:1911
|
459 |
msgid "Edit others posts"
|
460 |
msgstr "Editar missatges de altres"
|
461 |
|
462 |
# @ ure
|
463 |
+
#: ../includes/class-ure-lib.php:1912
|
464 |
msgid "Edit published posts"
|
465 |
msgstr "Editar els missatges publicats"
|
466 |
|
467 |
# @ ure
|
468 |
+
#: ../includes/class-ure-lib.php:1913
|
469 |
msgid "Publish posts"
|
470 |
msgstr "Publicar missatges"
|
471 |
|
472 |
# @ ure
|
473 |
+
#: ../includes/class-ure-lib.php:1914
|
474 |
msgid "Edit pages"
|
475 |
msgstr "Editar pàgines"
|
476 |
|
477 |
# @ ure
|
478 |
+
#: ../includes/class-ure-lib.php:1915
|
479 |
msgid "Read"
|
480 |
msgstr "Llegir"
|
481 |
|
482 |
# @ ure
|
483 |
+
#: ../includes/class-ure-lib.php:1916
|
484 |
msgid "Level 10"
|
485 |
msgstr "Nivell 10"
|
486 |
|
487 |
# @ ure
|
488 |
+
#: ../includes/class-ure-lib.php:1917
|
489 |
msgid "Level 9"
|
490 |
msgstr "Nivell 9"
|
491 |
|
492 |
# @ ure
|
493 |
+
#: ../includes/class-ure-lib.php:1918
|
494 |
msgid "Level 8"
|
495 |
msgstr "Nivell 8"
|
496 |
|
497 |
# @ ure
|
498 |
+
#: ../includes/class-ure-lib.php:1919
|
499 |
msgid "Level 7"
|
500 |
msgstr "Nivell 7"
|
501 |
|
502 |
# @ ure
|
503 |
+
#: ../includes/class-ure-lib.php:1920
|
504 |
msgid "Level 6"
|
505 |
msgstr "Nivell 6"
|
506 |
|
507 |
# @ ure
|
508 |
+
#: ../includes/class-ure-lib.php:1921
|
509 |
msgid "Level 5"
|
510 |
msgstr "Nivell 5"
|
511 |
|
512 |
# @ ure
|
513 |
+
#: ../includes/class-ure-lib.php:1922
|
514 |
msgid "Level 4"
|
515 |
msgstr "Nivell 4"
|
516 |
|
517 |
# @ ure
|
518 |
+
#: ../includes/class-ure-lib.php:1923
|
519 |
msgid "Level 3"
|
520 |
msgstr "Nivell 3"
|
521 |
|
522 |
# @ ure
|
523 |
+
#: ../includes/class-ure-lib.php:1924
|
524 |
msgid "Level 2"
|
525 |
msgstr "Nivell 2"
|
526 |
|
527 |
# @ ure
|
528 |
+
#: ../includes/class-ure-lib.php:1925
|
529 |
msgid "Level 1"
|
530 |
msgstr "Nivell 1"
|
531 |
|
532 |
# @ ure
|
533 |
+
#: ../includes/class-ure-lib.php:1926
|
534 |
msgid "Level 0"
|
535 |
msgstr "Nivell 0"
|
536 |
|
537 |
# @ ure
|
538 |
+
#: ../includes/class-ure-lib.php:1927
|
539 |
msgid "Edit others pages"
|
540 |
msgstr "Editar pàgines de altres"
|
541 |
|
542 |
# @ ure
|
543 |
+
#: ../includes/class-ure-lib.php:1928
|
544 |
msgid "Edit published pages"
|
545 |
msgstr "Editar pàgines publicades"
|
546 |
|
547 |
# @ ure
|
548 |
+
#: ../includes/class-ure-lib.php:1929
|
549 |
msgid "Publish pages"
|
550 |
msgstr "Publicar pàgines"
|
551 |
|
552 |
# @ ure
|
553 |
+
#: ../includes/class-ure-lib.php:1930
|
554 |
msgid "Delete pages"
|
555 |
msgstr "Eliminar pàgines"
|
556 |
|
557 |
# ure
|
558 |
+
#: ../includes/class-ure-lib.php:1931
|
559 |
msgid "Delete others pages"
|
560 |
msgstr "Eliminar pàgines de altres"
|
561 |
|
562 |
# @ ure
|
563 |
+
#: ../includes/class-ure-lib.php:1932
|
564 |
msgid "Delete published pages"
|
565 |
msgstr "Eliminar pàgines publicades"
|
566 |
|
567 |
# ure
|
568 |
+
#: ../includes/class-ure-lib.php:1933
|
569 |
msgid "Delete posts"
|
570 |
msgstr "Eliminar missatges"
|
571 |
|
572 |
# @ ure
|
573 |
+
#: ../includes/class-ure-lib.php:1934
|
574 |
msgid "Delete others posts"
|
575 |
msgstr "Eliminar missatges de altres"
|
576 |
|
577 |
# ure
|
578 |
+
#: ../includes/class-ure-lib.php:1935
|
579 |
msgid "Delete published posts"
|
580 |
msgstr "Eliminar missatges publicats"
|
581 |
|
582 |
# ure
|
583 |
+
#: ../includes/class-ure-lib.php:1936
|
584 |
msgid "Delete private posts"
|
585 |
msgstr "Eliminar missatges privats"
|
586 |
|
587 |
# @ ure
|
588 |
+
#: ../includes/class-ure-lib.php:1937
|
589 |
msgid "Edit private posts"
|
590 |
msgstr "Editar missatges privats"
|
591 |
|
592 |
# @ ure
|
593 |
+
#: ../includes/class-ure-lib.php:1938
|
594 |
msgid "Read private posts"
|
595 |
msgstr "Llegir missatges privats"
|
596 |
|
597 |
# @ ure
|
598 |
+
#: ../includes/class-ure-lib.php:1939
|
599 |
msgid "Delete private pages"
|
600 |
msgstr "Eliminar pàgines privades"
|
601 |
|
602 |
# @ ure
|
603 |
+
#: ../includes/class-ure-lib.php:1940
|
604 |
msgid "Edit private pages"
|
605 |
msgstr "Editar pàgines privades"
|
606 |
|
607 |
# @ ure
|
608 |
+
#: ../includes/class-ure-lib.php:1941
|
609 |
msgid "Read private pages"
|
610 |
msgstr "Llegir pàgines privades"
|
611 |
|
612 |
# @ ure
|
613 |
+
#: ../includes/class-ure-lib.php:1942
|
614 |
msgid "Delete users"
|
615 |
msgstr "Eliminar usuaris"
|
616 |
|
617 |
# @ ure
|
618 |
+
#: ../includes/class-ure-lib.php:1943
|
619 |
msgid "Create users"
|
620 |
msgstr "Crear usuaris"
|
621 |
|
622 |
# @ ure
|
623 |
+
#: ../includes/class-ure-lib.php:1944
|
624 |
msgid "Unfiltered upload"
|
625 |
msgstr "Sense filtre de càrrega"
|
626 |
|
627 |
# @ ure
|
628 |
+
#: ../includes/class-ure-lib.php:1945
|
629 |
msgid "Edit dashboard"
|
630 |
msgstr "Editar taulell"
|
631 |
|
632 |
# @ ure
|
633 |
+
#: ../includes/class-ure-lib.php:1946
|
634 |
msgid "Update plugins"
|
635 |
msgstr "Actualitzar connectors"
|
636 |
|
637 |
# @ ure
|
638 |
+
#: ../includes/class-ure-lib.php:1947
|
639 |
msgid "Delete plugins"
|
640 |
msgstr "Eliminar connectors"
|
641 |
|
642 |
# @ ure
|
643 |
+
#: ../includes/class-ure-lib.php:1948
|
644 |
msgid "Install plugins"
|
645 |
msgstr "Instal·lar connectors"
|
646 |
|
647 |
# @ ure
|
648 |
+
#: ../includes/class-ure-lib.php:1949
|
649 |
msgid "Update themes"
|
650 |
msgstr "Actualitzar plantilles"
|
651 |
|
652 |
# @ ure
|
653 |
+
#: ../includes/class-ure-lib.php:1950
|
654 |
msgid "Install themes"
|
655 |
msgstr "Instal·lar plantilles"
|
656 |
|
657 |
# @ ure
|
658 |
+
#: ../includes/class-ure-lib.php:1951
|
659 |
msgid "Update core"
|
660 |
msgstr "Actualitzar nucli"
|
661 |
|
662 |
# @ ure
|
663 |
+
#: ../includes/class-ure-lib.php:1952
|
664 |
msgid "List users"
|
665 |
msgstr "Llistar usuaris"
|
666 |
|
667 |
# @ ure
|
668 |
+
#: ../includes/class-ure-lib.php:1953
|
669 |
msgid "Remove users"
|
670 |
msgstr "Eliminar usuaris"
|
671 |
|
672 |
# @ ure
|
673 |
+
#: ../includes/class-ure-lib.php:1954
|
674 |
msgid "Add users"
|
675 |
msgstr "Afegir usuaris"
|
676 |
|
677 |
# @ ure
|
678 |
+
#: ../includes/class-ure-lib.php:1955
|
679 |
msgid "Promote users"
|
680 |
msgstr "Promoure usuaris"
|
681 |
|
682 |
# @ ure
|
683 |
+
#: ../includes/class-ure-lib.php:1956
|
684 |
msgid "Edit theme options"
|
685 |
msgstr "Editar opcions de plantilla"
|
686 |
|
687 |
# @ ure
|
688 |
+
#: ../includes/class-ure-lib.php:1957
|
689 |
msgid "Delete themes"
|
690 |
msgstr "Eliminar plantilles"
|
691 |
|
692 |
# @ ure
|
693 |
+
#: ../includes/class-ure-lib.php:1958
|
694 |
msgid "Export"
|
695 |
msgstr "Exportar"
|
696 |
|
697 |
# @ ure
|
698 |
+
#: ../includes/class-ure-lib.php:2068
|
699 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
700 |
msgstr ""
|
701 |
"Error: el nom del Privilegi només ha de contenir caràcters llatins i dígits."
|
702 |
|
703 |
# @ ure
|
704 |
+
#: ../includes/class-ure-lib.php:2081
|
705 |
#, php-format
|
706 |
msgid "Capability %s is added successfully"
|
707 |
msgstr "Privilegi %s s'ha afegit correctament"
|
708 |
|
709 |
# @ ure
|
710 |
+
#: ../includes/class-ure-lib.php:2083
|
711 |
#, php-format
|
712 |
msgid "Capability %s exists already"
|
713 |
msgstr "Ja existeix el privilegi %s"
|
714 |
|
715 |
# @ ure
|
716 |
+
#: ../includes/class-ure-lib.php:2108
|
717 |
#, php-format
|
718 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
719 |
msgstr "¡Error! No tens permisos per esborrar aquest privilegi: %s !"
|
720 |
|
721 |
# @ ure
|
722 |
+
#: ../includes/class-ure-lib.php:2127
|
723 |
#, php-format
|
724 |
msgid "Capability %s is removed successfully"
|
725 |
msgstr "El privilegi %s s'ha eliminat amb èxit"
|
726 |
|
727 |
# @ ure
|
728 |
+
#: ../includes/class-ure-lib.php:2232
|
|
|
|
|
|
|
|
|
|
|
729 |
msgid "Author's website"
|
730 |
msgstr "Lloc web del autor"
|
731 |
|
732 |
# @ ure
|
733 |
+
#: ../includes/class-ure-lib.php:2233
|
734 |
msgid "Plugin webpage"
|
735 |
msgstr "Pàgina web del connector"
|
736 |
|
737 |
# @ ure
|
738 |
+
#: ../includes/class-ure-lib.php:2234
|
739 |
+
#, fuzzy
|
740 |
+
msgid "Plugin download"
|
741 |
+
msgstr "Pàgina web del connector"
|
742 |
+
|
743 |
+
# @ ure
|
744 |
+
#: ../includes/class-ure-lib.php:2236
|
745 |
msgid "FAQ"
|
746 |
msgstr "FAQ"
|
747 |
|
748 |
# @ ure
|
749 |
+
#: ../includes/class-ure-lib.php:2284
|
750 |
msgid "None"
|
751 |
msgstr "Cap"
|
752 |
|
753 |
# @ ure
|
754 |
+
#: ../includes/class-ure-lib.php:2311
|
755 |
msgid "Delete All Unused Roles"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: ../includes/class-ure-lib.php:2335
|
759 |
msgid "— No role for this site —"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: ../includes/ure-user-edit.php:31
|
763 |
+
msgid "Network Super Admin"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
# @ ure
|
767 |
+
#: ../includes/ure-user-edit.php:34
|
768 |
msgid "Change capabilities for user"
|
769 |
msgstr "Canviar privilegis d'usuari"
|
770 |
|
771 |
+
#: ../includes/class-ure-screen-help.php:15
|
772 |
+
msgid "Show Administrator role at User Role Editor"
|
773 |
+
msgstr ""
|
774 |
|
775 |
+
#: ../includes/class-ure-screen-help.php:16
|
776 |
+
msgid ""
|
777 |
+
"turn this option on in order to make the \"Administrator\" role available at "
|
778 |
+
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
779 |
+
"for security reasons."
|
780 |
+
msgstr ""
|
781 |
|
782 |
# @ ure
|
783 |
+
#: ../includes/class-ure-screen-help.php:18
|
784 |
+
#, fuzzy
|
785 |
+
msgid "Show capabilities in the human readable form"
|
786 |
+
msgstr "Mostra privilegis de forma llegible"
|
787 |
|
788 |
+
#: ../includes/class-ure-screen-help.php:19
|
789 |
+
msgid ""
|
790 |
+
"automatically converts capability names from the technical form for internal "
|
791 |
+
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
792 |
+
"others posts\"."
|
793 |
+
msgstr ""
|
|
|
|
|
|
|
794 |
|
795 |
# @ ure
|
796 |
+
#: ../includes/class-ure-screen-help.php:21
|
797 |
+
msgid "Show deprecated capabilities"
|
798 |
+
msgstr "Mostrar privilegis obsolets"
|
799 |
+
|
800 |
+
#: ../includes/class-ure-screen-help.php:22
|
801 |
+
msgid ""
|
802 |
+
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
803 |
+
"by WordPress. They are left at the user roles for the compatibility purpose "
|
804 |
+
"with the old themes and plugins code. Turning on this option will show those "
|
805 |
+
"deprecated capabilities."
|
806 |
+
msgstr ""
|
807 |
+
|
808 |
+
#: ../includes/class-ure-screen-help.php:27
|
809 |
+
msgid "Allow create, edit and delete users to not super-admininstrators"
|
810 |
+
msgstr ""
|
811 |
+
|
812 |
+
#: ../includes/class-ure-screen-help.php:28
|
813 |
+
msgid ""
|
814 |
+
"Super administrator only may create, edit and delete users under WordPress "
|
815 |
+
"multi-site. Turn this option on in order to remove this limitation."
|
816 |
+
msgstr ""
|
lang/ure-es_ES.mo
CHANGED
Binary file
|
lang/ure-es_ES.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -16,75 +16,108 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../includes/settings-template.php:
|
|
|
20 |
msgid "Save"
|
21 |
msgstr "Guardar"
|
22 |
|
23 |
-
#: ../includes/
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "You do not have permission to edit this user."
|
26 |
msgstr "No tienes los suficientes permisos para editar este usuario"
|
27 |
|
28 |
-
#: ../includes/class-user-role-editor.php:
|
29 |
msgid "Capabilities"
|
30 |
msgstr "Capacidades"
|
31 |
|
32 |
-
#: ../includes/class-user-role-editor.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Configuración"
|
35 |
|
36 |
-
#: ../includes/class-user-role-editor.php:
|
37 |
-
#: ../includes/class-ure-lib.php:
|
38 |
msgid "Changelog"
|
39 |
msgstr "Registro de cambios"
|
40 |
|
41 |
-
#: ../includes/class-user-role-editor.php:
|
42 |
msgid "Overview"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
msgid ""
|
47 |
"You do not have sufficient permissions to manage options for User Role "
|
48 |
"Editor."
|
49 |
msgstr "Permisos insuficientes para trabajar"
|
50 |
|
51 |
-
#: ../includes/class-user-role-editor.php:
|
52 |
-
msgid "User Role Editor options are updated"
|
53 |
-
msgstr "Opciones actualizadas"
|
54 |
-
|
55 |
-
#: ../includes/class-user-role-editor.php:571
|
56 |
msgid "Insufficient permissions to work with User Role Editor"
|
57 |
msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
|
58 |
|
59 |
-
#: ../includes/class-user-role-editor.php:
|
60 |
msgid "Select All"
|
61 |
msgstr "Seleccionar todo"
|
62 |
|
63 |
-
#: ../includes/class-user-role-editor.php:
|
64 |
msgid "Unselect All"
|
65 |
msgstr "Deseleccionar todo"
|
66 |
|
67 |
-
#: ../includes/class-user-role-editor.php:
|
68 |
msgid "Reverse"
|
69 |
msgstr "Revertir"
|
70 |
|
71 |
-
#: ../includes/class-user-role-editor.php:
|
72 |
msgid "Update"
|
73 |
msgstr "Actualizar"
|
74 |
|
75 |
-
#: ../includes/class-user-role-editor.php:
|
76 |
msgid "Please confirm permissions update"
|
77 |
msgstr "Por favor confirma las actualizaciones de permisos"
|
78 |
|
79 |
-
#: ../includes/class-user-role-editor.php:
|
80 |
msgid "Add New Role"
|
81 |
msgstr "Agregar nuevo Rol"
|
82 |
|
83 |
-
#: ../includes/class-user-role-editor.php:
|
84 |
msgid " Role name (ID) can not be empty!"
|
85 |
msgstr "¡El nombre del Rol (ID) no puede estar vacío!"
|
86 |
|
87 |
-
#: ../includes/class-user-role-editor.php:
|
88 |
msgid ""
|
89 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
90 |
"only!"
|
@@ -92,60 +125,66 @@ msgstr ""
|
|
92 |
"¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
|
93 |
"altos o bajos!"
|
94 |
|
95 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
msgid "Add Role"
|
97 |
msgstr "Agregar Rol"
|
98 |
|
99 |
-
#: ../includes/class-user-role-editor.php:
|
100 |
msgid "Delete Role"
|
101 |
msgstr "Eliminar Rol"
|
102 |
|
103 |
-
#: ../includes/class-user-role-editor.php:
|
104 |
msgid "Cancel"
|
105 |
msgstr "Cancelar"
|
106 |
|
107 |
-
#: ../includes/class-user-role-editor.php:
|
108 |
msgid "Add Capability"
|
109 |
msgstr "Agregar Capacidad"
|
110 |
|
111 |
-
#: ../includes/class-user-role-editor.php:
|
112 |
-
#: ../includes/class-user-role-editor.php:
|
113 |
msgid "Delete Capability"
|
114 |
msgstr "Eliminar Capacidades"
|
115 |
|
116 |
-
#: ../includes/class-user-role-editor.php:
|
117 |
msgid "Reset"
|
118 |
msgstr "Reiniciar"
|
119 |
|
120 |
-
#: ../includes/class-user-role-editor.php:
|
121 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: ../includes/class-user-role-editor.php:
|
125 |
msgid ""
|
126 |
"If any plugins have changed capabilities in any way upon installation (such "
|
127 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: ../includes/class-user-role-editor.php:
|
131 |
msgid ""
|
132 |
"For more information on how to undo changes and restore plugin capabilities "
|
133 |
"go to"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: ../includes/class-user-role-editor.php:
|
137 |
msgid "Continue?"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: ../includes/class-user-role-editor.php:
|
141 |
msgid "Default Role"
|
142 |
msgstr "Rol Predeterminado"
|
143 |
|
144 |
-
#: ../includes/class-user-role-editor.php:
|
145 |
msgid "Set New Default Role"
|
146 |
msgstr "Establecer nuevo Rol"
|
147 |
|
148 |
-
#: ../includes/class-user-role-editor.php:
|
149 |
msgid ""
|
150 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
151 |
"or other custom code"
|
@@ -153,11 +192,11 @@ msgstr ""
|
|
153 |
"¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
|
154 |
"algún plugin o código personalizado"
|
155 |
|
156 |
-
#: ../includes/class-user-role-editor.php:
|
157 |
msgid " Capability name (ID) can not be empty!"
|
158 |
msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
|
159 |
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid ""
|
162 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
163 |
"underscore only!"
|
@@ -165,126 +204,69 @@ msgstr ""
|
|
165 |
"¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
|
166 |
"guiones altos o bajos!"
|
167 |
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
-
#: ../includes/class-
|
170 |
-
msgid "User Role Editor"
|
171 |
-
msgstr "Editor de Roles"
|
172 |
-
|
173 |
-
#: ../includes/class-user-role-editor.php:681
|
174 |
-
#: ../includes/class-user-role-editor.php:709
|
175 |
msgid "Other Roles"
|
176 |
msgstr "Otros Roles"
|
177 |
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
msgid "Edit"
|
180 |
msgstr "Editar"
|
181 |
|
182 |
-
#: ../includes/ure-role-edit.php:
|
183 |
-
msgid "Select Role and change its capabilities list"
|
184 |
-
msgstr "Selecciona un rol y modifica su lista de Capacidades"
|
185 |
-
|
186 |
-
#: ../includes/ure-role-edit.php:19 ../includes/class-ure-lib.php:184
|
187 |
-
msgid "Select Role:"
|
188 |
-
msgstr "Seleccionar Rol:"
|
189 |
-
|
190 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:51
|
191 |
-
msgid "Show capabilities in human readable form"
|
192 |
-
msgstr "Mostrar Capacidades de forma legible"
|
193 |
-
|
194 |
-
#: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
|
195 |
-
msgid "Show deprecated capabilities"
|
196 |
-
msgstr "Mostrar Capacidades obsoletas"
|
197 |
-
|
198 |
-
#: ../includes/ure-role-edit.php:45
|
199 |
msgid "If checked, then apply action to ALL sites of this Network"
|
200 |
msgstr "Si está marcado, se aplicará la acción a TODOS los sitios de la Red"
|
201 |
|
202 |
-
#: ../includes/ure-
|
203 |
-
msgid "Apply to All Sites"
|
204 |
-
msgstr "Aplicar a todos los Sitios"
|
205 |
-
|
206 |
-
#: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:104
|
207 |
-
msgid "Core capabilities:"
|
208 |
-
msgstr "Capacidades del núcleo del sistema:"
|
209 |
-
|
210 |
-
#: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:106
|
211 |
-
msgid "Quick filter:"
|
212 |
-
msgstr "Filtro rápido:"
|
213 |
-
|
214 |
-
#: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:125
|
215 |
-
msgid "Custom capabilities:"
|
216 |
-
msgstr "Capacidades personalizadas:"
|
217 |
-
|
218 |
-
#: ../includes/class-ure-lib.php:141
|
219 |
msgid "Error: wrong request"
|
220 |
msgstr "Error: Petición inválida"
|
221 |
|
222 |
-
#: ../includes/class-ure-lib.php:
|
223 |
-
msgid "Role name (ID): "
|
224 |
-
msgstr "Nombre del Rol (ID):"
|
225 |
-
|
226 |
-
#: ../includes/class-ure-lib.php:175
|
227 |
-
msgid "Display Role Name: "
|
228 |
-
msgstr "Mostrar nombre del Rol:"
|
229 |
-
|
230 |
-
#: ../includes/class-ure-lib.php:177
|
231 |
-
msgid "Make copy of: "
|
232 |
-
msgstr "Hacer copia de:"
|
233 |
-
|
234 |
-
#: ../includes/class-ure-lib.php:199
|
235 |
-
msgid "Delete:"
|
236 |
-
msgstr "Eliminar:"
|
237 |
-
|
238 |
-
#: ../includes/class-ure-lib.php:206
|
239 |
-
msgid "Capability name (ID): "
|
240 |
-
msgstr "Nombre de la Capacidad (ID):"
|
241 |
-
|
242 |
-
#: ../includes/class-ure-lib.php:321
|
243 |
msgid "Error: "
|
244 |
msgstr "Error:"
|
245 |
|
246 |
-
#: ../includes/class-ure-lib.php:
|
247 |
msgid "Role"
|
248 |
msgstr "Rol"
|
249 |
|
250 |
-
#: ../includes/class-ure-lib.php:
|
251 |
msgid "does not exist"
|
252 |
msgstr "no existe"
|
253 |
|
254 |
-
#: ../includes/class-ure-lib.php:
|
255 |
msgid "Role is updated successfully"
|
256 |
msgstr "El Rol fue exitosamente actualizado"
|
257 |
|
258 |
-
#: ../includes/class-ure-lib.php:
|
259 |
msgid "Roles are updated for all network"
|
260 |
msgstr "Roles actualizados en toda la Red"
|
261 |
|
262 |
-
#: ../includes/class-ure-lib.php:
|
263 |
msgid "Error occured during role(s) update"
|
264 |
msgstr "Ocurrió un error durante la actualización del Rol"
|
265 |
|
266 |
-
#: ../includes/class-ure-lib.php:
|
267 |
msgid "User capabilities are updated successfully"
|
268 |
msgstr "Las Capacidades de Usuario fueron actualizadas exitosamente"
|
269 |
|
270 |
-
#: ../includes/class-ure-lib.php:
|
271 |
msgid "Error occured during user update"
|
272 |
msgstr "Ocurrió un error durante la actualización del Usuario"
|
273 |
|
274 |
-
#: ../includes/class-ure-lib.php:
|
275 |
msgid "User Roles are restored to WordPress default values. "
|
276 |
msgstr ""
|
277 |
"Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
|
278 |
|
279 |
-
#: ../includes/class-ure-lib.php:
|
280 |
msgid "Help"
|
281 |
msgstr "Ayuda"
|
282 |
|
283 |
-
#: ../includes/class-ure-lib.php:
|
284 |
msgid "Error is occur. Please check the log file."
|
285 |
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
|
286 |
|
287 |
-
#: ../includes/class-ure-lib.php:
|
288 |
msgid ""
|
289 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
290 |
"only!"
|
@@ -292,375 +274,464 @@ msgstr ""
|
|
292 |
"Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
|
293 |
"altos o bajos!"
|
294 |
|
295 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
296 |
#, php-format
|
297 |
msgid "Role %s exists already"
|
298 |
msgstr "El Rol %s ya existe"
|
299 |
|
300 |
-
#: ../includes/class-ure-lib.php:
|
301 |
msgid "Error is encountered during new role create operation"
|
302 |
msgstr "Un error fue encontrado durante la creación del nuevo Rol"
|
303 |
|
304 |
-
#: ../includes/class-ure-lib.php:
|
305 |
#, php-format
|
306 |
msgid "Role %s is created successfully"
|
307 |
msgstr "El Rol %s fue creado exitosamente"
|
308 |
|
309 |
-
#: ../includes/class-ure-lib.php:
|
310 |
msgid "Error encountered during role delete operation"
|
311 |
msgstr "Un error fue encontrado durante la eliminación del Rol"
|
312 |
|
313 |
-
#: ../includes/class-ure-lib.php:
|
314 |
msgid "Unused roles are deleted successfully"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: ../includes/class-ure-lib.php:
|
318 |
#, php-format
|
319 |
msgid "Role %s is deleted successfully"
|
320 |
msgstr "El Rol %s fue eliminado exitosamente"
|
321 |
|
322 |
-
#: ../includes/class-ure-lib.php:
|
323 |
msgid "Error encountered during default role change operation"
|
324 |
msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
|
325 |
|
326 |
-
#: ../includes/class-ure-lib.php:
|
327 |
#, php-format
|
328 |
msgid "Default role for new users is set to %s successfully"
|
329 |
msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
|
330 |
|
331 |
-
#: ../includes/class-ure-lib.php:
|
332 |
msgid "Editor"
|
333 |
msgstr "Editor"
|
334 |
|
335 |
-
#: ../includes/class-ure-lib.php:
|
336 |
msgid "Author"
|
337 |
msgstr "Autor"
|
338 |
|
339 |
-
#: ../includes/class-ure-lib.php:
|
340 |
msgid "Contributor"
|
341 |
msgstr "Contribuyente"
|
342 |
|
343 |
-
#: ../includes/class-ure-lib.php:
|
344 |
msgid "Subscriber"
|
345 |
msgstr "Suscriptor"
|
346 |
|
347 |
-
#: ../includes/class-ure-lib.php:
|
348 |
msgid "Switch themes"
|
349 |
msgstr "Cambiar temas (plantillas)"
|
350 |
|
351 |
-
#: ../includes/class-ure-lib.php:
|
352 |
msgid "Edit themes"
|
353 |
msgstr "Editar temas (plantillas)"
|
354 |
|
355 |
-
#: ../includes/class-ure-lib.php:
|
356 |
msgid "Activate plugins"
|
357 |
msgstr "Activar plugins"
|
358 |
|
359 |
-
#: ../includes/class-ure-lib.php:
|
360 |
msgid "Edit plugins"
|
361 |
msgstr "Editar plugins"
|
362 |
|
363 |
-
#: ../includes/class-ure-lib.php:
|
364 |
msgid "Edit users"
|
365 |
msgstr "Editar usuarios"
|
366 |
|
367 |
-
#: ../includes/class-ure-lib.php:
|
368 |
msgid "Edit files"
|
369 |
msgstr "Editar archivos"
|
370 |
|
371 |
-
#: ../includes/class-ure-lib.php:
|
372 |
msgid "Manage options"
|
373 |
msgstr "Administrar opciones"
|
374 |
|
375 |
-
#: ../includes/class-ure-lib.php:
|
376 |
msgid "Moderate comments"
|
377 |
msgstr "Moderar comentarios"
|
378 |
|
379 |
-
#: ../includes/class-ure-lib.php:
|
380 |
msgid "Manage categories"
|
381 |
msgstr "Administrar categorías"
|
382 |
|
383 |
-
#: ../includes/class-ure-lib.php:
|
384 |
msgid "Manage links"
|
385 |
msgstr "Administrar enlaces"
|
386 |
|
387 |
-
#: ../includes/class-ure-lib.php:
|
388 |
msgid "Upload files"
|
389 |
msgstr "Subir archivos"
|
390 |
|
391 |
-
#: ../includes/class-ure-lib.php:
|
392 |
msgid "Import"
|
393 |
msgstr "Importar"
|
394 |
|
395 |
-
#: ../includes/class-ure-lib.php:
|
396 |
msgid "Unfiltered html"
|
397 |
msgstr "HTML sin filtrar"
|
398 |
|
399 |
-
#: ../includes/class-ure-lib.php:
|
400 |
msgid "Edit posts"
|
401 |
msgstr "Editar entradas"
|
402 |
|
403 |
-
#: ../includes/class-ure-lib.php:
|
404 |
msgid "Edit others posts"
|
405 |
msgstr "Editar entradas ajenas"
|
406 |
|
407 |
-
#: ../includes/class-ure-lib.php:
|
408 |
msgid "Edit published posts"
|
409 |
msgstr "Editar entradas publicadas"
|
410 |
|
411 |
-
#: ../includes/class-ure-lib.php:
|
412 |
msgid "Publish posts"
|
413 |
msgstr "Publicar entradas"
|
414 |
|
415 |
-
#: ../includes/class-ure-lib.php:
|
416 |
msgid "Edit pages"
|
417 |
msgstr "Editar páginas"
|
418 |
|
419 |
-
#: ../includes/class-ure-lib.php:
|
420 |
msgid "Read"
|
421 |
msgstr "Leer"
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Level 10"
|
425 |
msgstr "Nivel 10"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
msgid "Level 9"
|
429 |
msgstr "Nivel 9"
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
msgid "Level 8"
|
433 |
msgstr "Nivel 8"
|
434 |
|
435 |
-
#: ../includes/class-ure-lib.php:
|
436 |
msgid "Level 7"
|
437 |
msgstr "Nivel 7"
|
438 |
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
msgid "Level 6"
|
441 |
msgstr "Nivel 6"
|
442 |
|
443 |
-
#: ../includes/class-ure-lib.php:
|
444 |
msgid "Level 5"
|
445 |
msgstr "Nivel 5"
|
446 |
|
447 |
-
#: ../includes/class-ure-lib.php:
|
448 |
msgid "Level 4"
|
449 |
msgstr "Nivel 4"
|
450 |
|
451 |
-
#: ../includes/class-ure-lib.php:
|
452 |
msgid "Level 3"
|
453 |
msgstr "Nivel 3"
|
454 |
|
455 |
-
#: ../includes/class-ure-lib.php:
|
456 |
msgid "Level 2"
|
457 |
msgstr "Nivel 2"
|
458 |
|
459 |
-
#: ../includes/class-ure-lib.php:
|
460 |
msgid "Level 1"
|
461 |
msgstr "Nivel 1"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Level 0"
|
465 |
msgstr "Nivel 0"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
msgid "Edit others pages"
|
469 |
msgstr "Editar páginas ajenas"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Edit published pages"
|
473 |
msgstr "Editar páginas publicadas"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Publish pages"
|
477 |
msgstr "Publicar páginas"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Delete pages"
|
481 |
msgstr "Eliminar páginas"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Delete others pages"
|
485 |
msgstr "Eliminar páginas ajenas"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Delete published pages"
|
489 |
msgstr "Eliminar páginas publicadas"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Delete posts"
|
493 |
msgstr "Eliminar entradas"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Delete others posts"
|
497 |
msgstr "Eliminar entradas ajenas"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Delete published posts"
|
501 |
msgstr "Eliminar entradas publicadas"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Delete private posts"
|
505 |
msgstr "Eliminar entradas privadas"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Edit private posts"
|
509 |
msgstr "Editar entradas privadas"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Read private posts"
|
513 |
msgstr "Leer entradas privadas"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Delete private pages"
|
517 |
msgstr "Eliminar páginas privadas"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Edit private pages"
|
521 |
msgstr "Editar páginas privadas"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Read private pages"
|
525 |
msgstr "Leer páginas privadas"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Delete users"
|
529 |
msgstr "Eliminar usuarios"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Create users"
|
533 |
msgstr "Crear usuarios"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Unfiltered upload"
|
537 |
msgstr "Subir sin filtrado"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Edit dashboard"
|
541 |
msgstr "Editar escritorio"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Update plugins"
|
545 |
msgstr "Actualizar plugins"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Delete plugins"
|
549 |
msgstr "Eliminar plugins"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Install plugins"
|
553 |
msgstr "Instalar plugins"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Update themes"
|
557 |
msgstr "Actualizar temas (plantillas)"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Install themes"
|
561 |
msgstr "Instalar temas (plantillas)"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Update core"
|
565 |
msgstr "Actualizar núcleo"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "List users"
|
569 |
msgstr "Listar usuarios"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Remove users"
|
573 |
msgstr "Eliminar usuarios"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Add users"
|
577 |
msgstr "Agregar usuarios"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Promote users"
|
581 |
msgstr "Promover usuarios"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Edit theme options"
|
585 |
msgstr "Editar opciones del tema (plantilla)"
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Delete themes"
|
589 |
msgstr "Eliminar temas (plantillas)"
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Export"
|
593 |
msgstr "Exportar"
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
597 |
msgstr ""
|
598 |
"Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
|
599 |
|
600 |
-
#: ../includes/class-ure-lib.php:
|
601 |
#, php-format
|
602 |
msgid "Capability %s is added successfully"
|
603 |
msgstr "La Capacidad %s fue agregada exitosamente"
|
604 |
|
605 |
-
#: ../includes/class-ure-lib.php:
|
606 |
#, php-format
|
607 |
msgid "Capability %s exists already"
|
608 |
msgstr "La Capacidad %s ya existe"
|
609 |
|
610 |
-
#: ../includes/class-ure-lib.php:
|
611 |
#, php-format
|
612 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
613 |
msgstr ""
|
614 |
"¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
|
615 |
|
616 |
-
#: ../includes/class-ure-lib.php:
|
617 |
#, php-format
|
618 |
msgid "Capability %s is removed successfully"
|
619 |
msgstr "La Capacidad %s fue eliminada exitosamente"
|
620 |
|
621 |
-
#: ../includes/class-ure-lib.php:
|
622 |
-
msgid "About this Plugin:"
|
623 |
-
msgstr "Acerca de este Plugin:"
|
624 |
-
|
625 |
-
#: ../includes/class-ure-lib.php:2087
|
626 |
msgid "Author's website"
|
627 |
msgstr "Sitio web del Autor"
|
628 |
|
629 |
-
#: ../includes/class-ure-lib.php:
|
630 |
msgid "Plugin webpage"
|
631 |
msgstr "Página web del Plugin"
|
632 |
|
633 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
634 |
msgid "FAQ"
|
635 |
msgstr "FAQ"
|
636 |
|
637 |
-
#: ../includes/class-ure-lib.php:
|
638 |
msgid "None"
|
639 |
msgstr "Ninguno"
|
640 |
|
641 |
-
#: ../includes/class-ure-lib.php:
|
642 |
msgid "Delete All Unused Roles"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: ../includes/class-ure-lib.php:
|
646 |
msgid "— No role for this site —"
|
647 |
msgstr ""
|
648 |
|
|
|
|
|
|
|
|
|
649 |
#: ../includes/ure-user-edit.php:34
|
650 |
msgid "Change capabilities for user"
|
651 |
msgstr "Cambiar Capacidades para el usuario"
|
652 |
|
653 |
-
#: ../includes/ure-
|
654 |
-
msgid "
|
655 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
656 |
|
657 |
-
|
658 |
-
|
659 |
-
msgstr "Rol de bbPress:"
|
660 |
|
661 |
-
|
662 |
-
|
663 |
-
msgstr "Otros Roles:"
|
664 |
|
665 |
#~ msgid ""
|
666 |
#~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-06 12:21+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/settings-template.php:80 ../includes/settings-template.php:111
|
20 |
+
#: ../includes/settings-template.php:140
|
21 |
msgid "Save"
|
22 |
msgstr "Guardar"
|
23 |
|
24 |
+
#: ../includes/settings-template.php:104
|
25 |
+
msgid ""
|
26 |
+
"Note for multisite environment: take into account that other default roles "
|
27 |
+
"should exist at the site, in order to be assigned to the new registered "
|
28 |
+
"users."
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: ../includes/class-user-role-editor.php:185
|
32 |
+
msgid "Change role for users without role"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: ../includes/class-user-role-editor.php:186
|
36 |
+
msgid "No rights"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: ../includes/class-user-role-editor.php:187
|
40 |
+
msgid "Provide new role"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: ../includes/class-user-role-editor.php:271
|
44 |
+
#: ../includes/class-user-role-editor.php:273
|
45 |
msgid "You do not have permission to edit this user."
|
46 |
msgstr "No tienes los suficientes permisos para editar este usuario"
|
47 |
|
48 |
+
#: ../includes/class-user-role-editor.php:414
|
49 |
msgid "Capabilities"
|
50 |
msgstr "Capacidades"
|
51 |
|
52 |
+
#: ../includes/class-user-role-editor.php:507
|
53 |
msgid "Settings"
|
54 |
msgstr "Configuración"
|
55 |
|
56 |
+
#: ../includes/class-user-role-editor.php:520
|
57 |
+
#: ../includes/class-ure-lib.php:2235
|
58 |
msgid "Changelog"
|
59 |
msgstr "Registro de cambios"
|
60 |
|
61 |
+
#: ../includes/class-user-role-editor.php:542
|
62 |
msgid "Overview"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: ../includes/class-user-role-editor.php:551
|
66 |
+
#: ../includes/class-user-role-editor.php:579
|
67 |
+
#: ../includes/class-user-role-editor.php:873
|
68 |
+
#: ../includes/class-ure-lib.php:225
|
69 |
+
msgid "User Role Editor"
|
70 |
+
msgstr "Editor de Roles"
|
71 |
+
|
72 |
+
#: ../includes/class-user-role-editor.php:639
|
73 |
+
#: ../includes/class-user-role-editor.php:684
|
74 |
+
msgid "User Role Editor options are updated"
|
75 |
+
msgstr "Opciones actualizadas"
|
76 |
+
|
77 |
+
#: ../includes/class-user-role-editor.php:668
|
78 |
+
#, fuzzy
|
79 |
+
msgid "Default Roles are updated"
|
80 |
+
msgstr "Rol Predeterminado"
|
81 |
+
|
82 |
+
#: ../includes/class-user-role-editor.php:692
|
83 |
msgid ""
|
84 |
"You do not have sufficient permissions to manage options for User Role "
|
85 |
"Editor."
|
86 |
msgstr "Permisos insuficientes para trabajar"
|
87 |
|
88 |
+
#: ../includes/class-user-role-editor.php:764
|
|
|
|
|
|
|
|
|
89 |
msgid "Insufficient permissions to work with User Role Editor"
|
90 |
msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
|
91 |
|
92 |
+
#: ../includes/class-user-role-editor.php:818
|
93 |
msgid "Select All"
|
94 |
msgstr "Seleccionar todo"
|
95 |
|
96 |
+
#: ../includes/class-user-role-editor.php:819
|
97 |
msgid "Unselect All"
|
98 |
msgstr "Deseleccionar todo"
|
99 |
|
100 |
+
#: ../includes/class-user-role-editor.php:820
|
101 |
msgid "Reverse"
|
102 |
msgstr "Revertir"
|
103 |
|
104 |
+
#: ../includes/class-user-role-editor.php:821
|
105 |
msgid "Update"
|
106 |
msgstr "Actualizar"
|
107 |
|
108 |
+
#: ../includes/class-user-role-editor.php:822
|
109 |
msgid "Please confirm permissions update"
|
110 |
msgstr "Por favor confirma las actualizaciones de permisos"
|
111 |
|
112 |
+
#: ../includes/class-user-role-editor.php:823
|
113 |
msgid "Add New Role"
|
114 |
msgstr "Agregar nuevo Rol"
|
115 |
|
116 |
+
#: ../includes/class-user-role-editor.php:824
|
117 |
msgid " Role name (ID) can not be empty!"
|
118 |
msgstr "¡El nombre del Rol (ID) no puede estar vacío!"
|
119 |
|
120 |
+
#: ../includes/class-user-role-editor.php:825
|
121 |
msgid ""
|
122 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
123 |
"only!"
|
125 |
"¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
|
126 |
"altos o bajos!"
|
127 |
|
128 |
+
#: ../includes/class-user-role-editor.php:826
|
129 |
+
msgid ""
|
130 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
131 |
+
"it."
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: ../includes/class-user-role-editor.php:827
|
135 |
msgid "Add Role"
|
136 |
msgstr "Agregar Rol"
|
137 |
|
138 |
+
#: ../includes/class-user-role-editor.php:828
|
139 |
msgid "Delete Role"
|
140 |
msgstr "Eliminar Rol"
|
141 |
|
142 |
+
#: ../includes/class-user-role-editor.php:829
|
143 |
msgid "Cancel"
|
144 |
msgstr "Cancelar"
|
145 |
|
146 |
+
#: ../includes/class-user-role-editor.php:830
|
147 |
msgid "Add Capability"
|
148 |
msgstr "Agregar Capacidad"
|
149 |
|
150 |
+
#: ../includes/class-user-role-editor.php:831
|
151 |
+
#: ../includes/class-user-role-editor.php:840
|
152 |
msgid "Delete Capability"
|
153 |
msgstr "Eliminar Capacidades"
|
154 |
|
155 |
+
#: ../includes/class-user-role-editor.php:832
|
156 |
msgid "Reset"
|
157 |
msgstr "Reiniciar"
|
158 |
|
159 |
+
#: ../includes/class-user-role-editor.php:833
|
160 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: ../includes/class-user-role-editor.php:834
|
164 |
msgid ""
|
165 |
"If any plugins have changed capabilities in any way upon installation (such "
|
166 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: ../includes/class-user-role-editor.php:835
|
170 |
msgid ""
|
171 |
"For more information on how to undo changes and restore plugin capabilities "
|
172 |
"go to"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: ../includes/class-user-role-editor.php:837
|
176 |
msgid "Continue?"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: ../includes/class-user-role-editor.php:838
|
180 |
msgid "Default Role"
|
181 |
msgstr "Rol Predeterminado"
|
182 |
|
183 |
+
#: ../includes/class-user-role-editor.php:839
|
184 |
msgid "Set New Default Role"
|
185 |
msgstr "Establecer nuevo Rol"
|
186 |
|
187 |
+
#: ../includes/class-user-role-editor.php:841
|
188 |
msgid ""
|
189 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
190 |
"or other custom code"
|
192 |
"¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
|
193 |
"algún plugin o código personalizado"
|
194 |
|
195 |
+
#: ../includes/class-user-role-editor.php:842
|
196 |
msgid " Capability name (ID) can not be empty!"
|
197 |
msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
|
198 |
|
199 |
+
#: ../includes/class-user-role-editor.php:843
|
200 |
msgid ""
|
201 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
202 |
"underscore only!"
|
204 |
"¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
|
205 |
"guiones altos o bajos!"
|
206 |
|
207 |
+
#: ../includes/class-user-role-editor.php:876
|
208 |
+
#: ../includes/class-user-role-editor.php:905
|
|
|
|
|
|
|
|
|
|
|
209 |
msgid "Other Roles"
|
210 |
msgstr "Otros Roles"
|
211 |
|
212 |
+
#: ../includes/class-user-role-editor.php:887
|
213 |
msgid "Edit"
|
214 |
msgstr "Editar"
|
215 |
|
216 |
+
#: ../includes/ure-role-edit.php:44
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
msgid "If checked, then apply action to ALL sites of this Network"
|
218 |
msgstr "Si está marcado, se aplicará la acción a TODOS los sitios de la Red"
|
219 |
|
220 |
+
#: ../includes/class-ure-lib.php:143
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
msgid "Error: wrong request"
|
222 |
msgstr "Error: Petición inválida"
|
223 |
|
224 |
+
#: ../includes/class-ure-lib.php:322
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
msgid "Error: "
|
226 |
msgstr "Error:"
|
227 |
|
228 |
+
#: ../includes/class-ure-lib.php:322
|
229 |
msgid "Role"
|
230 |
msgstr "Rol"
|
231 |
|
232 |
+
#: ../includes/class-ure-lib.php:323
|
233 |
msgid "does not exist"
|
234 |
msgstr "no existe"
|
235 |
|
236 |
+
#: ../includes/class-ure-lib.php:366
|
237 |
msgid "Role is updated successfully"
|
238 |
msgstr "El Rol fue exitosamente actualizado"
|
239 |
|
240 |
+
#: ../includes/class-ure-lib.php:368
|
241 |
msgid "Roles are updated for all network"
|
242 |
msgstr "Roles actualizados en toda la Red"
|
243 |
|
244 |
+
#: ../includes/class-ure-lib.php:374
|
245 |
msgid "Error occured during role(s) update"
|
246 |
msgstr "Ocurrió un error durante la actualización del Rol"
|
247 |
|
248 |
+
#: ../includes/class-ure-lib.php:381
|
249 |
msgid "User capabilities are updated successfully"
|
250 |
msgstr "Las Capacidades de Usuario fueron actualizadas exitosamente"
|
251 |
|
252 |
+
#: ../includes/class-ure-lib.php:386
|
253 |
msgid "Error occured during user update"
|
254 |
msgstr "Ocurrió un error durante la actualización del Usuario"
|
255 |
|
256 |
+
#: ../includes/class-ure-lib.php:441
|
257 |
msgid "User Roles are restored to WordPress default values. "
|
258 |
msgstr ""
|
259 |
"Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
|
260 |
|
261 |
+
#: ../includes/class-ure-lib.php:1340
|
262 |
msgid "Help"
|
263 |
msgstr "Ayuda"
|
264 |
|
265 |
+
#: ../includes/class-ure-lib.php:1690
|
266 |
msgid "Error is occur. Please check the log file."
|
267 |
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
|
268 |
|
269 |
+
#: ../includes/class-ure-lib.php:1733
|
270 |
msgid ""
|
271 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
272 |
"only!"
|
274 |
"Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
|
275 |
"altos o bajos!"
|
276 |
|
277 |
+
#: ../includes/class-ure-lib.php:1737
|
278 |
+
msgid ""
|
279 |
+
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
280 |
+
"characters to it."
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: ../includes/class-ure-lib.php:1752
|
284 |
#, php-format
|
285 |
msgid "Role %s exists already"
|
286 |
msgstr "El Rol %s ya existe"
|
287 |
|
288 |
+
#: ../includes/class-ure-lib.php:1767
|
289 |
msgid "Error is encountered during new role create operation"
|
290 |
msgstr "Un error fue encontrado durante la creación del nuevo Rol"
|
291 |
|
292 |
+
#: ../includes/class-ure-lib.php:1769
|
293 |
#, php-format
|
294 |
msgid "Role %s is created successfully"
|
295 |
msgstr "El Rol %s fue creado exitosamente"
|
296 |
|
297 |
+
#: ../includes/class-ure-lib.php:1838
|
298 |
msgid "Error encountered during role delete operation"
|
299 |
msgstr "Un error fue encontrado durante la eliminación del Rol"
|
300 |
|
301 |
+
#: ../includes/class-ure-lib.php:1840
|
302 |
msgid "Unused roles are deleted successfully"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: ../includes/class-ure-lib.php:1842
|
306 |
#, php-format
|
307 |
msgid "Role %s is deleted successfully"
|
308 |
msgstr "El Rol %s fue eliminado exitosamente"
|
309 |
|
310 |
+
#: ../includes/class-ure-lib.php:1867
|
311 |
msgid "Error encountered during default role change operation"
|
312 |
msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
|
313 |
|
314 |
+
#: ../includes/class-ure-lib.php:1873
|
315 |
#, php-format
|
316 |
msgid "Default role for new users is set to %s successfully"
|
317 |
msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
|
318 |
|
319 |
+
#: ../includes/class-ure-lib.php:1892
|
320 |
msgid "Editor"
|
321 |
msgstr "Editor"
|
322 |
|
323 |
+
#: ../includes/class-ure-lib.php:1893
|
324 |
msgid "Author"
|
325 |
msgstr "Autor"
|
326 |
|
327 |
+
#: ../includes/class-ure-lib.php:1894
|
328 |
msgid "Contributor"
|
329 |
msgstr "Contribuyente"
|
330 |
|
331 |
+
#: ../includes/class-ure-lib.php:1895
|
332 |
msgid "Subscriber"
|
333 |
msgstr "Suscriptor"
|
334 |
|
335 |
+
#: ../includes/class-ure-lib.php:1897
|
336 |
msgid "Switch themes"
|
337 |
msgstr "Cambiar temas (plantillas)"
|
338 |
|
339 |
+
#: ../includes/class-ure-lib.php:1898
|
340 |
msgid "Edit themes"
|
341 |
msgstr "Editar temas (plantillas)"
|
342 |
|
343 |
+
#: ../includes/class-ure-lib.php:1899
|
344 |
msgid "Activate plugins"
|
345 |
msgstr "Activar plugins"
|
346 |
|
347 |
+
#: ../includes/class-ure-lib.php:1900
|
348 |
msgid "Edit plugins"
|
349 |
msgstr "Editar plugins"
|
350 |
|
351 |
+
#: ../includes/class-ure-lib.php:1901
|
352 |
msgid "Edit users"
|
353 |
msgstr "Editar usuarios"
|
354 |
|
355 |
+
#: ../includes/class-ure-lib.php:1902
|
356 |
msgid "Edit files"
|
357 |
msgstr "Editar archivos"
|
358 |
|
359 |
+
#: ../includes/class-ure-lib.php:1903
|
360 |
msgid "Manage options"
|
361 |
msgstr "Administrar opciones"
|
362 |
|
363 |
+
#: ../includes/class-ure-lib.php:1904
|
364 |
msgid "Moderate comments"
|
365 |
msgstr "Moderar comentarios"
|
366 |
|
367 |
+
#: ../includes/class-ure-lib.php:1905
|
368 |
msgid "Manage categories"
|
369 |
msgstr "Administrar categorías"
|
370 |
|
371 |
+
#: ../includes/class-ure-lib.php:1906
|
372 |
msgid "Manage links"
|
373 |
msgstr "Administrar enlaces"
|
374 |
|
375 |
+
#: ../includes/class-ure-lib.php:1907
|
376 |
msgid "Upload files"
|
377 |
msgstr "Subir archivos"
|
378 |
|
379 |
+
#: ../includes/class-ure-lib.php:1908
|
380 |
msgid "Import"
|
381 |
msgstr "Importar"
|
382 |
|
383 |
+
#: ../includes/class-ure-lib.php:1909
|
384 |
msgid "Unfiltered html"
|
385 |
msgstr "HTML sin filtrar"
|
386 |
|
387 |
+
#: ../includes/class-ure-lib.php:1910
|
388 |
msgid "Edit posts"
|
389 |
msgstr "Editar entradas"
|
390 |
|
391 |
+
#: ../includes/class-ure-lib.php:1911
|
392 |
msgid "Edit others posts"
|
393 |
msgstr "Editar entradas ajenas"
|
394 |
|
395 |
+
#: ../includes/class-ure-lib.php:1912
|
396 |
msgid "Edit published posts"
|
397 |
msgstr "Editar entradas publicadas"
|
398 |
|
399 |
+
#: ../includes/class-ure-lib.php:1913
|
400 |
msgid "Publish posts"
|
401 |
msgstr "Publicar entradas"
|
402 |
|
403 |
+
#: ../includes/class-ure-lib.php:1914
|
404 |
msgid "Edit pages"
|
405 |
msgstr "Editar páginas"
|
406 |
|
407 |
+
#: ../includes/class-ure-lib.php:1915
|
408 |
msgid "Read"
|
409 |
msgstr "Leer"
|
410 |
|
411 |
+
#: ../includes/class-ure-lib.php:1916
|
412 |
msgid "Level 10"
|
413 |
msgstr "Nivel 10"
|
414 |
|
415 |
+
#: ../includes/class-ure-lib.php:1917
|
416 |
msgid "Level 9"
|
417 |
msgstr "Nivel 9"
|
418 |
|
419 |
+
#: ../includes/class-ure-lib.php:1918
|
420 |
msgid "Level 8"
|
421 |
msgstr "Nivel 8"
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:1919
|
424 |
msgid "Level 7"
|
425 |
msgstr "Nivel 7"
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:1920
|
428 |
msgid "Level 6"
|
429 |
msgstr "Nivel 6"
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:1921
|
432 |
msgid "Level 5"
|
433 |
msgstr "Nivel 5"
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:1922
|
436 |
msgid "Level 4"
|
437 |
msgstr "Nivel 4"
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:1923
|
440 |
msgid "Level 3"
|
441 |
msgstr "Nivel 3"
|
442 |
|
443 |
+
#: ../includes/class-ure-lib.php:1924
|
444 |
msgid "Level 2"
|
445 |
msgstr "Nivel 2"
|
446 |
|
447 |
+
#: ../includes/class-ure-lib.php:1925
|
448 |
msgid "Level 1"
|
449 |
msgstr "Nivel 1"
|
450 |
|
451 |
+
#: ../includes/class-ure-lib.php:1926
|
452 |
msgid "Level 0"
|
453 |
msgstr "Nivel 0"
|
454 |
|
455 |
+
#: ../includes/class-ure-lib.php:1927
|
456 |
msgid "Edit others pages"
|
457 |
msgstr "Editar páginas ajenas"
|
458 |
|
459 |
+
#: ../includes/class-ure-lib.php:1928
|
460 |
msgid "Edit published pages"
|
461 |
msgstr "Editar páginas publicadas"
|
462 |
|
463 |
+
#: ../includes/class-ure-lib.php:1929
|
464 |
msgid "Publish pages"
|
465 |
msgstr "Publicar páginas"
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:1930
|
468 |
msgid "Delete pages"
|
469 |
msgstr "Eliminar páginas"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:1931
|
472 |
msgid "Delete others pages"
|
473 |
msgstr "Eliminar páginas ajenas"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:1932
|
476 |
msgid "Delete published pages"
|
477 |
msgstr "Eliminar páginas publicadas"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:1933
|
480 |
msgid "Delete posts"
|
481 |
msgstr "Eliminar entradas"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:1934
|
484 |
msgid "Delete others posts"
|
485 |
msgstr "Eliminar entradas ajenas"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:1935
|
488 |
msgid "Delete published posts"
|
489 |
msgstr "Eliminar entradas publicadas"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:1936
|
492 |
msgid "Delete private posts"
|
493 |
msgstr "Eliminar entradas privadas"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:1937
|
496 |
msgid "Edit private posts"
|
497 |
msgstr "Editar entradas privadas"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:1938
|
500 |
msgid "Read private posts"
|
501 |
msgstr "Leer entradas privadas"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:1939
|
504 |
msgid "Delete private pages"
|
505 |
msgstr "Eliminar páginas privadas"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:1940
|
508 |
msgid "Edit private pages"
|
509 |
msgstr "Editar páginas privadas"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:1941
|
512 |
msgid "Read private pages"
|
513 |
msgstr "Leer páginas privadas"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:1942
|
516 |
msgid "Delete users"
|
517 |
msgstr "Eliminar usuarios"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:1943
|
520 |
msgid "Create users"
|
521 |
msgstr "Crear usuarios"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:1944
|
524 |
msgid "Unfiltered upload"
|
525 |
msgstr "Subir sin filtrado"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:1945
|
528 |
msgid "Edit dashboard"
|
529 |
msgstr "Editar escritorio"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:1946
|
532 |
msgid "Update plugins"
|
533 |
msgstr "Actualizar plugins"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:1947
|
536 |
msgid "Delete plugins"
|
537 |
msgstr "Eliminar plugins"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:1948
|
540 |
msgid "Install plugins"
|
541 |
msgstr "Instalar plugins"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:1949
|
544 |
msgid "Update themes"
|
545 |
msgstr "Actualizar temas (plantillas)"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:1950
|
548 |
msgid "Install themes"
|
549 |
msgstr "Instalar temas (plantillas)"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:1951
|
552 |
msgid "Update core"
|
553 |
msgstr "Actualizar núcleo"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:1952
|
556 |
msgid "List users"
|
557 |
msgstr "Listar usuarios"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:1953
|
560 |
msgid "Remove users"
|
561 |
msgstr "Eliminar usuarios"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:1954
|
564 |
msgid "Add users"
|
565 |
msgstr "Agregar usuarios"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:1955
|
568 |
msgid "Promote users"
|
569 |
msgstr "Promover usuarios"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:1956
|
572 |
msgid "Edit theme options"
|
573 |
msgstr "Editar opciones del tema (plantilla)"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:1957
|
576 |
msgid "Delete themes"
|
577 |
msgstr "Eliminar temas (plantillas)"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:1958
|
580 |
msgid "Export"
|
581 |
msgstr "Exportar"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:2068
|
584 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
585 |
msgstr ""
|
586 |
"Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
|
587 |
|
588 |
+
#: ../includes/class-ure-lib.php:2081
|
589 |
#, php-format
|
590 |
msgid "Capability %s is added successfully"
|
591 |
msgstr "La Capacidad %s fue agregada exitosamente"
|
592 |
|
593 |
+
#: ../includes/class-ure-lib.php:2083
|
594 |
#, php-format
|
595 |
msgid "Capability %s exists already"
|
596 |
msgstr "La Capacidad %s ya existe"
|
597 |
|
598 |
+
#: ../includes/class-ure-lib.php:2108
|
599 |
#, php-format
|
600 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
601 |
msgstr ""
|
602 |
"¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
|
603 |
|
604 |
+
#: ../includes/class-ure-lib.php:2127
|
605 |
#, php-format
|
606 |
msgid "Capability %s is removed successfully"
|
607 |
msgstr "La Capacidad %s fue eliminada exitosamente"
|
608 |
|
609 |
+
#: ../includes/class-ure-lib.php:2232
|
|
|
|
|
|
|
|
|
610 |
msgid "Author's website"
|
611 |
msgstr "Sitio web del Autor"
|
612 |
|
613 |
+
#: ../includes/class-ure-lib.php:2233
|
614 |
msgid "Plugin webpage"
|
615 |
msgstr "Página web del Plugin"
|
616 |
|
617 |
+
#: ../includes/class-ure-lib.php:2234
|
618 |
+
#, fuzzy
|
619 |
+
msgid "Plugin download"
|
620 |
+
msgstr "Página web del Plugin"
|
621 |
+
|
622 |
+
#: ../includes/class-ure-lib.php:2236
|
623 |
msgid "FAQ"
|
624 |
msgstr "FAQ"
|
625 |
|
626 |
+
#: ../includes/class-ure-lib.php:2284
|
627 |
msgid "None"
|
628 |
msgstr "Ninguno"
|
629 |
|
630 |
+
#: ../includes/class-ure-lib.php:2311
|
631 |
msgid "Delete All Unused Roles"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: ../includes/class-ure-lib.php:2335
|
635 |
msgid "— No role for this site —"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: ../includes/ure-user-edit.php:31
|
639 |
+
msgid "Network Super Admin"
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
#: ../includes/ure-user-edit.php:34
|
643 |
msgid "Change capabilities for user"
|
644 |
msgstr "Cambiar Capacidades para el usuario"
|
645 |
|
646 |
+
#: ../includes/class-ure-screen-help.php:15
|
647 |
+
msgid "Show Administrator role at User Role Editor"
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: ../includes/class-ure-screen-help.php:16
|
651 |
+
msgid ""
|
652 |
+
"turn this option on in order to make the \"Administrator\" role available at "
|
653 |
+
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
654 |
+
"for security reasons."
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
#: ../includes/class-ure-screen-help.php:18
|
658 |
+
#, fuzzy
|
659 |
+
msgid "Show capabilities in the human readable form"
|
660 |
+
msgstr "Mostrar Capacidades de forma legible"
|
661 |
+
|
662 |
+
#: ../includes/class-ure-screen-help.php:19
|
663 |
+
msgid ""
|
664 |
+
"automatically converts capability names from the technical form for internal "
|
665 |
+
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
666 |
+
"others posts\"."
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: ../includes/class-ure-screen-help.php:21
|
670 |
+
msgid "Show deprecated capabilities"
|
671 |
+
msgstr "Mostrar Capacidades obsoletas"
|
672 |
+
|
673 |
+
#: ../includes/class-ure-screen-help.php:22
|
674 |
+
msgid ""
|
675 |
+
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
676 |
+
"by WordPress. They are left at the user roles for the compatibility purpose "
|
677 |
+
"with the old themes and plugins code. Turning on this option will show those "
|
678 |
+
"deprecated capabilities."
|
679 |
+
msgstr ""
|
680 |
+
|
681 |
+
#: ../includes/class-ure-screen-help.php:27
|
682 |
+
msgid "Allow create, edit and delete users to not super-admininstrators"
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: ../includes/class-ure-screen-help.php:28
|
686 |
+
msgid ""
|
687 |
+
"Super administrator only may create, edit and delete users under WordPress "
|
688 |
+
"multi-site. Turn this option on in order to remove this limitation."
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#~ msgid "Select Role and change its capabilities list"
|
692 |
+
#~ msgstr "Selecciona un rol y modifica su lista de Capacidades"
|
693 |
+
|
694 |
+
#~ msgid "Select Role:"
|
695 |
+
#~ msgstr "Seleccionar Rol:"
|
696 |
+
|
697 |
+
#~ msgid "Apply to All Sites"
|
698 |
+
#~ msgstr "Aplicar a todos los Sitios"
|
699 |
+
|
700 |
+
#~ msgid "Core capabilities:"
|
701 |
+
#~ msgstr "Capacidades del núcleo del sistema:"
|
702 |
+
|
703 |
+
#~ msgid "Quick filter:"
|
704 |
+
#~ msgstr "Filtro rápido:"
|
705 |
+
|
706 |
+
#~ msgid "Custom capabilities:"
|
707 |
+
#~ msgstr "Capacidades personalizadas:"
|
708 |
+
|
709 |
+
#~ msgid "Role name (ID): "
|
710 |
+
#~ msgstr "Nombre del Rol (ID):"
|
711 |
+
|
712 |
+
#~ msgid "Display Role Name: "
|
713 |
+
#~ msgstr "Mostrar nombre del Rol:"
|
714 |
+
|
715 |
+
#~ msgid "Make copy of: "
|
716 |
+
#~ msgstr "Hacer copia de:"
|
717 |
+
|
718 |
+
#~ msgid "Delete:"
|
719 |
+
#~ msgstr "Eliminar:"
|
720 |
+
|
721 |
+
#~ msgid "Capability name (ID): "
|
722 |
+
#~ msgstr "Nombre de la Capacidad (ID):"
|
723 |
+
|
724 |
+
#~ msgid "About this Plugin:"
|
725 |
+
#~ msgstr "Acerca de este Plugin:"
|
726 |
+
|
727 |
+
#~ msgid "Primary Role:"
|
728 |
+
#~ msgstr "Rol Primario:"
|
729 |
|
730 |
+
#~ msgid "bbPress Role:"
|
731 |
+
#~ msgstr "Rol de bbPress:"
|
|
|
732 |
|
733 |
+
#~ msgid "Other Roles:"
|
734 |
+
#~ msgstr "Otros Roles:"
|
|
|
735 |
|
736 |
#~ msgid ""
|
737 |
#~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
lang/ure-he_IL.mo
CHANGED
Binary file
|
lang/ure-he_IL.po
CHANGED
@@ -5,7 +5,7 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: User Role Editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
-
"POT-Creation-Date:
|
9 |
"PO-Revision-Date: \n"
|
10 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
11 |
"Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
|
@@ -20,16 +20,36 @@ msgstr ""
|
|
20 |
# <input type="submit" class="button-primary" name="user_role_editor_settings_update" value="<?php _e('Save', 'ure') ?>" />
|
21 |
# </p>
|
22 |
# wpml-name: c9cc8cce247e49bae79f15173ce97354
|
23 |
-
#: ../includes/settings-template.php:
|
|
|
24 |
msgid "Save"
|
25 |
msgstr "שמירה"
|
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
# if (!is_array($caps_to_remove) || count($caps_to_remove) == 0 || !isset($caps_to_remove[$capability_id])) {
|
28 |
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
29 |
# }
|
30 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
31 |
-
#: ../includes/class-user-role-editor.php:
|
32 |
-
#: ../includes/class-user-role-editor.php:
|
33 |
msgid "You do not have permission to edit this user."
|
34 |
msgstr ""
|
35 |
|
@@ -37,7 +57,7 @@ msgstr ""
|
|
37 |
# '">' . __('Capabilities', 'ure') . '</a>';
|
38 |
# }
|
39 |
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
40 |
-
#: ../includes/class-user-role-editor.php:
|
41 |
msgid "Capabilities"
|
42 |
msgstr "יכולות"
|
43 |
|
@@ -45,7 +65,7 @@ msgstr "יכולות"
|
|
45 |
# $settings_link = "<a href='options-general.php?page=settings-".URE_PLUGIN_FILE."'>" . __('Settings', 'ure') . "</a>";
|
46 |
# array_unshift($links, $settings_link);
|
47 |
# wpml-name: f4f70727dc34561dfde1a3c529b6205c
|
48 |
-
#: ../includes/class-user-role-editor.php:
|
49 |
msgid "Settings"
|
50 |
msgstr "הגדרות"
|
51 |
|
@@ -53,12 +73,12 @@ msgstr "הגדרות"
|
|
53 |
# $links[] = '<a target="_blank" href="http://role-editor.com/changelog">' . __('Changelog', 'ure') . '</a>';
|
54 |
# }
|
55 |
# wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
|
56 |
-
#: ../includes/class-user-role-editor.php:
|
57 |
-
#: ../includes/class-ure-lib.php:
|
58 |
msgid "Changelog"
|
59 |
msgstr "יומן שינויים"
|
60 |
|
61 |
-
#: ../includes/class-user-role-editor.php:
|
62 |
msgid "Overview"
|
63 |
msgstr ""
|
64 |
|
@@ -66,28 +86,38 @@ msgstr ""
|
|
66 |
# esc_html__('User Role Editor', 'ure'),
|
67 |
# $this->key_capability, 'settings-'.URE_PLUGIN_FILE, array(&$this, 'settings'));
|
68 |
# wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
|
69 |
-
#: ../includes/class-user-role-editor.php:
|
70 |
-
#: ../includes/class-user-role-editor.php:
|
71 |
-
#: ../includes/class-user-role-editor.php:
|
72 |
-
#: ../includes/class-ure-lib.php:
|
73 |
msgid "User Role Editor"
|
74 |
msgstr "User Role Editor"
|
75 |
|
76 |
-
#: ../includes/class-user-role-editor.php:497
|
77 |
-
msgid ""
|
78 |
-
"You do not have sufficient permissions to manage options for User Role "
|
79 |
-
"Editor."
|
80 |
-
msgstr ""
|
81 |
-
|
82 |
# $this->lib->flush_options();
|
83 |
# $this->lib->show_message(__('User Role Editor options are updated', 'ure'));
|
84 |
# } else { // get options from the options storage
|
85 |
# wpml-name: aef323fbbd25d577170fff17c15cf857
|
86 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
87 |
msgid "User Role Editor options are updated"
|
88 |
msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
89 |
|
90 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
msgid "Insufficient permissions to work with User Role Editor"
|
92 |
msgstr ""
|
93 |
|
@@ -95,7 +125,7 @@ msgstr ""
|
|
95 |
# 'select_all' => __('Select All', 'ure'),
|
96 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
97 |
# wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
|
98 |
-
#: ../includes/class-user-role-editor.php:
|
99 |
msgid "Select All"
|
100 |
msgstr "בחירת הכל"
|
101 |
|
@@ -103,7 +133,7 @@ msgstr "בחירת הכל"
|
|
103 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
104 |
# 'reverse' => __('Reverse', 'ure'),
|
105 |
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
106 |
-
#: ../includes/class-user-role-editor.php:
|
107 |
msgid "Unselect All"
|
108 |
msgstr "לא לבחור שום דבר"
|
109 |
|
@@ -111,7 +141,7 @@ msgstr "לא לבחור שום דבר"
|
|
111 |
# 'reverse' => __('Reverse', 'ure'),
|
112 |
# 'update' => __('Update', 'ure'),
|
113 |
# wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
msgid "Reverse"
|
116 |
msgstr "להפוך"
|
117 |
|
@@ -119,7 +149,7 @@ msgstr "להפוך"
|
|
119 |
# 'update' => __('Update', 'ure'),
|
120 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
121 |
# wpml-name: 06933067aafd48425d67bcb01bba5cb6
|
122 |
-
#: ../includes/class-user-role-editor.php:
|
123 |
msgid "Update"
|
124 |
msgstr "עדכן"
|
125 |
|
@@ -127,7 +157,7 @@ msgstr "עדכן"
|
|
127 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
128 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
129 |
# wpml-name: 85251872440cc94c6080a90451e018c4
|
130 |
-
#: ../includes/class-user-role-editor.php:
|
131 |
msgid "Please confirm permissions update"
|
132 |
msgstr "נא לאשר את עדכון ההרשאות"
|
133 |
|
@@ -135,7 +165,7 @@ msgstr "נא לאשר את עדכון ההרשאות"
|
|
135 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
136 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
137 |
# wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
|
138 |
-
#: ../includes/class-user-role-editor.php:
|
139 |
msgid "Add New Role"
|
140 |
msgstr "הוסף סוג משתמש חדש"
|
141 |
|
@@ -143,7 +173,7 @@ msgstr "הוסף סוג משתמש חדש"
|
|
143 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
144 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
145 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
146 |
-
#: ../includes/class-user-role-editor.php:
|
147 |
msgid " Role name (ID) can not be empty!"
|
148 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
149 |
|
@@ -151,18 +181,24 @@ msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
|
151 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
152 |
# 'add_role' => __('Add Role', 'ure'),
|
153 |
# wpml-name: 7b94f04285f5efc287652bd40338e730
|
154 |
-
#: ../includes/class-user-role-editor.php:
|
155 |
msgid ""
|
156 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
157 |
"only!"
|
158 |
msgstr ""
|
159 |
" שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
160 |
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
162 |
# 'add_role' => __('Add Role', 'ure'),
|
163 |
# 'delete_role' => __('Delete Role', 'ure'),
|
164 |
# wpml-name: 1453b39dcc15a372640d960c6db7db25
|
165 |
-
#: ../includes/class-user-role-editor.php:
|
166 |
msgid "Add Role"
|
167 |
msgstr "הוספת תפקיד"
|
168 |
|
@@ -170,7 +206,7 @@ msgstr "הוספת תפקיד"
|
|
170 |
# 'delete_role' => __('Delete Role', 'ure'),
|
171 |
# 'cancel' => __('Cancel', 'ure'),
|
172 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
173 |
-
#: ../includes/class-user-role-editor.php:
|
174 |
msgid "Delete Role"
|
175 |
msgstr "מחיקת סוג משתמש"
|
176 |
|
@@ -178,7 +214,7 @@ msgstr "מחיקת סוג משתמש"
|
|
178 |
# 'cancel' => __('Cancel', 'ure'),
|
179 |
# 'add_capability' => __('Add Capability', 'ure'),
|
180 |
# wpml-name: ea4788705e6873b424c65e91c2846b19
|
181 |
-
#: ../includes/class-user-role-editor.php:
|
182 |
msgid "Cancel"
|
183 |
msgstr "ביטול"
|
184 |
|
@@ -186,7 +222,7 @@ msgstr "ביטול"
|
|
186 |
# 'add_capability' => __('Add Capability', 'ure'),
|
187 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
188 |
# wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
|
189 |
-
#: ../includes/class-user-role-editor.php:
|
190 |
msgid "Add Capability"
|
191 |
msgstr "הוספת יכולת"
|
192 |
|
@@ -194,8 +230,8 @@ msgstr "הוספת יכולת"
|
|
194 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
195 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
196 |
# wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
|
197 |
-
#: ../includes/class-user-role-editor.php:
|
198 |
-
#: ../includes/class-user-role-editor.php:
|
199 |
msgid "Delete Capability"
|
200 |
msgstr "מחיקת יכולת"
|
201 |
|
@@ -203,21 +239,21 @@ msgstr "מחיקת יכולת"
|
|
203 |
# 'reset' => __('Reset', 'ure'),
|
204 |
# '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'),
|
205 |
# wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
|
206 |
-
#: ../includes/class-user-role-editor.php:
|
207 |
msgid "Reset"
|
208 |
msgstr "איפוס"
|
209 |
|
210 |
-
#: ../includes/class-user-role-editor.php:
|
211 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: ../includes/class-user-role-editor.php:
|
215 |
msgid ""
|
216 |
"If any plugins have changed capabilities in any way upon installation (such "
|
217 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: ../includes/class-user-role-editor.php:
|
221 |
msgid ""
|
222 |
"For more information on how to undo changes and restore plugin capabilities "
|
223 |
"go to"
|
@@ -227,7 +263,7 @@ msgstr ""
|
|
227 |
# __('Contributor', 'ure');
|
228 |
# __('Subscriber', 'ure');
|
229 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
230 |
-
#: ../includes/class-user-role-editor.php:
|
231 |
msgid "Continue?"
|
232 |
msgstr ""
|
233 |
|
@@ -235,7 +271,7 @@ msgstr ""
|
|
235 |
# 'default_role' => __('Default Role', 'ure'),
|
236 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
237 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
238 |
-
#: ../includes/class-user-role-editor.php:
|
239 |
msgid "Default Role"
|
240 |
msgstr "תפקיד ברירת מחדל"
|
241 |
|
@@ -243,7 +279,7 @@ msgstr "תפקיד ברירת מחדל"
|
|
243 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
244 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
245 |
# wpml-name: f28d52a1096a73cff427d1216dc578ad
|
246 |
-
#: ../includes/class-user-role-editor.php:
|
247 |
msgid "Set New Default Role"
|
248 |
msgstr "הגדר תפקיד ברירת מחדל חדש"
|
249 |
|
@@ -251,7 +287,7 @@ msgstr "הגדר תפקיד ברירת מחדל חדש"
|
|
251 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
252 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
253 |
# wpml-name: b8827a096ab461b8e26931adf82c8d85
|
254 |
-
#: ../includes/class-user-role-editor.php:
|
255 |
msgid ""
|
256 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
257 |
"or other custom code"
|
@@ -263,7 +299,7 @@ msgstr ""
|
|
263 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
264 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
265 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
266 |
-
#: ../includes/class-user-role-editor.php:
|
267 |
msgid " Capability name (ID) can not be empty!"
|
268 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
269 |
|
@@ -271,7 +307,7 @@ msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
|
271 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
272 |
# ) );
|
273 |
# wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
|
274 |
-
#: ../includes/class-user-role-editor.php:
|
275 |
msgid ""
|
276 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
277 |
"underscore only!"
|
@@ -282,8 +318,8 @@ msgstr ""
|
|
282 |
# <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
|
283 |
# <td>
|
284 |
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
285 |
-
#: ../includes/class-user-role-editor.php:
|
286 |
-
#: ../includes/class-user-role-editor.php:
|
287 |
msgid "Other Roles"
|
288 |
msgstr "תפקידים אחרים"
|
289 |
|
@@ -291,136 +327,31 @@ msgstr "תפקידים אחרים"
|
|
291 |
# 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>';
|
292 |
# ?>
|
293 |
# wpml-name: 7dce122004969d56ae2e0245cb754d35
|
294 |
-
#: ../includes/class-user-role-editor.php:
|
295 |
msgid "Edit"
|
296 |
msgstr "עריכה"
|
297 |
|
298 |
-
# <?php
|
299 |
-
# $this->display_box_start(__('Select Role and change its capabilities list', 'ure'), 'min-width:800px;');
|
300 |
-
# ?>
|
301 |
-
# wpml-name: 6a9631dbe20237a244cb3721ab6fc7d8
|
302 |
-
#: ../includes/ure-role-edit.php:17
|
303 |
-
msgid "Select Role and change its capabilities list"
|
304 |
-
msgstr "בחר סוג משתמש ושנה את היכולות שלו"
|
305 |
-
|
306 |
-
# <div style="padding:10px;">
|
307 |
-
# <div class="ure-label"><?php _e('Select Role:', 'ure');?></div>
|
308 |
-
# <div class="ure-input"><?php echo $this->role_delete_html; ?></div>
|
309 |
-
# wpml-name: 6ae3f08b992f68a1bf8924945d2c7c98
|
310 |
-
#: ../includes/ure-role-edit.php:19 ../includes/class-ure-lib.php:184
|
311 |
-
msgid "Select Role:"
|
312 |
-
msgstr "בחר סוג משתמש"
|
313 |
-
|
314 |
-
# <?php echo $checked; ?> onclick="ure_turn_caps_readable(<?php echo $this->user_to_edit->ID; ?>);" />
|
315 |
-
# <label for="ure_caps_readable"><?php _e('Show capabilities in human readable form', 'ure'); ?></label>
|
316 |
-
# <?php
|
317 |
-
# wpml-name: 5e09edd7b2ed1864deffbd964073b27a
|
318 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:51
|
319 |
-
msgid "Show capabilities in human readable form"
|
320 |
-
msgstr "הראה יכולות משתמשים בשפה קריאה"
|
321 |
-
|
322 |
-
# <?php echo $checked; ?> onclick="ure_turn_deprecated_caps(<?php echo $this->user_to_edit->ID; ?>);"/>
|
323 |
-
# <label for="ure_show_deprecated_caps"><?php _e('Show deprecated capabilities', 'ure'); ?></label>
|
324 |
-
# </td>
|
325 |
-
# wpml-name: 130b09deaec4b13948be95555d546f25
|
326 |
-
#: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
|
327 |
-
#: ../includes/class-ure-screen-help.php:21
|
328 |
-
msgid "Show deprecated capabilities"
|
329 |
-
msgstr "הצג הרשאות לפי מספר"
|
330 |
-
|
331 |
#
|
332 |
#
|
333 |
#
|
334 |
# wpml-name: a1fbf81a928fffd1bb4665b5af8952ab
|
335 |
-
#: ../includes/ure-role-edit.php:
|
336 |
msgid "If checked, then apply action to ALL sites of this Network"
|
337 |
msgstr "אם סומן, החל פעולה על כל האתרים ברשת זאת"
|
338 |
|
339 |
-
# <?php echo $checked; ?> title="<?php echo $hint;?>" onclick="ure_applyToAllOnClick(this)"/>
|
340 |
-
# <label for="ure_apply_to_all" title="<?php echo $hint;?>"><?php _e('Apply to All Sites', 'ure');?></label>
|
341 |
-
# </div>
|
342 |
-
# wpml-name: 3c3416f05587ed480626948fab988eea
|
343 |
-
#: ../includes/ure-role-edit.php:57
|
344 |
-
msgid "Apply to All Sites"
|
345 |
-
msgstr "החל על כל האתרים"
|
346 |
-
|
347 |
-
# <td style="padding-left: 5px; padding-top: 5px; border-top: 1px solid #ccc;">
|
348 |
-
# <span style="font-weight: bold;"><?php _e('Core capabilities:', 'ure'); ?></span>
|
349 |
-
# <div style="display:table-inline; float: right; margin-right: 12px;">
|
350 |
-
# wpml-name: cca700a30d083e59a9879c24f255abe3
|
351 |
-
#: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:104
|
352 |
-
msgid "Core capabilities:"
|
353 |
-
msgstr "יכולות ליבה:"
|
354 |
-
|
355 |
-
# <div style="display:table-inline; float: right; margin-right: 12px;">
|
356 |
-
# <?php _e('Quick filter:', 'ure'); ?>
|
357 |
-
# <input type="text" id="quick_filter" name="quick_filter" value="" size="20" onkeyup="ure_filter_capabilities(this.value);" />
|
358 |
-
# wpml-name: dfcd600fb9e5ccb12b8bb4d83f45d35a
|
359 |
-
#: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:106
|
360 |
-
msgid "Quick filter:"
|
361 |
-
msgstr "סינון מהיר:"
|
362 |
-
|
363 |
-
# ?>
|
364 |
-
# <span style="font-weight: bold;"><?php _e('Custom capabilities:', 'ure'); ?></span>
|
365 |
-
# <table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
|
366 |
-
# wpml-name: 0e57c9d7615e130906e8fc6e10065ae1
|
367 |
-
#: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:125
|
368 |
-
msgid "Custom capabilities:"
|
369 |
-
msgstr "יכולות מותאמות אישית:"
|
370 |
-
|
371 |
# if (!$this->editor_init0()) {
|
372 |
# $this->show_message(__('Error: wrong request', 'URE'));
|
373 |
# return false;
|
374 |
# wpml-name: a4b9ac7e09dc5996d763f6bae29fd31a
|
375 |
-
#: ../includes/class-ure-lib.php:
|
376 |
msgid "Error: wrong request"
|
377 |
msgstr "שגיאה: בקשה מוטעית"
|
378 |
|
379 |
-
# <form id="ure_add_role_form" name="ure_add_role_form" method="POST">
|
380 |
-
# <div class="ure-label"><?php echo __('Role name (ID): ', 'ure'); ?></div>
|
381 |
-
# <div class="ure-input"><input type="text" name="user_role_id" id="user_role_id" size="25"/></div>
|
382 |
-
# wpml-name: 37b0a122a7eb7b961dc33e61b8d5df10
|
383 |
-
#: ../includes/class-ure-lib.php:173
|
384 |
-
msgid "Role name (ID): "
|
385 |
-
msgstr "שם התפקיד (מזהה): "
|
386 |
-
|
387 |
-
# <div class="ure-input"><input type="text" name="user_role_id" id="user_role_id" size="25"/></div>
|
388 |
-
# <div class="ure-label"><?php echo __('Display Role Name: ', 'ure'); ?></div>
|
389 |
-
# <div class="ure-input"><input type="text" name="user_role_name" id="user_role_name" size="25"/></div>
|
390 |
-
# wpml-name: 246c9066a0e20805752f69f87ffb66af
|
391 |
-
#: ../includes/class-ure-lib.php:175
|
392 |
-
msgid "Display Role Name: "
|
393 |
-
msgstr "הצג שם תפקיד:"
|
394 |
-
|
395 |
-
# <div class="ure-input"><input type="text" name="user_role_name" id="user_role_name" size="25"/></div>
|
396 |
-
# <div class="ure-label"><?php echo __('Make copy of: ', 'ure'); ?></div>
|
397 |
-
# <div class="ure-input"><?php echo $this->role_to_copy_html; ?></div>
|
398 |
-
# wpml-name: 1f2d970e46f567eb2fe77e1f8387f37a
|
399 |
-
#: ../includes/class-ure-lib.php:177
|
400 |
-
msgid "Make copy of: "
|
401 |
-
msgstr "העתק:"
|
402 |
-
|
403 |
-
# <div style="padding:10px;">
|
404 |
-
# <div class="ure-label"><?php _e('Delete:', 'ure');?></div>
|
405 |
-
# <div class="ure-input"><?php echo $this->capability_remove_html; ?></div>
|
406 |
-
# wpml-name: 62f0d909f4edb78b805e4cf6747a4c36
|
407 |
-
#: ../includes/class-ure-lib.php:199
|
408 |
-
msgid "Delete:"
|
409 |
-
msgstr "מחיקה:"
|
410 |
-
|
411 |
-
# <div style="padding:10px;">
|
412 |
-
# <div class="ure-label"><?php echo __('Capability name (ID): ', 'ure'); ?></div>
|
413 |
-
# <div class="ure-input"><input type="text" name="capability_id" id="capability_id" size="25"/></div>
|
414 |
-
# wpml-name: 42eabb45e3d2920f6a763458c3c5fffe
|
415 |
-
#: ../includes/class-ure-lib.php:206
|
416 |
-
msgid "Capability name (ID): "
|
417 |
-
msgstr "שם היכולת (מזהה): "
|
418 |
-
|
419 |
# if (!isset($this->roles[$_POST['user_role']])) {
|
420 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
421 |
# $this->current_role = '';
|
422 |
# wpml-name: f97d2eb0a66987899d02bb180936afa3
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Error: "
|
425 |
msgstr "שגיאה:"
|
426 |
|
@@ -428,7 +359,7 @@ msgstr "שגיאה:"
|
|
428 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
429 |
# $this->current_role = '';
|
430 |
# wpml-name: bbbabdbe1b262f75d99d62880b953be1
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
msgid "Role"
|
433 |
msgstr "סוג משתמש:"
|
434 |
|
@@ -436,7 +367,7 @@ msgstr "סוג משתמש:"
|
|
436 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
437 |
# $this->current_role = '';
|
438 |
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
msgid "does not exist"
|
441 |
msgstr "לא נמצא"
|
442 |
|
@@ -444,7 +375,7 @@ msgstr "לא נמצא"
|
|
444 |
# $mess = __('Role is updated successfully', 'ure');
|
445 |
# } else {
|
446 |
# wpml-name: 9fd866f99b55510d60384b7efeb22018
|
447 |
-
#: ../includes/class-ure-lib.php:
|
448 |
msgid "Role is updated successfully"
|
449 |
msgstr "התפקיד עודכן בהצלחה"
|
450 |
|
@@ -452,7 +383,7 @@ msgstr "התפקיד עודכן בהצלחה"
|
|
452 |
# $mess = __('Roles are updated for all network', 'ure');
|
453 |
# }
|
454 |
# wpml-name: f89c187756348dad944b0fcca790fde6
|
455 |
-
#: ../includes/class-ure-lib.php:
|
456 |
msgid "Roles are updated for all network"
|
457 |
msgstr "התפקידים עודכנו עבור כל הרשת"
|
458 |
|
@@ -460,7 +391,7 @@ msgstr "התפקידים עודכנו עבור כל הרשת"
|
|
460 |
# $mess = __('Error occured during role(s) update', 'ure');
|
461 |
# }
|
462 |
# wpml-name: 9f528ca4741155f636c4331b19f2b170
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Error occured during role(s) update"
|
465 |
msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
|
466 |
|
@@ -468,7 +399,7 @@ msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
|
|
468 |
# $mess = __('User capabilities are updated successfully', 'ure');
|
469 |
# } else {
|
470 |
# wpml-name: ee37618edaa53156b3a18d543ec60412
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "User capabilities are updated successfully"
|
473 |
msgstr "יכולות המשתמש עודכנו בהצלחה"
|
474 |
|
@@ -476,7 +407,7 @@ msgstr "יכולות המשתמש עודכנו בהצלחה"
|
|
476 |
# $mess = __('Error occured during user update', 'ure');
|
477 |
# }
|
478 |
# wpml-name: f7283da5501e7e1cb13255d323859feb
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Error occured during user update"
|
481 |
msgstr "קרתה שגיאה בזמן עדכון המשתמש"
|
482 |
|
@@ -484,7 +415,7 @@ msgstr "קרתה שגיאה בזמן עדכון המשתמש"
|
|
484 |
# $this->notification = __('User Roles are restored to WordPress default values. ', 'ure');
|
485 |
# } else if ($action == 'update') {
|
486 |
# wpml-name: 7182950b4f92d446844be24cfea6276a
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "User Roles are restored to WordPress default values. "
|
489 |
msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל של וורדפרס."
|
490 |
|
@@ -492,7 +423,7 @@ msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל ש
|
|
492 |
# $link = '<a href="' . $url . '" title="read about ' . $capability . ' user capability" target="new"><img src="' . URE_PLUGIN_URL . '/images/help.png" alt="' . __('Help', 'ure') . '" /></a>';
|
493 |
# } else {
|
494 |
# wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Help"
|
497 |
msgstr "עזרה"
|
498 |
|
@@ -500,7 +431,7 @@ msgstr "עזרה"
|
|
500 |
# $this->show_message('Error! ' . __('Error is occur. Please check the log file.', 'ure'));
|
501 |
# }
|
502 |
# wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Error is occur. Please check the log file."
|
505 |
msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
506 |
|
@@ -508,18 +439,24 @@ msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
|
508 |
# return __('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'ure');
|
509 |
# }
|
510 |
# wpml-name: f9182094e24a9e2fbb7317b1724a69c9
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid ""
|
513 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
514 |
"only!"
|
515 |
msgstr ""
|
516 |
"שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
|
517 |
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
# if (isset($wp_roles->roles[$user_role_id])) {
|
519 |
# return sprintf('Error! ' . __('Role %s exists already', 'ure'), $user_role_id);
|
520 |
# }
|
521 |
# wpml-name: 61b6d86154b5437be56e6565f2820391
|
522 |
-
#: ../includes/class-ure-lib.php:
|
523 |
#, php-format
|
524 |
msgid "Role %s exists already"
|
525 |
msgstr "סוג המשתמש %s כבר קיים"
|
@@ -528,7 +465,7 @@ msgstr "סוג המשתמש %s כבר קיים"
|
|
528 |
# $mess = 'Error! ' . __('Error is encountered during new role create operation', 'ure');
|
529 |
# } else {
|
530 |
# wpml-name: e0618b1a4160611a46b1b95acab0821c
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Error is encountered during new role create operation"
|
533 |
msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
534 |
|
@@ -536,7 +473,7 @@ msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
|
536 |
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
537 |
# }
|
538 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
#, php-format
|
541 |
msgid "Role %s is created successfully"
|
542 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
@@ -545,7 +482,7 @@ msgstr "סוג המשתמש %s נוצר בהצלחה"
|
|
545 |
# $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
|
546 |
# } else {
|
547 |
# wpml-name: 5ca27dda122445e597586a22e18088e6
|
548 |
-
#: ../includes/class-ure-lib.php:
|
549 |
msgid "Error encountered during role delete operation"
|
550 |
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
551 |
|
@@ -553,7 +490,7 @@ msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המ
|
|
553 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
554 |
# }
|
555 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
556 |
-
#: ../includes/class-ure-lib.php:
|
557 |
msgid "Unused roles are deleted successfully"
|
558 |
msgstr ""
|
559 |
|
@@ -561,7 +498,7 @@ msgstr ""
|
|
561 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
562 |
# }
|
563 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
564 |
-
#: ../includes/class-ure-lib.php:
|
565 |
#, php-format
|
566 |
msgid "Role %s is deleted successfully"
|
567 |
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
@@ -570,7 +507,7 @@ msgstr "סוג המשתמש %s נמחק בהצלחה"
|
|
570 |
# $errorMessage = 'Error! ' . __('Error encountered during default role change operation', 'ure');
|
571 |
# if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
|
572 |
# wpml-name: b64bfe4842bc0638b79a24687976394e
|
573 |
-
#: ../includes/class-ure-lib.php:
|
574 |
msgid "Error encountered during default role change operation"
|
575 |
msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
|
576 |
|
@@ -578,7 +515,7 @@ msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמ
|
|
578 |
# $mess = sprintf(__('Default role for new users is set to %s successfully', 'ure'), $wp_roles->role_names[$user_role_id]);
|
579 |
# }
|
580 |
# wpml-name: 94978d82edc73eba0f44bc7bceb299f4
|
581 |
-
#: ../includes/class-ure-lib.php:
|
582 |
#, php-format
|
583 |
msgid "Default role for new users is set to %s successfully"
|
584 |
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
@@ -587,7 +524,7 @@ msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
|
587 |
# __('Editor', 'ure');
|
588 |
# __('Author', 'ure');
|
589 |
# wpml-name: 344a7f427fb765610ef96eb7bce95257
|
590 |
-
#: ../includes/class-ure-lib.php:
|
591 |
msgid "Editor"
|
592 |
msgstr "עורך"
|
593 |
|
@@ -595,7 +532,7 @@ msgstr "עורך"
|
|
595 |
# __('Author', 'ure');
|
596 |
# __('Contributor', 'ure');
|
597 |
# wpml-name: a517747c3d12f99244ae598910d979c5
|
598 |
-
#: ../includes/class-ure-lib.php:
|
599 |
msgid "Author"
|
600 |
msgstr "כותב"
|
601 |
|
@@ -603,7 +540,7 @@ msgstr "כותב"
|
|
603 |
# __('Contributor', 'ure');
|
604 |
# __('Subscriber', 'ure');
|
605 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
606 |
-
#: ../includes/class-ure-lib.php:
|
607 |
msgid "Contributor"
|
608 |
msgstr "תורם"
|
609 |
|
@@ -611,7 +548,7 @@ msgstr "תורם"
|
|
611 |
# __('Subscriber', 'ure');
|
612 |
# // Standard WordPress capabilities
|
613 |
# wpml-name: 992c4a5b4628d8ebf671cf460254ee81
|
614 |
-
#: ../includes/class-ure-lib.php:
|
615 |
msgid "Subscriber"
|
616 |
msgstr "מנוי"
|
617 |
|
@@ -619,7 +556,7 @@ msgstr "מנוי"
|
|
619 |
# __('Switch themes', 'ure');
|
620 |
# __('Edit themes', 'ure');
|
621 |
# wpml-name: 87d980c0c79638536655ce7fa0a4b85d
|
622 |
-
#: ../includes/class-ure-lib.php:
|
623 |
msgid "Switch themes"
|
624 |
msgstr "החלפת תבניות"
|
625 |
|
@@ -627,7 +564,7 @@ msgstr "החלפת תבניות"
|
|
627 |
# __('Edit themes', 'ure');
|
628 |
# __('Activate plugins', 'ure');
|
629 |
# wpml-name: 8395d1904c778ee1b2762e07a6a03878
|
630 |
-
#: ../includes/class-ure-lib.php:
|
631 |
msgid "Edit themes"
|
632 |
msgstr "עריכת תבניות"
|
633 |
|
@@ -635,7 +572,7 @@ msgstr "עריכת תבניות"
|
|
635 |
# __('Activate plugins', 'ure');
|
636 |
# __('Edit plugins', 'ure');
|
637 |
# wpml-name: c38bc47406355ef06ad3e10a98505536
|
638 |
-
#: ../includes/class-ure-lib.php:
|
639 |
msgid "Activate plugins"
|
640 |
msgstr "הפעלת תוספים"
|
641 |
|
@@ -643,7 +580,7 @@ msgstr "הפעלת תוספים"
|
|
643 |
# __('Edit plugins', 'ure');
|
644 |
# __('Edit users', 'ure');
|
645 |
# wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
|
646 |
-
#: ../includes/class-ure-lib.php:
|
647 |
msgid "Edit plugins"
|
648 |
msgstr "עריכת תוספים"
|
649 |
|
@@ -651,7 +588,7 @@ msgstr "עריכת תוספים"
|
|
651 |
# __('Edit users', 'ure');
|
652 |
# __('Edit files', 'ure');
|
653 |
# wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
|
654 |
-
#: ../includes/class-ure-lib.php:
|
655 |
msgid "Edit users"
|
656 |
msgstr "עריכת משתמשים"
|
657 |
|
@@ -659,7 +596,7 @@ msgstr "עריכת משתמשים"
|
|
659 |
# __('Edit files', 'ure');
|
660 |
# __('Manage options', 'ure');
|
661 |
# wpml-name: 91c6e7a54b91cdc161f71958c597ed11
|
662 |
-
#: ../includes/class-ure-lib.php:
|
663 |
msgid "Edit files"
|
664 |
msgstr "עריכת קבצים"
|
665 |
|
@@ -667,7 +604,7 @@ msgstr "עריכת קבצים"
|
|
667 |
# __('Manage options', 'ure');
|
668 |
# __('Moderate comments', 'ure');
|
669 |
# wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
|
670 |
-
#: ../includes/class-ure-lib.php:
|
671 |
msgid "Manage options"
|
672 |
msgstr "ניהול אפשרויות אתר"
|
673 |
|
@@ -675,7 +612,7 @@ msgstr "ניהול אפשרויות אתר"
|
|
675 |
# __('Moderate comments', 'ure');
|
676 |
# __('Manage categories', 'ure');
|
677 |
# wpml-name: abb293cb5d17f4acca429ea13d74c593
|
678 |
-
#: ../includes/class-ure-lib.php:
|
679 |
msgid "Moderate comments"
|
680 |
msgstr "ניהול תגובות"
|
681 |
|
@@ -683,7 +620,7 @@ msgstr "ניהול תגובות"
|
|
683 |
# __('Manage categories', 'ure');
|
684 |
# __('Manage links', 'ure');
|
685 |
# wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
|
686 |
-
#: ../includes/class-ure-lib.php:
|
687 |
msgid "Manage categories"
|
688 |
msgstr "ניהול קטגוריות"
|
689 |
|
@@ -691,7 +628,7 @@ msgstr "ניהול קטגוריות"
|
|
691 |
# __('Manage links', 'ure');
|
692 |
# __('Upload files', 'ure');
|
693 |
# wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
|
694 |
-
#: ../includes/class-ure-lib.php:
|
695 |
msgid "Manage links"
|
696 |
msgstr "ניהול קישורים"
|
697 |
|
@@ -699,7 +636,7 @@ msgstr "ניהול קישורים"
|
|
699 |
# __('Upload files', 'ure');
|
700 |
# __('Import', 'ure');
|
701 |
# wpml-name: c7de86f69db264c3950d8ae46ed2e33f
|
702 |
-
#: ../includes/class-ure-lib.php:
|
703 |
msgid "Upload files"
|
704 |
msgstr "העלאת קבצים"
|
705 |
|
@@ -707,7 +644,7 @@ msgstr "העלאת קבצים"
|
|
707 |
# __('Import', 'ure');
|
708 |
# __('Unfiltered html', 'ure');
|
709 |
# wpml-name: 72d6d7a1885885bb55a565fd1070581a
|
710 |
-
#: ../includes/class-ure-lib.php:
|
711 |
msgid "Import"
|
712 |
msgstr "יבוא"
|
713 |
|
@@ -715,7 +652,7 @@ msgstr "יבוא"
|
|
715 |
# __('Unfiltered html', 'ure');
|
716 |
# __('Edit posts', 'ure');
|
717 |
# wpml-name: fdd95e5640d6d73230b7544ac261457a
|
718 |
-
#: ../includes/class-ure-lib.php:
|
719 |
msgid "Unfiltered html"
|
720 |
msgstr "עריכת HTML"
|
721 |
|
@@ -723,7 +660,7 @@ msgstr "עריכת HTML"
|
|
723 |
# __('Edit posts', 'ure');
|
724 |
# __('Edit others posts', 'ure');
|
725 |
# wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
|
726 |
-
#: ../includes/class-ure-lib.php:
|
727 |
msgid "Edit posts"
|
728 |
msgstr "עריכת פוסטים"
|
729 |
|
@@ -731,7 +668,7 @@ msgstr "עריכת פוסטים"
|
|
731 |
# __('Edit others posts', 'ure');
|
732 |
# __('Edit published posts', 'ure');
|
733 |
# wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
|
734 |
-
#: ../includes/class-ure-lib.php:
|
735 |
msgid "Edit others posts"
|
736 |
msgstr "עריכת פוסטים של אחרים"
|
737 |
|
@@ -739,7 +676,7 @@ msgstr "עריכת פוסטים של אחרים"
|
|
739 |
# __('Edit published posts', 'ure');
|
740 |
# __('Publish posts', 'ure');
|
741 |
# wpml-name: d42efc04e7900de59ed3667c971e9e9d
|
742 |
-
#: ../includes/class-ure-lib.php:
|
743 |
msgid "Edit published posts"
|
744 |
msgstr "עריכת פוסטים שפורסמו"
|
745 |
|
@@ -747,7 +684,7 @@ msgstr "עריכת פוסטים שפורסמו"
|
|
747 |
# __('Publish posts', 'ure');
|
748 |
# __('Edit pages', 'ure');
|
749 |
# wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
|
750 |
-
#: ../includes/class-ure-lib.php:
|
751 |
msgid "Publish posts"
|
752 |
msgstr "פוסטים שפורסמו"
|
753 |
|
@@ -755,7 +692,7 @@ msgstr "פוסטים שפורסמו"
|
|
755 |
# __('Edit pages', 'ure');
|
756 |
# __('Read', 'ure');
|
757 |
# wpml-name: e7a51430fa0fbb32587c083ffae4b525
|
758 |
-
#: ../includes/class-ure-lib.php:
|
759 |
msgid "Edit pages"
|
760 |
msgstr "עריכת עמודים"
|
761 |
|
@@ -763,7 +700,7 @@ msgstr "עריכת עמודים"
|
|
763 |
# __('Read', 'ure');
|
764 |
# __('Level 10', 'ure');
|
765 |
# wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
|
766 |
-
#: ../includes/class-ure-lib.php:
|
767 |
msgid "Read"
|
768 |
msgstr "קורא"
|
769 |
|
@@ -771,7 +708,7 @@ msgstr "קורא"
|
|
771 |
# __('Level 10', 'ure');
|
772 |
# __('Level 9', 'ure');
|
773 |
# wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
|
774 |
-
#: ../includes/class-ure-lib.php:
|
775 |
msgid "Level 10"
|
776 |
msgstr "דרגה 10"
|
777 |
|
@@ -779,7 +716,7 @@ msgstr "דרגה 10"
|
|
779 |
# __('Level 9', 'ure');
|
780 |
# __('Level 8', 'ure');
|
781 |
# wpml-name: d48252bc9cffec4bed5028a7c71d8196
|
782 |
-
#: ../includes/class-ure-lib.php:
|
783 |
msgid "Level 9"
|
784 |
msgstr "דרגה 9"
|
785 |
|
@@ -787,7 +724,7 @@ msgstr "דרגה 9"
|
|
787 |
# __('Level 8', 'ure');
|
788 |
# __('Level 7', 'ure');
|
789 |
# wpml-name: 625fef0c34a92b3685266a47f16c85dd
|
790 |
-
#: ../includes/class-ure-lib.php:
|
791 |
msgid "Level 8"
|
792 |
msgstr "דרגה 8"
|
793 |
|
@@ -795,7 +732,7 @@ msgstr "דרגה 8"
|
|
795 |
# __('Level 7', 'ure');
|
796 |
# __('Level 6', 'ure');
|
797 |
# wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
|
798 |
-
#: ../includes/class-ure-lib.php:
|
799 |
msgid "Level 7"
|
800 |
msgstr "דרגה 7"
|
801 |
|
@@ -803,7 +740,7 @@ msgstr "דרגה 7"
|
|
803 |
# __('Level 6', 'ure');
|
804 |
# __('Level 5', 'ure');
|
805 |
# wpml-name: b30ce92fb9295725ef29254ba5ae17e1
|
806 |
-
#: ../includes/class-ure-lib.php:
|
807 |
msgid "Level 6"
|
808 |
msgstr "דרגה 6"
|
809 |
|
@@ -811,7 +748,7 @@ msgstr "דרגה 6"
|
|
811 |
# __('Level 5', 'ure');
|
812 |
# __('Level 4', 'ure');
|
813 |
# wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
|
814 |
-
#: ../includes/class-ure-lib.php:
|
815 |
msgid "Level 5"
|
816 |
msgstr "דרגה 5"
|
817 |
|
@@ -819,7 +756,7 @@ msgstr "דרגה 5"
|
|
819 |
# __('Level 4', 'ure');
|
820 |
# __('Level 3', 'ure');
|
821 |
# wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
|
822 |
-
#: ../includes/class-ure-lib.php:
|
823 |
msgid "Level 4"
|
824 |
msgstr "דרגה 4"
|
825 |
|
@@ -827,7 +764,7 @@ msgstr "דרגה 4"
|
|
827 |
# __('Level 3', 'ure');
|
828 |
# __('Level 2', 'ure');
|
829 |
# wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
|
830 |
-
#: ../includes/class-ure-lib.php:
|
831 |
msgid "Level 3"
|
832 |
msgstr "דרגה 3"
|
833 |
|
@@ -835,7 +772,7 @@ msgstr "דרגה 3"
|
|
835 |
# __('Level 2', 'ure');
|
836 |
# __('Level 1', 'ure');
|
837 |
# wpml-name: 228e9da47384bacde793a2b78d488bb0
|
838 |
-
#: ../includes/class-ure-lib.php:
|
839 |
msgid "Level 2"
|
840 |
msgstr "דרגה 2"
|
841 |
|
@@ -843,7 +780,7 @@ msgstr "דרגה 2"
|
|
843 |
# __('Level 1', 'ure');
|
844 |
# __('Level 0', 'ure');
|
845 |
# wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
|
846 |
-
#: ../includes/class-ure-lib.php:
|
847 |
msgid "Level 1"
|
848 |
msgstr "דרגה 1"
|
849 |
|
@@ -851,7 +788,7 @@ msgstr "דרגה 1"
|
|
851 |
# __('Level 0', 'ure');
|
852 |
# __('Edit others pages', 'ure');
|
853 |
# wpml-name: 057e95a59e032dbed970592dd1245092
|
854 |
-
#: ../includes/class-ure-lib.php:
|
855 |
msgid "Level 0"
|
856 |
msgstr "דרגה 0"
|
857 |
|
@@ -859,7 +796,7 @@ msgstr "דרגה 0"
|
|
859 |
# __('Edit others pages', 'ure');
|
860 |
# __('Edit published pages', 'ure');
|
861 |
# wpml-name: b10af907824940fe6a5aa0a77c62be6f
|
862 |
-
#: ../includes/class-ure-lib.php:
|
863 |
msgid "Edit others pages"
|
864 |
msgstr "עריכת דפים של אחרים"
|
865 |
|
@@ -867,7 +804,7 @@ msgstr "עריכת דפים של אחרים"
|
|
867 |
# __('Edit published pages', 'ure');
|
868 |
# __('Publish pages', 'ure');
|
869 |
# wpml-name: c5bfc24b0b891c9465134b83b2c6c259
|
870 |
-
#: ../includes/class-ure-lib.php:
|
871 |
msgid "Edit published pages"
|
872 |
msgstr "עריכת דפים שפורסמו"
|
873 |
|
@@ -875,7 +812,7 @@ msgstr "עריכת דפים שפורסמו"
|
|
875 |
# __('Publish pages', 'ure');
|
876 |
# __('Delete pages', 'ure');
|
877 |
# wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
|
878 |
-
#: ../includes/class-ure-lib.php:
|
879 |
msgid "Publish pages"
|
880 |
msgstr "פרסום דפים"
|
881 |
|
@@ -883,7 +820,7 @@ msgstr "פרסום דפים"
|
|
883 |
# __('Delete pages', 'ure');
|
884 |
# __('Delete others pages', 'ure');
|
885 |
# wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
|
886 |
-
#: ../includes/class-ure-lib.php:
|
887 |
msgid "Delete pages"
|
888 |
msgstr "מחיקת דפים"
|
889 |
|
@@ -891,7 +828,7 @@ msgstr "מחיקת דפים"
|
|
891 |
# __('Delete others pages', 'ure');
|
892 |
# __('Delete published pages', 'ure');
|
893 |
# wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
|
894 |
-
#: ../includes/class-ure-lib.php:
|
895 |
msgid "Delete others pages"
|
896 |
msgstr "מחיקת דפים של אחרים"
|
897 |
|
@@ -899,7 +836,7 @@ msgstr "מחיקת דפים של אחרים"
|
|
899 |
# __('Delete published pages', 'ure');
|
900 |
# __('Delete posts', 'ure');
|
901 |
# wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
|
902 |
-
#: ../includes/class-ure-lib.php:
|
903 |
msgid "Delete published pages"
|
904 |
msgstr "מחיקת דפים שפורסמו"
|
905 |
|
@@ -907,7 +844,7 @@ msgstr "מחיקת דפים שפורסמו"
|
|
907 |
# __('Delete posts', 'ure');
|
908 |
# __('Delete others posts', 'ure');
|
909 |
# wpml-name: 3dce6f688c85f06c63224b5c3be13919
|
910 |
-
#: ../includes/class-ure-lib.php:
|
911 |
msgid "Delete posts"
|
912 |
msgstr "מחיקת פוסטים"
|
913 |
|
@@ -915,7 +852,7 @@ msgstr "מחיקת פוסטים"
|
|
915 |
# __('Delete others posts', 'ure');
|
916 |
# __('Delete published posts', 'ure');
|
917 |
# wpml-name: c0496287732814df690c8966027a58d6
|
918 |
-
#: ../includes/class-ure-lib.php:
|
919 |
msgid "Delete others posts"
|
920 |
msgstr "מחיקת פוסטים של אחרים"
|
921 |
|
@@ -923,7 +860,7 @@ msgstr "מחיקת פוסטים של אחרים"
|
|
923 |
# __('Delete published posts', 'ure');
|
924 |
# __('Delete private posts', 'ure');
|
925 |
# wpml-name: b0a2d2039494d73f81f4e476bfda24da
|
926 |
-
#: ../includes/class-ure-lib.php:
|
927 |
msgid "Delete published posts"
|
928 |
msgstr "מחיקת פוסטים שפורסמו"
|
929 |
|
@@ -931,7 +868,7 @@ msgstr "מחיקת פוסטים שפורסמו"
|
|
931 |
# __('Delete private posts', 'ure');
|
932 |
# __('Edit private posts', 'ure');
|
933 |
# wpml-name: dcd02c374764e49b36f0f959cc2917bb
|
934 |
-
#: ../includes/class-ure-lib.php:
|
935 |
msgid "Delete private posts"
|
936 |
msgstr "מחיקת פוסטים פרטיים"
|
937 |
|
@@ -939,7 +876,7 @@ msgstr "מחיקת פוסטים פרטיים"
|
|
939 |
# __('Edit private posts', 'ure');
|
940 |
# __('Read private posts', 'ure');
|
941 |
# wpml-name: da9ee842794f7caf9fa32271073d5f7a
|
942 |
-
#: ../includes/class-ure-lib.php:
|
943 |
msgid "Edit private posts"
|
944 |
msgstr "עריכת פוסטים פרטיים"
|
945 |
|
@@ -947,7 +884,7 @@ msgstr "עריכת פוסטים פרטיים"
|
|
947 |
# __('Read private posts', 'ure');
|
948 |
# __('Delete private pages', 'ure');
|
949 |
# wpml-name: eab0355307288f6480f8c53a0d953d79
|
950 |
-
#: ../includes/class-ure-lib.php:
|
951 |
msgid "Read private posts"
|
952 |
msgstr "קריאת פוסטים פרטיים"
|
953 |
|
@@ -955,7 +892,7 @@ msgstr "קריאת פוסטים פרטיים"
|
|
955 |
# __('Delete private pages', 'ure');
|
956 |
# __('Edit private pages', 'ure');
|
957 |
# wpml-name: 2136c12e2beeadfe0da80a36ef967eca
|
958 |
-
#: ../includes/class-ure-lib.php:
|
959 |
msgid "Delete private pages"
|
960 |
msgstr "מחיקת עמודים פרטיים"
|
961 |
|
@@ -963,7 +900,7 @@ msgstr "מחיקת עמודים פרטיים"
|
|
963 |
# __('Edit private pages', 'ure');
|
964 |
# __('Read private pages', 'ure');
|
965 |
# wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
|
966 |
-
#: ../includes/class-ure-lib.php:
|
967 |
msgid "Edit private pages"
|
968 |
msgstr "מחיקת עמודים פרטיים"
|
969 |
|
@@ -971,7 +908,7 @@ msgstr "מחיקת עמודים פרטיים"
|
|
971 |
# __('Read private pages', 'ure');
|
972 |
# __('Delete users', 'ure');
|
973 |
# wpml-name: 5faa3f2e9585e107dc5f23748a825882
|
974 |
-
#: ../includes/class-ure-lib.php:
|
975 |
msgid "Read private pages"
|
976 |
msgstr "קריאת עמודים פרטיים"
|
977 |
|
@@ -979,7 +916,7 @@ msgstr "קריאת עמודים פרטיים"
|
|
979 |
# __('Delete users', 'ure');
|
980 |
# __('Create users', 'ure');
|
981 |
# wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
|
982 |
-
#: ../includes/class-ure-lib.php:
|
983 |
msgid "Delete users"
|
984 |
msgstr "מחיקת משתמשים"
|
985 |
|
@@ -987,7 +924,7 @@ msgstr "מחיקת משתמשים"
|
|
987 |
# __('Create users', 'ure');
|
988 |
# __('Unfiltered upload', 'ure');
|
989 |
# wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
|
990 |
-
#: ../includes/class-ure-lib.php:
|
991 |
msgid "Create users"
|
992 |
msgstr "יצירת משתמשים"
|
993 |
|
@@ -995,7 +932,7 @@ msgstr "יצירת משתמשים"
|
|
995 |
# __('Unfiltered upload', 'ure');
|
996 |
# __('Edit dashboard', 'ure');
|
997 |
# wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
|
998 |
-
#: ../includes/class-ure-lib.php:
|
999 |
msgid "Unfiltered upload"
|
1000 |
msgstr "העלאת קבצים חופשית"
|
1001 |
|
@@ -1003,7 +940,7 @@ msgstr "העלאת קבצים חופשית"
|
|
1003 |
# __('Edit dashboard', 'ure');
|
1004 |
# __('Update plugins', 'ure');
|
1005 |
# wpml-name: b5577d27ebfdd60a3bda83ae726d574b
|
1006 |
-
#: ../includes/class-ure-lib.php:
|
1007 |
msgid "Edit dashboard"
|
1008 |
msgstr "שינוי לוח הבקרה"
|
1009 |
|
@@ -1011,7 +948,7 @@ msgstr "שינוי לוח הבקרה"
|
|
1011 |
# __('Update plugins', 'ure');
|
1012 |
# __('Delete plugins', 'ure');
|
1013 |
# wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
|
1014 |
-
#: ../includes/class-ure-lib.php:
|
1015 |
msgid "Update plugins"
|
1016 |
msgstr "עדכון תוספים"
|
1017 |
|
@@ -1019,7 +956,7 @@ msgstr "עדכון תוספים"
|
|
1019 |
# __('Delete plugins', 'ure');
|
1020 |
# __('Install plugins', 'ure');
|
1021 |
# wpml-name: f2a839940dae3934317d8d6a6f647ebd
|
1022 |
-
#: ../includes/class-ure-lib.php:
|
1023 |
msgid "Delete plugins"
|
1024 |
msgstr "מחיקת תוספים"
|
1025 |
|
@@ -1027,7 +964,7 @@ msgstr "מחיקת תוספים"
|
|
1027 |
# __('Install plugins', 'ure');
|
1028 |
# __('Update themes', 'ure');
|
1029 |
# wpml-name: 9d06472988c53bfc768bc7b6a788b697
|
1030 |
-
#: ../includes/class-ure-lib.php:
|
1031 |
msgid "Install plugins"
|
1032 |
msgstr "התקנת תוספים"
|
1033 |
|
@@ -1035,7 +972,7 @@ msgstr "התקנת תוספים"
|
|
1035 |
# __('Update themes', 'ure');
|
1036 |
# __('Install themes', 'ure');
|
1037 |
# wpml-name: 504ea4a27260ac1e8822c5877ffe526b
|
1038 |
-
#: ../includes/class-ure-lib.php:
|
1039 |
msgid "Update themes"
|
1040 |
msgstr "עדכון תבניות"
|
1041 |
|
@@ -1043,7 +980,7 @@ msgstr "עדכון תבניות"
|
|
1043 |
# __('Install themes', 'ure');
|
1044 |
# __('Update core', 'ure');
|
1045 |
# wpml-name: a7d67fb17876569a4590902d3566a6fd
|
1046 |
-
#: ../includes/class-ure-lib.php:
|
1047 |
msgid "Install themes"
|
1048 |
msgstr "התקנת תבניות חדשות"
|
1049 |
|
@@ -1051,7 +988,7 @@ msgstr "התקנת תבניות חדשות"
|
|
1051 |
# __('Update core', 'ure');
|
1052 |
# __('List users', 'ure');
|
1053 |
# wpml-name: e56e5b87db548cd42be7a8a0f916205d
|
1054 |
-
#: ../includes/class-ure-lib.php:
|
1055 |
msgid "Update core"
|
1056 |
msgstr "עדכון וורדפרס"
|
1057 |
|
@@ -1059,7 +996,7 @@ msgstr "עדכון וורדפרס"
|
|
1059 |
# __('List users', 'ure');
|
1060 |
# __('Remove users', 'ure');
|
1061 |
# wpml-name: f923f903857a5387d3db70494e074632
|
1062 |
-
#: ../includes/class-ure-lib.php:
|
1063 |
msgid "List users"
|
1064 |
msgstr "בצפייה במשתמשים"
|
1065 |
|
@@ -1067,7 +1004,7 @@ msgstr "בצפייה במשתמשים"
|
|
1067 |
# __('Remove users', 'ure');
|
1068 |
# __('Add users', 'ure');
|
1069 |
# wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
|
1070 |
-
#: ../includes/class-ure-lib.php:
|
1071 |
msgid "Remove users"
|
1072 |
msgstr "הסרת משתמשים"
|
1073 |
|
@@ -1075,7 +1012,7 @@ msgstr "הסרת משתמשים"
|
|
1075 |
# __('Add users', 'ure');
|
1076 |
# __('Promote users', 'ure');
|
1077 |
# wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
|
1078 |
-
#: ../includes/class-ure-lib.php:
|
1079 |
msgid "Add users"
|
1080 |
msgstr "הוספת משתמשים"
|
1081 |
|
@@ -1083,7 +1020,7 @@ msgstr "הוספת משתמשים"
|
|
1083 |
# __('Promote users', 'ure');
|
1084 |
# __('Edit theme options', 'ure');
|
1085 |
# wpml-name: 12f4ba95cdfd04b791820b9c20887913
|
1086 |
-
#: ../includes/class-ure-lib.php:
|
1087 |
msgid "Promote users"
|
1088 |
msgstr "שינוי משתמשים"
|
1089 |
|
@@ -1091,7 +1028,7 @@ msgstr "שינוי משתמשים"
|
|
1091 |
# __('Edit theme options', 'ure');
|
1092 |
# __('Delete themes', 'ure');
|
1093 |
# wpml-name: 8841974497684dad4d55beaf2b6c52ef
|
1094 |
-
#: ../includes/class-ure-lib.php:
|
1095 |
msgid "Edit theme options"
|
1096 |
msgstr "עריכת אפשרויות התבנית"
|
1097 |
|
@@ -1099,7 +1036,7 @@ msgstr "עריכת אפשרויות התבנית"
|
|
1099 |
# __('Delete themes', 'ure');
|
1100 |
# __('Export', 'ure');
|
1101 |
# wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
|
1102 |
-
#: ../includes/class-ure-lib.php:
|
1103 |
msgid "Delete themes"
|
1104 |
msgstr "מחיקת תבניות"
|
1105 |
|
@@ -1107,7 +1044,7 @@ msgstr "מחיקת תבניות"
|
|
1107 |
# __('Export', 'ure');
|
1108 |
# }
|
1109 |
# wpml-name: 0095a9fa74d1713e43e370a7d7846224
|
1110 |
-
#: ../includes/class-ure-lib.php:
|
1111 |
msgid "Export"
|
1112 |
msgstr "ייצוא תוכן"
|
1113 |
|
@@ -1115,7 +1052,7 @@ msgstr "ייצוא תוכן"
|
|
1115 |
# return 'Error! ' . __('Error: Capability name must contain latin characters and digits only!', 'ure');
|
1116 |
# ;
|
1117 |
# wpml-name: 03766b9586d3012af6fc788e85d39530
|
1118 |
-
#: ../includes/class-ure-lib.php:
|
1119 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
1120 |
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
1121 |
|
@@ -1123,7 +1060,7 @@ msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגל
|
|
1123 |
# $mess = sprintf(__('Capability %s is added successfully', 'ure'), $user_capability);
|
1124 |
# } else {
|
1125 |
# wpml-name: 6dcaae98207ba2673da987515b02fe31
|
1126 |
-
#: ../includes/class-ure-lib.php:
|
1127 |
#, php-format
|
1128 |
msgid "Capability %s is added successfully"
|
1129 |
msgstr "היכולת %s נוספה בהצלחה"
|
@@ -1132,7 +1069,7 @@ msgstr "היכולת %s נוספה בהצלחה"
|
|
1132 |
# $mess = sprintf('Error! ' . __('Capability %s exists already', 'ure'), $user_capability);
|
1133 |
# }
|
1134 |
# wpml-name: d5c1ec0556aadfa88cadffb62266b83d
|
1135 |
-
#: ../includes/class-ure-lib.php:
|
1136 |
#, php-format
|
1137 |
msgid "Capability %s exists already"
|
1138 |
msgstr "כבר קיימת יכולת בשם %s"
|
@@ -1141,7 +1078,7 @@ msgstr "כבר קיימת יכולת בשם %s"
|
|
1141 |
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
1142 |
# }
|
1143 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
1144 |
-
#: ../includes/class-ure-lib.php:
|
1145 |
#, php-format
|
1146 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
1147 |
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
@@ -1150,24 +1087,16 @@ msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
|
1150 |
# $mess = sprintf(__('Capability %s is removed successfully', 'ure'), $capability_id);
|
1151 |
# }
|
1152 |
# wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
|
1153 |
-
#: ../includes/class-ure-lib.php:
|
1154 |
#, php-format
|
1155 |
msgid "Capability %s is removed successfully"
|
1156 |
msgstr "היכולת %s הוסרה בהצלחה"
|
1157 |
|
1158 |
-
# protected function about() {
|
1159 |
-
# $this->display_box_start(__('About this Plugin:', 'ure'));
|
1160 |
-
# ?>
|
1161 |
-
# wpml-name: 426a0f7faa99074ad799f9923e41aff4
|
1162 |
-
#: ../includes/class-ure-lib.php:2085
|
1163 |
-
msgid "About this Plugin:"
|
1164 |
-
msgstr "אודות תוסף זה:"
|
1165 |
-
|
1166 |
# ?>
|
1167 |
# <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>
|
1168 |
# <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>
|
1169 |
# wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
|
1170 |
-
#: ../includes/class-ure-lib.php:
|
1171 |
msgid "Author's website"
|
1172 |
msgstr "אתר היוצר"
|
1173 |
|
@@ -1175,15 +1104,24 @@ msgstr "אתר היוצר"
|
|
1175 |
# <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>
|
1176 |
# <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>
|
1177 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1178 |
-
#: ../includes/class-ure-lib.php:
|
1179 |
msgid "Plugin webpage"
|
1180 |
msgstr "דף התוסף"
|
1181 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1182 |
# <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>
|
1183 |
# <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>
|
1184 |
# <?php
|
1185 |
# wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
|
1186 |
-
#: ../includes/class-ure-lib.php:
|
1187 |
msgid "FAQ"
|
1188 |
msgstr "שאלות נפוצות"
|
1189 |
|
@@ -1191,7 +1129,7 @@ msgstr "שאלות נפוצות"
|
|
1191 |
# <option value="none" selected="selected">' . __('None', 'ure') . '</option>';
|
1192 |
# $this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
|
1193 |
# wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
|
1194 |
-
#: ../includes/class-ure-lib.php:
|
1195 |
msgid "None"
|
1196 |
msgstr "תרום"
|
1197 |
|
@@ -1199,11 +1137,11 @@ msgstr "תרום"
|
|
1199 |
#
|
1200 |
#
|
1201 |
# wpml-name: 7aa3fd37413ab803143d28fcc65287cf
|
1202 |
-
#: ../includes/class-ure-lib.php:
|
1203 |
msgid "Delete All Unused Roles"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: ../includes/class-ure-lib.php:
|
1207 |
msgid "— No role for this site —"
|
1208 |
msgstr ""
|
1209 |
|
@@ -1223,30 +1161,6 @@ msgstr "מנהל-על של רשת"
|
|
1223 |
msgid "Change capabilities for user"
|
1224 |
msgstr "שינוי יכולות המשתמש"
|
1225 |
|
1226 |
-
# <td class="ure-user-roles">
|
1227 |
-
# <div style="margin-bottom: 5px; font-weight: bold;"><?php echo __('Primary Role:', 'ure'); ?></div>
|
1228 |
-
# <?php
|
1229 |
-
# wpml-name: 670867664b460254a4dfcb782c811472
|
1230 |
-
#: ../includes/ure-user-edit.php:66
|
1231 |
-
msgid "Primary Role:"
|
1232 |
-
msgstr "תפקיד עיקרי:"
|
1233 |
-
|
1234 |
-
# ?>
|
1235 |
-
# <div style="margin-top: 5px;margin-bottom: 5px; font-weight: bold;"><?php echo __('bbPress Role:', 'ure'); ?></div>
|
1236 |
-
# <?php
|
1237 |
-
# wpml-name: 918b62d985dd5ef7af537376c0a8273b
|
1238 |
-
#: ../includes/ure-user-edit.php:75
|
1239 |
-
msgid "bbPress Role:"
|
1240 |
-
msgstr "תפקיד bbPress:"
|
1241 |
-
|
1242 |
-
# ?>
|
1243 |
-
# <div style="margin-top: 5px;margin-bottom: 5px; font-weight: bold;"><?php echo __('Other Roles:', 'ure'); ?></div>
|
1244 |
-
# <?php
|
1245 |
-
# wpml-name: 3ebb5c3609cf2634c669e655a7bfb162
|
1246 |
-
#: ../includes/ure-user-edit.php:85
|
1247 |
-
msgid "Other Roles:"
|
1248 |
-
msgstr "תפקידים אחרים:"
|
1249 |
-
|
1250 |
# <tr>
|
1251 |
# <td><label for="show_admin_role"><?php esc_html_e('Show Administrator role at User Role Editor:', 'ure'); ?></label></td>
|
1252 |
# <td><input type="checkbox" name="show_admin_role" id="show_admin_role" value="1"
|
@@ -1277,6 +1191,14 @@ msgid ""
|
|
1277 |
"others posts\"."
|
1278 |
msgstr ""
|
1279 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1280 |
#: ../includes/class-ure-screen-help.php:22
|
1281 |
msgid ""
|
1282 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: User Role Editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2014-04-06 12:21+0700\n"
|
9 |
"PO-Revision-Date: \n"
|
10 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
11 |
"Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
|
20 |
# <input type="submit" class="button-primary" name="user_role_editor_settings_update" value="<?php _e('Save', 'ure') ?>" />
|
21 |
# </p>
|
22 |
# wpml-name: c9cc8cce247e49bae79f15173ce97354
|
23 |
+
#: ../includes/settings-template.php:80 ../includes/settings-template.php:111
|
24 |
+
#: ../includes/settings-template.php:140
|
25 |
msgid "Save"
|
26 |
msgstr "שמירה"
|
27 |
|
28 |
+
#: ../includes/settings-template.php:104
|
29 |
+
msgid ""
|
30 |
+
"Note for multisite environment: take into account that other default roles "
|
31 |
+
"should exist at the site, in order to be assigned to the new registered "
|
32 |
+
"users."
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: ../includes/class-user-role-editor.php:185
|
36 |
+
msgid "Change role for users without role"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: ../includes/class-user-role-editor.php:186
|
40 |
+
msgid "No rights"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: ../includes/class-user-role-editor.php:187
|
44 |
+
msgid "Provide new role"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
# if (!is_array($caps_to_remove) || count($caps_to_remove) == 0 || !isset($caps_to_remove[$capability_id])) {
|
48 |
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
49 |
# }
|
50 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
51 |
+
#: ../includes/class-user-role-editor.php:271
|
52 |
+
#: ../includes/class-user-role-editor.php:273
|
53 |
msgid "You do not have permission to edit this user."
|
54 |
msgstr ""
|
55 |
|
57 |
# '">' . __('Capabilities', 'ure') . '</a>';
|
58 |
# }
|
59 |
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
60 |
+
#: ../includes/class-user-role-editor.php:414
|
61 |
msgid "Capabilities"
|
62 |
msgstr "יכולות"
|
63 |
|
65 |
# $settings_link = "<a href='options-general.php?page=settings-".URE_PLUGIN_FILE."'>" . __('Settings', 'ure') . "</a>";
|
66 |
# array_unshift($links, $settings_link);
|
67 |
# wpml-name: f4f70727dc34561dfde1a3c529b6205c
|
68 |
+
#: ../includes/class-user-role-editor.php:507
|
69 |
msgid "Settings"
|
70 |
msgstr "הגדרות"
|
71 |
|
73 |
# $links[] = '<a target="_blank" href="http://role-editor.com/changelog">' . __('Changelog', 'ure') . '</a>';
|
74 |
# }
|
75 |
# wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
|
76 |
+
#: ../includes/class-user-role-editor.php:520
|
77 |
+
#: ../includes/class-ure-lib.php:2235
|
78 |
msgid "Changelog"
|
79 |
msgstr "יומן שינויים"
|
80 |
|
81 |
+
#: ../includes/class-user-role-editor.php:542
|
82 |
msgid "Overview"
|
83 |
msgstr ""
|
84 |
|
86 |
# esc_html__('User Role Editor', 'ure'),
|
87 |
# $this->key_capability, 'settings-'.URE_PLUGIN_FILE, array(&$this, 'settings'));
|
88 |
# wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
|
89 |
+
#: ../includes/class-user-role-editor.php:551
|
90 |
+
#: ../includes/class-user-role-editor.php:579
|
91 |
+
#: ../includes/class-user-role-editor.php:873
|
92 |
+
#: ../includes/class-ure-lib.php:225
|
93 |
msgid "User Role Editor"
|
94 |
msgstr "User Role Editor"
|
95 |
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
# $this->lib->flush_options();
|
97 |
# $this->lib->show_message(__('User Role Editor options are updated', 'ure'));
|
98 |
# } else { // get options from the options storage
|
99 |
# wpml-name: aef323fbbd25d577170fff17c15cf857
|
100 |
+
#: ../includes/class-user-role-editor.php:639
|
101 |
+
#: ../includes/class-user-role-editor.php:684
|
102 |
msgid "User Role Editor options are updated"
|
103 |
msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
104 |
|
105 |
+
# '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'),
|
106 |
+
# 'default_role' => __('Default Role', 'ure'),
|
107 |
+
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
108 |
+
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
109 |
+
#: ../includes/class-user-role-editor.php:668
|
110 |
+
#, fuzzy
|
111 |
+
msgid "Default Roles are updated"
|
112 |
+
msgstr "תפקיד ברירת מחדל"
|
113 |
+
|
114 |
+
#: ../includes/class-user-role-editor.php:692
|
115 |
+
msgid ""
|
116 |
+
"You do not have sufficient permissions to manage options for User Role "
|
117 |
+
"Editor."
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: ../includes/class-user-role-editor.php:764
|
121 |
msgid "Insufficient permissions to work with User Role Editor"
|
122 |
msgstr ""
|
123 |
|
125 |
# 'select_all' => __('Select All', 'ure'),
|
126 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
127 |
# wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
|
128 |
+
#: ../includes/class-user-role-editor.php:818
|
129 |
msgid "Select All"
|
130 |
msgstr "בחירת הכל"
|
131 |
|
133 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
134 |
# 'reverse' => __('Reverse', 'ure'),
|
135 |
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
136 |
+
#: ../includes/class-user-role-editor.php:819
|
137 |
msgid "Unselect All"
|
138 |
msgstr "לא לבחור שום דבר"
|
139 |
|
141 |
# 'reverse' => __('Reverse', 'ure'),
|
142 |
# 'update' => __('Update', 'ure'),
|
143 |
# wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
|
144 |
+
#: ../includes/class-user-role-editor.php:820
|
145 |
msgid "Reverse"
|
146 |
msgstr "להפוך"
|
147 |
|
149 |
# 'update' => __('Update', 'ure'),
|
150 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
151 |
# wpml-name: 06933067aafd48425d67bcb01bba5cb6
|
152 |
+
#: ../includes/class-user-role-editor.php:821
|
153 |
msgid "Update"
|
154 |
msgstr "עדכן"
|
155 |
|
157 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
158 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
159 |
# wpml-name: 85251872440cc94c6080a90451e018c4
|
160 |
+
#: ../includes/class-user-role-editor.php:822
|
161 |
msgid "Please confirm permissions update"
|
162 |
msgstr "נא לאשר את עדכון ההרשאות"
|
163 |
|
165 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
166 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
167 |
# wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
|
168 |
+
#: ../includes/class-user-role-editor.php:823
|
169 |
msgid "Add New Role"
|
170 |
msgstr "הוסף סוג משתמש חדש"
|
171 |
|
173 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
174 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
175 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
176 |
+
#: ../includes/class-user-role-editor.php:824
|
177 |
msgid " Role name (ID) can not be empty!"
|
178 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
179 |
|
181 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
182 |
# 'add_role' => __('Add Role', 'ure'),
|
183 |
# wpml-name: 7b94f04285f5efc287652bd40338e730
|
184 |
+
#: ../includes/class-user-role-editor.php:825
|
185 |
msgid ""
|
186 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
187 |
"only!"
|
188 |
msgstr ""
|
189 |
" שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
190 |
|
191 |
+
#: ../includes/class-user-role-editor.php:826
|
192 |
+
msgid ""
|
193 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
194 |
+
"it."
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
198 |
# 'add_role' => __('Add Role', 'ure'),
|
199 |
# 'delete_role' => __('Delete Role', 'ure'),
|
200 |
# wpml-name: 1453b39dcc15a372640d960c6db7db25
|
201 |
+
#: ../includes/class-user-role-editor.php:827
|
202 |
msgid "Add Role"
|
203 |
msgstr "הוספת תפקיד"
|
204 |
|
206 |
# 'delete_role' => __('Delete Role', 'ure'),
|
207 |
# 'cancel' => __('Cancel', 'ure'),
|
208 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
209 |
+
#: ../includes/class-user-role-editor.php:828
|
210 |
msgid "Delete Role"
|
211 |
msgstr "מחיקת סוג משתמש"
|
212 |
|
214 |
# 'cancel' => __('Cancel', 'ure'),
|
215 |
# 'add_capability' => __('Add Capability', 'ure'),
|
216 |
# wpml-name: ea4788705e6873b424c65e91c2846b19
|
217 |
+
#: ../includes/class-user-role-editor.php:829
|
218 |
msgid "Cancel"
|
219 |
msgstr "ביטול"
|
220 |
|
222 |
# 'add_capability' => __('Add Capability', 'ure'),
|
223 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
224 |
# wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
|
225 |
+
#: ../includes/class-user-role-editor.php:830
|
226 |
msgid "Add Capability"
|
227 |
msgstr "הוספת יכולת"
|
228 |
|
230 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
231 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
232 |
# wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
|
233 |
+
#: ../includes/class-user-role-editor.php:831
|
234 |
+
#: ../includes/class-user-role-editor.php:840
|
235 |
msgid "Delete Capability"
|
236 |
msgstr "מחיקת יכולת"
|
237 |
|
239 |
# 'reset' => __('Reset', 'ure'),
|
240 |
# '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'),
|
241 |
# wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
|
242 |
+
#: ../includes/class-user-role-editor.php:832
|
243 |
msgid "Reset"
|
244 |
msgstr "איפוס"
|
245 |
|
246 |
+
#: ../includes/class-user-role-editor.php:833
|
247 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: ../includes/class-user-role-editor.php:834
|
251 |
msgid ""
|
252 |
"If any plugins have changed capabilities in any way upon installation (such "
|
253 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: ../includes/class-user-role-editor.php:835
|
257 |
msgid ""
|
258 |
"For more information on how to undo changes and restore plugin capabilities "
|
259 |
"go to"
|
263 |
# __('Contributor', 'ure');
|
264 |
# __('Subscriber', 'ure');
|
265 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
266 |
+
#: ../includes/class-user-role-editor.php:837
|
267 |
msgid "Continue?"
|
268 |
msgstr ""
|
269 |
|
271 |
# 'default_role' => __('Default Role', 'ure'),
|
272 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
273 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
274 |
+
#: ../includes/class-user-role-editor.php:838
|
275 |
msgid "Default Role"
|
276 |
msgstr "תפקיד ברירת מחדל"
|
277 |
|
279 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
280 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
281 |
# wpml-name: f28d52a1096a73cff427d1216dc578ad
|
282 |
+
#: ../includes/class-user-role-editor.php:839
|
283 |
msgid "Set New Default Role"
|
284 |
msgstr "הגדר תפקיד ברירת מחדל חדש"
|
285 |
|
287 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
288 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
289 |
# wpml-name: b8827a096ab461b8e26931adf82c8d85
|
290 |
+
#: ../includes/class-user-role-editor.php:841
|
291 |
msgid ""
|
292 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
293 |
"or other custom code"
|
299 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
300 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
301 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
302 |
+
#: ../includes/class-user-role-editor.php:842
|
303 |
msgid " Capability name (ID) can not be empty!"
|
304 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
305 |
|
307 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
308 |
# ) );
|
309 |
# wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
|
310 |
+
#: ../includes/class-user-role-editor.php:843
|
311 |
msgid ""
|
312 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
313 |
"underscore only!"
|
318 |
# <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
|
319 |
# <td>
|
320 |
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
321 |
+
#: ../includes/class-user-role-editor.php:876
|
322 |
+
#: ../includes/class-user-role-editor.php:905
|
323 |
msgid "Other Roles"
|
324 |
msgstr "תפקידים אחרים"
|
325 |
|
327 |
# 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>';
|
328 |
# ?>
|
329 |
# wpml-name: 7dce122004969d56ae2e0245cb754d35
|
330 |
+
#: ../includes/class-user-role-editor.php:887
|
331 |
msgid "Edit"
|
332 |
msgstr "עריכה"
|
333 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
#
|
335 |
#
|
336 |
#
|
337 |
# wpml-name: a1fbf81a928fffd1bb4665b5af8952ab
|
338 |
+
#: ../includes/ure-role-edit.php:44
|
339 |
msgid "If checked, then apply action to ALL sites of this Network"
|
340 |
msgstr "אם סומן, החל פעולה על כל האתרים ברשת זאת"
|
341 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
342 |
# if (!$this->editor_init0()) {
|
343 |
# $this->show_message(__('Error: wrong request', 'URE'));
|
344 |
# return false;
|
345 |
# wpml-name: a4b9ac7e09dc5996d763f6bae29fd31a
|
346 |
+
#: ../includes/class-ure-lib.php:143
|
347 |
msgid "Error: wrong request"
|
348 |
msgstr "שגיאה: בקשה מוטעית"
|
349 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
350 |
# if (!isset($this->roles[$_POST['user_role']])) {
|
351 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
352 |
# $this->current_role = '';
|
353 |
# wpml-name: f97d2eb0a66987899d02bb180936afa3
|
354 |
+
#: ../includes/class-ure-lib.php:322
|
355 |
msgid "Error: "
|
356 |
msgstr "שגיאה:"
|
357 |
|
359 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
360 |
# $this->current_role = '';
|
361 |
# wpml-name: bbbabdbe1b262f75d99d62880b953be1
|
362 |
+
#: ../includes/class-ure-lib.php:322
|
363 |
msgid "Role"
|
364 |
msgstr "סוג משתמש:"
|
365 |
|
367 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
368 |
# $this->current_role = '';
|
369 |
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
370 |
+
#: ../includes/class-ure-lib.php:323
|
371 |
msgid "does not exist"
|
372 |
msgstr "לא נמצא"
|
373 |
|
375 |
# $mess = __('Role is updated successfully', 'ure');
|
376 |
# } else {
|
377 |
# wpml-name: 9fd866f99b55510d60384b7efeb22018
|
378 |
+
#: ../includes/class-ure-lib.php:366
|
379 |
msgid "Role is updated successfully"
|
380 |
msgstr "התפקיד עודכן בהצלחה"
|
381 |
|
383 |
# $mess = __('Roles are updated for all network', 'ure');
|
384 |
# }
|
385 |
# wpml-name: f89c187756348dad944b0fcca790fde6
|
386 |
+
#: ../includes/class-ure-lib.php:368
|
387 |
msgid "Roles are updated for all network"
|
388 |
msgstr "התפקידים עודכנו עבור כל הרשת"
|
389 |
|
391 |
# $mess = __('Error occured during role(s) update', 'ure');
|
392 |
# }
|
393 |
# wpml-name: 9f528ca4741155f636c4331b19f2b170
|
394 |
+
#: ../includes/class-ure-lib.php:374
|
395 |
msgid "Error occured during role(s) update"
|
396 |
msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
|
397 |
|
399 |
# $mess = __('User capabilities are updated successfully', 'ure');
|
400 |
# } else {
|
401 |
# wpml-name: ee37618edaa53156b3a18d543ec60412
|
402 |
+
#: ../includes/class-ure-lib.php:381
|
403 |
msgid "User capabilities are updated successfully"
|
404 |
msgstr "יכולות המשתמש עודכנו בהצלחה"
|
405 |
|
407 |
# $mess = __('Error occured during user update', 'ure');
|
408 |
# }
|
409 |
# wpml-name: f7283da5501e7e1cb13255d323859feb
|
410 |
+
#: ../includes/class-ure-lib.php:386
|
411 |
msgid "Error occured during user update"
|
412 |
msgstr "קרתה שגיאה בזמן עדכון המשתמש"
|
413 |
|
415 |
# $this->notification = __('User Roles are restored to WordPress default values. ', 'ure');
|
416 |
# } else if ($action == 'update') {
|
417 |
# wpml-name: 7182950b4f92d446844be24cfea6276a
|
418 |
+
#: ../includes/class-ure-lib.php:441
|
419 |
msgid "User Roles are restored to WordPress default values. "
|
420 |
msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל של וורדפרס."
|
421 |
|
423 |
# $link = '<a href="' . $url . '" title="read about ' . $capability . ' user capability" target="new"><img src="' . URE_PLUGIN_URL . '/images/help.png" alt="' . __('Help', 'ure') . '" /></a>';
|
424 |
# } else {
|
425 |
# wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
|
426 |
+
#: ../includes/class-ure-lib.php:1340
|
427 |
msgid "Help"
|
428 |
msgstr "עזרה"
|
429 |
|
431 |
# $this->show_message('Error! ' . __('Error is occur. Please check the log file.', 'ure'));
|
432 |
# }
|
433 |
# wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
|
434 |
+
#: ../includes/class-ure-lib.php:1690
|
435 |
msgid "Error is occur. Please check the log file."
|
436 |
msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
437 |
|
439 |
# return __('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'ure');
|
440 |
# }
|
441 |
# wpml-name: f9182094e24a9e2fbb7317b1724a69c9
|
442 |
+
#: ../includes/class-ure-lib.php:1733
|
443 |
msgid ""
|
444 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
445 |
"only!"
|
446 |
msgstr ""
|
447 |
"שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:1737
|
450 |
+
msgid ""
|
451 |
+
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
452 |
+
"characters to it."
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
# if (isset($wp_roles->roles[$user_role_id])) {
|
456 |
# return sprintf('Error! ' . __('Role %s exists already', 'ure'), $user_role_id);
|
457 |
# }
|
458 |
# wpml-name: 61b6d86154b5437be56e6565f2820391
|
459 |
+
#: ../includes/class-ure-lib.php:1752
|
460 |
#, php-format
|
461 |
msgid "Role %s exists already"
|
462 |
msgstr "סוג המשתמש %s כבר קיים"
|
465 |
# $mess = 'Error! ' . __('Error is encountered during new role create operation', 'ure');
|
466 |
# } else {
|
467 |
# wpml-name: e0618b1a4160611a46b1b95acab0821c
|
468 |
+
#: ../includes/class-ure-lib.php:1767
|
469 |
msgid "Error is encountered during new role create operation"
|
470 |
msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
471 |
|
473 |
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
474 |
# }
|
475 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
476 |
+
#: ../includes/class-ure-lib.php:1769
|
477 |
#, php-format
|
478 |
msgid "Role %s is created successfully"
|
479 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
482 |
# $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
|
483 |
# } else {
|
484 |
# wpml-name: 5ca27dda122445e597586a22e18088e6
|
485 |
+
#: ../includes/class-ure-lib.php:1838
|
486 |
msgid "Error encountered during role delete operation"
|
487 |
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
488 |
|
490 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
491 |
# }
|
492 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
493 |
+
#: ../includes/class-ure-lib.php:1840
|
494 |
msgid "Unused roles are deleted successfully"
|
495 |
msgstr ""
|
496 |
|
498 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
499 |
# }
|
500 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
501 |
+
#: ../includes/class-ure-lib.php:1842
|
502 |
#, php-format
|
503 |
msgid "Role %s is deleted successfully"
|
504 |
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
507 |
# $errorMessage = 'Error! ' . __('Error encountered during default role change operation', 'ure');
|
508 |
# if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
|
509 |
# wpml-name: b64bfe4842bc0638b79a24687976394e
|
510 |
+
#: ../includes/class-ure-lib.php:1867
|
511 |
msgid "Error encountered during default role change operation"
|
512 |
msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
|
513 |
|
515 |
# $mess = sprintf(__('Default role for new users is set to %s successfully', 'ure'), $wp_roles->role_names[$user_role_id]);
|
516 |
# }
|
517 |
# wpml-name: 94978d82edc73eba0f44bc7bceb299f4
|
518 |
+
#: ../includes/class-ure-lib.php:1873
|
519 |
#, php-format
|
520 |
msgid "Default role for new users is set to %s successfully"
|
521 |
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
524 |
# __('Editor', 'ure');
|
525 |
# __('Author', 'ure');
|
526 |
# wpml-name: 344a7f427fb765610ef96eb7bce95257
|
527 |
+
#: ../includes/class-ure-lib.php:1892
|
528 |
msgid "Editor"
|
529 |
msgstr "עורך"
|
530 |
|
532 |
# __('Author', 'ure');
|
533 |
# __('Contributor', 'ure');
|
534 |
# wpml-name: a517747c3d12f99244ae598910d979c5
|
535 |
+
#: ../includes/class-ure-lib.php:1893
|
536 |
msgid "Author"
|
537 |
msgstr "כותב"
|
538 |
|
540 |
# __('Contributor', 'ure');
|
541 |
# __('Subscriber', 'ure');
|
542 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
543 |
+
#: ../includes/class-ure-lib.php:1894
|
544 |
msgid "Contributor"
|
545 |
msgstr "תורם"
|
546 |
|
548 |
# __('Subscriber', 'ure');
|
549 |
# // Standard WordPress capabilities
|
550 |
# wpml-name: 992c4a5b4628d8ebf671cf460254ee81
|
551 |
+
#: ../includes/class-ure-lib.php:1895
|
552 |
msgid "Subscriber"
|
553 |
msgstr "מנוי"
|
554 |
|
556 |
# __('Switch themes', 'ure');
|
557 |
# __('Edit themes', 'ure');
|
558 |
# wpml-name: 87d980c0c79638536655ce7fa0a4b85d
|
559 |
+
#: ../includes/class-ure-lib.php:1897
|
560 |
msgid "Switch themes"
|
561 |
msgstr "החלפת תבניות"
|
562 |
|
564 |
# __('Edit themes', 'ure');
|
565 |
# __('Activate plugins', 'ure');
|
566 |
# wpml-name: 8395d1904c778ee1b2762e07a6a03878
|
567 |
+
#: ../includes/class-ure-lib.php:1898
|
568 |
msgid "Edit themes"
|
569 |
msgstr "עריכת תבניות"
|
570 |
|
572 |
# __('Activate plugins', 'ure');
|
573 |
# __('Edit plugins', 'ure');
|
574 |
# wpml-name: c38bc47406355ef06ad3e10a98505536
|
575 |
+
#: ../includes/class-ure-lib.php:1899
|
576 |
msgid "Activate plugins"
|
577 |
msgstr "הפעלת תוספים"
|
578 |
|
580 |
# __('Edit plugins', 'ure');
|
581 |
# __('Edit users', 'ure');
|
582 |
# wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
|
583 |
+
#: ../includes/class-ure-lib.php:1900
|
584 |
msgid "Edit plugins"
|
585 |
msgstr "עריכת תוספים"
|
586 |
|
588 |
# __('Edit users', 'ure');
|
589 |
# __('Edit files', 'ure');
|
590 |
# wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
|
591 |
+
#: ../includes/class-ure-lib.php:1901
|
592 |
msgid "Edit users"
|
593 |
msgstr "עריכת משתמשים"
|
594 |
|
596 |
# __('Edit files', 'ure');
|
597 |
# __('Manage options', 'ure');
|
598 |
# wpml-name: 91c6e7a54b91cdc161f71958c597ed11
|
599 |
+
#: ../includes/class-ure-lib.php:1902
|
600 |
msgid "Edit files"
|
601 |
msgstr "עריכת קבצים"
|
602 |
|
604 |
# __('Manage options', 'ure');
|
605 |
# __('Moderate comments', 'ure');
|
606 |
# wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
|
607 |
+
#: ../includes/class-ure-lib.php:1903
|
608 |
msgid "Manage options"
|
609 |
msgstr "ניהול אפשרויות אתר"
|
610 |
|
612 |
# __('Moderate comments', 'ure');
|
613 |
# __('Manage categories', 'ure');
|
614 |
# wpml-name: abb293cb5d17f4acca429ea13d74c593
|
615 |
+
#: ../includes/class-ure-lib.php:1904
|
616 |
msgid "Moderate comments"
|
617 |
msgstr "ניהול תגובות"
|
618 |
|
620 |
# __('Manage categories', 'ure');
|
621 |
# __('Manage links', 'ure');
|
622 |
# wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
|
623 |
+
#: ../includes/class-ure-lib.php:1905
|
624 |
msgid "Manage categories"
|
625 |
msgstr "ניהול קטגוריות"
|
626 |
|
628 |
# __('Manage links', 'ure');
|
629 |
# __('Upload files', 'ure');
|
630 |
# wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
|
631 |
+
#: ../includes/class-ure-lib.php:1906
|
632 |
msgid "Manage links"
|
633 |
msgstr "ניהול קישורים"
|
634 |
|
636 |
# __('Upload files', 'ure');
|
637 |
# __('Import', 'ure');
|
638 |
# wpml-name: c7de86f69db264c3950d8ae46ed2e33f
|
639 |
+
#: ../includes/class-ure-lib.php:1907
|
640 |
msgid "Upload files"
|
641 |
msgstr "העלאת קבצים"
|
642 |
|
644 |
# __('Import', 'ure');
|
645 |
# __('Unfiltered html', 'ure');
|
646 |
# wpml-name: 72d6d7a1885885bb55a565fd1070581a
|
647 |
+
#: ../includes/class-ure-lib.php:1908
|
648 |
msgid "Import"
|
649 |
msgstr "יבוא"
|
650 |
|
652 |
# __('Unfiltered html', 'ure');
|
653 |
# __('Edit posts', 'ure');
|
654 |
# wpml-name: fdd95e5640d6d73230b7544ac261457a
|
655 |
+
#: ../includes/class-ure-lib.php:1909
|
656 |
msgid "Unfiltered html"
|
657 |
msgstr "עריכת HTML"
|
658 |
|
660 |
# __('Edit posts', 'ure');
|
661 |
# __('Edit others posts', 'ure');
|
662 |
# wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
|
663 |
+
#: ../includes/class-ure-lib.php:1910
|
664 |
msgid "Edit posts"
|
665 |
msgstr "עריכת פוסטים"
|
666 |
|
668 |
# __('Edit others posts', 'ure');
|
669 |
# __('Edit published posts', 'ure');
|
670 |
# wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
|
671 |
+
#: ../includes/class-ure-lib.php:1911
|
672 |
msgid "Edit others posts"
|
673 |
msgstr "עריכת פוסטים של אחרים"
|
674 |
|
676 |
# __('Edit published posts', 'ure');
|
677 |
# __('Publish posts', 'ure');
|
678 |
# wpml-name: d42efc04e7900de59ed3667c971e9e9d
|
679 |
+
#: ../includes/class-ure-lib.php:1912
|
680 |
msgid "Edit published posts"
|
681 |
msgstr "עריכת פוסטים שפורסמו"
|
682 |
|
684 |
# __('Publish posts', 'ure');
|
685 |
# __('Edit pages', 'ure');
|
686 |
# wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
|
687 |
+
#: ../includes/class-ure-lib.php:1913
|
688 |
msgid "Publish posts"
|
689 |
msgstr "פוסטים שפורסמו"
|
690 |
|
692 |
# __('Edit pages', 'ure');
|
693 |
# __('Read', 'ure');
|
694 |
# wpml-name: e7a51430fa0fbb32587c083ffae4b525
|
695 |
+
#: ../includes/class-ure-lib.php:1914
|
696 |
msgid "Edit pages"
|
697 |
msgstr "עריכת עמודים"
|
698 |
|
700 |
# __('Read', 'ure');
|
701 |
# __('Level 10', 'ure');
|
702 |
# wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
|
703 |
+
#: ../includes/class-ure-lib.php:1915
|
704 |
msgid "Read"
|
705 |
msgstr "קורא"
|
706 |
|
708 |
# __('Level 10', 'ure');
|
709 |
# __('Level 9', 'ure');
|
710 |
# wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
|
711 |
+
#: ../includes/class-ure-lib.php:1916
|
712 |
msgid "Level 10"
|
713 |
msgstr "דרגה 10"
|
714 |
|
716 |
# __('Level 9', 'ure');
|
717 |
# __('Level 8', 'ure');
|
718 |
# wpml-name: d48252bc9cffec4bed5028a7c71d8196
|
719 |
+
#: ../includes/class-ure-lib.php:1917
|
720 |
msgid "Level 9"
|
721 |
msgstr "דרגה 9"
|
722 |
|
724 |
# __('Level 8', 'ure');
|
725 |
# __('Level 7', 'ure');
|
726 |
# wpml-name: 625fef0c34a92b3685266a47f16c85dd
|
727 |
+
#: ../includes/class-ure-lib.php:1918
|
728 |
msgid "Level 8"
|
729 |
msgstr "דרגה 8"
|
730 |
|
732 |
# __('Level 7', 'ure');
|
733 |
# __('Level 6', 'ure');
|
734 |
# wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
|
735 |
+
#: ../includes/class-ure-lib.php:1919
|
736 |
msgid "Level 7"
|
737 |
msgstr "דרגה 7"
|
738 |
|
740 |
# __('Level 6', 'ure');
|
741 |
# __('Level 5', 'ure');
|
742 |
# wpml-name: b30ce92fb9295725ef29254ba5ae17e1
|
743 |
+
#: ../includes/class-ure-lib.php:1920
|
744 |
msgid "Level 6"
|
745 |
msgstr "דרגה 6"
|
746 |
|
748 |
# __('Level 5', 'ure');
|
749 |
# __('Level 4', 'ure');
|
750 |
# wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
|
751 |
+
#: ../includes/class-ure-lib.php:1921
|
752 |
msgid "Level 5"
|
753 |
msgstr "דרגה 5"
|
754 |
|
756 |
# __('Level 4', 'ure');
|
757 |
# __('Level 3', 'ure');
|
758 |
# wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
|
759 |
+
#: ../includes/class-ure-lib.php:1922
|
760 |
msgid "Level 4"
|
761 |
msgstr "דרגה 4"
|
762 |
|
764 |
# __('Level 3', 'ure');
|
765 |
# __('Level 2', 'ure');
|
766 |
# wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
|
767 |
+
#: ../includes/class-ure-lib.php:1923
|
768 |
msgid "Level 3"
|
769 |
msgstr "דרגה 3"
|
770 |
|
772 |
# __('Level 2', 'ure');
|
773 |
# __('Level 1', 'ure');
|
774 |
# wpml-name: 228e9da47384bacde793a2b78d488bb0
|
775 |
+
#: ../includes/class-ure-lib.php:1924
|
776 |
msgid "Level 2"
|
777 |
msgstr "דרגה 2"
|
778 |
|
780 |
# __('Level 1', 'ure');
|
781 |
# __('Level 0', 'ure');
|
782 |
# wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
|
783 |
+
#: ../includes/class-ure-lib.php:1925
|
784 |
msgid "Level 1"
|
785 |
msgstr "דרגה 1"
|
786 |
|
788 |
# __('Level 0', 'ure');
|
789 |
# __('Edit others pages', 'ure');
|
790 |
# wpml-name: 057e95a59e032dbed970592dd1245092
|
791 |
+
#: ../includes/class-ure-lib.php:1926
|
792 |
msgid "Level 0"
|
793 |
msgstr "דרגה 0"
|
794 |
|
796 |
# __('Edit others pages', 'ure');
|
797 |
# __('Edit published pages', 'ure');
|
798 |
# wpml-name: b10af907824940fe6a5aa0a77c62be6f
|
799 |
+
#: ../includes/class-ure-lib.php:1927
|
800 |
msgid "Edit others pages"
|
801 |
msgstr "עריכת דפים של אחרים"
|
802 |
|
804 |
# __('Edit published pages', 'ure');
|
805 |
# __('Publish pages', 'ure');
|
806 |
# wpml-name: c5bfc24b0b891c9465134b83b2c6c259
|
807 |
+
#: ../includes/class-ure-lib.php:1928
|
808 |
msgid "Edit published pages"
|
809 |
msgstr "עריכת דפים שפורסמו"
|
810 |
|
812 |
# __('Publish pages', 'ure');
|
813 |
# __('Delete pages', 'ure');
|
814 |
# wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
|
815 |
+
#: ../includes/class-ure-lib.php:1929
|
816 |
msgid "Publish pages"
|
817 |
msgstr "פרסום דפים"
|
818 |
|
820 |
# __('Delete pages', 'ure');
|
821 |
# __('Delete others pages', 'ure');
|
822 |
# wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
|
823 |
+
#: ../includes/class-ure-lib.php:1930
|
824 |
msgid "Delete pages"
|
825 |
msgstr "מחיקת דפים"
|
826 |
|
828 |
# __('Delete others pages', 'ure');
|
829 |
# __('Delete published pages', 'ure');
|
830 |
# wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
|
831 |
+
#: ../includes/class-ure-lib.php:1931
|
832 |
msgid "Delete others pages"
|
833 |
msgstr "מחיקת דפים של אחרים"
|
834 |
|
836 |
# __('Delete published pages', 'ure');
|
837 |
# __('Delete posts', 'ure');
|
838 |
# wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
|
839 |
+
#: ../includes/class-ure-lib.php:1932
|
840 |
msgid "Delete published pages"
|
841 |
msgstr "מחיקת דפים שפורסמו"
|
842 |
|
844 |
# __('Delete posts', 'ure');
|
845 |
# __('Delete others posts', 'ure');
|
846 |
# wpml-name: 3dce6f688c85f06c63224b5c3be13919
|
847 |
+
#: ../includes/class-ure-lib.php:1933
|
848 |
msgid "Delete posts"
|
849 |
msgstr "מחיקת פוסטים"
|
850 |
|
852 |
# __('Delete others posts', 'ure');
|
853 |
# __('Delete published posts', 'ure');
|
854 |
# wpml-name: c0496287732814df690c8966027a58d6
|
855 |
+
#: ../includes/class-ure-lib.php:1934
|
856 |
msgid "Delete others posts"
|
857 |
msgstr "מחיקת פוסטים של אחרים"
|
858 |
|
860 |
# __('Delete published posts', 'ure');
|
861 |
# __('Delete private posts', 'ure');
|
862 |
# wpml-name: b0a2d2039494d73f81f4e476bfda24da
|
863 |
+
#: ../includes/class-ure-lib.php:1935
|
864 |
msgid "Delete published posts"
|
865 |
msgstr "מחיקת פוסטים שפורסמו"
|
866 |
|
868 |
# __('Delete private posts', 'ure');
|
869 |
# __('Edit private posts', 'ure');
|
870 |
# wpml-name: dcd02c374764e49b36f0f959cc2917bb
|
871 |
+
#: ../includes/class-ure-lib.php:1936
|
872 |
msgid "Delete private posts"
|
873 |
msgstr "מחיקת פוסטים פרטיים"
|
874 |
|
876 |
# __('Edit private posts', 'ure');
|
877 |
# __('Read private posts', 'ure');
|
878 |
# wpml-name: da9ee842794f7caf9fa32271073d5f7a
|
879 |
+
#: ../includes/class-ure-lib.php:1937
|
880 |
msgid "Edit private posts"
|
881 |
msgstr "עריכת פוסטים פרטיים"
|
882 |
|
884 |
# __('Read private posts', 'ure');
|
885 |
# __('Delete private pages', 'ure');
|
886 |
# wpml-name: eab0355307288f6480f8c53a0d953d79
|
887 |
+
#: ../includes/class-ure-lib.php:1938
|
888 |
msgid "Read private posts"
|
889 |
msgstr "קריאת פוסטים פרטיים"
|
890 |
|
892 |
# __('Delete private pages', 'ure');
|
893 |
# __('Edit private pages', 'ure');
|
894 |
# wpml-name: 2136c12e2beeadfe0da80a36ef967eca
|
895 |
+
#: ../includes/class-ure-lib.php:1939
|
896 |
msgid "Delete private pages"
|
897 |
msgstr "מחיקת עמודים פרטיים"
|
898 |
|
900 |
# __('Edit private pages', 'ure');
|
901 |
# __('Read private pages', 'ure');
|
902 |
# wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
|
903 |
+
#: ../includes/class-ure-lib.php:1940
|
904 |
msgid "Edit private pages"
|
905 |
msgstr "מחיקת עמודים פרטיים"
|
906 |
|
908 |
# __('Read private pages', 'ure');
|
909 |
# __('Delete users', 'ure');
|
910 |
# wpml-name: 5faa3f2e9585e107dc5f23748a825882
|
911 |
+
#: ../includes/class-ure-lib.php:1941
|
912 |
msgid "Read private pages"
|
913 |
msgstr "קריאת עמודים פרטיים"
|
914 |
|
916 |
# __('Delete users', 'ure');
|
917 |
# __('Create users', 'ure');
|
918 |
# wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
|
919 |
+
#: ../includes/class-ure-lib.php:1942
|
920 |
msgid "Delete users"
|
921 |
msgstr "מחיקת משתמשים"
|
922 |
|
924 |
# __('Create users', 'ure');
|
925 |
# __('Unfiltered upload', 'ure');
|
926 |
# wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
|
927 |
+
#: ../includes/class-ure-lib.php:1943
|
928 |
msgid "Create users"
|
929 |
msgstr "יצירת משתמשים"
|
930 |
|
932 |
# __('Unfiltered upload', 'ure');
|
933 |
# __('Edit dashboard', 'ure');
|
934 |
# wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
|
935 |
+
#: ../includes/class-ure-lib.php:1944
|
936 |
msgid "Unfiltered upload"
|
937 |
msgstr "העלאת קבצים חופשית"
|
938 |
|
940 |
# __('Edit dashboard', 'ure');
|
941 |
# __('Update plugins', 'ure');
|
942 |
# wpml-name: b5577d27ebfdd60a3bda83ae726d574b
|
943 |
+
#: ../includes/class-ure-lib.php:1945
|
944 |
msgid "Edit dashboard"
|
945 |
msgstr "שינוי לוח הבקרה"
|
946 |
|
948 |
# __('Update plugins', 'ure');
|
949 |
# __('Delete plugins', 'ure');
|
950 |
# wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
|
951 |
+
#: ../includes/class-ure-lib.php:1946
|
952 |
msgid "Update plugins"
|
953 |
msgstr "עדכון תוספים"
|
954 |
|
956 |
# __('Delete plugins', 'ure');
|
957 |
# __('Install plugins', 'ure');
|
958 |
# wpml-name: f2a839940dae3934317d8d6a6f647ebd
|
959 |
+
#: ../includes/class-ure-lib.php:1947
|
960 |
msgid "Delete plugins"
|
961 |
msgstr "מחיקת תוספים"
|
962 |
|
964 |
# __('Install plugins', 'ure');
|
965 |
# __('Update themes', 'ure');
|
966 |
# wpml-name: 9d06472988c53bfc768bc7b6a788b697
|
967 |
+
#: ../includes/class-ure-lib.php:1948
|
968 |
msgid "Install plugins"
|
969 |
msgstr "התקנת תוספים"
|
970 |
|
972 |
# __('Update themes', 'ure');
|
973 |
# __('Install themes', 'ure');
|
974 |
# wpml-name: 504ea4a27260ac1e8822c5877ffe526b
|
975 |
+
#: ../includes/class-ure-lib.php:1949
|
976 |
msgid "Update themes"
|
977 |
msgstr "עדכון תבניות"
|
978 |
|
980 |
# __('Install themes', 'ure');
|
981 |
# __('Update core', 'ure');
|
982 |
# wpml-name: a7d67fb17876569a4590902d3566a6fd
|
983 |
+
#: ../includes/class-ure-lib.php:1950
|
984 |
msgid "Install themes"
|
985 |
msgstr "התקנת תבניות חדשות"
|
986 |
|
988 |
# __('Update core', 'ure');
|
989 |
# __('List users', 'ure');
|
990 |
# wpml-name: e56e5b87db548cd42be7a8a0f916205d
|
991 |
+
#: ../includes/class-ure-lib.php:1951
|
992 |
msgid "Update core"
|
993 |
msgstr "עדכון וורדפרס"
|
994 |
|
996 |
# __('List users', 'ure');
|
997 |
# __('Remove users', 'ure');
|
998 |
# wpml-name: f923f903857a5387d3db70494e074632
|
999 |
+
#: ../includes/class-ure-lib.php:1952
|
1000 |
msgid "List users"
|
1001 |
msgstr "בצפייה במשתמשים"
|
1002 |
|
1004 |
# __('Remove users', 'ure');
|
1005 |
# __('Add users', 'ure');
|
1006 |
# wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
|
1007 |
+
#: ../includes/class-ure-lib.php:1953
|
1008 |
msgid "Remove users"
|
1009 |
msgstr "הסרת משתמשים"
|
1010 |
|
1012 |
# __('Add users', 'ure');
|
1013 |
# __('Promote users', 'ure');
|
1014 |
# wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
|
1015 |
+
#: ../includes/class-ure-lib.php:1954
|
1016 |
msgid "Add users"
|
1017 |
msgstr "הוספת משתמשים"
|
1018 |
|
1020 |
# __('Promote users', 'ure');
|
1021 |
# __('Edit theme options', 'ure');
|
1022 |
# wpml-name: 12f4ba95cdfd04b791820b9c20887913
|
1023 |
+
#: ../includes/class-ure-lib.php:1955
|
1024 |
msgid "Promote users"
|
1025 |
msgstr "שינוי משתמשים"
|
1026 |
|
1028 |
# __('Edit theme options', 'ure');
|
1029 |
# __('Delete themes', 'ure');
|
1030 |
# wpml-name: 8841974497684dad4d55beaf2b6c52ef
|
1031 |
+
#: ../includes/class-ure-lib.php:1956
|
1032 |
msgid "Edit theme options"
|
1033 |
msgstr "עריכת אפשרויות התבנית"
|
1034 |
|
1036 |
# __('Delete themes', 'ure');
|
1037 |
# __('Export', 'ure');
|
1038 |
# wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
|
1039 |
+
#: ../includes/class-ure-lib.php:1957
|
1040 |
msgid "Delete themes"
|
1041 |
msgstr "מחיקת תבניות"
|
1042 |
|
1044 |
# __('Export', 'ure');
|
1045 |
# }
|
1046 |
# wpml-name: 0095a9fa74d1713e43e370a7d7846224
|
1047 |
+
#: ../includes/class-ure-lib.php:1958
|
1048 |
msgid "Export"
|
1049 |
msgstr "ייצוא תוכן"
|
1050 |
|
1052 |
# return 'Error! ' . __('Error: Capability name must contain latin characters and digits only!', 'ure');
|
1053 |
# ;
|
1054 |
# wpml-name: 03766b9586d3012af6fc788e85d39530
|
1055 |
+
#: ../includes/class-ure-lib.php:2068
|
1056 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
1057 |
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
1058 |
|
1060 |
# $mess = sprintf(__('Capability %s is added successfully', 'ure'), $user_capability);
|
1061 |
# } else {
|
1062 |
# wpml-name: 6dcaae98207ba2673da987515b02fe31
|
1063 |
+
#: ../includes/class-ure-lib.php:2081
|
1064 |
#, php-format
|
1065 |
msgid "Capability %s is added successfully"
|
1066 |
msgstr "היכולת %s נוספה בהצלחה"
|
1069 |
# $mess = sprintf('Error! ' . __('Capability %s exists already', 'ure'), $user_capability);
|
1070 |
# }
|
1071 |
# wpml-name: d5c1ec0556aadfa88cadffb62266b83d
|
1072 |
+
#: ../includes/class-ure-lib.php:2083
|
1073 |
#, php-format
|
1074 |
msgid "Capability %s exists already"
|
1075 |
msgstr "כבר קיימת יכולת בשם %s"
|
1078 |
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
1079 |
# }
|
1080 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
1081 |
+
#: ../includes/class-ure-lib.php:2108
|
1082 |
#, php-format
|
1083 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
1084 |
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
1087 |
# $mess = sprintf(__('Capability %s is removed successfully', 'ure'), $capability_id);
|
1088 |
# }
|
1089 |
# wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
|
1090 |
+
#: ../includes/class-ure-lib.php:2127
|
1091 |
#, php-format
|
1092 |
msgid "Capability %s is removed successfully"
|
1093 |
msgstr "היכולת %s הוסרה בהצלחה"
|
1094 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1095 |
# ?>
|
1096 |
# <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>
|
1097 |
# <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>
|
1098 |
# wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
|
1099 |
+
#: ../includes/class-ure-lib.php:2232
|
1100 |
msgid "Author's website"
|
1101 |
msgstr "אתר היוצר"
|
1102 |
|
1104 |
# <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>
|
1105 |
# <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>
|
1106 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1107 |
+
#: ../includes/class-ure-lib.php:2233
|
1108 |
msgid "Plugin webpage"
|
1109 |
msgstr "דף התוסף"
|
1110 |
|
1111 |
+
# <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>
|
1112 |
+
# <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>
|
1113 |
+
# <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>
|
1114 |
+
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1115 |
+
#: ../includes/class-ure-lib.php:2234
|
1116 |
+
#, fuzzy
|
1117 |
+
msgid "Plugin download"
|
1118 |
+
msgstr "דף התוסף"
|
1119 |
+
|
1120 |
# <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>
|
1121 |
# <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>
|
1122 |
# <?php
|
1123 |
# wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
|
1124 |
+
#: ../includes/class-ure-lib.php:2236
|
1125 |
msgid "FAQ"
|
1126 |
msgstr "שאלות נפוצות"
|
1127 |
|
1129 |
# <option value="none" selected="selected">' . __('None', 'ure') . '</option>';
|
1130 |
# $this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
|
1131 |
# wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
|
1132 |
+
#: ../includes/class-ure-lib.php:2284
|
1133 |
msgid "None"
|
1134 |
msgstr "תרום"
|
1135 |
|
1137 |
#
|
1138 |
#
|
1139 |
# wpml-name: 7aa3fd37413ab803143d28fcc65287cf
|
1140 |
+
#: ../includes/class-ure-lib.php:2311
|
1141 |
msgid "Delete All Unused Roles"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: ../includes/class-ure-lib.php:2335
|
1145 |
msgid "— No role for this site —"
|
1146 |
msgstr ""
|
1147 |
|
1161 |
msgid "Change capabilities for user"
|
1162 |
msgstr "שינוי יכולות המשתמש"
|
1163 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1164 |
# <tr>
|
1165 |
# <td><label for="show_admin_role"><?php esc_html_e('Show Administrator role at User Role Editor:', 'ure'); ?></label></td>
|
1166 |
# <td><input type="checkbox" name="show_admin_role" id="show_admin_role" value="1"
|
1191 |
"others posts\"."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
# <?php echo $checked; ?> onclick="ure_turn_deprecated_caps(<?php echo $this->user_to_edit->ID; ?>);"/>
|
1195 |
+
# <label for="ure_show_deprecated_caps"><?php _e('Show deprecated capabilities', 'ure'); ?></label>
|
1196 |
+
# </td>
|
1197 |
+
# wpml-name: 130b09deaec4b13948be95555d546f25
|
1198 |
+
#: ../includes/class-ure-screen-help.php:21
|
1199 |
+
msgid "Show deprecated capabilities"
|
1200 |
+
msgstr "הצג הרשאות לפי מספר"
|
1201 |
+
|
1202 |
#: ../includes/class-ure-screen-help.php:22
|
1203 |
msgid ""
|
1204 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
lang/ure-id_ID.mo
CHANGED
Binary file
|
lang/ure-id_ID.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: http://al-badar.net <nasrulhaq81@gmail.com>\n"
|
9 |
"Language: id_ID\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,43 +13,73 @@ msgstr ""
|
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
"X-Poedit-KeywordsList: __;_e;esc_html__\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
-
"X-Generator: Poedit 1.5.
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../includes/settings-template.php:
|
|
|
20 |
msgid "Save"
|
21 |
msgstr "Simpan"
|
22 |
|
23 |
-
#: ../includes/
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "You do not have permission to edit this user."
|
26 |
msgstr "Anda tidak diizinkan untuk menyunting user ini. "
|
27 |
|
28 |
-
#: ../includes/class-user-role-editor.php:
|
29 |
msgid "Capabilities"
|
30 |
msgstr "Kemampuan"
|
31 |
|
32 |
-
#: ../includes/class-user-role-editor.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Pengaturan"
|
35 |
|
36 |
-
#: ../includes/class-user-role-editor.php:
|
37 |
-
#: ../includes/class-ure-lib.php:
|
38 |
msgid "Changelog"
|
39 |
msgstr "log Perubahan"
|
40 |
|
41 |
-
#: ../includes/class-user-role-editor.php:
|
42 |
msgid "Overview"
|
43 |
msgstr "Ikhtisar"
|
44 |
|
45 |
-
#: ../includes/class-user-role-editor.php:
|
46 |
-
#: ../includes/class-user-role-editor.php:
|
47 |
-
#: ../includes/class-user-role-editor.php:
|
48 |
-
#: ../includes/class-ure-lib.php:
|
49 |
msgid "User Role Editor"
|
50 |
msgstr "User Role Editor"
|
51 |
|
52 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
msgid ""
|
54 |
"You do not have sufficient permissions to manage options for User Role "
|
55 |
"Editor."
|
@@ -57,43 +87,39 @@ msgstr ""
|
|
57 |
"Anda tidak memiliki izin yang memadai untuk mengelola pilihan User Role "
|
58 |
"Editor."
|
59 |
|
60 |
-
#: ../includes/class-user-role-editor.php:
|
61 |
-
msgid "User Role Editor options are updated"
|
62 |
-
msgstr "Pilihan User Role Editor diperbarui"
|
63 |
-
|
64 |
-
#: ../includes/class-user-role-editor.php:571
|
65 |
msgid "Insufficient permissions to work with User Role Editor"
|
66 |
msgstr "Izin yang tidak sesuai untuk bekerja dengan User Role Editor"
|
67 |
|
68 |
-
#: ../includes/class-user-role-editor.php:
|
69 |
msgid "Select All"
|
70 |
msgstr "Pilih Semua"
|
71 |
|
72 |
-
#: ../includes/class-user-role-editor.php:
|
73 |
msgid "Unselect All"
|
74 |
msgstr "Batalkan Semua"
|
75 |
|
76 |
-
#: ../includes/class-user-role-editor.php:
|
77 |
msgid "Reverse"
|
78 |
msgstr "Memutar"
|
79 |
|
80 |
-
#: ../includes/class-user-role-editor.php:
|
81 |
msgid "Update"
|
82 |
msgstr "Pembaruan"
|
83 |
|
84 |
-
#: ../includes/class-user-role-editor.php:
|
85 |
msgid "Please confirm permissions update"
|
86 |
msgstr "Harap konfirmasi pembaruan izin"
|
87 |
|
88 |
-
#: ../includes/class-user-role-editor.php:
|
89 |
msgid "Add New Role"
|
90 |
msgstr "Tambah Peran Baru"
|
91 |
|
92 |
-
#: ../includes/class-user-role-editor.php:
|
93 |
msgid " Role name (ID) can not be empty!"
|
94 |
msgstr "Nama peran (ID) tidak boleh kosong!"
|
95 |
|
96 |
-
#: ../includes/class-user-role-editor.php:
|
97 |
msgid ""
|
98 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
99 |
"only!"
|
@@ -101,37 +127,43 @@ msgstr ""
|
|
101 |
"Nama peran (ID) harus berisi karakter latin, angka, tanda hubung atau garis "
|
102 |
"bawah saja!"
|
103 |
|
104 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
msgid "Add Role"
|
106 |
msgstr "Tambah Peran"
|
107 |
|
108 |
-
#: ../includes/class-user-role-editor.php:
|
109 |
msgid "Delete Role"
|
110 |
msgstr "Hapus Peran"
|
111 |
|
112 |
-
#: ../includes/class-user-role-editor.php:
|
113 |
msgid "Cancel"
|
114 |
msgstr "Batalkan"
|
115 |
|
116 |
-
#: ../includes/class-user-role-editor.php:
|
117 |
msgid "Add Capability"
|
118 |
msgstr "Tambah Kemampuan"
|
119 |
|
120 |
-
#: ../includes/class-user-role-editor.php:
|
121 |
-
#: ../includes/class-user-role-editor.php:
|
122 |
msgid "Delete Capability"
|
123 |
msgstr "Hapus Kemampuan"
|
124 |
|
125 |
-
#: ../includes/class-user-role-editor.php:
|
126 |
msgid "Reset"
|
127 |
msgstr "Atur Ulang"
|
128 |
|
129 |
-
#: ../includes/class-user-role-editor.php:
|
130 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
131 |
msgstr ""
|
132 |
"BAHAYA! Reset akan mengembalikan pengaturan default dari WordPress Inti."
|
133 |
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
msgid ""
|
136 |
"If any plugins have changed capabilities in any way upon installation (such "
|
137 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -140,7 +172,7 @@ msgstr ""
|
|
140 |
"(seperti S2Member, WooCommerce, dan banyak lagi), kemampuan mereka akan "
|
141 |
"DIHAPUS!"
|
142 |
|
143 |
-
#: ../includes/class-user-role-editor.php:
|
144 |
msgid ""
|
145 |
"For more information on how to undo changes and restore plugin capabilities "
|
146 |
"go to"
|
@@ -148,19 +180,19 @@ msgstr ""
|
|
148 |
"Untuk informasi lebih lanjut tentang cara membatalkan perubahan dan "
|
149 |
"mengembalikan kemampuan Plugin pergi ke"
|
150 |
|
151 |
-
#: ../includes/class-user-role-editor.php:
|
152 |
msgid "Continue?"
|
153 |
msgstr "Lanjut?"
|
154 |
|
155 |
-
#: ../includes/class-user-role-editor.php:
|
156 |
msgid "Default Role"
|
157 |
msgstr "Peran "
|
158 |
|
159 |
-
#: ../includes/class-user-role-editor.php:
|
160 |
msgid "Set New Default Role"
|
161 |
msgstr "Atur Peran Baru Default"
|
162 |
|
163 |
-
#: ../includes/class-user-role-editor.php:
|
164 |
msgid ""
|
165 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
166 |
"or other custom code"
|
@@ -168,11 +200,11 @@ msgstr ""
|
|
168 |
"Peringatan! Hati-hati - menghapus kemampuan kritis dapat menyebabkan crash "
|
169 |
"beberapa Plugin atau kode kustom lainnya"
|
170 |
|
171 |
-
#: ../includes/class-user-role-editor.php:
|
172 |
msgid " Capability name (ID) can not be empty!"
|
173 |
msgstr "Nama Kemampuan (ID) tidak boleh kosong!"
|
174 |
|
175 |
-
#: ../includes/class-user-role-editor.php:
|
176 |
msgid ""
|
177 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
178 |
"underscore only!"
|
@@ -180,122 +212,69 @@ msgstr ""
|
|
180 |
"Nama Kemampuan (ID) harus mengandung karakter latin, angka, kata penghubung "
|
181 |
"atau garis bawah saja!"
|
182 |
|
183 |
-
#: ../includes/class-user-role-editor.php:
|
184 |
-
#: ../includes/class-user-role-editor.php:
|
185 |
msgid "Other Roles"
|
186 |
msgstr "Peran Lainnya"
|
187 |
|
188 |
-
#: ../includes/class-user-role-editor.php:
|
189 |
msgid "Edit"
|
190 |
msgstr "Sunting"
|
191 |
|
192 |
-
#: ../includes/ure-role-edit.php:
|
193 |
-
msgid "Select Role and change its capabilities list"
|
194 |
-
msgstr "Pilih Peran dan ubah daftar kemampuan"
|
195 |
-
|
196 |
-
#: ../includes/ure-role-edit.php:19 ../includes/class-ure-lib.php:184
|
197 |
-
msgid "Select Role:"
|
198 |
-
msgstr "Pilih Peran:"
|
199 |
-
|
200 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:51
|
201 |
-
msgid "Show capabilities in human readable form"
|
202 |
-
msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
203 |
-
|
204 |
-
#: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
|
205 |
-
#: ../includes/class-ure-screen-help.php:21
|
206 |
-
msgid "Show deprecated capabilities"
|
207 |
-
msgstr "Tampilkan kemampuan usang"
|
208 |
-
|
209 |
-
#: ../includes/ure-role-edit.php:45
|
210 |
msgid "If checked, then apply action to ALL sites of this Network"
|
211 |
msgstr ""
|
212 |
"Jika dicentang, kemudian terapkan tindakan untuk SEMUA situs Jaringan ini"
|
213 |
|
214 |
-
#: ../includes/ure-
|
215 |
-
msgid "Apply to All Sites"
|
216 |
-
msgstr "Terapkan ke Semua Situs"
|
217 |
-
|
218 |
-
#: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:104
|
219 |
-
msgid "Core capabilities:"
|
220 |
-
msgstr "Kemampuan inti:"
|
221 |
-
|
222 |
-
#: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:106
|
223 |
-
msgid "Quick filter:"
|
224 |
-
msgstr "Saring Cepat:"
|
225 |
-
|
226 |
-
#: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:125
|
227 |
-
msgid "Custom capabilities:"
|
228 |
-
msgstr "Kustom kemampuan:"
|
229 |
-
|
230 |
-
#: ../includes/class-ure-lib.php:141
|
231 |
msgid "Error: wrong request"
|
232 |
msgstr "Salah: salah permintaan"
|
233 |
|
234 |
-
#: ../includes/class-ure-lib.php:
|
235 |
-
msgid "Role name (ID): "
|
236 |
-
msgstr "Nama Peran (ID):"
|
237 |
-
|
238 |
-
#: ../includes/class-ure-lib.php:175
|
239 |
-
msgid "Display Role Name: "
|
240 |
-
msgstr "Tampilkan Nama Peran:"
|
241 |
-
|
242 |
-
#: ../includes/class-ure-lib.php:177
|
243 |
-
msgid "Make copy of: "
|
244 |
-
msgstr "buat salinan:"
|
245 |
-
|
246 |
-
#: ../includes/class-ure-lib.php:199
|
247 |
-
msgid "Delete:"
|
248 |
-
msgstr "Hapus:"
|
249 |
-
|
250 |
-
#: ../includes/class-ure-lib.php:206
|
251 |
-
msgid "Capability name (ID): "
|
252 |
-
msgstr "Nama Kemampuan (ID):"
|
253 |
-
|
254 |
-
#: ../includes/class-ure-lib.php:321
|
255 |
msgid "Error: "
|
256 |
msgstr "Salah:"
|
257 |
|
258 |
-
#: ../includes/class-ure-lib.php:
|
259 |
msgid "Role"
|
260 |
msgstr "Peran"
|
261 |
|
262 |
-
#: ../includes/class-ure-lib.php:
|
263 |
msgid "does not exist"
|
264 |
msgstr "tidak ada"
|
265 |
|
266 |
-
#: ../includes/class-ure-lib.php:
|
267 |
msgid "Role is updated successfully"
|
268 |
msgstr "Peran berhasil diperbarui"
|
269 |
|
270 |
-
#: ../includes/class-ure-lib.php:
|
271 |
msgid "Roles are updated for all network"
|
272 |
msgstr "Peran diperbarui untuk semua jaringan"
|
273 |
|
274 |
-
#: ../includes/class-ure-lib.php:
|
275 |
msgid "Error occured during role(s) update"
|
276 |
msgstr "Kesalahan terjadi selama pembaruan peran"
|
277 |
|
278 |
-
#: ../includes/class-ure-lib.php:
|
279 |
msgid "User capabilities are updated successfully"
|
280 |
msgstr "Kemampuan pengguna berhasil diperbarui"
|
281 |
|
282 |
-
#: ../includes/class-ure-lib.php:
|
283 |
msgid "Error occured during user update"
|
284 |
msgstr "Kesalahan terjadi sepanjang pembaruan pengguna"
|
285 |
|
286 |
-
#: ../includes/class-ure-lib.php:
|
287 |
msgid "User Roles are restored to WordPress default values. "
|
288 |
msgstr "Peran Pengguna dikembalikan ke nilai Wordpress default."
|
289 |
|
290 |
-
#: ../includes/class-ure-lib.php:
|
291 |
msgid "Help"
|
292 |
msgstr "Bantuan"
|
293 |
|
294 |
-
#: ../includes/class-ure-lib.php:
|
295 |
msgid "Error is occur. Please check the log file."
|
296 |
msgstr "kesalahan terjadi, Harap periksa log data."
|
297 |
|
298 |
-
#: ../includes/class-ure-lib.php:
|
299 |
msgid ""
|
300 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
301 |
"only!"
|
@@ -303,355 +282,362 @@ msgstr ""
|
|
303 |
"Kesalahan: ID Peran harus mengandung karakter latin, angka, kata penghubung "
|
304 |
"dan garis bawah saja!"
|
305 |
|
306 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
#, php-format
|
308 |
msgid "Role %s exists already"
|
309 |
msgstr "Peran %s telah ada"
|
310 |
|
311 |
-
#: ../includes/class-ure-lib.php:
|
312 |
msgid "Error is encountered during new role create operation"
|
313 |
msgstr "Kesalahan ditemui selama peran baru membuat operasi"
|
314 |
|
315 |
-
#: ../includes/class-ure-lib.php:
|
316 |
#, php-format
|
317 |
msgid "Role %s is created successfully"
|
318 |
msgstr "Peran %s berhasil dibuat"
|
319 |
|
320 |
-
#: ../includes/class-ure-lib.php:
|
321 |
msgid "Error encountered during role delete operation"
|
322 |
msgstr "Kesalahan ditemui selama operasi penghapusan peran"
|
323 |
|
324 |
-
#: ../includes/class-ure-lib.php:
|
325 |
msgid "Unused roles are deleted successfully"
|
326 |
msgstr "Peran yang tidak digunakan berhasil dihapus"
|
327 |
|
328 |
-
#: ../includes/class-ure-lib.php:
|
329 |
#, php-format
|
330 |
msgid "Role %s is deleted successfully"
|
331 |
msgstr "Peran %s berhasil dihapus"
|
332 |
|
333 |
-
#: ../includes/class-ure-lib.php:
|
334 |
msgid "Error encountered during default role change operation"
|
335 |
msgstr "Kesalahan ditemui selama operasi perubahan peran standar"
|
336 |
|
337 |
-
#: ../includes/class-ure-lib.php:
|
338 |
#, php-format
|
339 |
msgid "Default role for new users is set to %s successfully"
|
340 |
msgstr "Peran standar untuk pengguna baru diatur ke %s dengan sukses"
|
341 |
|
342 |
-
#: ../includes/class-ure-lib.php:
|
343 |
msgid "Editor"
|
344 |
msgstr "Penyunting"
|
345 |
|
346 |
-
#: ../includes/class-ure-lib.php:
|
347 |
msgid "Author"
|
348 |
msgstr "Pengarang"
|
349 |
|
350 |
-
#: ../includes/class-ure-lib.php:
|
351 |
msgid "Contributor"
|
352 |
msgstr "Kontributor"
|
353 |
|
354 |
-
#: ../includes/class-ure-lib.php:
|
355 |
msgid "Subscriber"
|
356 |
msgstr "Pelanggan"
|
357 |
|
358 |
-
#: ../includes/class-ure-lib.php:
|
359 |
msgid "Switch themes"
|
360 |
msgstr "Ganti tema"
|
361 |
|
362 |
-
#: ../includes/class-ure-lib.php:
|
363 |
msgid "Edit themes"
|
364 |
msgstr "Sunting tema"
|
365 |
|
366 |
-
#: ../includes/class-ure-lib.php:
|
367 |
msgid "Activate plugins"
|
368 |
msgstr "Aktifkan plugin"
|
369 |
|
370 |
-
#: ../includes/class-ure-lib.php:
|
371 |
msgid "Edit plugins"
|
372 |
msgstr "Sunting plugin"
|
373 |
|
374 |
-
#: ../includes/class-ure-lib.php:
|
375 |
msgid "Edit users"
|
376 |
msgstr "Sunting pengguna"
|
377 |
|
378 |
-
#: ../includes/class-ure-lib.php:
|
379 |
msgid "Edit files"
|
380 |
msgstr "Sunting data"
|
381 |
|
382 |
-
#: ../includes/class-ure-lib.php:
|
383 |
msgid "Manage options"
|
384 |
msgstr "kelola pilihan"
|
385 |
|
386 |
-
#: ../includes/class-ure-lib.php:
|
387 |
msgid "Moderate comments"
|
388 |
msgstr "Moderasi komentar"
|
389 |
|
390 |
-
#: ../includes/class-ure-lib.php:
|
391 |
msgid "Manage categories"
|
392 |
msgstr "Kelola kategori"
|
393 |
|
394 |
-
#: ../includes/class-ure-lib.php:
|
395 |
msgid "Manage links"
|
396 |
msgstr "Kelola tautan"
|
397 |
|
398 |
-
#: ../includes/class-ure-lib.php:
|
399 |
msgid "Upload files"
|
400 |
msgstr "Unggah data"
|
401 |
|
402 |
-
#: ../includes/class-ure-lib.php:
|
403 |
msgid "Import"
|
404 |
msgstr "Impor"
|
405 |
|
406 |
-
#: ../includes/class-ure-lib.php:
|
407 |
msgid "Unfiltered html"
|
408 |
msgstr "HTML tidak tersaring"
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
msgid "Edit posts"
|
412 |
msgstr "Sunting posting"
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
415 |
msgid "Edit others posts"
|
416 |
msgstr "Sunting posting lainnya"
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
msgid "Edit published posts"
|
420 |
msgstr "Sunting posting terpublikasi"
|
421 |
|
422 |
-
#: ../includes/class-ure-lib.php:
|
423 |
msgid "Publish posts"
|
424 |
msgstr "Publikasi posting"
|
425 |
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
msgid "Edit pages"
|
428 |
msgstr "Sunting halaman"
|
429 |
|
430 |
-
#: ../includes/class-ure-lib.php:
|
431 |
msgid "Read"
|
432 |
msgstr "Baca"
|
433 |
|
434 |
-
#: ../includes/class-ure-lib.php:
|
435 |
msgid "Level 10"
|
436 |
msgstr "Tingkat 10"
|
437 |
|
438 |
-
#: ../includes/class-ure-lib.php:
|
439 |
msgid "Level 9"
|
440 |
msgstr "Tingkat 9"
|
441 |
|
442 |
-
#: ../includes/class-ure-lib.php:
|
443 |
msgid "Level 8"
|
444 |
msgstr "Tingkat 8"
|
445 |
|
446 |
-
#: ../includes/class-ure-lib.php:
|
447 |
msgid "Level 7"
|
448 |
msgstr "Tingkat 7"
|
449 |
|
450 |
-
#: ../includes/class-ure-lib.php:
|
451 |
msgid "Level 6"
|
452 |
msgstr "Tingkat 6"
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
msgid "Level 5"
|
456 |
msgstr "Tingkat 5"
|
457 |
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
msgid "Level 4"
|
460 |
msgstr "Tingkat 4"
|
461 |
|
462 |
-
#: ../includes/class-ure-lib.php:
|
463 |
msgid "Level 3"
|
464 |
msgstr "Tingkat 3"
|
465 |
|
466 |
-
#: ../includes/class-ure-lib.php:
|
467 |
msgid "Level 2"
|
468 |
msgstr "Tingkat 2"
|
469 |
|
470 |
-
#: ../includes/class-ure-lib.php:
|
471 |
msgid "Level 1"
|
472 |
msgstr "Tingkat 1"
|
473 |
|
474 |
-
#: ../includes/class-ure-lib.php:
|
475 |
msgid "Level 0"
|
476 |
msgstr "Tingkat 0"
|
477 |
|
478 |
-
#: ../includes/class-ure-lib.php:
|
479 |
msgid "Edit others pages"
|
480 |
msgstr "Sunting halaman lainnya"
|
481 |
|
482 |
-
#: ../includes/class-ure-lib.php:
|
483 |
msgid "Edit published pages"
|
484 |
msgstr "Sunting halaman terpublikasi"
|
485 |
|
486 |
-
#: ../includes/class-ure-lib.php:
|
487 |
msgid "Publish pages"
|
488 |
msgstr "Publikasi halaman"
|
489 |
|
490 |
-
#: ../includes/class-ure-lib.php:
|
491 |
msgid "Delete pages"
|
492 |
msgstr "Hapus halaman"
|
493 |
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
msgid "Delete others pages"
|
496 |
msgstr "Hapus halaman lainnya"
|
497 |
|
498 |
-
#: ../includes/class-ure-lib.php:
|
499 |
msgid "Delete published pages"
|
500 |
msgstr "Hapus halaman terpublikasi"
|
501 |
|
502 |
-
#: ../includes/class-ure-lib.php:
|
503 |
msgid "Delete posts"
|
504 |
msgstr "hapus posting"
|
505 |
|
506 |
-
#: ../includes/class-ure-lib.php:
|
507 |
msgid "Delete others posts"
|
508 |
msgstr "Hapus posting lainnya"
|
509 |
|
510 |
-
#: ../includes/class-ure-lib.php:
|
511 |
msgid "Delete published posts"
|
512 |
msgstr "Hapus posting terpublikasi"
|
513 |
|
514 |
-
#: ../includes/class-ure-lib.php:
|
515 |
msgid "Delete private posts"
|
516 |
msgstr "Hapus posting pribadi"
|
517 |
|
518 |
-
#: ../includes/class-ure-lib.php:
|
519 |
msgid "Edit private posts"
|
520 |
msgstr "Sunting posting pribadi"
|
521 |
|
522 |
-
#: ../includes/class-ure-lib.php:
|
523 |
msgid "Read private posts"
|
524 |
msgstr "Baca posting pribadi"
|
525 |
|
526 |
-
#: ../includes/class-ure-lib.php:
|
527 |
msgid "Delete private pages"
|
528 |
msgstr "Hapus halaman pribadi"
|
529 |
|
530 |
-
#: ../includes/class-ure-lib.php:
|
531 |
msgid "Edit private pages"
|
532 |
msgstr "Sunting halaman pribadi"
|
533 |
|
534 |
-
#: ../includes/class-ure-lib.php:
|
535 |
msgid "Read private pages"
|
536 |
msgstr "baca halaman pribadi"
|
537 |
|
538 |
-
#: ../includes/class-ure-lib.php:
|
539 |
msgid "Delete users"
|
540 |
msgstr "Hapus pengguna"
|
541 |
|
542 |
-
#: ../includes/class-ure-lib.php:
|
543 |
msgid "Create users"
|
544 |
msgstr "Buat pengguna"
|
545 |
|
546 |
-
#: ../includes/class-ure-lib.php:
|
547 |
msgid "Unfiltered upload"
|
548 |
msgstr "Unggahan tidak tersaring"
|
549 |
|
550 |
-
#: ../includes/class-ure-lib.php:
|
551 |
msgid "Edit dashboard"
|
552 |
msgstr "Sunting dasbor"
|
553 |
|
554 |
-
#: ../includes/class-ure-lib.php:
|
555 |
msgid "Update plugins"
|
556 |
msgstr "Perbarui plugin"
|
557 |
|
558 |
-
#: ../includes/class-ure-lib.php:
|
559 |
msgid "Delete plugins"
|
560 |
msgstr "Hapus plugin"
|
561 |
|
562 |
-
#: ../includes/class-ure-lib.php:
|
563 |
msgid "Install plugins"
|
564 |
msgstr "Pasang plugin"
|
565 |
|
566 |
-
#: ../includes/class-ure-lib.php:
|
567 |
msgid "Update themes"
|
568 |
msgstr "Perbarui tema"
|
569 |
|
570 |
-
#: ../includes/class-ure-lib.php:
|
571 |
msgid "Install themes"
|
572 |
msgstr "Pasang tema"
|
573 |
|
574 |
-
#: ../includes/class-ure-lib.php:
|
575 |
msgid "Update core"
|
576 |
msgstr "Perbarui inti"
|
577 |
|
578 |
-
#: ../includes/class-ure-lib.php:
|
579 |
msgid "List users"
|
580 |
msgstr "Daftar pengguna"
|
581 |
|
582 |
-
#: ../includes/class-ure-lib.php:
|
583 |
msgid "Remove users"
|
584 |
msgstr "Hapus pengguna"
|
585 |
|
586 |
-
#: ../includes/class-ure-lib.php:
|
587 |
msgid "Add users"
|
588 |
msgstr "Tambah pengguna"
|
589 |
|
590 |
-
#: ../includes/class-ure-lib.php:
|
591 |
msgid "Promote users"
|
592 |
msgstr "Promosi pengguna"
|
593 |
|
594 |
-
#: ../includes/class-ure-lib.php:
|
595 |
msgid "Edit theme options"
|
596 |
msgstr "Sunting pilihan tema"
|
597 |
|
598 |
-
#: ../includes/class-ure-lib.php:
|
599 |
msgid "Delete themes"
|
600 |
msgstr "Hapus tema"
|
601 |
|
602 |
-
#: ../includes/class-ure-lib.php:
|
603 |
msgid "Export"
|
604 |
msgstr "Ekspor"
|
605 |
|
606 |
-
#: ../includes/class-ure-lib.php:
|
607 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
608 |
msgstr "Salah: Kemampuan nama harus mengandung karakter latin dan angka saja!"
|
609 |
|
610 |
-
#: ../includes/class-ure-lib.php:
|
611 |
#, php-format
|
612 |
msgid "Capability %s is added successfully"
|
613 |
msgstr "Kemampuan %s berhasil ditambahkan"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
#, php-format
|
617 |
msgid "Capability %s exists already"
|
618 |
msgstr "Kemampuan %s telah ada"
|
619 |
|
620 |
-
#: ../includes/class-ure-lib.php:
|
621 |
#, php-format
|
622 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
623 |
msgstr "Salah! Anda tidak memiliki izin untuk menghapus kemampuan ini: %s!"
|
624 |
|
625 |
-
#: ../includes/class-ure-lib.php:
|
626 |
#, php-format
|
627 |
msgid "Capability %s is removed successfully"
|
628 |
msgstr "Kemampuan %s berhasil dihapus"
|
629 |
|
630 |
-
#: ../includes/class-ure-lib.php:
|
631 |
-
msgid "About this Plugin:"
|
632 |
-
msgstr "Tentang Plugin ini:"
|
633 |
-
|
634 |
-
#: ../includes/class-ure-lib.php:2087
|
635 |
msgid "Author's website"
|
636 |
msgstr "Website pengarang"
|
637 |
|
638 |
-
#: ../includes/class-ure-lib.php:
|
639 |
msgid "Plugin webpage"
|
640 |
msgstr "Halaman web Plugin"
|
641 |
|
642 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
643 |
msgid "FAQ"
|
644 |
msgstr "FAQ"
|
645 |
|
646 |
-
#: ../includes/class-ure-lib.php:
|
647 |
msgid "None"
|
648 |
msgstr "Nihil"
|
649 |
|
650 |
-
#: ../includes/class-ure-lib.php:
|
651 |
msgid "Delete All Unused Roles"
|
652 |
msgstr "Hapus Peran Tidak Terpakai"
|
653 |
|
654 |
-
#: ../includes/class-ure-lib.php:
|
655 |
msgid "— No role for this site —"
|
656 |
msgstr "— Tidak ada peran untuk situs ini —"
|
657 |
|
@@ -663,18 +649,6 @@ msgstr "Jaringan Super Admin"
|
|
663 |
msgid "Change capabilities for user"
|
664 |
msgstr "Ubah kemampuan untuk pengguna"
|
665 |
|
666 |
-
#: ../includes/ure-user-edit.php:66
|
667 |
-
msgid "Primary Role:"
|
668 |
-
msgstr "Peran Utama:"
|
669 |
-
|
670 |
-
#: ../includes/ure-user-edit.php:75
|
671 |
-
msgid "bbPress Role:"
|
672 |
-
msgstr "Peran bbPress:"
|
673 |
-
|
674 |
-
#: ../includes/ure-user-edit.php:85
|
675 |
-
msgid "Other Roles:"
|
676 |
-
msgstr "Peran Lain:"
|
677 |
-
|
678 |
#: ../includes/class-ure-screen-help.php:15
|
679 |
msgid "Show Administrator role at User Role Editor"
|
680 |
msgstr "Tampilkan peran Administrator di User Role Editor"
|
@@ -703,6 +677,10 @@ msgstr ""
|
|
703 |
"penggunaan internal seperti \"edit_others_posts\" ke bentuk yang lebih user "
|
704 |
"friendly, misalnya \"Edit posting orang lain\"."
|
705 |
|
|
|
|
|
|
|
|
|
706 |
#: ../includes/class-ure-screen-help.php:22
|
707 |
msgid ""
|
708 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
@@ -729,3 +707,51 @@ msgstr ""
|
|
729 |
"Super administrator hanya dapat membuat, mengedit dan menghapus pengguna di "
|
730 |
"bawah WordPress multi-situs. Aktifkan pilihan ini dalam rangka menghapus "
|
731 |
"keterbatasan ini."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-06 12:21+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: http://al-badar.net <nasrulhaq81@gmail.com>\n"
|
9 |
"Language: id_ID\n"
|
10 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
"X-Poedit-KeywordsList: __;_e;esc_html__\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/settings-template.php:80 ../includes/settings-template.php:111
|
20 |
+
#: ../includes/settings-template.php:140
|
21 |
msgid "Save"
|
22 |
msgstr "Simpan"
|
23 |
|
24 |
+
#: ../includes/settings-template.php:104
|
25 |
+
msgid ""
|
26 |
+
"Note for multisite environment: take into account that other default roles "
|
27 |
+
"should exist at the site, in order to be assigned to the new registered "
|
28 |
+
"users."
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: ../includes/class-user-role-editor.php:185
|
32 |
+
msgid "Change role for users without role"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: ../includes/class-user-role-editor.php:186
|
36 |
+
msgid "No rights"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: ../includes/class-user-role-editor.php:187
|
40 |
+
msgid "Provide new role"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: ../includes/class-user-role-editor.php:271
|
44 |
+
#: ../includes/class-user-role-editor.php:273
|
45 |
msgid "You do not have permission to edit this user."
|
46 |
msgstr "Anda tidak diizinkan untuk menyunting user ini. "
|
47 |
|
48 |
+
#: ../includes/class-user-role-editor.php:414
|
49 |
msgid "Capabilities"
|
50 |
msgstr "Kemampuan"
|
51 |
|
52 |
+
#: ../includes/class-user-role-editor.php:507
|
53 |
msgid "Settings"
|
54 |
msgstr "Pengaturan"
|
55 |
|
56 |
+
#: ../includes/class-user-role-editor.php:520
|
57 |
+
#: ../includes/class-ure-lib.php:2235
|
58 |
msgid "Changelog"
|
59 |
msgstr "log Perubahan"
|
60 |
|
61 |
+
#: ../includes/class-user-role-editor.php:542
|
62 |
msgid "Overview"
|
63 |
msgstr "Ikhtisar"
|
64 |
|
65 |
+
#: ../includes/class-user-role-editor.php:551
|
66 |
+
#: ../includes/class-user-role-editor.php:579
|
67 |
+
#: ../includes/class-user-role-editor.php:873
|
68 |
+
#: ../includes/class-ure-lib.php:225
|
69 |
msgid "User Role Editor"
|
70 |
msgstr "User Role Editor"
|
71 |
|
72 |
+
#: ../includes/class-user-role-editor.php:639
|
73 |
+
#: ../includes/class-user-role-editor.php:684
|
74 |
+
msgid "User Role Editor options are updated"
|
75 |
+
msgstr "Pilihan User Role Editor diperbarui"
|
76 |
+
|
77 |
+
#: ../includes/class-user-role-editor.php:668
|
78 |
+
#, fuzzy
|
79 |
+
msgid "Default Roles are updated"
|
80 |
+
msgstr "Peran "
|
81 |
+
|
82 |
+
#: ../includes/class-user-role-editor.php:692
|
83 |
msgid ""
|
84 |
"You do not have sufficient permissions to manage options for User Role "
|
85 |
"Editor."
|
87 |
"Anda tidak memiliki izin yang memadai untuk mengelola pilihan User Role "
|
88 |
"Editor."
|
89 |
|
90 |
+
#: ../includes/class-user-role-editor.php:764
|
|
|
|
|
|
|
|
|
91 |
msgid "Insufficient permissions to work with User Role Editor"
|
92 |
msgstr "Izin yang tidak sesuai untuk bekerja dengan User Role Editor"
|
93 |
|
94 |
+
#: ../includes/class-user-role-editor.php:818
|
95 |
msgid "Select All"
|
96 |
msgstr "Pilih Semua"
|
97 |
|
98 |
+
#: ../includes/class-user-role-editor.php:819
|
99 |
msgid "Unselect All"
|
100 |
msgstr "Batalkan Semua"
|
101 |
|
102 |
+
#: ../includes/class-user-role-editor.php:820
|
103 |
msgid "Reverse"
|
104 |
msgstr "Memutar"
|
105 |
|
106 |
+
#: ../includes/class-user-role-editor.php:821
|
107 |
msgid "Update"
|
108 |
msgstr "Pembaruan"
|
109 |
|
110 |
+
#: ../includes/class-user-role-editor.php:822
|
111 |
msgid "Please confirm permissions update"
|
112 |
msgstr "Harap konfirmasi pembaruan izin"
|
113 |
|
114 |
+
#: ../includes/class-user-role-editor.php:823
|
115 |
msgid "Add New Role"
|
116 |
msgstr "Tambah Peran Baru"
|
117 |
|
118 |
+
#: ../includes/class-user-role-editor.php:824
|
119 |
msgid " Role name (ID) can not be empty!"
|
120 |
msgstr "Nama peran (ID) tidak boleh kosong!"
|
121 |
|
122 |
+
#: ../includes/class-user-role-editor.php:825
|
123 |
msgid ""
|
124 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
125 |
"only!"
|
127 |
"Nama peran (ID) harus berisi karakter latin, angka, tanda hubung atau garis "
|
128 |
"bawah saja!"
|
129 |
|
130 |
+
#: ../includes/class-user-role-editor.php:826
|
131 |
+
msgid ""
|
132 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
133 |
+
"it."
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: ../includes/class-user-role-editor.php:827
|
137 |
msgid "Add Role"
|
138 |
msgstr "Tambah Peran"
|
139 |
|
140 |
+
#: ../includes/class-user-role-editor.php:828
|
141 |
msgid "Delete Role"
|
142 |
msgstr "Hapus Peran"
|
143 |
|
144 |
+
#: ../includes/class-user-role-editor.php:829
|
145 |
msgid "Cancel"
|
146 |
msgstr "Batalkan"
|
147 |
|
148 |
+
#: ../includes/class-user-role-editor.php:830
|
149 |
msgid "Add Capability"
|
150 |
msgstr "Tambah Kemampuan"
|
151 |
|
152 |
+
#: ../includes/class-user-role-editor.php:831
|
153 |
+
#: ../includes/class-user-role-editor.php:840
|
154 |
msgid "Delete Capability"
|
155 |
msgstr "Hapus Kemampuan"
|
156 |
|
157 |
+
#: ../includes/class-user-role-editor.php:832
|
158 |
msgid "Reset"
|
159 |
msgstr "Atur Ulang"
|
160 |
|
161 |
+
#: ../includes/class-user-role-editor.php:833
|
162 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
163 |
msgstr ""
|
164 |
"BAHAYA! Reset akan mengembalikan pengaturan default dari WordPress Inti."
|
165 |
|
166 |
+
#: ../includes/class-user-role-editor.php:834
|
167 |
msgid ""
|
168 |
"If any plugins have changed capabilities in any way upon installation (such "
|
169 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
172 |
"(seperti S2Member, WooCommerce, dan banyak lagi), kemampuan mereka akan "
|
173 |
"DIHAPUS!"
|
174 |
|
175 |
+
#: ../includes/class-user-role-editor.php:835
|
176 |
msgid ""
|
177 |
"For more information on how to undo changes and restore plugin capabilities "
|
178 |
"go to"
|
180 |
"Untuk informasi lebih lanjut tentang cara membatalkan perubahan dan "
|
181 |
"mengembalikan kemampuan Plugin pergi ke"
|
182 |
|
183 |
+
#: ../includes/class-user-role-editor.php:837
|
184 |
msgid "Continue?"
|
185 |
msgstr "Lanjut?"
|
186 |
|
187 |
+
#: ../includes/class-user-role-editor.php:838
|
188 |
msgid "Default Role"
|
189 |
msgstr "Peran "
|
190 |
|
191 |
+
#: ../includes/class-user-role-editor.php:839
|
192 |
msgid "Set New Default Role"
|
193 |
msgstr "Atur Peran Baru Default"
|
194 |
|
195 |
+
#: ../includes/class-user-role-editor.php:841
|
196 |
msgid ""
|
197 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
198 |
"or other custom code"
|
200 |
"Peringatan! Hati-hati - menghapus kemampuan kritis dapat menyebabkan crash "
|
201 |
"beberapa Plugin atau kode kustom lainnya"
|
202 |
|
203 |
+
#: ../includes/class-user-role-editor.php:842
|
204 |
msgid " Capability name (ID) can not be empty!"
|
205 |
msgstr "Nama Kemampuan (ID) tidak boleh kosong!"
|
206 |
|
207 |
+
#: ../includes/class-user-role-editor.php:843
|
208 |
msgid ""
|
209 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
210 |
"underscore only!"
|
212 |
"Nama Kemampuan (ID) harus mengandung karakter latin, angka, kata penghubung "
|
213 |
"atau garis bawah saja!"
|
214 |
|
215 |
+
#: ../includes/class-user-role-editor.php:876
|
216 |
+
#: ../includes/class-user-role-editor.php:905
|
217 |
msgid "Other Roles"
|
218 |
msgstr "Peran Lainnya"
|
219 |
|
220 |
+
#: ../includes/class-user-role-editor.php:887
|
221 |
msgid "Edit"
|
222 |
msgstr "Sunting"
|
223 |
|
224 |
+
#: ../includes/ure-role-edit.php:44
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
msgid "If checked, then apply action to ALL sites of this Network"
|
226 |
msgstr ""
|
227 |
"Jika dicentang, kemudian terapkan tindakan untuk SEMUA situs Jaringan ini"
|
228 |
|
229 |
+
#: ../includes/class-ure-lib.php:143
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
msgid "Error: wrong request"
|
231 |
msgstr "Salah: salah permintaan"
|
232 |
|
233 |
+
#: ../includes/class-ure-lib.php:322
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
msgid "Error: "
|
235 |
msgstr "Salah:"
|
236 |
|
237 |
+
#: ../includes/class-ure-lib.php:322
|
238 |
msgid "Role"
|
239 |
msgstr "Peran"
|
240 |
|
241 |
+
#: ../includes/class-ure-lib.php:323
|
242 |
msgid "does not exist"
|
243 |
msgstr "tidak ada"
|
244 |
|
245 |
+
#: ../includes/class-ure-lib.php:366
|
246 |
msgid "Role is updated successfully"
|
247 |
msgstr "Peran berhasil diperbarui"
|
248 |
|
249 |
+
#: ../includes/class-ure-lib.php:368
|
250 |
msgid "Roles are updated for all network"
|
251 |
msgstr "Peran diperbarui untuk semua jaringan"
|
252 |
|
253 |
+
#: ../includes/class-ure-lib.php:374
|
254 |
msgid "Error occured during role(s) update"
|
255 |
msgstr "Kesalahan terjadi selama pembaruan peran"
|
256 |
|
257 |
+
#: ../includes/class-ure-lib.php:381
|
258 |
msgid "User capabilities are updated successfully"
|
259 |
msgstr "Kemampuan pengguna berhasil diperbarui"
|
260 |
|
261 |
+
#: ../includes/class-ure-lib.php:386
|
262 |
msgid "Error occured during user update"
|
263 |
msgstr "Kesalahan terjadi sepanjang pembaruan pengguna"
|
264 |
|
265 |
+
#: ../includes/class-ure-lib.php:441
|
266 |
msgid "User Roles are restored to WordPress default values. "
|
267 |
msgstr "Peran Pengguna dikembalikan ke nilai Wordpress default."
|
268 |
|
269 |
+
#: ../includes/class-ure-lib.php:1340
|
270 |
msgid "Help"
|
271 |
msgstr "Bantuan"
|
272 |
|
273 |
+
#: ../includes/class-ure-lib.php:1690
|
274 |
msgid "Error is occur. Please check the log file."
|
275 |
msgstr "kesalahan terjadi, Harap periksa log data."
|
276 |
|
277 |
+
#: ../includes/class-ure-lib.php:1733
|
278 |
msgid ""
|
279 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
280 |
"only!"
|
282 |
"Kesalahan: ID Peran harus mengandung karakter latin, angka, kata penghubung "
|
283 |
"dan garis bawah saja!"
|
284 |
|
285 |
+
#: ../includes/class-ure-lib.php:1737
|
286 |
+
msgid ""
|
287 |
+
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
288 |
+
"characters to it."
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: ../includes/class-ure-lib.php:1752
|
292 |
#, php-format
|
293 |
msgid "Role %s exists already"
|
294 |
msgstr "Peran %s telah ada"
|
295 |
|
296 |
+
#: ../includes/class-ure-lib.php:1767
|
297 |
msgid "Error is encountered during new role create operation"
|
298 |
msgstr "Kesalahan ditemui selama peran baru membuat operasi"
|
299 |
|
300 |
+
#: ../includes/class-ure-lib.php:1769
|
301 |
#, php-format
|
302 |
msgid "Role %s is created successfully"
|
303 |
msgstr "Peran %s berhasil dibuat"
|
304 |
|
305 |
+
#: ../includes/class-ure-lib.php:1838
|
306 |
msgid "Error encountered during role delete operation"
|
307 |
msgstr "Kesalahan ditemui selama operasi penghapusan peran"
|
308 |
|
309 |
+
#: ../includes/class-ure-lib.php:1840
|
310 |
msgid "Unused roles are deleted successfully"
|
311 |
msgstr "Peran yang tidak digunakan berhasil dihapus"
|
312 |
|
313 |
+
#: ../includes/class-ure-lib.php:1842
|
314 |
#, php-format
|
315 |
msgid "Role %s is deleted successfully"
|
316 |
msgstr "Peran %s berhasil dihapus"
|
317 |
|
318 |
+
#: ../includes/class-ure-lib.php:1867
|
319 |
msgid "Error encountered during default role change operation"
|
320 |
msgstr "Kesalahan ditemui selama operasi perubahan peran standar"
|
321 |
|
322 |
+
#: ../includes/class-ure-lib.php:1873
|
323 |
#, php-format
|
324 |
msgid "Default role for new users is set to %s successfully"
|
325 |
msgstr "Peran standar untuk pengguna baru diatur ke %s dengan sukses"
|
326 |
|
327 |
+
#: ../includes/class-ure-lib.php:1892
|
328 |
msgid "Editor"
|
329 |
msgstr "Penyunting"
|
330 |
|
331 |
+
#: ../includes/class-ure-lib.php:1893
|
332 |
msgid "Author"
|
333 |
msgstr "Pengarang"
|
334 |
|
335 |
+
#: ../includes/class-ure-lib.php:1894
|
336 |
msgid "Contributor"
|
337 |
msgstr "Kontributor"
|
338 |
|
339 |
+
#: ../includes/class-ure-lib.php:1895
|
340 |
msgid "Subscriber"
|
341 |
msgstr "Pelanggan"
|
342 |
|
343 |
+
#: ../includes/class-ure-lib.php:1897
|
344 |
msgid "Switch themes"
|
345 |
msgstr "Ganti tema"
|
346 |
|
347 |
+
#: ../includes/class-ure-lib.php:1898
|
348 |
msgid "Edit themes"
|
349 |
msgstr "Sunting tema"
|
350 |
|
351 |
+
#: ../includes/class-ure-lib.php:1899
|
352 |
msgid "Activate plugins"
|
353 |
msgstr "Aktifkan plugin"
|
354 |
|
355 |
+
#: ../includes/class-ure-lib.php:1900
|
356 |
msgid "Edit plugins"
|
357 |
msgstr "Sunting plugin"
|
358 |
|
359 |
+
#: ../includes/class-ure-lib.php:1901
|
360 |
msgid "Edit users"
|
361 |
msgstr "Sunting pengguna"
|
362 |
|
363 |
+
#: ../includes/class-ure-lib.php:1902
|
364 |
msgid "Edit files"
|
365 |
msgstr "Sunting data"
|
366 |
|
367 |
+
#: ../includes/class-ure-lib.php:1903
|
368 |
msgid "Manage options"
|
369 |
msgstr "kelola pilihan"
|
370 |
|
371 |
+
#: ../includes/class-ure-lib.php:1904
|
372 |
msgid "Moderate comments"
|
373 |
msgstr "Moderasi komentar"
|
374 |
|
375 |
+
#: ../includes/class-ure-lib.php:1905
|
376 |
msgid "Manage categories"
|
377 |
msgstr "Kelola kategori"
|
378 |
|
379 |
+
#: ../includes/class-ure-lib.php:1906
|
380 |
msgid "Manage links"
|
381 |
msgstr "Kelola tautan"
|
382 |
|
383 |
+
#: ../includes/class-ure-lib.php:1907
|
384 |
msgid "Upload files"
|
385 |
msgstr "Unggah data"
|
386 |
|
387 |
+
#: ../includes/class-ure-lib.php:1908
|
388 |
msgid "Import"
|
389 |
msgstr "Impor"
|
390 |
|
391 |
+
#: ../includes/class-ure-lib.php:1909
|
392 |
msgid "Unfiltered html"
|
393 |
msgstr "HTML tidak tersaring"
|
394 |
|
395 |
+
#: ../includes/class-ure-lib.php:1910
|
396 |
msgid "Edit posts"
|
397 |
msgstr "Sunting posting"
|
398 |
|
399 |
+
#: ../includes/class-ure-lib.php:1911
|
400 |
msgid "Edit others posts"
|
401 |
msgstr "Sunting posting lainnya"
|
402 |
|
403 |
+
#: ../includes/class-ure-lib.php:1912
|
404 |
msgid "Edit published posts"
|
405 |
msgstr "Sunting posting terpublikasi"
|
406 |
|
407 |
+
#: ../includes/class-ure-lib.php:1913
|
408 |
msgid "Publish posts"
|
409 |
msgstr "Publikasi posting"
|
410 |
|
411 |
+
#: ../includes/class-ure-lib.php:1914
|
412 |
msgid "Edit pages"
|
413 |
msgstr "Sunting halaman"
|
414 |
|
415 |
+
#: ../includes/class-ure-lib.php:1915
|
416 |
msgid "Read"
|
417 |
msgstr "Baca"
|
418 |
|
419 |
+
#: ../includes/class-ure-lib.php:1916
|
420 |
msgid "Level 10"
|
421 |
msgstr "Tingkat 10"
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:1917
|
424 |
msgid "Level 9"
|
425 |
msgstr "Tingkat 9"
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:1918
|
428 |
msgid "Level 8"
|
429 |
msgstr "Tingkat 8"
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:1919
|
432 |
msgid "Level 7"
|
433 |
msgstr "Tingkat 7"
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:1920
|
436 |
msgid "Level 6"
|
437 |
msgstr "Tingkat 6"
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:1921
|
440 |
msgid "Level 5"
|
441 |
msgstr "Tingkat 5"
|
442 |
|
443 |
+
#: ../includes/class-ure-lib.php:1922
|
444 |
msgid "Level 4"
|
445 |
msgstr "Tingkat 4"
|
446 |
|
447 |
+
#: ../includes/class-ure-lib.php:1923
|
448 |
msgid "Level 3"
|
449 |
msgstr "Tingkat 3"
|
450 |
|
451 |
+
#: ../includes/class-ure-lib.php:1924
|
452 |
msgid "Level 2"
|
453 |
msgstr "Tingkat 2"
|
454 |
|
455 |
+
#: ../includes/class-ure-lib.php:1925
|
456 |
msgid "Level 1"
|
457 |
msgstr "Tingkat 1"
|
458 |
|
459 |
+
#: ../includes/class-ure-lib.php:1926
|
460 |
msgid "Level 0"
|
461 |
msgstr "Tingkat 0"
|
462 |
|
463 |
+
#: ../includes/class-ure-lib.php:1927
|
464 |
msgid "Edit others pages"
|
465 |
msgstr "Sunting halaman lainnya"
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:1928
|
468 |
msgid "Edit published pages"
|
469 |
msgstr "Sunting halaman terpublikasi"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:1929
|
472 |
msgid "Publish pages"
|
473 |
msgstr "Publikasi halaman"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:1930
|
476 |
msgid "Delete pages"
|
477 |
msgstr "Hapus halaman"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:1931
|
480 |
msgid "Delete others pages"
|
481 |
msgstr "Hapus halaman lainnya"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:1932
|
484 |
msgid "Delete published pages"
|
485 |
msgstr "Hapus halaman terpublikasi"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:1933
|
488 |
msgid "Delete posts"
|
489 |
msgstr "hapus posting"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:1934
|
492 |
msgid "Delete others posts"
|
493 |
msgstr "Hapus posting lainnya"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:1935
|
496 |
msgid "Delete published posts"
|
497 |
msgstr "Hapus posting terpublikasi"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:1936
|
500 |
msgid "Delete private posts"
|
501 |
msgstr "Hapus posting pribadi"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:1937
|
504 |
msgid "Edit private posts"
|
505 |
msgstr "Sunting posting pribadi"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:1938
|
508 |
msgid "Read private posts"
|
509 |
msgstr "Baca posting pribadi"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:1939
|
512 |
msgid "Delete private pages"
|
513 |
msgstr "Hapus halaman pribadi"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:1940
|
516 |
msgid "Edit private pages"
|
517 |
msgstr "Sunting halaman pribadi"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:1941
|
520 |
msgid "Read private pages"
|
521 |
msgstr "baca halaman pribadi"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:1942
|
524 |
msgid "Delete users"
|
525 |
msgstr "Hapus pengguna"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:1943
|
528 |
msgid "Create users"
|
529 |
msgstr "Buat pengguna"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:1944
|
532 |
msgid "Unfiltered upload"
|
533 |
msgstr "Unggahan tidak tersaring"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:1945
|
536 |
msgid "Edit dashboard"
|
537 |
msgstr "Sunting dasbor"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:1946
|
540 |
msgid "Update plugins"
|
541 |
msgstr "Perbarui plugin"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:1947
|
544 |
msgid "Delete plugins"
|
545 |
msgstr "Hapus plugin"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:1948
|
548 |
msgid "Install plugins"
|
549 |
msgstr "Pasang plugin"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:1949
|
552 |
msgid "Update themes"
|
553 |
msgstr "Perbarui tema"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:1950
|
556 |
msgid "Install themes"
|
557 |
msgstr "Pasang tema"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:1951
|
560 |
msgid "Update core"
|
561 |
msgstr "Perbarui inti"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:1952
|
564 |
msgid "List users"
|
565 |
msgstr "Daftar pengguna"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:1953
|
568 |
msgid "Remove users"
|
569 |
msgstr "Hapus pengguna"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:1954
|
572 |
msgid "Add users"
|
573 |
msgstr "Tambah pengguna"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:1955
|
576 |
msgid "Promote users"
|
577 |
msgstr "Promosi pengguna"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:1956
|
580 |
msgid "Edit theme options"
|
581 |
msgstr "Sunting pilihan tema"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:1957
|
584 |
msgid "Delete themes"
|
585 |
msgstr "Hapus tema"
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:1958
|
588 |
msgid "Export"
|
589 |
msgstr "Ekspor"
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:2068
|
592 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
593 |
msgstr "Salah: Kemampuan nama harus mengandung karakter latin dan angka saja!"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:2081
|
596 |
#, php-format
|
597 |
msgid "Capability %s is added successfully"
|
598 |
msgstr "Kemampuan %s berhasil ditambahkan"
|
599 |
|
600 |
+
#: ../includes/class-ure-lib.php:2083
|
601 |
#, php-format
|
602 |
msgid "Capability %s exists already"
|
603 |
msgstr "Kemampuan %s telah ada"
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:2108
|
606 |
#, php-format
|
607 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
608 |
msgstr "Salah! Anda tidak memiliki izin untuk menghapus kemampuan ini: %s!"
|
609 |
|
610 |
+
#: ../includes/class-ure-lib.php:2127
|
611 |
#, php-format
|
612 |
msgid "Capability %s is removed successfully"
|
613 |
msgstr "Kemampuan %s berhasil dihapus"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:2232
|
|
|
|
|
|
|
|
|
616 |
msgid "Author's website"
|
617 |
msgstr "Website pengarang"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:2233
|
620 |
msgid "Plugin webpage"
|
621 |
msgstr "Halaman web Plugin"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:2234
|
624 |
+
#, fuzzy
|
625 |
+
msgid "Plugin download"
|
626 |
+
msgstr "Halaman web Plugin"
|
627 |
+
|
628 |
+
#: ../includes/class-ure-lib.php:2236
|
629 |
msgid "FAQ"
|
630 |
msgstr "FAQ"
|
631 |
|
632 |
+
#: ../includes/class-ure-lib.php:2284
|
633 |
msgid "None"
|
634 |
msgstr "Nihil"
|
635 |
|
636 |
+
#: ../includes/class-ure-lib.php:2311
|
637 |
msgid "Delete All Unused Roles"
|
638 |
msgstr "Hapus Peran Tidak Terpakai"
|
639 |
|
640 |
+
#: ../includes/class-ure-lib.php:2335
|
641 |
msgid "— No role for this site —"
|
642 |
msgstr "— Tidak ada peran untuk situs ini —"
|
643 |
|
649 |
msgid "Change capabilities for user"
|
650 |
msgstr "Ubah kemampuan untuk pengguna"
|
651 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
652 |
#: ../includes/class-ure-screen-help.php:15
|
653 |
msgid "Show Administrator role at User Role Editor"
|
654 |
msgstr "Tampilkan peran Administrator di User Role Editor"
|
677 |
"penggunaan internal seperti \"edit_others_posts\" ke bentuk yang lebih user "
|
678 |
"friendly, misalnya \"Edit posting orang lain\"."
|
679 |
|
680 |
+
#: ../includes/class-ure-screen-help.php:21
|
681 |
+
msgid "Show deprecated capabilities"
|
682 |
+
msgstr "Tampilkan kemampuan usang"
|
683 |
+
|
684 |
#: ../includes/class-ure-screen-help.php:22
|
685 |
msgid ""
|
686 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
707 |
"Super administrator hanya dapat membuat, mengedit dan menghapus pengguna di "
|
708 |
"bawah WordPress multi-situs. Aktifkan pilihan ini dalam rangka menghapus "
|
709 |
"keterbatasan ini."
|
710 |
+
|
711 |
+
#~ msgid "Select Role and change its capabilities list"
|
712 |
+
#~ msgstr "Pilih Peran dan ubah daftar kemampuan"
|
713 |
+
|
714 |
+
#~ msgid "Select Role:"
|
715 |
+
#~ msgstr "Pilih Peran:"
|
716 |
+
|
717 |
+
#~ msgid "Show capabilities in human readable form"
|
718 |
+
#~ msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
719 |
+
|
720 |
+
#~ msgid "Apply to All Sites"
|
721 |
+
#~ msgstr "Terapkan ke Semua Situs"
|
722 |
+
|
723 |
+
#~ msgid "Core capabilities:"
|
724 |
+
#~ msgstr "Kemampuan inti:"
|
725 |
+
|
726 |
+
#~ msgid "Quick filter:"
|
727 |
+
#~ msgstr "Saring Cepat:"
|
728 |
+
|
729 |
+
#~ msgid "Custom capabilities:"
|
730 |
+
#~ msgstr "Kustom kemampuan:"
|
731 |
+
|
732 |
+
#~ msgid "Role name (ID): "
|
733 |
+
#~ msgstr "Nama Peran (ID):"
|
734 |
+
|
735 |
+
#~ msgid "Display Role Name: "
|
736 |
+
#~ msgstr "Tampilkan Nama Peran:"
|
737 |
+
|
738 |
+
#~ msgid "Make copy of: "
|
739 |
+
#~ msgstr "buat salinan:"
|
740 |
+
|
741 |
+
#~ msgid "Delete:"
|
742 |
+
#~ msgstr "Hapus:"
|
743 |
+
|
744 |
+
#~ msgid "Capability name (ID): "
|
745 |
+
#~ msgstr "Nama Kemampuan (ID):"
|
746 |
+
|
747 |
+
#~ msgid "About this Plugin:"
|
748 |
+
#~ msgstr "Tentang Plugin ini:"
|
749 |
+
|
750 |
+
#~ msgid "Primary Role:"
|
751 |
+
#~ msgstr "Peran Utama:"
|
752 |
+
|
753 |
+
#~ msgid "bbPress Role:"
|
754 |
+
#~ msgstr "Peran bbPress:"
|
755 |
+
|
756 |
+
#~ msgid "Other Roles:"
|
757 |
+
#~ msgstr "Peran Lain:"
|
lang/ure-ru_RU.mo
CHANGED
Binary file
|
lang/ure-ru_RU.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -16,75 +16,110 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../includes/settings-template.php:
|
|
|
20 |
msgid "Save"
|
21 |
msgstr "Сохранить"
|
22 |
|
23 |
-
#: ../includes/
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "You do not have permission to edit this user."
|
26 |
msgstr "Нет прав на редактирование этого пользователя"
|
27 |
|
28 |
-
#: ../includes/class-user-role-editor.php:
|
29 |
msgid "Capabilities"
|
30 |
msgstr "Возможности"
|
31 |
|
32 |
-
#: ../includes/class-user-role-editor.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Установки"
|
35 |
|
36 |
-
#: ../includes/class-user-role-editor.php:
|
37 |
-
#: ../includes/class-ure-lib.php:
|
38 |
msgid "Changelog"
|
39 |
msgstr "Журнал изменений"
|
40 |
|
41 |
-
#: ../includes/class-user-role-editor.php:
|
42 |
msgid "Overview"
|
43 |
msgstr "Обзор"
|
44 |
|
45 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
msgid ""
|
47 |
"You do not have sufficient permissions to manage options for User Role "
|
48 |
"Editor."
|
49 |
msgstr "У вас нет прав на изменение настроек плагина"
|
50 |
|
51 |
-
#: ../includes/class-user-role-editor.php:
|
52 |
-
msgid "User Role Editor options are updated"
|
53 |
-
msgstr "Изменения в настройках Редактора ролей пользователей сохранены"
|
54 |
-
|
55 |
-
#: ../includes/class-user-role-editor.php:571
|
56 |
msgid "Insufficient permissions to work with User Role Editor"
|
57 |
msgstr "Не достаточно прав для работы с User Role Editor"
|
58 |
|
59 |
-
#: ../includes/class-user-role-editor.php:
|
60 |
msgid "Select All"
|
61 |
msgstr "Выбрать Все:"
|
62 |
|
63 |
-
#: ../includes/class-user-role-editor.php:
|
64 |
msgid "Unselect All"
|
65 |
msgstr "Исключить все"
|
66 |
|
67 |
-
#: ../includes/class-user-role-editor.php:
|
68 |
msgid "Reverse"
|
69 |
msgstr "Обратить"
|
70 |
|
71 |
-
#: ../includes/class-user-role-editor.php:
|
72 |
msgid "Update"
|
73 |
msgstr "Сохранить"
|
74 |
|
75 |
-
#: ../includes/class-user-role-editor.php:
|
76 |
msgid "Please confirm permissions update"
|
77 |
msgstr "Пожалуйста, подтвердите продолжение "
|
78 |
|
79 |
-
#: ../includes/class-user-role-editor.php:
|
80 |
msgid "Add New Role"
|
81 |
msgstr "Добавить новую Роль"
|
82 |
|
83 |
-
#: ../includes/class-user-role-editor.php:
|
84 |
msgid " Role name (ID) can not be empty!"
|
85 |
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
86 |
|
87 |
-
#: ../includes/class-user-role-editor.php:
|
88 |
msgid ""
|
89 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
90 |
"only!"
|
@@ -92,38 +127,46 @@ msgstr ""
|
|
92 |
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
93 |
"тире и знак подчеркивания"
|
94 |
|
95 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
msgid "Add Role"
|
97 |
msgstr "Добавить новую Роль"
|
98 |
|
99 |
-
#: ../includes/class-user-role-editor.php:
|
100 |
msgid "Delete Role"
|
101 |
msgstr "Удалить Роль"
|
102 |
|
103 |
-
#: ../includes/class-user-role-editor.php:
|
104 |
msgid "Cancel"
|
105 |
msgstr "Отмена"
|
106 |
|
107 |
-
#: ../includes/class-user-role-editor.php:
|
108 |
msgid "Add Capability"
|
109 |
msgstr "Добавить новую Возможность"
|
110 |
|
111 |
-
#: ../includes/class-user-role-editor.php:
|
112 |
-
#: ../includes/class-user-role-editor.php:
|
113 |
msgid "Delete Capability"
|
114 |
msgstr "Удалить Возможность"
|
115 |
|
116 |
-
#: ../includes/class-user-role-editor.php:
|
117 |
msgid "Reset"
|
118 |
msgstr "Сброс"
|
119 |
|
120 |
-
#: ../includes/class-user-role-editor.php:
|
121 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
122 |
msgstr ""
|
123 |
"ВНИМАНИЕ! Очистка восстановит роли по состоянию на момент установки "
|
124 |
"WordPress."
|
125 |
|
126 |
-
#: ../includes/class-user-role-editor.php:
|
127 |
msgid ""
|
128 |
"If any plugins have changed capabilities in any way upon installation (such "
|
129 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -131,7 +174,7 @@ msgstr ""
|
|
131 |
"Если плагины изменяли пользовательские права после установки WordPress "
|
132 |
"(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
|
133 |
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
msgid ""
|
136 |
"For more information on how to undo changes and restore plugin capabilities "
|
137 |
"go to"
|
@@ -139,19 +182,19 @@ msgstr ""
|
|
139 |
"Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
|
140 |
"для плагинов, можно узнать здесь"
|
141 |
|
142 |
-
#: ../includes/class-user-role-editor.php:
|
143 |
msgid "Continue?"
|
144 |
msgstr "Продолжить?"
|
145 |
|
146 |
-
#: ../includes/class-user-role-editor.php:
|
147 |
msgid "Default Role"
|
148 |
msgstr "Роль по-умолчанию"
|
149 |
|
150 |
-
#: ../includes/class-user-role-editor.php:
|
151 |
msgid "Set New Default Role"
|
152 |
msgstr "Установить новую роль по-умолчанию"
|
153 |
|
154 |
-
#: ../includes/class-user-role-editor.php:
|
155 |
msgid ""
|
156 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
157 |
"or other custom code"
|
@@ -159,11 +202,11 @@ msgstr ""
|
|
159 |
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
160 |
"прекращеню работы одного из плагинов или другого кода."
|
161 |
|
162 |
-
#: ../includes/class-user-role-editor.php:
|
163 |
msgid " Capability name (ID) can not be empty!"
|
164 |
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
165 |
|
166 |
-
#: ../includes/class-user-role-editor.php:
|
167 |
msgid ""
|
168 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
169 |
"underscore only!"
|
@@ -171,125 +214,68 @@ msgstr ""
|
|
171 |
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
172 |
"цифры, знаки подчеркивания"
|
173 |
|
174 |
-
#: ../includes/class-user-role-editor.php:
|
175 |
-
#: ../includes/class-
|
176 |
-
msgid "User Role Editor"
|
177 |
-
msgstr "Редактор ролей пользователей"
|
178 |
-
|
179 |
-
#: ../includes/class-user-role-editor.php:681
|
180 |
-
#: ../includes/class-user-role-editor.php:709
|
181 |
msgid "Other Roles"
|
182 |
msgstr "Другие Роли"
|
183 |
|
184 |
-
#: ../includes/class-user-role-editor.php:
|
185 |
msgid "Edit"
|
186 |
msgstr "Редактор"
|
187 |
|
188 |
-
#: ../includes/ure-role-edit.php:
|
189 |
-
msgid "Select Role and change its capabilities list"
|
190 |
-
msgstr "Выбери Роль и измени список разрешённых операций"
|
191 |
-
|
192 |
-
#: ../includes/ure-role-edit.php:19 ../includes/class-ure-lib.php:184
|
193 |
-
msgid "Select Role:"
|
194 |
-
msgstr "Выбери Роль:"
|
195 |
-
|
196 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:51
|
197 |
-
msgid "Show capabilities in human readable form"
|
198 |
-
msgstr "Показ возможностей в читабельной форме"
|
199 |
-
|
200 |
-
#: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
|
201 |
-
msgid "Show deprecated capabilities"
|
202 |
-
msgstr "Показать устаревшие разрешения"
|
203 |
-
|
204 |
-
#: ../includes/ure-role-edit.php:45
|
205 |
msgid "If checked, then apply action to ALL sites of this Network"
|
206 |
msgstr "Если включено, применить ко всем сайтам этой Сети"
|
207 |
|
208 |
-
#: ../includes/ure-
|
209 |
-
msgid "Apply to All Sites"
|
210 |
-
msgstr "Применить ко всем сайтам"
|
211 |
-
|
212 |
-
#: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:104
|
213 |
-
msgid "Core capabilities:"
|
214 |
-
msgstr "Возможности ядра:"
|
215 |
-
|
216 |
-
#: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:106
|
217 |
-
msgid "Quick filter:"
|
218 |
-
msgstr "Фильтр:"
|
219 |
-
|
220 |
-
#: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:125
|
221 |
-
msgid "Custom capabilities:"
|
222 |
-
msgstr "Дополнительные возможности :"
|
223 |
-
|
224 |
-
#: ../includes/class-ure-lib.php:141
|
225 |
msgid "Error: wrong request"
|
226 |
msgstr "Ошибка: неверный запрос"
|
227 |
|
228 |
-
#: ../includes/class-ure-lib.php:
|
229 |
-
msgid "Role name (ID): "
|
230 |
-
msgstr "Идентификатор роли (ID):"
|
231 |
-
|
232 |
-
#: ../includes/class-ure-lib.php:175
|
233 |
-
msgid "Display Role Name: "
|
234 |
-
msgstr "Наименование роли:"
|
235 |
-
|
236 |
-
#: ../includes/class-ure-lib.php:177
|
237 |
-
msgid "Make copy of: "
|
238 |
-
msgstr "Создать копию из:"
|
239 |
-
|
240 |
-
#: ../includes/class-ure-lib.php:199
|
241 |
-
msgid "Delete:"
|
242 |
-
msgstr "Удалить"
|
243 |
-
|
244 |
-
#: ../includes/class-ure-lib.php:206
|
245 |
-
msgid "Capability name (ID): "
|
246 |
-
msgstr "Идентификатор возможности (ID):"
|
247 |
-
|
248 |
-
#: ../includes/class-ure-lib.php:321
|
249 |
msgid "Error: "
|
250 |
msgstr "Ошибка:"
|
251 |
|
252 |
-
#: ../includes/class-ure-lib.php:
|
253 |
msgid "Role"
|
254 |
msgstr "Роль"
|
255 |
|
256 |
-
#: ../includes/class-ure-lib.php:
|
257 |
msgid "does not exist"
|
258 |
msgstr "не существует"
|
259 |
|
260 |
-
#: ../includes/class-ure-lib.php:
|
261 |
msgid "Role is updated successfully"
|
262 |
msgstr "Роль изменена успешно"
|
263 |
|
264 |
-
#: ../includes/class-ure-lib.php:
|
265 |
msgid "Roles are updated for all network"
|
266 |
msgstr "Роли изменены для всей сети"
|
267 |
|
268 |
-
#: ../includes/class-ure-lib.php:
|
269 |
msgid "Error occured during role(s) update"
|
270 |
msgstr "При изменении роли произошла ошибка"
|
271 |
|
272 |
-
#: ../includes/class-ure-lib.php:
|
273 |
msgid "User capabilities are updated successfully"
|
274 |
msgstr "Права пользователя изменены успешно"
|
275 |
|
276 |
-
#: ../includes/class-ure-lib.php:
|
277 |
msgid "Error occured during user update"
|
278 |
msgstr "При изменении прав пользователя произошла ошибка "
|
279 |
|
280 |
-
#: ../includes/class-ure-lib.php:
|
281 |
msgid "User Roles are restored to WordPress default values. "
|
282 |
msgstr "Роли возвращены к начальному состоянию"
|
283 |
|
284 |
-
#: ../includes/class-ure-lib.php:
|
285 |
msgid "Help"
|
286 |
msgstr "Помощь"
|
287 |
|
288 |
-
#: ../includes/class-ure-lib.php:
|
289 |
msgid "Error is occur. Please check the log file."
|
290 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
291 |
|
292 |
-
#: ../includes/class-ure-lib.php:
|
293 |
msgid ""
|
294 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
295 |
"only!"
|
@@ -297,373 +283,480 @@ msgstr ""
|
|
297 |
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
298 |
"цифры, знак подчеркивания и дефис."
|
299 |
|
300 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
#, php-format
|
302 |
msgid "Role %s exists already"
|
303 |
msgstr "Роль %s уже существует"
|
304 |
|
305 |
-
#: ../includes/class-ure-lib.php:
|
306 |
msgid "Error is encountered during new role create operation"
|
307 |
msgstr "Произошла ошибка при создании новой роли"
|
308 |
|
309 |
-
#: ../includes/class-ure-lib.php:
|
310 |
#, php-format
|
311 |
msgid "Role %s is created successfully"
|
312 |
msgstr "Роль %s создана успешно"
|
313 |
|
314 |
-
#: ../includes/class-ure-lib.php:
|
315 |
msgid "Error encountered during role delete operation"
|
316 |
msgstr "Произошла ошибка при удалении роли"
|
317 |
|
318 |
-
#: ../includes/class-ure-lib.php:
|
319 |
msgid "Unused roles are deleted successfully"
|
320 |
msgstr "Неиспользуемые роли удалены успешно"
|
321 |
|
322 |
-
#: ../includes/class-ure-lib.php:
|
323 |
#, php-format
|
324 |
msgid "Role %s is deleted successfully"
|
325 |
msgstr "Роль %s удалена успешно"
|
326 |
|
327 |
-
#: ../includes/class-ure-lib.php:
|
328 |
msgid "Error encountered during default role change operation"
|
329 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
330 |
|
331 |
-
#: ../includes/class-ure-lib.php:
|
332 |
#, php-format
|
333 |
msgid "Default role for new users is set to %s successfully"
|
334 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
335 |
|
336 |
-
#: ../includes/class-ure-lib.php:
|
337 |
msgid "Editor"
|
338 |
msgstr "Редактор"
|
339 |
|
340 |
-
#: ../includes/class-ure-lib.php:
|
341 |
msgid "Author"
|
342 |
msgstr "Автор"
|
343 |
|
344 |
-
#: ../includes/class-ure-lib.php:
|
345 |
msgid "Contributor"
|
346 |
msgstr "Участник"
|
347 |
|
348 |
-
#: ../includes/class-ure-lib.php:
|
349 |
msgid "Subscriber"
|
350 |
msgstr "Подписчик"
|
351 |
|
352 |
-
#: ../includes/class-ure-lib.php:
|
353 |
msgid "Switch themes"
|
354 |
msgstr "Менять темы"
|
355 |
|
356 |
-
#: ../includes/class-ure-lib.php:
|
357 |
msgid "Edit themes"
|
358 |
msgstr "Изменять темы"
|
359 |
|
360 |
-
#: ../includes/class-ure-lib.php:
|
361 |
msgid "Activate plugins"
|
362 |
msgstr "Активировать плагины"
|
363 |
|
364 |
-
#: ../includes/class-ure-lib.php:
|
365 |
msgid "Edit plugins"
|
366 |
msgstr "Редактировать плагины"
|
367 |
|
368 |
-
#: ../includes/class-ure-lib.php:
|
369 |
msgid "Edit users"
|
370 |
msgstr "Изменять пользователей"
|
371 |
|
372 |
-
#: ../includes/class-ure-lib.php:
|
373 |
msgid "Edit files"
|
374 |
msgstr "Изменять файлы"
|
375 |
|
376 |
-
#: ../includes/class-ure-lib.php:
|
377 |
msgid "Manage options"
|
378 |
msgstr "Управлять установками"
|
379 |
|
380 |
-
#: ../includes/class-ure-lib.php:
|
381 |
msgid "Moderate comments"
|
382 |
msgstr "Модерировать комментарии"
|
383 |
|
384 |
-
#: ../includes/class-ure-lib.php:
|
385 |
msgid "Manage categories"
|
386 |
msgstr "Управлять категориями"
|
387 |
|
388 |
-
#: ../includes/class-ure-lib.php:
|
389 |
msgid "Manage links"
|
390 |
msgstr "Управлять ссылками"
|
391 |
|
392 |
-
#: ../includes/class-ure-lib.php:
|
393 |
msgid "Upload files"
|
394 |
msgstr "Загружать файлы"
|
395 |
|
396 |
-
#: ../includes/class-ure-lib.php:
|
397 |
msgid "Import"
|
398 |
msgstr "Импорт"
|
399 |
|
400 |
-
#: ../includes/class-ure-lib.php:
|
401 |
msgid "Unfiltered html"
|
402 |
msgstr "html без фильтра"
|
403 |
|
404 |
-
#: ../includes/class-ure-lib.php:
|
405 |
msgid "Edit posts"
|
406 |
msgstr "Изменять статьи"
|
407 |
|
408 |
-
#: ../includes/class-ure-lib.php:
|
409 |
msgid "Edit others posts"
|
410 |
msgstr "Изменять чужие статьи"
|
411 |
|
412 |
-
#: ../includes/class-ure-lib.php:
|
413 |
msgid "Edit published posts"
|
414 |
msgstr "Редактировать опубликованные статьи"
|
415 |
|
416 |
-
#: ../includes/class-ure-lib.php:
|
417 |
msgid "Publish posts"
|
418 |
msgstr "Публиковать статьи"
|
419 |
|
420 |
-
#: ../includes/class-ure-lib.php:
|
421 |
msgid "Edit pages"
|
422 |
msgstr "Изменять страницы"
|
423 |
|
424 |
-
#: ../includes/class-ure-lib.php:
|
425 |
msgid "Read"
|
426 |
msgstr "Чтение"
|
427 |
|
428 |
-
#: ../includes/class-ure-lib.php:
|
429 |
msgid "Level 10"
|
430 |
msgstr "Уровень 10"
|
431 |
|
432 |
-
#: ../includes/class-ure-lib.php:
|
433 |
msgid "Level 9"
|
434 |
msgstr "Уровень 9"
|
435 |
|
436 |
-
#: ../includes/class-ure-lib.php:
|
437 |
msgid "Level 8"
|
438 |
msgstr "Уровень 9"
|
439 |
|
440 |
-
#: ../includes/class-ure-lib.php:
|
441 |
msgid "Level 7"
|
442 |
msgstr "Уровень 7"
|
443 |
|
444 |
-
#: ../includes/class-ure-lib.php:
|
445 |
msgid "Level 6"
|
446 |
msgstr "Уровень 6"
|
447 |
|
448 |
-
#: ../includes/class-ure-lib.php:
|
449 |
msgid "Level 5"
|
450 |
msgstr "Уровень 5"
|
451 |
|
452 |
-
#: ../includes/class-ure-lib.php:
|
453 |
msgid "Level 4"
|
454 |
msgstr "Уровень 4"
|
455 |
|
456 |
-
#: ../includes/class-ure-lib.php:
|
457 |
msgid "Level 3"
|
458 |
msgstr "Уровень 3"
|
459 |
|
460 |
-
#: ../includes/class-ure-lib.php:
|
461 |
msgid "Level 2"
|
462 |
msgstr "Уровень 2"
|
463 |
|
464 |
-
#: ../includes/class-ure-lib.php:
|
465 |
msgid "Level 1"
|
466 |
msgstr "Уровень 1"
|
467 |
|
468 |
-
#: ../includes/class-ure-lib.php:
|
469 |
msgid "Level 0"
|
470 |
msgstr "Уровень 0"
|
471 |
|
472 |
-
#: ../includes/class-ure-lib.php:
|
473 |
msgid "Edit others pages"
|
474 |
msgstr "Редактировать чужие страницы"
|
475 |
|
476 |
-
#: ../includes/class-ure-lib.php:
|
477 |
msgid "Edit published pages"
|
478 |
msgstr "Редактировать опубликованные страницы"
|
479 |
|
480 |
-
#: ../includes/class-ure-lib.php:
|
481 |
msgid "Publish pages"
|
482 |
msgstr "Публиковать страницы"
|
483 |
|
484 |
-
#: ../includes/class-ure-lib.php:
|
485 |
msgid "Delete pages"
|
486 |
msgstr "Удалять страницы"
|
487 |
|
488 |
-
#: ../includes/class-ure-lib.php:
|
489 |
msgid "Delete others pages"
|
490 |
msgstr "Удалить чужие страницы"
|
491 |
|
492 |
-
#: ../includes/class-ure-lib.php:
|
493 |
msgid "Delete published pages"
|
494 |
msgstr "Удалять опубликованные страницы"
|
495 |
|
496 |
-
#: ../includes/class-ure-lib.php:
|
497 |
msgid "Delete posts"
|
498 |
msgstr "Удалять статьи"
|
499 |
|
500 |
-
#: ../includes/class-ure-lib.php:
|
501 |
msgid "Delete others posts"
|
502 |
msgstr "Удалять чужие статьи"
|
503 |
|
504 |
-
#: ../includes/class-ure-lib.php:
|
505 |
msgid "Delete published posts"
|
506 |
msgstr "Удалять опубликованные статьи"
|
507 |
|
508 |
-
#: ../includes/class-ure-lib.php:
|
509 |
msgid "Delete private posts"
|
510 |
msgstr "Удалять частные статьи"
|
511 |
|
512 |
-
#: ../includes/class-ure-lib.php:
|
513 |
msgid "Edit private posts"
|
514 |
msgstr "Редактировать частные статьи"
|
515 |
|
516 |
-
#: ../includes/class-ure-lib.php:
|
517 |
msgid "Read private posts"
|
518 |
msgstr "Читать частные статьи"
|
519 |
|
520 |
-
#: ../includes/class-ure-lib.php:
|
521 |
msgid "Delete private pages"
|
522 |
msgstr "Удалять частные страницы"
|
523 |
|
524 |
-
#: ../includes/class-ure-lib.php:
|
525 |
msgid "Edit private pages"
|
526 |
msgstr "Редактировать частные страницы"
|
527 |
|
528 |
-
#: ../includes/class-ure-lib.php:
|
529 |
msgid "Read private pages"
|
530 |
msgstr "Читать частные страницы"
|
531 |
|
532 |
-
#: ../includes/class-ure-lib.php:
|
533 |
msgid "Delete users"
|
534 |
msgstr "Удалять пользователей"
|
535 |
|
536 |
-
#: ../includes/class-ure-lib.php:
|
537 |
msgid "Create users"
|
538 |
msgstr "Создавать пользователей"
|
539 |
|
540 |
-
#: ../includes/class-ure-lib.php:
|
541 |
msgid "Unfiltered upload"
|
542 |
msgstr "Загрузка без фильтра"
|
543 |
|
544 |
-
#: ../includes/class-ure-lib.php:
|
545 |
msgid "Edit dashboard"
|
546 |
msgstr "Изменять панель администратора"
|
547 |
|
548 |
-
#: ../includes/class-ure-lib.php:
|
549 |
msgid "Update plugins"
|
550 |
msgstr "Обновлять плагины"
|
551 |
|
552 |
-
#: ../includes/class-ure-lib.php:
|
553 |
msgid "Delete plugins"
|
554 |
msgstr "Удалять плагины"
|
555 |
|
556 |
-
#: ../includes/class-ure-lib.php:
|
557 |
msgid "Install plugins"
|
558 |
msgstr "Устанавливать плагины"
|
559 |
|
560 |
-
#: ../includes/class-ure-lib.php:
|
561 |
msgid "Update themes"
|
562 |
msgstr "Обновлять темы"
|
563 |
|
564 |
-
#: ../includes/class-ure-lib.php:
|
565 |
msgid "Install themes"
|
566 |
msgstr "Устанавливать темы"
|
567 |
|
568 |
-
#: ../includes/class-ure-lib.php:
|
569 |
msgid "Update core"
|
570 |
msgstr "Обновлять ядро"
|
571 |
|
572 |
-
#: ../includes/class-ure-lib.php:
|
573 |
msgid "List users"
|
574 |
msgstr "Список пользователей"
|
575 |
|
576 |
-
#: ../includes/class-ure-lib.php:
|
577 |
msgid "Remove users"
|
578 |
msgstr "Удалять пользователей"
|
579 |
|
580 |
-
#: ../includes/class-ure-lib.php:
|
581 |
msgid "Add users"
|
582 |
msgstr "Добавлять пользователей"
|
583 |
|
584 |
-
#: ../includes/class-ure-lib.php:
|
585 |
msgid "Promote users"
|
586 |
msgstr "Продвигать пользователей"
|
587 |
|
588 |
-
#: ../includes/class-ure-lib.php:
|
589 |
msgid "Edit theme options"
|
590 |
msgstr "Изменять настройки темы"
|
591 |
|
592 |
-
#: ../includes/class-ure-lib.php:
|
593 |
msgid "Delete themes"
|
594 |
msgstr "Удалять темы"
|
595 |
|
596 |
-
#: ../includes/class-ure-lib.php:
|
597 |
msgid "Export"
|
598 |
msgstr "Экспорт"
|
599 |
|
600 |
-
#: ../includes/class-ure-lib.php:
|
601 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
602 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
603 |
|
604 |
-
#: ../includes/class-ure-lib.php:
|
605 |
#, php-format
|
606 |
msgid "Capability %s is added successfully"
|
607 |
msgstr "Возможность %s добавлена успешно"
|
608 |
|
609 |
-
#: ../includes/class-ure-lib.php:
|
610 |
#, php-format
|
611 |
msgid "Capability %s exists already"
|
612 |
msgstr "Возможность %s уже существует"
|
613 |
|
614 |
-
#: ../includes/class-ure-lib.php:
|
615 |
#, php-format
|
616 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
617 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
#, php-format
|
621 |
msgid "Capability %s is removed successfully"
|
622 |
msgstr "Возможность %s удалена успешно"
|
623 |
|
624 |
-
#: ../includes/class-ure-lib.php:
|
625 |
-
msgid "About this Plugin:"
|
626 |
-
msgstr "Об этом плагине"
|
627 |
-
|
628 |
-
#: ../includes/class-ure-lib.php:2087
|
629 |
msgid "Author's website"
|
630 |
msgstr "Вебсайт автора"
|
631 |
|
632 |
-
#: ../includes/class-ure-lib.php:
|
633 |
msgid "Plugin webpage"
|
634 |
msgstr "Страница плагина"
|
635 |
|
636 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
637 |
msgid "FAQ"
|
638 |
msgstr "Часто задаваемые вопросы"
|
639 |
|
640 |
-
#: ../includes/class-ure-lib.php:
|
641 |
msgid "None"
|
642 |
msgstr "Нет"
|
643 |
|
644 |
-
#: ../includes/class-ure-lib.php:
|
645 |
msgid "Delete All Unused Roles"
|
646 |
msgstr "Удалить все неиспользуемые роли"
|
647 |
|
648 |
-
#: ../includes/class-ure-lib.php:
|
649 |
msgid "— No role for this site —"
|
650 |
msgstr "— Нет роли для этого сайта —"
|
651 |
|
|
|
|
|
|
|
|
|
652 |
#: ../includes/ure-user-edit.php:34
|
653 |
msgid "Change capabilities for user"
|
654 |
msgstr "Изменить возможности для пользователя"
|
655 |
|
656 |
-
#: ../includes/ure-
|
657 |
-
msgid "
|
658 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
659 |
|
660 |
-
#: ../includes/ure-
|
661 |
-
msgid "
|
662 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
663 |
|
664 |
-
#: ../includes/ure-
|
665 |
-
msgid "
|
666 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
667 |
|
668 |
#~ msgid ""
|
669 |
#~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
@@ -675,18 +768,6 @@ msgstr "Другие Роли:"
|
|
675 |
#~ "активировать заново некоторые плагины, например S2Member, WooCommerce. "
|
676 |
#~ "Продолжить?"
|
677 |
|
678 |
-
#~ msgid "Show capabilities in the human readable form"
|
679 |
-
#~ msgstr "Показ прав доступа в читабельной форме"
|
680 |
-
|
681 |
-
#~ msgid ""
|
682 |
-
#~ "Super administrator only may create, edit and delete users under "
|
683 |
-
#~ "WordPress multi-site. Turn this option on in order to remove this "
|
684 |
-
#~ "limitation."
|
685 |
-
#~ msgstr ""
|
686 |
-
#~ "Только супер-администратор может создавать, изменять и удалять "
|
687 |
-
#~ "пользователей в многосайтовой сети WordPress. Включите эту опцию, чтобы "
|
688 |
-
#~ "отменить это ограничение"
|
689 |
-
|
690 |
#~ msgid "Only"
|
691 |
#~ msgstr "Только"
|
692 |
|
@@ -783,9 +864,6 @@ msgstr "Другие Роли:"
|
|
783 |
#~ msgid "Add New User Role"
|
784 |
#~ msgstr "Добавить новую Роль пользователя"
|
785 |
|
786 |
-
#~ msgid "Default Role for New User"
|
787 |
-
#~ msgstr "Роль по-умолчанию"
|
788 |
-
|
789 |
#~ msgid "Change"
|
790 |
#~ msgstr "Изменить"
|
791 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-06 12:21+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/settings-template.php:80 ../includes/settings-template.php:111
|
20 |
+
#: ../includes/settings-template.php:140
|
21 |
msgid "Save"
|
22 |
msgstr "Сохранить"
|
23 |
|
24 |
+
#: ../includes/settings-template.php:104
|
25 |
+
msgid ""
|
26 |
+
"Note for multisite environment: take into account that other default roles "
|
27 |
+
"should exist at the site, in order to be assigned to the new registered "
|
28 |
+
"users."
|
29 |
+
msgstr ""
|
30 |
+
"Заметка для WordPress с несколькими сайтами: учтите, что для присвоения "
|
31 |
+
"вновь зарегистрированному пользователю дополнительных ролей по-умолчанию эти "
|
32 |
+
"роли должны существовать на этом сайте."
|
33 |
+
|
34 |
+
#: ../includes/class-user-role-editor.php:185
|
35 |
+
msgid "Change role for users without role"
|
36 |
+
msgstr "Изменить роль для пользователей без роли"
|
37 |
+
|
38 |
+
#: ../includes/class-user-role-editor.php:186
|
39 |
+
msgid "No rights"
|
40 |
+
msgstr "Нет прав"
|
41 |
+
|
42 |
+
#: ../includes/class-user-role-editor.php:187
|
43 |
+
msgid "Provide new role"
|
44 |
+
msgstr "Выберите новую роль"
|
45 |
+
|
46 |
+
#: ../includes/class-user-role-editor.php:271
|
47 |
+
#: ../includes/class-user-role-editor.php:273
|
48 |
msgid "You do not have permission to edit this user."
|
49 |
msgstr "Нет прав на редактирование этого пользователя"
|
50 |
|
51 |
+
#: ../includes/class-user-role-editor.php:414
|
52 |
msgid "Capabilities"
|
53 |
msgstr "Возможности"
|
54 |
|
55 |
+
#: ../includes/class-user-role-editor.php:507
|
56 |
msgid "Settings"
|
57 |
msgstr "Установки"
|
58 |
|
59 |
+
#: ../includes/class-user-role-editor.php:520
|
60 |
+
#: ../includes/class-ure-lib.php:2235
|
61 |
msgid "Changelog"
|
62 |
msgstr "Журнал изменений"
|
63 |
|
64 |
+
#: ../includes/class-user-role-editor.php:542
|
65 |
msgid "Overview"
|
66 |
msgstr "Обзор"
|
67 |
|
68 |
+
#: ../includes/class-user-role-editor.php:551
|
69 |
+
#: ../includes/class-user-role-editor.php:579
|
70 |
+
#: ../includes/class-user-role-editor.php:873
|
71 |
+
#: ../includes/class-ure-lib.php:225
|
72 |
+
msgid "User Role Editor"
|
73 |
+
msgstr "Редактор ролей пользователей"
|
74 |
+
|
75 |
+
#: ../includes/class-user-role-editor.php:639
|
76 |
+
#: ../includes/class-user-role-editor.php:684
|
77 |
+
msgid "User Role Editor options are updated"
|
78 |
+
msgstr "Изменения в настройках Редактора ролей пользователей сохранены"
|
79 |
+
|
80 |
+
#: ../includes/class-user-role-editor.php:668
|
81 |
+
msgid "Default Roles are updated"
|
82 |
+
msgstr "Изменения в роли по-умолчанию сохранены"
|
83 |
+
|
84 |
+
#: ../includes/class-user-role-editor.php:692
|
85 |
msgid ""
|
86 |
"You do not have sufficient permissions to manage options for User Role "
|
87 |
"Editor."
|
88 |
msgstr "У вас нет прав на изменение настроек плагина"
|
89 |
|
90 |
+
#: ../includes/class-user-role-editor.php:764
|
|
|
|
|
|
|
|
|
91 |
msgid "Insufficient permissions to work with User Role Editor"
|
92 |
msgstr "Не достаточно прав для работы с User Role Editor"
|
93 |
|
94 |
+
#: ../includes/class-user-role-editor.php:818
|
95 |
msgid "Select All"
|
96 |
msgstr "Выбрать Все:"
|
97 |
|
98 |
+
#: ../includes/class-user-role-editor.php:819
|
99 |
msgid "Unselect All"
|
100 |
msgstr "Исключить все"
|
101 |
|
102 |
+
#: ../includes/class-user-role-editor.php:820
|
103 |
msgid "Reverse"
|
104 |
msgstr "Обратить"
|
105 |
|
106 |
+
#: ../includes/class-user-role-editor.php:821
|
107 |
msgid "Update"
|
108 |
msgstr "Сохранить"
|
109 |
|
110 |
+
#: ../includes/class-user-role-editor.php:822
|
111 |
msgid "Please confirm permissions update"
|
112 |
msgstr "Пожалуйста, подтвердите продолжение "
|
113 |
|
114 |
+
#: ../includes/class-user-role-editor.php:823
|
115 |
msgid "Add New Role"
|
116 |
msgstr "Добавить новую Роль"
|
117 |
|
118 |
+
#: ../includes/class-user-role-editor.php:824
|
119 |
msgid " Role name (ID) can not be empty!"
|
120 |
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
121 |
|
122 |
+
#: ../includes/class-user-role-editor.php:825
|
123 |
msgid ""
|
124 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
125 |
"only!"
|
127 |
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
128 |
"тире и знак подчеркивания"
|
129 |
|
130 |
+
#: ../includes/class-user-role-editor.php:826
|
131 |
+
msgid ""
|
132 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
133 |
+
"it."
|
134 |
+
msgstr ""
|
135 |
+
"WordPress не поддерживает цифровые идентификаторы ролей. Начните имя роли с "
|
136 |
+
"латинских символов."
|
137 |
+
|
138 |
+
#: ../includes/class-user-role-editor.php:827
|
139 |
msgid "Add Role"
|
140 |
msgstr "Добавить новую Роль"
|
141 |
|
142 |
+
#: ../includes/class-user-role-editor.php:828
|
143 |
msgid "Delete Role"
|
144 |
msgstr "Удалить Роль"
|
145 |
|
146 |
+
#: ../includes/class-user-role-editor.php:829
|
147 |
msgid "Cancel"
|
148 |
msgstr "Отмена"
|
149 |
|
150 |
+
#: ../includes/class-user-role-editor.php:830
|
151 |
msgid "Add Capability"
|
152 |
msgstr "Добавить новую Возможность"
|
153 |
|
154 |
+
#: ../includes/class-user-role-editor.php:831
|
155 |
+
#: ../includes/class-user-role-editor.php:840
|
156 |
msgid "Delete Capability"
|
157 |
msgstr "Удалить Возможность"
|
158 |
|
159 |
+
#: ../includes/class-user-role-editor.php:832
|
160 |
msgid "Reset"
|
161 |
msgstr "Сброс"
|
162 |
|
163 |
+
#: ../includes/class-user-role-editor.php:833
|
164 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
165 |
msgstr ""
|
166 |
"ВНИМАНИЕ! Очистка восстановит роли по состоянию на момент установки "
|
167 |
"WordPress."
|
168 |
|
169 |
+
#: ../includes/class-user-role-editor.php:834
|
170 |
msgid ""
|
171 |
"If any plugins have changed capabilities in any way upon installation (such "
|
172 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
174 |
"Если плагины изменяли пользовательские права после установки WordPress "
|
175 |
"(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
|
176 |
|
177 |
+
#: ../includes/class-user-role-editor.php:835
|
178 |
msgid ""
|
179 |
"For more information on how to undo changes and restore plugin capabilities "
|
180 |
"go to"
|
182 |
"Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
|
183 |
"для плагинов, можно узнать здесь"
|
184 |
|
185 |
+
#: ../includes/class-user-role-editor.php:837
|
186 |
msgid "Continue?"
|
187 |
msgstr "Продолжить?"
|
188 |
|
189 |
+
#: ../includes/class-user-role-editor.php:838
|
190 |
msgid "Default Role"
|
191 |
msgstr "Роль по-умолчанию"
|
192 |
|
193 |
+
#: ../includes/class-user-role-editor.php:839
|
194 |
msgid "Set New Default Role"
|
195 |
msgstr "Установить новую роль по-умолчанию"
|
196 |
|
197 |
+
#: ../includes/class-user-role-editor.php:841
|
198 |
msgid ""
|
199 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
200 |
"or other custom code"
|
202 |
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
203 |
"прекращеню работы одного из плагинов или другого кода."
|
204 |
|
205 |
+
#: ../includes/class-user-role-editor.php:842
|
206 |
msgid " Capability name (ID) can not be empty!"
|
207 |
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
208 |
|
209 |
+
#: ../includes/class-user-role-editor.php:843
|
210 |
msgid ""
|
211 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
212 |
"underscore only!"
|
214 |
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
215 |
"цифры, знаки подчеркивания"
|
216 |
|
217 |
+
#: ../includes/class-user-role-editor.php:876
|
218 |
+
#: ../includes/class-user-role-editor.php:905
|
|
|
|
|
|
|
|
|
|
|
219 |
msgid "Other Roles"
|
220 |
msgstr "Другие Роли"
|
221 |
|
222 |
+
#: ../includes/class-user-role-editor.php:887
|
223 |
msgid "Edit"
|
224 |
msgstr "Редактор"
|
225 |
|
226 |
+
#: ../includes/ure-role-edit.php:44
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
msgid "If checked, then apply action to ALL sites of this Network"
|
228 |
msgstr "Если включено, применить ко всем сайтам этой Сети"
|
229 |
|
230 |
+
#: ../includes/class-ure-lib.php:143
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
msgid "Error: wrong request"
|
232 |
msgstr "Ошибка: неверный запрос"
|
233 |
|
234 |
+
#: ../includes/class-ure-lib.php:322
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
235 |
msgid "Error: "
|
236 |
msgstr "Ошибка:"
|
237 |
|
238 |
+
#: ../includes/class-ure-lib.php:322
|
239 |
msgid "Role"
|
240 |
msgstr "Роль"
|
241 |
|
242 |
+
#: ../includes/class-ure-lib.php:323
|
243 |
msgid "does not exist"
|
244 |
msgstr "не существует"
|
245 |
|
246 |
+
#: ../includes/class-ure-lib.php:366
|
247 |
msgid "Role is updated successfully"
|
248 |
msgstr "Роль изменена успешно"
|
249 |
|
250 |
+
#: ../includes/class-ure-lib.php:368
|
251 |
msgid "Roles are updated for all network"
|
252 |
msgstr "Роли изменены для всей сети"
|
253 |
|
254 |
+
#: ../includes/class-ure-lib.php:374
|
255 |
msgid "Error occured during role(s) update"
|
256 |
msgstr "При изменении роли произошла ошибка"
|
257 |
|
258 |
+
#: ../includes/class-ure-lib.php:381
|
259 |
msgid "User capabilities are updated successfully"
|
260 |
msgstr "Права пользователя изменены успешно"
|
261 |
|
262 |
+
#: ../includes/class-ure-lib.php:386
|
263 |
msgid "Error occured during user update"
|
264 |
msgstr "При изменении прав пользователя произошла ошибка "
|
265 |
|
266 |
+
#: ../includes/class-ure-lib.php:441
|
267 |
msgid "User Roles are restored to WordPress default values. "
|
268 |
msgstr "Роли возвращены к начальному состоянию"
|
269 |
|
270 |
+
#: ../includes/class-ure-lib.php:1340
|
271 |
msgid "Help"
|
272 |
msgstr "Помощь"
|
273 |
|
274 |
+
#: ../includes/class-ure-lib.php:1690
|
275 |
msgid "Error is occur. Please check the log file."
|
276 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
277 |
|
278 |
+
#: ../includes/class-ure-lib.php:1733
|
279 |
msgid ""
|
280 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
281 |
"only!"
|
283 |
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
284 |
"цифры, знак подчеркивания и дефис."
|
285 |
|
286 |
+
#: ../includes/class-ure-lib.php:1737
|
287 |
+
msgid ""
|
288 |
+
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
289 |
+
"characters to it."
|
290 |
+
msgstr ""
|
291 |
+
"Ошибка: WordPress не поддерживает цифровые идентификаторы ролей. Начните имя "
|
292 |
+
"роли с латинских символов."
|
293 |
+
|
294 |
+
#: ../includes/class-ure-lib.php:1752
|
295 |
#, php-format
|
296 |
msgid "Role %s exists already"
|
297 |
msgstr "Роль %s уже существует"
|
298 |
|
299 |
+
#: ../includes/class-ure-lib.php:1767
|
300 |
msgid "Error is encountered during new role create operation"
|
301 |
msgstr "Произошла ошибка при создании новой роли"
|
302 |
|
303 |
+
#: ../includes/class-ure-lib.php:1769
|
304 |
#, php-format
|
305 |
msgid "Role %s is created successfully"
|
306 |
msgstr "Роль %s создана успешно"
|
307 |
|
308 |
+
#: ../includes/class-ure-lib.php:1838
|
309 |
msgid "Error encountered during role delete operation"
|
310 |
msgstr "Произошла ошибка при удалении роли"
|
311 |
|
312 |
+
#: ../includes/class-ure-lib.php:1840
|
313 |
msgid "Unused roles are deleted successfully"
|
314 |
msgstr "Неиспользуемые роли удалены успешно"
|
315 |
|
316 |
+
#: ../includes/class-ure-lib.php:1842
|
317 |
#, php-format
|
318 |
msgid "Role %s is deleted successfully"
|
319 |
msgstr "Роль %s удалена успешно"
|
320 |
|
321 |
+
#: ../includes/class-ure-lib.php:1867
|
322 |
msgid "Error encountered during default role change operation"
|
323 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:1873
|
326 |
#, php-format
|
327 |
msgid "Default role for new users is set to %s successfully"
|
328 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
329 |
|
330 |
+
#: ../includes/class-ure-lib.php:1892
|
331 |
msgid "Editor"
|
332 |
msgstr "Редактор"
|
333 |
|
334 |
+
#: ../includes/class-ure-lib.php:1893
|
335 |
msgid "Author"
|
336 |
msgstr "Автор"
|
337 |
|
338 |
+
#: ../includes/class-ure-lib.php:1894
|
339 |
msgid "Contributor"
|
340 |
msgstr "Участник"
|
341 |
|
342 |
+
#: ../includes/class-ure-lib.php:1895
|
343 |
msgid "Subscriber"
|
344 |
msgstr "Подписчик"
|
345 |
|
346 |
+
#: ../includes/class-ure-lib.php:1897
|
347 |
msgid "Switch themes"
|
348 |
msgstr "Менять темы"
|
349 |
|
350 |
+
#: ../includes/class-ure-lib.php:1898
|
351 |
msgid "Edit themes"
|
352 |
msgstr "Изменять темы"
|
353 |
|
354 |
+
#: ../includes/class-ure-lib.php:1899
|
355 |
msgid "Activate plugins"
|
356 |
msgstr "Активировать плагины"
|
357 |
|
358 |
+
#: ../includes/class-ure-lib.php:1900
|
359 |
msgid "Edit plugins"
|
360 |
msgstr "Редактировать плагины"
|
361 |
|
362 |
+
#: ../includes/class-ure-lib.php:1901
|
363 |
msgid "Edit users"
|
364 |
msgstr "Изменять пользователей"
|
365 |
|
366 |
+
#: ../includes/class-ure-lib.php:1902
|
367 |
msgid "Edit files"
|
368 |
msgstr "Изменять файлы"
|
369 |
|
370 |
+
#: ../includes/class-ure-lib.php:1903
|
371 |
msgid "Manage options"
|
372 |
msgstr "Управлять установками"
|
373 |
|
374 |
+
#: ../includes/class-ure-lib.php:1904
|
375 |
msgid "Moderate comments"
|
376 |
msgstr "Модерировать комментарии"
|
377 |
|
378 |
+
#: ../includes/class-ure-lib.php:1905
|
379 |
msgid "Manage categories"
|
380 |
msgstr "Управлять категориями"
|
381 |
|
382 |
+
#: ../includes/class-ure-lib.php:1906
|
383 |
msgid "Manage links"
|
384 |
msgstr "Управлять ссылками"
|
385 |
|
386 |
+
#: ../includes/class-ure-lib.php:1907
|
387 |
msgid "Upload files"
|
388 |
msgstr "Загружать файлы"
|
389 |
|
390 |
+
#: ../includes/class-ure-lib.php:1908
|
391 |
msgid "Import"
|
392 |
msgstr "Импорт"
|
393 |
|
394 |
+
#: ../includes/class-ure-lib.php:1909
|
395 |
msgid "Unfiltered html"
|
396 |
msgstr "html без фильтра"
|
397 |
|
398 |
+
#: ../includes/class-ure-lib.php:1910
|
399 |
msgid "Edit posts"
|
400 |
msgstr "Изменять статьи"
|
401 |
|
402 |
+
#: ../includes/class-ure-lib.php:1911
|
403 |
msgid "Edit others posts"
|
404 |
msgstr "Изменять чужие статьи"
|
405 |
|
406 |
+
#: ../includes/class-ure-lib.php:1912
|
407 |
msgid "Edit published posts"
|
408 |
msgstr "Редактировать опубликованные статьи"
|
409 |
|
410 |
+
#: ../includes/class-ure-lib.php:1913
|
411 |
msgid "Publish posts"
|
412 |
msgstr "Публиковать статьи"
|
413 |
|
414 |
+
#: ../includes/class-ure-lib.php:1914
|
415 |
msgid "Edit pages"
|
416 |
msgstr "Изменять страницы"
|
417 |
|
418 |
+
#: ../includes/class-ure-lib.php:1915
|
419 |
msgid "Read"
|
420 |
msgstr "Чтение"
|
421 |
|
422 |
+
#: ../includes/class-ure-lib.php:1916
|
423 |
msgid "Level 10"
|
424 |
msgstr "Уровень 10"
|
425 |
|
426 |
+
#: ../includes/class-ure-lib.php:1917
|
427 |
msgid "Level 9"
|
428 |
msgstr "Уровень 9"
|
429 |
|
430 |
+
#: ../includes/class-ure-lib.php:1918
|
431 |
msgid "Level 8"
|
432 |
msgstr "Уровень 9"
|
433 |
|
434 |
+
#: ../includes/class-ure-lib.php:1919
|
435 |
msgid "Level 7"
|
436 |
msgstr "Уровень 7"
|
437 |
|
438 |
+
#: ../includes/class-ure-lib.php:1920
|
439 |
msgid "Level 6"
|
440 |
msgstr "Уровень 6"
|
441 |
|
442 |
+
#: ../includes/class-ure-lib.php:1921
|
443 |
msgid "Level 5"
|
444 |
msgstr "Уровень 5"
|
445 |
|
446 |
+
#: ../includes/class-ure-lib.php:1922
|
447 |
msgid "Level 4"
|
448 |
msgstr "Уровень 4"
|
449 |
|
450 |
+
#: ../includes/class-ure-lib.php:1923
|
451 |
msgid "Level 3"
|
452 |
msgstr "Уровень 3"
|
453 |
|
454 |
+
#: ../includes/class-ure-lib.php:1924
|
455 |
msgid "Level 2"
|
456 |
msgstr "Уровень 2"
|
457 |
|
458 |
+
#: ../includes/class-ure-lib.php:1925
|
459 |
msgid "Level 1"
|
460 |
msgstr "Уровень 1"
|
461 |
|
462 |
+
#: ../includes/class-ure-lib.php:1926
|
463 |
msgid "Level 0"
|
464 |
msgstr "Уровень 0"
|
465 |
|
466 |
+
#: ../includes/class-ure-lib.php:1927
|
467 |
msgid "Edit others pages"
|
468 |
msgstr "Редактировать чужие страницы"
|
469 |
|
470 |
+
#: ../includes/class-ure-lib.php:1928
|
471 |
msgid "Edit published pages"
|
472 |
msgstr "Редактировать опубликованные страницы"
|
473 |
|
474 |
+
#: ../includes/class-ure-lib.php:1929
|
475 |
msgid "Publish pages"
|
476 |
msgstr "Публиковать страницы"
|
477 |
|
478 |
+
#: ../includes/class-ure-lib.php:1930
|
479 |
msgid "Delete pages"
|
480 |
msgstr "Удалять страницы"
|
481 |
|
482 |
+
#: ../includes/class-ure-lib.php:1931
|
483 |
msgid "Delete others pages"
|
484 |
msgstr "Удалить чужие страницы"
|
485 |
|
486 |
+
#: ../includes/class-ure-lib.php:1932
|
487 |
msgid "Delete published pages"
|
488 |
msgstr "Удалять опубликованные страницы"
|
489 |
|
490 |
+
#: ../includes/class-ure-lib.php:1933
|
491 |
msgid "Delete posts"
|
492 |
msgstr "Удалять статьи"
|
493 |
|
494 |
+
#: ../includes/class-ure-lib.php:1934
|
495 |
msgid "Delete others posts"
|
496 |
msgstr "Удалять чужие статьи"
|
497 |
|
498 |
+
#: ../includes/class-ure-lib.php:1935
|
499 |
msgid "Delete published posts"
|
500 |
msgstr "Удалять опубликованные статьи"
|
501 |
|
502 |
+
#: ../includes/class-ure-lib.php:1936
|
503 |
msgid "Delete private posts"
|
504 |
msgstr "Удалять частные статьи"
|
505 |
|
506 |
+
#: ../includes/class-ure-lib.php:1937
|
507 |
msgid "Edit private posts"
|
508 |
msgstr "Редактировать частные статьи"
|
509 |
|
510 |
+
#: ../includes/class-ure-lib.php:1938
|
511 |
msgid "Read private posts"
|
512 |
msgstr "Читать частные статьи"
|
513 |
|
514 |
+
#: ../includes/class-ure-lib.php:1939
|
515 |
msgid "Delete private pages"
|
516 |
msgstr "Удалять частные страницы"
|
517 |
|
518 |
+
#: ../includes/class-ure-lib.php:1940
|
519 |
msgid "Edit private pages"
|
520 |
msgstr "Редактировать частные страницы"
|
521 |
|
522 |
+
#: ../includes/class-ure-lib.php:1941
|
523 |
msgid "Read private pages"
|
524 |
msgstr "Читать частные страницы"
|
525 |
|
526 |
+
#: ../includes/class-ure-lib.php:1942
|
527 |
msgid "Delete users"
|
528 |
msgstr "Удалять пользователей"
|
529 |
|
530 |
+
#: ../includes/class-ure-lib.php:1943
|
531 |
msgid "Create users"
|
532 |
msgstr "Создавать пользователей"
|
533 |
|
534 |
+
#: ../includes/class-ure-lib.php:1944
|
535 |
msgid "Unfiltered upload"
|
536 |
msgstr "Загрузка без фильтра"
|
537 |
|
538 |
+
#: ../includes/class-ure-lib.php:1945
|
539 |
msgid "Edit dashboard"
|
540 |
msgstr "Изменять панель администратора"
|
541 |
|
542 |
+
#: ../includes/class-ure-lib.php:1946
|
543 |
msgid "Update plugins"
|
544 |
msgstr "Обновлять плагины"
|
545 |
|
546 |
+
#: ../includes/class-ure-lib.php:1947
|
547 |
msgid "Delete plugins"
|
548 |
msgstr "Удалять плагины"
|
549 |
|
550 |
+
#: ../includes/class-ure-lib.php:1948
|
551 |
msgid "Install plugins"
|
552 |
msgstr "Устанавливать плагины"
|
553 |
|
554 |
+
#: ../includes/class-ure-lib.php:1949
|
555 |
msgid "Update themes"
|
556 |
msgstr "Обновлять темы"
|
557 |
|
558 |
+
#: ../includes/class-ure-lib.php:1950
|
559 |
msgid "Install themes"
|
560 |
msgstr "Устанавливать темы"
|
561 |
|
562 |
+
#: ../includes/class-ure-lib.php:1951
|
563 |
msgid "Update core"
|
564 |
msgstr "Обновлять ядро"
|
565 |
|
566 |
+
#: ../includes/class-ure-lib.php:1952
|
567 |
msgid "List users"
|
568 |
msgstr "Список пользователей"
|
569 |
|
570 |
+
#: ../includes/class-ure-lib.php:1953
|
571 |
msgid "Remove users"
|
572 |
msgstr "Удалять пользователей"
|
573 |
|
574 |
+
#: ../includes/class-ure-lib.php:1954
|
575 |
msgid "Add users"
|
576 |
msgstr "Добавлять пользователей"
|
577 |
|
578 |
+
#: ../includes/class-ure-lib.php:1955
|
579 |
msgid "Promote users"
|
580 |
msgstr "Продвигать пользователей"
|
581 |
|
582 |
+
#: ../includes/class-ure-lib.php:1956
|
583 |
msgid "Edit theme options"
|
584 |
msgstr "Изменять настройки темы"
|
585 |
|
586 |
+
#: ../includes/class-ure-lib.php:1957
|
587 |
msgid "Delete themes"
|
588 |
msgstr "Удалять темы"
|
589 |
|
590 |
+
#: ../includes/class-ure-lib.php:1958
|
591 |
msgid "Export"
|
592 |
msgstr "Экспорт"
|
593 |
|
594 |
+
#: ../includes/class-ure-lib.php:2068
|
595 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
596 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
597 |
|
598 |
+
#: ../includes/class-ure-lib.php:2081
|
599 |
#, php-format
|
600 |
msgid "Capability %s is added successfully"
|
601 |
msgstr "Возможность %s добавлена успешно"
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:2083
|
604 |
#, php-format
|
605 |
msgid "Capability %s exists already"
|
606 |
msgstr "Возможность %s уже существует"
|
607 |
|
608 |
+
#: ../includes/class-ure-lib.php:2108
|
609 |
#, php-format
|
610 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
611 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
612 |
|
613 |
+
#: ../includes/class-ure-lib.php:2127
|
614 |
#, php-format
|
615 |
msgid "Capability %s is removed successfully"
|
616 |
msgstr "Возможность %s удалена успешно"
|
617 |
|
618 |
+
#: ../includes/class-ure-lib.php:2232
|
|
|
|
|
|
|
|
|
619 |
msgid "Author's website"
|
620 |
msgstr "Вебсайт автора"
|
621 |
|
622 |
+
#: ../includes/class-ure-lib.php:2233
|
623 |
msgid "Plugin webpage"
|
624 |
msgstr "Страница плагина"
|
625 |
|
626 |
+
#: ../includes/class-ure-lib.php:2234
|
627 |
+
msgid "Plugin download"
|
628 |
+
msgstr "Загрузить плагин"
|
629 |
+
|
630 |
+
#: ../includes/class-ure-lib.php:2236
|
631 |
msgid "FAQ"
|
632 |
msgstr "Часто задаваемые вопросы"
|
633 |
|
634 |
+
#: ../includes/class-ure-lib.php:2284
|
635 |
msgid "None"
|
636 |
msgstr "Нет"
|
637 |
|
638 |
+
#: ../includes/class-ure-lib.php:2311
|
639 |
msgid "Delete All Unused Roles"
|
640 |
msgstr "Удалить все неиспользуемые роли"
|
641 |
|
642 |
+
#: ../includes/class-ure-lib.php:2335
|
643 |
msgid "— No role for this site —"
|
644 |
msgstr "— Нет роли для этого сайта —"
|
645 |
|
646 |
+
#: ../includes/ure-user-edit.php:31
|
647 |
+
msgid "Network Super Admin"
|
648 |
+
msgstr "Суперадминистратор сети"
|
649 |
+
|
650 |
#: ../includes/ure-user-edit.php:34
|
651 |
msgid "Change capabilities for user"
|
652 |
msgstr "Изменить возможности для пользователя"
|
653 |
|
654 |
+
#: ../includes/class-ure-screen-help.php:15
|
655 |
+
msgid "Show Administrator role at User Role Editor"
|
656 |
+
msgstr "Отобразить роль Администратор в Редакторе ролей пользователей"
|
657 |
+
|
658 |
+
#: ../includes/class-ure-screen-help.php:16
|
659 |
+
msgid ""
|
660 |
+
"turn this option on in order to make the \"Administrator\" role available at "
|
661 |
+
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
662 |
+
"for security reasons."
|
663 |
+
msgstr ""
|
664 |
+
"Включите эту опцию, чтобы сделать роль \"Администратор\" доступна в "
|
665 |
+
"Редакторе Ролей пользователей. Из соображений безопасности по-умолчанию она "
|
666 |
+
"скрыта."
|
667 |
+
|
668 |
+
#: ../includes/class-ure-screen-help.php:18
|
669 |
+
msgid "Show capabilities in the human readable form"
|
670 |
+
msgstr "Показ прав доступа в читабельной форме"
|
671 |
+
|
672 |
+
#: ../includes/class-ure-screen-help.php:19
|
673 |
+
msgid ""
|
674 |
+
"automatically converts capability names from the technical form for internal "
|
675 |
+
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
676 |
+
"others posts\"."
|
677 |
+
msgstr ""
|
678 |
+
"Автоматически конвертирует наименования пользовательских прав из технической "
|
679 |
+
"формы для внутреннего пользования (\"edit_other_posts\") в более читабельную "
|
680 |
+
"(\"Edit other posts\")."
|
681 |
+
|
682 |
+
#: ../includes/class-ure-screen-help.php:21
|
683 |
+
msgid "Show deprecated capabilities"
|
684 |
+
msgstr "Показать устаревшие разрешения"
|
685 |
|
686 |
+
#: ../includes/class-ure-screen-help.php:22
|
687 |
+
msgid ""
|
688 |
+
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
689 |
+
"by WordPress. They are left at the user roles for the compatibility purpose "
|
690 |
+
"with the old themes and plugins code. Turning on this option will show those "
|
691 |
+
"deprecated capabilities."
|
692 |
+
msgstr ""
|
693 |
+
"Права пользователей типа \"level_0\", \"level_1\" и т.п. устарели и больше "
|
694 |
+
"не используются WordPress. Они оставлены в ролях пользователей только для "
|
695 |
+
"обеспечения совместимости со старыми темами и плагинами. Включение данной "
|
696 |
+
"опции покажет все устаревшие права пользователей."
|
697 |
|
698 |
+
#: ../includes/class-ure-screen-help.php:27
|
699 |
+
msgid "Allow create, edit and delete users to not super-admininstrators"
|
700 |
+
msgstr ""
|
701 |
+
"Разрешить создание, изменение и удаление пользователей простым "
|
702 |
+
"администраторам"
|
703 |
+
|
704 |
+
#: ../includes/class-ure-screen-help.php:28
|
705 |
+
msgid ""
|
706 |
+
"Super administrator only may create, edit and delete users under WordPress "
|
707 |
+
"multi-site. Turn this option on in order to remove this limitation."
|
708 |
+
msgstr ""
|
709 |
+
"Только супер-администратор может создавать, изменять и удалять пользователей "
|
710 |
+
"в многосайтовой сети WordPress. Включите эту опцию, чтобы отменить это "
|
711 |
+
"ограничение"
|
712 |
+
|
713 |
+
#~ msgid "Select Role and change its capabilities list"
|
714 |
+
#~ msgstr "Выбери Роль и измени список разрешённых операций"
|
715 |
+
|
716 |
+
#~ msgid "Select Role:"
|
717 |
+
#~ msgstr "Выбери Роль:"
|
718 |
+
|
719 |
+
#~ msgid "Show capabilities in human readable form"
|
720 |
+
#~ msgstr "Показ возможностей в читабельной форме"
|
721 |
+
|
722 |
+
#~ msgid "Apply to All Sites"
|
723 |
+
#~ msgstr "Применить ко всем сайтам"
|
724 |
+
|
725 |
+
#~ msgid "Core capabilities:"
|
726 |
+
#~ msgstr "Возможности ядра:"
|
727 |
+
|
728 |
+
#~ msgid "Quick filter:"
|
729 |
+
#~ msgstr "Фильтр:"
|
730 |
+
|
731 |
+
#~ msgid "Custom capabilities:"
|
732 |
+
#~ msgstr "Дополнительные возможности :"
|
733 |
+
|
734 |
+
#~ msgid "Role name (ID): "
|
735 |
+
#~ msgstr "Идентификатор роли (ID):"
|
736 |
+
|
737 |
+
#~ msgid "Display Role Name: "
|
738 |
+
#~ msgstr "Наименование роли:"
|
739 |
+
|
740 |
+
#~ msgid "Make copy of: "
|
741 |
+
#~ msgstr "Создать копию из:"
|
742 |
+
|
743 |
+
#~ msgid "Delete:"
|
744 |
+
#~ msgstr "Удалить"
|
745 |
+
|
746 |
+
#~ msgid "Capability name (ID): "
|
747 |
+
#~ msgstr "Идентификатор возможности (ID):"
|
748 |
+
|
749 |
+
#~ msgid "About this Plugin:"
|
750 |
+
#~ msgstr "Об этом плагине"
|
751 |
+
|
752 |
+
#~ msgid "Primary Role:"
|
753 |
+
#~ msgstr "Первичаная роль:"
|
754 |
+
|
755 |
+
#~ msgid "bbPress Role:"
|
756 |
+
#~ msgstr "Роль bbPress:"
|
757 |
+
|
758 |
+
#~ msgid "Other Roles:"
|
759 |
+
#~ msgstr "Другие Роли:"
|
760 |
|
761 |
#~ msgid ""
|
762 |
#~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
768 |
#~ "активировать заново некоторые плагины, например S2Member, WooCommerce. "
|
769 |
#~ "Продолжить?"
|
770 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
771 |
#~ msgid "Only"
|
772 |
#~ msgstr "Только"
|
773 |
|
864 |
#~ msgid "Add New User Role"
|
865 |
#~ msgstr "Добавить новую Роль пользователя"
|
866 |
|
|
|
|
|
|
|
867 |
#~ msgid "Change"
|
868 |
#~ msgstr "Изменить"
|
869 |
|
lang/ure-tr_TR.mo
CHANGED
Binary file
|
lang/ure-tr_TR.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: user-role-editor\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: \n"
|
@@ -16,75 +16,109 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../includes/settings-template.php:
|
|
|
20 |
msgid "Save"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: ../includes/
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "You do not have permission to edit this user."
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: ../includes/class-user-role-editor.php:
|
29 |
msgid "Capabilities"
|
30 |
msgstr "Kabiliyetler"
|
31 |
|
32 |
-
#: ../includes/class-user-role-editor.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Ayarlar"
|
35 |
|
36 |
-
#: ../includes/class-user-role-editor.php:
|
37 |
-
#: ../includes/class-ure-lib.php:
|
38 |
msgid "Changelog"
|
39 |
msgstr "Changelog"
|
40 |
|
41 |
-
#: ../includes/class-user-role-editor.php:
|
42 |
msgid "Overview"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
msgid ""
|
47 |
"You do not have sufficient permissions to manage options for User Role "
|
48 |
"Editor."
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../includes/class-user-role-editor.php:
|
52 |
-
msgid "User Role Editor options are updated"
|
53 |
-
msgstr ""
|
54 |
-
|
55 |
-
#: ../includes/class-user-role-editor.php:571
|
56 |
msgid "Insufficient permissions to work with User Role Editor"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: ../includes/class-user-role-editor.php:
|
60 |
msgid "Select All"
|
61 |
msgstr "Tümünü Seç"
|
62 |
|
63 |
-
#: ../includes/class-user-role-editor.php:
|
64 |
msgid "Unselect All"
|
65 |
msgstr "Seçimi Kaldır"
|
66 |
|
67 |
-
#: ../includes/class-user-role-editor.php:
|
68 |
msgid "Reverse"
|
69 |
msgstr "Seçimi Tersine Çevir"
|
70 |
|
71 |
-
#: ../includes/class-user-role-editor.php:
|
72 |
msgid "Update"
|
73 |
msgstr "Güncelle"
|
74 |
|
75 |
-
#: ../includes/class-user-role-editor.php:
|
76 |
msgid "Please confirm permissions update"
|
77 |
msgstr "İzinleri güncelleştirmek için lütfen onaylayın"
|
78 |
|
79 |
-
#: ../includes/class-user-role-editor.php:
|
80 |
msgid "Add New Role"
|
81 |
msgstr "Yeni Rol Ekle"
|
82 |
|
83 |
-
#: ../includes/class-user-role-editor.php:
|
84 |
msgid " Role name (ID) can not be empty!"
|
85 |
msgstr "Ad (ID) boş bırakılamaz!"
|
86 |
|
87 |
-
#: ../includes/class-user-role-editor.php:
|
88 |
msgid ""
|
89 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
90 |
"only!"
|
@@ -92,60 +126,66 @@ msgstr ""
|
|
92 |
"Rol adı (ID) yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
|
93 |
"oluşabilir."
|
94 |
|
95 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
msgid "Add Role"
|
97 |
msgstr "Rol Ekle"
|
98 |
|
99 |
-
#: ../includes/class-user-role-editor.php:
|
100 |
msgid "Delete Role"
|
101 |
msgstr "Rolü Sil"
|
102 |
|
103 |
-
#: ../includes/class-user-role-editor.php:
|
104 |
msgid "Cancel"
|
105 |
msgstr "İptal"
|
106 |
|
107 |
-
#: ../includes/class-user-role-editor.php:
|
108 |
msgid "Add Capability"
|
109 |
msgstr "Kabiliyet Ekle"
|
110 |
|
111 |
-
#: ../includes/class-user-role-editor.php:
|
112 |
-
#: ../includes/class-user-role-editor.php:
|
113 |
msgid "Delete Capability"
|
114 |
msgstr "Kabiliyeti kaldır"
|
115 |
|
116 |
-
#: ../includes/class-user-role-editor.php:
|
117 |
msgid "Reset"
|
118 |
msgstr "Geri al"
|
119 |
|
120 |
-
#: ../includes/class-user-role-editor.php:
|
121 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: ../includes/class-user-role-editor.php:
|
125 |
msgid ""
|
126 |
"If any plugins have changed capabilities in any way upon installation (such "
|
127 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: ../includes/class-user-role-editor.php:
|
131 |
msgid ""
|
132 |
"For more information on how to undo changes and restore plugin capabilities "
|
133 |
"go to"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: ../includes/class-user-role-editor.php:
|
137 |
msgid "Continue?"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: ../includes/class-user-role-editor.php:
|
141 |
msgid "Default Role"
|
142 |
msgstr "Öntanımlı Rol"
|
143 |
|
144 |
-
#: ../includes/class-user-role-editor.php:
|
145 |
msgid "Set New Default Role"
|
146 |
msgstr "Yeni Öntanımlı Rol Seç"
|
147 |
|
148 |
-
#: ../includes/class-user-role-editor.php:
|
149 |
msgid ""
|
150 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
151 |
"or other custom code"
|
@@ -153,11 +193,11 @@ msgstr ""
|
|
153 |
"Uyarı! Dikkatli olun - önemli kabiliyetleri kaldırmak bazı eklentileri veya "
|
154 |
"başka özel kodların bozulmasına sebep olabilir"
|
155 |
|
156 |
-
#: ../includes/class-user-role-editor.php:
|
157 |
msgid " Capability name (ID) can not be empty!"
|
158 |
msgstr "Ad (ID) boş bırakılamaz!"
|
159 |
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid ""
|
162 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
163 |
"underscore only!"
|
@@ -165,125 +205,68 @@ msgstr ""
|
|
165 |
"Kabiliyet adı (ID) yalnızca latin karakterleri, sayılar, tire veya "
|
166 |
"altçizgiden oluşabilir."
|
167 |
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
-
#: ../includes/class-
|
170 |
-
msgid "User Role Editor"
|
171 |
-
msgstr "Kullanıcı Rol Editörü"
|
172 |
-
|
173 |
-
#: ../includes/class-user-role-editor.php:681
|
174 |
-
#: ../includes/class-user-role-editor.php:709
|
175 |
msgid "Other Roles"
|
176 |
msgstr "Diğer Roller"
|
177 |
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
msgid "Edit"
|
180 |
msgstr "Düzenle"
|
181 |
|
182 |
-
#: ../includes/ure-role-edit.php:
|
183 |
-
msgid "Select Role and change its capabilities list"
|
184 |
-
msgstr "Rolü seçin ve rolün yetki listesini değiştirin"
|
185 |
-
|
186 |
-
#: ../includes/ure-role-edit.php:19 ../includes/class-ure-lib.php:184
|
187 |
-
msgid "Select Role:"
|
188 |
-
msgstr "Rolü Seçin:"
|
189 |
-
|
190 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:51
|
191 |
-
msgid "Show capabilities in human readable form"
|
192 |
-
msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
|
193 |
-
|
194 |
-
#: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
|
195 |
-
msgid "Show deprecated capabilities"
|
196 |
-
msgstr "Önerilmeyen yetenekleri göster"
|
197 |
-
|
198 |
-
#: ../includes/ure-role-edit.php:45
|
199 |
msgid "If checked, then apply action to ALL sites of this Network"
|
200 |
msgstr "Eğer seçilirse, bu ağdaki tüm siteler için uygulanır"
|
201 |
|
202 |
-
#: ../includes/ure-
|
203 |
-
msgid "Apply to All Sites"
|
204 |
-
msgstr "Tüm sitelere uygula"
|
205 |
-
|
206 |
-
#: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:104
|
207 |
-
msgid "Core capabilities:"
|
208 |
-
msgstr "Çekirdek Kabiliyetleri:"
|
209 |
-
|
210 |
-
#: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:106
|
211 |
-
msgid "Quick filter:"
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
-
#: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:125
|
215 |
-
msgid "Custom capabilities:"
|
216 |
-
msgstr "Özel Kabiliyetler:"
|
217 |
-
|
218 |
-
#: ../includes/class-ure-lib.php:141
|
219 |
msgid "Error: wrong request"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: ../includes/class-ure-lib.php:
|
223 |
-
msgid "Role name (ID): "
|
224 |
-
msgstr "Rol adı (ID):"
|
225 |
-
|
226 |
-
#: ../includes/class-ure-lib.php:175
|
227 |
-
msgid "Display Role Name: "
|
228 |
-
msgstr "Görünecek Rol Adı:"
|
229 |
-
|
230 |
-
#: ../includes/class-ure-lib.php:177
|
231 |
-
msgid "Make copy of: "
|
232 |
-
msgstr "Bundan kopyala:"
|
233 |
-
|
234 |
-
#: ../includes/class-ure-lib.php:199
|
235 |
-
msgid "Delete:"
|
236 |
-
msgstr "Sil:"
|
237 |
-
|
238 |
-
#: ../includes/class-ure-lib.php:206
|
239 |
-
msgid "Capability name (ID): "
|
240 |
-
msgstr "Yetenek adı (ID): "
|
241 |
-
|
242 |
-
#: ../includes/class-ure-lib.php:321
|
243 |
msgid "Error: "
|
244 |
msgstr "Hata:"
|
245 |
|
246 |
-
#: ../includes/class-ure-lib.php:
|
247 |
msgid "Role"
|
248 |
msgstr "Rol:"
|
249 |
|
250 |
-
#: ../includes/class-ure-lib.php:
|
251 |
msgid "does not exist"
|
252 |
msgstr "bulunmuyor"
|
253 |
|
254 |
-
#: ../includes/class-ure-lib.php:
|
255 |
msgid "Role is updated successfully"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: ../includes/class-ure-lib.php:
|
259 |
msgid "Roles are updated for all network"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: ../includes/class-ure-lib.php:
|
263 |
msgid "Error occured during role(s) update"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: ../includes/class-ure-lib.php:
|
267 |
msgid "User capabilities are updated successfully"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: ../includes/class-ure-lib.php:
|
271 |
msgid "Error occured during user update"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: ../includes/class-ure-lib.php:
|
275 |
msgid "User Roles are restored to WordPress default values. "
|
276 |
msgstr "Rol yetkileri WordPress öntanımlılarına geri yüklendi."
|
277 |
|
278 |
-
#: ../includes/class-ure-lib.php:
|
279 |
msgid "Help"
|
280 |
msgstr "Yardım"
|
281 |
|
282 |
-
#: ../includes/class-ure-lib.php:
|
283 |
msgid "Error is occur. Please check the log file."
|
284 |
msgstr "Bir hata oluştu. Lütfen günlük dosyasını kontrol edin."
|
285 |
|
286 |
-
#: ../includes/class-ure-lib.php:
|
287 |
msgid ""
|
288 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
289 |
"only!"
|
@@ -291,374 +274,463 @@ msgstr ""
|
|
291 |
"Hata: Rol ID yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
|
292 |
"oluşabilir."
|
293 |
|
294 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
#, php-format
|
296 |
msgid "Role %s exists already"
|
297 |
msgstr "%s rolü zaten mevcut"
|
298 |
|
299 |
-
#: ../includes/class-ure-lib.php:
|
300 |
msgid "Error is encountered during new role create operation"
|
301 |
msgstr "Yeni rol oluşturma işlemi sırasında hata"
|
302 |
|
303 |
-
#: ../includes/class-ure-lib.php:
|
304 |
#, php-format
|
305 |
msgid "Role %s is created successfully"
|
306 |
msgstr "%s rolü başarıyla oluşturuldu"
|
307 |
|
308 |
-
#: ../includes/class-ure-lib.php:
|
309 |
msgid "Error encountered during role delete operation"
|
310 |
msgstr "Rol silme işlemi sırasında hata"
|
311 |
|
312 |
-
#: ../includes/class-ure-lib.php:
|
313 |
msgid "Unused roles are deleted successfully"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: ../includes/class-ure-lib.php:
|
317 |
#, php-format
|
318 |
msgid "Role %s is deleted successfully"
|
319 |
msgstr "%s rolü başarıyla silindi"
|
320 |
|
321 |
-
#: ../includes/class-ure-lib.php:
|
322 |
msgid "Error encountered during default role change operation"
|
323 |
msgstr "Varsayılan rolü değiştirme işlemi sırasında hata"
|
324 |
|
325 |
-
#: ../includes/class-ure-lib.php:
|
326 |
#, php-format
|
327 |
msgid "Default role for new users is set to %s successfully"
|
328 |
msgstr "Yeni kullanıcılar için varsayılan rol %s olarak başarıyla değiştirildi"
|
329 |
|
330 |
-
#: ../includes/class-ure-lib.php:
|
331 |
msgid "Editor"
|
332 |
msgstr "Editör"
|
333 |
|
334 |
-
#: ../includes/class-ure-lib.php:
|
335 |
msgid "Author"
|
336 |
msgstr "Yazar"
|
337 |
|
338 |
-
#: ../includes/class-ure-lib.php:
|
339 |
msgid "Contributor"
|
340 |
msgstr "İçerik Sağlayıcı"
|
341 |
|
342 |
-
#: ../includes/class-ure-lib.php:
|
343 |
msgid "Subscriber"
|
344 |
msgstr "Üye"
|
345 |
|
346 |
-
#: ../includes/class-ure-lib.php:
|
347 |
msgid "Switch themes"
|
348 |
msgstr "Temaları değiştir"
|
349 |
|
350 |
-
#: ../includes/class-ure-lib.php:
|
351 |
msgid "Edit themes"
|
352 |
msgstr "Temaları düzenle"
|
353 |
|
354 |
-
#: ../includes/class-ure-lib.php:
|
355 |
msgid "Activate plugins"
|
356 |
msgstr "Eklentileri aktive et"
|
357 |
|
358 |
-
#: ../includes/class-ure-lib.php:
|
359 |
msgid "Edit plugins"
|
360 |
msgstr "Eklentileri düzenlemek"
|
361 |
|
362 |
-
#: ../includes/class-ure-lib.php:
|
363 |
msgid "Edit users"
|
364 |
msgstr "Kullanıcıları düzenlemek"
|
365 |
|
366 |
-
#: ../includes/class-ure-lib.php:
|
367 |
msgid "Edit files"
|
368 |
msgstr "Dosyaları düzenlemek"
|
369 |
|
370 |
-
#: ../includes/class-ure-lib.php:
|
371 |
msgid "Manage options"
|
372 |
msgstr "Seçenekleri yönetmek"
|
373 |
|
374 |
-
#: ../includes/class-ure-lib.php:
|
375 |
msgid "Moderate comments"
|
376 |
msgstr "Yorumları yönetmek"
|
377 |
|
378 |
-
#: ../includes/class-ure-lib.php:
|
379 |
msgid "Manage categories"
|
380 |
msgstr "Kategorileri yönetmek"
|
381 |
|
382 |
-
#: ../includes/class-ure-lib.php:
|
383 |
msgid "Manage links"
|
384 |
msgstr "Linkleri yönetmek"
|
385 |
|
386 |
-
#: ../includes/class-ure-lib.php:
|
387 |
msgid "Upload files"
|
388 |
msgstr "Dosya yüklemek"
|
389 |
|
390 |
-
#: ../includes/class-ure-lib.php:
|
391 |
msgid "Import"
|
392 |
msgstr "İçeri aktarmak"
|
393 |
|
394 |
-
#: ../includes/class-ure-lib.php:
|
395 |
msgid "Unfiltered html"
|
396 |
msgstr "Filtrelenmemiş HTML"
|
397 |
|
398 |
-
#: ../includes/class-ure-lib.php:
|
399 |
msgid "Edit posts"
|
400 |
msgstr "Yazıları düzenlemek"
|
401 |
|
402 |
-
#: ../includes/class-ure-lib.php:
|
403 |
msgid "Edit others posts"
|
404 |
msgstr "Başkalarının yazılarını düzenlemek"
|
405 |
|
406 |
-
#: ../includes/class-ure-lib.php:
|
407 |
msgid "Edit published posts"
|
408 |
msgstr "Yayınlanmış yazıları düzenlemek"
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
msgid "Publish posts"
|
412 |
msgstr "Yazıları yayınlamak"
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
415 |
msgid "Edit pages"
|
416 |
msgstr "Sayfaları düzenlemek"
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
msgid "Read"
|
420 |
msgstr "Okumak"
|
421 |
|
422 |
-
#: ../includes/class-ure-lib.php:
|
423 |
msgid "Level 10"
|
424 |
msgstr "Seviye 10"
|
425 |
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
msgid "Level 9"
|
428 |
msgstr "Seviye 9"
|
429 |
|
430 |
-
#: ../includes/class-ure-lib.php:
|
431 |
msgid "Level 8"
|
432 |
msgstr "Seviye 8"
|
433 |
|
434 |
-
#: ../includes/class-ure-lib.php:
|
435 |
msgid "Level 7"
|
436 |
msgstr "Seviye 7"
|
437 |
|
438 |
-
#: ../includes/class-ure-lib.php:
|
439 |
msgid "Level 6"
|
440 |
msgstr "Seviye 6"
|
441 |
|
442 |
-
#: ../includes/class-ure-lib.php:
|
443 |
msgid "Level 5"
|
444 |
msgstr "Seviye 5"
|
445 |
|
446 |
-
#: ../includes/class-ure-lib.php:
|
447 |
msgid "Level 4"
|
448 |
msgstr "Seviye 4"
|
449 |
|
450 |
-
#: ../includes/class-ure-lib.php:
|
451 |
msgid "Level 3"
|
452 |
msgstr "Seviye 3"
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
msgid "Level 2"
|
456 |
msgstr "Seviye 2"
|
457 |
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
msgid "Level 1"
|
460 |
msgstr "Seviye 1"
|
461 |
|
462 |
-
#: ../includes/class-ure-lib.php:
|
463 |
msgid "Level 0"
|
464 |
msgstr "Seviye 0"
|
465 |
|
466 |
-
#: ../includes/class-ure-lib.php:
|
467 |
msgid "Edit others pages"
|
468 |
msgstr "Başkalarının sayfalarını düzenlemek"
|
469 |
|
470 |
-
#: ../includes/class-ure-lib.php:
|
471 |
msgid "Edit published pages"
|
472 |
msgstr "Yayınlanmış sayfaları düzenlemek"
|
473 |
|
474 |
-
#: ../includes/class-ure-lib.php:
|
475 |
msgid "Publish pages"
|
476 |
msgstr "Sayfaları yayınlamak"
|
477 |
|
478 |
-
#: ../includes/class-ure-lib.php:
|
479 |
msgid "Delete pages"
|
480 |
msgstr "Sayfaları silmek"
|
481 |
|
482 |
-
#: ../includes/class-ure-lib.php:
|
483 |
msgid "Delete others pages"
|
484 |
msgstr "Başkalarının sayfalarını silmek"
|
485 |
|
486 |
-
#: ../includes/class-ure-lib.php:
|
487 |
msgid "Delete published pages"
|
488 |
msgstr "Yayınlanmış sayfaları silmek"
|
489 |
|
490 |
-
#: ../includes/class-ure-lib.php:
|
491 |
msgid "Delete posts"
|
492 |
msgstr "Yazıları silmek"
|
493 |
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
msgid "Delete others posts"
|
496 |
msgstr "Başkalarının yazılarını silmek"
|
497 |
|
498 |
-
#: ../includes/class-ure-lib.php:
|
499 |
msgid "Delete published posts"
|
500 |
msgstr "Yayınlanmış yazıları silmek"
|
501 |
|
502 |
-
#: ../includes/class-ure-lib.php:
|
503 |
msgid "Delete private posts"
|
504 |
msgstr "Özel yazıları silmek"
|
505 |
|
506 |
-
#: ../includes/class-ure-lib.php:
|
507 |
msgid "Edit private posts"
|
508 |
msgstr "Özel yazıları düzenlemek"
|
509 |
|
510 |
-
#: ../includes/class-ure-lib.php:
|
511 |
msgid "Read private posts"
|
512 |
msgstr "Özel yazıları okumak"
|
513 |
|
514 |
-
#: ../includes/class-ure-lib.php:
|
515 |
msgid "Delete private pages"
|
516 |
msgstr "Özel sayfaları silmek"
|
517 |
|
518 |
-
#: ../includes/class-ure-lib.php:
|
519 |
msgid "Edit private pages"
|
520 |
msgstr "Özel sayfaları düzenlemek"
|
521 |
|
522 |
-
#: ../includes/class-ure-lib.php:
|
523 |
msgid "Read private pages"
|
524 |
msgstr "Özel yazıları okumak"
|
525 |
|
526 |
-
#: ../includes/class-ure-lib.php:
|
527 |
msgid "Delete users"
|
528 |
msgstr "Kullanıcı silmek"
|
529 |
|
530 |
-
#: ../includes/class-ure-lib.php:
|
531 |
msgid "Create users"
|
532 |
msgstr "Kullanıcı oluşturmak"
|
533 |
|
534 |
-
#: ../includes/class-ure-lib.php:
|
535 |
msgid "Unfiltered upload"
|
536 |
msgstr "Filtrelenmemiş dosya yüklemek"
|
537 |
|
538 |
-
#: ../includes/class-ure-lib.php:
|
539 |
msgid "Edit dashboard"
|
540 |
msgstr "Paneli düzenlemek"
|
541 |
|
542 |
-
#: ../includes/class-ure-lib.php:
|
543 |
msgid "Update plugins"
|
544 |
msgstr "Eklentileri güncellemek"
|
545 |
|
546 |
-
#: ../includes/class-ure-lib.php:
|
547 |
msgid "Delete plugins"
|
548 |
msgstr "Eklenti silmek"
|
549 |
|
550 |
-
#: ../includes/class-ure-lib.php:
|
551 |
msgid "Install plugins"
|
552 |
msgstr "Eklenti yüklemek"
|
553 |
|
554 |
-
#: ../includes/class-ure-lib.php:
|
555 |
msgid "Update themes"
|
556 |
msgstr "Temaları güncellemek"
|
557 |
|
558 |
-
#: ../includes/class-ure-lib.php:
|
559 |
msgid "Install themes"
|
560 |
msgstr "Tema yüklemek"
|
561 |
|
562 |
-
#: ../includes/class-ure-lib.php:
|
563 |
msgid "Update core"
|
564 |
msgstr "Güncelle"
|
565 |
|
566 |
-
#: ../includes/class-ure-lib.php:
|
567 |
msgid "List users"
|
568 |
msgstr "Kullanıcıları listelemek"
|
569 |
|
570 |
-
#: ../includes/class-ure-lib.php:
|
571 |
msgid "Remove users"
|
572 |
msgstr "Kullanıcı silmek"
|
573 |
|
574 |
-
#: ../includes/class-ure-lib.php:
|
575 |
msgid "Add users"
|
576 |
msgstr "Kullanıcıları eklemek"
|
577 |
|
578 |
-
#: ../includes/class-ure-lib.php:
|
579 |
msgid "Promote users"
|
580 |
msgstr "Kullanıcı yükseltmek"
|
581 |
|
582 |
-
#: ../includes/class-ure-lib.php:
|
583 |
msgid "Edit theme options"
|
584 |
msgstr "Tema ayarlarını düzenlemek"
|
585 |
|
586 |
-
#: ../includes/class-ure-lib.php:
|
587 |
msgid "Delete themes"
|
588 |
msgstr "Temaları silmek"
|
589 |
|
590 |
-
#: ../includes/class-ure-lib.php:
|
591 |
msgid "Export"
|
592 |
msgstr "Dışa aktarmak"
|
593 |
|
594 |
-
#: ../includes/class-ure-lib.php:
|
595 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
596 |
msgstr ""
|
597 |
"Hata: Kabiliyet adı yalnızca latin karakterleri ve sayılardan oluşabilir."
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
#, php-format
|
601 |
msgid "Capability %s is added successfully"
|
602 |
msgstr "%s kabiliyeti başarıyla eklendi"
|
603 |
|
604 |
-
#: ../includes/class-ure-lib.php:
|
605 |
#, php-format
|
606 |
msgid "Capability %s exists already"
|
607 |
msgstr "%s kabiliyeti zaten mevcut"
|
608 |
|
609 |
-
#: ../includes/class-ure-lib.php:
|
610 |
#, php-format
|
611 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
612 |
msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
|
613 |
|
614 |
-
#: ../includes/class-ure-lib.php:
|
615 |
#, php-format
|
616 |
msgid "Capability %s is removed successfully"
|
617 |
msgstr "%s kabiliyeti başarıyla oluşturuldu"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
-
msgid "About this Plugin:"
|
621 |
-
msgstr "Bu eklenti hakkında:"
|
622 |
-
|
623 |
-
#: ../includes/class-ure-lib.php:2087
|
624 |
msgid "Author's website"
|
625 |
msgstr "Hazırlayanın websitesi"
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Plugin webpage"
|
629 |
msgstr "Eklentinin websitesi"
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
632 |
msgid "FAQ"
|
633 |
msgstr "SSS"
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "None"
|
637 |
msgstr "Hiçbiri"
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Delete All Unused Roles"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "— No role for this site —"
|
645 |
msgstr ""
|
646 |
|
|
|
|
|
|
|
|
|
647 |
#: ../includes/ure-user-edit.php:34
|
648 |
msgid "Change capabilities for user"
|
649 |
msgstr "Kullanıcının kabiliyetlerini değiştir: "
|
650 |
|
651 |
-
#: ../includes/ure-
|
652 |
-
msgid "
|
653 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
654 |
|
655 |
-
|
656 |
-
|
657 |
-
msgstr "bbPress rolü: "
|
658 |
|
659 |
-
|
660 |
-
|
661 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
662 |
|
663 |
#~ msgid ""
|
664 |
#~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
@@ -670,10 +742,6 @@ msgstr "Diğer Roller:"
|
|
670 |
#~ "kaybolacak. Bazı eklentiler, örneğin S2Member, WooCommerce için yeniden "
|
671 |
#~ "etkinleştirme gerekebilir. Devam etmek istiyor musunuz?"
|
672 |
|
673 |
-
#, fuzzy
|
674 |
-
#~ msgid "Show capabilities in the human readable form"
|
675 |
-
#~ msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
|
676 |
-
|
677 |
#~ msgid "User Role Editor requires PHP %s or newer."
|
678 |
#~ msgstr ""
|
679 |
#~ "User Role Editor eklentisi PHP %s veya daha yüksek bir sürüme ihtiyaç "
|
@@ -744,9 +812,6 @@ msgstr "Diğer Roller:"
|
|
744 |
#~ msgid "Add New User Role"
|
745 |
#~ msgstr "Yeni Kullanıcı Rolü Ekle"
|
746 |
|
747 |
-
#~ msgid "Default Role for New User"
|
748 |
-
#~ msgstr "Yeni Kullanıcılar için Varsayılan Rol"
|
749 |
-
|
750 |
#~ msgid "Change"
|
751 |
#~ msgstr "Değiştir"
|
752 |
|
@@ -1141,10 +1206,6 @@ msgstr "Diğer Roller:"
|
|
1141 |
#~ msgid "Reset Stats"
|
1142 |
#~ msgstr "Geri al"
|
1143 |
|
1144 |
-
#, fuzzy
|
1145 |
-
#~ msgid "Delete this download"
|
1146 |
-
#~ msgstr "Başkalarının sayfalarını silmek"
|
1147 |
-
|
1148 |
#, fuzzy
|
1149 |
#~ msgid "Downloads added Successfully"
|
1150 |
#~ msgstr "başarıyla güncellendi"
|
@@ -1195,10 +1256,6 @@ msgstr "Diğer Roller:"
|
|
1195 |
#~ msgid "Users"
|
1196 |
#~ msgstr "Kullanıcı"
|
1197 |
|
1198 |
-
#, fuzzy
|
1199 |
-
#~ msgid "Change default role"
|
1200 |
-
#~ msgstr "Varsayılan Rolü Değiştir"
|
1201 |
-
|
1202 |
#, fuzzy
|
1203 |
#~ msgid "View Users"
|
1204 |
#~ msgstr "Kullanıcıları düzenlemek"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: user-role-editor\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-06 12:21+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: \n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/settings-template.php:80 ../includes/settings-template.php:111
|
20 |
+
#: ../includes/settings-template.php:140
|
21 |
msgid "Save"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: ../includes/settings-template.php:104
|
25 |
+
msgid ""
|
26 |
+
"Note for multisite environment: take into account that other default roles "
|
27 |
+
"should exist at the site, in order to be assigned to the new registered "
|
28 |
+
"users."
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: ../includes/class-user-role-editor.php:185
|
32 |
+
#, fuzzy
|
33 |
+
msgid "Change role for users without role"
|
34 |
+
msgstr "Varsayılan Rolü Değiştir"
|
35 |
+
|
36 |
+
#: ../includes/class-user-role-editor.php:186
|
37 |
+
msgid "No rights"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: ../includes/class-user-role-editor.php:187
|
41 |
+
msgid "Provide new role"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: ../includes/class-user-role-editor.php:271
|
45 |
+
#: ../includes/class-user-role-editor.php:273
|
46 |
msgid "You do not have permission to edit this user."
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: ../includes/class-user-role-editor.php:414
|
50 |
msgid "Capabilities"
|
51 |
msgstr "Kabiliyetler"
|
52 |
|
53 |
+
#: ../includes/class-user-role-editor.php:507
|
54 |
msgid "Settings"
|
55 |
msgstr "Ayarlar"
|
56 |
|
57 |
+
#: ../includes/class-user-role-editor.php:520
|
58 |
+
#: ../includes/class-ure-lib.php:2235
|
59 |
msgid "Changelog"
|
60 |
msgstr "Changelog"
|
61 |
|
62 |
+
#: ../includes/class-user-role-editor.php:542
|
63 |
msgid "Overview"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: ../includes/class-user-role-editor.php:551
|
67 |
+
#: ../includes/class-user-role-editor.php:579
|
68 |
+
#: ../includes/class-user-role-editor.php:873
|
69 |
+
#: ../includes/class-ure-lib.php:225
|
70 |
+
msgid "User Role Editor"
|
71 |
+
msgstr "Kullanıcı Rol Editörü"
|
72 |
+
|
73 |
+
#: ../includes/class-user-role-editor.php:639
|
74 |
+
#: ../includes/class-user-role-editor.php:684
|
75 |
+
msgid "User Role Editor options are updated"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: ../includes/class-user-role-editor.php:668
|
79 |
+
#, fuzzy
|
80 |
+
msgid "Default Roles are updated"
|
81 |
+
msgstr "Yeni Kullanıcılar için Varsayılan Rol"
|
82 |
+
|
83 |
+
#: ../includes/class-user-role-editor.php:692
|
84 |
msgid ""
|
85 |
"You do not have sufficient permissions to manage options for User Role "
|
86 |
"Editor."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: ../includes/class-user-role-editor.php:764
|
|
|
|
|
|
|
|
|
90 |
msgid "Insufficient permissions to work with User Role Editor"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: ../includes/class-user-role-editor.php:818
|
94 |
msgid "Select All"
|
95 |
msgstr "Tümünü Seç"
|
96 |
|
97 |
+
#: ../includes/class-user-role-editor.php:819
|
98 |
msgid "Unselect All"
|
99 |
msgstr "Seçimi Kaldır"
|
100 |
|
101 |
+
#: ../includes/class-user-role-editor.php:820
|
102 |
msgid "Reverse"
|
103 |
msgstr "Seçimi Tersine Çevir"
|
104 |
|
105 |
+
#: ../includes/class-user-role-editor.php:821
|
106 |
msgid "Update"
|
107 |
msgstr "Güncelle"
|
108 |
|
109 |
+
#: ../includes/class-user-role-editor.php:822
|
110 |
msgid "Please confirm permissions update"
|
111 |
msgstr "İzinleri güncelleştirmek için lütfen onaylayın"
|
112 |
|
113 |
+
#: ../includes/class-user-role-editor.php:823
|
114 |
msgid "Add New Role"
|
115 |
msgstr "Yeni Rol Ekle"
|
116 |
|
117 |
+
#: ../includes/class-user-role-editor.php:824
|
118 |
msgid " Role name (ID) can not be empty!"
|
119 |
msgstr "Ad (ID) boş bırakılamaz!"
|
120 |
|
121 |
+
#: ../includes/class-user-role-editor.php:825
|
122 |
msgid ""
|
123 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
124 |
"only!"
|
126 |
"Rol adı (ID) yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
|
127 |
"oluşabilir."
|
128 |
|
129 |
+
#: ../includes/class-user-role-editor.php:826
|
130 |
+
msgid ""
|
131 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
132 |
+
"it."
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: ../includes/class-user-role-editor.php:827
|
136 |
msgid "Add Role"
|
137 |
msgstr "Rol Ekle"
|
138 |
|
139 |
+
#: ../includes/class-user-role-editor.php:828
|
140 |
msgid "Delete Role"
|
141 |
msgstr "Rolü Sil"
|
142 |
|
143 |
+
#: ../includes/class-user-role-editor.php:829
|
144 |
msgid "Cancel"
|
145 |
msgstr "İptal"
|
146 |
|
147 |
+
#: ../includes/class-user-role-editor.php:830
|
148 |
msgid "Add Capability"
|
149 |
msgstr "Kabiliyet Ekle"
|
150 |
|
151 |
+
#: ../includes/class-user-role-editor.php:831
|
152 |
+
#: ../includes/class-user-role-editor.php:840
|
153 |
msgid "Delete Capability"
|
154 |
msgstr "Kabiliyeti kaldır"
|
155 |
|
156 |
+
#: ../includes/class-user-role-editor.php:832
|
157 |
msgid "Reset"
|
158 |
msgstr "Geri al"
|
159 |
|
160 |
+
#: ../includes/class-user-role-editor.php:833
|
161 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:834
|
165 |
msgid ""
|
166 |
"If any plugins have changed capabilities in any way upon installation (such "
|
167 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: ../includes/class-user-role-editor.php:835
|
171 |
msgid ""
|
172 |
"For more information on how to undo changes and restore plugin capabilities "
|
173 |
"go to"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: ../includes/class-user-role-editor.php:837
|
177 |
msgid "Continue?"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: ../includes/class-user-role-editor.php:838
|
181 |
msgid "Default Role"
|
182 |
msgstr "Öntanımlı Rol"
|
183 |
|
184 |
+
#: ../includes/class-user-role-editor.php:839
|
185 |
msgid "Set New Default Role"
|
186 |
msgstr "Yeni Öntanımlı Rol Seç"
|
187 |
|
188 |
+
#: ../includes/class-user-role-editor.php:841
|
189 |
msgid ""
|
190 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
191 |
"or other custom code"
|
193 |
"Uyarı! Dikkatli olun - önemli kabiliyetleri kaldırmak bazı eklentileri veya "
|
194 |
"başka özel kodların bozulmasına sebep olabilir"
|
195 |
|
196 |
+
#: ../includes/class-user-role-editor.php:842
|
197 |
msgid " Capability name (ID) can not be empty!"
|
198 |
msgstr "Ad (ID) boş bırakılamaz!"
|
199 |
|
200 |
+
#: ../includes/class-user-role-editor.php:843
|
201 |
msgid ""
|
202 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
203 |
"underscore only!"
|
205 |
"Kabiliyet adı (ID) yalnızca latin karakterleri, sayılar, tire veya "
|
206 |
"altçizgiden oluşabilir."
|
207 |
|
208 |
+
#: ../includes/class-user-role-editor.php:876
|
209 |
+
#: ../includes/class-user-role-editor.php:905
|
|
|
|
|
|
|
|
|
|
|
210 |
msgid "Other Roles"
|
211 |
msgstr "Diğer Roller"
|
212 |
|
213 |
+
#: ../includes/class-user-role-editor.php:887
|
214 |
msgid "Edit"
|
215 |
msgstr "Düzenle"
|
216 |
|
217 |
+
#: ../includes/ure-role-edit.php:44
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
msgid "If checked, then apply action to ALL sites of this Network"
|
219 |
msgstr "Eğer seçilirse, bu ağdaki tüm siteler için uygulanır"
|
220 |
|
221 |
+
#: ../includes/class-ure-lib.php:143
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
222 |
msgid "Error: wrong request"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: ../includes/class-ure-lib.php:322
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
msgid "Error: "
|
227 |
msgstr "Hata:"
|
228 |
|
229 |
+
#: ../includes/class-ure-lib.php:322
|
230 |
msgid "Role"
|
231 |
msgstr "Rol:"
|
232 |
|
233 |
+
#: ../includes/class-ure-lib.php:323
|
234 |
msgid "does not exist"
|
235 |
msgstr "bulunmuyor"
|
236 |
|
237 |
+
#: ../includes/class-ure-lib.php:366
|
238 |
msgid "Role is updated successfully"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: ../includes/class-ure-lib.php:368
|
242 |
msgid "Roles are updated for all network"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: ../includes/class-ure-lib.php:374
|
246 |
msgid "Error occured during role(s) update"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: ../includes/class-ure-lib.php:381
|
250 |
msgid "User capabilities are updated successfully"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: ../includes/class-ure-lib.php:386
|
254 |
msgid "Error occured during user update"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: ../includes/class-ure-lib.php:441
|
258 |
msgid "User Roles are restored to WordPress default values. "
|
259 |
msgstr "Rol yetkileri WordPress öntanımlılarına geri yüklendi."
|
260 |
|
261 |
+
#: ../includes/class-ure-lib.php:1340
|
262 |
msgid "Help"
|
263 |
msgstr "Yardım"
|
264 |
|
265 |
+
#: ../includes/class-ure-lib.php:1690
|
266 |
msgid "Error is occur. Please check the log file."
|
267 |
msgstr "Bir hata oluştu. Lütfen günlük dosyasını kontrol edin."
|
268 |
|
269 |
+
#: ../includes/class-ure-lib.php:1733
|
270 |
msgid ""
|
271 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
272 |
"only!"
|
274 |
"Hata: Rol ID yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
|
275 |
"oluşabilir."
|
276 |
|
277 |
+
#: ../includes/class-ure-lib.php:1737
|
278 |
+
msgid ""
|
279 |
+
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
280 |
+
"characters to it."
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: ../includes/class-ure-lib.php:1752
|
284 |
#, php-format
|
285 |
msgid "Role %s exists already"
|
286 |
msgstr "%s rolü zaten mevcut"
|
287 |
|
288 |
+
#: ../includes/class-ure-lib.php:1767
|
289 |
msgid "Error is encountered during new role create operation"
|
290 |
msgstr "Yeni rol oluşturma işlemi sırasında hata"
|
291 |
|
292 |
+
#: ../includes/class-ure-lib.php:1769
|
293 |
#, php-format
|
294 |
msgid "Role %s is created successfully"
|
295 |
msgstr "%s rolü başarıyla oluşturuldu"
|
296 |
|
297 |
+
#: ../includes/class-ure-lib.php:1838
|
298 |
msgid "Error encountered during role delete operation"
|
299 |
msgstr "Rol silme işlemi sırasında hata"
|
300 |
|
301 |
+
#: ../includes/class-ure-lib.php:1840
|
302 |
msgid "Unused roles are deleted successfully"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: ../includes/class-ure-lib.php:1842
|
306 |
#, php-format
|
307 |
msgid "Role %s is deleted successfully"
|
308 |
msgstr "%s rolü başarıyla silindi"
|
309 |
|
310 |
+
#: ../includes/class-ure-lib.php:1867
|
311 |
msgid "Error encountered during default role change operation"
|
312 |
msgstr "Varsayılan rolü değiştirme işlemi sırasında hata"
|
313 |
|
314 |
+
#: ../includes/class-ure-lib.php:1873
|
315 |
#, php-format
|
316 |
msgid "Default role for new users is set to %s successfully"
|
317 |
msgstr "Yeni kullanıcılar için varsayılan rol %s olarak başarıyla değiştirildi"
|
318 |
|
319 |
+
#: ../includes/class-ure-lib.php:1892
|
320 |
msgid "Editor"
|
321 |
msgstr "Editör"
|
322 |
|
323 |
+
#: ../includes/class-ure-lib.php:1893
|
324 |
msgid "Author"
|
325 |
msgstr "Yazar"
|
326 |
|
327 |
+
#: ../includes/class-ure-lib.php:1894
|
328 |
msgid "Contributor"
|
329 |
msgstr "İçerik Sağlayıcı"
|
330 |
|
331 |
+
#: ../includes/class-ure-lib.php:1895
|
332 |
msgid "Subscriber"
|
333 |
msgstr "Üye"
|
334 |
|
335 |
+
#: ../includes/class-ure-lib.php:1897
|
336 |
msgid "Switch themes"
|
337 |
msgstr "Temaları değiştir"
|
338 |
|
339 |
+
#: ../includes/class-ure-lib.php:1898
|
340 |
msgid "Edit themes"
|
341 |
msgstr "Temaları düzenle"
|
342 |
|
343 |
+
#: ../includes/class-ure-lib.php:1899
|
344 |
msgid "Activate plugins"
|
345 |
msgstr "Eklentileri aktive et"
|
346 |
|
347 |
+
#: ../includes/class-ure-lib.php:1900
|
348 |
msgid "Edit plugins"
|
349 |
msgstr "Eklentileri düzenlemek"
|
350 |
|
351 |
+
#: ../includes/class-ure-lib.php:1901
|
352 |
msgid "Edit users"
|
353 |
msgstr "Kullanıcıları düzenlemek"
|
354 |
|
355 |
+
#: ../includes/class-ure-lib.php:1902
|
356 |
msgid "Edit files"
|
357 |
msgstr "Dosyaları düzenlemek"
|
358 |
|
359 |
+
#: ../includes/class-ure-lib.php:1903
|
360 |
msgid "Manage options"
|
361 |
msgstr "Seçenekleri yönetmek"
|
362 |
|
363 |
+
#: ../includes/class-ure-lib.php:1904
|
364 |
msgid "Moderate comments"
|
365 |
msgstr "Yorumları yönetmek"
|
366 |
|
367 |
+
#: ../includes/class-ure-lib.php:1905
|
368 |
msgid "Manage categories"
|
369 |
msgstr "Kategorileri yönetmek"
|
370 |
|
371 |
+
#: ../includes/class-ure-lib.php:1906
|
372 |
msgid "Manage links"
|
373 |
msgstr "Linkleri yönetmek"
|
374 |
|
375 |
+
#: ../includes/class-ure-lib.php:1907
|
376 |
msgid "Upload files"
|
377 |
msgstr "Dosya yüklemek"
|
378 |
|
379 |
+
#: ../includes/class-ure-lib.php:1908
|
380 |
msgid "Import"
|
381 |
msgstr "İçeri aktarmak"
|
382 |
|
383 |
+
#: ../includes/class-ure-lib.php:1909
|
384 |
msgid "Unfiltered html"
|
385 |
msgstr "Filtrelenmemiş HTML"
|
386 |
|
387 |
+
#: ../includes/class-ure-lib.php:1910
|
388 |
msgid "Edit posts"
|
389 |
msgstr "Yazıları düzenlemek"
|
390 |
|
391 |
+
#: ../includes/class-ure-lib.php:1911
|
392 |
msgid "Edit others posts"
|
393 |
msgstr "Başkalarının yazılarını düzenlemek"
|
394 |
|
395 |
+
#: ../includes/class-ure-lib.php:1912
|
396 |
msgid "Edit published posts"
|
397 |
msgstr "Yayınlanmış yazıları düzenlemek"
|
398 |
|
399 |
+
#: ../includes/class-ure-lib.php:1913
|
400 |
msgid "Publish posts"
|
401 |
msgstr "Yazıları yayınlamak"
|
402 |
|
403 |
+
#: ../includes/class-ure-lib.php:1914
|
404 |
msgid "Edit pages"
|
405 |
msgstr "Sayfaları düzenlemek"
|
406 |
|
407 |
+
#: ../includes/class-ure-lib.php:1915
|
408 |
msgid "Read"
|
409 |
msgstr "Okumak"
|
410 |
|
411 |
+
#: ../includes/class-ure-lib.php:1916
|
412 |
msgid "Level 10"
|
413 |
msgstr "Seviye 10"
|
414 |
|
415 |
+
#: ../includes/class-ure-lib.php:1917
|
416 |
msgid "Level 9"
|
417 |
msgstr "Seviye 9"
|
418 |
|
419 |
+
#: ../includes/class-ure-lib.php:1918
|
420 |
msgid "Level 8"
|
421 |
msgstr "Seviye 8"
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:1919
|
424 |
msgid "Level 7"
|
425 |
msgstr "Seviye 7"
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:1920
|
428 |
msgid "Level 6"
|
429 |
msgstr "Seviye 6"
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:1921
|
432 |
msgid "Level 5"
|
433 |
msgstr "Seviye 5"
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:1922
|
436 |
msgid "Level 4"
|
437 |
msgstr "Seviye 4"
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:1923
|
440 |
msgid "Level 3"
|
441 |
msgstr "Seviye 3"
|
442 |
|
443 |
+
#: ../includes/class-ure-lib.php:1924
|
444 |
msgid "Level 2"
|
445 |
msgstr "Seviye 2"
|
446 |
|
447 |
+
#: ../includes/class-ure-lib.php:1925
|
448 |
msgid "Level 1"
|
449 |
msgstr "Seviye 1"
|
450 |
|
451 |
+
#: ../includes/class-ure-lib.php:1926
|
452 |
msgid "Level 0"
|
453 |
msgstr "Seviye 0"
|
454 |
|
455 |
+
#: ../includes/class-ure-lib.php:1927
|
456 |
msgid "Edit others pages"
|
457 |
msgstr "Başkalarının sayfalarını düzenlemek"
|
458 |
|
459 |
+
#: ../includes/class-ure-lib.php:1928
|
460 |
msgid "Edit published pages"
|
461 |
msgstr "Yayınlanmış sayfaları düzenlemek"
|
462 |
|
463 |
+
#: ../includes/class-ure-lib.php:1929
|
464 |
msgid "Publish pages"
|
465 |
msgstr "Sayfaları yayınlamak"
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:1930
|
468 |
msgid "Delete pages"
|
469 |
msgstr "Sayfaları silmek"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:1931
|
472 |
msgid "Delete others pages"
|
473 |
msgstr "Başkalarının sayfalarını silmek"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:1932
|
476 |
msgid "Delete published pages"
|
477 |
msgstr "Yayınlanmış sayfaları silmek"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:1933
|
480 |
msgid "Delete posts"
|
481 |
msgstr "Yazıları silmek"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:1934
|
484 |
msgid "Delete others posts"
|
485 |
msgstr "Başkalarının yazılarını silmek"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:1935
|
488 |
msgid "Delete published posts"
|
489 |
msgstr "Yayınlanmış yazıları silmek"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:1936
|
492 |
msgid "Delete private posts"
|
493 |
msgstr "Özel yazıları silmek"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:1937
|
496 |
msgid "Edit private posts"
|
497 |
msgstr "Özel yazıları düzenlemek"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:1938
|
500 |
msgid "Read private posts"
|
501 |
msgstr "Özel yazıları okumak"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:1939
|
504 |
msgid "Delete private pages"
|
505 |
msgstr "Özel sayfaları silmek"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:1940
|
508 |
msgid "Edit private pages"
|
509 |
msgstr "Özel sayfaları düzenlemek"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:1941
|
512 |
msgid "Read private pages"
|
513 |
msgstr "Özel yazıları okumak"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:1942
|
516 |
msgid "Delete users"
|
517 |
msgstr "Kullanıcı silmek"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:1943
|
520 |
msgid "Create users"
|
521 |
msgstr "Kullanıcı oluşturmak"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:1944
|
524 |
msgid "Unfiltered upload"
|
525 |
msgstr "Filtrelenmemiş dosya yüklemek"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:1945
|
528 |
msgid "Edit dashboard"
|
529 |
msgstr "Paneli düzenlemek"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:1946
|
532 |
msgid "Update plugins"
|
533 |
msgstr "Eklentileri güncellemek"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:1947
|
536 |
msgid "Delete plugins"
|
537 |
msgstr "Eklenti silmek"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:1948
|
540 |
msgid "Install plugins"
|
541 |
msgstr "Eklenti yüklemek"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:1949
|
544 |
msgid "Update themes"
|
545 |
msgstr "Temaları güncellemek"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:1950
|
548 |
msgid "Install themes"
|
549 |
msgstr "Tema yüklemek"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:1951
|
552 |
msgid "Update core"
|
553 |
msgstr "Güncelle"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:1952
|
556 |
msgid "List users"
|
557 |
msgstr "Kullanıcıları listelemek"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:1953
|
560 |
msgid "Remove users"
|
561 |
msgstr "Kullanıcı silmek"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:1954
|
564 |
msgid "Add users"
|
565 |
msgstr "Kullanıcıları eklemek"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:1955
|
568 |
msgid "Promote users"
|
569 |
msgstr "Kullanıcı yükseltmek"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:1956
|
572 |
msgid "Edit theme options"
|
573 |
msgstr "Tema ayarlarını düzenlemek"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:1957
|
576 |
msgid "Delete themes"
|
577 |
msgstr "Temaları silmek"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:1958
|
580 |
msgid "Export"
|
581 |
msgstr "Dışa aktarmak"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:2068
|
584 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
585 |
msgstr ""
|
586 |
"Hata: Kabiliyet adı yalnızca latin karakterleri ve sayılardan oluşabilir."
|
587 |
|
588 |
+
#: ../includes/class-ure-lib.php:2081
|
589 |
#, php-format
|
590 |
msgid "Capability %s is added successfully"
|
591 |
msgstr "%s kabiliyeti başarıyla eklendi"
|
592 |
|
593 |
+
#: ../includes/class-ure-lib.php:2083
|
594 |
#, php-format
|
595 |
msgid "Capability %s exists already"
|
596 |
msgstr "%s kabiliyeti zaten mevcut"
|
597 |
|
598 |
+
#: ../includes/class-ure-lib.php:2108
|
599 |
#, php-format
|
600 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
601 |
msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:2127
|
604 |
#, php-format
|
605 |
msgid "Capability %s is removed successfully"
|
606 |
msgstr "%s kabiliyeti başarıyla oluşturuldu"
|
607 |
|
608 |
+
#: ../includes/class-ure-lib.php:2232
|
|
|
|
|
|
|
|
|
609 |
msgid "Author's website"
|
610 |
msgstr "Hazırlayanın websitesi"
|
611 |
|
612 |
+
#: ../includes/class-ure-lib.php:2233
|
613 |
msgid "Plugin webpage"
|
614 |
msgstr "Eklentinin websitesi"
|
615 |
|
616 |
+
#: ../includes/class-ure-lib.php:2234
|
617 |
+
#, fuzzy
|
618 |
+
msgid "Plugin download"
|
619 |
+
msgstr "Başkalarının sayfalarını silmek"
|
620 |
+
|
621 |
+
#: ../includes/class-ure-lib.php:2236
|
622 |
msgid "FAQ"
|
623 |
msgstr "SSS"
|
624 |
|
625 |
+
#: ../includes/class-ure-lib.php:2284
|
626 |
msgid "None"
|
627 |
msgstr "Hiçbiri"
|
628 |
|
629 |
+
#: ../includes/class-ure-lib.php:2311
|
630 |
msgid "Delete All Unused Roles"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: ../includes/class-ure-lib.php:2335
|
634 |
msgid "— No role for this site —"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: ../includes/ure-user-edit.php:31
|
638 |
+
msgid "Network Super Admin"
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
#: ../includes/ure-user-edit.php:34
|
642 |
msgid "Change capabilities for user"
|
643 |
msgstr "Kullanıcının kabiliyetlerini değiştir: "
|
644 |
|
645 |
+
#: ../includes/class-ure-screen-help.php:15
|
646 |
+
msgid "Show Administrator role at User Role Editor"
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#: ../includes/class-ure-screen-help.php:16
|
650 |
+
msgid ""
|
651 |
+
"turn this option on in order to make the \"Administrator\" role available at "
|
652 |
+
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
653 |
+
"for security reasons."
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
#: ../includes/class-ure-screen-help.php:18
|
657 |
+
#, fuzzy
|
658 |
+
msgid "Show capabilities in the human readable form"
|
659 |
+
msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
|
660 |
+
|
661 |
+
#: ../includes/class-ure-screen-help.php:19
|
662 |
+
msgid ""
|
663 |
+
"automatically converts capability names from the technical form for internal "
|
664 |
+
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
665 |
+
"others posts\"."
|
666 |
+
msgstr ""
|
667 |
+
|
668 |
+
#: ../includes/class-ure-screen-help.php:21
|
669 |
+
msgid "Show deprecated capabilities"
|
670 |
+
msgstr "Önerilmeyen yetenekleri göster"
|
671 |
+
|
672 |
+
#: ../includes/class-ure-screen-help.php:22
|
673 |
+
msgid ""
|
674 |
+
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
675 |
+
"by WordPress. They are left at the user roles for the compatibility purpose "
|
676 |
+
"with the old themes and plugins code. Turning on this option will show those "
|
677 |
+
"deprecated capabilities."
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: ../includes/class-ure-screen-help.php:27
|
681 |
+
msgid "Allow create, edit and delete users to not super-admininstrators"
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: ../includes/class-ure-screen-help.php:28
|
685 |
+
msgid ""
|
686 |
+
"Super administrator only may create, edit and delete users under WordPress "
|
687 |
+
"multi-site. Turn this option on in order to remove this limitation."
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#~ msgid "Select Role and change its capabilities list"
|
691 |
+
#~ msgstr "Rolü seçin ve rolün yetki listesini değiştirin"
|
692 |
+
|
693 |
+
#~ msgid "Select Role:"
|
694 |
+
#~ msgstr "Rolü Seçin:"
|
695 |
+
|
696 |
+
#~ msgid "Show capabilities in human readable form"
|
697 |
+
#~ msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
|
698 |
+
|
699 |
+
#~ msgid "Apply to All Sites"
|
700 |
+
#~ msgstr "Tüm sitelere uygula"
|
701 |
+
|
702 |
+
#~ msgid "Core capabilities:"
|
703 |
+
#~ msgstr "Çekirdek Kabiliyetleri:"
|
704 |
+
|
705 |
+
#~ msgid "Custom capabilities:"
|
706 |
+
#~ msgstr "Özel Kabiliyetler:"
|
707 |
+
|
708 |
+
#~ msgid "Role name (ID): "
|
709 |
+
#~ msgstr "Rol adı (ID):"
|
710 |
+
|
711 |
+
#~ msgid "Display Role Name: "
|
712 |
+
#~ msgstr "Görünecek Rol Adı:"
|
713 |
+
|
714 |
+
#~ msgid "Make copy of: "
|
715 |
+
#~ msgstr "Bundan kopyala:"
|
716 |
|
717 |
+
#~ msgid "Delete:"
|
718 |
+
#~ msgstr "Sil:"
|
|
|
719 |
|
720 |
+
#~ msgid "Capability name (ID): "
|
721 |
+
#~ msgstr "Yetenek adı (ID): "
|
722 |
+
|
723 |
+
#~ msgid "About this Plugin:"
|
724 |
+
#~ msgstr "Bu eklenti hakkında:"
|
725 |
+
|
726 |
+
#~ msgid "Primary Role:"
|
727 |
+
#~ msgstr "Birincil rol:"
|
728 |
+
|
729 |
+
#~ msgid "bbPress Role:"
|
730 |
+
#~ msgstr "bbPress rolü: "
|
731 |
+
|
732 |
+
#~ msgid "Other Roles:"
|
733 |
+
#~ msgstr "Diğer Roller:"
|
734 |
|
735 |
#~ msgid ""
|
736 |
#~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
742 |
#~ "kaybolacak. Bazı eklentiler, örneğin S2Member, WooCommerce için yeniden "
|
743 |
#~ "etkinleştirme gerekebilir. Devam etmek istiyor musunuz?"
|
744 |
|
|
|
|
|
|
|
|
|
745 |
#~ msgid "User Role Editor requires PHP %s or newer."
|
746 |
#~ msgstr ""
|
747 |
#~ "User Role Editor eklentisi PHP %s veya daha yüksek bir sürüme ihtiyaç "
|
812 |
#~ msgid "Add New User Role"
|
813 |
#~ msgstr "Yeni Kullanıcı Rolü Ekle"
|
814 |
|
|
|
|
|
|
|
815 |
#~ msgid "Change"
|
816 |
#~ msgstr "Değiştir"
|
817 |
|
1206 |
#~ msgid "Reset Stats"
|
1207 |
#~ msgstr "Geri al"
|
1208 |
|
|
|
|
|
|
|
|
|
1209 |
#, fuzzy
|
1210 |
#~ msgid "Downloads added Successfully"
|
1211 |
#~ msgstr "başarıyla güncellendi"
|
1256 |
#~ msgid "Users"
|
1257 |
#~ msgstr "Kullanıcı"
|
1258 |
|
|
|
|
|
|
|
|
|
1259 |
#, fuzzy
|
1260 |
#~ msgid "View Users"
|
1261 |
#~ msgstr "Kullanıcıları düzenlemek"
|
lang/ure.mo
CHANGED
Binary file
|
lang/ure.pot
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -16,229 +16,204 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../includes/settings-template.php:
|
|
|
20 |
msgid "Save"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: ../includes/
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "You do not have permission to edit this user."
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: ../includes/class-user-role-editor.php:
|
29 |
msgid "Capabilities"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: ../includes/class-user-role-editor.php:
|
33 |
msgid "Settings"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: ../includes/class-user-role-editor.php:
|
37 |
-
#: ../includes/class-ure-lib.php:
|
38 |
msgid "Changelog"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: ../includes/class-user-role-editor.php:
|
42 |
msgid "Overview"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ../includes/class-user-role-editor.php:
|
46 |
-
#: ../includes/class-user-role-editor.php:
|
47 |
-
#: ../includes/class-user-role-editor.php:
|
48 |
#: ../includes/class-ure-lib.php:225
|
49 |
msgid "User Role Editor"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../includes/class-user-role-editor.php:
|
53 |
-
#: ../includes/class-user-role-editor.php:
|
54 |
msgid "User Role Editor options are updated"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
|
|
58 |
msgid ""
|
59 |
"You do not have sufficient permissions to manage options for User Role "
|
60 |
"Editor."
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: ../includes/class-user-role-editor.php:
|
64 |
msgid "Insufficient permissions to work with User Role Editor"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: ../includes/class-user-role-editor.php:
|
68 |
msgid "Select All"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: ../includes/class-user-role-editor.php:
|
72 |
msgid "Unselect All"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: ../includes/class-user-role-editor.php:
|
76 |
msgid "Reverse"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: ../includes/class-user-role-editor.php:
|
80 |
msgid "Update"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: ../includes/class-user-role-editor.php:
|
84 |
msgid "Please confirm permissions update"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: ../includes/class-user-role-editor.php:
|
88 |
msgid "Add New Role"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: ../includes/class-user-role-editor.php:
|
92 |
msgid " Role name (ID) can not be empty!"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../includes/class-user-role-editor.php:
|
96 |
msgid ""
|
97 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
98 |
"only!"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: ../includes/class-user-role-editor.php:
|
102 |
msgid ""
|
103 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
104 |
"it."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: ../includes/class-user-role-editor.php:
|
108 |
msgid "Add Role"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: ../includes/class-user-role-editor.php:
|
112 |
msgid "Delete Role"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: ../includes/class-user-role-editor.php:
|
116 |
msgid "Cancel"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: ../includes/class-user-role-editor.php:
|
120 |
msgid "Add Capability"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: ../includes/class-user-role-editor.php:
|
124 |
-
#: ../includes/class-user-role-editor.php:
|
125 |
msgid "Delete Capability"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: ../includes/class-user-role-editor.php:
|
129 |
msgid "Reset"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: ../includes/class-user-role-editor.php:
|
137 |
msgid ""
|
138 |
"If any plugins have changed capabilities in any way upon installation (such "
|
139 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: ../includes/class-user-role-editor.php:
|
143 |
msgid ""
|
144 |
"For more information on how to undo changes and restore plugin capabilities "
|
145 |
"go to"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: ../includes/class-user-role-editor.php:
|
149 |
msgid "Continue?"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: ../includes/class-user-role-editor.php:
|
153 |
msgid "Default Role"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: ../includes/class-user-role-editor.php:
|
157 |
msgid "Set New Default Role"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid ""
|
162 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
163 |
"or other custom code"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: ../includes/class-user-role-editor.php:
|
167 |
msgid " Capability name (ID) can not be empty!"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: ../includes/class-user-role-editor.php:
|
171 |
msgid ""
|
172 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
173 |
"underscore only!"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: ../includes/class-user-role-editor.php:
|
177 |
-
#: ../includes/class-user-role-editor.php:
|
178 |
msgid "Other Roles"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../includes/class-user-role-editor.php:
|
182 |
msgid "Edit"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
|
186 |
-
msgid "Show capabilities in human readable form"
|
187 |
-
msgstr ""
|
188 |
-
|
189 |
-
#: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:63
|
190 |
-
#: ../includes/class-ure-screen-help.php:21
|
191 |
-
msgid "Show deprecated capabilities"
|
192 |
-
msgstr ""
|
193 |
-
|
194 |
#: ../includes/ure-role-edit.php:44
|
195 |
msgid "If checked, then apply action to ALL sites of this Network"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: ../includes/ure-role-edit.php:56
|
199 |
-
msgid "Apply to All Sites"
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
|
203 |
-
msgid "Core capabilities:"
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
|
207 |
-
msgid "Quick filter:"
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
|
211 |
-
msgid "Custom capabilities:"
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
#: ../includes/class-ure-lib.php:143
|
215 |
msgid "Error: wrong request"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: ../includes/class-ure-lib.php:175
|
219 |
-
msgid "Role name (ID): "
|
220 |
-
msgstr ""
|
221 |
-
|
222 |
-
#: ../includes/class-ure-lib.php:177
|
223 |
-
msgid "Display Role Name: "
|
224 |
-
msgstr ""
|
225 |
-
|
226 |
-
#: ../includes/class-ure-lib.php:179
|
227 |
-
msgid "Make copy of: "
|
228 |
-
msgstr ""
|
229 |
-
|
230 |
-
#: ../includes/class-ure-lib.php:186
|
231 |
-
msgid "Select Role:"
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#: ../includes/class-ure-lib.php:201
|
235 |
-
msgid "Delete:"
|
236 |
-
msgstr ""
|
237 |
-
|
238 |
-
#: ../includes/class-ure-lib.php:208
|
239 |
-
msgid "Capability name (ID): "
|
240 |
-
msgstr ""
|
241 |
-
|
242 |
#: ../includes/class-ure-lib.php:322
|
243 |
msgid "Error: "
|
244 |
msgstr ""
|
@@ -247,403 +222,403 @@ msgstr ""
|
|
247 |
msgid "Role"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../includes/class-ure-lib.php:
|
251 |
msgid "does not exist"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: ../includes/class-ure-lib.php:
|
255 |
msgid "Role is updated successfully"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: ../includes/class-ure-lib.php:
|
259 |
msgid "Roles are updated for all network"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: ../includes/class-ure-lib.php:
|
263 |
msgid "Error occured during role(s) update"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: ../includes/class-ure-lib.php:
|
267 |
msgid "User capabilities are updated successfully"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: ../includes/class-ure-lib.php:
|
271 |
msgid "Error occured during user update"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: ../includes/class-ure-lib.php:
|
275 |
msgid "User Roles are restored to WordPress default values. "
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: ../includes/class-ure-lib.php:
|
279 |
msgid "Help"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: ../includes/class-ure-lib.php:
|
283 |
msgid "Error is occur. Please check the log file."
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: ../includes/class-ure-lib.php:
|
287 |
msgid ""
|
288 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
289 |
"only!"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: ../includes/class-ure-lib.php:
|
293 |
msgid ""
|
294 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
295 |
"characters to it."
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: ../includes/class-ure-lib.php:
|
299 |
#, php-format
|
300 |
msgid "Role %s exists already"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: ../includes/class-ure-lib.php:
|
304 |
msgid "Error is encountered during new role create operation"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: ../includes/class-ure-lib.php:
|
308 |
#, php-format
|
309 |
msgid "Role %s is created successfully"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: ../includes/class-ure-lib.php:
|
313 |
msgid "Error encountered during role delete operation"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: ../includes/class-ure-lib.php:
|
317 |
msgid "Unused roles are deleted successfully"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: ../includes/class-ure-lib.php:
|
321 |
#, php-format
|
322 |
msgid "Role %s is deleted successfully"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: ../includes/class-ure-lib.php:
|
326 |
msgid "Error encountered during default role change operation"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: ../includes/class-ure-lib.php:
|
330 |
#, php-format
|
331 |
msgid "Default role for new users is set to %s successfully"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: ../includes/class-ure-lib.php:
|
335 |
msgid "Editor"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: ../includes/class-ure-lib.php:
|
339 |
msgid "Author"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: ../includes/class-ure-lib.php:
|
343 |
msgid "Contributor"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: ../includes/class-ure-lib.php:
|
347 |
msgid "Subscriber"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: ../includes/class-ure-lib.php:
|
351 |
msgid "Switch themes"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: ../includes/class-ure-lib.php:
|
355 |
msgid "Edit themes"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: ../includes/class-ure-lib.php:
|
359 |
msgid "Activate plugins"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: ../includes/class-ure-lib.php:
|
363 |
msgid "Edit plugins"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: ../includes/class-ure-lib.php:
|
367 |
msgid "Edit users"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: ../includes/class-ure-lib.php:
|
371 |
msgid "Edit files"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: ../includes/class-ure-lib.php:
|
375 |
msgid "Manage options"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: ../includes/class-ure-lib.php:
|
379 |
msgid "Moderate comments"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: ../includes/class-ure-lib.php:
|
383 |
msgid "Manage categories"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: ../includes/class-ure-lib.php:
|
387 |
msgid "Manage links"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: ../includes/class-ure-lib.php:
|
391 |
msgid "Upload files"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: ../includes/class-ure-lib.php:
|
395 |
msgid "Import"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: ../includes/class-ure-lib.php:
|
399 |
msgid "Unfiltered html"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: ../includes/class-ure-lib.php:
|
403 |
msgid "Edit posts"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: ../includes/class-ure-lib.php:
|
407 |
msgid "Edit others posts"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
msgid "Edit published posts"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
415 |
msgid "Publish posts"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
msgid "Edit pages"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: ../includes/class-ure-lib.php:
|
423 |
msgid "Read"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
msgid "Level 10"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: ../includes/class-ure-lib.php:
|
431 |
msgid "Level 9"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: ../includes/class-ure-lib.php:
|
435 |
msgid "Level 8"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: ../includes/class-ure-lib.php:
|
439 |
msgid "Level 7"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: ../includes/class-ure-lib.php:
|
443 |
msgid "Level 6"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: ../includes/class-ure-lib.php:
|
447 |
msgid "Level 5"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: ../includes/class-ure-lib.php:
|
451 |
msgid "Level 4"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
msgid "Level 3"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
msgid "Level 2"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: ../includes/class-ure-lib.php:
|
463 |
msgid "Level 1"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: ../includes/class-ure-lib.php:
|
467 |
msgid "Level 0"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: ../includes/class-ure-lib.php:
|
471 |
msgid "Edit others pages"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: ../includes/class-ure-lib.php:
|
475 |
msgid "Edit published pages"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: ../includes/class-ure-lib.php:
|
479 |
msgid "Publish pages"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: ../includes/class-ure-lib.php:
|
483 |
msgid "Delete pages"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: ../includes/class-ure-lib.php:
|
487 |
msgid "Delete others pages"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: ../includes/class-ure-lib.php:
|
491 |
msgid "Delete published pages"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
msgid "Delete posts"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: ../includes/class-ure-lib.php:
|
499 |
msgid "Delete others posts"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: ../includes/class-ure-lib.php:
|
503 |
msgid "Delete published posts"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: ../includes/class-ure-lib.php:
|
507 |
msgid "Delete private posts"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: ../includes/class-ure-lib.php:
|
511 |
msgid "Edit private posts"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: ../includes/class-ure-lib.php:
|
515 |
msgid "Read private posts"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: ../includes/class-ure-lib.php:
|
519 |
msgid "Delete private pages"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: ../includes/class-ure-lib.php:
|
523 |
msgid "Edit private pages"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: ../includes/class-ure-lib.php:
|
527 |
msgid "Read private pages"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: ../includes/class-ure-lib.php:
|
531 |
msgid "Delete users"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: ../includes/class-ure-lib.php:
|
535 |
msgid "Create users"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: ../includes/class-ure-lib.php:
|
539 |
msgid "Unfiltered upload"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: ../includes/class-ure-lib.php:
|
543 |
msgid "Edit dashboard"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ../includes/class-ure-lib.php:
|
547 |
msgid "Update plugins"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: ../includes/class-ure-lib.php:
|
551 |
msgid "Delete plugins"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: ../includes/class-ure-lib.php:
|
555 |
msgid "Install plugins"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: ../includes/class-ure-lib.php:
|
559 |
msgid "Update themes"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: ../includes/class-ure-lib.php:
|
563 |
msgid "Install themes"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: ../includes/class-ure-lib.php:
|
567 |
msgid "Update core"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: ../includes/class-ure-lib.php:
|
571 |
msgid "List users"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: ../includes/class-ure-lib.php:
|
575 |
msgid "Remove users"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: ../includes/class-ure-lib.php:
|
579 |
msgid "Add users"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: ../includes/class-ure-lib.php:
|
583 |
msgid "Promote users"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: ../includes/class-ure-lib.php:
|
587 |
msgid "Edit theme options"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: ../includes/class-ure-lib.php:
|
591 |
msgid "Delete themes"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: ../includes/class-ure-lib.php:
|
595 |
msgid "Export"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: ../includes/class-ure-lib.php:
|
599 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: ../includes/class-ure-lib.php:
|
603 |
#, php-format
|
604 |
msgid "Capability %s is added successfully"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
#, php-format
|
609 |
msgid "Capability %s exists already"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: ../includes/class-ure-lib.php:
|
613 |
#, php-format
|
614 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: ../includes/class-ure-lib.php:
|
618 |
#, php-format
|
619 |
msgid "Capability %s is removed successfully"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: ../includes/class-ure-lib.php:
|
623 |
msgid "Author's website"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: ../includes/class-ure-lib.php:
|
627 |
msgid "Plugin webpage"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: ../includes/class-ure-lib.php:
|
631 |
msgid "Plugin download"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: ../includes/class-ure-lib.php:
|
635 |
msgid "FAQ"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: ../includes/class-ure-lib.php:
|
639 |
msgid "None"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: ../includes/class-ure-lib.php:
|
643 |
msgid "Delete All Unused Roles"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: ../includes/class-ure-lib.php:
|
647 |
msgid "— No role for this site —"
|
648 |
msgstr ""
|
649 |
|
@@ -655,18 +630,6 @@ msgstr ""
|
|
655 |
msgid "Change capabilities for user"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: ../includes/ure-user-edit.php:71
|
659 |
-
msgid "Primary Role:"
|
660 |
-
msgstr ""
|
661 |
-
|
662 |
-
#: ../includes/ure-user-edit.php:81
|
663 |
-
msgid "bbPress Role:"
|
664 |
-
msgstr ""
|
665 |
-
|
666 |
-
#: ../includes/ure-user-edit.php:91
|
667 |
-
msgid "Other Roles:"
|
668 |
-
msgstr ""
|
669 |
-
|
670 |
#: ../includes/class-ure-screen-help.php:15
|
671 |
msgid "Show Administrator role at User Role Editor"
|
672 |
msgstr ""
|
@@ -689,6 +652,10 @@ msgid ""
|
|
689 |
"others posts\"."
|
690 |
msgstr ""
|
691 |
|
|
|
|
|
|
|
|
|
692 |
#: ../includes/class-ure-screen-help.php:22
|
693 |
msgid ""
|
694 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-06 12:21+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/settings-template.php:80 ../includes/settings-template.php:111
|
20 |
+
#: ../includes/settings-template.php:140
|
21 |
msgid "Save"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: ../includes/settings-template.php:104
|
25 |
+
msgid ""
|
26 |
+
"Note for multisite environment: take into account that other default roles "
|
27 |
+
"should exist at the site, in order to be assigned to the new registered "
|
28 |
+
"users."
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: ../includes/class-user-role-editor.php:185
|
32 |
+
msgid "Change role for users without role"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: ../includes/class-user-role-editor.php:186
|
36 |
+
msgid "No rights"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: ../includes/class-user-role-editor.php:187
|
40 |
+
msgid "Provide new role"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: ../includes/class-user-role-editor.php:271
|
44 |
+
#: ../includes/class-user-role-editor.php:273
|
45 |
msgid "You do not have permission to edit this user."
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: ../includes/class-user-role-editor.php:414
|
49 |
msgid "Capabilities"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../includes/class-user-role-editor.php:507
|
53 |
msgid "Settings"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: ../includes/class-user-role-editor.php:520
|
57 |
+
#: ../includes/class-ure-lib.php:2235
|
58 |
msgid "Changelog"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: ../includes/class-user-role-editor.php:542
|
62 |
msgid "Overview"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: ../includes/class-user-role-editor.php:551
|
66 |
+
#: ../includes/class-user-role-editor.php:579
|
67 |
+
#: ../includes/class-user-role-editor.php:873
|
68 |
#: ../includes/class-ure-lib.php:225
|
69 |
msgid "User Role Editor"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: ../includes/class-user-role-editor.php:639
|
73 |
+
#: ../includes/class-user-role-editor.php:684
|
74 |
msgid "User Role Editor options are updated"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../includes/class-user-role-editor.php:668
|
78 |
+
msgid "Default Roles are updated"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: ../includes/class-user-role-editor.php:692
|
82 |
msgid ""
|
83 |
"You do not have sufficient permissions to manage options for User Role "
|
84 |
"Editor."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: ../includes/class-user-role-editor.php:764
|
88 |
msgid "Insufficient permissions to work with User Role Editor"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../includes/class-user-role-editor.php:818
|
92 |
msgid "Select All"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: ../includes/class-user-role-editor.php:819
|
96 |
msgid "Unselect All"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: ../includes/class-user-role-editor.php:820
|
100 |
msgid "Reverse"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: ../includes/class-user-role-editor.php:821
|
104 |
msgid "Update"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: ../includes/class-user-role-editor.php:822
|
108 |
msgid "Please confirm permissions update"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: ../includes/class-user-role-editor.php:823
|
112 |
msgid "Add New Role"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: ../includes/class-user-role-editor.php:824
|
116 |
msgid " Role name (ID) can not be empty!"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: ../includes/class-user-role-editor.php:825
|
120 |
msgid ""
|
121 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
122 |
"only!"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: ../includes/class-user-role-editor.php:826
|
126 |
msgid ""
|
127 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
128 |
"it."
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: ../includes/class-user-role-editor.php:827
|
132 |
msgid "Add Role"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: ../includes/class-user-role-editor.php:828
|
136 |
msgid "Delete Role"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: ../includes/class-user-role-editor.php:829
|
140 |
msgid "Cancel"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: ../includes/class-user-role-editor.php:830
|
144 |
msgid "Add Capability"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: ../includes/class-user-role-editor.php:831
|
148 |
+
#: ../includes/class-user-role-editor.php:840
|
149 |
msgid "Delete Capability"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: ../includes/class-user-role-editor.php:832
|
153 |
msgid "Reset"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: ../includes/class-user-role-editor.php:833
|
157 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: ../includes/class-user-role-editor.php:834
|
161 |
msgid ""
|
162 |
"If any plugins have changed capabilities in any way upon installation (such "
|
163 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: ../includes/class-user-role-editor.php:835
|
167 |
msgid ""
|
168 |
"For more information on how to undo changes and restore plugin capabilities "
|
169 |
"go to"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: ../includes/class-user-role-editor.php:837
|
173 |
msgid "Continue?"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: ../includes/class-user-role-editor.php:838
|
177 |
msgid "Default Role"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: ../includes/class-user-role-editor.php:839
|
181 |
msgid "Set New Default Role"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: ../includes/class-user-role-editor.php:841
|
185 |
msgid ""
|
186 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
187 |
"or other custom code"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: ../includes/class-user-role-editor.php:842
|
191 |
msgid " Capability name (ID) can not be empty!"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../includes/class-user-role-editor.php:843
|
195 |
msgid ""
|
196 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
197 |
"underscore only!"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: ../includes/class-user-role-editor.php:876
|
201 |
+
#: ../includes/class-user-role-editor.php:905
|
202 |
msgid "Other Roles"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: ../includes/class-user-role-editor.php:887
|
206 |
msgid "Edit"
|
207 |
msgstr ""
|
208 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
#: ../includes/ure-role-edit.php:44
|
210 |
msgid "If checked, then apply action to ALL sites of this Network"
|
211 |
msgstr ""
|
212 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
#: ../includes/class-ure-lib.php:143
|
214 |
msgid "Error: wrong request"
|
215 |
msgstr ""
|
216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
#: ../includes/class-ure-lib.php:322
|
218 |
msgid "Error: "
|
219 |
msgstr ""
|
222 |
msgid "Role"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: ../includes/class-ure-lib.php:323
|
226 |
msgid "does not exist"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: ../includes/class-ure-lib.php:366
|
230 |
msgid "Role is updated successfully"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ../includes/class-ure-lib.php:368
|
234 |
msgid "Roles are updated for all network"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: ../includes/class-ure-lib.php:374
|
238 |
msgid "Error occured during role(s) update"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: ../includes/class-ure-lib.php:381
|
242 |
msgid "User capabilities are updated successfully"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: ../includes/class-ure-lib.php:386
|
246 |
msgid "Error occured during user update"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: ../includes/class-ure-lib.php:441
|
250 |
msgid "User Roles are restored to WordPress default values. "
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: ../includes/class-ure-lib.php:1340
|
254 |
msgid "Help"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: ../includes/class-ure-lib.php:1690
|
258 |
msgid "Error is occur. Please check the log file."
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: ../includes/class-ure-lib.php:1733
|
262 |
msgid ""
|
263 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
264 |
"only!"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../includes/class-ure-lib.php:1737
|
268 |
msgid ""
|
269 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
270 |
"characters to it."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: ../includes/class-ure-lib.php:1752
|
274 |
#, php-format
|
275 |
msgid "Role %s exists already"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: ../includes/class-ure-lib.php:1767
|
279 |
msgid "Error is encountered during new role create operation"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: ../includes/class-ure-lib.php:1769
|
283 |
#, php-format
|
284 |
msgid "Role %s is created successfully"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: ../includes/class-ure-lib.php:1838
|
288 |
msgid "Error encountered during role delete operation"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ../includes/class-ure-lib.php:1840
|
292 |
msgid "Unused roles are deleted successfully"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: ../includes/class-ure-lib.php:1842
|
296 |
#, php-format
|
297 |
msgid "Role %s is deleted successfully"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: ../includes/class-ure-lib.php:1867
|
301 |
msgid "Error encountered during default role change operation"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: ../includes/class-ure-lib.php:1873
|
305 |
#, php-format
|
306 |
msgid "Default role for new users is set to %s successfully"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: ../includes/class-ure-lib.php:1892
|
310 |
msgid "Editor"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: ../includes/class-ure-lib.php:1893
|
314 |
msgid "Author"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: ../includes/class-ure-lib.php:1894
|
318 |
msgid "Contributor"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: ../includes/class-ure-lib.php:1895
|
322 |
msgid "Subscriber"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:1897
|
326 |
msgid "Switch themes"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:1898
|
330 |
msgid "Edit themes"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:1899
|
334 |
msgid "Activate plugins"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:1900
|
338 |
msgid "Edit plugins"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:1901
|
342 |
msgid "Edit users"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:1902
|
346 |
msgid "Edit files"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:1903
|
350 |
msgid "Manage options"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:1904
|
354 |
msgid "Moderate comments"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:1905
|
358 |
msgid "Manage categories"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:1906
|
362 |
msgid "Manage links"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:1907
|
366 |
msgid "Upload files"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:1908
|
370 |
msgid "Import"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:1909
|
374 |
msgid "Unfiltered html"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:1910
|
378 |
msgid "Edit posts"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:1911
|
382 |
msgid "Edit others posts"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:1912
|
386 |
msgid "Edit published posts"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:1913
|
390 |
msgid "Publish posts"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1914
|
394 |
msgid "Edit pages"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:1915
|
398 |
msgid "Read"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:1916
|
402 |
msgid "Level 10"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:1917
|
406 |
msgid "Level 9"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1918
|
410 |
msgid "Level 8"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:1919
|
414 |
msgid "Level 7"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1920
|
418 |
msgid "Level 6"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:1921
|
422 |
msgid "Level 5"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: ../includes/class-ure-lib.php:1922
|
426 |
msgid "Level 4"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: ../includes/class-ure-lib.php:1923
|
430 |
msgid "Level 3"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: ../includes/class-ure-lib.php:1924
|
434 |
msgid "Level 2"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:1925
|
438 |
msgid "Level 1"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:1926
|
442 |
msgid "Level 0"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:1927
|
446 |
msgid "Edit others pages"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:1928
|
450 |
msgid "Edit published pages"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:1929
|
454 |
msgid "Publish pages"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:1930
|
458 |
msgid "Delete pages"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:1931
|
462 |
msgid "Delete others pages"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:1932
|
466 |
msgid "Delete published pages"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:1933
|
470 |
msgid "Delete posts"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: ../includes/class-ure-lib.php:1934
|
474 |
msgid "Delete others posts"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:1935
|
478 |
msgid "Delete published posts"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:1936
|
482 |
msgid "Delete private posts"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:1937
|
486 |
msgid "Edit private posts"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:1938
|
490 |
msgid "Read private posts"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:1939
|
494 |
msgid "Delete private pages"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:1940
|
498 |
msgid "Edit private pages"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:1941
|
502 |
msgid "Read private pages"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:1942
|
506 |
msgid "Delete users"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:1943
|
510 |
msgid "Create users"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:1944
|
514 |
msgid "Unfiltered upload"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: ../includes/class-ure-lib.php:1945
|
518 |
msgid "Edit dashboard"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: ../includes/class-ure-lib.php:1946
|
522 |
msgid "Update plugins"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: ../includes/class-ure-lib.php:1947
|
526 |
msgid "Delete plugins"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:1948
|
530 |
msgid "Install plugins"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../includes/class-ure-lib.php:1949
|
534 |
msgid "Update themes"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ../includes/class-ure-lib.php:1950
|
538 |
msgid "Install themes"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ../includes/class-ure-lib.php:1951
|
542 |
msgid "Update core"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: ../includes/class-ure-lib.php:1952
|
546 |
msgid "List users"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: ../includes/class-ure-lib.php:1953
|
550 |
msgid "Remove users"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: ../includes/class-ure-lib.php:1954
|
554 |
msgid "Add users"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: ../includes/class-ure-lib.php:1955
|
558 |
msgid "Promote users"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: ../includes/class-ure-lib.php:1956
|
562 |
msgid "Edit theme options"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:1957
|
566 |
msgid "Delete themes"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: ../includes/class-ure-lib.php:1958
|
570 |
msgid "Export"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: ../includes/class-ure-lib.php:2068
|
574 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: ../includes/class-ure-lib.php:2081
|
578 |
#, php-format
|
579 |
msgid "Capability %s is added successfully"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: ../includes/class-ure-lib.php:2083
|
583 |
#, php-format
|
584 |
msgid "Capability %s exists already"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:2108
|
588 |
#, php-format
|
589 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: ../includes/class-ure-lib.php:2127
|
593 |
#, php-format
|
594 |
msgid "Capability %s is removed successfully"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: ../includes/class-ure-lib.php:2232
|
598 |
msgid "Author's website"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: ../includes/class-ure-lib.php:2233
|
602 |
msgid "Plugin webpage"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:2234
|
606 |
msgid "Plugin download"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: ../includes/class-ure-lib.php:2236
|
610 |
msgid "FAQ"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: ../includes/class-ure-lib.php:2284
|
614 |
msgid "None"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: ../includes/class-ure-lib.php:2311
|
618 |
msgid "Delete All Unused Roles"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: ../includes/class-ure-lib.php:2335
|
622 |
msgid "— No role for this site —"
|
623 |
msgstr ""
|
624 |
|
630 |
msgid "Change capabilities for user"
|
631 |
msgstr ""
|
632 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
633 |
#: ../includes/class-ure-screen-help.php:15
|
634 |
msgid "Show Administrator role at User Role Editor"
|
635 |
msgstr ""
|
652 |
"others posts\"."
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: ../includes/class-ure-screen-help.php:21
|
656 |
+
msgid "Show deprecated capabilities"
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
#: ../includes/class-ure-screen-help.php:22
|
660 |
msgid ""
|
661 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: shinephp
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=vladimir%40shinephp%2ecom&lc=RU&item_name=ShinePHP%2ecom&item_number=User%20Role%20Editor%20WordPress%20plugin¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
|
4 |
Tags: user, role, editor, security, access, permission, capability
|
5 |
Requires at least: 3.5
|
6 |
-
Tested up to: 3.
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -60,6 +60,7 @@ To read full FAQ section visit [this page](http://www.shinephp.com/user-role-edi
|
|
60 |
2. screenshot-2.png Add/Remove roles or capabilities
|
61 |
3. screenshot-3.png User Capabilities link
|
62 |
4. screenshot-4.png User Capabilities Editor
|
|
|
63 |
|
64 |
To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/user-role-editor-wordpress-plugin/) at [shinephp.com](shinephp.com).
|
65 |
|
@@ -78,6 +79,14 @@ Share with me new ideas about plugin further development and link to your site w
|
|
78 |
|
79 |
|
80 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
= 4.10 =
|
82 |
* 15.02.2014
|
83 |
* Security enhancement: WordPress text translation functions were replaced with more secure esc_html__() and esc_html_e() variants.
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=vladimir%40shinephp%2ecom&lc=RU&item_name=ShinePHP%2ecom&item_number=User%20Role%20Editor%20WordPress%20plugin¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
|
4 |
Tags: user, role, editor, security, access, permission, capability
|
5 |
Requires at least: 3.5
|
6 |
+
Tested up to: 3.9
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
60 |
2. screenshot-2.png Add/Remove roles or capabilities
|
61 |
3. screenshot-3.png User Capabilities link
|
62 |
4. screenshot-4.png User Capabilities Editor
|
63 |
+
5. screenshot-5.png Bulk change role for users without roles
|
64 |
|
65 |
To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/user-role-editor-wordpress-plugin/) at [shinephp.com](shinephp.com).
|
66 |
|
79 |
|
80 |
|
81 |
== Changelog ==
|
82 |
+
= 4.11 =
|
83 |
+
* 06.04.2014
|
84 |
+
* Single-site: It is possible to bulk move users without role (--No role for this site--) to the selected role or automatically created role "No rights" without any capabilities. Get more details at http://role-editor.com/no-role-for-this-site/
|
85 |
+
* Plugin uses for dialogs jQuery UI CSS included into WordPress package.
|
86 |
+
* Pro version: It is possible to restrict editing posts/pages by its authors user ID (targeted user should have edit_others_posts or edit_others_pages capability).
|
87 |
+
* Pro version, multi-site: Superadmin can setup individual lists of themes available for activation to selected sites administrators.
|
88 |
+
* Pro version, Gravity Forms access restriction module was tested and compatible with Gravity Forms version 1.8.5
|
89 |
+
|
90 |
= 4.10 =
|
91 |
* 15.02.2014
|
92 |
* Security enhancement: WordPress text translation functions were replaced with more secure esc_html__() and esc_html_e() variants.
|
screenshot-5.png
ADDED
Binary file
|
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
|
@@ -23,7 +23,7 @@ if (defined('URE_PLUGIN_URL')) {
|
|
23 |
wp_die('It seems that other version of User Role Editor is active. Please deactivate it before use this version');
|
24 |
}
|
25 |
|
26 |
-
define('URE_VERSION', '4.
|
27 |
define('URE_PLUGIN_URL', plugin_dir_url(__FILE__));
|
28 |
define('URE_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
29 |
define('URE_PLUGIN_FILE', basename(__FILE__));
|
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.11
|
7 |
Author: Vladimir Garagulya
|
8 |
Author URI: http://www.shinephp.com
|
9 |
Text Domain: ure
|
23 |
wp_die('It seems that other version of User Role Editor is active. Please deactivate it before use this version');
|
24 |
}
|
25 |
|
26 |
+
define('URE_VERSION', '4.11');
|
27 |
define('URE_PLUGIN_URL', plugin_dir_url(__FILE__));
|
28 |
define('URE_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
29 |
define('URE_PLUGIN_FILE', basename(__FILE__));
|