Version Description
- 01.10.2014
- Multisite (update for cases when URE was not network activated): It is possible to use own settings for single site activated instances of User Role Editor. Earlier User Role Editor used the settings values from the main blog only located under "Network Admin - Settings". Some critical options were hidden from the "Multisite" tab for single site administrators and visible to the superadmin only. Single site admin should not have access to the options which purpose is to restrict him. Important! In case you decide to allow single site administrator activate/deactivate User Role Editor himself, setup this PHP constant at the wp-config.php file: define('URE_ENABLE_SIMPLE_ADMIN_FOR_MULTISITE', 1); Otherwise single site admin will not see User Role Editor in the plugins list after its activation. User Role Editor hides itself under multisite from all users except superadmin by default.
- Help screen for the Settings page was updated.
- Hungarian translation was added. Thanks to Nmeth Balzs.
- Dutch translation was added. Thanks to Arjan Bosch.
Download this release
Release Info
Developer | shinephp |
Plugin | User Role Editor |
Version | 4.17 |
Comparing to | |
See all releases |
Code changes from version 4.16 to 4.17
- includes/class-garvs-wp-lib.php +3 -2
- includes/class-ure-lib.php +35 -19
- includes/class-ure-screen-help.php +71 -11
- includes/class-user-role-editor.php +66 -50
- includes/settings-template.php +32 -10
- includes/ure-role-edit.php +2 -2
- lang/ure-es_ES.mo +0 -0
- lang/ure-es_ES.po +197 -178
- lang/ure-fa_IR.mo +0 -0
- lang/ure-fa_IR.po +210 -179
- lang/ure-he_IL.mo +0 -0
- lang/ure-he_IL.po +201 -182
- lang/ure-hu_HU.mo +0 -0
- lang/ure-hu_HU.po +879 -0
- lang/ure-id_ID.mo +0 -0
- lang/ure-id_ID.po +206 -180
- lang/ure-nl.mo +0 -0
- lang/ure-nl.po +883 -0
- lang/ure-ru_RU.mo +0 -0
- lang/ure-ru_RU.po +212 -181
- lang/ure-tr_TR.mo +0 -0
- lang/ure-tr_TR.po +197 -178
- lang/ure.mo +0 -0
- lang/ure.pot +196 -178
- readme.txt +25 -48
- user-role-editor.php +3 -2
includes/class-garvs-wp-lib.php
CHANGED
@@ -16,7 +16,8 @@ class Garvs_WP_Lib {
|
|
16 |
private static $instance = null; // object exemplar reference
|
17 |
protected $options_id = ''; // identifire to save/retrieve plugin options to/from wp_option DB table
|
18 |
protected $options = array(); // plugin options data
|
19 |
-
public $multisite = false;
|
|
|
20 |
public $blog_ids = null;
|
21 |
protected $main_blog_id = 0;
|
22 |
public $log_to_file = false; // set to true in order to record data about critical actions to log file
|
@@ -29,7 +30,7 @@ class Garvs_WP_Lib {
|
|
29 |
public function __construct($options_id) {
|
30 |
|
31 |
$this->multisite = function_exists('is_multisite') && is_multisite();
|
32 |
-
if ($this->multisite) {
|
33 |
$this->blog_ids = $this->get_blog_ids();
|
34 |
// get Id of 1st (main) blog
|
35 |
$this->main_blog_id = $this->blog_ids[0][0];
|
16 |
private static $instance = null; // object exemplar reference
|
17 |
protected $options_id = ''; // identifire to save/retrieve plugin options to/from wp_option DB table
|
18 |
protected $options = array(); // plugin options data
|
19 |
+
public $multisite = false;
|
20 |
+
public $active_for_network = false;
|
21 |
public $blog_ids = null;
|
22 |
protected $main_blog_id = 0;
|
23 |
public $log_to_file = false; // set to true in order to record data about critical actions to log file
|
30 |
public function __construct($options_id) {
|
31 |
|
32 |
$this->multisite = function_exists('is_multisite') && is_multisite();
|
33 |
+
if ($this->multisite) {
|
34 |
$this->blog_ids = $this->get_blog_ids();
|
35 |
// get Id of 1st (main) blog
|
36 |
$this->main_blog_id = $this->blog_ids[0][0];
|
includes/class-ure-lib.php
CHANGED
@@ -17,7 +17,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
17 |
public $notification = ''; // notification message to show on page
|
18 |
public $apply_to_all = 0;
|
19 |
public $user_to_check = array(); // cached list of user IDs, who has Administrator role
|
20 |
-
|
21 |
protected $capabilities_to_save = null;
|
22 |
protected $current_role = '';
|
23 |
protected $wp_default_role = '';
|
@@ -43,12 +43,21 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
43 |
*/
|
44 |
public function __construct($options_id) {
|
45 |
|
46 |
-
parent::__construct($options_id);
|
47 |
-
|
48 |
|
49 |
}
|
50 |
// end of __construct()
|
51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
|
53 |
/**
|
54 |
* get options for User Role Editor plugin
|
@@ -59,17 +68,23 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
59 |
|
60 |
global $wpdb;
|
61 |
|
|
|
|
|
|
|
62 |
$current_blog = $wpdb->blogid;
|
63 |
-
if ($this->multisite && $current_blog!=$this->main_blog_id) {
|
64 |
-
|
|
|
|
|
65 |
}
|
66 |
|
67 |
$this->options_id = $options_id;
|
68 |
$this->options = get_option($options_id);
|
69 |
|
70 |
if ($this->multisite && $current_blog!=$this->main_blog_id) {
|
71 |
-
// return back to the current blog
|
72 |
-
|
|
|
73 |
}
|
74 |
|
75 |
}
|
@@ -83,9 +98,9 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
83 |
|
84 |
global $wpdb;
|
85 |
|
86 |
-
|
87 |
-
|
88 |
-
if ($
|
89 |
switch_to_blog($this->main_blog_id); // in order to save URE options to the main blog
|
90 |
}
|
91 |
}
|
@@ -93,8 +108,9 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
93 |
update_option($this->options_id, $this->options);
|
94 |
|
95 |
if ($this->multisite && $current_blog!==$this->main_blog_id) {
|
96 |
-
// return back to the current blog
|
97 |
-
|
|
|
98 |
}
|
99 |
|
100 |
}
|
@@ -150,7 +166,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
150 |
|
151 |
protected function advertisement() {
|
152 |
|
153 |
-
if (
|
154 |
$this->advert = new ure_Advertisement();
|
155 |
$this->advert->display();
|
156 |
}
|
@@ -271,7 +287,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
271 |
|
272 |
// content of User Role Editor Pro advertisement slot - for direct call
|
273 |
protected function advertise_pro_version() {
|
274 |
-
if (
|
275 |
return;
|
276 |
}
|
277 |
?>
|
@@ -295,7 +311,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
295 |
<?php
|
296 |
|
297 |
}
|
298 |
-
// end of
|
299 |
|
300 |
|
301 |
// validate information about user we intend to edit
|
@@ -523,7 +539,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
523 |
|
524 |
$this->init_full_capabilities();
|
525 |
|
526 |
-
if (
|
527 |
require_once(URE_PLUGIN_DIR . 'includes/class-advertisement.php');
|
528 |
}
|
529 |
|
@@ -1021,7 +1037,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1021 |
*/
|
1022 |
protected function block_cap_for_single_admin($capability, $ignore_super_admin=false) {
|
1023 |
|
1024 |
-
if (
|
1025 |
return false;
|
1026 |
}
|
1027 |
|
@@ -2262,7 +2278,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2262 |
|
2263 |
|
2264 |
public function about() {
|
2265 |
-
if (
|
2266 |
return;
|
2267 |
}
|
2268 |
|
17 |
public $notification = ''; // notification message to show on page
|
18 |
public $apply_to_all = 0;
|
19 |
public $user_to_check = array(); // cached list of user IDs, who has Administrator role
|
20 |
+
|
21 |
protected $capabilities_to_save = null;
|
22 |
protected $current_role = '';
|
23 |
protected $wp_default_role = '';
|
43 |
*/
|
44 |
public function __construct($options_id) {
|
45 |
|
46 |
+
parent::__construct($options_id);
|
|
|
47 |
|
48 |
}
|
49 |
// end of __construct()
|
50 |
+
|
51 |
+
|
52 |
+
/**
|
53 |
+
* Is this the Pro version?
|
54 |
+
* @return boolean
|
55 |
+
*/
|
56 |
+
public function is_pro() {
|
57 |
+
return false;
|
58 |
+
}
|
59 |
+
// end of is_pro()
|
60 |
+
|
61 |
|
62 |
/**
|
63 |
* get options for User Role Editor plugin
|
68 |
|
69 |
global $wpdb;
|
70 |
|
71 |
+
if ($this->multisite) {
|
72 |
+
$this->active_for_network = is_plugin_active_for_network(URE_PLUGIN_BASE_NAME);
|
73 |
+
}
|
74 |
$current_blog = $wpdb->blogid;
|
75 |
+
if ($this->multisite && $current_blog!=$this->main_blog_id) {
|
76 |
+
if ($this->active_for_network) { // plugin is active for whole network, so get URE options from the main blog
|
77 |
+
switch_to_blog($this->main_blog_id);
|
78 |
+
}
|
79 |
}
|
80 |
|
81 |
$this->options_id = $options_id;
|
82 |
$this->options = get_option($options_id);
|
83 |
|
84 |
if ($this->multisite && $current_blog!=$this->main_blog_id) {
|
85 |
+
if ($this->active_for_network) { // plugin is active for whole network, so return back to the current blog
|
86 |
+
restore_current_blog();
|
87 |
+
}
|
88 |
}
|
89 |
|
90 |
}
|
98 |
|
99 |
global $wpdb;
|
100 |
|
101 |
+
$current_blog = $wpdb->blogid;
|
102 |
+
if ($this->multisite && $current_blog!==$this->main_blog_id) {
|
103 |
+
if ($this->active_for_network) { // plugin is active for whole network, so get URE options from the main blog
|
104 |
switch_to_blog($this->main_blog_id); // in order to save URE options to the main blog
|
105 |
}
|
106 |
}
|
108 |
update_option($this->options_id, $this->options);
|
109 |
|
110 |
if ($this->multisite && $current_blog!==$this->main_blog_id) {
|
111 |
+
if ($this->active_for_network) { // plugin is active for whole network, so return back to the current blog
|
112 |
+
restore_current_blog();
|
113 |
+
}
|
114 |
}
|
115 |
|
116 |
}
|
166 |
|
167 |
protected function advertisement() {
|
168 |
|
169 |
+
if (!$this->is_pro()) {
|
170 |
$this->advert = new ure_Advertisement();
|
171 |
$this->advert->display();
|
172 |
}
|
287 |
|
288 |
// content of User Role Editor Pro advertisement slot - for direct call
|
289 |
protected function advertise_pro_version() {
|
290 |
+
if ($this->is_pro()) {
|
291 |
return;
|
292 |
}
|
293 |
?>
|
311 |
<?php
|
312 |
|
313 |
}
|
314 |
+
// end of advertise_pro_version()
|
315 |
|
316 |
|
317 |
// validate information about user we intend to edit
|
539 |
|
540 |
$this->init_full_capabilities();
|
541 |
|
542 |
+
if (!$this->is_pro()) {
|
543 |
require_once(URE_PLUGIN_DIR . 'includes/class-advertisement.php');
|
544 |
}
|
545 |
|
1037 |
*/
|
1038 |
protected function block_cap_for_single_admin($capability, $ignore_super_admin=false) {
|
1039 |
|
1040 |
+
if (!$this->is_pro()) { // this functionality is for the Pro version only.
|
1041 |
return false;
|
1042 |
}
|
1043 |
|
2278 |
|
2279 |
|
2280 |
public function about() {
|
2281 |
+
if ($this->is_pro()) {
|
2282 |
return;
|
2283 |
}
|
2284 |
|
includes/class-ure-screen-help.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
|
8 |
class URE_Screen_Help {
|
9 |
|
10 |
-
protected function
|
11 |
|
12 |
$text = '<h2>User Role Editor Options page help</h2>
|
13 |
<p>
|
@@ -22,26 +22,86 @@ class URE_Screen_Help {
|
|
22 |
esc_html__('Capabilities like "level_0", "level_1" are deprecated and are not used by WordPress. '
|
23 |
. 'They are left at the user roles for the compatibility purpose with the old themes and plugins code. '
|
24 |
. 'Turning on this option will show those deprecated capabilities.', 'ure') . '</li>';
|
25 |
-
|
26 |
-
|
27 |
-
<li><strong>' . esc_html__('Allow create, edit and delete users to not super-admininstrators', 'ure').'</strong> - ' .
|
28 |
-
esc_html__('Super administrator only may create, edit and delete users under WordPress multi-site. '
|
29 |
-
. 'Turn this option on in order to remove this limitation.','ure') . '</li>';
|
30 |
-
}
|
31 |
-
$text = apply_filters('ure_get_settings_overview_tab_help', $text);
|
32 |
$text .='
|
33 |
</ul>
|
34 |
</p>';
|
35 |
|
36 |
return $text;
|
37 |
}
|
38 |
-
// end of
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
|
40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
public function get_settings_help($tab_name) {
|
42 |
switch ($tab_name) {
|
43 |
-
case '
|
44 |
-
$text = $this->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
break;
|
46 |
}
|
47 |
default:
|
7 |
|
8 |
class URE_Screen_Help {
|
9 |
|
10 |
+
protected function get_general_tab() {
|
11 |
|
12 |
$text = '<h2>User Role Editor Options page help</h2>
|
13 |
<p>
|
22 |
esc_html__('Capabilities like "level_0", "level_1" are deprecated and are not used by WordPress. '
|
23 |
. 'They are left at the user roles for the compatibility purpose with the old themes and plugins code. '
|
24 |
. 'Turning on this option will show those deprecated capabilities.', 'ure') . '</li>';
|
25 |
+
|
26 |
+
$text = apply_filters('ure_get_settings_general_tab_help', $text);
|
|
|
|
|
|
|
|
|
|
|
27 |
$text .='
|
28 |
</ul>
|
29 |
</p>';
|
30 |
|
31 |
return $text;
|
32 |
}
|
33 |
+
// end of get_general_tab()
|
34 |
+
|
35 |
+
|
36 |
+
protected function get_additional_modules_tab() {
|
37 |
+
$text = '<h2>User Role Editor Options page help</h2>
|
38 |
+
<p>
|
39 |
+
<ul>
|
40 |
+
<li><strong>' . esc_html__('Count users without role', 'ure').'</strong> - ' .
|
41 |
+
esc_html__('select roles below','ure') . '</li>';
|
42 |
+
$text = apply_filters('ure_get_settings_additional_modules_tab_help', $text);
|
43 |
+
$text .='
|
44 |
+
</ul>
|
45 |
+
</p>';
|
46 |
+
|
47 |
+
return $text;
|
48 |
+
}
|
49 |
+
// end of get_additional_modules_tab()
|
50 |
+
|
51 |
+
|
52 |
+
protected function get_default_roles_tab() {
|
53 |
+
$text = '<h2>User Role Editor Options page help</h2>
|
54 |
+
<p>
|
55 |
+
<ul>
|
56 |
+
<li><strong>' . esc_html__('Other default roles for new registered user', 'ure').'</strong> - ' .
|
57 |
+
esc_html__('select roles below to assign them to the new user automatically as an addition to the primary role. '.
|
58 |
+
'Note for multisite environment: take into account that other default roles should exist at the site, '.
|
59 |
+
'in order to be assigned to the new registered users.','ure') . '</li>';
|
60 |
+
|
61 |
+
$text = apply_filters('ure_get_settings_default_roles_tab_help', $text);
|
62 |
+
$text .='
|
63 |
+
</ul>
|
64 |
+
</p>';
|
65 |
+
|
66 |
+
return $text;
|
67 |
+
}
|
68 |
+
// end of get_default_roles_tab()
|
69 |
|
70 |
|
71 |
+
protected function get_multisite_tab() {
|
72 |
+
$text = '<h2>User Role Editor Options page help</h2>
|
73 |
+
<p>
|
74 |
+
<ul>
|
75 |
+
<li><strong>' . esc_html__('Allow non super-admininstrators to create, edit and delete users', 'ure').'</strong> - ' .
|
76 |
+
esc_html__('Super administrator only may create, edit and delete users under WordPress multi-site by default. '
|
77 |
+
. 'Turn this option on in order to remove this limitation.','ure') . '</li>';
|
78 |
+
|
79 |
+
$text = apply_filters('ure_get_settings_multisite_tab_help', $text);
|
80 |
+
$text .='
|
81 |
+
</ul>
|
82 |
+
</p>';
|
83 |
+
|
84 |
+
return $text;
|
85 |
+
}
|
86 |
+
// end of get_multisite_tab()
|
87 |
+
|
88 |
+
|
89 |
public function get_settings_help($tab_name) {
|
90 |
switch ($tab_name) {
|
91 |
+
case 'general':{
|
92 |
+
$text = $this->get_general_tab();
|
93 |
+
break;
|
94 |
+
}
|
95 |
+
case 'additional_modules':{
|
96 |
+
$text = $this->get_additional_modules_tab();
|
97 |
+
break;
|
98 |
+
}
|
99 |
+
case 'default_roles':{
|
100 |
+
$text = $this->get_default_roles_tab();
|
101 |
+
break;
|
102 |
+
}
|
103 |
+
case 'multisite':{
|
104 |
+
$text = $this->get_multisite_tab();
|
105 |
break;
|
106 |
}
|
107 |
default:
|
includes/class-user-role-editor.php
CHANGED
@@ -11,6 +11,7 @@
|
|
11 |
class User_Role_Editor {
|
12 |
// common code staff, including options data processor
|
13 |
protected $lib = null;
|
|
|
14 |
// plugin's Settings page reference, we've got it from add_options_pages() call
|
15 |
protected $setting_page_hook = null;
|
16 |
// URE's key capability
|
@@ -24,7 +25,9 @@ class User_Role_Editor {
|
|
24 |
*/
|
25 |
function __construct($library) {
|
26 |
|
27 |
-
|
|
|
|
|
28 |
$this->ure_hook_suffixes = array('settings_page_settings-user-role-editor-pro', 'users_page_users-user-role-editor-pro');
|
29 |
} else {
|
30 |
$this->ure_hook_suffixes = array('settings_page_settings-user-role-editor', 'users_page_users-user-role-editor');
|
@@ -35,10 +38,7 @@ class User_Role_Editor {
|
|
35 |
|
36 |
// deactivation action
|
37 |
register_deactivation_hook(URE_PLUGIN_FULL_PATH, array($this, 'cleanup'));
|
38 |
-
|
39 |
-
// get plugin specific library object
|
40 |
-
$this->lib = $library;
|
41 |
-
|
42 |
// Who may use this plugin
|
43 |
$this->key_capability = $this->lib->get_key_capability();
|
44 |
|
@@ -67,7 +67,7 @@ class User_Role_Editor {
|
|
67 |
|
68 |
|
69 |
// add a Settings link in the installed plugins page
|
70 |
-
add_filter('
|
71 |
|
72 |
add_filter('plugin_row_meta', array($this, 'plugin_row_meta'), 10, 2);
|
73 |
|
@@ -75,7 +75,7 @@ class User_Role_Editor {
|
|
75 |
// end of __construct()
|
76 |
|
77 |
|
78 |
-
|
79 |
* Plugin initialization
|
80 |
*
|
81 |
*/
|
@@ -356,24 +356,23 @@ class User_Role_Editor {
|
|
356 |
* @global wpdb $wpdb
|
357 |
* @param type $user_query
|
358 |
*/
|
359 |
-
public function exclude_administrators($user_query)
|
360 |
-
{
|
361 |
|
362 |
global $wpdb;
|
363 |
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
// get user_id of users with 'Administrator' role
|
378 |
$tableName = (!$this->lib->multisite && defined('CUSTOM_USER_META_TABLE')) ? CUSTOM_USER_META_TABLE : $wpdb->usermeta;
|
379 |
$meta_key = $wpdb->prefix . 'capabilities';
|
@@ -388,8 +387,8 @@ class User_Role_Editor {
|
|
388 |
}
|
389 |
}
|
390 |
// end of exclude_administrators()
|
391 |
-
|
392 |
-
|
393 |
/*
|
394 |
* Exclude view of users with Administrator role
|
395 |
*
|
@@ -412,22 +411,22 @@ class User_Role_Editor {
|
|
412 |
* @param type $user
|
413 |
* @return string
|
414 |
*/
|
415 |
-
|
416 |
-
{
|
417 |
|
418 |
-
|
419 |
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
|
|
|
|
|
|
426 |
}
|
427 |
|
428 |
-
|
429 |
-
}
|
430 |
-
// end of user_row()
|
431 |
|
432 |
|
433 |
/**
|
@@ -503,24 +502,20 @@ class User_Role_Editor {
|
|
503 |
}
|
504 |
// end of ure_load_translation()
|
505 |
|
|
|
506 |
/**
|
507 |
-
* Modify plugin
|
508 |
*
|
509 |
* @param array $links
|
510 |
-
* @param string $file
|
511 |
* @return array
|
512 |
*/
|
513 |
-
public function plugin_action_links($links
|
514 |
-
{
|
515 |
|
516 |
-
|
517 |
-
|
518 |
-
array_unshift($links, $settings_link);
|
519 |
-
}
|
520 |
|
521 |
return $links;
|
522 |
}
|
523 |
-
|
524 |
// end of plugin_action_links()
|
525 |
|
526 |
|
@@ -548,9 +543,26 @@ class User_Role_Editor {
|
|
548 |
}
|
549 |
$screen_help = new Ure_Screen_Help();
|
550 |
$screen->add_help_tab( array(
|
551 |
-
'id' => '
|
552 |
-
'title' => esc_html__('
|
553 |
-
'content' => $screen_help->get_settings_help('
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
554 |
));
|
555 |
}
|
556 |
// end of settings_screen_configure()
|
@@ -570,7 +582,7 @@ class User_Role_Editor {
|
|
570 |
add_action("admin_print_styles-$ure_page", array($this, 'admin_css_action'));
|
571 |
}
|
572 |
|
573 |
-
if (!$this->lib->multisite) {
|
574 |
$this->settings_page_hook = add_options_page(
|
575 |
$translated_title,
|
576 |
$translated_title,
|
@@ -755,11 +767,15 @@ class User_Role_Editor {
|
|
755 |
|
756 |
do_action('ure_settings_load');
|
757 |
|
758 |
-
if ($this->lib->multisite) {
|
759 |
$link = 'settings.php';
|
760 |
} else {
|
761 |
$link = 'options-general.php';
|
762 |
}
|
|
|
|
|
|
|
|
|
763 |
require_once(URE_PLUGIN_DIR . 'includes/settings-template.php');
|
764 |
}
|
765 |
// end of settings()
|
11 |
class User_Role_Editor {
|
12 |
// common code staff, including options data processor
|
13 |
protected $lib = null;
|
14 |
+
|
15 |
// plugin's Settings page reference, we've got it from add_options_pages() call
|
16 |
protected $setting_page_hook = null;
|
17 |
// URE's key capability
|
25 |
*/
|
26 |
function __construct($library) {
|
27 |
|
28 |
+
// get plugin specific library object
|
29 |
+
$this->lib = $library;
|
30 |
+
if ($this->lib->is_pro()) {
|
31 |
$this->ure_hook_suffixes = array('settings_page_settings-user-role-editor-pro', 'users_page_users-user-role-editor-pro');
|
32 |
} else {
|
33 |
$this->ure_hook_suffixes = array('settings_page_settings-user-role-editor', 'users_page_users-user-role-editor');
|
38 |
|
39 |
// deactivation action
|
40 |
register_deactivation_hook(URE_PLUGIN_FULL_PATH, array($this, 'cleanup'));
|
41 |
+
|
|
|
|
|
|
|
42 |
// Who may use this plugin
|
43 |
$this->key_capability = $this->lib->get_key_capability();
|
44 |
|
67 |
|
68 |
|
69 |
// add a Settings link in the installed plugins page
|
70 |
+
add_filter('plugin_action_links_'. URE_PLUGIN_BASE_NAME, array($this, 'plugin_action_links'), 10, 1);
|
71 |
|
72 |
add_filter('plugin_row_meta', array($this, 'plugin_row_meta'), 10, 2);
|
73 |
|
75 |
// end of __construct()
|
76 |
|
77 |
|
78 |
+
/**
|
79 |
* Plugin initialization
|
80 |
*
|
81 |
*/
|
356 |
* @global wpdb $wpdb
|
357 |
* @param type $user_query
|
358 |
*/
|
359 |
+
public function exclude_administrators($user_query) {
|
|
|
360 |
|
361 |
global $wpdb;
|
362 |
|
363 |
+
$result = false;
|
364 |
+
$links_to_block = array('profile.php', 'users.php');
|
365 |
+
foreach ($links_to_block as $key => $value) {
|
366 |
+
$result = stripos($_SERVER['REQUEST_URI'], $value);
|
367 |
+
if ($result !== false) {
|
368 |
+
break;
|
369 |
+
}
|
370 |
+
}
|
371 |
+
|
372 |
+
if ($result === false) { // block the user edit stuff only
|
373 |
+
return;
|
374 |
+
}
|
375 |
+
|
376 |
// get user_id of users with 'Administrator' role
|
377 |
$tableName = (!$this->lib->multisite && defined('CUSTOM_USER_META_TABLE')) ? CUSTOM_USER_META_TABLE : $wpdb->usermeta;
|
378 |
$meta_key = $wpdb->prefix . 'capabilities';
|
387 |
}
|
388 |
}
|
389 |
// end of exclude_administrators()
|
390 |
+
|
391 |
+
|
392 |
/*
|
393 |
* Exclude view of users with Administrator role
|
394 |
*
|
411 |
* @param type $user
|
412 |
* @return string
|
413 |
*/
|
414 |
+
public function user_row($actions, $user) {
|
|
|
415 |
|
416 |
+
global $pagenow, $current_user;
|
417 |
|
418 |
+
if ($pagenow == 'users.php') {
|
419 |
+
if ($current_user->has_cap($this->key_capability)) {
|
420 |
+
$actions['capabilities'] = '<a href="' .
|
421 |
+
wp_nonce_url("users.php?page=users-" . URE_PLUGIN_FILE . "&object=user&user_id={$user->ID}", "ure_user_{$user->ID}") .
|
422 |
+
'">' . esc_html__('Capabilities', 'ure') . '</a>';
|
423 |
+
}
|
424 |
+
}
|
425 |
+
|
426 |
+
return $actions;
|
427 |
}
|
428 |
|
429 |
+
// end of user_row()
|
|
|
|
|
430 |
|
431 |
|
432 |
/**
|
502 |
}
|
503 |
// end of ure_load_translation()
|
504 |
|
505 |
+
|
506 |
/**
|
507 |
+
* Modify plugin action links
|
508 |
*
|
509 |
* @param array $links
|
|
|
510 |
* @return array
|
511 |
*/
|
512 |
+
public function plugin_action_links($links) {
|
|
|
513 |
|
514 |
+
$settings_link = "<a href='options-general.php?page=settings-" . URE_PLUGIN_FILE . "'>" . esc_html__('Settings', 'ure') . "</a>";
|
515 |
+
array_unshift($links, $settings_link);
|
|
|
|
|
516 |
|
517 |
return $links;
|
518 |
}
|
|
|
519 |
// end of plugin_action_links()
|
520 |
|
521 |
|
543 |
}
|
544 |
$screen_help = new Ure_Screen_Help();
|
545 |
$screen->add_help_tab( array(
|
546 |
+
'id' => 'general',
|
547 |
+
'title' => esc_html__('General'),
|
548 |
+
'content' => $screen_help->get_settings_help('general')
|
549 |
+
));
|
550 |
+
if ($this->lib->pro || !$this->lib->multisite) {
|
551 |
+
$screen->add_help_tab( array(
|
552 |
+
'id' => 'additional_modules',
|
553 |
+
'title' => esc_html__('Additional Modules'),
|
554 |
+
'content' => $screen_help->get_settings_help('additional_modules')
|
555 |
+
));
|
556 |
+
}
|
557 |
+
$screen->add_help_tab( array(
|
558 |
+
'id' => 'default_roles',
|
559 |
+
'title' => esc_html__('Default Roles'),
|
560 |
+
'content' => $screen_help->get_settings_help('default_roles')
|
561 |
+
));
|
562 |
+
$screen->add_help_tab( array(
|
563 |
+
'id' => 'multisite',
|
564 |
+
'title' => esc_html__('Multisite'),
|
565 |
+
'content' => $screen_help->get_settings_help('multisite')
|
566 |
));
|
567 |
}
|
568 |
// end of settings_screen_configure()
|
582 |
add_action("admin_print_styles-$ure_page", array($this, 'admin_css_action'));
|
583 |
}
|
584 |
|
585 |
+
if ( !$this->lib->multisite || ($this->lib->multisite && !$this->lib->active_for_network) ) {
|
586 |
$this->settings_page_hook = add_options_page(
|
587 |
$translated_title,
|
588 |
$translated_title,
|
767 |
|
768 |
do_action('ure_settings_load');
|
769 |
|
770 |
+
if ($this->lib->multisite && is_network_admin()) {
|
771 |
$link = 'settings.php';
|
772 |
} else {
|
773 |
$link = 'options-general.php';
|
774 |
}
|
775 |
+
|
776 |
+
$license_key_only = $this->lib->multisite && is_network_admin() && !$this->lib->active_for_network;
|
777 |
+
|
778 |
+
|
779 |
require_once(URE_PLUGIN_DIR . 'includes/settings-template.php');
|
780 |
}
|
781 |
// end of settings()
|
includes/settings-template.php
CHANGED
@@ -19,14 +19,22 @@
|
|
19 |
<div id="ure_tabs" style="clear: left;">
|
20 |
<ul>
|
21 |
<li><a href="#ure_tabs-1"><?php esc_html_e('General', 'ure');?></a></li>
|
22 |
-
<li><a href="#ure_tabs-2"><?php esc_html_e('Additional Modules', 'ure');?></a></li>
|
23 |
-
<li><a href="#ure_tabs-3"><?php esc_html_e('Default Roles', 'ure');?></a></li>
|
24 |
<?php
|
25 |
-
|
|
|
26 |
?>
|
27 |
-
<li><a href="#ure_tabs-
|
28 |
-
<?php
|
29 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
?>
|
31 |
<li><a href="#ure_tabs-5"><?php esc_html_e('About', 'ure');?></a></li>
|
32 |
</ul>
|
@@ -34,6 +42,9 @@
|
|
34 |
<div id="ure-settings-form">
|
35 |
<form method="post" action="<?php echo $link; ?>?page=settings-<?php echo URE_PLUGIN_FILE; ?>" >
|
36 |
<table id="ure_settings">
|
|
|
|
|
|
|
37 |
<tr>
|
38 |
<td>
|
39 |
<input type="checkbox" name="show_admin_role" id="show_admin_role" value="1"
|
@@ -58,8 +69,9 @@
|
|
58 |
<label for="show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities', 'ure'); ?></label></td>
|
59 |
<td>
|
60 |
</td>
|
61 |
-
</tr>
|
62 |
<?php
|
|
|
63 |
do_action('ure_settings_show1');
|
64 |
?>
|
65 |
</table>
|
@@ -72,6 +84,10 @@
|
|
72 |
</form>
|
73 |
</div>
|
74 |
</div> <!-- ure_tabs-1 -->
|
|
|
|
|
|
|
|
|
75 |
|
76 |
<div id="ure_tabs-2">
|
77 |
<form name="ure_additional_modules" method="post" action="<?php echo $link; ?>?page=settings-<?php echo URE_PLUGIN_FILE; ?>" >
|
@@ -102,7 +118,9 @@ if (!$this->lib->multisite) {
|
|
102 |
|
103 |
</form>
|
104 |
</div>
|
105 |
-
|
|
|
|
|
106 |
|
107 |
<div id="ure_tabs-3">
|
108 |
<form name="ure_default_roles" method="post" action="<?php echo $link; ?>?page=settings-<?php echo URE_PLUGIN_FILE; ?>" >
|
@@ -134,12 +152,15 @@ if (!$this->lib->multisite) {
|
|
134 |
</div> <!-- ure_tabs-3 -->
|
135 |
|
136 |
<?php
|
137 |
-
if ($this->lib->multisite) {
|
138 |
?>
|
139 |
<div id="ure_tabs-4">
|
140 |
<div id="ure-settings-form-ms">
|
141 |
<form name="ure_settings_ms" method="post" action="<?php echo $link; ?>?page=settings-<?php echo URE_PLUGIN_FILE; ?>" >
|
142 |
<table id="ure_settings_ms">
|
|
|
|
|
|
|
143 |
<tr>
|
144 |
<td>
|
145 |
<input type="checkbox" name="allow_edit_users_to_not_super_admin" id="allow_edit_users_to_not_super_admin" value="1"
|
@@ -148,9 +169,9 @@ if (!$this->lib->multisite) {
|
|
148 |
</td>
|
149 |
<td>
|
150 |
</td>
|
151 |
-
</tr>
|
152 |
-
|
153 |
<?php
|
|
|
154 |
do_action('ure_settings_ms_show');
|
155 |
?>
|
156 |
</table>
|
@@ -164,6 +185,7 @@ if (!$this->lib->multisite) {
|
|
164 |
</div> <!-- ure_tabs-4 -->
|
165 |
<?php
|
166 |
}
|
|
|
167 |
?>
|
168 |
<div id="ure_tabs-5">
|
169 |
<?php $this->lib->about(); ?>
|
19 |
<div id="ure_tabs" style="clear: left;">
|
20 |
<ul>
|
21 |
<li><a href="#ure_tabs-1"><?php esc_html_e('General', 'ure');?></a></li>
|
|
|
|
|
22 |
<?php
|
23 |
+
if (!$license_key_only) {
|
24 |
+
if ($this->lib->is_pro() || !$this->lib->multisite) {
|
25 |
?>
|
26 |
+
<li><a href="#ure_tabs-2"><?php esc_html_e('Additional Modules', 'ure'); ?></a></li>
|
27 |
+
<?php
|
28 |
}
|
29 |
+
?>
|
30 |
+
<li><a href="#ure_tabs-3"><?php esc_html_e('Default Roles', 'ure'); ?></a></li>
|
31 |
+
<?php
|
32 |
+
if ( $this->lib->multisite && ($this->lib->is_pro() || is_super_admin()) ) {
|
33 |
+
?>
|
34 |
+
<li><a href="#ure_tabs-4"><?php esc_html_e('Multisite', 'ure'); ?></a></li>
|
35 |
+
<?php
|
36 |
+
}
|
37 |
+
}
|
38 |
?>
|
39 |
<li><a href="#ure_tabs-5"><?php esc_html_e('About', 'ure');?></a></li>
|
40 |
</ul>
|
42 |
<div id="ure-settings-form">
|
43 |
<form method="post" action="<?php echo $link; ?>?page=settings-<?php echo URE_PLUGIN_FILE; ?>" >
|
44 |
<table id="ure_settings">
|
45 |
+
<?php
|
46 |
+
if (!$license_key_only) {
|
47 |
+
?>
|
48 |
<tr>
|
49 |
<td>
|
50 |
<input type="checkbox" name="show_admin_role" id="show_admin_role" value="1"
|
69 |
<label for="show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities', 'ure'); ?></label></td>
|
70 |
<td>
|
71 |
</td>
|
72 |
+
</tr>
|
73 |
<?php
|
74 |
+
}
|
75 |
do_action('ure_settings_show1');
|
76 |
?>
|
77 |
</table>
|
84 |
</form>
|
85 |
</div>
|
86 |
</div> <!-- ure_tabs-1 -->
|
87 |
+
<?php
|
88 |
+
if (!$license_key_only) {
|
89 |
+
if ($this->lib->is_pro() || !$this->lib->multisite) {
|
90 |
+
?>
|
91 |
|
92 |
<div id="ure_tabs-2">
|
93 |
<form name="ure_additional_modules" method="post" action="<?php echo $link; ?>?page=settings-<?php echo URE_PLUGIN_FILE; ?>" >
|
118 |
|
119 |
</form>
|
120 |
</div>
|
121 |
+
<?php
|
122 |
+
}
|
123 |
+
?>
|
124 |
|
125 |
<div id="ure_tabs-3">
|
126 |
<form name="ure_default_roles" method="post" action="<?php echo $link; ?>?page=settings-<?php echo URE_PLUGIN_FILE; ?>" >
|
152 |
</div> <!-- ure_tabs-3 -->
|
153 |
|
154 |
<?php
|
155 |
+
if ( $this->lib->multisite && ($this->lib->is_pro() || is_super_admin())) {
|
156 |
?>
|
157 |
<div id="ure_tabs-4">
|
158 |
<div id="ure-settings-form-ms">
|
159 |
<form name="ure_settings_ms" method="post" action="<?php echo $link; ?>?page=settings-<?php echo URE_PLUGIN_FILE; ?>" >
|
160 |
<table id="ure_settings_ms">
|
161 |
+
<?php
|
162 |
+
if (is_super_admin()) {
|
163 |
+
?>
|
164 |
<tr>
|
165 |
<td>
|
166 |
<input type="checkbox" name="allow_edit_users_to_not_super_admin" id="allow_edit_users_to_not_super_admin" value="1"
|
169 |
</td>
|
170 |
<td>
|
171 |
</td>
|
172 |
+
</tr>
|
|
|
173 |
<?php
|
174 |
+
}
|
175 |
do_action('ure_settings_ms_show');
|
176 |
?>
|
177 |
</table>
|
185 |
</div> <!-- ure_tabs-4 -->
|
186 |
<?php
|
187 |
}
|
188 |
+
} // if (!$license_key_only) {
|
189 |
?>
|
190 |
<div id="ure_tabs-5">
|
191 |
<?php $this->lib->about(); ?>
|
includes/ure-role-edit.php
CHANGED
@@ -23,7 +23,7 @@ if (!defined('URE_PLUGIN_URL')) {
|
|
23 |
$checked = '';
|
24 |
}
|
25 |
$caps_access_restrict_for_simple_admin = $this->get_option('caps_access_restrict_for_simple_admin', 0);
|
26 |
-
if (is_super_admin() || !$this->multisite ||
|
27 |
?>
|
28 |
<input type="checkbox" name="ure_caps_readable" id="ure_caps_readable" value="1"
|
29 |
<?php echo $checked; ?> onclick="ure_turn_caps_readable(0);"/>
|
@@ -40,7 +40,7 @@ if (!defined('URE_PLUGIN_URL')) {
|
|
40 |
<label for="ure_show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities', 'ure'); ?></label>
|
41 |
<?php
|
42 |
}
|
43 |
-
if (
|
44 |
$hint = esc_html__('If checked, then apply action to ALL sites of this Network');
|
45 |
if ($this->apply_to_all) {
|
46 |
$checked = 'checked="checked"';
|
23 |
$checked = '';
|
24 |
}
|
25 |
$caps_access_restrict_for_simple_admin = $this->get_option('caps_access_restrict_for_simple_admin', 0);
|
26 |
+
if (is_super_admin() || !$this->multisite || !$this->is_pro() || !$caps_access_restrict_for_simple_admin) {
|
27 |
?>
|
28 |
<input type="checkbox" name="ure_caps_readable" id="ure_caps_readable" value="1"
|
29 |
<?php echo $checked; ?> onclick="ure_turn_caps_readable(0);"/>
|
40 |
<label for="ure_show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities', 'ure'); ?></label>
|
41 |
<?php
|
42 |
}
|
43 |
+
if ($this->multisite && $this->active_for_network && !is_network_admin() && is_main_site( get_current_blog_id() ) && is_super_admin()) {
|
44 |
$hint = esc_html__('If checked, then apply action to ALL sites of this Network');
|
45 |
if ($this->apply_to_all) {
|
46 |
$checked = 'checked="checked"';
|
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: 2014-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -22,68 +22,73 @@ msgid "User Role Editor - Options"
|
|
22 |
msgstr "Editor de Roles"
|
23 |
|
24 |
#: ../includes/settings-template.php:21
|
|
|
25 |
msgid "General"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: ../includes/settings-template.php:
|
|
|
29 |
msgid "Additional Modules"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: ../includes/settings-template.php:
|
|
|
33 |
#, fuzzy
|
34 |
msgid "Default Roles"
|
35 |
msgstr "Rol Predeterminado"
|
36 |
|
37 |
-
#: ../includes/settings-template.php:
|
|
|
38 |
msgid "Multisite"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: ../includes/settings-template.php:
|
42 |
msgid "About"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ../includes/settings-template.php:
|
46 |
#: ../includes/class-ure-screen-help.php:15
|
47 |
msgid "Show Administrator role at User Role Editor"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: ../includes/settings-template.php:
|
51 |
#: ../includes/class-ure-screen-help.php:18
|
52 |
#, fuzzy
|
53 |
msgid "Show capabilities in the human readable form"
|
54 |
msgstr "Mostrar Capacidades de forma legible"
|
55 |
|
56 |
-
#: ../includes/settings-template.php:
|
57 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
58 |
msgid "Show deprecated capabilities"
|
59 |
msgstr "Mostrar Capacidades obsoletas"
|
60 |
|
61 |
-
#: ../includes/settings-template.php:
|
62 |
-
#: ../includes/settings-template.php:
|
63 |
msgid "Save"
|
64 |
msgstr "Guardar"
|
65 |
|
66 |
-
#: ../includes/settings-template.php:
|
|
|
67 |
msgid "Count users without role"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: ../includes/settings-template.php:
|
71 |
#, fuzzy
|
72 |
msgid "Primary default role: "
|
73 |
msgstr "Rol Primario:"
|
74 |
|
75 |
-
#: ../includes/settings-template.php:
|
76 |
msgid "Other default roles for new registered user: "
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: ../includes/settings-template.php:
|
80 |
msgid ""
|
81 |
"Note for multisite environment: take into account that other default roles "
|
82 |
"should exist at the site, in order to be assigned to the new registered "
|
83 |
"users."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: ../includes/settings-template.php:
|
87 |
msgid "Allow non super administrators to create, edit, and delete users"
|
88 |
msgstr ""
|
89 |
|
@@ -104,86 +109,82 @@ msgstr ""
|
|
104 |
msgid "You do not have permission to edit this user."
|
105 |
msgstr "No tienes los suficientes permisos para editar este usuario"
|
106 |
|
107 |
-
#: ../includes/class-user-role-editor.php:
|
108 |
msgid "Capabilities"
|
109 |
msgstr "Capacidades"
|
110 |
|
111 |
-
#: ../includes/class-user-role-editor.php:
|
112 |
msgid "Settings"
|
113 |
msgstr "Configuración"
|
114 |
|
115 |
-
#: ../includes/class-user-role-editor.php:
|
116 |
-
#: ../includes/class-ure-lib.php:
|
117 |
msgid "Changelog"
|
118 |
msgstr "Registro de cambios"
|
119 |
|
120 |
-
#: ../includes/class-user-role-editor.php:
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
#: ../includes/class-user-role-editor.php:561
|
125 |
-
#: ../includes/class-user-role-editor.php:589
|
126 |
-
#: ../includes/class-user-role-editor.php:930
|
127 |
-
#: ../includes/class-ure-lib.php:232
|
128 |
msgid "User Role Editor"
|
129 |
msgstr "Editor de Roles"
|
130 |
|
131 |
-
#: ../includes/class-user-role-editor.php:
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
-
#: ../includes/class-user-role-editor.php:
|
134 |
msgid "User Role Editor options are updated"
|
135 |
msgstr "Opciones actualizadas"
|
136 |
|
137 |
-
#: ../includes/class-user-role-editor.php:
|
138 |
#, fuzzy
|
139 |
msgid "Default Roles are updated"
|
140 |
msgstr "Rol Predeterminado"
|
141 |
|
142 |
-
#: ../includes/class-user-role-editor.php:
|
143 |
msgid ""
|
144 |
"You do not have sufficient permissions to manage options for User Role "
|
145 |
"Editor."
|
146 |
msgstr "Permisos insuficientes para trabajar"
|
147 |
|
148 |
-
#: ../includes/class-user-role-editor.php:
|
149 |
msgid "Insufficient permissions to work with User Role Editor"
|
150 |
msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
|
151 |
|
152 |
-
#: ../includes/class-user-role-editor.php:
|
153 |
msgid "Select All"
|
154 |
msgstr "Seleccionar todo"
|
155 |
|
156 |
-
#: ../includes/class-user-role-editor.php:
|
157 |
msgid "Unselect All"
|
158 |
msgstr "Deseleccionar todo"
|
159 |
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid "Reverse"
|
162 |
msgstr "Revertir"
|
163 |
|
164 |
-
#: ../includes/class-user-role-editor.php:
|
165 |
msgid "Update"
|
166 |
msgstr "Actualizar"
|
167 |
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
msgid "Please confirm permissions update"
|
170 |
msgstr "Por favor confirma las actualizaciones de permisos"
|
171 |
|
172 |
-
#: ../includes/class-user-role-editor.php:
|
173 |
msgid "Add New Role"
|
174 |
msgstr "Agregar nuevo Rol"
|
175 |
|
176 |
-
#: ../includes/class-user-role-editor.php:
|
177 |
-
#: ../includes/class-user-role-editor.php:
|
178 |
#, fuzzy
|
179 |
msgid "Rename Role"
|
180 |
msgstr "Eliminar Rol"
|
181 |
|
182 |
-
#: ../includes/class-user-role-editor.php:
|
183 |
msgid " Role name (ID) can not be empty!"
|
184 |
msgstr "¡El nombre del Rol (ID) no puede estar vacío!"
|
185 |
|
186 |
-
#: ../includes/class-user-role-editor.php:
|
187 |
msgid ""
|
188 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
189 |
"only!"
|
@@ -191,66 +192,66 @@ msgstr ""
|
|
191 |
"¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
|
192 |
"altos o bajos!"
|
193 |
|
194 |
-
#: ../includes/class-user-role-editor.php:
|
195 |
msgid ""
|
196 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
197 |
"it."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: ../includes/class-user-role-editor.php:
|
201 |
msgid "Add Role"
|
202 |
msgstr "Agregar Rol"
|
203 |
|
204 |
-
#: ../includes/class-user-role-editor.php:
|
205 |
msgid "Delete Role"
|
206 |
msgstr "Eliminar Rol"
|
207 |
|
208 |
-
#: ../includes/class-user-role-editor.php:
|
209 |
msgid "Cancel"
|
210 |
msgstr "Cancelar"
|
211 |
|
212 |
-
#: ../includes/class-user-role-editor.php:
|
213 |
msgid "Add Capability"
|
214 |
msgstr "Agregar Capacidad"
|
215 |
|
216 |
-
#: ../includes/class-user-role-editor.php:
|
217 |
-
#: ../includes/class-user-role-editor.php:
|
218 |
msgid "Delete Capability"
|
219 |
msgstr "Eliminar Capacidades"
|
220 |
|
221 |
-
#: ../includes/class-user-role-editor.php:
|
222 |
msgid "Reset"
|
223 |
msgstr "Reiniciar"
|
224 |
|
225 |
-
#: ../includes/class-user-role-editor.php:
|
226 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: ../includes/class-user-role-editor.php:
|
230 |
msgid ""
|
231 |
"If any plugins have changed capabilities in any way upon installation (such "
|
232 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: ../includes/class-user-role-editor.php:
|
236 |
msgid ""
|
237 |
"For more information on how to undo changes and restore plugin capabilities "
|
238 |
"go to"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: ../includes/class-user-role-editor.php:
|
242 |
msgid "Continue?"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: ../includes/class-user-role-editor.php:
|
246 |
msgid "Default Role"
|
247 |
msgstr "Rol Predeterminado"
|
248 |
|
249 |
-
#: ../includes/class-user-role-editor.php:
|
250 |
msgid "Set New Default Role"
|
251 |
msgstr "Establecer nuevo Rol"
|
252 |
|
253 |
-
#: ../includes/class-user-role-editor.php:
|
254 |
msgid ""
|
255 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
256 |
"or other custom code"
|
@@ -258,11 +259,11 @@ msgstr ""
|
|
258 |
"¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
|
259 |
"algún plugin o código personalizado"
|
260 |
|
261 |
-
#: ../includes/class-user-role-editor.php:
|
262 |
msgid " Capability name (ID) can not be empty!"
|
263 |
msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
|
264 |
|
265 |
-
#: ../includes/class-user-role-editor.php:
|
266 |
msgid ""
|
267 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
268 |
"underscore only!"
|
@@ -270,12 +271,12 @@ msgstr ""
|
|
270 |
"¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
|
271 |
"guiones altos o bajos!"
|
272 |
|
273 |
-
#: ../includes/class-user-role-editor.php:
|
274 |
-
#: ../includes/class-user-role-editor.php:
|
275 |
msgid "Other Roles"
|
276 |
msgstr "Otros Roles"
|
277 |
|
278 |
-
#: ../includes/class-user-role-editor.php:
|
279 |
msgid "Edit"
|
280 |
msgstr "Editar"
|
281 |
|
@@ -309,80 +310,80 @@ msgstr "Filtro rápido:"
|
|
309 |
msgid "Custom capabilities:"
|
310 |
msgstr "Capacidades personalizadas:"
|
311 |
|
312 |
-
#: ../includes/class-ure-lib.php:
|
313 |
msgid "Error: wrong request"
|
314 |
msgstr "Error: Petición inválida"
|
315 |
|
316 |
-
#: ../includes/class-ure-lib.php:
|
317 |
msgid "Role name (ID): "
|
318 |
msgstr "Nombre del Rol (ID):"
|
319 |
|
320 |
-
#: ../includes/class-ure-lib.php:
|
321 |
msgid "Display Role Name: "
|
322 |
msgstr "Mostrar nombre del Rol:"
|
323 |
|
324 |
-
#: ../includes/class-ure-lib.php:
|
325 |
msgid "Make copy of: "
|
326 |
msgstr "Hacer copia de:"
|
327 |
|
328 |
-
#: ../includes/class-ure-lib.php:
|
329 |
msgid "Select Role:"
|
330 |
msgstr "Seleccionar Rol:"
|
331 |
|
332 |
-
#: ../includes/class-ure-lib.php:
|
333 |
msgid "Delete:"
|
334 |
msgstr "Eliminar:"
|
335 |
|
336 |
-
#: ../includes/class-ure-lib.php:
|
337 |
msgid "Capability name (ID): "
|
338 |
msgstr "Nombre de la Capacidad (ID):"
|
339 |
|
340 |
-
#: ../includes/class-ure-lib.php:
|
341 |
msgid "Error: "
|
342 |
msgstr "Error:"
|
343 |
|
344 |
-
#: ../includes/class-ure-lib.php:
|
345 |
msgid "Role"
|
346 |
msgstr "Rol"
|
347 |
|
348 |
-
#: ../includes/class-ure-lib.php:
|
349 |
msgid "does not exist"
|
350 |
msgstr "no existe"
|
351 |
|
352 |
-
#: ../includes/class-ure-lib.php:
|
353 |
msgid "Role is updated successfully"
|
354 |
msgstr "El Rol fue exitosamente actualizado"
|
355 |
|
356 |
-
#: ../includes/class-ure-lib.php:
|
357 |
msgid "Roles are updated for all network"
|
358 |
msgstr "Roles actualizados en toda la Red"
|
359 |
|
360 |
-
#: ../includes/class-ure-lib.php:
|
361 |
msgid "Error occured during role(s) update"
|
362 |
msgstr "Ocurrió un error durante la actualización del Rol"
|
363 |
|
364 |
-
#: ../includes/class-ure-lib.php:
|
365 |
msgid "User capabilities are updated successfully"
|
366 |
msgstr "Las Capacidades de Usuario fueron actualizadas exitosamente"
|
367 |
|
368 |
-
#: ../includes/class-ure-lib.php:
|
369 |
msgid "Error occured during user update"
|
370 |
msgstr "Ocurrió un error durante la actualización del Usuario"
|
371 |
|
372 |
-
#: ../includes/class-ure-lib.php:
|
373 |
msgid "User Roles are restored to WordPress default values. "
|
374 |
msgstr ""
|
375 |
"Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
|
376 |
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
msgid "Help"
|
379 |
msgstr "Ayuda"
|
380 |
|
381 |
-
#: ../includes/class-ure-lib.php:
|
382 |
msgid "Error is occur. Please check the log file."
|
383 |
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
|
384 |
|
385 |
-
#: ../includes/class-ure-lib.php:
|
386 |
msgid ""
|
387 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
388 |
"only!"
|
@@ -390,386 +391,386 @@ msgstr ""
|
|
390 |
"Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
|
391 |
"altos o bajos!"
|
392 |
|
393 |
-
#: ../includes/class-ure-lib.php:
|
394 |
msgid ""
|
395 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
396 |
"characters to it."
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../includes/class-ure-lib.php:
|
400 |
#, php-format
|
401 |
msgid "Role %s exists already"
|
402 |
msgstr "El Rol %s ya existe"
|
403 |
|
404 |
-
#: ../includes/class-ure-lib.php:
|
405 |
msgid "Error is encountered during new role create operation"
|
406 |
msgstr "Un error fue encontrado durante la creación del nuevo Rol"
|
407 |
|
408 |
-
#: ../includes/class-ure-lib.php:
|
409 |
#, php-format
|
410 |
msgid "Role %s is created successfully"
|
411 |
msgstr "El Rol %s fue creado exitosamente"
|
412 |
|
413 |
-
#: ../includes/class-ure-lib.php:
|
414 |
msgid "Error: Role ID is empty!"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: ../includes/class-ure-lib.php:
|
418 |
msgid "Error: Empty role display name is not allowed."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: ../includes/class-ure-lib.php:
|
422 |
#, fuzzy, php-format
|
423 |
msgid "Role %s does not exists"
|
424 |
msgstr "no existe"
|
425 |
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
#, fuzzy, php-format
|
428 |
msgid "Role %s is renamed to %s successfully"
|
429 |
msgstr "El Rol %s fue creado exitosamente"
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
msgid "Error encountered during role delete operation"
|
433 |
msgstr "Un error fue encontrado durante la eliminación del Rol"
|
434 |
|
435 |
-
#: ../includes/class-ure-lib.php:
|
436 |
msgid "Unused roles are deleted successfully"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
#, php-format
|
441 |
msgid "Role %s is deleted successfully"
|
442 |
msgstr "El Rol %s fue eliminado exitosamente"
|
443 |
|
444 |
-
#: ../includes/class-ure-lib.php:
|
445 |
msgid "Error encountered during default role change operation"
|
446 |
msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
|
447 |
|
448 |
-
#: ../includes/class-ure-lib.php:
|
449 |
#, php-format
|
450 |
msgid "Default role for new users is set to %s successfully"
|
451 |
msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
msgid "Editor"
|
455 |
msgstr "Editor"
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
msgid "Author"
|
459 |
msgstr "Autor"
|
460 |
|
461 |
-
#: ../includes/class-ure-lib.php:
|
462 |
msgid "Contributor"
|
463 |
msgstr "Contribuyente"
|
464 |
|
465 |
-
#: ../includes/class-ure-lib.php:
|
466 |
msgid "Subscriber"
|
467 |
msgstr "Suscriptor"
|
468 |
|
469 |
-
#: ../includes/class-ure-lib.php:
|
470 |
msgid "Switch themes"
|
471 |
msgstr "Cambiar temas (plantillas)"
|
472 |
|
473 |
-
#: ../includes/class-ure-lib.php:
|
474 |
msgid "Edit themes"
|
475 |
msgstr "Editar temas (plantillas)"
|
476 |
|
477 |
-
#: ../includes/class-ure-lib.php:
|
478 |
msgid "Activate plugins"
|
479 |
msgstr "Activar plugins"
|
480 |
|
481 |
-
#: ../includes/class-ure-lib.php:
|
482 |
msgid "Edit plugins"
|
483 |
msgstr "Editar plugins"
|
484 |
|
485 |
-
#: ../includes/class-ure-lib.php:
|
486 |
msgid "Edit users"
|
487 |
msgstr "Editar usuarios"
|
488 |
|
489 |
-
#: ../includes/class-ure-lib.php:
|
490 |
msgid "Edit files"
|
491 |
msgstr "Editar archivos"
|
492 |
|
493 |
-
#: ../includes/class-ure-lib.php:
|
494 |
msgid "Manage options"
|
495 |
msgstr "Administrar opciones"
|
496 |
|
497 |
-
#: ../includes/class-ure-lib.php:
|
498 |
msgid "Moderate comments"
|
499 |
msgstr "Moderar comentarios"
|
500 |
|
501 |
-
#: ../includes/class-ure-lib.php:
|
502 |
msgid "Manage categories"
|
503 |
msgstr "Administrar categorías"
|
504 |
|
505 |
-
#: ../includes/class-ure-lib.php:
|
506 |
msgid "Manage links"
|
507 |
msgstr "Administrar enlaces"
|
508 |
|
509 |
-
#: ../includes/class-ure-lib.php:
|
510 |
msgid "Upload files"
|
511 |
msgstr "Subir archivos"
|
512 |
|
513 |
-
#: ../includes/class-ure-lib.php:
|
514 |
msgid "Import"
|
515 |
msgstr "Importar"
|
516 |
|
517 |
-
#: ../includes/class-ure-lib.php:
|
518 |
msgid "Unfiltered html"
|
519 |
msgstr "HTML sin filtrar"
|
520 |
|
521 |
-
#: ../includes/class-ure-lib.php:
|
522 |
msgid "Edit posts"
|
523 |
msgstr "Editar entradas"
|
524 |
|
525 |
-
#: ../includes/class-ure-lib.php:
|
526 |
msgid "Edit others posts"
|
527 |
msgstr "Editar entradas ajenas"
|
528 |
|
529 |
-
#: ../includes/class-ure-lib.php:
|
530 |
msgid "Edit published posts"
|
531 |
msgstr "Editar entradas publicadas"
|
532 |
|
533 |
-
#: ../includes/class-ure-lib.php:
|
534 |
msgid "Publish posts"
|
535 |
msgstr "Publicar entradas"
|
536 |
|
537 |
-
#: ../includes/class-ure-lib.php:
|
538 |
msgid "Edit pages"
|
539 |
msgstr "Editar páginas"
|
540 |
|
541 |
-
#: ../includes/class-ure-lib.php:
|
542 |
msgid "Read"
|
543 |
msgstr "Leer"
|
544 |
|
545 |
-
#: ../includes/class-ure-lib.php:
|
546 |
msgid "Level 10"
|
547 |
msgstr "Nivel 10"
|
548 |
|
549 |
-
#: ../includes/class-ure-lib.php:
|
550 |
msgid "Level 9"
|
551 |
msgstr "Nivel 9"
|
552 |
|
553 |
-
#: ../includes/class-ure-lib.php:
|
554 |
msgid "Level 8"
|
555 |
msgstr "Nivel 8"
|
556 |
|
557 |
-
#: ../includes/class-ure-lib.php:
|
558 |
msgid "Level 7"
|
559 |
msgstr "Nivel 7"
|
560 |
|
561 |
-
#: ../includes/class-ure-lib.php:
|
562 |
msgid "Level 6"
|
563 |
msgstr "Nivel 6"
|
564 |
|
565 |
-
#: ../includes/class-ure-lib.php:
|
566 |
msgid "Level 5"
|
567 |
msgstr "Nivel 5"
|
568 |
|
569 |
-
#: ../includes/class-ure-lib.php:
|
570 |
msgid "Level 4"
|
571 |
msgstr "Nivel 4"
|
572 |
|
573 |
-
#: ../includes/class-ure-lib.php:
|
574 |
msgid "Level 3"
|
575 |
msgstr "Nivel 3"
|
576 |
|
577 |
-
#: ../includes/class-ure-lib.php:
|
578 |
msgid "Level 2"
|
579 |
msgstr "Nivel 2"
|
580 |
|
581 |
-
#: ../includes/class-ure-lib.php:
|
582 |
msgid "Level 1"
|
583 |
msgstr "Nivel 1"
|
584 |
|
585 |
-
#: ../includes/class-ure-lib.php:
|
586 |
msgid "Level 0"
|
587 |
msgstr "Nivel 0"
|
588 |
|
589 |
-
#: ../includes/class-ure-lib.php:
|
590 |
msgid "Edit others pages"
|
591 |
msgstr "Editar páginas ajenas"
|
592 |
|
593 |
-
#: ../includes/class-ure-lib.php:
|
594 |
msgid "Edit published pages"
|
595 |
msgstr "Editar páginas publicadas"
|
596 |
|
597 |
-
#: ../includes/class-ure-lib.php:
|
598 |
msgid "Publish pages"
|
599 |
msgstr "Publicar páginas"
|
600 |
|
601 |
-
#: ../includes/class-ure-lib.php:
|
602 |
msgid "Delete pages"
|
603 |
msgstr "Eliminar páginas"
|
604 |
|
605 |
-
#: ../includes/class-ure-lib.php:
|
606 |
msgid "Delete others pages"
|
607 |
msgstr "Eliminar páginas ajenas"
|
608 |
|
609 |
-
#: ../includes/class-ure-lib.php:
|
610 |
msgid "Delete published pages"
|
611 |
msgstr "Eliminar páginas publicadas"
|
612 |
|
613 |
-
#: ../includes/class-ure-lib.php:
|
614 |
msgid "Delete posts"
|
615 |
msgstr "Eliminar entradas"
|
616 |
|
617 |
-
#: ../includes/class-ure-lib.php:
|
618 |
msgid "Delete others posts"
|
619 |
msgstr "Eliminar entradas ajenas"
|
620 |
|
621 |
-
#: ../includes/class-ure-lib.php:
|
622 |
msgid "Delete published posts"
|
623 |
msgstr "Eliminar entradas publicadas"
|
624 |
|
625 |
-
#: ../includes/class-ure-lib.php:
|
626 |
msgid "Delete private posts"
|
627 |
msgstr "Eliminar entradas privadas"
|
628 |
|
629 |
-
#: ../includes/class-ure-lib.php:
|
630 |
msgid "Edit private posts"
|
631 |
msgstr "Editar entradas privadas"
|
632 |
|
633 |
-
#: ../includes/class-ure-lib.php:
|
634 |
msgid "Read private posts"
|
635 |
msgstr "Leer entradas privadas"
|
636 |
|
637 |
-
#: ../includes/class-ure-lib.php:
|
638 |
msgid "Delete private pages"
|
639 |
msgstr "Eliminar páginas privadas"
|
640 |
|
641 |
-
#: ../includes/class-ure-lib.php:
|
642 |
msgid "Edit private pages"
|
643 |
msgstr "Editar páginas privadas"
|
644 |
|
645 |
-
#: ../includes/class-ure-lib.php:
|
646 |
msgid "Read private pages"
|
647 |
msgstr "Leer páginas privadas"
|
648 |
|
649 |
-
#: ../includes/class-ure-lib.php:
|
650 |
msgid "Delete users"
|
651 |
msgstr "Eliminar usuarios"
|
652 |
|
653 |
-
#: ../includes/class-ure-lib.php:
|
654 |
msgid "Create users"
|
655 |
msgstr "Crear usuarios"
|
656 |
|
657 |
-
#: ../includes/class-ure-lib.php:
|
658 |
msgid "Unfiltered upload"
|
659 |
msgstr "Subir sin filtrado"
|
660 |
|
661 |
-
#: ../includes/class-ure-lib.php:
|
662 |
msgid "Edit dashboard"
|
663 |
msgstr "Editar escritorio"
|
664 |
|
665 |
-
#: ../includes/class-ure-lib.php:
|
666 |
msgid "Update plugins"
|
667 |
msgstr "Actualizar plugins"
|
668 |
|
669 |
-
#: ../includes/class-ure-lib.php:
|
670 |
msgid "Delete plugins"
|
671 |
msgstr "Eliminar plugins"
|
672 |
|
673 |
-
#: ../includes/class-ure-lib.php:
|
674 |
msgid "Install plugins"
|
675 |
msgstr "Instalar plugins"
|
676 |
|
677 |
-
#: ../includes/class-ure-lib.php:
|
678 |
msgid "Update themes"
|
679 |
msgstr "Actualizar temas (plantillas)"
|
680 |
|
681 |
-
#: ../includes/class-ure-lib.php:
|
682 |
msgid "Install themes"
|
683 |
msgstr "Instalar temas (plantillas)"
|
684 |
|
685 |
-
#: ../includes/class-ure-lib.php:
|
686 |
msgid "Update core"
|
687 |
msgstr "Actualizar núcleo"
|
688 |
|
689 |
-
#: ../includes/class-ure-lib.php:
|
690 |
msgid "List users"
|
691 |
msgstr "Listar usuarios"
|
692 |
|
693 |
-
#: ../includes/class-ure-lib.php:
|
694 |
msgid "Remove users"
|
695 |
msgstr "Eliminar usuarios"
|
696 |
|
697 |
-
#: ../includes/class-ure-lib.php:
|
698 |
msgid "Add users"
|
699 |
msgstr "Agregar usuarios"
|
700 |
|
701 |
-
#: ../includes/class-ure-lib.php:
|
702 |
msgid "Promote users"
|
703 |
msgstr "Promover usuarios"
|
704 |
|
705 |
-
#: ../includes/class-ure-lib.php:
|
706 |
msgid "Edit theme options"
|
707 |
msgstr "Editar opciones del tema (plantilla)"
|
708 |
|
709 |
-
#: ../includes/class-ure-lib.php:
|
710 |
msgid "Delete themes"
|
711 |
msgstr "Eliminar temas (plantillas)"
|
712 |
|
713 |
-
#: ../includes/class-ure-lib.php:
|
714 |
msgid "Export"
|
715 |
msgstr "Exportar"
|
716 |
|
717 |
-
#: ../includes/class-ure-lib.php:
|
718 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
719 |
msgstr ""
|
720 |
"Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
|
721 |
|
722 |
-
#: ../includes/class-ure-lib.php:
|
723 |
#, php-format
|
724 |
msgid "Capability %s is added successfully"
|
725 |
msgstr "La Capacidad %s fue agregada exitosamente"
|
726 |
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
#, php-format
|
729 |
msgid "Capability %s exists already"
|
730 |
msgstr "La Capacidad %s ya existe"
|
731 |
|
732 |
-
#: ../includes/class-ure-lib.php:
|
733 |
#, php-format
|
734 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
735 |
msgstr ""
|
736 |
"¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
|
737 |
|
738 |
-
#: ../includes/class-ure-lib.php:
|
739 |
#, php-format
|
740 |
msgid "Capability %s is removed successfully"
|
741 |
msgstr "La Capacidad %s fue eliminada exitosamente"
|
742 |
|
743 |
-
#: ../includes/class-ure-lib.php:
|
744 |
msgid "Version:"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: ../includes/class-ure-lib.php:
|
748 |
msgid "Author's website"
|
749 |
msgstr "Sitio web del Autor"
|
750 |
|
751 |
-
#: ../includes/class-ure-lib.php:
|
752 |
msgid "Plugin webpage"
|
753 |
msgstr "Página web del Plugin"
|
754 |
|
755 |
-
#: ../includes/class-ure-lib.php:
|
756 |
#, fuzzy
|
757 |
msgid "Plugin download"
|
758 |
msgstr "Página web del Plugin"
|
759 |
|
760 |
-
#: ../includes/class-ure-lib.php:
|
761 |
msgid "FAQ"
|
762 |
msgstr "FAQ"
|
763 |
|
764 |
-
#: ../includes/class-ure-lib.php:
|
765 |
msgid "None"
|
766 |
msgstr "Ninguno"
|
767 |
|
768 |
-
#: ../includes/class-ure-lib.php:
|
769 |
msgid "Delete All Unused Roles"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: ../includes/class-ure-lib.php:
|
773 |
msgid "— No role for this site —"
|
774 |
msgstr ""
|
775 |
|
@@ -815,14 +816,32 @@ msgid ""
|
|
815 |
"deprecated capabilities."
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: ../includes/class-ure-screen-help.php:
|
819 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: ../includes/class-ure-screen-help.php:
|
823 |
msgid ""
|
824 |
"Super administrator only may create, edit and delete users under WordPress "
|
825 |
-
"multi-site. Turn this option on in order to remove this
|
|
|
826 |
msgstr ""
|
827 |
|
828 |
#~ msgid "About this Plugin:"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-01 12:45+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"
|
22 |
msgstr "Editor de Roles"
|
23 |
|
24 |
#: ../includes/settings-template.php:21
|
25 |
+
#: ../includes/class-user-role-editor.php:547
|
26 |
msgid "General"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: ../includes/settings-template.php:26
|
30 |
+
#: ../includes/class-user-role-editor.php:553
|
31 |
msgid "Additional Modules"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: ../includes/settings-template.php:30
|
35 |
+
#: ../includes/class-user-role-editor.php:559
|
36 |
#, fuzzy
|
37 |
msgid "Default Roles"
|
38 |
msgstr "Rol Predeterminado"
|
39 |
|
40 |
+
#: ../includes/settings-template.php:34
|
41 |
+
#: ../includes/class-user-role-editor.php:564
|
42 |
msgid "Multisite"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ../includes/settings-template.php:39
|
46 |
msgid "About"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: ../includes/settings-template.php:53
|
50 |
#: ../includes/class-ure-screen-help.php:15
|
51 |
msgid "Show Administrator role at User Role Editor"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: ../includes/settings-template.php:61
|
55 |
#: ../includes/class-ure-screen-help.php:18
|
56 |
#, fuzzy
|
57 |
msgid "Show capabilities in the human readable form"
|
58 |
msgstr "Mostrar Capacidades de forma legible"
|
59 |
|
60 |
+
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
61 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
62 |
msgid "Show deprecated capabilities"
|
63 |
msgstr "Mostrar Capacidades obsoletas"
|
64 |
|
65 |
+
#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
|
66 |
+
#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
|
67 |
msgid "Save"
|
68 |
msgstr "Guardar"
|
69 |
|
70 |
+
#: ../includes/settings-template.php:102
|
71 |
+
#: ../includes/class-ure-screen-help.php:40
|
72 |
msgid "Count users without role"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: ../includes/settings-template.php:129
|
76 |
#, fuzzy
|
77 |
msgid "Primary default role: "
|
78 |
msgstr "Rol Primario:"
|
79 |
|
80 |
+
#: ../includes/settings-template.php:136
|
81 |
msgid "Other default roles for new registered user: "
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: ../includes/settings-template.php:142
|
85 |
msgid ""
|
86 |
"Note for multisite environment: take into account that other default roles "
|
87 |
"should exist at the site, in order to be assigned to the new registered "
|
88 |
"users."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../includes/settings-template.php:168
|
92 |
msgid "Allow non super administrators to create, edit, and delete users"
|
93 |
msgstr ""
|
94 |
|
109 |
msgid "You do not have permission to edit this user."
|
110 |
msgstr "No tienes los suficientes permisos para editar este usuario"
|
111 |
|
112 |
+
#: ../includes/class-user-role-editor.php:422
|
113 |
msgid "Capabilities"
|
114 |
msgstr "Capacidades"
|
115 |
|
116 |
+
#: ../includes/class-user-role-editor.php:514
|
117 |
msgid "Settings"
|
118 |
msgstr "Configuración"
|
119 |
|
120 |
+
#: ../includes/class-user-role-editor.php:525
|
121 |
+
#: ../includes/class-ure-lib.php:2292
|
122 |
msgid "Changelog"
|
123 |
msgstr "Registro de cambios"
|
124 |
|
125 |
+
#: ../includes/class-user-role-editor.php:573
|
126 |
+
#: ../includes/class-user-role-editor.php:601
|
127 |
+
#: ../includes/class-user-role-editor.php:946
|
128 |
+
#: ../includes/class-ure-lib.php:248
|
|
|
|
|
|
|
|
|
129 |
msgid "User Role Editor"
|
130 |
msgstr "Editor de Roles"
|
131 |
|
132 |
+
#: ../includes/class-user-role-editor.php:658
|
133 |
+
#: ../includes/class-user-role-editor.php:676
|
134 |
+
#: ../includes/class-user-role-editor.php:720
|
135 |
msgid "User Role Editor options are updated"
|
136 |
msgstr "Opciones actualizadas"
|
137 |
|
138 |
+
#: ../includes/class-user-role-editor.php:704
|
139 |
#, fuzzy
|
140 |
msgid "Default Roles are updated"
|
141 |
msgstr "Rol Predeterminado"
|
142 |
|
143 |
+
#: ../includes/class-user-role-editor.php:728
|
144 |
msgid ""
|
145 |
"You do not have sufficient permissions to manage options for User Role "
|
146 |
"Editor."
|
147 |
msgstr "Permisos insuficientes para trabajar"
|
148 |
|
149 |
+
#: ../includes/class-user-role-editor.php:807
|
150 |
msgid "Insufficient permissions to work with User Role Editor"
|
151 |
msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
|
152 |
|
153 |
+
#: ../includes/class-user-role-editor.php:888
|
154 |
msgid "Select All"
|
155 |
msgstr "Seleccionar todo"
|
156 |
|
157 |
+
#: ../includes/class-user-role-editor.php:889
|
158 |
msgid "Unselect All"
|
159 |
msgstr "Deseleccionar todo"
|
160 |
|
161 |
+
#: ../includes/class-user-role-editor.php:890
|
162 |
msgid "Reverse"
|
163 |
msgstr "Revertir"
|
164 |
|
165 |
+
#: ../includes/class-user-role-editor.php:891
|
166 |
msgid "Update"
|
167 |
msgstr "Actualizar"
|
168 |
|
169 |
+
#: ../includes/class-user-role-editor.php:892
|
170 |
msgid "Please confirm permissions update"
|
171 |
msgstr "Por favor confirma las actualizaciones de permisos"
|
172 |
|
173 |
+
#: ../includes/class-user-role-editor.php:893
|
174 |
msgid "Add New Role"
|
175 |
msgstr "Agregar nuevo Rol"
|
176 |
|
177 |
+
#: ../includes/class-user-role-editor.php:894
|
178 |
+
#: ../includes/class-user-role-editor.php:899
|
179 |
#, fuzzy
|
180 |
msgid "Rename Role"
|
181 |
msgstr "Eliminar Rol"
|
182 |
|
183 |
+
#: ../includes/class-user-role-editor.php:895
|
184 |
msgid " Role name (ID) can not be empty!"
|
185 |
msgstr "¡El nombre del Rol (ID) no puede estar vacío!"
|
186 |
|
187 |
+
#: ../includes/class-user-role-editor.php:896
|
188 |
msgid ""
|
189 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
190 |
"only!"
|
192 |
"¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
|
193 |
"altos o bajos!"
|
194 |
|
195 |
+
#: ../includes/class-user-role-editor.php:897
|
196 |
msgid ""
|
197 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
198 |
"it."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: ../includes/class-user-role-editor.php:898
|
202 |
msgid "Add Role"
|
203 |
msgstr "Agregar Rol"
|
204 |
|
205 |
+
#: ../includes/class-user-role-editor.php:900
|
206 |
msgid "Delete Role"
|
207 |
msgstr "Eliminar Rol"
|
208 |
|
209 |
+
#: ../includes/class-user-role-editor.php:901
|
210 |
msgid "Cancel"
|
211 |
msgstr "Cancelar"
|
212 |
|
213 |
+
#: ../includes/class-user-role-editor.php:902
|
214 |
msgid "Add Capability"
|
215 |
msgstr "Agregar Capacidad"
|
216 |
|
217 |
+
#: ../includes/class-user-role-editor.php:903
|
218 |
+
#: ../includes/class-user-role-editor.php:912
|
219 |
msgid "Delete Capability"
|
220 |
msgstr "Eliminar Capacidades"
|
221 |
|
222 |
+
#: ../includes/class-user-role-editor.php:904
|
223 |
msgid "Reset"
|
224 |
msgstr "Reiniciar"
|
225 |
|
226 |
+
#: ../includes/class-user-role-editor.php:905
|
227 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../includes/class-user-role-editor.php:906
|
231 |
msgid ""
|
232 |
"If any plugins have changed capabilities in any way upon installation (such "
|
233 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: ../includes/class-user-role-editor.php:907
|
237 |
msgid ""
|
238 |
"For more information on how to undo changes and restore plugin capabilities "
|
239 |
"go to"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../includes/class-user-role-editor.php:909
|
243 |
msgid "Continue?"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../includes/class-user-role-editor.php:910
|
247 |
msgid "Default Role"
|
248 |
msgstr "Rol Predeterminado"
|
249 |
|
250 |
+
#: ../includes/class-user-role-editor.php:911
|
251 |
msgid "Set New Default Role"
|
252 |
msgstr "Establecer nuevo Rol"
|
253 |
|
254 |
+
#: ../includes/class-user-role-editor.php:913
|
255 |
msgid ""
|
256 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
257 |
"or other custom code"
|
259 |
"¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
|
260 |
"algún plugin o código personalizado"
|
261 |
|
262 |
+
#: ../includes/class-user-role-editor.php:914
|
263 |
msgid " Capability name (ID) can not be empty!"
|
264 |
msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
|
265 |
|
266 |
+
#: ../includes/class-user-role-editor.php:915
|
267 |
msgid ""
|
268 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
269 |
"underscore only!"
|
271 |
"¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
|
272 |
"guiones altos o bajos!"
|
273 |
|
274 |
+
#: ../includes/class-user-role-editor.php:949
|
275 |
+
#: ../includes/class-user-role-editor.php:978
|
276 |
msgid "Other Roles"
|
277 |
msgstr "Otros Roles"
|
278 |
|
279 |
+
#: ../includes/class-user-role-editor.php:960
|
280 |
msgid "Edit"
|
281 |
msgstr "Editar"
|
282 |
|
310 |
msgid "Custom capabilities:"
|
311 |
msgstr "Capacidades personalizadas:"
|
312 |
|
313 |
+
#: ../includes/class-ure-lib.php:156
|
314 |
msgid "Error: wrong request"
|
315 |
msgstr "Error: Petición inválida"
|
316 |
|
317 |
+
#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
|
318 |
msgid "Role name (ID): "
|
319 |
msgstr "Nombre del Rol (ID):"
|
320 |
|
321 |
+
#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
|
322 |
msgid "Display Role Name: "
|
323 |
msgstr "Mostrar nombre del Rol:"
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:193
|
326 |
msgid "Make copy of: "
|
327 |
msgstr "Hacer copia de:"
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:209
|
330 |
msgid "Select Role:"
|
331 |
msgstr "Seleccionar Rol:"
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:224
|
334 |
msgid "Delete:"
|
335 |
msgstr "Eliminar:"
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:231
|
338 |
msgid "Capability name (ID): "
|
339 |
msgstr "Nombre de la Capacidad (ID):"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:345
|
342 |
msgid "Error: "
|
343 |
msgstr "Error:"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:345
|
346 |
msgid "Role"
|
347 |
msgstr "Rol"
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:346
|
350 |
msgid "does not exist"
|
351 |
msgstr "no existe"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:389
|
354 |
msgid "Role is updated successfully"
|
355 |
msgstr "El Rol fue exitosamente actualizado"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:391
|
358 |
msgid "Roles are updated for all network"
|
359 |
msgstr "Roles actualizados en toda la Red"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:397
|
362 |
msgid "Error occured during role(s) update"
|
363 |
msgstr "Ocurrió un error durante la actualización del Rol"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:404
|
366 |
msgid "User capabilities are updated successfully"
|
367 |
msgstr "Las Capacidades de Usuario fueron actualizadas exitosamente"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:409
|
370 |
msgid "Error occured during user update"
|
371 |
msgstr "Ocurrió un error durante la actualización del Usuario"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:467
|
374 |
msgid "User Roles are restored to WordPress default values. "
|
375 |
msgstr ""
|
376 |
"Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
|
377 |
|
378 |
+
#: ../includes/class-ure-lib.php:1334
|
379 |
msgid "Help"
|
380 |
msgstr "Ayuda"
|
381 |
|
382 |
+
#: ../includes/class-ure-lib.php:1692
|
383 |
msgid "Error is occur. Please check the log file."
|
384 |
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
|
385 |
|
386 |
+
#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
|
387 |
msgid ""
|
388 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
389 |
"only!"
|
391 |
"Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
|
392 |
"altos o bajos!"
|
393 |
|
394 |
+
#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
|
395 |
msgid ""
|
396 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
397 |
"characters to it."
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: ../includes/class-ure-lib.php:1754
|
401 |
#, php-format
|
402 |
msgid "Role %s exists already"
|
403 |
msgstr "El Rol %s ya existe"
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:1769
|
406 |
msgid "Error is encountered during new role create operation"
|
407 |
msgstr "Un error fue encontrado durante la creación del nuevo Rol"
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1771
|
410 |
#, php-format
|
411 |
msgid "Role %s is created successfully"
|
412 |
msgstr "El Rol %s fue creado exitosamente"
|
413 |
|
414 |
+
#: ../includes/class-ure-lib.php:1795
|
415 |
msgid "Error: Role ID is empty!"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: ../includes/class-ure-lib.php:1813
|
419 |
msgid "Error: Empty role display name is not allowed."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: ../includes/class-ure-lib.php:1820
|
423 |
#, fuzzy, php-format
|
424 |
msgid "Role %s does not exists"
|
425 |
msgstr "no existe"
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:1828
|
428 |
#, fuzzy, php-format
|
429 |
msgid "Role %s is renamed to %s successfully"
|
430 |
msgstr "El Rol %s fue creado exitosamente"
|
431 |
|
432 |
+
#: ../includes/class-ure-lib.php:1895
|
433 |
msgid "Error encountered during role delete operation"
|
434 |
msgstr "Un error fue encontrado durante la eliminación del Rol"
|
435 |
|
436 |
+
#: ../includes/class-ure-lib.php:1897
|
437 |
msgid "Unused roles are deleted successfully"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../includes/class-ure-lib.php:1899
|
441 |
#, php-format
|
442 |
msgid "Role %s is deleted successfully"
|
443 |
msgstr "El Rol %s fue eliminado exitosamente"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:1924
|
446 |
msgid "Error encountered during default role change operation"
|
447 |
msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:1930
|
450 |
#, php-format
|
451 |
msgid "Default role for new users is set to %s successfully"
|
452 |
msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
|
453 |
|
454 |
+
#: ../includes/class-ure-lib.php:1949
|
455 |
msgid "Editor"
|
456 |
msgstr "Editor"
|
457 |
|
458 |
+
#: ../includes/class-ure-lib.php:1950
|
459 |
msgid "Author"
|
460 |
msgstr "Autor"
|
461 |
|
462 |
+
#: ../includes/class-ure-lib.php:1951
|
463 |
msgid "Contributor"
|
464 |
msgstr "Contribuyente"
|
465 |
|
466 |
+
#: ../includes/class-ure-lib.php:1952
|
467 |
msgid "Subscriber"
|
468 |
msgstr "Suscriptor"
|
469 |
|
470 |
+
#: ../includes/class-ure-lib.php:1954
|
471 |
msgid "Switch themes"
|
472 |
msgstr "Cambiar temas (plantillas)"
|
473 |
|
474 |
+
#: ../includes/class-ure-lib.php:1955
|
475 |
msgid "Edit themes"
|
476 |
msgstr "Editar temas (plantillas)"
|
477 |
|
478 |
+
#: ../includes/class-ure-lib.php:1956
|
479 |
msgid "Activate plugins"
|
480 |
msgstr "Activar plugins"
|
481 |
|
482 |
+
#: ../includes/class-ure-lib.php:1957
|
483 |
msgid "Edit plugins"
|
484 |
msgstr "Editar plugins"
|
485 |
|
486 |
+
#: ../includes/class-ure-lib.php:1958
|
487 |
msgid "Edit users"
|
488 |
msgstr "Editar usuarios"
|
489 |
|
490 |
+
#: ../includes/class-ure-lib.php:1959
|
491 |
msgid "Edit files"
|
492 |
msgstr "Editar archivos"
|
493 |
|
494 |
+
#: ../includes/class-ure-lib.php:1960
|
495 |
msgid "Manage options"
|
496 |
msgstr "Administrar opciones"
|
497 |
|
498 |
+
#: ../includes/class-ure-lib.php:1961
|
499 |
msgid "Moderate comments"
|
500 |
msgstr "Moderar comentarios"
|
501 |
|
502 |
+
#: ../includes/class-ure-lib.php:1962
|
503 |
msgid "Manage categories"
|
504 |
msgstr "Administrar categorías"
|
505 |
|
506 |
+
#: ../includes/class-ure-lib.php:1963
|
507 |
msgid "Manage links"
|
508 |
msgstr "Administrar enlaces"
|
509 |
|
510 |
+
#: ../includes/class-ure-lib.php:1964
|
511 |
msgid "Upload files"
|
512 |
msgstr "Subir archivos"
|
513 |
|
514 |
+
#: ../includes/class-ure-lib.php:1965
|
515 |
msgid "Import"
|
516 |
msgstr "Importar"
|
517 |
|
518 |
+
#: ../includes/class-ure-lib.php:1966
|
519 |
msgid "Unfiltered html"
|
520 |
msgstr "HTML sin filtrar"
|
521 |
|
522 |
+
#: ../includes/class-ure-lib.php:1967
|
523 |
msgid "Edit posts"
|
524 |
msgstr "Editar entradas"
|
525 |
|
526 |
+
#: ../includes/class-ure-lib.php:1968
|
527 |
msgid "Edit others posts"
|
528 |
msgstr "Editar entradas ajenas"
|
529 |
|
530 |
+
#: ../includes/class-ure-lib.php:1969
|
531 |
msgid "Edit published posts"
|
532 |
msgstr "Editar entradas publicadas"
|
533 |
|
534 |
+
#: ../includes/class-ure-lib.php:1970
|
535 |
msgid "Publish posts"
|
536 |
msgstr "Publicar entradas"
|
537 |
|
538 |
+
#: ../includes/class-ure-lib.php:1971
|
539 |
msgid "Edit pages"
|
540 |
msgstr "Editar páginas"
|
541 |
|
542 |
+
#: ../includes/class-ure-lib.php:1972
|
543 |
msgid "Read"
|
544 |
msgstr "Leer"
|
545 |
|
546 |
+
#: ../includes/class-ure-lib.php:1973
|
547 |
msgid "Level 10"
|
548 |
msgstr "Nivel 10"
|
549 |
|
550 |
+
#: ../includes/class-ure-lib.php:1974
|
551 |
msgid "Level 9"
|
552 |
msgstr "Nivel 9"
|
553 |
|
554 |
+
#: ../includes/class-ure-lib.php:1975
|
555 |
msgid "Level 8"
|
556 |
msgstr "Nivel 8"
|
557 |
|
558 |
+
#: ../includes/class-ure-lib.php:1976
|
559 |
msgid "Level 7"
|
560 |
msgstr "Nivel 7"
|
561 |
|
562 |
+
#: ../includes/class-ure-lib.php:1977
|
563 |
msgid "Level 6"
|
564 |
msgstr "Nivel 6"
|
565 |
|
566 |
+
#: ../includes/class-ure-lib.php:1978
|
567 |
msgid "Level 5"
|
568 |
msgstr "Nivel 5"
|
569 |
|
570 |
+
#: ../includes/class-ure-lib.php:1979
|
571 |
msgid "Level 4"
|
572 |
msgstr "Nivel 4"
|
573 |
|
574 |
+
#: ../includes/class-ure-lib.php:1980
|
575 |
msgid "Level 3"
|
576 |
msgstr "Nivel 3"
|
577 |
|
578 |
+
#: ../includes/class-ure-lib.php:1981
|
579 |
msgid "Level 2"
|
580 |
msgstr "Nivel 2"
|
581 |
|
582 |
+
#: ../includes/class-ure-lib.php:1982
|
583 |
msgid "Level 1"
|
584 |
msgstr "Nivel 1"
|
585 |
|
586 |
+
#: ../includes/class-ure-lib.php:1983
|
587 |
msgid "Level 0"
|
588 |
msgstr "Nivel 0"
|
589 |
|
590 |
+
#: ../includes/class-ure-lib.php:1984
|
591 |
msgid "Edit others pages"
|
592 |
msgstr "Editar páginas ajenas"
|
593 |
|
594 |
+
#: ../includes/class-ure-lib.php:1985
|
595 |
msgid "Edit published pages"
|
596 |
msgstr "Editar páginas publicadas"
|
597 |
|
598 |
+
#: ../includes/class-ure-lib.php:1986
|
599 |
msgid "Publish pages"
|
600 |
msgstr "Publicar páginas"
|
601 |
|
602 |
+
#: ../includes/class-ure-lib.php:1987
|
603 |
msgid "Delete pages"
|
604 |
msgstr "Eliminar páginas"
|
605 |
|
606 |
+
#: ../includes/class-ure-lib.php:1988
|
607 |
msgid "Delete others pages"
|
608 |
msgstr "Eliminar páginas ajenas"
|
609 |
|
610 |
+
#: ../includes/class-ure-lib.php:1989
|
611 |
msgid "Delete published pages"
|
612 |
msgstr "Eliminar páginas publicadas"
|
613 |
|
614 |
+
#: ../includes/class-ure-lib.php:1990
|
615 |
msgid "Delete posts"
|
616 |
msgstr "Eliminar entradas"
|
617 |
|
618 |
+
#: ../includes/class-ure-lib.php:1991
|
619 |
msgid "Delete others posts"
|
620 |
msgstr "Eliminar entradas ajenas"
|
621 |
|
622 |
+
#: ../includes/class-ure-lib.php:1992
|
623 |
msgid "Delete published posts"
|
624 |
msgstr "Eliminar entradas publicadas"
|
625 |
|
626 |
+
#: ../includes/class-ure-lib.php:1993
|
627 |
msgid "Delete private posts"
|
628 |
msgstr "Eliminar entradas privadas"
|
629 |
|
630 |
+
#: ../includes/class-ure-lib.php:1994
|
631 |
msgid "Edit private posts"
|
632 |
msgstr "Editar entradas privadas"
|
633 |
|
634 |
+
#: ../includes/class-ure-lib.php:1995
|
635 |
msgid "Read private posts"
|
636 |
msgstr "Leer entradas privadas"
|
637 |
|
638 |
+
#: ../includes/class-ure-lib.php:1996
|
639 |
msgid "Delete private pages"
|
640 |
msgstr "Eliminar páginas privadas"
|
641 |
|
642 |
+
#: ../includes/class-ure-lib.php:1997
|
643 |
msgid "Edit private pages"
|
644 |
msgstr "Editar páginas privadas"
|
645 |
|
646 |
+
#: ../includes/class-ure-lib.php:1998
|
647 |
msgid "Read private pages"
|
648 |
msgstr "Leer páginas privadas"
|
649 |
|
650 |
+
#: ../includes/class-ure-lib.php:1999
|
651 |
msgid "Delete users"
|
652 |
msgstr "Eliminar usuarios"
|
653 |
|
654 |
+
#: ../includes/class-ure-lib.php:2000
|
655 |
msgid "Create users"
|
656 |
msgstr "Crear usuarios"
|
657 |
|
658 |
+
#: ../includes/class-ure-lib.php:2001
|
659 |
msgid "Unfiltered upload"
|
660 |
msgstr "Subir sin filtrado"
|
661 |
|
662 |
+
#: ../includes/class-ure-lib.php:2002
|
663 |
msgid "Edit dashboard"
|
664 |
msgstr "Editar escritorio"
|
665 |
|
666 |
+
#: ../includes/class-ure-lib.php:2003
|
667 |
msgid "Update plugins"
|
668 |
msgstr "Actualizar plugins"
|
669 |
|
670 |
+
#: ../includes/class-ure-lib.php:2004
|
671 |
msgid "Delete plugins"
|
672 |
msgstr "Eliminar plugins"
|
673 |
|
674 |
+
#: ../includes/class-ure-lib.php:2005
|
675 |
msgid "Install plugins"
|
676 |
msgstr "Instalar plugins"
|
677 |
|
678 |
+
#: ../includes/class-ure-lib.php:2006
|
679 |
msgid "Update themes"
|
680 |
msgstr "Actualizar temas (plantillas)"
|
681 |
|
682 |
+
#: ../includes/class-ure-lib.php:2007
|
683 |
msgid "Install themes"
|
684 |
msgstr "Instalar temas (plantillas)"
|
685 |
|
686 |
+
#: ../includes/class-ure-lib.php:2008
|
687 |
msgid "Update core"
|
688 |
msgstr "Actualizar núcleo"
|
689 |
|
690 |
+
#: ../includes/class-ure-lib.php:2009
|
691 |
msgid "List users"
|
692 |
msgstr "Listar usuarios"
|
693 |
|
694 |
+
#: ../includes/class-ure-lib.php:2010
|
695 |
msgid "Remove users"
|
696 |
msgstr "Eliminar usuarios"
|
697 |
|
698 |
+
#: ../includes/class-ure-lib.php:2011
|
699 |
msgid "Add users"
|
700 |
msgstr "Agregar usuarios"
|
701 |
|
702 |
+
#: ../includes/class-ure-lib.php:2012
|
703 |
msgid "Promote users"
|
704 |
msgstr "Promover usuarios"
|
705 |
|
706 |
+
#: ../includes/class-ure-lib.php:2013
|
707 |
msgid "Edit theme options"
|
708 |
msgstr "Editar opciones del tema (plantilla)"
|
709 |
|
710 |
+
#: ../includes/class-ure-lib.php:2014
|
711 |
msgid "Delete themes"
|
712 |
msgstr "Eliminar temas (plantillas)"
|
713 |
|
714 |
+
#: ../includes/class-ure-lib.php:2015
|
715 |
msgid "Export"
|
716 |
msgstr "Exportar"
|
717 |
|
718 |
+
#: ../includes/class-ure-lib.php:2125
|
719 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
720 |
msgstr ""
|
721 |
"Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2138
|
724 |
#, php-format
|
725 |
msgid "Capability %s is added successfully"
|
726 |
msgstr "La Capacidad %s fue agregada exitosamente"
|
727 |
|
728 |
+
#: ../includes/class-ure-lib.php:2140
|
729 |
#, php-format
|
730 |
msgid "Capability %s exists already"
|
731 |
msgstr "La Capacidad %s ya existe"
|
732 |
|
733 |
+
#: ../includes/class-ure-lib.php:2165
|
734 |
#, php-format
|
735 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
736 |
msgstr ""
|
737 |
"¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
|
738 |
|
739 |
+
#: ../includes/class-ure-lib.php:2184
|
740 |
#, php-format
|
741 |
msgid "Capability %s is removed successfully"
|
742 |
msgstr "La Capacidad %s fue eliminada exitosamente"
|
743 |
|
744 |
+
#: ../includes/class-ure-lib.php:2288
|
745 |
msgid "Version:"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: ../includes/class-ure-lib.php:2289
|
749 |
msgid "Author's website"
|
750 |
msgstr "Sitio web del Autor"
|
751 |
|
752 |
+
#: ../includes/class-ure-lib.php:2290
|
753 |
msgid "Plugin webpage"
|
754 |
msgstr "Página web del Plugin"
|
755 |
|
756 |
+
#: ../includes/class-ure-lib.php:2291
|
757 |
#, fuzzy
|
758 |
msgid "Plugin download"
|
759 |
msgstr "Página web del Plugin"
|
760 |
|
761 |
+
#: ../includes/class-ure-lib.php:2293
|
762 |
msgid "FAQ"
|
763 |
msgstr "FAQ"
|
764 |
|
765 |
+
#: ../includes/class-ure-lib.php:2341
|
766 |
msgid "None"
|
767 |
msgstr "Ninguno"
|
768 |
|
769 |
+
#: ../includes/class-ure-lib.php:2368
|
770 |
msgid "Delete All Unused Roles"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: ../includes/class-ure-lib.php:2392
|
774 |
msgid "— No role for this site —"
|
775 |
msgstr ""
|
776 |
|
816 |
"deprecated capabilities."
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: ../includes/class-ure-screen-help.php:41
|
820 |
+
#, fuzzy
|
821 |
+
msgid "select roles below"
|
822 |
+
msgstr "Deseleccionar todo"
|
823 |
+
|
824 |
+
#: ../includes/class-ure-screen-help.php:56
|
825 |
+
msgid "Other default roles for new registered user"
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
#: ../includes/class-ure-screen-help.php:57
|
829 |
+
msgid ""
|
830 |
+
"select roles below to assign them to the new user automatically as an "
|
831 |
+
"addition to the primary role. Note for multisite environment: take into "
|
832 |
+
"account that other default roles should exist at the site, in order to be "
|
833 |
+
"assigned to the new registered users."
|
834 |
+
msgstr ""
|
835 |
+
|
836 |
+
#: ../includes/class-ure-screen-help.php:75
|
837 |
+
msgid "Allow non super-admininstrators to create, edit and delete users"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: ../includes/class-ure-screen-help.php:76
|
841 |
msgid ""
|
842 |
"Super administrator only may create, edit and delete users under WordPress "
|
843 |
+
"multi-site by default. Turn this option on in order to remove this "
|
844 |
+
"limitation."
|
845 |
msgstr ""
|
846 |
|
847 |
#~ msgid "About this Plugin:"
|
lang/ure-fa_IR.mo
CHANGED
Binary file
|
lang/ure-fa_IR.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: 2014-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: Morteza Gholami <Morteza.Gholami@Yahoo.Com>\n"
|
@@ -22,58 +22,63 @@ msgid "User Role Editor - Options"
|
|
22 |
msgstr "ویرایشگر نقش کاربر - تنظیمات"
|
23 |
|
24 |
#: ../includes/settings-template.php:21
|
|
|
25 |
msgid "General"
|
26 |
msgstr "عمومی"
|
27 |
|
28 |
-
#: ../includes/settings-template.php:
|
|
|
29 |
msgid "Additional Modules"
|
30 |
msgstr "ماژولهای اضافی"
|
31 |
|
32 |
-
#: ../includes/settings-template.php:
|
|
|
33 |
msgid "Default Roles"
|
34 |
msgstr "نقشهای پیشفرض"
|
35 |
|
36 |
-
#: ../includes/settings-template.php:
|
|
|
37 |
msgid "Multisite"
|
38 |
msgstr "چندسایتی"
|
39 |
|
40 |
-
#: ../includes/settings-template.php:
|
41 |
msgid "About"
|
42 |
msgstr "درباره"
|
43 |
|
44 |
-
#: ../includes/settings-template.php:
|
45 |
#: ../includes/class-ure-screen-help.php:15
|
46 |
msgid "Show Administrator role at User Role Editor"
|
47 |
msgstr "نمایش نقش مدیر در ویرایشگر نقش کاربر"
|
48 |
|
49 |
-
#: ../includes/settings-template.php:
|
50 |
#: ../includes/class-ure-screen-help.php:18
|
51 |
msgid "Show capabilities in the human readable form"
|
52 |
msgstr "نمایش قابلیتها در حالت قابل خواندن برای انسان"
|
53 |
|
54 |
-
#: ../includes/settings-template.php:
|
55 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
56 |
msgid "Show deprecated capabilities"
|
57 |
msgstr "نمایش قابلیتهای بد دانسته شده"
|
58 |
|
59 |
-
#: ../includes/settings-template.php:
|
60 |
-
#: ../includes/settings-template.php:
|
61 |
msgid "Save"
|
62 |
msgstr "ذخیره"
|
63 |
|
64 |
-
#: ../includes/settings-template.php:
|
|
|
65 |
msgid "Count users without role"
|
66 |
msgstr "شمارش کاربران بدون نقش"
|
67 |
|
68 |
-
#: ../includes/settings-template.php:
|
69 |
msgid "Primary default role: "
|
70 |
msgstr "نقش پیشفرض اولیه: "
|
71 |
|
72 |
-
#: ../includes/settings-template.php:
|
73 |
msgid "Other default roles for new registered user: "
|
74 |
msgstr "دیگر نقشهای پیشفرض برای کاربران تازه ثبتنام شده: "
|
75 |
|
76 |
-
#: ../includes/settings-template.php:
|
77 |
msgid ""
|
78 |
"Note for multisite environment: take into account that other default roles "
|
79 |
"should exist at the site, in order to be assigned to the new registered "
|
@@ -82,7 +87,7 @@ msgstr ""
|
|
82 |
"قابل توجه محیط چند سایتی: رفتن به حسابی که در سایت نقشهای پیش فرض دیگری "
|
83 |
"موجود است، به منظور اختصاص دادن به کاربران تازه ثبتنام شده."
|
84 |
|
85 |
-
#: ../includes/settings-template.php:
|
86 |
msgid "Allow non super administrators to create, edit, and delete users"
|
87 |
msgstr "اجازه به غیر مدیران اصلی برای ایجاد، ویرایش و حذف کاربران"
|
88 |
|
@@ -103,128 +108,124 @@ msgstr "ارائهی نقش جدید"
|
|
103 |
msgid "You do not have permission to edit this user."
|
104 |
msgstr "شما اجازهی ویرایش این کاربر را ندارید."
|
105 |
|
106 |
-
#: ../includes/class-user-role-editor.php:
|
107 |
msgid "Capabilities"
|
108 |
msgstr "قابلیتها"
|
109 |
|
110 |
-
#: ../includes/class-user-role-editor.php:
|
111 |
msgid "Settings"
|
112 |
msgstr "تنظیمات"
|
113 |
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
-
#: ../includes/class-ure-lib.php:
|
116 |
msgid "Changelog"
|
117 |
msgstr "گزارش تغییرات"
|
118 |
|
119 |
-
#: ../includes/class-user-role-editor.php:
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
#: ../includes/class-user-role-editor.php:561
|
124 |
-
#: ../includes/class-user-role-editor.php:589
|
125 |
-
#: ../includes/class-user-role-editor.php:930
|
126 |
-
#: ../includes/class-ure-lib.php:232
|
127 |
msgid "User Role Editor"
|
128 |
msgstr "ویرایشگر نقش کاربر"
|
129 |
|
130 |
-
#: ../includes/class-user-role-editor.php:
|
131 |
-
#: ../includes/class-user-role-editor.php:
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
msgid "User Role Editor options are updated"
|
134 |
msgstr "تنظیمات ویرایشگر نقش کاربر بروز شد"
|
135 |
|
136 |
-
#: ../includes/class-user-role-editor.php:
|
137 |
msgid "Default Roles are updated"
|
138 |
msgstr "نقشهای پیش فرض بروز شدند"
|
139 |
|
140 |
-
#: ../includes/class-user-role-editor.php:
|
141 |
msgid ""
|
142 |
"You do not have sufficient permissions to manage options for User Role "
|
143 |
"Editor."
|
144 |
msgstr "شما مجوز کافی برای مدیریت تنظیمات ویرایشگر نقش کاربر را ندارید."
|
145 |
|
146 |
-
#: ../includes/class-user-role-editor.php:
|
147 |
msgid "Insufficient permissions to work with User Role Editor"
|
148 |
msgstr "مجوز ناکافی برای کار با ویرایشگر نقش کاربر"
|
149 |
|
150 |
-
#: ../includes/class-user-role-editor.php:
|
151 |
msgid "Select All"
|
152 |
msgstr "انتخاب همه"
|
153 |
|
154 |
-
#: ../includes/class-user-role-editor.php:
|
155 |
msgid "Unselect All"
|
156 |
msgstr "عدمانتخاب همه"
|
157 |
|
158 |
-
#: ../includes/class-user-role-editor.php:
|
159 |
msgid "Reverse"
|
160 |
msgstr "وارونه"
|
161 |
|
162 |
-
#: ../includes/class-user-role-editor.php:
|
163 |
msgid "Update"
|
164 |
msgstr "بروزرسانی"
|
165 |
|
166 |
-
#: ../includes/class-user-role-editor.php:
|
167 |
msgid "Please confirm permissions update"
|
168 |
msgstr "لطفا مجوز بروزرسانی را تایید کنید"
|
169 |
|
170 |
-
#: ../includes/class-user-role-editor.php:
|
171 |
msgid "Add New Role"
|
172 |
msgstr "افزودن نقش جدید"
|
173 |
|
174 |
-
#: ../includes/class-user-role-editor.php:
|
175 |
-
#: ../includes/class-user-role-editor.php:
|
176 |
#, fuzzy
|
177 |
msgid "Rename Role"
|
178 |
msgstr "حذف نقش"
|
179 |
|
180 |
-
#: ../includes/class-user-role-editor.php:
|
181 |
msgid " Role name (ID) can not be empty!"
|
182 |
msgstr " نام نقش (شناسه) نمی تواند خالی باشد!"
|
183 |
|
184 |
-
#: ../includes/class-user-role-editor.php:
|
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:
|
192 |
msgid ""
|
193 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
194 |
"it."
|
195 |
msgstr ""
|
196 |
" وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه کنید."
|
197 |
|
198 |
-
#: ../includes/class-user-role-editor.php:
|
199 |
msgid "Add Role"
|
200 |
msgstr "افزودن نقش"
|
201 |
|
202 |
-
#: ../includes/class-user-role-editor.php:
|
203 |
msgid "Delete Role"
|
204 |
msgstr "حذف نقش"
|
205 |
|
206 |
-
#: ../includes/class-user-role-editor.php:
|
207 |
msgid "Cancel"
|
208 |
msgstr "لغو"
|
209 |
|
210 |
-
#: ../includes/class-user-role-editor.php:
|
211 |
msgid "Add Capability"
|
212 |
msgstr "افزودن قابلیت"
|
213 |
|
214 |
-
#: ../includes/class-user-role-editor.php:
|
215 |
-
#: ../includes/class-user-role-editor.php:
|
216 |
msgid "Delete Capability"
|
217 |
msgstr "حذف قابلیت"
|
218 |
|
219 |
-
#: ../includes/class-user-role-editor.php:
|
220 |
msgid "Reset"
|
221 |
msgstr "بازنشانی"
|
222 |
|
223 |
-
#: ../includes/class-user-role-editor.php:
|
224 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
225 |
msgstr "خطر! بازنشانی، تنظیمات پیشفرض را از هستهی وردپرس بازمیگرداند."
|
226 |
|
227 |
-
#: ../includes/class-user-role-editor.php:
|
228 |
msgid ""
|
229 |
"If any plugins have changed capabilities in any way upon installation (such "
|
230 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -232,7 +233,7 @@ msgstr ""
|
|
232 |
"اگر هریک از افزونهها پس از نصب به هر نحو قابلیتها را تغییر دهند (مانند "
|
233 |
"S2Member ، WooCommerce و بسیاری دیگر) آن قابلیتها حذف خواهند شد!"
|
234 |
|
235 |
-
#: ../includes/class-user-role-editor.php:
|
236 |
msgid ""
|
237 |
"For more information on how to undo changes and restore plugin capabilities "
|
238 |
"go to"
|
@@ -240,19 +241,19 @@ msgstr ""
|
|
240 |
"برای کسب اطلاعات بیشتر درباره چگونگی خنثیسازی تغییرات و ترمیمکردن قابلیت ها "
|
241 |
"مراجعه کنید به"
|
242 |
|
243 |
-
#: ../includes/class-user-role-editor.php:
|
244 |
msgid "Continue?"
|
245 |
msgstr "ادامه؟"
|
246 |
|
247 |
-
#: ../includes/class-user-role-editor.php:
|
248 |
msgid "Default Role"
|
249 |
msgstr "نقش پیشفرض"
|
250 |
|
251 |
-
#: ../includes/class-user-role-editor.php:
|
252 |
msgid "Set New Default Role"
|
253 |
msgstr "نشاندن نقش پیشفرض جدید"
|
254 |
|
255 |
-
#: ../includes/class-user-role-editor.php:
|
256 |
msgid ""
|
257 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
258 |
"or other custom code"
|
@@ -260,23 +261,23 @@ msgstr ""
|
|
260 |
"اخطار! مراقب باشید - حذف قابلیت مهم میتواند برخی از افزونهها یا دیگر کدهای "
|
261 |
"سفارشی را دچار سانحه کند"
|
262 |
|
263 |
-
#: ../includes/class-user-role-editor.php:
|
264 |
msgid " Capability name (ID) can not be empty!"
|
265 |
msgstr " نام قابلیت (شناسه) نمی تواند خالی باشد!"
|
266 |
|
267 |
-
#: ../includes/class-user-role-editor.php:
|
268 |
msgid ""
|
269 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
270 |
"underscore only!"
|
271 |
msgstr ""
|
272 |
" نام قابلیت (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
273 |
|
274 |
-
#: ../includes/class-user-role-editor.php:
|
275 |
-
#: ../includes/class-user-role-editor.php:
|
276 |
msgid "Other Roles"
|
277 |
msgstr "دیگر نقشها"
|
278 |
|
279 |
-
#: ../includes/class-user-role-editor.php:
|
280 |
msgid "Edit"
|
281 |
msgstr "ویرایش"
|
282 |
|
@@ -308,86 +309,86 @@ msgstr "فیلتر سریع:"
|
|
308 |
msgid "Custom capabilities:"
|
309 |
msgstr "قابلیتهای سفارشی:"
|
310 |
|
311 |
-
#: ../includes/class-ure-lib.php:
|
312 |
msgid "Error: wrong request"
|
313 |
msgstr "خطا: درخواست اشتباه"
|
314 |
|
315 |
-
#: ../includes/class-ure-lib.php:
|
316 |
msgid "Role name (ID): "
|
317 |
msgstr "نام نقش (شناسه): "
|
318 |
|
319 |
-
#: ../includes/class-ure-lib.php:
|
320 |
msgid "Display Role Name: "
|
321 |
msgstr "نمایش نام نقش: "
|
322 |
|
323 |
-
#: ../includes/class-ure-lib.php:
|
324 |
msgid "Make copy of: "
|
325 |
msgstr "ایجاد رونوشت از: "
|
326 |
|
327 |
-
#: ../includes/class-ure-lib.php:
|
328 |
msgid "Select Role:"
|
329 |
msgstr "انتخاب نقش:"
|
330 |
|
331 |
-
#: ../includes/class-ure-lib.php:
|
332 |
msgid "Delete:"
|
333 |
msgstr "حذف:"
|
334 |
|
335 |
-
#: ../includes/class-ure-lib.php:
|
336 |
msgid "Capability name (ID): "
|
337 |
msgstr "نام قابلیت (شناسه): "
|
338 |
|
339 |
-
#: ../includes/class-ure-lib.php:
|
340 |
msgid "Error: "
|
341 |
msgstr "خطا: "
|
342 |
|
343 |
-
#: ../includes/class-ure-lib.php:
|
344 |
msgid "Role"
|
345 |
msgstr "نقش"
|
346 |
|
347 |
-
#: ../includes/class-ure-lib.php:
|
348 |
msgid "does not exist"
|
349 |
msgstr "موجود نمیباشد"
|
350 |
|
351 |
-
#: ../includes/class-ure-lib.php:
|
352 |
msgid "Role is updated successfully"
|
353 |
msgstr "نقش با موفقیت بروز شد"
|
354 |
|
355 |
-
#: ../includes/class-ure-lib.php:
|
356 |
msgid "Roles are updated for all network"
|
357 |
msgstr "نقشها برای تمامی شبکه بروز شد"
|
358 |
|
359 |
-
#: ../includes/class-ure-lib.php:
|
360 |
msgid "Error occured during role(s) update"
|
361 |
msgstr "خطایی در هنگام بروزسانی نقش(ها) رخ داد"
|
362 |
|
363 |
-
#: ../includes/class-ure-lib.php:
|
364 |
msgid "User capabilities are updated successfully"
|
365 |
msgstr "قابلیتهای کاربر با موفقیت بروز شدند"
|
366 |
|
367 |
-
#: ../includes/class-ure-lib.php:
|
368 |
msgid "Error occured during user update"
|
369 |
msgstr "خطایی در هنگام بروزرسانی کاربر رخ داد"
|
370 |
|
371 |
-
#: ../includes/class-ure-lib.php:
|
372 |
msgid "User Roles are restored to WordPress default values. "
|
373 |
msgstr "نقشهای کاربر به مقدار پیشفرض وردپرس ترمیم شد."
|
374 |
|
375 |
-
#: ../includes/class-ure-lib.php:
|
376 |
msgid "Help"
|
377 |
msgstr "راهنما"
|
378 |
|
379 |
-
#: ../includes/class-ure-lib.php:
|
380 |
msgid "Error is occur. Please check the log file."
|
381 |
msgstr "خطایی رخ داده است. لطفا فایل گزارش را چک کنید."
|
382 |
|
383 |
-
#: ../includes/class-ure-lib.php:
|
384 |
msgid ""
|
385 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
386 |
"only!"
|
387 |
msgstr ""
|
388 |
"خطا: شناسهی نقش باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
389 |
|
390 |
-
#: ../includes/class-ure-lib.php:
|
391 |
msgid ""
|
392 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
393 |
"characters to it."
|
@@ -395,377 +396,377 @@ msgstr ""
|
|
395 |
"خطا: وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه "
|
396 |
"کنید."
|
397 |
|
398 |
-
#: ../includes/class-ure-lib.php:
|
399 |
#, php-format
|
400 |
msgid "Role %s exists already"
|
401 |
msgstr "نقش %s از پیش موجود است"
|
402 |
|
403 |
-
#: ../includes/class-ure-lib.php:
|
404 |
msgid "Error is encountered during new role create operation"
|
405 |
msgstr "با خطایی در هنگام عملیات ساخت نقش جدید روبرو شدیم"
|
406 |
|
407 |
-
#: ../includes/class-ure-lib.php:
|
408 |
#, php-format
|
409 |
msgid "Role %s is created successfully"
|
410 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
411 |
|
412 |
-
#: ../includes/class-ure-lib.php:
|
413 |
msgid "Error: Role ID is empty!"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: ../includes/class-ure-lib.php:
|
417 |
msgid "Error: Empty role display name is not allowed."
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: ../includes/class-ure-lib.php:
|
421 |
#, fuzzy, php-format
|
422 |
msgid "Role %s does not exists"
|
423 |
msgstr "موجود نمیباشد"
|
424 |
|
425 |
-
#: ../includes/class-ure-lib.php:
|
426 |
#, fuzzy, php-format
|
427 |
msgid "Role %s is renamed to %s successfully"
|
428 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
429 |
|
430 |
-
#: ../includes/class-ure-lib.php:
|
431 |
msgid "Error encountered during role delete operation"
|
432 |
msgstr "با خطایی در هنگام عملیات حذف نقش روبرو شدیم"
|
433 |
|
434 |
-
#: ../includes/class-ure-lib.php:
|
435 |
msgid "Unused roles are deleted successfully"
|
436 |
msgstr "نقشهای استفاده نشده با موفقیت حذف شدند"
|
437 |
|
438 |
-
#: ../includes/class-ure-lib.php:
|
439 |
#, php-format
|
440 |
msgid "Role %s is deleted successfully"
|
441 |
msgstr "نقش %s با موفقیت حذف شد"
|
442 |
|
443 |
-
#: ../includes/class-ure-lib.php:
|
444 |
msgid "Error encountered during default role change operation"
|
445 |
msgstr "با خطایی در هنگام عملیات تغییر نقش پیشفرض روبرو شدیم"
|
446 |
|
447 |
-
#: ../includes/class-ure-lib.php:
|
448 |
#, php-format
|
449 |
msgid "Default role for new users is set to %s successfully"
|
450 |
msgstr "نقش پیشفرض برای کاربران جدید با موفقیت روی %s نشانده شد"
|
451 |
|
452 |
-
#: ../includes/class-ure-lib.php:
|
453 |
msgid "Editor"
|
454 |
msgstr "ویرایشگر"
|
455 |
|
456 |
-
#: ../includes/class-ure-lib.php:
|
457 |
msgid "Author"
|
458 |
msgstr "نویسنده"
|
459 |
|
460 |
-
#: ../includes/class-ure-lib.php:
|
461 |
msgid "Contributor"
|
462 |
msgstr "مشارکتکننده"
|
463 |
|
464 |
-
#: ../includes/class-ure-lib.php:
|
465 |
msgid "Subscriber"
|
466 |
msgstr "مشترک"
|
467 |
|
468 |
-
#: ../includes/class-ure-lib.php:
|
469 |
msgid "Switch themes"
|
470 |
msgstr "تغییر پوستهها"
|
471 |
|
472 |
-
#: ../includes/class-ure-lib.php:
|
473 |
msgid "Edit themes"
|
474 |
msgstr "ویرایش پوستهها"
|
475 |
|
476 |
-
#: ../includes/class-ure-lib.php:
|
477 |
msgid "Activate plugins"
|
478 |
msgstr "فعالسازی افزونهها"
|
479 |
|
480 |
-
#: ../includes/class-ure-lib.php:
|
481 |
msgid "Edit plugins"
|
482 |
msgstr "ویرایش افزونهها"
|
483 |
|
484 |
-
#: ../includes/class-ure-lib.php:
|
485 |
msgid "Edit users"
|
486 |
msgstr "ویرایش کاربران"
|
487 |
|
488 |
-
#: ../includes/class-ure-lib.php:
|
489 |
msgid "Edit files"
|
490 |
msgstr "ویرایش فایلها"
|
491 |
|
492 |
-
#: ../includes/class-ure-lib.php:
|
493 |
msgid "Manage options"
|
494 |
msgstr "مدیریت تنظیمات"
|
495 |
|
496 |
-
#: ../includes/class-ure-lib.php:
|
497 |
msgid "Moderate comments"
|
498 |
msgstr "مدیریت دیدگاهها"
|
499 |
|
500 |
-
#: ../includes/class-ure-lib.php:
|
501 |
msgid "Manage categories"
|
502 |
msgstr "مدیریت دستهها"
|
503 |
|
504 |
-
#: ../includes/class-ure-lib.php:
|
505 |
msgid "Manage links"
|
506 |
msgstr "مدیریت پیوندها"
|
507 |
|
508 |
-
#: ../includes/class-ure-lib.php:
|
509 |
msgid "Upload files"
|
510 |
msgstr "بارگذاری فایلها"
|
511 |
|
512 |
-
#: ../includes/class-ure-lib.php:
|
513 |
msgid "Import"
|
514 |
msgstr "درونریزی"
|
515 |
|
516 |
-
#: ../includes/class-ure-lib.php:
|
517 |
msgid "Unfiltered html"
|
518 |
msgstr "اچتیامال فیلترنشده"
|
519 |
|
520 |
-
#: ../includes/class-ure-lib.php:
|
521 |
msgid "Edit posts"
|
522 |
msgstr "ویرایش نوشتهها"
|
523 |
|
524 |
-
#: ../includes/class-ure-lib.php:
|
525 |
msgid "Edit others posts"
|
526 |
msgstr "ویرایش نوشتهی دیگران"
|
527 |
|
528 |
-
#: ../includes/class-ure-lib.php:
|
529 |
msgid "Edit published posts"
|
530 |
msgstr "ویرایش نوشتههای منتشرشده"
|
531 |
|
532 |
-
#: ../includes/class-ure-lib.php:
|
533 |
msgid "Publish posts"
|
534 |
msgstr "انتشار نوشتهها"
|
535 |
|
536 |
-
#: ../includes/class-ure-lib.php:
|
537 |
msgid "Edit pages"
|
538 |
msgstr "ویرایش صفحات"
|
539 |
|
540 |
-
#: ../includes/class-ure-lib.php:
|
541 |
msgid "Read"
|
542 |
msgstr "خواندن"
|
543 |
|
544 |
-
#: ../includes/class-ure-lib.php:
|
545 |
msgid "Level 10"
|
546 |
msgstr "سطح ۱۰"
|
547 |
|
548 |
-
#: ../includes/class-ure-lib.php:
|
549 |
msgid "Level 9"
|
550 |
msgstr "سطح ۹"
|
551 |
|
552 |
-
#: ../includes/class-ure-lib.php:
|
553 |
msgid "Level 8"
|
554 |
msgstr "سطح ۸"
|
555 |
|
556 |
-
#: ../includes/class-ure-lib.php:
|
557 |
msgid "Level 7"
|
558 |
msgstr "سطح ۷"
|
559 |
|
560 |
-
#: ../includes/class-ure-lib.php:
|
561 |
msgid "Level 6"
|
562 |
msgstr "سطح ۶"
|
563 |
|
564 |
-
#: ../includes/class-ure-lib.php:
|
565 |
msgid "Level 5"
|
566 |
msgstr "سطح ۵"
|
567 |
|
568 |
-
#: ../includes/class-ure-lib.php:
|
569 |
msgid "Level 4"
|
570 |
msgstr "سطح ۴"
|
571 |
|
572 |
-
#: ../includes/class-ure-lib.php:
|
573 |
msgid "Level 3"
|
574 |
msgstr "سطح ۳"
|
575 |
|
576 |
-
#: ../includes/class-ure-lib.php:
|
577 |
msgid "Level 2"
|
578 |
msgstr "سطح ۲"
|
579 |
|
580 |
-
#: ../includes/class-ure-lib.php:
|
581 |
msgid "Level 1"
|
582 |
msgstr "سطح ۱"
|
583 |
|
584 |
-
#: ../includes/class-ure-lib.php:
|
585 |
msgid "Level 0"
|
586 |
msgstr "سطح ۰"
|
587 |
|
588 |
-
#: ../includes/class-ure-lib.php:
|
589 |
msgid "Edit others pages"
|
590 |
msgstr "ویرایش صفحات دیگران"
|
591 |
|
592 |
-
#: ../includes/class-ure-lib.php:
|
593 |
msgid "Edit published pages"
|
594 |
msgstr "ویرایش صفحات منتشرشده"
|
595 |
|
596 |
-
#: ../includes/class-ure-lib.php:
|
597 |
msgid "Publish pages"
|
598 |
msgstr "انتشار صفحات"
|
599 |
|
600 |
-
#: ../includes/class-ure-lib.php:
|
601 |
msgid "Delete pages"
|
602 |
msgstr "حذف صفحات"
|
603 |
|
604 |
-
#: ../includes/class-ure-lib.php:
|
605 |
msgid "Delete others pages"
|
606 |
msgstr "حذف صفحات دیگران"
|
607 |
|
608 |
-
#: ../includes/class-ure-lib.php:
|
609 |
msgid "Delete published pages"
|
610 |
msgstr "حذف صفحات منتشرشده"
|
611 |
|
612 |
-
#: ../includes/class-ure-lib.php:
|
613 |
msgid "Delete posts"
|
614 |
msgstr "حذف صفحات"
|
615 |
|
616 |
-
#: ../includes/class-ure-lib.php:
|
617 |
msgid "Delete others posts"
|
618 |
msgstr "حذف نوشتههای دیگران"
|
619 |
|
620 |
-
#: ../includes/class-ure-lib.php:
|
621 |
msgid "Delete published posts"
|
622 |
msgstr "حذف نوشتههای منتشرشده"
|
623 |
|
624 |
-
#: ../includes/class-ure-lib.php:
|
625 |
msgid "Delete private posts"
|
626 |
msgstr "حذف نوشتههای خصوصی"
|
627 |
|
628 |
-
#: ../includes/class-ure-lib.php:
|
629 |
msgid "Edit private posts"
|
630 |
msgstr "ویرایش نوشتههای خصوصی"
|
631 |
|
632 |
-
#: ../includes/class-ure-lib.php:
|
633 |
msgid "Read private posts"
|
634 |
msgstr "خواندن نوشتههای خصوصی"
|
635 |
|
636 |
-
#: ../includes/class-ure-lib.php:
|
637 |
msgid "Delete private pages"
|
638 |
msgstr "حذف صفحات خصوصی"
|
639 |
|
640 |
-
#: ../includes/class-ure-lib.php:
|
641 |
msgid "Edit private pages"
|
642 |
msgstr "ویرایش صفحات خصوصی"
|
643 |
|
644 |
-
#: ../includes/class-ure-lib.php:
|
645 |
msgid "Read private pages"
|
646 |
msgstr "خواندن صفحات خصوصی"
|
647 |
|
648 |
-
#: ../includes/class-ure-lib.php:
|
649 |
msgid "Delete users"
|
650 |
msgstr "حذف کاربران"
|
651 |
|
652 |
-
#: ../includes/class-ure-lib.php:
|
653 |
msgid "Create users"
|
654 |
msgstr "ایجاد کاربران"
|
655 |
|
656 |
-
#: ../includes/class-ure-lib.php:
|
657 |
msgid "Unfiltered upload"
|
658 |
msgstr "بارگذاری فیلترشده"
|
659 |
|
660 |
-
#: ../includes/class-ure-lib.php:
|
661 |
msgid "Edit dashboard"
|
662 |
msgstr "ویرایش پیشخوان"
|
663 |
|
664 |
-
#: ../includes/class-ure-lib.php:
|
665 |
msgid "Update plugins"
|
666 |
msgstr "بروزرسانی افزونهها"
|
667 |
|
668 |
-
#: ../includes/class-ure-lib.php:
|
669 |
msgid "Delete plugins"
|
670 |
msgstr "حذف افزونهها"
|
671 |
|
672 |
-
#: ../includes/class-ure-lib.php:
|
673 |
msgid "Install plugins"
|
674 |
msgstr "نصب افزونهها"
|
675 |
|
676 |
-
#: ../includes/class-ure-lib.php:
|
677 |
msgid "Update themes"
|
678 |
msgstr "بروزرسانی پوستهها"
|
679 |
|
680 |
-
#: ../includes/class-ure-lib.php:
|
681 |
msgid "Install themes"
|
682 |
msgstr "نصب پوستهها"
|
683 |
|
684 |
-
#: ../includes/class-ure-lib.php:
|
685 |
msgid "Update core"
|
686 |
msgstr "بروزرسانی هسته"
|
687 |
|
688 |
-
#: ../includes/class-ure-lib.php:
|
689 |
msgid "List users"
|
690 |
msgstr "فهرست کاربران"
|
691 |
|
692 |
-
#: ../includes/class-ure-lib.php:
|
693 |
msgid "Remove users"
|
694 |
msgstr "حذف کابران"
|
695 |
|
696 |
-
#: ../includes/class-ure-lib.php:
|
697 |
msgid "Add users"
|
698 |
msgstr "افزودن کاربران"
|
699 |
|
700 |
-
#: ../includes/class-ure-lib.php:
|
701 |
msgid "Promote users"
|
702 |
msgstr "ارتقاء کاربران"
|
703 |
|
704 |
-
#: ../includes/class-ure-lib.php:
|
705 |
msgid "Edit theme options"
|
706 |
msgstr "ویرایش تنظیمات پوسته"
|
707 |
|
708 |
-
#: ../includes/class-ure-lib.php:
|
709 |
msgid "Delete themes"
|
710 |
msgstr "حذف پوستهها"
|
711 |
|
712 |
-
#: ../includes/class-ure-lib.php:
|
713 |
msgid "Export"
|
714 |
msgstr "برونریزی"
|
715 |
|
716 |
-
#: ../includes/class-ure-lib.php:
|
717 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
718 |
msgstr "خطا: نام قابلیت باید فقط شامل حروف لاتین و اعداد باشد!"
|
719 |
|
720 |
-
#: ../includes/class-ure-lib.php:
|
721 |
#, php-format
|
722 |
msgid "Capability %s is added successfully"
|
723 |
msgstr "قابلیت %s با موفقیت افزوده شد"
|
724 |
|
725 |
-
#: ../includes/class-ure-lib.php:
|
726 |
#, php-format
|
727 |
msgid "Capability %s exists already"
|
728 |
msgstr "قابلیت %s از پیش موجود است"
|
729 |
|
730 |
-
#: ../includes/class-ure-lib.php:
|
731 |
#, php-format
|
732 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
733 |
msgstr "خطا! شما اجازهی حذف این قابلیت را ندارید: %s!"
|
734 |
|
735 |
-
#: ../includes/class-ure-lib.php:
|
736 |
#, php-format
|
737 |
msgid "Capability %s is removed successfully"
|
738 |
msgstr "قابلیت %s با موفقیت حذف شد"
|
739 |
|
740 |
-
#: ../includes/class-ure-lib.php:
|
741 |
msgid "Version:"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: ../includes/class-ure-lib.php:
|
745 |
msgid "Author's website"
|
746 |
msgstr "وبگاه نویسنده"
|
747 |
|
748 |
-
#: ../includes/class-ure-lib.php:
|
749 |
msgid "Plugin webpage"
|
750 |
msgstr "صفحه افزونه"
|
751 |
|
752 |
-
#: ../includes/class-ure-lib.php:
|
753 |
msgid "Plugin download"
|
754 |
msgstr "بارگیری افزونه"
|
755 |
|
756 |
-
#: ../includes/class-ure-lib.php:
|
757 |
msgid "FAQ"
|
758 |
msgstr "سوالات مکرر"
|
759 |
|
760 |
-
#: ../includes/class-ure-lib.php:
|
761 |
msgid "None"
|
762 |
msgstr "هیچکدام"
|
763 |
|
764 |
-
#: ../includes/class-ure-lib.php:
|
765 |
msgid "Delete All Unused Roles"
|
766 |
msgstr "حذف همهی نقشهای استفادهنشده"
|
767 |
|
768 |
-
#: ../includes/class-ure-lib.php:
|
769 |
msgid "— No role for this site —"
|
770 |
msgstr "— هیچ نقشی برای این سایت —"
|
771 |
|
@@ -821,14 +822,44 @@ msgstr ""
|
|
821 |
"کد افزونهها باقی گذاشته شدهاند. روشن کردن این گزینه، آن قابلیتهای بد دانسته "
|
822 |
"شده را نمایش میدهد."
|
823 |
|
824 |
-
#: ../includes/class-ure-screen-help.php:
|
825 |
-
|
826 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
827 |
|
828 |
-
#: ../includes/class-ure-screen-help.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
829 |
msgid ""
|
830 |
"Super administrator only may create, edit and delete users under WordPress "
|
831 |
-
"multi-site. Turn this option on in order to remove this
|
|
|
832 |
msgstr ""
|
833 |
"در وردپرس چند سایتی تنها مدیران اصلی اجازهی ایجاد، ویرایش و حذف کاربران را "
|
834 |
"دارند. این "
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-01 12:45+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: Morteza Gholami <Morteza.Gholami@Yahoo.Com>\n"
|
22 |
msgstr "ویرایشگر نقش کاربر - تنظیمات"
|
23 |
|
24 |
#: ../includes/settings-template.php:21
|
25 |
+
#: ../includes/class-user-role-editor.php:547
|
26 |
msgid "General"
|
27 |
msgstr "عمومی"
|
28 |
|
29 |
+
#: ../includes/settings-template.php:26
|
30 |
+
#: ../includes/class-user-role-editor.php:553
|
31 |
msgid "Additional Modules"
|
32 |
msgstr "ماژولهای اضافی"
|
33 |
|
34 |
+
#: ../includes/settings-template.php:30
|
35 |
+
#: ../includes/class-user-role-editor.php:559
|
36 |
msgid "Default Roles"
|
37 |
msgstr "نقشهای پیشفرض"
|
38 |
|
39 |
+
#: ../includes/settings-template.php:34
|
40 |
+
#: ../includes/class-user-role-editor.php:564
|
41 |
msgid "Multisite"
|
42 |
msgstr "چندسایتی"
|
43 |
|
44 |
+
#: ../includes/settings-template.php:39
|
45 |
msgid "About"
|
46 |
msgstr "درباره"
|
47 |
|
48 |
+
#: ../includes/settings-template.php:53
|
49 |
#: ../includes/class-ure-screen-help.php:15
|
50 |
msgid "Show Administrator role at User Role Editor"
|
51 |
msgstr "نمایش نقش مدیر در ویرایشگر نقش کاربر"
|
52 |
|
53 |
+
#: ../includes/settings-template.php:61
|
54 |
#: ../includes/class-ure-screen-help.php:18
|
55 |
msgid "Show capabilities in the human readable form"
|
56 |
msgstr "نمایش قابلیتها در حالت قابل خواندن برای انسان"
|
57 |
|
58 |
+
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
59 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
60 |
msgid "Show deprecated capabilities"
|
61 |
msgstr "نمایش قابلیتهای بد دانسته شده"
|
62 |
|
63 |
+
#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
|
64 |
+
#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
|
65 |
msgid "Save"
|
66 |
msgstr "ذخیره"
|
67 |
|
68 |
+
#: ../includes/settings-template.php:102
|
69 |
+
#: ../includes/class-ure-screen-help.php:40
|
70 |
msgid "Count users without role"
|
71 |
msgstr "شمارش کاربران بدون نقش"
|
72 |
|
73 |
+
#: ../includes/settings-template.php:129
|
74 |
msgid "Primary default role: "
|
75 |
msgstr "نقش پیشفرض اولیه: "
|
76 |
|
77 |
+
#: ../includes/settings-template.php:136
|
78 |
msgid "Other default roles for new registered user: "
|
79 |
msgstr "دیگر نقشهای پیشفرض برای کاربران تازه ثبتنام شده: "
|
80 |
|
81 |
+
#: ../includes/settings-template.php:142
|
82 |
msgid ""
|
83 |
"Note for multisite environment: take into account that other default roles "
|
84 |
"should exist at the site, in order to be assigned to the new registered "
|
87 |
"قابل توجه محیط چند سایتی: رفتن به حسابی که در سایت نقشهای پیش فرض دیگری "
|
88 |
"موجود است، به منظور اختصاص دادن به کاربران تازه ثبتنام شده."
|
89 |
|
90 |
+
#: ../includes/settings-template.php:168
|
91 |
msgid "Allow non super administrators to create, edit, and delete users"
|
92 |
msgstr "اجازه به غیر مدیران اصلی برای ایجاد، ویرایش و حذف کاربران"
|
93 |
|
108 |
msgid "You do not have permission to edit this user."
|
109 |
msgstr "شما اجازهی ویرایش این کاربر را ندارید."
|
110 |
|
111 |
+
#: ../includes/class-user-role-editor.php:422
|
112 |
msgid "Capabilities"
|
113 |
msgstr "قابلیتها"
|
114 |
|
115 |
+
#: ../includes/class-user-role-editor.php:514
|
116 |
msgid "Settings"
|
117 |
msgstr "تنظیمات"
|
118 |
|
119 |
+
#: ../includes/class-user-role-editor.php:525
|
120 |
+
#: ../includes/class-ure-lib.php:2292
|
121 |
msgid "Changelog"
|
122 |
msgstr "گزارش تغییرات"
|
123 |
|
124 |
+
#: ../includes/class-user-role-editor.php:573
|
125 |
+
#: ../includes/class-user-role-editor.php:601
|
126 |
+
#: ../includes/class-user-role-editor.php:946
|
127 |
+
#: ../includes/class-ure-lib.php:248
|
|
|
|
|
|
|
|
|
128 |
msgid "User Role Editor"
|
129 |
msgstr "ویرایشگر نقش کاربر"
|
130 |
|
131 |
+
#: ../includes/class-user-role-editor.php:658
|
132 |
+
#: ../includes/class-user-role-editor.php:676
|
133 |
+
#: ../includes/class-user-role-editor.php:720
|
134 |
msgid "User Role Editor options are updated"
|
135 |
msgstr "تنظیمات ویرایشگر نقش کاربر بروز شد"
|
136 |
|
137 |
+
#: ../includes/class-user-role-editor.php:704
|
138 |
msgid "Default Roles are updated"
|
139 |
msgstr "نقشهای پیش فرض بروز شدند"
|
140 |
|
141 |
+
#: ../includes/class-user-role-editor.php:728
|
142 |
msgid ""
|
143 |
"You do not have sufficient permissions to manage options for User Role "
|
144 |
"Editor."
|
145 |
msgstr "شما مجوز کافی برای مدیریت تنظیمات ویرایشگر نقش کاربر را ندارید."
|
146 |
|
147 |
+
#: ../includes/class-user-role-editor.php:807
|
148 |
msgid "Insufficient permissions to work with User Role Editor"
|
149 |
msgstr "مجوز ناکافی برای کار با ویرایشگر نقش کاربر"
|
150 |
|
151 |
+
#: ../includes/class-user-role-editor.php:888
|
152 |
msgid "Select All"
|
153 |
msgstr "انتخاب همه"
|
154 |
|
155 |
+
#: ../includes/class-user-role-editor.php:889
|
156 |
msgid "Unselect All"
|
157 |
msgstr "عدمانتخاب همه"
|
158 |
|
159 |
+
#: ../includes/class-user-role-editor.php:890
|
160 |
msgid "Reverse"
|
161 |
msgstr "وارونه"
|
162 |
|
163 |
+
#: ../includes/class-user-role-editor.php:891
|
164 |
msgid "Update"
|
165 |
msgstr "بروزرسانی"
|
166 |
|
167 |
+
#: ../includes/class-user-role-editor.php:892
|
168 |
msgid "Please confirm permissions update"
|
169 |
msgstr "لطفا مجوز بروزرسانی را تایید کنید"
|
170 |
|
171 |
+
#: ../includes/class-user-role-editor.php:893
|
172 |
msgid "Add New Role"
|
173 |
msgstr "افزودن نقش جدید"
|
174 |
|
175 |
+
#: ../includes/class-user-role-editor.php:894
|
176 |
+
#: ../includes/class-user-role-editor.php:899
|
177 |
#, fuzzy
|
178 |
msgid "Rename Role"
|
179 |
msgstr "حذف نقش"
|
180 |
|
181 |
+
#: ../includes/class-user-role-editor.php:895
|
182 |
msgid " Role name (ID) can not be empty!"
|
183 |
msgstr " نام نقش (شناسه) نمی تواند خالی باشد!"
|
184 |
|
185 |
+
#: ../includes/class-user-role-editor.php:896
|
186 |
msgid ""
|
187 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
188 |
"only!"
|
189 |
msgstr ""
|
190 |
" نام نقش (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
191 |
|
192 |
+
#: ../includes/class-user-role-editor.php:897
|
193 |
msgid ""
|
194 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
195 |
"it."
|
196 |
msgstr ""
|
197 |
" وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه کنید."
|
198 |
|
199 |
+
#: ../includes/class-user-role-editor.php:898
|
200 |
msgid "Add Role"
|
201 |
msgstr "افزودن نقش"
|
202 |
|
203 |
+
#: ../includes/class-user-role-editor.php:900
|
204 |
msgid "Delete Role"
|
205 |
msgstr "حذف نقش"
|
206 |
|
207 |
+
#: ../includes/class-user-role-editor.php:901
|
208 |
msgid "Cancel"
|
209 |
msgstr "لغو"
|
210 |
|
211 |
+
#: ../includes/class-user-role-editor.php:902
|
212 |
msgid "Add Capability"
|
213 |
msgstr "افزودن قابلیت"
|
214 |
|
215 |
+
#: ../includes/class-user-role-editor.php:903
|
216 |
+
#: ../includes/class-user-role-editor.php:912
|
217 |
msgid "Delete Capability"
|
218 |
msgstr "حذف قابلیت"
|
219 |
|
220 |
+
#: ../includes/class-user-role-editor.php:904
|
221 |
msgid "Reset"
|
222 |
msgstr "بازنشانی"
|
223 |
|
224 |
+
#: ../includes/class-user-role-editor.php:905
|
225 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
226 |
msgstr "خطر! بازنشانی، تنظیمات پیشفرض را از هستهی وردپرس بازمیگرداند."
|
227 |
|
228 |
+
#: ../includes/class-user-role-editor.php:906
|
229 |
msgid ""
|
230 |
"If any plugins have changed capabilities in any way upon installation (such "
|
231 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
233 |
"اگر هریک از افزونهها پس از نصب به هر نحو قابلیتها را تغییر دهند (مانند "
|
234 |
"S2Member ، WooCommerce و بسیاری دیگر) آن قابلیتها حذف خواهند شد!"
|
235 |
|
236 |
+
#: ../includes/class-user-role-editor.php:907
|
237 |
msgid ""
|
238 |
"For more information on how to undo changes and restore plugin capabilities "
|
239 |
"go to"
|
241 |
"برای کسب اطلاعات بیشتر درباره چگونگی خنثیسازی تغییرات و ترمیمکردن قابلیت ها "
|
242 |
"مراجعه کنید به"
|
243 |
|
244 |
+
#: ../includes/class-user-role-editor.php:909
|
245 |
msgid "Continue?"
|
246 |
msgstr "ادامه؟"
|
247 |
|
248 |
+
#: ../includes/class-user-role-editor.php:910
|
249 |
msgid "Default Role"
|
250 |
msgstr "نقش پیشفرض"
|
251 |
|
252 |
+
#: ../includes/class-user-role-editor.php:911
|
253 |
msgid "Set New Default Role"
|
254 |
msgstr "نشاندن نقش پیشفرض جدید"
|
255 |
|
256 |
+
#: ../includes/class-user-role-editor.php:913
|
257 |
msgid ""
|
258 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
259 |
"or other custom code"
|
261 |
"اخطار! مراقب باشید - حذف قابلیت مهم میتواند برخی از افزونهها یا دیگر کدهای "
|
262 |
"سفارشی را دچار سانحه کند"
|
263 |
|
264 |
+
#: ../includes/class-user-role-editor.php:914
|
265 |
msgid " Capability name (ID) can not be empty!"
|
266 |
msgstr " نام قابلیت (شناسه) نمی تواند خالی باشد!"
|
267 |
|
268 |
+
#: ../includes/class-user-role-editor.php:915
|
269 |
msgid ""
|
270 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
271 |
"underscore only!"
|
272 |
msgstr ""
|
273 |
" نام قابلیت (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
274 |
|
275 |
+
#: ../includes/class-user-role-editor.php:949
|
276 |
+
#: ../includes/class-user-role-editor.php:978
|
277 |
msgid "Other Roles"
|
278 |
msgstr "دیگر نقشها"
|
279 |
|
280 |
+
#: ../includes/class-user-role-editor.php:960
|
281 |
msgid "Edit"
|
282 |
msgstr "ویرایش"
|
283 |
|
309 |
msgid "Custom capabilities:"
|
310 |
msgstr "قابلیتهای سفارشی:"
|
311 |
|
312 |
+
#: ../includes/class-ure-lib.php:156
|
313 |
msgid "Error: wrong request"
|
314 |
msgstr "خطا: درخواست اشتباه"
|
315 |
|
316 |
+
#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
|
317 |
msgid "Role name (ID): "
|
318 |
msgstr "نام نقش (شناسه): "
|
319 |
|
320 |
+
#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
|
321 |
msgid "Display Role Name: "
|
322 |
msgstr "نمایش نام نقش: "
|
323 |
|
324 |
+
#: ../includes/class-ure-lib.php:193
|
325 |
msgid "Make copy of: "
|
326 |
msgstr "ایجاد رونوشت از: "
|
327 |
|
328 |
+
#: ../includes/class-ure-lib.php:209
|
329 |
msgid "Select Role:"
|
330 |
msgstr "انتخاب نقش:"
|
331 |
|
332 |
+
#: ../includes/class-ure-lib.php:224
|
333 |
msgid "Delete:"
|
334 |
msgstr "حذف:"
|
335 |
|
336 |
+
#: ../includes/class-ure-lib.php:231
|
337 |
msgid "Capability name (ID): "
|
338 |
msgstr "نام قابلیت (شناسه): "
|
339 |
|
340 |
+
#: ../includes/class-ure-lib.php:345
|
341 |
msgid "Error: "
|
342 |
msgstr "خطا: "
|
343 |
|
344 |
+
#: ../includes/class-ure-lib.php:345
|
345 |
msgid "Role"
|
346 |
msgstr "نقش"
|
347 |
|
348 |
+
#: ../includes/class-ure-lib.php:346
|
349 |
msgid "does not exist"
|
350 |
msgstr "موجود نمیباشد"
|
351 |
|
352 |
+
#: ../includes/class-ure-lib.php:389
|
353 |
msgid "Role is updated successfully"
|
354 |
msgstr "نقش با موفقیت بروز شد"
|
355 |
|
356 |
+
#: ../includes/class-ure-lib.php:391
|
357 |
msgid "Roles are updated for all network"
|
358 |
msgstr "نقشها برای تمامی شبکه بروز شد"
|
359 |
|
360 |
+
#: ../includes/class-ure-lib.php:397
|
361 |
msgid "Error occured during role(s) update"
|
362 |
msgstr "خطایی در هنگام بروزسانی نقش(ها) رخ داد"
|
363 |
|
364 |
+
#: ../includes/class-ure-lib.php:404
|
365 |
msgid "User capabilities are updated successfully"
|
366 |
msgstr "قابلیتهای کاربر با موفقیت بروز شدند"
|
367 |
|
368 |
+
#: ../includes/class-ure-lib.php:409
|
369 |
msgid "Error occured during user update"
|
370 |
msgstr "خطایی در هنگام بروزرسانی کاربر رخ داد"
|
371 |
|
372 |
+
#: ../includes/class-ure-lib.php:467
|
373 |
msgid "User Roles are restored to WordPress default values. "
|
374 |
msgstr "نقشهای کاربر به مقدار پیشفرض وردپرس ترمیم شد."
|
375 |
|
376 |
+
#: ../includes/class-ure-lib.php:1334
|
377 |
msgid "Help"
|
378 |
msgstr "راهنما"
|
379 |
|
380 |
+
#: ../includes/class-ure-lib.php:1692
|
381 |
msgid "Error is occur. Please check the log file."
|
382 |
msgstr "خطایی رخ داده است. لطفا فایل گزارش را چک کنید."
|
383 |
|
384 |
+
#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
|
385 |
msgid ""
|
386 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
387 |
"only!"
|
388 |
msgstr ""
|
389 |
"خطا: شناسهی نقش باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
390 |
|
391 |
+
#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
|
392 |
msgid ""
|
393 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
394 |
"characters to it."
|
396 |
"خطا: وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه "
|
397 |
"کنید."
|
398 |
|
399 |
+
#: ../includes/class-ure-lib.php:1754
|
400 |
#, php-format
|
401 |
msgid "Role %s exists already"
|
402 |
msgstr "نقش %s از پیش موجود است"
|
403 |
|
404 |
+
#: ../includes/class-ure-lib.php:1769
|
405 |
msgid "Error is encountered during new role create operation"
|
406 |
msgstr "با خطایی در هنگام عملیات ساخت نقش جدید روبرو شدیم"
|
407 |
|
408 |
+
#: ../includes/class-ure-lib.php:1771
|
409 |
#, php-format
|
410 |
msgid "Role %s is created successfully"
|
411 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:1795
|
414 |
msgid "Error: Role ID is empty!"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1813
|
418 |
msgid "Error: Empty role display name is not allowed."
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:1820
|
422 |
#, fuzzy, php-format
|
423 |
msgid "Role %s does not exists"
|
424 |
msgstr "موجود نمیباشد"
|
425 |
|
426 |
+
#: ../includes/class-ure-lib.php:1828
|
427 |
#, fuzzy, php-format
|
428 |
msgid "Role %s is renamed to %s successfully"
|
429 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:1895
|
432 |
msgid "Error encountered during role delete operation"
|
433 |
msgstr "با خطایی در هنگام عملیات حذف نقش روبرو شدیم"
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:1897
|
436 |
msgid "Unused roles are deleted successfully"
|
437 |
msgstr "نقشهای استفاده نشده با موفقیت حذف شدند"
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:1899
|
440 |
#, php-format
|
441 |
msgid "Role %s is deleted successfully"
|
442 |
msgstr "نقش %s با موفقیت حذف شد"
|
443 |
|
444 |
+
#: ../includes/class-ure-lib.php:1924
|
445 |
msgid "Error encountered during default role change operation"
|
446 |
msgstr "با خطایی در هنگام عملیات تغییر نقش پیشفرض روبرو شدیم"
|
447 |
|
448 |
+
#: ../includes/class-ure-lib.php:1930
|
449 |
#, php-format
|
450 |
msgid "Default role for new users is set to %s successfully"
|
451 |
msgstr "نقش پیشفرض برای کاربران جدید با موفقیت روی %s نشانده شد"
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:1949
|
454 |
msgid "Editor"
|
455 |
msgstr "ویرایشگر"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:1950
|
458 |
msgid "Author"
|
459 |
msgstr "نویسنده"
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:1951
|
462 |
msgid "Contributor"
|
463 |
msgstr "مشارکتکننده"
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:1952
|
466 |
msgid "Subscriber"
|
467 |
msgstr "مشترک"
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:1954
|
470 |
msgid "Switch themes"
|
471 |
msgstr "تغییر پوستهها"
|
472 |
|
473 |
+
#: ../includes/class-ure-lib.php:1955
|
474 |
msgid "Edit themes"
|
475 |
msgstr "ویرایش پوستهها"
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:1956
|
478 |
msgid "Activate plugins"
|
479 |
msgstr "فعالسازی افزونهها"
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:1957
|
482 |
msgid "Edit plugins"
|
483 |
msgstr "ویرایش افزونهها"
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:1958
|
486 |
msgid "Edit users"
|
487 |
msgstr "ویرایش کاربران"
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:1959
|
490 |
msgid "Edit files"
|
491 |
msgstr "ویرایش فایلها"
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:1960
|
494 |
msgid "Manage options"
|
495 |
msgstr "مدیریت تنظیمات"
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:1961
|
498 |
msgid "Moderate comments"
|
499 |
msgstr "مدیریت دیدگاهها"
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:1962
|
502 |
msgid "Manage categories"
|
503 |
msgstr "مدیریت دستهها"
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:1963
|
506 |
msgid "Manage links"
|
507 |
msgstr "مدیریت پیوندها"
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:1964
|
510 |
msgid "Upload files"
|
511 |
msgstr "بارگذاری فایلها"
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:1965
|
514 |
msgid "Import"
|
515 |
msgstr "درونریزی"
|
516 |
|
517 |
+
#: ../includes/class-ure-lib.php:1966
|
518 |
msgid "Unfiltered html"
|
519 |
msgstr "اچتیامال فیلترنشده"
|
520 |
|
521 |
+
#: ../includes/class-ure-lib.php:1967
|
522 |
msgid "Edit posts"
|
523 |
msgstr "ویرایش نوشتهها"
|
524 |
|
525 |
+
#: ../includes/class-ure-lib.php:1968
|
526 |
msgid "Edit others posts"
|
527 |
msgstr "ویرایش نوشتهی دیگران"
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:1969
|
530 |
msgid "Edit published posts"
|
531 |
msgstr "ویرایش نوشتههای منتشرشده"
|
532 |
|
533 |
+
#: ../includes/class-ure-lib.php:1970
|
534 |
msgid "Publish posts"
|
535 |
msgstr "انتشار نوشتهها"
|
536 |
|
537 |
+
#: ../includes/class-ure-lib.php:1971
|
538 |
msgid "Edit pages"
|
539 |
msgstr "ویرایش صفحات"
|
540 |
|
541 |
+
#: ../includes/class-ure-lib.php:1972
|
542 |
msgid "Read"
|
543 |
msgstr "خواندن"
|
544 |
|
545 |
+
#: ../includes/class-ure-lib.php:1973
|
546 |
msgid "Level 10"
|
547 |
msgstr "سطح ۱۰"
|
548 |
|
549 |
+
#: ../includes/class-ure-lib.php:1974
|
550 |
msgid "Level 9"
|
551 |
msgstr "سطح ۹"
|
552 |
|
553 |
+
#: ../includes/class-ure-lib.php:1975
|
554 |
msgid "Level 8"
|
555 |
msgstr "سطح ۸"
|
556 |
|
557 |
+
#: ../includes/class-ure-lib.php:1976
|
558 |
msgid "Level 7"
|
559 |
msgstr "سطح ۷"
|
560 |
|
561 |
+
#: ../includes/class-ure-lib.php:1977
|
562 |
msgid "Level 6"
|
563 |
msgstr "سطح ۶"
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:1978
|
566 |
msgid "Level 5"
|
567 |
msgstr "سطح ۵"
|
568 |
|
569 |
+
#: ../includes/class-ure-lib.php:1979
|
570 |
msgid "Level 4"
|
571 |
msgstr "سطح ۴"
|
572 |
|
573 |
+
#: ../includes/class-ure-lib.php:1980
|
574 |
msgid "Level 3"
|
575 |
msgstr "سطح ۳"
|
576 |
|
577 |
+
#: ../includes/class-ure-lib.php:1981
|
578 |
msgid "Level 2"
|
579 |
msgstr "سطح ۲"
|
580 |
|
581 |
+
#: ../includes/class-ure-lib.php:1982
|
582 |
msgid "Level 1"
|
583 |
msgstr "سطح ۱"
|
584 |
|
585 |
+
#: ../includes/class-ure-lib.php:1983
|
586 |
msgid "Level 0"
|
587 |
msgstr "سطح ۰"
|
588 |
|
589 |
+
#: ../includes/class-ure-lib.php:1984
|
590 |
msgid "Edit others pages"
|
591 |
msgstr "ویرایش صفحات دیگران"
|
592 |
|
593 |
+
#: ../includes/class-ure-lib.php:1985
|
594 |
msgid "Edit published pages"
|
595 |
msgstr "ویرایش صفحات منتشرشده"
|
596 |
|
597 |
+
#: ../includes/class-ure-lib.php:1986
|
598 |
msgid "Publish pages"
|
599 |
msgstr "انتشار صفحات"
|
600 |
|
601 |
+
#: ../includes/class-ure-lib.php:1987
|
602 |
msgid "Delete pages"
|
603 |
msgstr "حذف صفحات"
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:1988
|
606 |
msgid "Delete others pages"
|
607 |
msgstr "حذف صفحات دیگران"
|
608 |
|
609 |
+
#: ../includes/class-ure-lib.php:1989
|
610 |
msgid "Delete published pages"
|
611 |
msgstr "حذف صفحات منتشرشده"
|
612 |
|
613 |
+
#: ../includes/class-ure-lib.php:1990
|
614 |
msgid "Delete posts"
|
615 |
msgstr "حذف صفحات"
|
616 |
|
617 |
+
#: ../includes/class-ure-lib.php:1991
|
618 |
msgid "Delete others posts"
|
619 |
msgstr "حذف نوشتههای دیگران"
|
620 |
|
621 |
+
#: ../includes/class-ure-lib.php:1992
|
622 |
msgid "Delete published posts"
|
623 |
msgstr "حذف نوشتههای منتشرشده"
|
624 |
|
625 |
+
#: ../includes/class-ure-lib.php:1993
|
626 |
msgid "Delete private posts"
|
627 |
msgstr "حذف نوشتههای خصوصی"
|
628 |
|
629 |
+
#: ../includes/class-ure-lib.php:1994
|
630 |
msgid "Edit private posts"
|
631 |
msgstr "ویرایش نوشتههای خصوصی"
|
632 |
|
633 |
+
#: ../includes/class-ure-lib.php:1995
|
634 |
msgid "Read private posts"
|
635 |
msgstr "خواندن نوشتههای خصوصی"
|
636 |
|
637 |
+
#: ../includes/class-ure-lib.php:1996
|
638 |
msgid "Delete private pages"
|
639 |
msgstr "حذف صفحات خصوصی"
|
640 |
|
641 |
+
#: ../includes/class-ure-lib.php:1997
|
642 |
msgid "Edit private pages"
|
643 |
msgstr "ویرایش صفحات خصوصی"
|
644 |
|
645 |
+
#: ../includes/class-ure-lib.php:1998
|
646 |
msgid "Read private pages"
|
647 |
msgstr "خواندن صفحات خصوصی"
|
648 |
|
649 |
+
#: ../includes/class-ure-lib.php:1999
|
650 |
msgid "Delete users"
|
651 |
msgstr "حذف کاربران"
|
652 |
|
653 |
+
#: ../includes/class-ure-lib.php:2000
|
654 |
msgid "Create users"
|
655 |
msgstr "ایجاد کاربران"
|
656 |
|
657 |
+
#: ../includes/class-ure-lib.php:2001
|
658 |
msgid "Unfiltered upload"
|
659 |
msgstr "بارگذاری فیلترشده"
|
660 |
|
661 |
+
#: ../includes/class-ure-lib.php:2002
|
662 |
msgid "Edit dashboard"
|
663 |
msgstr "ویرایش پیشخوان"
|
664 |
|
665 |
+
#: ../includes/class-ure-lib.php:2003
|
666 |
msgid "Update plugins"
|
667 |
msgstr "بروزرسانی افزونهها"
|
668 |
|
669 |
+
#: ../includes/class-ure-lib.php:2004
|
670 |
msgid "Delete plugins"
|
671 |
msgstr "حذف افزونهها"
|
672 |
|
673 |
+
#: ../includes/class-ure-lib.php:2005
|
674 |
msgid "Install plugins"
|
675 |
msgstr "نصب افزونهها"
|
676 |
|
677 |
+
#: ../includes/class-ure-lib.php:2006
|
678 |
msgid "Update themes"
|
679 |
msgstr "بروزرسانی پوستهها"
|
680 |
|
681 |
+
#: ../includes/class-ure-lib.php:2007
|
682 |
msgid "Install themes"
|
683 |
msgstr "نصب پوستهها"
|
684 |
|
685 |
+
#: ../includes/class-ure-lib.php:2008
|
686 |
msgid "Update core"
|
687 |
msgstr "بروزرسانی هسته"
|
688 |
|
689 |
+
#: ../includes/class-ure-lib.php:2009
|
690 |
msgid "List users"
|
691 |
msgstr "فهرست کاربران"
|
692 |
|
693 |
+
#: ../includes/class-ure-lib.php:2010
|
694 |
msgid "Remove users"
|
695 |
msgstr "حذف کابران"
|
696 |
|
697 |
+
#: ../includes/class-ure-lib.php:2011
|
698 |
msgid "Add users"
|
699 |
msgstr "افزودن کاربران"
|
700 |
|
701 |
+
#: ../includes/class-ure-lib.php:2012
|
702 |
msgid "Promote users"
|
703 |
msgstr "ارتقاء کاربران"
|
704 |
|
705 |
+
#: ../includes/class-ure-lib.php:2013
|
706 |
msgid "Edit theme options"
|
707 |
msgstr "ویرایش تنظیمات پوسته"
|
708 |
|
709 |
+
#: ../includes/class-ure-lib.php:2014
|
710 |
msgid "Delete themes"
|
711 |
msgstr "حذف پوستهها"
|
712 |
|
713 |
+
#: ../includes/class-ure-lib.php:2015
|
714 |
msgid "Export"
|
715 |
msgstr "برونریزی"
|
716 |
|
717 |
+
#: ../includes/class-ure-lib.php:2125
|
718 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
719 |
msgstr "خطا: نام قابلیت باید فقط شامل حروف لاتین و اعداد باشد!"
|
720 |
|
721 |
+
#: ../includes/class-ure-lib.php:2138
|
722 |
#, php-format
|
723 |
msgid "Capability %s is added successfully"
|
724 |
msgstr "قابلیت %s با موفقیت افزوده شد"
|
725 |
|
726 |
+
#: ../includes/class-ure-lib.php:2140
|
727 |
#, php-format
|
728 |
msgid "Capability %s exists already"
|
729 |
msgstr "قابلیت %s از پیش موجود است"
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2165
|
732 |
#, php-format
|
733 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
734 |
msgstr "خطا! شما اجازهی حذف این قابلیت را ندارید: %s!"
|
735 |
|
736 |
+
#: ../includes/class-ure-lib.php:2184
|
737 |
#, php-format
|
738 |
msgid "Capability %s is removed successfully"
|
739 |
msgstr "قابلیت %s با موفقیت حذف شد"
|
740 |
|
741 |
+
#: ../includes/class-ure-lib.php:2288
|
742 |
msgid "Version:"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../includes/class-ure-lib.php:2289
|
746 |
msgid "Author's website"
|
747 |
msgstr "وبگاه نویسنده"
|
748 |
|
749 |
+
#: ../includes/class-ure-lib.php:2290
|
750 |
msgid "Plugin webpage"
|
751 |
msgstr "صفحه افزونه"
|
752 |
|
753 |
+
#: ../includes/class-ure-lib.php:2291
|
754 |
msgid "Plugin download"
|
755 |
msgstr "بارگیری افزونه"
|
756 |
|
757 |
+
#: ../includes/class-ure-lib.php:2293
|
758 |
msgid "FAQ"
|
759 |
msgstr "سوالات مکرر"
|
760 |
|
761 |
+
#: ../includes/class-ure-lib.php:2341
|
762 |
msgid "None"
|
763 |
msgstr "هیچکدام"
|
764 |
|
765 |
+
#: ../includes/class-ure-lib.php:2368
|
766 |
msgid "Delete All Unused Roles"
|
767 |
msgstr "حذف همهی نقشهای استفادهنشده"
|
768 |
|
769 |
+
#: ../includes/class-ure-lib.php:2392
|
770 |
msgid "— No role for this site —"
|
771 |
msgstr "— هیچ نقشی برای این سایت —"
|
772 |
|
822 |
"کد افزونهها باقی گذاشته شدهاند. روشن کردن این گزینه، آن قابلیتهای بد دانسته "
|
823 |
"شده را نمایش میدهد."
|
824 |
|
825 |
+
#: ../includes/class-ure-screen-help.php:41
|
826 |
+
#, fuzzy
|
827 |
+
msgid "select roles below"
|
828 |
+
msgstr "عدمانتخاب همه"
|
829 |
+
|
830 |
+
#: ../includes/class-ure-screen-help.php:56
|
831 |
+
#, fuzzy
|
832 |
+
msgid "Other default roles for new registered user"
|
833 |
+
msgstr "دیگر نقشهای پیشفرض برای کاربران تازه ثبتنام شده: "
|
834 |
|
835 |
+
#: ../includes/class-ure-screen-help.php:57
|
836 |
+
#, fuzzy
|
837 |
+
msgid ""
|
838 |
+
"select roles below to assign them to the new user automatically as an "
|
839 |
+
"addition to the primary role. Note for multisite environment: take into "
|
840 |
+
"account that other default roles should exist at the site, in order to be "
|
841 |
+
"assigned to the new registered users."
|
842 |
+
msgstr ""
|
843 |
+
"قابل توجه محیط چند سایتی: رفتن به حسابی که در سایت نقشهای پیش فرض دیگری "
|
844 |
+
"موجود است، به منظور اختصاص دادن به کاربران تازه ثبتنام شده."
|
845 |
+
|
846 |
+
#: ../includes/class-ure-screen-help.php:75
|
847 |
+
#, fuzzy
|
848 |
+
msgid "Allow non super-admininstrators to create, edit and delete users"
|
849 |
+
msgstr "اجازه به غیر مدیران اصلی برای ایجاد، ویرایش و حذف کاربران"
|
850 |
+
|
851 |
+
#: ../includes/class-ure-screen-help.php:76
|
852 |
+
#, fuzzy
|
853 |
msgid ""
|
854 |
"Super administrator only may create, edit and delete users under WordPress "
|
855 |
+
"multi-site by default. Turn this option on in order to remove this "
|
856 |
+
"limitation."
|
857 |
msgstr ""
|
858 |
"در وردپرس چند سایتی تنها مدیران اصلی اجازهی ایجاد، ویرایش و حذف کاربران را "
|
859 |
"دارند. این "
|
860 |
+
|
861 |
+
#~ msgid "Overview"
|
862 |
+
#~ msgstr "مرور کلی"
|
863 |
+
|
864 |
+
#~ msgid "Allow create, edit and delete users to not super-admininstrators"
|
865 |
+
#~ msgstr "اجازهی ایجاد، ویرایش و حذف کاربران به غیر مدیران اصلی"
|
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: 2014-
|
9 |
"PO-Revision-Date: \n"
|
10 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
11 |
"Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
|
@@ -26,10 +26,12 @@ msgid "User Role Editor - Options"
|
|
26 |
msgstr "User Role Editor"
|
27 |
|
28 |
#: ../includes/settings-template.php:21
|
|
|
29 |
msgid "General"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: ../includes/settings-template.php:
|
|
|
33 |
msgid "Additional Modules"
|
34 |
msgstr ""
|
35 |
|
@@ -37,16 +39,18 @@ msgstr ""
|
|
37 |
# 'default_role' => __('Default Role', 'ure'),
|
38 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
39 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
40 |
-
#: ../includes/settings-template.php:
|
|
|
41 |
#, fuzzy
|
42 |
msgid "Default Roles"
|
43 |
msgstr "תפקיד ברירת מחדל"
|
44 |
|
45 |
-
#: ../includes/settings-template.php:
|
|
|
46 |
msgid "Multisite"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: ../includes/settings-template.php:
|
50 |
msgid "About"
|
51 |
msgstr ""
|
52 |
|
@@ -54,7 +58,7 @@ msgstr ""
|
|
54 |
# <td><label for="show_admin_role"><?php esc_html_e('Show Administrator role at User Role Editor:', 'ure'); ?></label></td>
|
55 |
# <td><input type="checkbox" name="show_admin_role" id="show_admin_role" value="1"
|
56 |
# wpml-name: 03c5b123f148104af580b68ade741c67
|
57 |
-
#: ../includes/settings-template.php:
|
58 |
#: ../includes/class-ure-screen-help.php:15
|
59 |
msgid "Show Administrator role at User Role Editor"
|
60 |
msgstr ""
|
@@ -63,7 +67,7 @@ msgstr ""
|
|
63 |
# <td><label for="caps_readable"><?php esc_html_e('Show capabilities in the human readable form:', 'ure'); ?></label></td>
|
64 |
# <td>
|
65 |
# wpml-name: a19a4f985d31bbbd3d3b6d5dbd368ef0
|
66 |
-
#: ../includes/settings-template.php:
|
67 |
#: ../includes/class-ure-screen-help.php:18
|
68 |
msgid "Show capabilities in the human readable form"
|
69 |
msgstr ""
|
@@ -72,7 +76,7 @@ msgstr ""
|
|
72 |
# <label for="ure_show_deprecated_caps"><?php _e('Show deprecated capabilities', 'ure'); ?></label>
|
73 |
# </td>
|
74 |
# wpml-name: 130b09deaec4b13948be95555d546f25
|
75 |
-
#: ../includes/settings-template.php:
|
76 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
77 |
msgid "Show deprecated capabilities"
|
78 |
msgstr "הצג הרשאות לפי מספר"
|
@@ -81,31 +85,32 @@ msgstr "הצג הרשאות לפי מספר"
|
|
81 |
# <input type="submit" class="button-primary" name="user_role_editor_settings_update" value="<?php _e('Save', 'ure') ?>" />
|
82 |
# </p>
|
83 |
# wpml-name: c9cc8cce247e49bae79f15173ce97354
|
84 |
-
#: ../includes/settings-template.php:
|
85 |
-
#: ../includes/settings-template.php:
|
86 |
msgid "Save"
|
87 |
msgstr "שמירה"
|
88 |
|
89 |
-
#: ../includes/settings-template.php:
|
|
|
90 |
msgid "Count users without role"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: ../includes/settings-template.php:
|
94 |
msgid "Primary default role: "
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: ../includes/settings-template.php:
|
98 |
msgid "Other default roles for new registered user: "
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: ../includes/settings-template.php:
|
102 |
msgid ""
|
103 |
"Note for multisite environment: take into account that other default roles "
|
104 |
"should exist at the site, in order to be assigned to the new registered "
|
105 |
"users."
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: ../includes/settings-template.php:
|
109 |
msgid "Allow non super administrators to create, edit, and delete users"
|
110 |
msgstr ""
|
111 |
|
@@ -134,7 +139,7 @@ msgstr ""
|
|
134 |
# '">' . __('Capabilities', 'ure') . '</a>';
|
135 |
# }
|
136 |
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
137 |
-
#: ../includes/class-user-role-editor.php:
|
138 |
msgid "Capabilities"
|
139 |
msgstr "יכולות"
|
140 |
|
@@ -142,7 +147,7 @@ msgstr "יכולות"
|
|
142 |
# $settings_link = "<a href='options-general.php?page=settings-".URE_PLUGIN_FILE."'>" . __('Settings', 'ure') . "</a>";
|
143 |
# array_unshift($links, $settings_link);
|
144 |
# wpml-name: f4f70727dc34561dfde1a3c529b6205c
|
145 |
-
#: ../includes/class-user-role-editor.php:
|
146 |
msgid "Settings"
|
147 |
msgstr "הגדרות"
|
148 |
|
@@ -150,23 +155,19 @@ msgstr "הגדרות"
|
|
150 |
# $links[] = '<a target="_blank" href="http://role-editor.com/changelog">' . __('Changelog', 'ure') . '</a>';
|
151 |
# }
|
152 |
# wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
|
153 |
-
#: ../includes/class-user-role-editor.php:
|
154 |
-
#: ../includes/class-ure-lib.php:
|
155 |
msgid "Changelog"
|
156 |
msgstr "יומן שינויים"
|
157 |
|
158 |
-
#: ../includes/class-user-role-editor.php:552
|
159 |
-
msgid "Overview"
|
160 |
-
msgstr ""
|
161 |
-
|
162 |
# esc_html__('User Role Editor', 'ure'),
|
163 |
# esc_html__('User Role Editor', 'ure'),
|
164 |
# $this->key_capability, 'settings-'.URE_PLUGIN_FILE, array(&$this, 'settings'));
|
165 |
# wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
|
166 |
-
#: ../includes/class-user-role-editor.php:
|
167 |
-
#: ../includes/class-user-role-editor.php:
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
-
#: ../includes/class-ure-lib.php:
|
170 |
msgid "User Role Editor"
|
171 |
msgstr "User Role Editor"
|
172 |
|
@@ -174,9 +175,9 @@ msgstr "User Role Editor"
|
|
174 |
# $this->lib->show_message(__('User Role Editor options are updated', 'ure'));
|
175 |
# } else { // get options from the options storage
|
176 |
# wpml-name: aef323fbbd25d577170fff17c15cf857
|
177 |
-
#: ../includes/class-user-role-editor.php:
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
-
#: ../includes/class-user-role-editor.php:
|
180 |
msgid "User Role Editor options are updated"
|
181 |
msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
182 |
|
@@ -184,18 +185,18 @@ msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
|
184 |
# 'default_role' => __('Default Role', 'ure'),
|
185 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
186 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
#, fuzzy
|
189 |
msgid "Default Roles are updated"
|
190 |
msgstr "תפקיד ברירת מחדל"
|
191 |
|
192 |
-
#: ../includes/class-user-role-editor.php:
|
193 |
msgid ""
|
194 |
"You do not have sufficient permissions to manage options for User Role "
|
195 |
"Editor."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: ../includes/class-user-role-editor.php:
|
199 |
msgid "Insufficient permissions to work with User Role Editor"
|
200 |
msgstr ""
|
201 |
|
@@ -203,7 +204,7 @@ msgstr ""
|
|
203 |
# 'select_all' => __('Select All', 'ure'),
|
204 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
205 |
# wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
|
206 |
-
#: ../includes/class-user-role-editor.php:
|
207 |
msgid "Select All"
|
208 |
msgstr "בחירת הכל"
|
209 |
|
@@ -211,7 +212,7 @@ msgstr "בחירת הכל"
|
|
211 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
212 |
# 'reverse' => __('Reverse', 'ure'),
|
213 |
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
214 |
-
#: ../includes/class-user-role-editor.php:
|
215 |
msgid "Unselect All"
|
216 |
msgstr "לא לבחור שום דבר"
|
217 |
|
@@ -219,7 +220,7 @@ msgstr "לא לבחור שום דבר"
|
|
219 |
# 'reverse' => __('Reverse', 'ure'),
|
220 |
# 'update' => __('Update', 'ure'),
|
221 |
# wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
|
222 |
-
#: ../includes/class-user-role-editor.php:
|
223 |
msgid "Reverse"
|
224 |
msgstr "להפוך"
|
225 |
|
@@ -227,7 +228,7 @@ msgstr "להפוך"
|
|
227 |
# 'update' => __('Update', 'ure'),
|
228 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
229 |
# wpml-name: 06933067aafd48425d67bcb01bba5cb6
|
230 |
-
#: ../includes/class-user-role-editor.php:
|
231 |
msgid "Update"
|
232 |
msgstr "עדכן"
|
233 |
|
@@ -235,7 +236,7 @@ msgstr "עדכן"
|
|
235 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
236 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
237 |
# wpml-name: 85251872440cc94c6080a90451e018c4
|
238 |
-
#: ../includes/class-user-role-editor.php:
|
239 |
msgid "Please confirm permissions update"
|
240 |
msgstr "נא לאשר את עדכון ההרשאות"
|
241 |
|
@@ -243,7 +244,7 @@ msgstr "נא לאשר את עדכון ההרשאות"
|
|
243 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
244 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
245 |
# wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
|
246 |
-
#: ../includes/class-user-role-editor.php:
|
247 |
msgid "Add New Role"
|
248 |
msgstr "הוסף סוג משתמש חדש"
|
249 |
|
@@ -251,8 +252,8 @@ msgstr "הוסף סוג משתמש חדש"
|
|
251 |
# 'delete_role' => __('Delete Role', 'ure'),
|
252 |
# 'cancel' => __('Cancel', 'ure'),
|
253 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
254 |
-
#: ../includes/class-user-role-editor.php:
|
255 |
-
#: ../includes/class-user-role-editor.php:
|
256 |
#, fuzzy
|
257 |
msgid "Rename Role"
|
258 |
msgstr "מחיקת סוג משתמש"
|
@@ -261,7 +262,7 @@ msgstr "מחיקת סוג משתמש"
|
|
261 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
262 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
263 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
264 |
-
#: ../includes/class-user-role-editor.php:
|
265 |
msgid " Role name (ID) can not be empty!"
|
266 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
267 |
|
@@ -269,14 +270,14 @@ msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
|
269 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
270 |
# 'add_role' => __('Add Role', 'ure'),
|
271 |
# wpml-name: 7b94f04285f5efc287652bd40338e730
|
272 |
-
#: ../includes/class-user-role-editor.php:
|
273 |
msgid ""
|
274 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
275 |
"only!"
|
276 |
msgstr ""
|
277 |
" שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
278 |
|
279 |
-
#: ../includes/class-user-role-editor.php:
|
280 |
msgid ""
|
281 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
282 |
"it."
|
@@ -286,7 +287,7 @@ msgstr ""
|
|
286 |
# 'add_role' => __('Add Role', 'ure'),
|
287 |
# 'delete_role' => __('Delete Role', 'ure'),
|
288 |
# wpml-name: 1453b39dcc15a372640d960c6db7db25
|
289 |
-
#: ../includes/class-user-role-editor.php:
|
290 |
msgid "Add Role"
|
291 |
msgstr "הוספת תפקיד"
|
292 |
|
@@ -294,7 +295,7 @@ msgstr "הוספת תפקיד"
|
|
294 |
# 'delete_role' => __('Delete Role', 'ure'),
|
295 |
# 'cancel' => __('Cancel', 'ure'),
|
296 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
297 |
-
#: ../includes/class-user-role-editor.php:
|
298 |
msgid "Delete Role"
|
299 |
msgstr "מחיקת סוג משתמש"
|
300 |
|
@@ -302,7 +303,7 @@ msgstr "מחיקת סוג משתמש"
|
|
302 |
# 'cancel' => __('Cancel', 'ure'),
|
303 |
# 'add_capability' => __('Add Capability', 'ure'),
|
304 |
# wpml-name: ea4788705e6873b424c65e91c2846b19
|
305 |
-
#: ../includes/class-user-role-editor.php:
|
306 |
msgid "Cancel"
|
307 |
msgstr "ביטול"
|
308 |
|
@@ -310,7 +311,7 @@ msgstr "ביטול"
|
|
310 |
# 'add_capability' => __('Add Capability', 'ure'),
|
311 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
312 |
# wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
|
313 |
-
#: ../includes/class-user-role-editor.php:
|
314 |
msgid "Add Capability"
|
315 |
msgstr "הוספת יכולת"
|
316 |
|
@@ -318,8 +319,8 @@ msgstr "הוספת יכולת"
|
|
318 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
319 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
320 |
# wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
|
321 |
-
#: ../includes/class-user-role-editor.php:
|
322 |
-
#: ../includes/class-user-role-editor.php:
|
323 |
msgid "Delete Capability"
|
324 |
msgstr "מחיקת יכולת"
|
325 |
|
@@ -327,21 +328,21 @@ msgstr "מחיקת יכולת"
|
|
327 |
# 'reset' => __('Reset', 'ure'),
|
328 |
# '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'),
|
329 |
# wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
|
330 |
-
#: ../includes/class-user-role-editor.php:
|
331 |
msgid "Reset"
|
332 |
msgstr "איפוס"
|
333 |
|
334 |
-
#: ../includes/class-user-role-editor.php:
|
335 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: ../includes/class-user-role-editor.php:
|
339 |
msgid ""
|
340 |
"If any plugins have changed capabilities in any way upon installation (such "
|
341 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: ../includes/class-user-role-editor.php:
|
345 |
msgid ""
|
346 |
"For more information on how to undo changes and restore plugin capabilities "
|
347 |
"go to"
|
@@ -351,7 +352,7 @@ msgstr ""
|
|
351 |
# __('Contributor', 'ure');
|
352 |
# __('Subscriber', 'ure');
|
353 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
354 |
-
#: ../includes/class-user-role-editor.php:
|
355 |
msgid "Continue?"
|
356 |
msgstr ""
|
357 |
|
@@ -359,7 +360,7 @@ msgstr ""
|
|
359 |
# 'default_role' => __('Default Role', 'ure'),
|
360 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
361 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
362 |
-
#: ../includes/class-user-role-editor.php:
|
363 |
msgid "Default Role"
|
364 |
msgstr "תפקיד ברירת מחדל"
|
365 |
|
@@ -367,7 +368,7 @@ msgstr "תפקיד ברירת מחדל"
|
|
367 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
368 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
369 |
# wpml-name: f28d52a1096a73cff427d1216dc578ad
|
370 |
-
#: ../includes/class-user-role-editor.php:
|
371 |
msgid "Set New Default Role"
|
372 |
msgstr "הגדר תפקיד ברירת מחדל חדש"
|
373 |
|
@@ -375,7 +376,7 @@ msgstr "הגדר תפקיד ברירת מחדל חדש"
|
|
375 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
376 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
377 |
# wpml-name: b8827a096ab461b8e26931adf82c8d85
|
378 |
-
#: ../includes/class-user-role-editor.php:
|
379 |
msgid ""
|
380 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
381 |
"or other custom code"
|
@@ -387,7 +388,7 @@ msgstr ""
|
|
387 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
388 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
389 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
390 |
-
#: ../includes/class-user-role-editor.php:
|
391 |
msgid " Capability name (ID) can not be empty!"
|
392 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
393 |
|
@@ -395,7 +396,7 @@ msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
|
395 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
396 |
# ) );
|
397 |
# wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
|
398 |
-
#: ../includes/class-user-role-editor.php:
|
399 |
msgid ""
|
400 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
401 |
"underscore only!"
|
@@ -406,8 +407,8 @@ msgstr ""
|
|
406 |
# <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
|
407 |
# <td>
|
408 |
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
409 |
-
#: ../includes/class-user-role-editor.php:
|
410 |
-
#: ../includes/class-user-role-editor.php:
|
411 |
msgid "Other Roles"
|
412 |
msgstr "תפקידים אחרים"
|
413 |
|
@@ -415,7 +416,7 @@ msgstr "תפקידים אחרים"
|
|
415 |
# 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>';
|
416 |
# ?>
|
417 |
# wpml-name: 7dce122004969d56ae2e0245cb754d35
|
418 |
-
#: ../includes/class-user-role-editor.php:
|
419 |
msgid "Edit"
|
420 |
msgstr "עריכה"
|
421 |
|
@@ -465,7 +466,7 @@ msgstr "יכולות"
|
|
465 |
# $this->show_message(__('Error: wrong request', 'URE'));
|
466 |
# return false;
|
467 |
# wpml-name: a4b9ac7e09dc5996d763f6bae29fd31a
|
468 |
-
#: ../includes/class-ure-lib.php:
|
469 |
msgid "Error: wrong request"
|
470 |
msgstr "שגיאה: בקשה מוטעית"
|
471 |
|
@@ -473,16 +474,16 @@ msgstr "שגיאה: בקשה מוטעית"
|
|
473 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
474 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
475 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
476 |
-
#: ../includes/class-ure-lib.php:
|
477 |
#, fuzzy
|
478 |
msgid "Role name (ID): "
|
479 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
480 |
|
481 |
-
#: ../includes/class-ure-lib.php:
|
482 |
msgid "Display Role Name: "
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../includes/class-ure-lib.php:
|
486 |
msgid "Make copy of: "
|
487 |
msgstr ""
|
488 |
|
@@ -490,7 +491,7 @@ msgstr ""
|
|
490 |
# 'delete_role' => __('Delete Role', 'ure'),
|
491 |
# 'cancel' => __('Cancel', 'ure'),
|
492 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
493 |
-
#: ../includes/class-ure-lib.php:
|
494 |
#, fuzzy
|
495 |
msgid "Select Role:"
|
496 |
msgstr "מחיקת סוג משתמש"
|
@@ -499,7 +500,7 @@ msgstr "מחיקת סוג משתמש"
|
|
499 |
# 'delete_role' => __('Delete Role', 'ure'),
|
500 |
# 'cancel' => __('Cancel', 'ure'),
|
501 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
502 |
-
#: ../includes/class-ure-lib.php:
|
503 |
#, fuzzy
|
504 |
msgid "Delete:"
|
505 |
msgstr "מחיקת סוג משתמש"
|
@@ -508,7 +509,7 @@ msgstr "מחיקת סוג משתמש"
|
|
508 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
509 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
510 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
#, fuzzy
|
513 |
msgid "Capability name (ID): "
|
514 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
@@ -517,7 +518,7 @@ msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
|
517 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
518 |
# $this->current_role = '';
|
519 |
# wpml-name: f97d2eb0a66987899d02bb180936afa3
|
520 |
-
#: ../includes/class-ure-lib.php:
|
521 |
msgid "Error: "
|
522 |
msgstr "שגיאה:"
|
523 |
|
@@ -525,7 +526,7 @@ msgstr "שגיאה:"
|
|
525 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
526 |
# $this->current_role = '';
|
527 |
# wpml-name: bbbabdbe1b262f75d99d62880b953be1
|
528 |
-
#: ../includes/class-ure-lib.php:
|
529 |
msgid "Role"
|
530 |
msgstr "סוג משתמש:"
|
531 |
|
@@ -533,7 +534,7 @@ msgstr "סוג משתמש:"
|
|
533 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
534 |
# $this->current_role = '';
|
535 |
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
536 |
-
#: ../includes/class-ure-lib.php:
|
537 |
msgid "does not exist"
|
538 |
msgstr "לא נמצא"
|
539 |
|
@@ -541,7 +542,7 @@ msgstr "לא נמצא"
|
|
541 |
# $mess = __('Role is updated successfully', 'ure');
|
542 |
# } else {
|
543 |
# wpml-name: 9fd866f99b55510d60384b7efeb22018
|
544 |
-
#: ../includes/class-ure-lib.php:
|
545 |
msgid "Role is updated successfully"
|
546 |
msgstr "התפקיד עודכן בהצלחה"
|
547 |
|
@@ -549,7 +550,7 @@ msgstr "התפקיד עודכן בהצלחה"
|
|
549 |
# $mess = __('Roles are updated for all network', 'ure');
|
550 |
# }
|
551 |
# wpml-name: f89c187756348dad944b0fcca790fde6
|
552 |
-
#: ../includes/class-ure-lib.php:
|
553 |
msgid "Roles are updated for all network"
|
554 |
msgstr "התפקידים עודכנו עבור כל הרשת"
|
555 |
|
@@ -557,7 +558,7 @@ msgstr "התפקידים עודכנו עבור כל הרשת"
|
|
557 |
# $mess = __('Error occured during role(s) update', 'ure');
|
558 |
# }
|
559 |
# wpml-name: 9f528ca4741155f636c4331b19f2b170
|
560 |
-
#: ../includes/class-ure-lib.php:
|
561 |
msgid "Error occured during role(s) update"
|
562 |
msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
|
563 |
|
@@ -565,7 +566,7 @@ msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
|
|
565 |
# $mess = __('User capabilities are updated successfully', 'ure');
|
566 |
# } else {
|
567 |
# wpml-name: ee37618edaa53156b3a18d543ec60412
|
568 |
-
#: ../includes/class-ure-lib.php:
|
569 |
msgid "User capabilities are updated successfully"
|
570 |
msgstr "יכולות המשתמש עודכנו בהצלחה"
|
571 |
|
@@ -573,7 +574,7 @@ msgstr "יכולות המשתמש עודכנו בהצלחה"
|
|
573 |
# $mess = __('Error occured during user update', 'ure');
|
574 |
# }
|
575 |
# wpml-name: f7283da5501e7e1cb13255d323859feb
|
576 |
-
#: ../includes/class-ure-lib.php:
|
577 |
msgid "Error occured during user update"
|
578 |
msgstr "קרתה שגיאה בזמן עדכון המשתמש"
|
579 |
|
@@ -581,7 +582,7 @@ msgstr "קרתה שגיאה בזמן עדכון המשתמש"
|
|
581 |
# $this->notification = __('User Roles are restored to WordPress default values. ', 'ure');
|
582 |
# } else if ($action == 'update') {
|
583 |
# wpml-name: 7182950b4f92d446844be24cfea6276a
|
584 |
-
#: ../includes/class-ure-lib.php:
|
585 |
msgid "User Roles are restored to WordPress default values. "
|
586 |
msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל של וורדפרס."
|
587 |
|
@@ -589,7 +590,7 @@ msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל ש
|
|
589 |
# $link = '<a href="' . $url . '" title="read about ' . $capability . ' user capability" target="new"><img src="' . URE_PLUGIN_URL . '/images/help.png" alt="' . __('Help', 'ure') . '" /></a>';
|
590 |
# } else {
|
591 |
# wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
|
592 |
-
#: ../includes/class-ure-lib.php:
|
593 |
msgid "Help"
|
594 |
msgstr "עזרה"
|
595 |
|
@@ -597,7 +598,7 @@ msgstr "עזרה"
|
|
597 |
# $this->show_message('Error! ' . __('Error is occur. Please check the log file.', 'ure'));
|
598 |
# }
|
599 |
# wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
|
600 |
-
#: ../includes/class-ure-lib.php:
|
601 |
msgid "Error is occur. Please check the log file."
|
602 |
msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
603 |
|
@@ -605,14 +606,14 @@ msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
|
605 |
# return __('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'ure');
|
606 |
# }
|
607 |
# wpml-name: f9182094e24a9e2fbb7317b1724a69c9
|
608 |
-
#: ../includes/class-ure-lib.php:
|
609 |
msgid ""
|
610 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
611 |
"only!"
|
612 |
msgstr ""
|
613 |
"שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid ""
|
617 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
618 |
"characters to it."
|
@@ -622,7 +623,7 @@ msgstr ""
|
|
622 |
# return sprintf('Error! ' . __('Role %s exists already', 'ure'), $user_role_id);
|
623 |
# }
|
624 |
# wpml-name: 61b6d86154b5437be56e6565f2820391
|
625 |
-
#: ../includes/class-ure-lib.php:
|
626 |
#, php-format
|
627 |
msgid "Role %s exists already"
|
628 |
msgstr "סוג המשתמש %s כבר קיים"
|
@@ -631,7 +632,7 @@ msgstr "סוג המשתמש %s כבר קיים"
|
|
631 |
# $mess = 'Error! ' . __('Error is encountered during new role create operation', 'ure');
|
632 |
# } else {
|
633 |
# wpml-name: e0618b1a4160611a46b1b95acab0821c
|
634 |
-
#: ../includes/class-ure-lib.php:
|
635 |
msgid "Error is encountered during new role create operation"
|
636 |
msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
637 |
|
@@ -639,16 +640,16 @@ msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
|
639 |
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
640 |
# }
|
641 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
642 |
-
#: ../includes/class-ure-lib.php:
|
643 |
#, php-format
|
644 |
msgid "Role %s is created successfully"
|
645 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Error: Role ID is empty!"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Error: Empty role display name is not allowed."
|
653 |
msgstr ""
|
654 |
|
@@ -656,7 +657,7 @@ msgstr ""
|
|
656 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
657 |
# $this->current_role = '';
|
658 |
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
#, fuzzy, php-format
|
661 |
msgid "Role %s does not exists"
|
662 |
msgstr "לא נמצא"
|
@@ -665,7 +666,7 @@ msgstr "לא נמצא"
|
|
665 |
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
666 |
# }
|
667 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
668 |
-
#: ../includes/class-ure-lib.php:
|
669 |
#, fuzzy, php-format
|
670 |
msgid "Role %s is renamed to %s successfully"
|
671 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
@@ -674,7 +675,7 @@ msgstr "סוג המשתמש %s נוצר בהצלחה"
|
|
674 |
# $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
|
675 |
# } else {
|
676 |
# wpml-name: 5ca27dda122445e597586a22e18088e6
|
677 |
-
#: ../includes/class-ure-lib.php:
|
678 |
msgid "Error encountered during role delete operation"
|
679 |
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
680 |
|
@@ -682,7 +683,7 @@ msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המ
|
|
682 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
683 |
# }
|
684 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
685 |
-
#: ../includes/class-ure-lib.php:
|
686 |
msgid "Unused roles are deleted successfully"
|
687 |
msgstr ""
|
688 |
|
@@ -690,7 +691,7 @@ msgstr ""
|
|
690 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
691 |
# }
|
692 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
693 |
-
#: ../includes/class-ure-lib.php:
|
694 |
#, php-format
|
695 |
msgid "Role %s is deleted successfully"
|
696 |
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
@@ -699,7 +700,7 @@ msgstr "סוג המשתמש %s נמחק בהצלחה"
|
|
699 |
# $errorMessage = 'Error! ' . __('Error encountered during default role change operation', 'ure');
|
700 |
# if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
|
701 |
# wpml-name: b64bfe4842bc0638b79a24687976394e
|
702 |
-
#: ../includes/class-ure-lib.php:
|
703 |
msgid "Error encountered during default role change operation"
|
704 |
msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
|
705 |
|
@@ -707,7 +708,7 @@ msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמ
|
|
707 |
# $mess = sprintf(__('Default role for new users is set to %s successfully', 'ure'), $wp_roles->role_names[$user_role_id]);
|
708 |
# }
|
709 |
# wpml-name: 94978d82edc73eba0f44bc7bceb299f4
|
710 |
-
#: ../includes/class-ure-lib.php:
|
711 |
#, php-format
|
712 |
msgid "Default role for new users is set to %s successfully"
|
713 |
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
@@ -716,7 +717,7 @@ msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
|
716 |
# __('Editor', 'ure');
|
717 |
# __('Author', 'ure');
|
718 |
# wpml-name: 344a7f427fb765610ef96eb7bce95257
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Editor"
|
721 |
msgstr "עורך"
|
722 |
|
@@ -724,7 +725,7 @@ msgstr "עורך"
|
|
724 |
# __('Author', 'ure');
|
725 |
# __('Contributor', 'ure');
|
726 |
# wpml-name: a517747c3d12f99244ae598910d979c5
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
msgid "Author"
|
729 |
msgstr "כותב"
|
730 |
|
@@ -732,7 +733,7 @@ msgstr "כותב"
|
|
732 |
# __('Contributor', 'ure');
|
733 |
# __('Subscriber', 'ure');
|
734 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
735 |
-
#: ../includes/class-ure-lib.php:
|
736 |
msgid "Contributor"
|
737 |
msgstr "תורם"
|
738 |
|
@@ -740,7 +741,7 @@ msgstr "תורם"
|
|
740 |
# __('Subscriber', 'ure');
|
741 |
# // Standard WordPress capabilities
|
742 |
# wpml-name: 992c4a5b4628d8ebf671cf460254ee81
|
743 |
-
#: ../includes/class-ure-lib.php:
|
744 |
msgid "Subscriber"
|
745 |
msgstr "מנוי"
|
746 |
|
@@ -748,7 +749,7 @@ msgstr "מנוי"
|
|
748 |
# __('Switch themes', 'ure');
|
749 |
# __('Edit themes', 'ure');
|
750 |
# wpml-name: 87d980c0c79638536655ce7fa0a4b85d
|
751 |
-
#: ../includes/class-ure-lib.php:
|
752 |
msgid "Switch themes"
|
753 |
msgstr "החלפת תבניות"
|
754 |
|
@@ -756,7 +757,7 @@ msgstr "החלפת תבניות"
|
|
756 |
# __('Edit themes', 'ure');
|
757 |
# __('Activate plugins', 'ure');
|
758 |
# wpml-name: 8395d1904c778ee1b2762e07a6a03878
|
759 |
-
#: ../includes/class-ure-lib.php:
|
760 |
msgid "Edit themes"
|
761 |
msgstr "עריכת תבניות"
|
762 |
|
@@ -764,7 +765,7 @@ msgstr "עריכת תבניות"
|
|
764 |
# __('Activate plugins', 'ure');
|
765 |
# __('Edit plugins', 'ure');
|
766 |
# wpml-name: c38bc47406355ef06ad3e10a98505536
|
767 |
-
#: ../includes/class-ure-lib.php:
|
768 |
msgid "Activate plugins"
|
769 |
msgstr "הפעלת תוספים"
|
770 |
|
@@ -772,7 +773,7 @@ msgstr "הפעלת תוספים"
|
|
772 |
# __('Edit plugins', 'ure');
|
773 |
# __('Edit users', 'ure');
|
774 |
# wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
|
775 |
-
#: ../includes/class-ure-lib.php:
|
776 |
msgid "Edit plugins"
|
777 |
msgstr "עריכת תוספים"
|
778 |
|
@@ -780,7 +781,7 @@ msgstr "עריכת תוספים"
|
|
780 |
# __('Edit users', 'ure');
|
781 |
# __('Edit files', 'ure');
|
782 |
# wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
|
783 |
-
#: ../includes/class-ure-lib.php:
|
784 |
msgid "Edit users"
|
785 |
msgstr "עריכת משתמשים"
|
786 |
|
@@ -788,7 +789,7 @@ msgstr "עריכת משתמשים"
|
|
788 |
# __('Edit files', 'ure');
|
789 |
# __('Manage options', 'ure');
|
790 |
# wpml-name: 91c6e7a54b91cdc161f71958c597ed11
|
791 |
-
#: ../includes/class-ure-lib.php:
|
792 |
msgid "Edit files"
|
793 |
msgstr "עריכת קבצים"
|
794 |
|
@@ -796,7 +797,7 @@ msgstr "עריכת קבצים"
|
|
796 |
# __('Manage options', 'ure');
|
797 |
# __('Moderate comments', 'ure');
|
798 |
# wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
|
799 |
-
#: ../includes/class-ure-lib.php:
|
800 |
msgid "Manage options"
|
801 |
msgstr "ניהול אפשרויות אתר"
|
802 |
|
@@ -804,7 +805,7 @@ msgstr "ניהול אפשרויות אתר"
|
|
804 |
# __('Moderate comments', 'ure');
|
805 |
# __('Manage categories', 'ure');
|
806 |
# wpml-name: abb293cb5d17f4acca429ea13d74c593
|
807 |
-
#: ../includes/class-ure-lib.php:
|
808 |
msgid "Moderate comments"
|
809 |
msgstr "ניהול תגובות"
|
810 |
|
@@ -812,7 +813,7 @@ msgstr "ניהול תגובות"
|
|
812 |
# __('Manage categories', 'ure');
|
813 |
# __('Manage links', 'ure');
|
814 |
# wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
|
815 |
-
#: ../includes/class-ure-lib.php:
|
816 |
msgid "Manage categories"
|
817 |
msgstr "ניהול קטגוריות"
|
818 |
|
@@ -820,7 +821,7 @@ msgstr "ניהול קטגוריות"
|
|
820 |
# __('Manage links', 'ure');
|
821 |
# __('Upload files', 'ure');
|
822 |
# wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
|
823 |
-
#: ../includes/class-ure-lib.php:
|
824 |
msgid "Manage links"
|
825 |
msgstr "ניהול קישורים"
|
826 |
|
@@ -828,7 +829,7 @@ msgstr "ניהול קישורים"
|
|
828 |
# __('Upload files', 'ure');
|
829 |
# __('Import', 'ure');
|
830 |
# wpml-name: c7de86f69db264c3950d8ae46ed2e33f
|
831 |
-
#: ../includes/class-ure-lib.php:
|
832 |
msgid "Upload files"
|
833 |
msgstr "העלאת קבצים"
|
834 |
|
@@ -836,7 +837,7 @@ msgstr "העלאת קבצים"
|
|
836 |
# __('Import', 'ure');
|
837 |
# __('Unfiltered html', 'ure');
|
838 |
# wpml-name: 72d6d7a1885885bb55a565fd1070581a
|
839 |
-
#: ../includes/class-ure-lib.php:
|
840 |
msgid "Import"
|
841 |
msgstr "יבוא"
|
842 |
|
@@ -844,7 +845,7 @@ msgstr "יבוא"
|
|
844 |
# __('Unfiltered html', 'ure');
|
845 |
# __('Edit posts', 'ure');
|
846 |
# wpml-name: fdd95e5640d6d73230b7544ac261457a
|
847 |
-
#: ../includes/class-ure-lib.php:
|
848 |
msgid "Unfiltered html"
|
849 |
msgstr "עריכת HTML"
|
850 |
|
@@ -852,7 +853,7 @@ msgstr "עריכת HTML"
|
|
852 |
# __('Edit posts', 'ure');
|
853 |
# __('Edit others posts', 'ure');
|
854 |
# wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
|
855 |
-
#: ../includes/class-ure-lib.php:
|
856 |
msgid "Edit posts"
|
857 |
msgstr "עריכת פוסטים"
|
858 |
|
@@ -860,7 +861,7 @@ msgstr "עריכת פוסטים"
|
|
860 |
# __('Edit others posts', 'ure');
|
861 |
# __('Edit published posts', 'ure');
|
862 |
# wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
|
863 |
-
#: ../includes/class-ure-lib.php:
|
864 |
msgid "Edit others posts"
|
865 |
msgstr "עריכת פוסטים של אחרים"
|
866 |
|
@@ -868,7 +869,7 @@ msgstr "עריכת פוסטים של אחרים"
|
|
868 |
# __('Edit published posts', 'ure');
|
869 |
# __('Publish posts', 'ure');
|
870 |
# wpml-name: d42efc04e7900de59ed3667c971e9e9d
|
871 |
-
#: ../includes/class-ure-lib.php:
|
872 |
msgid "Edit published posts"
|
873 |
msgstr "עריכת פוסטים שפורסמו"
|
874 |
|
@@ -876,7 +877,7 @@ msgstr "עריכת פוסטים שפורסמו"
|
|
876 |
# __('Publish posts', 'ure');
|
877 |
# __('Edit pages', 'ure');
|
878 |
# wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
|
879 |
-
#: ../includes/class-ure-lib.php:
|
880 |
msgid "Publish posts"
|
881 |
msgstr "פוסטים שפורסמו"
|
882 |
|
@@ -884,7 +885,7 @@ msgstr "פוסטים שפורסמו"
|
|
884 |
# __('Edit pages', 'ure');
|
885 |
# __('Read', 'ure');
|
886 |
# wpml-name: e7a51430fa0fbb32587c083ffae4b525
|
887 |
-
#: ../includes/class-ure-lib.php:
|
888 |
msgid "Edit pages"
|
889 |
msgstr "עריכת עמודים"
|
890 |
|
@@ -892,7 +893,7 @@ msgstr "עריכת עמודים"
|
|
892 |
# __('Read', 'ure');
|
893 |
# __('Level 10', 'ure');
|
894 |
# wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
|
895 |
-
#: ../includes/class-ure-lib.php:
|
896 |
msgid "Read"
|
897 |
msgstr "קורא"
|
898 |
|
@@ -900,7 +901,7 @@ msgstr "קורא"
|
|
900 |
# __('Level 10', 'ure');
|
901 |
# __('Level 9', 'ure');
|
902 |
# wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
|
903 |
-
#: ../includes/class-ure-lib.php:
|
904 |
msgid "Level 10"
|
905 |
msgstr "דרגה 10"
|
906 |
|
@@ -908,7 +909,7 @@ msgstr "דרגה 10"
|
|
908 |
# __('Level 9', 'ure');
|
909 |
# __('Level 8', 'ure');
|
910 |
# wpml-name: d48252bc9cffec4bed5028a7c71d8196
|
911 |
-
#: ../includes/class-ure-lib.php:
|
912 |
msgid "Level 9"
|
913 |
msgstr "דרגה 9"
|
914 |
|
@@ -916,7 +917,7 @@ msgstr "דרגה 9"
|
|
916 |
# __('Level 8', 'ure');
|
917 |
# __('Level 7', 'ure');
|
918 |
# wpml-name: 625fef0c34a92b3685266a47f16c85dd
|
919 |
-
#: ../includes/class-ure-lib.php:
|
920 |
msgid "Level 8"
|
921 |
msgstr "דרגה 8"
|
922 |
|
@@ -924,7 +925,7 @@ msgstr "דרגה 8"
|
|
924 |
# __('Level 7', 'ure');
|
925 |
# __('Level 6', 'ure');
|
926 |
# wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
|
927 |
-
#: ../includes/class-ure-lib.php:
|
928 |
msgid "Level 7"
|
929 |
msgstr "דרגה 7"
|
930 |
|
@@ -932,7 +933,7 @@ msgstr "דרגה 7"
|
|
932 |
# __('Level 6', 'ure');
|
933 |
# __('Level 5', 'ure');
|
934 |
# wpml-name: b30ce92fb9295725ef29254ba5ae17e1
|
935 |
-
#: ../includes/class-ure-lib.php:
|
936 |
msgid "Level 6"
|
937 |
msgstr "דרגה 6"
|
938 |
|
@@ -940,7 +941,7 @@ msgstr "דרגה 6"
|
|
940 |
# __('Level 5', 'ure');
|
941 |
# __('Level 4', 'ure');
|
942 |
# wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
|
943 |
-
#: ../includes/class-ure-lib.php:
|
944 |
msgid "Level 5"
|
945 |
msgstr "דרגה 5"
|
946 |
|
@@ -948,7 +949,7 @@ msgstr "דרגה 5"
|
|
948 |
# __('Level 4', 'ure');
|
949 |
# __('Level 3', 'ure');
|
950 |
# wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
|
951 |
-
#: ../includes/class-ure-lib.php:
|
952 |
msgid "Level 4"
|
953 |
msgstr "דרגה 4"
|
954 |
|
@@ -956,7 +957,7 @@ msgstr "דרגה 4"
|
|
956 |
# __('Level 3', 'ure');
|
957 |
# __('Level 2', 'ure');
|
958 |
# wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
|
959 |
-
#: ../includes/class-ure-lib.php:
|
960 |
msgid "Level 3"
|
961 |
msgstr "דרגה 3"
|
962 |
|
@@ -964,7 +965,7 @@ msgstr "דרגה 3"
|
|
964 |
# __('Level 2', 'ure');
|
965 |
# __('Level 1', 'ure');
|
966 |
# wpml-name: 228e9da47384bacde793a2b78d488bb0
|
967 |
-
#: ../includes/class-ure-lib.php:
|
968 |
msgid "Level 2"
|
969 |
msgstr "דרגה 2"
|
970 |
|
@@ -972,7 +973,7 @@ msgstr "דרגה 2"
|
|
972 |
# __('Level 1', 'ure');
|
973 |
# __('Level 0', 'ure');
|
974 |
# wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
|
975 |
-
#: ../includes/class-ure-lib.php:
|
976 |
msgid "Level 1"
|
977 |
msgstr "דרגה 1"
|
978 |
|
@@ -980,7 +981,7 @@ msgstr "דרגה 1"
|
|
980 |
# __('Level 0', 'ure');
|
981 |
# __('Edit others pages', 'ure');
|
982 |
# wpml-name: 057e95a59e032dbed970592dd1245092
|
983 |
-
#: ../includes/class-ure-lib.php:
|
984 |
msgid "Level 0"
|
985 |
msgstr "דרגה 0"
|
986 |
|
@@ -988,7 +989,7 @@ msgstr "דרגה 0"
|
|
988 |
# __('Edit others pages', 'ure');
|
989 |
# __('Edit published pages', 'ure');
|
990 |
# wpml-name: b10af907824940fe6a5aa0a77c62be6f
|
991 |
-
#: ../includes/class-ure-lib.php:
|
992 |
msgid "Edit others pages"
|
993 |
msgstr "עריכת דפים של אחרים"
|
994 |
|
@@ -996,7 +997,7 @@ msgstr "עריכת דפים של אחרים"
|
|
996 |
# __('Edit published pages', 'ure');
|
997 |
# __('Publish pages', 'ure');
|
998 |
# wpml-name: c5bfc24b0b891c9465134b83b2c6c259
|
999 |
-
#: ../includes/class-ure-lib.php:
|
1000 |
msgid "Edit published pages"
|
1001 |
msgstr "עריכת דפים שפורסמו"
|
1002 |
|
@@ -1004,7 +1005,7 @@ msgstr "עריכת דפים שפורסמו"
|
|
1004 |
# __('Publish pages', 'ure');
|
1005 |
# __('Delete pages', 'ure');
|
1006 |
# wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
|
1007 |
-
#: ../includes/class-ure-lib.php:
|
1008 |
msgid "Publish pages"
|
1009 |
msgstr "פרסום דפים"
|
1010 |
|
@@ -1012,7 +1013,7 @@ msgstr "פרסום דפים"
|
|
1012 |
# __('Delete pages', 'ure');
|
1013 |
# __('Delete others pages', 'ure');
|
1014 |
# wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
|
1015 |
-
#: ../includes/class-ure-lib.php:
|
1016 |
msgid "Delete pages"
|
1017 |
msgstr "מחיקת דפים"
|
1018 |
|
@@ -1020,7 +1021,7 @@ msgstr "מחיקת דפים"
|
|
1020 |
# __('Delete others pages', 'ure');
|
1021 |
# __('Delete published pages', 'ure');
|
1022 |
# wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
|
1023 |
-
#: ../includes/class-ure-lib.php:
|
1024 |
msgid "Delete others pages"
|
1025 |
msgstr "מחיקת דפים של אחרים"
|
1026 |
|
@@ -1028,7 +1029,7 @@ msgstr "מחיקת דפים של אחרים"
|
|
1028 |
# __('Delete published pages', 'ure');
|
1029 |
# __('Delete posts', 'ure');
|
1030 |
# wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
|
1031 |
-
#: ../includes/class-ure-lib.php:
|
1032 |
msgid "Delete published pages"
|
1033 |
msgstr "מחיקת דפים שפורסמו"
|
1034 |
|
@@ -1036,7 +1037,7 @@ msgstr "מחיקת דפים שפורסמו"
|
|
1036 |
# __('Delete posts', 'ure');
|
1037 |
# __('Delete others posts', 'ure');
|
1038 |
# wpml-name: 3dce6f688c85f06c63224b5c3be13919
|
1039 |
-
#: ../includes/class-ure-lib.php:
|
1040 |
msgid "Delete posts"
|
1041 |
msgstr "מחיקת פוסטים"
|
1042 |
|
@@ -1044,7 +1045,7 @@ msgstr "מחיקת פוסטים"
|
|
1044 |
# __('Delete others posts', 'ure');
|
1045 |
# __('Delete published posts', 'ure');
|
1046 |
# wpml-name: c0496287732814df690c8966027a58d6
|
1047 |
-
#: ../includes/class-ure-lib.php:
|
1048 |
msgid "Delete others posts"
|
1049 |
msgstr "מחיקת פוסטים של אחרים"
|
1050 |
|
@@ -1052,7 +1053,7 @@ msgstr "מחיקת פוסטים של אחרים"
|
|
1052 |
# __('Delete published posts', 'ure');
|
1053 |
# __('Delete private posts', 'ure');
|
1054 |
# wpml-name: b0a2d2039494d73f81f4e476bfda24da
|
1055 |
-
#: ../includes/class-ure-lib.php:
|
1056 |
msgid "Delete published posts"
|
1057 |
msgstr "מחיקת פוסטים שפורסמו"
|
1058 |
|
@@ -1060,7 +1061,7 @@ msgstr "מחיקת פוסטים שפורסמו"
|
|
1060 |
# __('Delete private posts', 'ure');
|
1061 |
# __('Edit private posts', 'ure');
|
1062 |
# wpml-name: dcd02c374764e49b36f0f959cc2917bb
|
1063 |
-
#: ../includes/class-ure-lib.php:
|
1064 |
msgid "Delete private posts"
|
1065 |
msgstr "מחיקת פוסטים פרטיים"
|
1066 |
|
@@ -1068,7 +1069,7 @@ msgstr "מחיקת פוסטים פרטיים"
|
|
1068 |
# __('Edit private posts', 'ure');
|
1069 |
# __('Read private posts', 'ure');
|
1070 |
# wpml-name: da9ee842794f7caf9fa32271073d5f7a
|
1071 |
-
#: ../includes/class-ure-lib.php:
|
1072 |
msgid "Edit private posts"
|
1073 |
msgstr "עריכת פוסטים פרטיים"
|
1074 |
|
@@ -1076,7 +1077,7 @@ msgstr "עריכת פוסטים פרטיים"
|
|
1076 |
# __('Read private posts', 'ure');
|
1077 |
# __('Delete private pages', 'ure');
|
1078 |
# wpml-name: eab0355307288f6480f8c53a0d953d79
|
1079 |
-
#: ../includes/class-ure-lib.php:
|
1080 |
msgid "Read private posts"
|
1081 |
msgstr "קריאת פוסטים פרטיים"
|
1082 |
|
@@ -1084,7 +1085,7 @@ msgstr "קריאת פוסטים פרטיים"
|
|
1084 |
# __('Delete private pages', 'ure');
|
1085 |
# __('Edit private pages', 'ure');
|
1086 |
# wpml-name: 2136c12e2beeadfe0da80a36ef967eca
|
1087 |
-
#: ../includes/class-ure-lib.php:
|
1088 |
msgid "Delete private pages"
|
1089 |
msgstr "מחיקת עמודים פרטיים"
|
1090 |
|
@@ -1092,7 +1093,7 @@ msgstr "מחיקת עמודים פרטיים"
|
|
1092 |
# __('Edit private pages', 'ure');
|
1093 |
# __('Read private pages', 'ure');
|
1094 |
# wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
|
1095 |
-
#: ../includes/class-ure-lib.php:
|
1096 |
msgid "Edit private pages"
|
1097 |
msgstr "מחיקת עמודים פרטיים"
|
1098 |
|
@@ -1100,7 +1101,7 @@ msgstr "מחיקת עמודים פרטיים"
|
|
1100 |
# __('Read private pages', 'ure');
|
1101 |
# __('Delete users', 'ure');
|
1102 |
# wpml-name: 5faa3f2e9585e107dc5f23748a825882
|
1103 |
-
#: ../includes/class-ure-lib.php:
|
1104 |
msgid "Read private pages"
|
1105 |
msgstr "קריאת עמודים פרטיים"
|
1106 |
|
@@ -1108,7 +1109,7 @@ msgstr "קריאת עמודים פרטיים"
|
|
1108 |
# __('Delete users', 'ure');
|
1109 |
# __('Create users', 'ure');
|
1110 |
# wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
|
1111 |
-
#: ../includes/class-ure-lib.php:
|
1112 |
msgid "Delete users"
|
1113 |
msgstr "מחיקת משתמשים"
|
1114 |
|
@@ -1116,7 +1117,7 @@ msgstr "מחיקת משתמשים"
|
|
1116 |
# __('Create users', 'ure');
|
1117 |
# __('Unfiltered upload', 'ure');
|
1118 |
# wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
|
1119 |
-
#: ../includes/class-ure-lib.php:
|
1120 |
msgid "Create users"
|
1121 |
msgstr "יצירת משתמשים"
|
1122 |
|
@@ -1124,7 +1125,7 @@ msgstr "יצירת משתמשים"
|
|
1124 |
# __('Unfiltered upload', 'ure');
|
1125 |
# __('Edit dashboard', 'ure');
|
1126 |
# wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
|
1127 |
-
#: ../includes/class-ure-lib.php:
|
1128 |
msgid "Unfiltered upload"
|
1129 |
msgstr "העלאת קבצים חופשית"
|
1130 |
|
@@ -1132,7 +1133,7 @@ msgstr "העלאת קבצים חופשית"
|
|
1132 |
# __('Edit dashboard', 'ure');
|
1133 |
# __('Update plugins', 'ure');
|
1134 |
# wpml-name: b5577d27ebfdd60a3bda83ae726d574b
|
1135 |
-
#: ../includes/class-ure-lib.php:
|
1136 |
msgid "Edit dashboard"
|
1137 |
msgstr "שינוי לוח הבקרה"
|
1138 |
|
@@ -1140,7 +1141,7 @@ msgstr "שינוי לוח הבקרה"
|
|
1140 |
# __('Update plugins', 'ure');
|
1141 |
# __('Delete plugins', 'ure');
|
1142 |
# wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
|
1143 |
-
#: ../includes/class-ure-lib.php:
|
1144 |
msgid "Update plugins"
|
1145 |
msgstr "עדכון תוספים"
|
1146 |
|
@@ -1148,7 +1149,7 @@ msgstr "עדכון תוספים"
|
|
1148 |
# __('Delete plugins', 'ure');
|
1149 |
# __('Install plugins', 'ure');
|
1150 |
# wpml-name: f2a839940dae3934317d8d6a6f647ebd
|
1151 |
-
#: ../includes/class-ure-lib.php:
|
1152 |
msgid "Delete plugins"
|
1153 |
msgstr "מחיקת תוספים"
|
1154 |
|
@@ -1156,7 +1157,7 @@ msgstr "מחיקת תוספים"
|
|
1156 |
# __('Install plugins', 'ure');
|
1157 |
# __('Update themes', 'ure');
|
1158 |
# wpml-name: 9d06472988c53bfc768bc7b6a788b697
|
1159 |
-
#: ../includes/class-ure-lib.php:
|
1160 |
msgid "Install plugins"
|
1161 |
msgstr "התקנת תוספים"
|
1162 |
|
@@ -1164,7 +1165,7 @@ msgstr "התקנת תוספים"
|
|
1164 |
# __('Update themes', 'ure');
|
1165 |
# __('Install themes', 'ure');
|
1166 |
# wpml-name: 504ea4a27260ac1e8822c5877ffe526b
|
1167 |
-
#: ../includes/class-ure-lib.php:
|
1168 |
msgid "Update themes"
|
1169 |
msgstr "עדכון תבניות"
|
1170 |
|
@@ -1172,7 +1173,7 @@ msgstr "עדכון תבניות"
|
|
1172 |
# __('Install themes', 'ure');
|
1173 |
# __('Update core', 'ure');
|
1174 |
# wpml-name: a7d67fb17876569a4590902d3566a6fd
|
1175 |
-
#: ../includes/class-ure-lib.php:
|
1176 |
msgid "Install themes"
|
1177 |
msgstr "התקנת תבניות חדשות"
|
1178 |
|
@@ -1180,7 +1181,7 @@ msgstr "התקנת תבניות חדשות"
|
|
1180 |
# __('Update core', 'ure');
|
1181 |
# __('List users', 'ure');
|
1182 |
# wpml-name: e56e5b87db548cd42be7a8a0f916205d
|
1183 |
-
#: ../includes/class-ure-lib.php:
|
1184 |
msgid "Update core"
|
1185 |
msgstr "עדכון וורדפרס"
|
1186 |
|
@@ -1188,7 +1189,7 @@ msgstr "עדכון וורדפרס"
|
|
1188 |
# __('List users', 'ure');
|
1189 |
# __('Remove users', 'ure');
|
1190 |
# wpml-name: f923f903857a5387d3db70494e074632
|
1191 |
-
#: ../includes/class-ure-lib.php:
|
1192 |
msgid "List users"
|
1193 |
msgstr "בצפייה במשתמשים"
|
1194 |
|
@@ -1196,7 +1197,7 @@ msgstr "בצפייה במשתמשים"
|
|
1196 |
# __('Remove users', 'ure');
|
1197 |
# __('Add users', 'ure');
|
1198 |
# wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
|
1199 |
-
#: ../includes/class-ure-lib.php:
|
1200 |
msgid "Remove users"
|
1201 |
msgstr "הסרת משתמשים"
|
1202 |
|
@@ -1204,7 +1205,7 @@ msgstr "הסרת משתמשים"
|
|
1204 |
# __('Add users', 'ure');
|
1205 |
# __('Promote users', 'ure');
|
1206 |
# wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
|
1207 |
-
#: ../includes/class-ure-lib.php:
|
1208 |
msgid "Add users"
|
1209 |
msgstr "הוספת משתמשים"
|
1210 |
|
@@ -1212,7 +1213,7 @@ msgstr "הוספת משתמשים"
|
|
1212 |
# __('Promote users', 'ure');
|
1213 |
# __('Edit theme options', 'ure');
|
1214 |
# wpml-name: 12f4ba95cdfd04b791820b9c20887913
|
1215 |
-
#: ../includes/class-ure-lib.php:
|
1216 |
msgid "Promote users"
|
1217 |
msgstr "שינוי משתמשים"
|
1218 |
|
@@ -1220,7 +1221,7 @@ msgstr "שינוי משתמשים"
|
|
1220 |
# __('Edit theme options', 'ure');
|
1221 |
# __('Delete themes', 'ure');
|
1222 |
# wpml-name: 8841974497684dad4d55beaf2b6c52ef
|
1223 |
-
#: ../includes/class-ure-lib.php:
|
1224 |
msgid "Edit theme options"
|
1225 |
msgstr "עריכת אפשרויות התבנית"
|
1226 |
|
@@ -1228,7 +1229,7 @@ msgstr "עריכת אפשרויות התבנית"
|
|
1228 |
# __('Delete themes', 'ure');
|
1229 |
# __('Export', 'ure');
|
1230 |
# wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
|
1231 |
-
#: ../includes/class-ure-lib.php:
|
1232 |
msgid "Delete themes"
|
1233 |
msgstr "מחיקת תבניות"
|
1234 |
|
@@ -1236,7 +1237,7 @@ msgstr "מחיקת תבניות"
|
|
1236 |
# __('Export', 'ure');
|
1237 |
# }
|
1238 |
# wpml-name: 0095a9fa74d1713e43e370a7d7846224
|
1239 |
-
#: ../includes/class-ure-lib.php:
|
1240 |
msgid "Export"
|
1241 |
msgstr "ייצוא תוכן"
|
1242 |
|
@@ -1244,7 +1245,7 @@ msgstr "ייצוא תוכן"
|
|
1244 |
# return 'Error! ' . __('Error: Capability name must contain latin characters and digits only!', 'ure');
|
1245 |
# ;
|
1246 |
# wpml-name: 03766b9586d3012af6fc788e85d39530
|
1247 |
-
#: ../includes/class-ure-lib.php:
|
1248 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
1249 |
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
1250 |
|
@@ -1252,7 +1253,7 @@ msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגל
|
|
1252 |
# $mess = sprintf(__('Capability %s is added successfully', 'ure'), $user_capability);
|
1253 |
# } else {
|
1254 |
# wpml-name: 6dcaae98207ba2673da987515b02fe31
|
1255 |
-
#: ../includes/class-ure-lib.php:
|
1256 |
#, php-format
|
1257 |
msgid "Capability %s is added successfully"
|
1258 |
msgstr "היכולת %s נוספה בהצלחה"
|
@@ -1261,7 +1262,7 @@ msgstr "היכולת %s נוספה בהצלחה"
|
|
1261 |
# $mess = sprintf('Error! ' . __('Capability %s exists already', 'ure'), $user_capability);
|
1262 |
# }
|
1263 |
# wpml-name: d5c1ec0556aadfa88cadffb62266b83d
|
1264 |
-
#: ../includes/class-ure-lib.php:
|
1265 |
#, php-format
|
1266 |
msgid "Capability %s exists already"
|
1267 |
msgstr "כבר קיימת יכולת בשם %s"
|
@@ -1270,7 +1271,7 @@ msgstr "כבר קיימת יכולת בשם %s"
|
|
1270 |
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
1271 |
# }
|
1272 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
1273 |
-
#: ../includes/class-ure-lib.php:
|
1274 |
#, php-format
|
1275 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
1276 |
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
@@ -1279,12 +1280,12 @@ msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
|
1279 |
# $mess = sprintf(__('Capability %s is removed successfully', 'ure'), $capability_id);
|
1280 |
# }
|
1281 |
# wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
|
1282 |
-
#: ../includes/class-ure-lib.php:
|
1283 |
#, php-format
|
1284 |
msgid "Capability %s is removed successfully"
|
1285 |
msgstr "היכולת %s הוסרה בהצלחה"
|
1286 |
|
1287 |
-
#: ../includes/class-ure-lib.php:
|
1288 |
msgid "Version:"
|
1289 |
msgstr ""
|
1290 |
|
@@ -1292,7 +1293,7 @@ msgstr ""
|
|
1292 |
# <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>
|
1293 |
# <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>
|
1294 |
# wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
|
1295 |
-
#: ../includes/class-ure-lib.php:
|
1296 |
msgid "Author's website"
|
1297 |
msgstr "אתר היוצר"
|
1298 |
|
@@ -1300,7 +1301,7 @@ msgstr "אתר היוצר"
|
|
1300 |
# <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>
|
1301 |
# <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>
|
1302 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1303 |
-
#: ../includes/class-ure-lib.php:
|
1304 |
msgid "Plugin webpage"
|
1305 |
msgstr "דף התוסף"
|
1306 |
|
@@ -1308,7 +1309,7 @@ msgstr "דף התוסף"
|
|
1308 |
# <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>
|
1309 |
# <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>
|
1310 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1311 |
-
#: ../includes/class-ure-lib.php:
|
1312 |
#, fuzzy
|
1313 |
msgid "Plugin download"
|
1314 |
msgstr "דף התוסף"
|
@@ -1317,7 +1318,7 @@ msgstr "דף התוסף"
|
|
1317 |
# <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>
|
1318 |
# <?php
|
1319 |
# wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
|
1320 |
-
#: ../includes/class-ure-lib.php:
|
1321 |
msgid "FAQ"
|
1322 |
msgstr "שאלות נפוצות"
|
1323 |
|
@@ -1325,7 +1326,7 @@ msgstr "שאלות נפוצות"
|
|
1325 |
# <option value="none" selected="selected">' . __('None', 'ure') . '</option>';
|
1326 |
# $this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
|
1327 |
# wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
|
1328 |
-
#: ../includes/class-ure-lib.php:
|
1329 |
msgid "None"
|
1330 |
msgstr "תרום"
|
1331 |
|
@@ -1333,11 +1334,11 @@ msgstr "תרום"
|
|
1333 |
#
|
1334 |
#
|
1335 |
# wpml-name: 7aa3fd37413ab803143d28fcc65287cf
|
1336 |
-
#: ../includes/class-ure-lib.php:
|
1337 |
msgid "Delete All Unused Roles"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: ../includes/class-ure-lib.php:
|
1341 |
msgid "— No role for this site —"
|
1342 |
msgstr ""
|
1343 |
|
@@ -1396,16 +1397,34 @@ msgid ""
|
|
1396 |
"deprecated capabilities."
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#
|
1400 |
-
#
|
1401 |
-
#
|
1402 |
-
# wpml-name:
|
1403 |
-
#: ../includes/class-ure-screen-help.php:
|
1404 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: ../includes/class-ure-screen-help.php:
|
1408 |
msgid ""
|
1409 |
"Super administrator only may create, edit and delete users under WordPress "
|
1410 |
-
"multi-site. Turn this option on in order to remove this
|
|
|
1411 |
msgstr ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: User Role Editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2014-10-01 12:45+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"
|
26 |
msgstr "User Role Editor"
|
27 |
|
28 |
#: ../includes/settings-template.php:21
|
29 |
+
#: ../includes/class-user-role-editor.php:547
|
30 |
msgid "General"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../includes/settings-template.php:26
|
34 |
+
#: ../includes/class-user-role-editor.php:553
|
35 |
msgid "Additional Modules"
|
36 |
msgstr ""
|
37 |
|
39 |
# 'default_role' => __('Default Role', 'ure'),
|
40 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
41 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
42 |
+
#: ../includes/settings-template.php:30
|
43 |
+
#: ../includes/class-user-role-editor.php:559
|
44 |
#, fuzzy
|
45 |
msgid "Default Roles"
|
46 |
msgstr "תפקיד ברירת מחדל"
|
47 |
|
48 |
+
#: ../includes/settings-template.php:34
|
49 |
+
#: ../includes/class-user-role-editor.php:564
|
50 |
msgid "Multisite"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: ../includes/settings-template.php:39
|
54 |
msgid "About"
|
55 |
msgstr ""
|
56 |
|
58 |
# <td><label for="show_admin_role"><?php esc_html_e('Show Administrator role at User Role Editor:', 'ure'); ?></label></td>
|
59 |
# <td><input type="checkbox" name="show_admin_role" id="show_admin_role" value="1"
|
60 |
# wpml-name: 03c5b123f148104af580b68ade741c67
|
61 |
+
#: ../includes/settings-template.php:53
|
62 |
#: ../includes/class-ure-screen-help.php:15
|
63 |
msgid "Show Administrator role at User Role Editor"
|
64 |
msgstr ""
|
67 |
# <td><label for="caps_readable"><?php esc_html_e('Show capabilities in the human readable form:', 'ure'); ?></label></td>
|
68 |
# <td>
|
69 |
# wpml-name: a19a4f985d31bbbd3d3b6d5dbd368ef0
|
70 |
+
#: ../includes/settings-template.php:61
|
71 |
#: ../includes/class-ure-screen-help.php:18
|
72 |
msgid "Show capabilities in the human readable form"
|
73 |
msgstr ""
|
76 |
# <label for="ure_show_deprecated_caps"><?php _e('Show deprecated capabilities', 'ure'); ?></label>
|
77 |
# </td>
|
78 |
# wpml-name: 130b09deaec4b13948be95555d546f25
|
79 |
+
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
80 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
81 |
msgid "Show deprecated capabilities"
|
82 |
msgstr "הצג הרשאות לפי מספר"
|
85 |
# <input type="submit" class="button-primary" name="user_role_editor_settings_update" value="<?php _e('Save', 'ure') ?>" />
|
86 |
# </p>
|
87 |
# wpml-name: c9cc8cce247e49bae79f15173ce97354
|
88 |
+
#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
|
89 |
+
#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
|
90 |
msgid "Save"
|
91 |
msgstr "שמירה"
|
92 |
|
93 |
+
#: ../includes/settings-template.php:102
|
94 |
+
#: ../includes/class-ure-screen-help.php:40
|
95 |
msgid "Count users without role"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: ../includes/settings-template.php:129
|
99 |
msgid "Primary default role: "
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ../includes/settings-template.php:136
|
103 |
msgid "Other default roles for new registered user: "
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: ../includes/settings-template.php:142
|
107 |
msgid ""
|
108 |
"Note for multisite environment: take into account that other default roles "
|
109 |
"should exist at the site, in order to be assigned to the new registered "
|
110 |
"users."
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: ../includes/settings-template.php:168
|
114 |
msgid "Allow non super administrators to create, edit, and delete users"
|
115 |
msgstr ""
|
116 |
|
139 |
# '">' . __('Capabilities', 'ure') . '</a>';
|
140 |
# }
|
141 |
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
142 |
+
#: ../includes/class-user-role-editor.php:422
|
143 |
msgid "Capabilities"
|
144 |
msgstr "יכולות"
|
145 |
|
147 |
# $settings_link = "<a href='options-general.php?page=settings-".URE_PLUGIN_FILE."'>" . __('Settings', 'ure') . "</a>";
|
148 |
# array_unshift($links, $settings_link);
|
149 |
# wpml-name: f4f70727dc34561dfde1a3c529b6205c
|
150 |
+
#: ../includes/class-user-role-editor.php:514
|
151 |
msgid "Settings"
|
152 |
msgstr "הגדרות"
|
153 |
|
155 |
# $links[] = '<a target="_blank" href="http://role-editor.com/changelog">' . __('Changelog', 'ure') . '</a>';
|
156 |
# }
|
157 |
# wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
|
158 |
+
#: ../includes/class-user-role-editor.php:525
|
159 |
+
#: ../includes/class-ure-lib.php:2292
|
160 |
msgid "Changelog"
|
161 |
msgstr "יומן שינויים"
|
162 |
|
|
|
|
|
|
|
|
|
163 |
# esc_html__('User Role Editor', 'ure'),
|
164 |
# esc_html__('User Role Editor', 'ure'),
|
165 |
# $this->key_capability, 'settings-'.URE_PLUGIN_FILE, array(&$this, 'settings'));
|
166 |
# wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
|
167 |
+
#: ../includes/class-user-role-editor.php:573
|
168 |
+
#: ../includes/class-user-role-editor.php:601
|
169 |
+
#: ../includes/class-user-role-editor.php:946
|
170 |
+
#: ../includes/class-ure-lib.php:248
|
171 |
msgid "User Role Editor"
|
172 |
msgstr "User Role Editor"
|
173 |
|
175 |
# $this->lib->show_message(__('User Role Editor options are updated', 'ure'));
|
176 |
# } else { // get options from the options storage
|
177 |
# wpml-name: aef323fbbd25d577170fff17c15cf857
|
178 |
+
#: ../includes/class-user-role-editor.php:658
|
179 |
+
#: ../includes/class-user-role-editor.php:676
|
180 |
+
#: ../includes/class-user-role-editor.php:720
|
181 |
msgid "User Role Editor options are updated"
|
182 |
msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
183 |
|
185 |
# 'default_role' => __('Default Role', 'ure'),
|
186 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
187 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
188 |
+
#: ../includes/class-user-role-editor.php:704
|
189 |
#, fuzzy
|
190 |
msgid "Default Roles are updated"
|
191 |
msgstr "תפקיד ברירת מחדל"
|
192 |
|
193 |
+
#: ../includes/class-user-role-editor.php:728
|
194 |
msgid ""
|
195 |
"You do not have sufficient permissions to manage options for User Role "
|
196 |
"Editor."
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: ../includes/class-user-role-editor.php:807
|
200 |
msgid "Insufficient permissions to work with User Role Editor"
|
201 |
msgstr ""
|
202 |
|
204 |
# 'select_all' => __('Select All', 'ure'),
|
205 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
206 |
# wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
|
207 |
+
#: ../includes/class-user-role-editor.php:888
|
208 |
msgid "Select All"
|
209 |
msgstr "בחירת הכל"
|
210 |
|
212 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
213 |
# 'reverse' => __('Reverse', 'ure'),
|
214 |
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
215 |
+
#: ../includes/class-user-role-editor.php:889
|
216 |
msgid "Unselect All"
|
217 |
msgstr "לא לבחור שום דבר"
|
218 |
|
220 |
# 'reverse' => __('Reverse', 'ure'),
|
221 |
# 'update' => __('Update', 'ure'),
|
222 |
# wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
|
223 |
+
#: ../includes/class-user-role-editor.php:890
|
224 |
msgid "Reverse"
|
225 |
msgstr "להפוך"
|
226 |
|
228 |
# 'update' => __('Update', 'ure'),
|
229 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
230 |
# wpml-name: 06933067aafd48425d67bcb01bba5cb6
|
231 |
+
#: ../includes/class-user-role-editor.php:891
|
232 |
msgid "Update"
|
233 |
msgstr "עדכן"
|
234 |
|
236 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
237 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
238 |
# wpml-name: 85251872440cc94c6080a90451e018c4
|
239 |
+
#: ../includes/class-user-role-editor.php:892
|
240 |
msgid "Please confirm permissions update"
|
241 |
msgstr "נא לאשר את עדכון ההרשאות"
|
242 |
|
244 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
245 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
246 |
# wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
|
247 |
+
#: ../includes/class-user-role-editor.php:893
|
248 |
msgid "Add New Role"
|
249 |
msgstr "הוסף סוג משתמש חדש"
|
250 |
|
252 |
# 'delete_role' => __('Delete Role', 'ure'),
|
253 |
# 'cancel' => __('Cancel', 'ure'),
|
254 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
255 |
+
#: ../includes/class-user-role-editor.php:894
|
256 |
+
#: ../includes/class-user-role-editor.php:899
|
257 |
#, fuzzy
|
258 |
msgid "Rename Role"
|
259 |
msgstr "מחיקת סוג משתמש"
|
262 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
263 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
264 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
265 |
+
#: ../includes/class-user-role-editor.php:895
|
266 |
msgid " Role name (ID) can not be empty!"
|
267 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
268 |
|
270 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
271 |
# 'add_role' => __('Add Role', 'ure'),
|
272 |
# wpml-name: 7b94f04285f5efc287652bd40338e730
|
273 |
+
#: ../includes/class-user-role-editor.php:896
|
274 |
msgid ""
|
275 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
276 |
"only!"
|
277 |
msgstr ""
|
278 |
" שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
279 |
|
280 |
+
#: ../includes/class-user-role-editor.php:897
|
281 |
msgid ""
|
282 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
283 |
"it."
|
287 |
# 'add_role' => __('Add Role', 'ure'),
|
288 |
# 'delete_role' => __('Delete Role', 'ure'),
|
289 |
# wpml-name: 1453b39dcc15a372640d960c6db7db25
|
290 |
+
#: ../includes/class-user-role-editor.php:898
|
291 |
msgid "Add Role"
|
292 |
msgstr "הוספת תפקיד"
|
293 |
|
295 |
# 'delete_role' => __('Delete Role', 'ure'),
|
296 |
# 'cancel' => __('Cancel', 'ure'),
|
297 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
298 |
+
#: ../includes/class-user-role-editor.php:900
|
299 |
msgid "Delete Role"
|
300 |
msgstr "מחיקת סוג משתמש"
|
301 |
|
303 |
# 'cancel' => __('Cancel', 'ure'),
|
304 |
# 'add_capability' => __('Add Capability', 'ure'),
|
305 |
# wpml-name: ea4788705e6873b424c65e91c2846b19
|
306 |
+
#: ../includes/class-user-role-editor.php:901
|
307 |
msgid "Cancel"
|
308 |
msgstr "ביטול"
|
309 |
|
311 |
# 'add_capability' => __('Add Capability', 'ure'),
|
312 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
313 |
# wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
|
314 |
+
#: ../includes/class-user-role-editor.php:902
|
315 |
msgid "Add Capability"
|
316 |
msgstr "הוספת יכולת"
|
317 |
|
319 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
320 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
321 |
# wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
|
322 |
+
#: ../includes/class-user-role-editor.php:903
|
323 |
+
#: ../includes/class-user-role-editor.php:912
|
324 |
msgid "Delete Capability"
|
325 |
msgstr "מחיקת יכולת"
|
326 |
|
328 |
# 'reset' => __('Reset', 'ure'),
|
329 |
# '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'),
|
330 |
# wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
|
331 |
+
#: ../includes/class-user-role-editor.php:904
|
332 |
msgid "Reset"
|
333 |
msgstr "איפוס"
|
334 |
|
335 |
+
#: ../includes/class-user-role-editor.php:905
|
336 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: ../includes/class-user-role-editor.php:906
|
340 |
msgid ""
|
341 |
"If any plugins have changed capabilities in any way upon installation (such "
|
342 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: ../includes/class-user-role-editor.php:907
|
346 |
msgid ""
|
347 |
"For more information on how to undo changes and restore plugin capabilities "
|
348 |
"go to"
|
352 |
# __('Contributor', 'ure');
|
353 |
# __('Subscriber', 'ure');
|
354 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
355 |
+
#: ../includes/class-user-role-editor.php:909
|
356 |
msgid "Continue?"
|
357 |
msgstr ""
|
358 |
|
360 |
# 'default_role' => __('Default Role', 'ure'),
|
361 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
362 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
363 |
+
#: ../includes/class-user-role-editor.php:910
|
364 |
msgid "Default Role"
|
365 |
msgstr "תפקיד ברירת מחדל"
|
366 |
|
368 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
369 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
370 |
# wpml-name: f28d52a1096a73cff427d1216dc578ad
|
371 |
+
#: ../includes/class-user-role-editor.php:911
|
372 |
msgid "Set New Default Role"
|
373 |
msgstr "הגדר תפקיד ברירת מחדל חדש"
|
374 |
|
376 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
377 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
378 |
# wpml-name: b8827a096ab461b8e26931adf82c8d85
|
379 |
+
#: ../includes/class-user-role-editor.php:913
|
380 |
msgid ""
|
381 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
382 |
"or other custom code"
|
388 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
389 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
390 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
391 |
+
#: ../includes/class-user-role-editor.php:914
|
392 |
msgid " Capability name (ID) can not be empty!"
|
393 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
394 |
|
396 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
397 |
# ) );
|
398 |
# wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
|
399 |
+
#: ../includes/class-user-role-editor.php:915
|
400 |
msgid ""
|
401 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
402 |
"underscore only!"
|
407 |
# <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
|
408 |
# <td>
|
409 |
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
410 |
+
#: ../includes/class-user-role-editor.php:949
|
411 |
+
#: ../includes/class-user-role-editor.php:978
|
412 |
msgid "Other Roles"
|
413 |
msgstr "תפקידים אחרים"
|
414 |
|
416 |
# 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>';
|
417 |
# ?>
|
418 |
# wpml-name: 7dce122004969d56ae2e0245cb754d35
|
419 |
+
#: ../includes/class-user-role-editor.php:960
|
420 |
msgid "Edit"
|
421 |
msgstr "עריכה"
|
422 |
|
466 |
# $this->show_message(__('Error: wrong request', 'URE'));
|
467 |
# return false;
|
468 |
# wpml-name: a4b9ac7e09dc5996d763f6bae29fd31a
|
469 |
+
#: ../includes/class-ure-lib.php:156
|
470 |
msgid "Error: wrong request"
|
471 |
msgstr "שגיאה: בקשה מוטעית"
|
472 |
|
474 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
475 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
476 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
477 |
+
#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
|
478 |
#, fuzzy
|
479 |
msgid "Role name (ID): "
|
480 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
481 |
|
482 |
+
#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
|
483 |
msgid "Display Role Name: "
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: ../includes/class-ure-lib.php:193
|
487 |
msgid "Make copy of: "
|
488 |
msgstr ""
|
489 |
|
491 |
# 'delete_role' => __('Delete Role', 'ure'),
|
492 |
# 'cancel' => __('Cancel', 'ure'),
|
493 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
494 |
+
#: ../includes/class-ure-lib.php:209
|
495 |
#, fuzzy
|
496 |
msgid "Select Role:"
|
497 |
msgstr "מחיקת סוג משתמש"
|
500 |
# 'delete_role' => __('Delete Role', 'ure'),
|
501 |
# 'cancel' => __('Cancel', 'ure'),
|
502 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
503 |
+
#: ../includes/class-ure-lib.php:224
|
504 |
#, fuzzy
|
505 |
msgid "Delete:"
|
506 |
msgstr "מחיקת סוג משתמש"
|
509 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
510 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
511 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
512 |
+
#: ../includes/class-ure-lib.php:231
|
513 |
#, fuzzy
|
514 |
msgid "Capability name (ID): "
|
515 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
518 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
519 |
# $this->current_role = '';
|
520 |
# wpml-name: f97d2eb0a66987899d02bb180936afa3
|
521 |
+
#: ../includes/class-ure-lib.php:345
|
522 |
msgid "Error: "
|
523 |
msgstr "שגיאה:"
|
524 |
|
526 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
527 |
# $this->current_role = '';
|
528 |
# wpml-name: bbbabdbe1b262f75d99d62880b953be1
|
529 |
+
#: ../includes/class-ure-lib.php:345
|
530 |
msgid "Role"
|
531 |
msgstr "סוג משתמש:"
|
532 |
|
534 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
535 |
# $this->current_role = '';
|
536 |
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
537 |
+
#: ../includes/class-ure-lib.php:346
|
538 |
msgid "does not exist"
|
539 |
msgstr "לא נמצא"
|
540 |
|
542 |
# $mess = __('Role is updated successfully', 'ure');
|
543 |
# } else {
|
544 |
# wpml-name: 9fd866f99b55510d60384b7efeb22018
|
545 |
+
#: ../includes/class-ure-lib.php:389
|
546 |
msgid "Role is updated successfully"
|
547 |
msgstr "התפקיד עודכן בהצלחה"
|
548 |
|
550 |
# $mess = __('Roles are updated for all network', 'ure');
|
551 |
# }
|
552 |
# wpml-name: f89c187756348dad944b0fcca790fde6
|
553 |
+
#: ../includes/class-ure-lib.php:391
|
554 |
msgid "Roles are updated for all network"
|
555 |
msgstr "התפקידים עודכנו עבור כל הרשת"
|
556 |
|
558 |
# $mess = __('Error occured during role(s) update', 'ure');
|
559 |
# }
|
560 |
# wpml-name: 9f528ca4741155f636c4331b19f2b170
|
561 |
+
#: ../includes/class-ure-lib.php:397
|
562 |
msgid "Error occured during role(s) update"
|
563 |
msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
|
564 |
|
566 |
# $mess = __('User capabilities are updated successfully', 'ure');
|
567 |
# } else {
|
568 |
# wpml-name: ee37618edaa53156b3a18d543ec60412
|
569 |
+
#: ../includes/class-ure-lib.php:404
|
570 |
msgid "User capabilities are updated successfully"
|
571 |
msgstr "יכולות המשתמש עודכנו בהצלחה"
|
572 |
|
574 |
# $mess = __('Error occured during user update', 'ure');
|
575 |
# }
|
576 |
# wpml-name: f7283da5501e7e1cb13255d323859feb
|
577 |
+
#: ../includes/class-ure-lib.php:409
|
578 |
msgid "Error occured during user update"
|
579 |
msgstr "קרתה שגיאה בזמן עדכון המשתמש"
|
580 |
|
582 |
# $this->notification = __('User Roles are restored to WordPress default values. ', 'ure');
|
583 |
# } else if ($action == 'update') {
|
584 |
# wpml-name: 7182950b4f92d446844be24cfea6276a
|
585 |
+
#: ../includes/class-ure-lib.php:467
|
586 |
msgid "User Roles are restored to WordPress default values. "
|
587 |
msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל של וורדפרס."
|
588 |
|
590 |
# $link = '<a href="' . $url . '" title="read about ' . $capability . ' user capability" target="new"><img src="' . URE_PLUGIN_URL . '/images/help.png" alt="' . __('Help', 'ure') . '" /></a>';
|
591 |
# } else {
|
592 |
# wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
|
593 |
+
#: ../includes/class-ure-lib.php:1334
|
594 |
msgid "Help"
|
595 |
msgstr "עזרה"
|
596 |
|
598 |
# $this->show_message('Error! ' . __('Error is occur. Please check the log file.', 'ure'));
|
599 |
# }
|
600 |
# wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
|
601 |
+
#: ../includes/class-ure-lib.php:1692
|
602 |
msgid "Error is occur. Please check the log file."
|
603 |
msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
604 |
|
606 |
# return __('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'ure');
|
607 |
# }
|
608 |
# wpml-name: f9182094e24a9e2fbb7317b1724a69c9
|
609 |
+
#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
|
610 |
msgid ""
|
611 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
612 |
"only!"
|
613 |
msgstr ""
|
614 |
"שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
|
615 |
|
616 |
+
#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
|
617 |
msgid ""
|
618 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
619 |
"characters to it."
|
623 |
# return sprintf('Error! ' . __('Role %s exists already', 'ure'), $user_role_id);
|
624 |
# }
|
625 |
# wpml-name: 61b6d86154b5437be56e6565f2820391
|
626 |
+
#: ../includes/class-ure-lib.php:1754
|
627 |
#, php-format
|
628 |
msgid "Role %s exists already"
|
629 |
msgstr "סוג המשתמש %s כבר קיים"
|
632 |
# $mess = 'Error! ' . __('Error is encountered during new role create operation', 'ure');
|
633 |
# } else {
|
634 |
# wpml-name: e0618b1a4160611a46b1b95acab0821c
|
635 |
+
#: ../includes/class-ure-lib.php:1769
|
636 |
msgid "Error is encountered during new role create operation"
|
637 |
msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
638 |
|
640 |
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
641 |
# }
|
642 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
643 |
+
#: ../includes/class-ure-lib.php:1771
|
644 |
#, php-format
|
645 |
msgid "Role %s is created successfully"
|
646 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
647 |
|
648 |
+
#: ../includes/class-ure-lib.php:1795
|
649 |
msgid "Error: Role ID is empty!"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../includes/class-ure-lib.php:1813
|
653 |
msgid "Error: Empty role display name is not allowed."
|
654 |
msgstr ""
|
655 |
|
657 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
658 |
# $this->current_role = '';
|
659 |
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
660 |
+
#: ../includes/class-ure-lib.php:1820
|
661 |
#, fuzzy, php-format
|
662 |
msgid "Role %s does not exists"
|
663 |
msgstr "לא נמצא"
|
666 |
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
667 |
# }
|
668 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
669 |
+
#: ../includes/class-ure-lib.php:1828
|
670 |
#, fuzzy, php-format
|
671 |
msgid "Role %s is renamed to %s successfully"
|
672 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
675 |
# $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
|
676 |
# } else {
|
677 |
# wpml-name: 5ca27dda122445e597586a22e18088e6
|
678 |
+
#: ../includes/class-ure-lib.php:1895
|
679 |
msgid "Error encountered during role delete operation"
|
680 |
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
681 |
|
683 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
684 |
# }
|
685 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
686 |
+
#: ../includes/class-ure-lib.php:1897
|
687 |
msgid "Unused roles are deleted successfully"
|
688 |
msgstr ""
|
689 |
|
691 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
692 |
# }
|
693 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
694 |
+
#: ../includes/class-ure-lib.php:1899
|
695 |
#, php-format
|
696 |
msgid "Role %s is deleted successfully"
|
697 |
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
700 |
# $errorMessage = 'Error! ' . __('Error encountered during default role change operation', 'ure');
|
701 |
# if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
|
702 |
# wpml-name: b64bfe4842bc0638b79a24687976394e
|
703 |
+
#: ../includes/class-ure-lib.php:1924
|
704 |
msgid "Error encountered during default role change operation"
|
705 |
msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
|
706 |
|
708 |
# $mess = sprintf(__('Default role for new users is set to %s successfully', 'ure'), $wp_roles->role_names[$user_role_id]);
|
709 |
# }
|
710 |
# wpml-name: 94978d82edc73eba0f44bc7bceb299f4
|
711 |
+
#: ../includes/class-ure-lib.php:1930
|
712 |
#, php-format
|
713 |
msgid "Default role for new users is set to %s successfully"
|
714 |
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
717 |
# __('Editor', 'ure');
|
718 |
# __('Author', 'ure');
|
719 |
# wpml-name: 344a7f427fb765610ef96eb7bce95257
|
720 |
+
#: ../includes/class-ure-lib.php:1949
|
721 |
msgid "Editor"
|
722 |
msgstr "עורך"
|
723 |
|
725 |
# __('Author', 'ure');
|
726 |
# __('Contributor', 'ure');
|
727 |
# wpml-name: a517747c3d12f99244ae598910d979c5
|
728 |
+
#: ../includes/class-ure-lib.php:1950
|
729 |
msgid "Author"
|
730 |
msgstr "כותב"
|
731 |
|
733 |
# __('Contributor', 'ure');
|
734 |
# __('Subscriber', 'ure');
|
735 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
736 |
+
#: ../includes/class-ure-lib.php:1951
|
737 |
msgid "Contributor"
|
738 |
msgstr "תורם"
|
739 |
|
741 |
# __('Subscriber', 'ure');
|
742 |
# // Standard WordPress capabilities
|
743 |
# wpml-name: 992c4a5b4628d8ebf671cf460254ee81
|
744 |
+
#: ../includes/class-ure-lib.php:1952
|
745 |
msgid "Subscriber"
|
746 |
msgstr "מנוי"
|
747 |
|
749 |
# __('Switch themes', 'ure');
|
750 |
# __('Edit themes', 'ure');
|
751 |
# wpml-name: 87d980c0c79638536655ce7fa0a4b85d
|
752 |
+
#: ../includes/class-ure-lib.php:1954
|
753 |
msgid "Switch themes"
|
754 |
msgstr "החלפת תבניות"
|
755 |
|
757 |
# __('Edit themes', 'ure');
|
758 |
# __('Activate plugins', 'ure');
|
759 |
# wpml-name: 8395d1904c778ee1b2762e07a6a03878
|
760 |
+
#: ../includes/class-ure-lib.php:1955
|
761 |
msgid "Edit themes"
|
762 |
msgstr "עריכת תבניות"
|
763 |
|
765 |
# __('Activate plugins', 'ure');
|
766 |
# __('Edit plugins', 'ure');
|
767 |
# wpml-name: c38bc47406355ef06ad3e10a98505536
|
768 |
+
#: ../includes/class-ure-lib.php:1956
|
769 |
msgid "Activate plugins"
|
770 |
msgstr "הפעלת תוספים"
|
771 |
|
773 |
# __('Edit plugins', 'ure');
|
774 |
# __('Edit users', 'ure');
|
775 |
# wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
|
776 |
+
#: ../includes/class-ure-lib.php:1957
|
777 |
msgid "Edit plugins"
|
778 |
msgstr "עריכת תוספים"
|
779 |
|
781 |
# __('Edit users', 'ure');
|
782 |
# __('Edit files', 'ure');
|
783 |
# wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
|
784 |
+
#: ../includes/class-ure-lib.php:1958
|
785 |
msgid "Edit users"
|
786 |
msgstr "עריכת משתמשים"
|
787 |
|
789 |
# __('Edit files', 'ure');
|
790 |
# __('Manage options', 'ure');
|
791 |
# wpml-name: 91c6e7a54b91cdc161f71958c597ed11
|
792 |
+
#: ../includes/class-ure-lib.php:1959
|
793 |
msgid "Edit files"
|
794 |
msgstr "עריכת קבצים"
|
795 |
|
797 |
# __('Manage options', 'ure');
|
798 |
# __('Moderate comments', 'ure');
|
799 |
# wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
|
800 |
+
#: ../includes/class-ure-lib.php:1960
|
801 |
msgid "Manage options"
|
802 |
msgstr "ניהול אפשרויות אתר"
|
803 |
|
805 |
# __('Moderate comments', 'ure');
|
806 |
# __('Manage categories', 'ure');
|
807 |
# wpml-name: abb293cb5d17f4acca429ea13d74c593
|
808 |
+
#: ../includes/class-ure-lib.php:1961
|
809 |
msgid "Moderate comments"
|
810 |
msgstr "ניהול תגובות"
|
811 |
|
813 |
# __('Manage categories', 'ure');
|
814 |
# __('Manage links', 'ure');
|
815 |
# wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
|
816 |
+
#: ../includes/class-ure-lib.php:1962
|
817 |
msgid "Manage categories"
|
818 |
msgstr "ניהול קטגוריות"
|
819 |
|
821 |
# __('Manage links', 'ure');
|
822 |
# __('Upload files', 'ure');
|
823 |
# wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
|
824 |
+
#: ../includes/class-ure-lib.php:1963
|
825 |
msgid "Manage links"
|
826 |
msgstr "ניהול קישורים"
|
827 |
|
829 |
# __('Upload files', 'ure');
|
830 |
# __('Import', 'ure');
|
831 |
# wpml-name: c7de86f69db264c3950d8ae46ed2e33f
|
832 |
+
#: ../includes/class-ure-lib.php:1964
|
833 |
msgid "Upload files"
|
834 |
msgstr "העלאת קבצים"
|
835 |
|
837 |
# __('Import', 'ure');
|
838 |
# __('Unfiltered html', 'ure');
|
839 |
# wpml-name: 72d6d7a1885885bb55a565fd1070581a
|
840 |
+
#: ../includes/class-ure-lib.php:1965
|
841 |
msgid "Import"
|
842 |
msgstr "יבוא"
|
843 |
|
845 |
# __('Unfiltered html', 'ure');
|
846 |
# __('Edit posts', 'ure');
|
847 |
# wpml-name: fdd95e5640d6d73230b7544ac261457a
|
848 |
+
#: ../includes/class-ure-lib.php:1966
|
849 |
msgid "Unfiltered html"
|
850 |
msgstr "עריכת HTML"
|
851 |
|
853 |
# __('Edit posts', 'ure');
|
854 |
# __('Edit others posts', 'ure');
|
855 |
# wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
|
856 |
+
#: ../includes/class-ure-lib.php:1967
|
857 |
msgid "Edit posts"
|
858 |
msgstr "עריכת פוסטים"
|
859 |
|
861 |
# __('Edit others posts', 'ure');
|
862 |
# __('Edit published posts', 'ure');
|
863 |
# wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
|
864 |
+
#: ../includes/class-ure-lib.php:1968
|
865 |
msgid "Edit others posts"
|
866 |
msgstr "עריכת פוסטים של אחרים"
|
867 |
|
869 |
# __('Edit published posts', 'ure');
|
870 |
# __('Publish posts', 'ure');
|
871 |
# wpml-name: d42efc04e7900de59ed3667c971e9e9d
|
872 |
+
#: ../includes/class-ure-lib.php:1969
|
873 |
msgid "Edit published posts"
|
874 |
msgstr "עריכת פוסטים שפורסמו"
|
875 |
|
877 |
# __('Publish posts', 'ure');
|
878 |
# __('Edit pages', 'ure');
|
879 |
# wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
|
880 |
+
#: ../includes/class-ure-lib.php:1970
|
881 |
msgid "Publish posts"
|
882 |
msgstr "פוסטים שפורסמו"
|
883 |
|
885 |
# __('Edit pages', 'ure');
|
886 |
# __('Read', 'ure');
|
887 |
# wpml-name: e7a51430fa0fbb32587c083ffae4b525
|
888 |
+
#: ../includes/class-ure-lib.php:1971
|
889 |
msgid "Edit pages"
|
890 |
msgstr "עריכת עמודים"
|
891 |
|
893 |
# __('Read', 'ure');
|
894 |
# __('Level 10', 'ure');
|
895 |
# wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
|
896 |
+
#: ../includes/class-ure-lib.php:1972
|
897 |
msgid "Read"
|
898 |
msgstr "קורא"
|
899 |
|
901 |
# __('Level 10', 'ure');
|
902 |
# __('Level 9', 'ure');
|
903 |
# wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
|
904 |
+
#: ../includes/class-ure-lib.php:1973
|
905 |
msgid "Level 10"
|
906 |
msgstr "דרגה 10"
|
907 |
|
909 |
# __('Level 9', 'ure');
|
910 |
# __('Level 8', 'ure');
|
911 |
# wpml-name: d48252bc9cffec4bed5028a7c71d8196
|
912 |
+
#: ../includes/class-ure-lib.php:1974
|
913 |
msgid "Level 9"
|
914 |
msgstr "דרגה 9"
|
915 |
|
917 |
# __('Level 8', 'ure');
|
918 |
# __('Level 7', 'ure');
|
919 |
# wpml-name: 625fef0c34a92b3685266a47f16c85dd
|
920 |
+
#: ../includes/class-ure-lib.php:1975
|
921 |
msgid "Level 8"
|
922 |
msgstr "דרגה 8"
|
923 |
|
925 |
# __('Level 7', 'ure');
|
926 |
# __('Level 6', 'ure');
|
927 |
# wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
|
928 |
+
#: ../includes/class-ure-lib.php:1976
|
929 |
msgid "Level 7"
|
930 |
msgstr "דרגה 7"
|
931 |
|
933 |
# __('Level 6', 'ure');
|
934 |
# __('Level 5', 'ure');
|
935 |
# wpml-name: b30ce92fb9295725ef29254ba5ae17e1
|
936 |
+
#: ../includes/class-ure-lib.php:1977
|
937 |
msgid "Level 6"
|
938 |
msgstr "דרגה 6"
|
939 |
|
941 |
# __('Level 5', 'ure');
|
942 |
# __('Level 4', 'ure');
|
943 |
# wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
|
944 |
+
#: ../includes/class-ure-lib.php:1978
|
945 |
msgid "Level 5"
|
946 |
msgstr "דרגה 5"
|
947 |
|
949 |
# __('Level 4', 'ure');
|
950 |
# __('Level 3', 'ure');
|
951 |
# wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
|
952 |
+
#: ../includes/class-ure-lib.php:1979
|
953 |
msgid "Level 4"
|
954 |
msgstr "דרגה 4"
|
955 |
|
957 |
# __('Level 3', 'ure');
|
958 |
# __('Level 2', 'ure');
|
959 |
# wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
|
960 |
+
#: ../includes/class-ure-lib.php:1980
|
961 |
msgid "Level 3"
|
962 |
msgstr "דרגה 3"
|
963 |
|
965 |
# __('Level 2', 'ure');
|
966 |
# __('Level 1', 'ure');
|
967 |
# wpml-name: 228e9da47384bacde793a2b78d488bb0
|
968 |
+
#: ../includes/class-ure-lib.php:1981
|
969 |
msgid "Level 2"
|
970 |
msgstr "דרגה 2"
|
971 |
|
973 |
# __('Level 1', 'ure');
|
974 |
# __('Level 0', 'ure');
|
975 |
# wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
|
976 |
+
#: ../includes/class-ure-lib.php:1982
|
977 |
msgid "Level 1"
|
978 |
msgstr "דרגה 1"
|
979 |
|
981 |
# __('Level 0', 'ure');
|
982 |
# __('Edit others pages', 'ure');
|
983 |
# wpml-name: 057e95a59e032dbed970592dd1245092
|
984 |
+
#: ../includes/class-ure-lib.php:1983
|
985 |
msgid "Level 0"
|
986 |
msgstr "דרגה 0"
|
987 |
|
989 |
# __('Edit others pages', 'ure');
|
990 |
# __('Edit published pages', 'ure');
|
991 |
# wpml-name: b10af907824940fe6a5aa0a77c62be6f
|
992 |
+
#: ../includes/class-ure-lib.php:1984
|
993 |
msgid "Edit others pages"
|
994 |
msgstr "עריכת דפים של אחרים"
|
995 |
|
997 |
# __('Edit published pages', 'ure');
|
998 |
# __('Publish pages', 'ure');
|
999 |
# wpml-name: c5bfc24b0b891c9465134b83b2c6c259
|
1000 |
+
#: ../includes/class-ure-lib.php:1985
|
1001 |
msgid "Edit published pages"
|
1002 |
msgstr "עריכת דפים שפורסמו"
|
1003 |
|
1005 |
# __('Publish pages', 'ure');
|
1006 |
# __('Delete pages', 'ure');
|
1007 |
# wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
|
1008 |
+
#: ../includes/class-ure-lib.php:1986
|
1009 |
msgid "Publish pages"
|
1010 |
msgstr "פרסום דפים"
|
1011 |
|
1013 |
# __('Delete pages', 'ure');
|
1014 |
# __('Delete others pages', 'ure');
|
1015 |
# wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
|
1016 |
+
#: ../includes/class-ure-lib.php:1987
|
1017 |
msgid "Delete pages"
|
1018 |
msgstr "מחיקת דפים"
|
1019 |
|
1021 |
# __('Delete others pages', 'ure');
|
1022 |
# __('Delete published pages', 'ure');
|
1023 |
# wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
|
1024 |
+
#: ../includes/class-ure-lib.php:1988
|
1025 |
msgid "Delete others pages"
|
1026 |
msgstr "מחיקת דפים של אחרים"
|
1027 |
|
1029 |
# __('Delete published pages', 'ure');
|
1030 |
# __('Delete posts', 'ure');
|
1031 |
# wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
|
1032 |
+
#: ../includes/class-ure-lib.php:1989
|
1033 |
msgid "Delete published pages"
|
1034 |
msgstr "מחיקת דפים שפורסמו"
|
1035 |
|
1037 |
# __('Delete posts', 'ure');
|
1038 |
# __('Delete others posts', 'ure');
|
1039 |
# wpml-name: 3dce6f688c85f06c63224b5c3be13919
|
1040 |
+
#: ../includes/class-ure-lib.php:1990
|
1041 |
msgid "Delete posts"
|
1042 |
msgstr "מחיקת פוסטים"
|
1043 |
|
1045 |
# __('Delete others posts', 'ure');
|
1046 |
# __('Delete published posts', 'ure');
|
1047 |
# wpml-name: c0496287732814df690c8966027a58d6
|
1048 |
+
#: ../includes/class-ure-lib.php:1991
|
1049 |
msgid "Delete others posts"
|
1050 |
msgstr "מחיקת פוסטים של אחרים"
|
1051 |
|
1053 |
# __('Delete published posts', 'ure');
|
1054 |
# __('Delete private posts', 'ure');
|
1055 |
# wpml-name: b0a2d2039494d73f81f4e476bfda24da
|
1056 |
+
#: ../includes/class-ure-lib.php:1992
|
1057 |
msgid "Delete published posts"
|
1058 |
msgstr "מחיקת פוסטים שפורסמו"
|
1059 |
|
1061 |
# __('Delete private posts', 'ure');
|
1062 |
# __('Edit private posts', 'ure');
|
1063 |
# wpml-name: dcd02c374764e49b36f0f959cc2917bb
|
1064 |
+
#: ../includes/class-ure-lib.php:1993
|
1065 |
msgid "Delete private posts"
|
1066 |
msgstr "מחיקת פוסטים פרטיים"
|
1067 |
|
1069 |
# __('Edit private posts', 'ure');
|
1070 |
# __('Read private posts', 'ure');
|
1071 |
# wpml-name: da9ee842794f7caf9fa32271073d5f7a
|
1072 |
+
#: ../includes/class-ure-lib.php:1994
|
1073 |
msgid "Edit private posts"
|
1074 |
msgstr "עריכת פוסטים פרטיים"
|
1075 |
|
1077 |
# __('Read private posts', 'ure');
|
1078 |
# __('Delete private pages', 'ure');
|
1079 |
# wpml-name: eab0355307288f6480f8c53a0d953d79
|
1080 |
+
#: ../includes/class-ure-lib.php:1995
|
1081 |
msgid "Read private posts"
|
1082 |
msgstr "קריאת פוסטים פרטיים"
|
1083 |
|
1085 |
# __('Delete private pages', 'ure');
|
1086 |
# __('Edit private pages', 'ure');
|
1087 |
# wpml-name: 2136c12e2beeadfe0da80a36ef967eca
|
1088 |
+
#: ../includes/class-ure-lib.php:1996
|
1089 |
msgid "Delete private pages"
|
1090 |
msgstr "מחיקת עמודים פרטיים"
|
1091 |
|
1093 |
# __('Edit private pages', 'ure');
|
1094 |
# __('Read private pages', 'ure');
|
1095 |
# wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
|
1096 |
+
#: ../includes/class-ure-lib.php:1997
|
1097 |
msgid "Edit private pages"
|
1098 |
msgstr "מחיקת עמודים פרטיים"
|
1099 |
|
1101 |
# __('Read private pages', 'ure');
|
1102 |
# __('Delete users', 'ure');
|
1103 |
# wpml-name: 5faa3f2e9585e107dc5f23748a825882
|
1104 |
+
#: ../includes/class-ure-lib.php:1998
|
1105 |
msgid "Read private pages"
|
1106 |
msgstr "קריאת עמודים פרטיים"
|
1107 |
|
1109 |
# __('Delete users', 'ure');
|
1110 |
# __('Create users', 'ure');
|
1111 |
# wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
|
1112 |
+
#: ../includes/class-ure-lib.php:1999
|
1113 |
msgid "Delete users"
|
1114 |
msgstr "מחיקת משתמשים"
|
1115 |
|
1117 |
# __('Create users', 'ure');
|
1118 |
# __('Unfiltered upload', 'ure');
|
1119 |
# wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
|
1120 |
+
#: ../includes/class-ure-lib.php:2000
|
1121 |
msgid "Create users"
|
1122 |
msgstr "יצירת משתמשים"
|
1123 |
|
1125 |
# __('Unfiltered upload', 'ure');
|
1126 |
# __('Edit dashboard', 'ure');
|
1127 |
# wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
|
1128 |
+
#: ../includes/class-ure-lib.php:2001
|
1129 |
msgid "Unfiltered upload"
|
1130 |
msgstr "העלאת קבצים חופשית"
|
1131 |
|
1133 |
# __('Edit dashboard', 'ure');
|
1134 |
# __('Update plugins', 'ure');
|
1135 |
# wpml-name: b5577d27ebfdd60a3bda83ae726d574b
|
1136 |
+
#: ../includes/class-ure-lib.php:2002
|
1137 |
msgid "Edit dashboard"
|
1138 |
msgstr "שינוי לוח הבקרה"
|
1139 |
|
1141 |
# __('Update plugins', 'ure');
|
1142 |
# __('Delete plugins', 'ure');
|
1143 |
# wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
|
1144 |
+
#: ../includes/class-ure-lib.php:2003
|
1145 |
msgid "Update plugins"
|
1146 |
msgstr "עדכון תוספים"
|
1147 |
|
1149 |
# __('Delete plugins', 'ure');
|
1150 |
# __('Install plugins', 'ure');
|
1151 |
# wpml-name: f2a839940dae3934317d8d6a6f647ebd
|
1152 |
+
#: ../includes/class-ure-lib.php:2004
|
1153 |
msgid "Delete plugins"
|
1154 |
msgstr "מחיקת תוספים"
|
1155 |
|
1157 |
# __('Install plugins', 'ure');
|
1158 |
# __('Update themes', 'ure');
|
1159 |
# wpml-name: 9d06472988c53bfc768bc7b6a788b697
|
1160 |
+
#: ../includes/class-ure-lib.php:2005
|
1161 |
msgid "Install plugins"
|
1162 |
msgstr "התקנת תוספים"
|
1163 |
|
1165 |
# __('Update themes', 'ure');
|
1166 |
# __('Install themes', 'ure');
|
1167 |
# wpml-name: 504ea4a27260ac1e8822c5877ffe526b
|
1168 |
+
#: ../includes/class-ure-lib.php:2006
|
1169 |
msgid "Update themes"
|
1170 |
msgstr "עדכון תבניות"
|
1171 |
|
1173 |
# __('Install themes', 'ure');
|
1174 |
# __('Update core', 'ure');
|
1175 |
# wpml-name: a7d67fb17876569a4590902d3566a6fd
|
1176 |
+
#: ../includes/class-ure-lib.php:2007
|
1177 |
msgid "Install themes"
|
1178 |
msgstr "התקנת תבניות חדשות"
|
1179 |
|
1181 |
# __('Update core', 'ure');
|
1182 |
# __('List users', 'ure');
|
1183 |
# wpml-name: e56e5b87db548cd42be7a8a0f916205d
|
1184 |
+
#: ../includes/class-ure-lib.php:2008
|
1185 |
msgid "Update core"
|
1186 |
msgstr "עדכון וורדפרס"
|
1187 |
|
1189 |
# __('List users', 'ure');
|
1190 |
# __('Remove users', 'ure');
|
1191 |
# wpml-name: f923f903857a5387d3db70494e074632
|
1192 |
+
#: ../includes/class-ure-lib.php:2009
|
1193 |
msgid "List users"
|
1194 |
msgstr "בצפייה במשתמשים"
|
1195 |
|
1197 |
# __('Remove users', 'ure');
|
1198 |
# __('Add users', 'ure');
|
1199 |
# wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
|
1200 |
+
#: ../includes/class-ure-lib.php:2010
|
1201 |
msgid "Remove users"
|
1202 |
msgstr "הסרת משתמשים"
|
1203 |
|
1205 |
# __('Add users', 'ure');
|
1206 |
# __('Promote users', 'ure');
|
1207 |
# wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
|
1208 |
+
#: ../includes/class-ure-lib.php:2011
|
1209 |
msgid "Add users"
|
1210 |
msgstr "הוספת משתמשים"
|
1211 |
|
1213 |
# __('Promote users', 'ure');
|
1214 |
# __('Edit theme options', 'ure');
|
1215 |
# wpml-name: 12f4ba95cdfd04b791820b9c20887913
|
1216 |
+
#: ../includes/class-ure-lib.php:2012
|
1217 |
msgid "Promote users"
|
1218 |
msgstr "שינוי משתמשים"
|
1219 |
|
1221 |
# __('Edit theme options', 'ure');
|
1222 |
# __('Delete themes', 'ure');
|
1223 |
# wpml-name: 8841974497684dad4d55beaf2b6c52ef
|
1224 |
+
#: ../includes/class-ure-lib.php:2013
|
1225 |
msgid "Edit theme options"
|
1226 |
msgstr "עריכת אפשרויות התבנית"
|
1227 |
|
1229 |
# __('Delete themes', 'ure');
|
1230 |
# __('Export', 'ure');
|
1231 |
# wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
|
1232 |
+
#: ../includes/class-ure-lib.php:2014
|
1233 |
msgid "Delete themes"
|
1234 |
msgstr "מחיקת תבניות"
|
1235 |
|
1237 |
# __('Export', 'ure');
|
1238 |
# }
|
1239 |
# wpml-name: 0095a9fa74d1713e43e370a7d7846224
|
1240 |
+
#: ../includes/class-ure-lib.php:2015
|
1241 |
msgid "Export"
|
1242 |
msgstr "ייצוא תוכן"
|
1243 |
|
1245 |
# return 'Error! ' . __('Error: Capability name must contain latin characters and digits only!', 'ure');
|
1246 |
# ;
|
1247 |
# wpml-name: 03766b9586d3012af6fc788e85d39530
|
1248 |
+
#: ../includes/class-ure-lib.php:2125
|
1249 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
1250 |
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
1251 |
|
1253 |
# $mess = sprintf(__('Capability %s is added successfully', 'ure'), $user_capability);
|
1254 |
# } else {
|
1255 |
# wpml-name: 6dcaae98207ba2673da987515b02fe31
|
1256 |
+
#: ../includes/class-ure-lib.php:2138
|
1257 |
#, php-format
|
1258 |
msgid "Capability %s is added successfully"
|
1259 |
msgstr "היכולת %s נוספה בהצלחה"
|
1262 |
# $mess = sprintf('Error! ' . __('Capability %s exists already', 'ure'), $user_capability);
|
1263 |
# }
|
1264 |
# wpml-name: d5c1ec0556aadfa88cadffb62266b83d
|
1265 |
+
#: ../includes/class-ure-lib.php:2140
|
1266 |
#, php-format
|
1267 |
msgid "Capability %s exists already"
|
1268 |
msgstr "כבר קיימת יכולת בשם %s"
|
1271 |
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
1272 |
# }
|
1273 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
1274 |
+
#: ../includes/class-ure-lib.php:2165
|
1275 |
#, php-format
|
1276 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
1277 |
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
1280 |
# $mess = sprintf(__('Capability %s is removed successfully', 'ure'), $capability_id);
|
1281 |
# }
|
1282 |
# wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
|
1283 |
+
#: ../includes/class-ure-lib.php:2184
|
1284 |
#, php-format
|
1285 |
msgid "Capability %s is removed successfully"
|
1286 |
msgstr "היכולת %s הוסרה בהצלחה"
|
1287 |
|
1288 |
+
#: ../includes/class-ure-lib.php:2288
|
1289 |
msgid "Version:"
|
1290 |
msgstr ""
|
1291 |
|
1293 |
# <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>
|
1294 |
# <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>
|
1295 |
# wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
|
1296 |
+
#: ../includes/class-ure-lib.php:2289
|
1297 |
msgid "Author's website"
|
1298 |
msgstr "אתר היוצר"
|
1299 |
|
1301 |
# <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>
|
1302 |
# <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>
|
1303 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1304 |
+
#: ../includes/class-ure-lib.php:2290
|
1305 |
msgid "Plugin webpage"
|
1306 |
msgstr "דף התוסף"
|
1307 |
|
1309 |
# <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>
|
1310 |
# <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>
|
1311 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1312 |
+
#: ../includes/class-ure-lib.php:2291
|
1313 |
#, fuzzy
|
1314 |
msgid "Plugin download"
|
1315 |
msgstr "דף התוסף"
|
1318 |
# <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>
|
1319 |
# <?php
|
1320 |
# wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
|
1321 |
+
#: ../includes/class-ure-lib.php:2293
|
1322 |
msgid "FAQ"
|
1323 |
msgstr "שאלות נפוצות"
|
1324 |
|
1326 |
# <option value="none" selected="selected">' . __('None', 'ure') . '</option>';
|
1327 |
# $this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
|
1328 |
# wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
|
1329 |
+
#: ../includes/class-ure-lib.php:2341
|
1330 |
msgid "None"
|
1331 |
msgstr "תרום"
|
1332 |
|
1334 |
#
|
1335 |
#
|
1336 |
# wpml-name: 7aa3fd37413ab803143d28fcc65287cf
|
1337 |
+
#: ../includes/class-ure-lib.php:2368
|
1338 |
msgid "Delete All Unused Roles"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: ../includes/class-ure-lib.php:2392
|
1342 |
msgid "— No role for this site —"
|
1343 |
msgstr ""
|
1344 |
|
1397 |
"deprecated capabilities."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
# 'select_all' => __('Select All', 'ure'),
|
1401 |
+
# 'unselect_all' => __('Unselect All', 'ure'),
|
1402 |
+
# 'reverse' => __('Reverse', 'ure'),
|
1403 |
+
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
1404 |
+
#: ../includes/class-ure-screen-help.php:41
|
1405 |
+
#, fuzzy
|
1406 |
+
msgid "select roles below"
|
1407 |
+
msgstr "לא לבחור שום דבר"
|
1408 |
+
|
1409 |
+
#: ../includes/class-ure-screen-help.php:56
|
1410 |
+
msgid "Other default roles for new registered user"
|
1411 |
+
msgstr ""
|
1412 |
+
|
1413 |
+
#: ../includes/class-ure-screen-help.php:57
|
1414 |
+
msgid ""
|
1415 |
+
"select roles below to assign them to the new user automatically as an "
|
1416 |
+
"addition to the primary role. Note for multisite environment: take into "
|
1417 |
+
"account that other default roles should exist at the site, in order to be "
|
1418 |
+
"assigned to the new registered users."
|
1419 |
+
msgstr ""
|
1420 |
+
|
1421 |
+
#: ../includes/class-ure-screen-help.php:75
|
1422 |
+
msgid "Allow non super-admininstrators to create, edit and delete users"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: ../includes/class-ure-screen-help.php:76
|
1426 |
msgid ""
|
1427 |
"Super administrator only may create, edit and delete users under WordPress "
|
1428 |
+
"multi-site by default. Turn this option on in order to remove this "
|
1429 |
+
"limitation."
|
1430 |
msgstr ""
|
lang/ure-hu_HU.mo
ADDED
Binary file
|
lang/ure-hu_HU.po
ADDED
@@ -0,0 +1,879 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: User Role Editor 4.16\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-01 12:45+0700\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: hu_HU\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
+
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
|
15 |
+
"X-Poedit-Basepath: .\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"X-Poedit-SearchPath-0: ..\n"
|
19 |
+
|
20 |
+
#: ../includes/settings-template.php:17
|
21 |
+
msgid "User Role Editor - Options"
|
22 |
+
msgstr "Szerepkör szerkesztő - Beállítások"
|
23 |
+
|
24 |
+
#: ../includes/settings-template.php:21
|
25 |
+
#: ../includes/class-user-role-editor.php:547
|
26 |
+
msgid "General"
|
27 |
+
msgstr "Általános"
|
28 |
+
|
29 |
+
#: ../includes/settings-template.php:26
|
30 |
+
#: ../includes/class-user-role-editor.php:553
|
31 |
+
msgid "Additional Modules"
|
32 |
+
msgstr "További modulok"
|
33 |
+
|
34 |
+
#: ../includes/settings-template.php:30
|
35 |
+
#: ../includes/class-user-role-editor.php:559
|
36 |
+
msgid "Default Roles"
|
37 |
+
msgstr "Alap szerepkörök"
|
38 |
+
|
39 |
+
#: ../includes/settings-template.php:34
|
40 |
+
#: ../includes/class-user-role-editor.php:564
|
41 |
+
msgid "Multisite"
|
42 |
+
msgstr "Multisite"
|
43 |
+
|
44 |
+
#: ../includes/settings-template.php:39
|
45 |
+
msgid "About"
|
46 |
+
msgstr "Névjegy"
|
47 |
+
|
48 |
+
#: ../includes/settings-template.php:53
|
49 |
+
#: ../includes/class-ure-screen-help.php:15
|
50 |
+
msgid "Show Administrator role at User Role Editor"
|
51 |
+
msgstr "Adminisztrátor szerepkör megjelenítése a Szerepkör szerkesztőben"
|
52 |
+
|
53 |
+
#: ../includes/settings-template.php:61
|
54 |
+
#: ../includes/class-ure-screen-help.php:18
|
55 |
+
msgid "Show capabilities in the human readable form"
|
56 |
+
msgstr "Képességek megjelenítése könnyen olvasható formában"
|
57 |
+
|
58 |
+
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
59 |
+
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
60 |
+
msgid "Show deprecated capabilities"
|
61 |
+
msgstr "Elavult képességek megjelenítése"
|
62 |
+
|
63 |
+
#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
|
64 |
+
#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
|
65 |
+
msgid "Save"
|
66 |
+
msgstr "Mentés"
|
67 |
+
|
68 |
+
#: ../includes/settings-template.php:102
|
69 |
+
#: ../includes/class-ure-screen-help.php:40
|
70 |
+
msgid "Count users without role"
|
71 |
+
msgstr "Szerepkör nélküli felhasználók számlálása"
|
72 |
+
|
73 |
+
#: ../includes/settings-template.php:129
|
74 |
+
msgid "Primary default role: "
|
75 |
+
msgstr "Elsődleges alap szerepkör:"
|
76 |
+
|
77 |
+
#: ../includes/settings-template.php:136
|
78 |
+
msgid "Other default roles for new registered user: "
|
79 |
+
msgstr "Egyéb alap szerepkörök újonnan regisztrált felhasználók számára:"
|
80 |
+
|
81 |
+
#: ../includes/settings-template.php:142
|
82 |
+
msgid ""
|
83 |
+
"Note for multisite environment: take into account that other default roles "
|
84 |
+
"should exist at the site, in order to be assigned to the new registered "
|
85 |
+
"users."
|
86 |
+
msgstr ""
|
87 |
+
"Megjegyzés a MultiSite környezethez: vegye figyelembe, hogy több alap "
|
88 |
+
"szerepkörnek is léteznie kell a weboldalon, az új felhasználók "
|
89 |
+
"létrehozásához."
|
90 |
+
|
91 |
+
#: ../includes/settings-template.php:168
|
92 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
93 |
+
msgstr ""
|
94 |
+
"Nem szuperadminok is hozhassanak létre, módosíthassanak és törölhessenek "
|
95 |
+
"felhasználókat"
|
96 |
+
|
97 |
+
#: ../includes/class-user-role-editor.php:195
|
98 |
+
msgid "Change role for users without role"
|
99 |
+
msgstr "Szerepkör nélküli felhasználók szerepkörének megadása"
|
100 |
+
|
101 |
+
#: ../includes/class-user-role-editor.php:196
|
102 |
+
msgid "No rights"
|
103 |
+
msgstr "Nincs jogosultság"
|
104 |
+
|
105 |
+
#: ../includes/class-user-role-editor.php:197
|
106 |
+
msgid "Provide new role"
|
107 |
+
msgstr "Új szerepkör megadása"
|
108 |
+
|
109 |
+
#: ../includes/class-user-role-editor.php:281
|
110 |
+
#: ../includes/class-user-role-editor.php:283
|
111 |
+
msgid "You do not have permission to edit this user."
|
112 |
+
msgstr "Nincs jogosultsága a felhasználó szerkesztéséhez."
|
113 |
+
|
114 |
+
#: ../includes/class-user-role-editor.php:422
|
115 |
+
msgid "Capabilities"
|
116 |
+
msgstr "Képességek"
|
117 |
+
|
118 |
+
#: ../includes/class-user-role-editor.php:514
|
119 |
+
msgid "Settings"
|
120 |
+
msgstr "Beállítások"
|
121 |
+
|
122 |
+
#: ../includes/class-user-role-editor.php:525
|
123 |
+
#: ../includes/class-ure-lib.php:2292
|
124 |
+
msgid "Changelog"
|
125 |
+
msgstr "Változások naplója"
|
126 |
+
|
127 |
+
#: ../includes/class-user-role-editor.php:573
|
128 |
+
#: ../includes/class-user-role-editor.php:601
|
129 |
+
#: ../includes/class-user-role-editor.php:946
|
130 |
+
#: ../includes/class-ure-lib.php:248
|
131 |
+
msgid "User Role Editor"
|
132 |
+
msgstr "Szerepkör szerkesztő"
|
133 |
+
|
134 |
+
#: ../includes/class-user-role-editor.php:658
|
135 |
+
#: ../includes/class-user-role-editor.php:676
|
136 |
+
#: ../includes/class-user-role-editor.php:720
|
137 |
+
msgid "User Role Editor options are updated"
|
138 |
+
msgstr "Szerepkör szerkesztő beállításai frissítve"
|
139 |
+
|
140 |
+
#: ../includes/class-user-role-editor.php:704
|
141 |
+
msgid "Default Roles are updated"
|
142 |
+
msgstr "Alap szerepkörök frissítve"
|
143 |
+
|
144 |
+
#: ../includes/class-user-role-editor.php:728
|
145 |
+
msgid ""
|
146 |
+
"You do not have sufficient permissions to manage options for User Role "
|
147 |
+
"Editor."
|
148 |
+
msgstr ""
|
149 |
+
"Nincs elég jogosultsága a Szerepkör szerkesztő beállításainak kezeléséhez."
|
150 |
+
|
151 |
+
#: ../includes/class-user-role-editor.php:807
|
152 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
153 |
+
msgstr "Nincs elég jogosultsága a Szerepkör szerkesztő használatához"
|
154 |
+
|
155 |
+
#: ../includes/class-user-role-editor.php:888
|
156 |
+
msgid "Select All"
|
157 |
+
msgstr "Összeset kijelöl"
|
158 |
+
|
159 |
+
#: ../includes/class-user-role-editor.php:889
|
160 |
+
msgid "Unselect All"
|
161 |
+
msgstr "Kijelölés megszünt."
|
162 |
+
|
163 |
+
#: ../includes/class-user-role-editor.php:890
|
164 |
+
msgid "Reverse"
|
165 |
+
msgstr "Fordított kijelölés"
|
166 |
+
|
167 |
+
#: ../includes/class-user-role-editor.php:891
|
168 |
+
msgid "Update"
|
169 |
+
msgstr "Frissítés"
|
170 |
+
|
171 |
+
#: ../includes/class-user-role-editor.php:892
|
172 |
+
msgid "Please confirm permissions update"
|
173 |
+
msgstr "Képességek frissítésének megersőítése"
|
174 |
+
|
175 |
+
#: ../includes/class-user-role-editor.php:893
|
176 |
+
msgid "Add New Role"
|
177 |
+
msgstr "Új szerepkör létrehozása"
|
178 |
+
|
179 |
+
#: ../includes/class-user-role-editor.php:894
|
180 |
+
#: ../includes/class-user-role-editor.php:899
|
181 |
+
msgid "Rename Role"
|
182 |
+
msgstr "Szerepkör átnevezés"
|
183 |
+
|
184 |
+
#: ../includes/class-user-role-editor.php:895
|
185 |
+
msgid " Role name (ID) can not be empty!"
|
186 |
+
msgstr "A szerepkör neve (azonosító) nem lehet üres!"
|
187 |
+
|
188 |
+
#: ../includes/class-user-role-editor.php:896
|
189 |
+
msgid ""
|
190 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
191 |
+
"only!"
|
192 |
+
msgstr ""
|
193 |
+
"A szerepkör neve (azonosítója) csak latin betűket, szűmokat, kötőjelet és "
|
194 |
+
"aláhúzást tartalmazhat."
|
195 |
+
|
196 |
+
#: ../includes/class-user-role-editor.php:897
|
197 |
+
msgid ""
|
198 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
199 |
+
"it."
|
200 |
+
msgstr ""
|
201 |
+
"A WordPress nem támoagtja a numeriks szerepkör neveket (azonosító). Kell "
|
202 |
+
"bele legalább egy latin betű."
|
203 |
+
|
204 |
+
#: ../includes/class-user-role-editor.php:898
|
205 |
+
msgid "Add Role"
|
206 |
+
msgstr "Új szerepkör"
|
207 |
+
|
208 |
+
#: ../includes/class-user-role-editor.php:900
|
209 |
+
msgid "Delete Role"
|
210 |
+
msgstr "Szerepkör törlése"
|
211 |
+
|
212 |
+
#: ../includes/class-user-role-editor.php:901
|
213 |
+
msgid "Cancel"
|
214 |
+
msgstr "Mégse"
|
215 |
+
|
216 |
+
#: ../includes/class-user-role-editor.php:902
|
217 |
+
msgid "Add Capability"
|
218 |
+
msgstr "Új képesség"
|
219 |
+
|
220 |
+
#: ../includes/class-user-role-editor.php:903
|
221 |
+
#: ../includes/class-user-role-editor.php:912
|
222 |
+
msgid "Delete Capability"
|
223 |
+
msgstr "Képesség törlése"
|
224 |
+
|
225 |
+
#: ../includes/class-user-role-editor.php:904
|
226 |
+
msgid "Reset"
|
227 |
+
msgstr "Alaphelyzet"
|
228 |
+
|
229 |
+
#: ../includes/class-user-role-editor.php:905
|
230 |
+
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
231 |
+
msgstr ""
|
232 |
+
"VESZÉLY! Az alaphelyzetre állítás a WordPress mag beállításait állítja be "
|
233 |
+
"újra."
|
234 |
+
|
235 |
+
#: ../includes/class-user-role-editor.php:906
|
236 |
+
msgid ""
|
237 |
+
"If any plugins have changed capabilities in any way upon installation (such "
|
238 |
+
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
239 |
+
msgstr ""
|
240 |
+
"Ha bármilyen bővítmény módosított a képességeket bármilyen módon (pl.: "
|
241 |
+
"S2Member, WooCommerce, és sok másik), ezek a módosítások TÖRÖLVE lesznek!"
|
242 |
+
|
243 |
+
#: ../includes/class-user-role-editor.php:907
|
244 |
+
msgid ""
|
245 |
+
"For more information on how to undo changes and restore plugin capabilities "
|
246 |
+
"go to"
|
247 |
+
msgstr ""
|
248 |
+
"További információ a képességek módosításainak visszavonásáról és "
|
249 |
+
"helyreállításáról"
|
250 |
+
|
251 |
+
#: ../includes/class-user-role-editor.php:909
|
252 |
+
msgid "Continue?"
|
253 |
+
msgstr "Folytassuk?"
|
254 |
+
|
255 |
+
#: ../includes/class-user-role-editor.php:910
|
256 |
+
msgid "Default Role"
|
257 |
+
msgstr "Alap szerepkör"
|
258 |
+
|
259 |
+
#: ../includes/class-user-role-editor.php:911
|
260 |
+
msgid "Set New Default Role"
|
261 |
+
msgstr "Új alap szerepkör beállítása"
|
262 |
+
|
263 |
+
#: ../includes/class-user-role-editor.php:913
|
264 |
+
msgid ""
|
265 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
266 |
+
"or other custom code"
|
267 |
+
msgstr ""
|
268 |
+
"Figyelem! Legyen óvatos - kritikus képesség törlésétől leállhat néhány "
|
269 |
+
"bővítmény vagy egyedi kód."
|
270 |
+
|
271 |
+
#: ../includes/class-user-role-editor.php:914
|
272 |
+
msgid " Capability name (ID) can not be empty!"
|
273 |
+
msgstr "A képesség név (azonosító) nem lehet üres."
|
274 |
+
|
275 |
+
#: ../includes/class-user-role-editor.php:915
|
276 |
+
msgid ""
|
277 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
278 |
+
"underscore only!"
|
279 |
+
msgstr ""
|
280 |
+
"A képesség név (azonosító) csak latin betűkből, számokból, kötőjelből és "
|
281 |
+
"aláhúzásból állhat."
|
282 |
+
|
283 |
+
#: ../includes/class-user-role-editor.php:949
|
284 |
+
#: ../includes/class-user-role-editor.php:978
|
285 |
+
msgid "Other Roles"
|
286 |
+
msgstr "Más szerepkörök"
|
287 |
+
|
288 |
+
#: ../includes/class-user-role-editor.php:960
|
289 |
+
msgid "Edit"
|
290 |
+
msgstr "Szerkeszt"
|
291 |
+
|
292 |
+
#: ../includes/ure-role-edit.php:17
|
293 |
+
msgid "Select Role and change its capabilities:"
|
294 |
+
msgstr "Szerepkör kiválasztása a képességeinek módosításához:"
|
295 |
+
|
296 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
|
297 |
+
msgid "Show capabilities in human readable form"
|
298 |
+
msgstr "Képességek megjelenítése olvasható formában"
|
299 |
+
|
300 |
+
#: ../includes/ure-role-edit.php:44
|
301 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
302 |
+
msgstr ""
|
303 |
+
"Ha bejelölve, akkor a művelet a hálózat minden weboldalára érvényesülni fog"
|
304 |
+
|
305 |
+
#: ../includes/ure-role-edit.php:56
|
306 |
+
msgid "Apply to All Sites"
|
307 |
+
msgstr "Alkalmazás minden oldalra"
|
308 |
+
|
309 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
|
310 |
+
msgid "Core capabilities:"
|
311 |
+
msgstr "Gyári képességek:"
|
312 |
+
|
313 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
|
314 |
+
msgid "Quick filter:"
|
315 |
+
msgstr "Gyors szűrés:"
|
316 |
+
|
317 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
|
318 |
+
msgid "Custom capabilities:"
|
319 |
+
msgstr "Egyedi képességek:"
|
320 |
+
|
321 |
+
#: ../includes/class-ure-lib.php:156
|
322 |
+
msgid "Error: wrong request"
|
323 |
+
msgstr "Hiba: hibás kérés"
|
324 |
+
|
325 |
+
#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
|
326 |
+
msgid "Role name (ID): "
|
327 |
+
msgstr "Szerepkör név (azonosító):"
|
328 |
+
|
329 |
+
#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
|
330 |
+
msgid "Display Role Name: "
|
331 |
+
msgstr "Szerepkör megnevezése:"
|
332 |
+
|
333 |
+
#: ../includes/class-ure-lib.php:193
|
334 |
+
msgid "Make copy of: "
|
335 |
+
msgstr "Ennek a másolata:"
|
336 |
+
|
337 |
+
#: ../includes/class-ure-lib.php:209
|
338 |
+
msgid "Select Role:"
|
339 |
+
msgstr "Válasszon szerepkört:"
|
340 |
+
|
341 |
+
#: ../includes/class-ure-lib.php:224
|
342 |
+
msgid "Delete:"
|
343 |
+
msgstr "Törlés:"
|
344 |
+
|
345 |
+
#: ../includes/class-ure-lib.php:231
|
346 |
+
msgid "Capability name (ID): "
|
347 |
+
msgstr "Képesség név (azonosító):"
|
348 |
+
|
349 |
+
#: ../includes/class-ure-lib.php:345
|
350 |
+
msgid "Error: "
|
351 |
+
msgstr "Hiba:"
|
352 |
+
|
353 |
+
#: ../includes/class-ure-lib.php:345
|
354 |
+
msgid "Role"
|
355 |
+
msgstr "Szerepkör"
|
356 |
+
|
357 |
+
#: ../includes/class-ure-lib.php:346
|
358 |
+
msgid "does not exist"
|
359 |
+
msgstr "nem létezik"
|
360 |
+
|
361 |
+
#: ../includes/class-ure-lib.php:389
|
362 |
+
msgid "Role is updated successfully"
|
363 |
+
msgstr "Szerepkör sikeresen frissítve"
|
364 |
+
|
365 |
+
#: ../includes/class-ure-lib.php:391
|
366 |
+
msgid "Roles are updated for all network"
|
367 |
+
msgstr "Szerepkörök frissítése a teljes hálózaton"
|
368 |
+
|
369 |
+
#: ../includes/class-ure-lib.php:397
|
370 |
+
msgid "Error occured during role(s) update"
|
371 |
+
msgstr "Hiba történt a szerepkör(ök) frissítése során"
|
372 |
+
|
373 |
+
#: ../includes/class-ure-lib.php:404
|
374 |
+
msgid "User capabilities are updated successfully"
|
375 |
+
msgstr "Felhasználó képességei sikeresen frissítve"
|
376 |
+
|
377 |
+
#: ../includes/class-ure-lib.php:409
|
378 |
+
msgid "Error occured during user update"
|
379 |
+
msgstr "Hiba történt a felhasználó frissítése során"
|
380 |
+
|
381 |
+
#: ../includes/class-ure-lib.php:467
|
382 |
+
msgid "User Roles are restored to WordPress default values. "
|
383 |
+
msgstr "Felhasználói szerepkörök visszaállítva a WordPress alaphelyzetébe."
|
384 |
+
|
385 |
+
#: ../includes/class-ure-lib.php:1334
|
386 |
+
msgid "Help"
|
387 |
+
msgstr "Súgó"
|
388 |
+
|
389 |
+
#: ../includes/class-ure-lib.php:1692
|
390 |
+
msgid "Error is occur. Please check the log file."
|
391 |
+
msgstr "Hiba történt. Nézze meg a naplófájlt!"
|
392 |
+
|
393 |
+
#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
|
394 |
+
msgid ""
|
395 |
+
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
396 |
+
"only!"
|
397 |
+
msgstr ""
|
398 |
+
"Hiba: a szerepkör azonosító csak latin betűkből, számokból, kötőjelből és "
|
399 |
+
"aláhúzásból állhat."
|
400 |
+
|
401 |
+
#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
|
402 |
+
msgid ""
|
403 |
+
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
404 |
+
"characters to it."
|
405 |
+
msgstr ""
|
406 |
+
"Hiba: a WordPress nem támogatja a numerikus szerepkör neveket "
|
407 |
+
"(azonosítókat). Legyen benn legalább egy latin betű."
|
408 |
+
|
409 |
+
#: ../includes/class-ure-lib.php:1754
|
410 |
+
#, php-format
|
411 |
+
msgid "Role %s exists already"
|
412 |
+
msgstr "%s szerepkör már létezik"
|
413 |
+
|
414 |
+
#: ../includes/class-ure-lib.php:1769
|
415 |
+
msgid "Error is encountered during new role create operation"
|
416 |
+
msgstr "Hiba történt az új szerepkör létrehozása során."
|
417 |
+
|
418 |
+
#: ../includes/class-ure-lib.php:1771
|
419 |
+
#, php-format
|
420 |
+
msgid "Role %s is created successfully"
|
421 |
+
msgstr "%s szerepkör sikeresen létrehozva"
|
422 |
+
|
423 |
+
#: ../includes/class-ure-lib.php:1795
|
424 |
+
msgid "Error: Role ID is empty!"
|
425 |
+
msgstr "Hiba: a szerepkör azonosító üres!"
|
426 |
+
|
427 |
+
#: ../includes/class-ure-lib.php:1813
|
428 |
+
msgid "Error: Empty role display name is not allowed."
|
429 |
+
msgstr "Hiba: nem lehet üres a szerepkör megjelenítendő neve."
|
430 |
+
|
431 |
+
#: ../includes/class-ure-lib.php:1820
|
432 |
+
#, php-format
|
433 |
+
msgid "Role %s does not exists"
|
434 |
+
msgstr "%s szerepkör nem létezik"
|
435 |
+
|
436 |
+
#: ../includes/class-ure-lib.php:1828
|
437 |
+
#, php-format
|
438 |
+
msgid "Role %s is renamed to %s successfully"
|
439 |
+
msgstr "%s szerepkör sikeresen átnevezve erre: %s"
|
440 |
+
|
441 |
+
#: ../includes/class-ure-lib.php:1895
|
442 |
+
msgid "Error encountered during role delete operation"
|
443 |
+
msgstr "Hiba történt a szerepkör törlése során."
|
444 |
+
|
445 |
+
#: ../includes/class-ure-lib.php:1897
|
446 |
+
msgid "Unused roles are deleted successfully"
|
447 |
+
msgstr "A nem használt szerepkörök sikeresen törölve lettek."
|
448 |
+
|
449 |
+
#: ../includes/class-ure-lib.php:1899
|
450 |
+
#, php-format
|
451 |
+
msgid "Role %s is deleted successfully"
|
452 |
+
msgstr "%s szerepkör sikeresen törölve lett."
|
453 |
+
|
454 |
+
#: ../includes/class-ure-lib.php:1924
|
455 |
+
msgid "Error encountered during default role change operation"
|
456 |
+
msgstr "Hiba történt az alap szerepkör módosítása során."
|
457 |
+
|
458 |
+
#: ../includes/class-ure-lib.php:1930
|
459 |
+
#, php-format
|
460 |
+
msgid "Default role for new users is set to %s successfully"
|
461 |
+
msgstr "Az új felhasználók alap szerepköre sikeresen módosítva erre: %s"
|
462 |
+
|
463 |
+
#: ../includes/class-ure-lib.php:1949
|
464 |
+
msgid "Editor"
|
465 |
+
msgstr "Szerkesztő"
|
466 |
+
|
467 |
+
#: ../includes/class-ure-lib.php:1950
|
468 |
+
msgid "Author"
|
469 |
+
msgstr "Szerző"
|
470 |
+
|
471 |
+
#: ../includes/class-ure-lib.php:1951
|
472 |
+
msgid "Contributor"
|
473 |
+
msgstr "Közreműködő"
|
474 |
+
|
475 |
+
#: ../includes/class-ure-lib.php:1952
|
476 |
+
msgid "Subscriber"
|
477 |
+
msgstr "Feliratkozó"
|
478 |
+
|
479 |
+
#: ../includes/class-ure-lib.php:1954
|
480 |
+
msgid "Switch themes"
|
481 |
+
msgstr "Sablon kiválasztása"
|
482 |
+
|
483 |
+
#: ../includes/class-ure-lib.php:1955
|
484 |
+
msgid "Edit themes"
|
485 |
+
msgstr "Sablonok szerkesztése"
|
486 |
+
|
487 |
+
#: ../includes/class-ure-lib.php:1956
|
488 |
+
msgid "Activate plugins"
|
489 |
+
msgstr "Bővítmény bekapcsolása"
|
490 |
+
|
491 |
+
#: ../includes/class-ure-lib.php:1957
|
492 |
+
msgid "Edit plugins"
|
493 |
+
msgstr "Bővítmények szerkesztése"
|
494 |
+
|
495 |
+
#: ../includes/class-ure-lib.php:1958
|
496 |
+
msgid "Edit users"
|
497 |
+
msgstr "Felhasználók szerkesztése"
|
498 |
+
|
499 |
+
#: ../includes/class-ure-lib.php:1959
|
500 |
+
msgid "Edit files"
|
501 |
+
msgstr "Fájlok szerkesztése"
|
502 |
+
|
503 |
+
#: ../includes/class-ure-lib.php:1960
|
504 |
+
msgid "Manage options"
|
505 |
+
msgstr "Beállítások kezelése"
|
506 |
+
|
507 |
+
#: ../includes/class-ure-lib.php:1961
|
508 |
+
msgid "Moderate comments"
|
509 |
+
msgstr "Hozzászólások moderálása"
|
510 |
+
|
511 |
+
#: ../includes/class-ure-lib.php:1962
|
512 |
+
msgid "Manage categories"
|
513 |
+
msgstr "Kategóriák kezelése"
|
514 |
+
|
515 |
+
#: ../includes/class-ure-lib.php:1963
|
516 |
+
msgid "Manage links"
|
517 |
+
msgstr "Hivatkozások kezelése"
|
518 |
+
|
519 |
+
#: ../includes/class-ure-lib.php:1964
|
520 |
+
msgid "Upload files"
|
521 |
+
msgstr "Fájlok feltöltése"
|
522 |
+
|
523 |
+
#: ../includes/class-ure-lib.php:1965
|
524 |
+
msgid "Import"
|
525 |
+
msgstr "Importálás"
|
526 |
+
|
527 |
+
#: ../includes/class-ure-lib.php:1966
|
528 |
+
msgid "Unfiltered html"
|
529 |
+
msgstr "Szűretlen HTML"
|
530 |
+
|
531 |
+
#: ../includes/class-ure-lib.php:1967
|
532 |
+
msgid "Edit posts"
|
533 |
+
msgstr "Bejegyzések szerkesztése"
|
534 |
+
|
535 |
+
#: ../includes/class-ure-lib.php:1968
|
536 |
+
msgid "Edit others posts"
|
537 |
+
msgstr "Mások bejegyzéseinek szerkeszése"
|
538 |
+
|
539 |
+
#: ../includes/class-ure-lib.php:1969
|
540 |
+
msgid "Edit published posts"
|
541 |
+
msgstr "Közzétett bejegyzések szerkesztése"
|
542 |
+
|
543 |
+
#: ../includes/class-ure-lib.php:1970
|
544 |
+
msgid "Publish posts"
|
545 |
+
msgstr "Bejegyzések közzététele"
|
546 |
+
|
547 |
+
#: ../includes/class-ure-lib.php:1971
|
548 |
+
msgid "Edit pages"
|
549 |
+
msgstr "Oldalak szerkesztése"
|
550 |
+
|
551 |
+
#: ../includes/class-ure-lib.php:1972
|
552 |
+
msgid "Read"
|
553 |
+
msgstr "Olvasás"
|
554 |
+
|
555 |
+
#: ../includes/class-ure-lib.php:1973
|
556 |
+
msgid "Level 10"
|
557 |
+
msgstr "10. szint"
|
558 |
+
|
559 |
+
#: ../includes/class-ure-lib.php:1974
|
560 |
+
msgid "Level 9"
|
561 |
+
msgstr "9. szint"
|
562 |
+
|
563 |
+
#: ../includes/class-ure-lib.php:1975
|
564 |
+
msgid "Level 8"
|
565 |
+
msgstr "8. szint"
|
566 |
+
|
567 |
+
#: ../includes/class-ure-lib.php:1976
|
568 |
+
msgid "Level 7"
|
569 |
+
msgstr "7. szint"
|
570 |
+
|
571 |
+
#: ../includes/class-ure-lib.php:1977
|
572 |
+
msgid "Level 6"
|
573 |
+
msgstr "6. szint"
|
574 |
+
|
575 |
+
#: ../includes/class-ure-lib.php:1978
|
576 |
+
msgid "Level 5"
|
577 |
+
msgstr "5. szint"
|
578 |
+
|
579 |
+
#: ../includes/class-ure-lib.php:1979
|
580 |
+
msgid "Level 4"
|
581 |
+
msgstr "4. szint"
|
582 |
+
|
583 |
+
#: ../includes/class-ure-lib.php:1980
|
584 |
+
msgid "Level 3"
|
585 |
+
msgstr "3. szint"
|
586 |
+
|
587 |
+
#: ../includes/class-ure-lib.php:1981
|
588 |
+
msgid "Level 2"
|
589 |
+
msgstr "2. szint"
|
590 |
+
|
591 |
+
#: ../includes/class-ure-lib.php:1982
|
592 |
+
msgid "Level 1"
|
593 |
+
msgstr "1. szint"
|
594 |
+
|
595 |
+
#: ../includes/class-ure-lib.php:1983
|
596 |
+
msgid "Level 0"
|
597 |
+
msgstr "0. szint"
|
598 |
+
|
599 |
+
#: ../includes/class-ure-lib.php:1984
|
600 |
+
msgid "Edit others pages"
|
601 |
+
msgstr "Mások oldalainak szerkesztése"
|
602 |
+
|
603 |
+
#: ../includes/class-ure-lib.php:1985
|
604 |
+
msgid "Edit published pages"
|
605 |
+
msgstr "Közzétett oldalak szerkesztése"
|
606 |
+
|
607 |
+
#: ../includes/class-ure-lib.php:1986
|
608 |
+
msgid "Publish pages"
|
609 |
+
msgstr "Oldalak közzététele"
|
610 |
+
|
611 |
+
#: ../includes/class-ure-lib.php:1987
|
612 |
+
msgid "Delete pages"
|
613 |
+
msgstr "Oldalak törlése"
|
614 |
+
|
615 |
+
#: ../includes/class-ure-lib.php:1988
|
616 |
+
msgid "Delete others pages"
|
617 |
+
msgstr "Mások oldalainak törlése"
|
618 |
+
|
619 |
+
#: ../includes/class-ure-lib.php:1989
|
620 |
+
msgid "Delete published pages"
|
621 |
+
msgstr "Közzétett oldalak törlése"
|
622 |
+
|
623 |
+
#: ../includes/class-ure-lib.php:1990
|
624 |
+
msgid "Delete posts"
|
625 |
+
msgstr "Bejegyzések törlése"
|
626 |
+
|
627 |
+
#: ../includes/class-ure-lib.php:1991
|
628 |
+
msgid "Delete others posts"
|
629 |
+
msgstr "Mások bejegyzéseinek törlése"
|
630 |
+
|
631 |
+
#: ../includes/class-ure-lib.php:1992
|
632 |
+
msgid "Delete published posts"
|
633 |
+
msgstr "Közzétett bejegyzések törlése"
|
634 |
+
|
635 |
+
#: ../includes/class-ure-lib.php:1993
|
636 |
+
msgid "Delete private posts"
|
637 |
+
msgstr "Privát bejegyzések törlése"
|
638 |
+
|
639 |
+
#: ../includes/class-ure-lib.php:1994
|
640 |
+
msgid "Edit private posts"
|
641 |
+
msgstr "Privát bejegyzések szerkesztése"
|
642 |
+
|
643 |
+
#: ../includes/class-ure-lib.php:1995
|
644 |
+
msgid "Read private posts"
|
645 |
+
msgstr "Privát bejegyzések olvasása"
|
646 |
+
|
647 |
+
#: ../includes/class-ure-lib.php:1996
|
648 |
+
msgid "Delete private pages"
|
649 |
+
msgstr "Privát oldalak törlése"
|
650 |
+
|
651 |
+
#: ../includes/class-ure-lib.php:1997
|
652 |
+
msgid "Edit private pages"
|
653 |
+
msgstr "Privát oldalak szerkesztése"
|
654 |
+
|
655 |
+
#: ../includes/class-ure-lib.php:1998
|
656 |
+
msgid "Read private pages"
|
657 |
+
msgstr "Privát oldalak olvasása"
|
658 |
+
|
659 |
+
#: ../includes/class-ure-lib.php:1999
|
660 |
+
msgid "Delete users"
|
661 |
+
msgstr "Felhasználók törlése"
|
662 |
+
|
663 |
+
#: ../includes/class-ure-lib.php:2000
|
664 |
+
msgid "Create users"
|
665 |
+
msgstr "Felhasználók létrehozása"
|
666 |
+
|
667 |
+
#: ../includes/class-ure-lib.php:2001
|
668 |
+
msgid "Unfiltered upload"
|
669 |
+
msgstr "Szűretlen feltöltés"
|
670 |
+
|
671 |
+
#: ../includes/class-ure-lib.php:2002
|
672 |
+
msgid "Edit dashboard"
|
673 |
+
msgstr "Vezérlőpult szerkesztése"
|
674 |
+
|
675 |
+
#: ../includes/class-ure-lib.php:2003
|
676 |
+
msgid "Update plugins"
|
677 |
+
msgstr "Bővítmények frissítése"
|
678 |
+
|
679 |
+
#: ../includes/class-ure-lib.php:2004
|
680 |
+
msgid "Delete plugins"
|
681 |
+
msgstr "Bővítmények törlése"
|
682 |
+
|
683 |
+
#: ../includes/class-ure-lib.php:2005
|
684 |
+
msgid "Install plugins"
|
685 |
+
msgstr "Bővítmények telepítése"
|
686 |
+
|
687 |
+
#: ../includes/class-ure-lib.php:2006
|
688 |
+
msgid "Update themes"
|
689 |
+
msgstr "Sablonok frissítése"
|
690 |
+
|
691 |
+
#: ../includes/class-ure-lib.php:2007
|
692 |
+
msgid "Install themes"
|
693 |
+
msgstr "Sablonok telepítése"
|
694 |
+
|
695 |
+
#: ../includes/class-ure-lib.php:2008
|
696 |
+
msgid "Update core"
|
697 |
+
msgstr "Mag frissítése"
|
698 |
+
|
699 |
+
#: ../includes/class-ure-lib.php:2009
|
700 |
+
msgid "List users"
|
701 |
+
msgstr "Felhasználók listázása"
|
702 |
+
|
703 |
+
#: ../includes/class-ure-lib.php:2010
|
704 |
+
msgid "Remove users"
|
705 |
+
msgstr "Felhasználók törlése"
|
706 |
+
|
707 |
+
#: ../includes/class-ure-lib.php:2011
|
708 |
+
msgid "Add users"
|
709 |
+
msgstr "Felhasználók hozzáadása"
|
710 |
+
|
711 |
+
#: ../includes/class-ure-lib.php:2012
|
712 |
+
msgid "Promote users"
|
713 |
+
msgstr "Felhasználók előléptetése"
|
714 |
+
|
715 |
+
#: ../includes/class-ure-lib.php:2013
|
716 |
+
msgid "Edit theme options"
|
717 |
+
msgstr "Sablon beállítások módosítása"
|
718 |
+
|
719 |
+
#: ../includes/class-ure-lib.php:2014
|
720 |
+
msgid "Delete themes"
|
721 |
+
msgstr "Sablonok törlése"
|
722 |
+
|
723 |
+
#: ../includes/class-ure-lib.php:2015
|
724 |
+
msgid "Export"
|
725 |
+
msgstr "Exportálás"
|
726 |
+
|
727 |
+
#: ../includes/class-ure-lib.php:2125
|
728 |
+
msgid "Error: Capability name must contain latin characters and digits only!"
|
729 |
+
msgstr "Hiba: a képesség neve csak latin betűkből és számokból állhat."
|
730 |
+
|
731 |
+
#: ../includes/class-ure-lib.php:2138
|
732 |
+
#, php-format
|
733 |
+
msgid "Capability %s is added successfully"
|
734 |
+
msgstr "%s képesség sikeresen hozzáadva"
|
735 |
+
|
736 |
+
#: ../includes/class-ure-lib.php:2140
|
737 |
+
#, php-format
|
738 |
+
msgid "Capability %s exists already"
|
739 |
+
msgstr "%s képesség már létezik"
|
740 |
+
|
741 |
+
#: ../includes/class-ure-lib.php:2165
|
742 |
+
#, php-format
|
743 |
+
msgid "Error! You do not have permission to delete this capability: %s!"
|
744 |
+
msgstr "Hiba! Nincs jogosultsága a képesség (%s) törléséhez."
|
745 |
+
|
746 |
+
#: ../includes/class-ure-lib.php:2184
|
747 |
+
#, php-format
|
748 |
+
msgid "Capability %s is removed successfully"
|
749 |
+
msgstr "%s képesség sikeresen törölve"
|
750 |
+
|
751 |
+
#: ../includes/class-ure-lib.php:2288
|
752 |
+
msgid "Version:"
|
753 |
+
msgstr "Verzió:"
|
754 |
+
|
755 |
+
#: ../includes/class-ure-lib.php:2289
|
756 |
+
msgid "Author's website"
|
757 |
+
msgstr "Szerző weboldala"
|
758 |
+
|
759 |
+
#: ../includes/class-ure-lib.php:2290
|
760 |
+
msgid "Plugin webpage"
|
761 |
+
msgstr "Bővítmény weboldala"
|
762 |
+
|
763 |
+
#: ../includes/class-ure-lib.php:2291
|
764 |
+
msgid "Plugin download"
|
765 |
+
msgstr "Bővítmény letöltése"
|
766 |
+
|
767 |
+
#: ../includes/class-ure-lib.php:2293
|
768 |
+
msgid "FAQ"
|
769 |
+
msgstr "GyIK"
|
770 |
+
|
771 |
+
#: ../includes/class-ure-lib.php:2341
|
772 |
+
msgid "None"
|
773 |
+
msgstr "Nincs"
|
774 |
+
|
775 |
+
#: ../includes/class-ure-lib.php:2368
|
776 |
+
msgid "Delete All Unused Roles"
|
777 |
+
msgstr "Minden nem használt szerepkör törlése"
|
778 |
+
|
779 |
+
#: ../includes/class-ure-lib.php:2392
|
780 |
+
msgid "— No role for this site —"
|
781 |
+
msgstr "— Nincs szerepköre ezen az oldalon —"
|
782 |
+
|
783 |
+
#: ../includes/ure-user-edit.php:31
|
784 |
+
msgid "Network Super Admin"
|
785 |
+
msgstr "Multisite Szuperadmin"
|
786 |
+
|
787 |
+
#: ../includes/ure-user-edit.php:34
|
788 |
+
msgid "Change capabilities for user"
|
789 |
+
msgstr "Szerepkör módosítása -"
|
790 |
+
|
791 |
+
#: ../includes/ure-user-edit.php:71
|
792 |
+
msgid "Primary Role:"
|
793 |
+
msgstr "Elsődleges szerepkör:"
|
794 |
+
|
795 |
+
#: ../includes/ure-user-edit.php:81
|
796 |
+
msgid "bbPress Role:"
|
797 |
+
msgstr "bbPress szerepkör:"
|
798 |
+
|
799 |
+
#: ../includes/ure-user-edit.php:91
|
800 |
+
msgid "Other Roles:"
|
801 |
+
msgstr "Más szerepkörök:"
|
802 |
+
|
803 |
+
#: ../includes/class-ure-screen-help.php:16
|
804 |
+
msgid ""
|
805 |
+
"turn this option on in order to make the \"Administrator\" role available at "
|
806 |
+
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
807 |
+
"for security reasons."
|
808 |
+
msgstr ""
|
809 |
+
"ha engedélyezve van, akkor az „Adminisztrátor” szerepkör is megjelenik a "
|
810 |
+
"legördülő listákban a Szerepkör szerkesztőben. Alapértelmezésként el van "
|
811 |
+
"rejtve biztonsági okok miatt."
|
812 |
+
|
813 |
+
#: ../includes/class-ure-screen-help.php:19
|
814 |
+
msgid ""
|
815 |
+
"automatically converts capability names from the technical form for internal "
|
816 |
+
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
817 |
+
"others posts\"."
|
818 |
+
msgstr ""
|
819 |
+
"olvashatóvá alakítja (pl: „Mások bejegyzéseinek szerkesztése”) a belső "
|
820 |
+
"használatra szánt technikai formát (pl: ”edit_others_posts”)."
|
821 |
+
|
822 |
+
#: ../includes/class-ure-screen-help.php:22
|
823 |
+
msgid ""
|
824 |
+
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
825 |
+
"by WordPress. They are left at the user roles for the compatibility purpose "
|
826 |
+
"with the old themes and plugins code. Turning on this option will show those "
|
827 |
+
"deprecated capabilities."
|
828 |
+
msgstr ""
|
829 |
+
"pár képesség (pl: ‟level_0”, ‟level_1”) elavult, és a WordPress már nem "
|
830 |
+
"használja. Csak a régi sablonokkal és bővítményekkel való kompatíbilitás "
|
831 |
+
"miatt maradtak meg. Ez az opció ezeket az elavult képességeket jeleníti meg."
|
832 |
+
|
833 |
+
#: ../includes/class-ure-screen-help.php:41
|
834 |
+
#, fuzzy
|
835 |
+
msgid "select roles below"
|
836 |
+
msgstr "Kijelölés megszünt."
|
837 |
+
|
838 |
+
#: ../includes/class-ure-screen-help.php:56
|
839 |
+
#, fuzzy
|
840 |
+
msgid "Other default roles for new registered user"
|
841 |
+
msgstr "Egyéb alap szerepkörök újonnan regisztrált felhasználók számára:"
|
842 |
+
|
843 |
+
#: ../includes/class-ure-screen-help.php:57
|
844 |
+
#, fuzzy
|
845 |
+
msgid ""
|
846 |
+
"select roles below to assign them to the new user automatically as an "
|
847 |
+
"addition to the primary role. Note for multisite environment: take into "
|
848 |
+
"account that other default roles should exist at the site, in order to be "
|
849 |
+
"assigned to the new registered users."
|
850 |
+
msgstr ""
|
851 |
+
"Megjegyzés a MultiSite környezethez: vegye figyelembe, hogy több alap "
|
852 |
+
"szerepkörnek is léteznie kell a weboldalon, az új felhasználók "
|
853 |
+
"létrehozásához."
|
854 |
+
|
855 |
+
#: ../includes/class-ure-screen-help.php:75
|
856 |
+
#, fuzzy
|
857 |
+
msgid "Allow non super-admininstrators to create, edit and delete users"
|
858 |
+
msgstr ""
|
859 |
+
"Nem szuperadminok is hozhassanak létre, módosíthassanak és törölhessenek "
|
860 |
+
"felhasználókat"
|
861 |
+
|
862 |
+
#: ../includes/class-ure-screen-help.php:76
|
863 |
+
#, fuzzy
|
864 |
+
msgid ""
|
865 |
+
"Super administrator only may create, edit and delete users under WordPress "
|
866 |
+
"multi-site by default. Turn this option on in order to remove this "
|
867 |
+
"limitation."
|
868 |
+
msgstr ""
|
869 |
+
"WordPress MultiSite esetén csak a szuperadminok hozhatnak létre, "
|
870 |
+
"módosíthatnak és törölhetnek felhasználókat. Ezzel az opcióval ez a megkötés "
|
871 |
+
"feloldható."
|
872 |
+
|
873 |
+
#~ msgid "Allow create, edit and delete users to not super-admininstrators"
|
874 |
+
#~ msgstr ""
|
875 |
+
#~ "Engedély felhasználó létrehozására, módosítására és törlésére a nem "
|
876 |
+
#~ "szuperadminoknak"
|
877 |
+
|
878 |
+
#~ msgid "Overview"
|
879 |
+
#~ msgstr "Áttekintés"
|
lang/ure-id_ID.mo
CHANGED
Binary file
|
lang/ure-id_ID.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: 2014-
|
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"
|
@@ -22,67 +22,72 @@ msgid "User Role Editor - Options"
|
|
22 |
msgstr "User Role Editor"
|
23 |
|
24 |
#: ../includes/settings-template.php:21
|
|
|
25 |
msgid "General"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: ../includes/settings-template.php:
|
|
|
29 |
msgid "Additional Modules"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: ../includes/settings-template.php:
|
|
|
33 |
#, fuzzy
|
34 |
msgid "Default Roles"
|
35 |
msgstr "Peran "
|
36 |
|
37 |
-
#: ../includes/settings-template.php:
|
|
|
38 |
msgid "Multisite"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: ../includes/settings-template.php:
|
42 |
msgid "About"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ../includes/settings-template.php:
|
46 |
#: ../includes/class-ure-screen-help.php:15
|
47 |
msgid "Show Administrator role at User Role Editor"
|
48 |
msgstr "Tampilkan peran Administrator di User Role Editor"
|
49 |
|
50 |
-
#: ../includes/settings-template.php:
|
51 |
#: ../includes/class-ure-screen-help.php:18
|
52 |
msgid "Show capabilities in the human readable form"
|
53 |
msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
54 |
|
55 |
-
#: ../includes/settings-template.php:
|
56 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
57 |
msgid "Show deprecated capabilities"
|
58 |
msgstr "Tampilkan kemampuan usang"
|
59 |
|
60 |
-
#: ../includes/settings-template.php:
|
61 |
-
#: ../includes/settings-template.php:
|
62 |
msgid "Save"
|
63 |
msgstr "Simpan"
|
64 |
|
65 |
-
#: ../includes/settings-template.php:
|
|
|
66 |
msgid "Count users without role"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../includes/settings-template.php:
|
70 |
#, fuzzy
|
71 |
msgid "Primary default role: "
|
72 |
msgstr "Peran Utama:"
|
73 |
|
74 |
-
#: ../includes/settings-template.php:
|
75 |
msgid "Other default roles for new registered user: "
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: ../includes/settings-template.php:
|
79 |
msgid ""
|
80 |
"Note for multisite environment: take into account that other default roles "
|
81 |
"should exist at the site, in order to be assigned to the new registered "
|
82 |
"users."
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: ../includes/settings-template.php:
|
86 |
msgid "Allow non super administrators to create, edit, and delete users"
|
87 |
msgstr ""
|
88 |
|
@@ -103,42 +108,38 @@ msgstr ""
|
|
103 |
msgid "You do not have permission to edit this user."
|
104 |
msgstr "Anda tidak diizinkan untuk menyunting user ini. "
|
105 |
|
106 |
-
#: ../includes/class-user-role-editor.php:
|
107 |
msgid "Capabilities"
|
108 |
msgstr "Kemampuan"
|
109 |
|
110 |
-
#: ../includes/class-user-role-editor.php:
|
111 |
msgid "Settings"
|
112 |
msgstr "Pengaturan"
|
113 |
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
-
#: ../includes/class-ure-lib.php:
|
116 |
msgid "Changelog"
|
117 |
msgstr "log Perubahan"
|
118 |
|
119 |
-
#: ../includes/class-user-role-editor.php:
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
#: ../includes/class-user-role-editor.php:561
|
124 |
-
#: ../includes/class-user-role-editor.php:589
|
125 |
-
#: ../includes/class-user-role-editor.php:930
|
126 |
-
#: ../includes/class-ure-lib.php:232
|
127 |
msgid "User Role Editor"
|
128 |
msgstr "User Role Editor"
|
129 |
|
130 |
-
#: ../includes/class-user-role-editor.php:
|
131 |
-
#: ../includes/class-user-role-editor.php:
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
msgid "User Role Editor options are updated"
|
134 |
msgstr "Pilihan User Role Editor diperbarui"
|
135 |
|
136 |
-
#: ../includes/class-user-role-editor.php:
|
137 |
#, fuzzy
|
138 |
msgid "Default Roles are updated"
|
139 |
msgstr "Peran "
|
140 |
|
141 |
-
#: ../includes/class-user-role-editor.php:
|
142 |
msgid ""
|
143 |
"You do not have sufficient permissions to manage options for User Role "
|
144 |
"Editor."
|
@@ -146,45 +147,45 @@ msgstr ""
|
|
146 |
"Anda tidak memiliki izin yang memadai untuk mengelola pilihan User Role "
|
147 |
"Editor."
|
148 |
|
149 |
-
#: ../includes/class-user-role-editor.php:
|
150 |
msgid "Insufficient permissions to work with User Role Editor"
|
151 |
msgstr "Izin yang tidak sesuai untuk bekerja dengan User Role Editor"
|
152 |
|
153 |
-
#: ../includes/class-user-role-editor.php:
|
154 |
msgid "Select All"
|
155 |
msgstr "Pilih Semua"
|
156 |
|
157 |
-
#: ../includes/class-user-role-editor.php:
|
158 |
msgid "Unselect All"
|
159 |
msgstr "Batalkan Semua"
|
160 |
|
161 |
-
#: ../includes/class-user-role-editor.php:
|
162 |
msgid "Reverse"
|
163 |
msgstr "Memutar"
|
164 |
|
165 |
-
#: ../includes/class-user-role-editor.php:
|
166 |
msgid "Update"
|
167 |
msgstr "Pembaruan"
|
168 |
|
169 |
-
#: ../includes/class-user-role-editor.php:
|
170 |
msgid "Please confirm permissions update"
|
171 |
msgstr "Harap konfirmasi pembaruan izin"
|
172 |
|
173 |
-
#: ../includes/class-user-role-editor.php:
|
174 |
msgid "Add New Role"
|
175 |
msgstr "Tambah Peran Baru"
|
176 |
|
177 |
-
#: ../includes/class-user-role-editor.php:
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
#, fuzzy
|
180 |
msgid "Rename Role"
|
181 |
msgstr "Hapus Peran"
|
182 |
|
183 |
-
#: ../includes/class-user-role-editor.php:
|
184 |
msgid " Role name (ID) can not be empty!"
|
185 |
msgstr "Nama peran (ID) tidak boleh kosong!"
|
186 |
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
msgid ""
|
189 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
190 |
"only!"
|
@@ -192,43 +193,43 @@ msgstr ""
|
|
192 |
"Nama peran (ID) harus berisi karakter latin, angka, tanda hubung atau garis "
|
193 |
"bawah saja!"
|
194 |
|
195 |
-
#: ../includes/class-user-role-editor.php:
|
196 |
msgid ""
|
197 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
198 |
"it."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ../includes/class-user-role-editor.php:
|
202 |
msgid "Add Role"
|
203 |
msgstr "Tambah Peran"
|
204 |
|
205 |
-
#: ../includes/class-user-role-editor.php:
|
206 |
msgid "Delete Role"
|
207 |
msgstr "Hapus Peran"
|
208 |
|
209 |
-
#: ../includes/class-user-role-editor.php:
|
210 |
msgid "Cancel"
|
211 |
msgstr "Batalkan"
|
212 |
|
213 |
-
#: ../includes/class-user-role-editor.php:
|
214 |
msgid "Add Capability"
|
215 |
msgstr "Tambah Kemampuan"
|
216 |
|
217 |
-
#: ../includes/class-user-role-editor.php:
|
218 |
-
#: ../includes/class-user-role-editor.php:
|
219 |
msgid "Delete Capability"
|
220 |
msgstr "Hapus Kemampuan"
|
221 |
|
222 |
-
#: ../includes/class-user-role-editor.php:
|
223 |
msgid "Reset"
|
224 |
msgstr "Atur Ulang"
|
225 |
|
226 |
-
#: ../includes/class-user-role-editor.php:
|
227 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
228 |
msgstr ""
|
229 |
"BAHAYA! Reset akan mengembalikan pengaturan default dari WordPress Inti."
|
230 |
|
231 |
-
#: ../includes/class-user-role-editor.php:
|
232 |
msgid ""
|
233 |
"If any plugins have changed capabilities in any way upon installation (such "
|
234 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -237,7 +238,7 @@ msgstr ""
|
|
237 |
"(seperti S2Member, WooCommerce, dan banyak lagi), kemampuan mereka akan "
|
238 |
"DIHAPUS!"
|
239 |
|
240 |
-
#: ../includes/class-user-role-editor.php:
|
241 |
msgid ""
|
242 |
"For more information on how to undo changes and restore plugin capabilities "
|
243 |
"go to"
|
@@ -245,19 +246,19 @@ msgstr ""
|
|
245 |
"Untuk informasi lebih lanjut tentang cara membatalkan perubahan dan "
|
246 |
"mengembalikan kemampuan Plugin pergi ke"
|
247 |
|
248 |
-
#: ../includes/class-user-role-editor.php:
|
249 |
msgid "Continue?"
|
250 |
msgstr "Lanjut?"
|
251 |
|
252 |
-
#: ../includes/class-user-role-editor.php:
|
253 |
msgid "Default Role"
|
254 |
msgstr "Peran "
|
255 |
|
256 |
-
#: ../includes/class-user-role-editor.php:
|
257 |
msgid "Set New Default Role"
|
258 |
msgstr "Atur Peran Baru Default"
|
259 |
|
260 |
-
#: ../includes/class-user-role-editor.php:
|
261 |
msgid ""
|
262 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
263 |
"or other custom code"
|
@@ -265,11 +266,11 @@ msgstr ""
|
|
265 |
"Peringatan! Hati-hati - menghapus kemampuan kritis dapat menyebabkan crash "
|
266 |
"beberapa Plugin atau kode kustom lainnya"
|
267 |
|
268 |
-
#: ../includes/class-user-role-editor.php:
|
269 |
msgid " Capability name (ID) can not be empty!"
|
270 |
msgstr "Nama Kemampuan (ID) tidak boleh kosong!"
|
271 |
|
272 |
-
#: ../includes/class-user-role-editor.php:
|
273 |
msgid ""
|
274 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
275 |
"underscore only!"
|
@@ -277,12 +278,12 @@ msgstr ""
|
|
277 |
"Nama Kemampuan (ID) harus mengandung karakter latin, angka, kata penghubung "
|
278 |
"atau garis bawah saja!"
|
279 |
|
280 |
-
#: ../includes/class-user-role-editor.php:
|
281 |
-
#: ../includes/class-user-role-editor.php:
|
282 |
msgid "Other Roles"
|
283 |
msgstr "Peran Lainnya"
|
284 |
|
285 |
-
#: ../includes/class-user-role-editor.php:
|
286 |
msgid "Edit"
|
287 |
msgstr "Sunting"
|
288 |
|
@@ -316,79 +317,79 @@ msgstr "Saring Cepat:"
|
|
316 |
msgid "Custom capabilities:"
|
317 |
msgstr "Kustom kemampuan:"
|
318 |
|
319 |
-
#: ../includes/class-ure-lib.php:
|
320 |
msgid "Error: wrong request"
|
321 |
msgstr "Salah: salah permintaan"
|
322 |
|
323 |
-
#: ../includes/class-ure-lib.php:
|
324 |
msgid "Role name (ID): "
|
325 |
msgstr "Nama Peran (ID):"
|
326 |
|
327 |
-
#: ../includes/class-ure-lib.php:
|
328 |
msgid "Display Role Name: "
|
329 |
msgstr "Tampilkan Nama Peran:"
|
330 |
|
331 |
-
#: ../includes/class-ure-lib.php:
|
332 |
msgid "Make copy of: "
|
333 |
msgstr "buat salinan:"
|
334 |
|
335 |
-
#: ../includes/class-ure-lib.php:
|
336 |
msgid "Select Role:"
|
337 |
msgstr "Pilih Peran:"
|
338 |
|
339 |
-
#: ../includes/class-ure-lib.php:
|
340 |
msgid "Delete:"
|
341 |
msgstr "Hapus:"
|
342 |
|
343 |
-
#: ../includes/class-ure-lib.php:
|
344 |
msgid "Capability name (ID): "
|
345 |
msgstr "Nama Kemampuan (ID):"
|
346 |
|
347 |
-
#: ../includes/class-ure-lib.php:
|
348 |
msgid "Error: "
|
349 |
msgstr "Salah:"
|
350 |
|
351 |
-
#: ../includes/class-ure-lib.php:
|
352 |
msgid "Role"
|
353 |
msgstr "Peran"
|
354 |
|
355 |
-
#: ../includes/class-ure-lib.php:
|
356 |
msgid "does not exist"
|
357 |
msgstr "tidak ada"
|
358 |
|
359 |
-
#: ../includes/class-ure-lib.php:
|
360 |
msgid "Role is updated successfully"
|
361 |
msgstr "Peran berhasil diperbarui"
|
362 |
|
363 |
-
#: ../includes/class-ure-lib.php:
|
364 |
msgid "Roles are updated for all network"
|
365 |
msgstr "Peran diperbarui untuk semua jaringan"
|
366 |
|
367 |
-
#: ../includes/class-ure-lib.php:
|
368 |
msgid "Error occured during role(s) update"
|
369 |
msgstr "Kesalahan terjadi selama pembaruan peran"
|
370 |
|
371 |
-
#: ../includes/class-ure-lib.php:
|
372 |
msgid "User capabilities are updated successfully"
|
373 |
msgstr "Kemampuan pengguna berhasil diperbarui"
|
374 |
|
375 |
-
#: ../includes/class-ure-lib.php:
|
376 |
msgid "Error occured during user update"
|
377 |
msgstr "Kesalahan terjadi sepanjang pembaruan pengguna"
|
378 |
|
379 |
-
#: ../includes/class-ure-lib.php:
|
380 |
msgid "User Roles are restored to WordPress default values. "
|
381 |
msgstr "Peran Pengguna dikembalikan ke nilai Wordpress default."
|
382 |
|
383 |
-
#: ../includes/class-ure-lib.php:
|
384 |
msgid "Help"
|
385 |
msgstr "Bantuan"
|
386 |
|
387 |
-
#: ../includes/class-ure-lib.php:
|
388 |
msgid "Error is occur. Please check the log file."
|
389 |
msgstr "kesalahan terjadi, Harap periksa log data."
|
390 |
|
391 |
-
#: ../includes/class-ure-lib.php:
|
392 |
msgid ""
|
393 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
394 |
"only!"
|
@@ -396,384 +397,384 @@ msgstr ""
|
|
396 |
"Kesalahan: ID Peran harus mengandung karakter latin, angka, kata penghubung "
|
397 |
"dan garis bawah saja!"
|
398 |
|
399 |
-
#: ../includes/class-ure-lib.php:
|
400 |
msgid ""
|
401 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
402 |
"characters to it."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: ../includes/class-ure-lib.php:
|
406 |
#, php-format
|
407 |
msgid "Role %s exists already"
|
408 |
msgstr "Peran %s telah ada"
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
msgid "Error is encountered during new role create operation"
|
412 |
msgstr "Kesalahan ditemui selama peran baru membuat operasi"
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
415 |
#, php-format
|
416 |
msgid "Role %s is created successfully"
|
417 |
msgstr "Peran %s berhasil dibuat"
|
418 |
|
419 |
-
#: ../includes/class-ure-lib.php:
|
420 |
msgid "Error: Role ID is empty!"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Error: Empty role display name is not allowed."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
#, fuzzy, php-format
|
429 |
msgid "Role %s does not exists"
|
430 |
msgstr "tidak ada"
|
431 |
|
432 |
-
#: ../includes/class-ure-lib.php:
|
433 |
#, fuzzy, php-format
|
434 |
msgid "Role %s is renamed to %s successfully"
|
435 |
msgstr "Peran %s berhasil dibuat"
|
436 |
|
437 |
-
#: ../includes/class-ure-lib.php:
|
438 |
msgid "Error encountered during role delete operation"
|
439 |
msgstr "Kesalahan ditemui selama operasi penghapusan peran"
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
msgid "Unused roles are deleted successfully"
|
443 |
msgstr "Peran yang tidak digunakan berhasil dihapus"
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
#, php-format
|
447 |
msgid "Role %s is deleted successfully"
|
448 |
msgstr "Peran %s berhasil dihapus"
|
449 |
|
450 |
-
#: ../includes/class-ure-lib.php:
|
451 |
msgid "Error encountered during default role change operation"
|
452 |
msgstr "Kesalahan ditemui selama operasi perubahan peran standar"
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
#, php-format
|
456 |
msgid "Default role for new users is set to %s successfully"
|
457 |
msgstr "Peran standar untuk pengguna baru diatur ke %s dengan sukses"
|
458 |
|
459 |
-
#: ../includes/class-ure-lib.php:
|
460 |
msgid "Editor"
|
461 |
msgstr "Penyunting"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Author"
|
465 |
msgstr "Pengarang"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
msgid "Contributor"
|
469 |
msgstr "Kontributor"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Subscriber"
|
473 |
msgstr "Pelanggan"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Switch themes"
|
477 |
msgstr "Ganti tema"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Edit themes"
|
481 |
msgstr "Sunting tema"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Activate plugins"
|
485 |
msgstr "Aktifkan plugin"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Edit plugins"
|
489 |
msgstr "Sunting plugin"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Edit users"
|
493 |
msgstr "Sunting pengguna"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Edit files"
|
497 |
msgstr "Sunting data"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Manage options"
|
501 |
msgstr "kelola pilihan"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Moderate comments"
|
505 |
msgstr "Moderasi komentar"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Manage categories"
|
509 |
msgstr "Kelola kategori"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Manage links"
|
513 |
msgstr "Kelola tautan"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Upload files"
|
517 |
msgstr "Unggah data"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Import"
|
521 |
msgstr "Impor"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Unfiltered html"
|
525 |
msgstr "HTML tidak tersaring"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Edit posts"
|
529 |
msgstr "Sunting posting"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Edit others posts"
|
533 |
msgstr "Sunting posting lainnya"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Edit published posts"
|
537 |
msgstr "Sunting posting terpublikasi"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Publish posts"
|
541 |
msgstr "Publikasi posting"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Edit pages"
|
545 |
msgstr "Sunting halaman"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Read"
|
549 |
msgstr "Baca"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Level 10"
|
553 |
msgstr "Tingkat 10"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Level 9"
|
557 |
msgstr "Tingkat 9"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Level 8"
|
561 |
msgstr "Tingkat 8"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Level 7"
|
565 |
msgstr "Tingkat 7"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Level 6"
|
569 |
msgstr "Tingkat 6"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Level 5"
|
573 |
msgstr "Tingkat 5"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Level 4"
|
577 |
msgstr "Tingkat 4"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Level 3"
|
581 |
msgstr "Tingkat 3"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Level 2"
|
585 |
msgstr "Tingkat 2"
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Level 1"
|
589 |
msgstr "Tingkat 1"
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Level 0"
|
593 |
msgstr "Tingkat 0"
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Edit others pages"
|
597 |
msgstr "Sunting halaman lainnya"
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Edit published pages"
|
601 |
msgstr "Sunting halaman terpublikasi"
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
msgid "Publish pages"
|
605 |
msgstr "Publikasi halaman"
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Delete pages"
|
609 |
msgstr "Hapus halaman"
|
610 |
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Delete others pages"
|
613 |
msgstr "Hapus halaman lainnya"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Delete published pages"
|
617 |
msgstr "Hapus halaman terpublikasi"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Delete posts"
|
621 |
msgstr "hapus posting"
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Delete others posts"
|
625 |
msgstr "Hapus posting lainnya"
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Delete published posts"
|
629 |
msgstr "Hapus posting terpublikasi"
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Delete private posts"
|
633 |
msgstr "Hapus posting pribadi"
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Edit private posts"
|
637 |
msgstr "Sunting posting pribadi"
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Read private posts"
|
641 |
msgstr "Baca posting pribadi"
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "Delete private pages"
|
645 |
msgstr "Hapus halaman pribadi"
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Edit private pages"
|
649 |
msgstr "Sunting halaman pribadi"
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Read private pages"
|
653 |
msgstr "baca halaman pribadi"
|
654 |
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Delete users"
|
657 |
msgstr "Hapus pengguna"
|
658 |
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
msgid "Create users"
|
661 |
msgstr "Buat pengguna"
|
662 |
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Unfiltered upload"
|
665 |
msgstr "Unggahan tidak tersaring"
|
666 |
|
667 |
-
#: ../includes/class-ure-lib.php:
|
668 |
msgid "Edit dashboard"
|
669 |
msgstr "Sunting dasbor"
|
670 |
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Update plugins"
|
673 |
msgstr "Perbarui plugin"
|
674 |
|
675 |
-
#: ../includes/class-ure-lib.php:
|
676 |
msgid "Delete plugins"
|
677 |
msgstr "Hapus plugin"
|
678 |
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Install plugins"
|
681 |
msgstr "Pasang plugin"
|
682 |
|
683 |
-
#: ../includes/class-ure-lib.php:
|
684 |
msgid "Update themes"
|
685 |
msgstr "Perbarui tema"
|
686 |
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Install themes"
|
689 |
msgstr "Pasang tema"
|
690 |
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Update core"
|
693 |
msgstr "Perbarui inti"
|
694 |
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "List users"
|
697 |
msgstr "Daftar pengguna"
|
698 |
|
699 |
-
#: ../includes/class-ure-lib.php:
|
700 |
msgid "Remove users"
|
701 |
msgstr "Hapus pengguna"
|
702 |
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Add users"
|
705 |
msgstr "Tambah pengguna"
|
706 |
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
msgid "Promote users"
|
709 |
msgstr "Promosi pengguna"
|
710 |
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Edit theme options"
|
713 |
msgstr "Sunting pilihan tema"
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
msgid "Delete themes"
|
717 |
msgstr "Hapus tema"
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Export"
|
721 |
msgstr "Ekspor"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
725 |
msgstr "Salah: Kemampuan nama harus mengandung karakter latin dan angka saja!"
|
726 |
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
#, php-format
|
729 |
msgid "Capability %s is added successfully"
|
730 |
msgstr "Kemampuan %s berhasil ditambahkan"
|
731 |
|
732 |
-
#: ../includes/class-ure-lib.php:
|
733 |
#, php-format
|
734 |
msgid "Capability %s exists already"
|
735 |
msgstr "Kemampuan %s telah ada"
|
736 |
|
737 |
-
#: ../includes/class-ure-lib.php:
|
738 |
#, php-format
|
739 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
740 |
msgstr "Salah! Anda tidak memiliki izin untuk menghapus kemampuan ini: %s!"
|
741 |
|
742 |
-
#: ../includes/class-ure-lib.php:
|
743 |
#, php-format
|
744 |
msgid "Capability %s is removed successfully"
|
745 |
msgstr "Kemampuan %s berhasil dihapus"
|
746 |
|
747 |
-
#: ../includes/class-ure-lib.php:
|
748 |
msgid "Version:"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: ../includes/class-ure-lib.php:
|
752 |
msgid "Author's website"
|
753 |
msgstr "Website pengarang"
|
754 |
|
755 |
-
#: ../includes/class-ure-lib.php:
|
756 |
msgid "Plugin webpage"
|
757 |
msgstr "Halaman web Plugin"
|
758 |
|
759 |
-
#: ../includes/class-ure-lib.php:
|
760 |
#, fuzzy
|
761 |
msgid "Plugin download"
|
762 |
msgstr "Halaman web Plugin"
|
763 |
|
764 |
-
#: ../includes/class-ure-lib.php:
|
765 |
msgid "FAQ"
|
766 |
msgstr "FAQ"
|
767 |
|
768 |
-
#: ../includes/class-ure-lib.php:
|
769 |
msgid "None"
|
770 |
msgstr "Nihil"
|
771 |
|
772 |
-
#: ../includes/class-ure-lib.php:
|
773 |
msgid "Delete All Unused Roles"
|
774 |
msgstr "Hapus Peran Tidak Terpakai"
|
775 |
|
776 |
-
#: ../includes/class-ure-lib.php:
|
777 |
msgid "— No role for this site —"
|
778 |
msgstr "— Tidak ada peran untuk situs ini —"
|
779 |
|
@@ -829,20 +830,45 @@ msgstr ""
|
|
829 |
"kompatibilitas dengan tema lama dan kode plugin. Menyalakan opsi ini akan "
|
830 |
"menunjukkan kemampuan mereka usang."
|
831 |
|
832 |
-
#: ../includes/class-ure-screen-help.php:
|
833 |
-
|
|
|
|
|
|
|
|
|
|
|
834 |
msgstr ""
|
835 |
-
"Izinkan membuat, menyunting dan menghapus pengguna untuk yang bukan super-"
|
836 |
-
"administrator"
|
837 |
|
838 |
-
#: ../includes/class-ure-screen-help.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
839 |
msgid ""
|
840 |
"Super administrator only may create, edit and delete users under WordPress "
|
841 |
-
"multi-site. Turn this option on in order to remove this
|
|
|
842 |
msgstr ""
|
843 |
"Super administrator hanya dapat membuat, mengedit dan menghapus pengguna di "
|
844 |
"bawah WordPress multi-situs. Aktifkan pilihan ini dalam rangka menghapus "
|
845 |
"keterbatasan ini."
|
846 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
847 |
#~ msgid "About this Plugin:"
|
848 |
#~ msgstr "Tentang Plugin ini:"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-01 12:45+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"
|
22 |
msgstr "User Role Editor"
|
23 |
|
24 |
#: ../includes/settings-template.php:21
|
25 |
+
#: ../includes/class-user-role-editor.php:547
|
26 |
msgid "General"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: ../includes/settings-template.php:26
|
30 |
+
#: ../includes/class-user-role-editor.php:553
|
31 |
msgid "Additional Modules"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: ../includes/settings-template.php:30
|
35 |
+
#: ../includes/class-user-role-editor.php:559
|
36 |
#, fuzzy
|
37 |
msgid "Default Roles"
|
38 |
msgstr "Peran "
|
39 |
|
40 |
+
#: ../includes/settings-template.php:34
|
41 |
+
#: ../includes/class-user-role-editor.php:564
|
42 |
msgid "Multisite"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ../includes/settings-template.php:39
|
46 |
msgid "About"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: ../includes/settings-template.php:53
|
50 |
#: ../includes/class-ure-screen-help.php:15
|
51 |
msgid "Show Administrator role at User Role Editor"
|
52 |
msgstr "Tampilkan peran Administrator di User Role Editor"
|
53 |
|
54 |
+
#: ../includes/settings-template.php:61
|
55 |
#: ../includes/class-ure-screen-help.php:18
|
56 |
msgid "Show capabilities in the human readable form"
|
57 |
msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
58 |
|
59 |
+
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
60 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
61 |
msgid "Show deprecated capabilities"
|
62 |
msgstr "Tampilkan kemampuan usang"
|
63 |
|
64 |
+
#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
|
65 |
+
#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
|
66 |
msgid "Save"
|
67 |
msgstr "Simpan"
|
68 |
|
69 |
+
#: ../includes/settings-template.php:102
|
70 |
+
#: ../includes/class-ure-screen-help.php:40
|
71 |
msgid "Count users without role"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: ../includes/settings-template.php:129
|
75 |
#, fuzzy
|
76 |
msgid "Primary default role: "
|
77 |
msgstr "Peran Utama:"
|
78 |
|
79 |
+
#: ../includes/settings-template.php:136
|
80 |
msgid "Other default roles for new registered user: "
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: ../includes/settings-template.php:142
|
84 |
msgid ""
|
85 |
"Note for multisite environment: take into account that other default roles "
|
86 |
"should exist at the site, in order to be assigned to the new registered "
|
87 |
"users."
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: ../includes/settings-template.php:168
|
91 |
msgid "Allow non super administrators to create, edit, and delete users"
|
92 |
msgstr ""
|
93 |
|
108 |
msgid "You do not have permission to edit this user."
|
109 |
msgstr "Anda tidak diizinkan untuk menyunting user ini. "
|
110 |
|
111 |
+
#: ../includes/class-user-role-editor.php:422
|
112 |
msgid "Capabilities"
|
113 |
msgstr "Kemampuan"
|
114 |
|
115 |
+
#: ../includes/class-user-role-editor.php:514
|
116 |
msgid "Settings"
|
117 |
msgstr "Pengaturan"
|
118 |
|
119 |
+
#: ../includes/class-user-role-editor.php:525
|
120 |
+
#: ../includes/class-ure-lib.php:2292
|
121 |
msgid "Changelog"
|
122 |
msgstr "log Perubahan"
|
123 |
|
124 |
+
#: ../includes/class-user-role-editor.php:573
|
125 |
+
#: ../includes/class-user-role-editor.php:601
|
126 |
+
#: ../includes/class-user-role-editor.php:946
|
127 |
+
#: ../includes/class-ure-lib.php:248
|
|
|
|
|
|
|
|
|
128 |
msgid "User Role Editor"
|
129 |
msgstr "User Role Editor"
|
130 |
|
131 |
+
#: ../includes/class-user-role-editor.php:658
|
132 |
+
#: ../includes/class-user-role-editor.php:676
|
133 |
+
#: ../includes/class-user-role-editor.php:720
|
134 |
msgid "User Role Editor options are updated"
|
135 |
msgstr "Pilihan User Role Editor diperbarui"
|
136 |
|
137 |
+
#: ../includes/class-user-role-editor.php:704
|
138 |
#, fuzzy
|
139 |
msgid "Default Roles are updated"
|
140 |
msgstr "Peran "
|
141 |
|
142 |
+
#: ../includes/class-user-role-editor.php:728
|
143 |
msgid ""
|
144 |
"You do not have sufficient permissions to manage options for User Role "
|
145 |
"Editor."
|
147 |
"Anda tidak memiliki izin yang memadai untuk mengelola pilihan User Role "
|
148 |
"Editor."
|
149 |
|
150 |
+
#: ../includes/class-user-role-editor.php:807
|
151 |
msgid "Insufficient permissions to work with User Role Editor"
|
152 |
msgstr "Izin yang tidak sesuai untuk bekerja dengan User Role Editor"
|
153 |
|
154 |
+
#: ../includes/class-user-role-editor.php:888
|
155 |
msgid "Select All"
|
156 |
msgstr "Pilih Semua"
|
157 |
|
158 |
+
#: ../includes/class-user-role-editor.php:889
|
159 |
msgid "Unselect All"
|
160 |
msgstr "Batalkan Semua"
|
161 |
|
162 |
+
#: ../includes/class-user-role-editor.php:890
|
163 |
msgid "Reverse"
|
164 |
msgstr "Memutar"
|
165 |
|
166 |
+
#: ../includes/class-user-role-editor.php:891
|
167 |
msgid "Update"
|
168 |
msgstr "Pembaruan"
|
169 |
|
170 |
+
#: ../includes/class-user-role-editor.php:892
|
171 |
msgid "Please confirm permissions update"
|
172 |
msgstr "Harap konfirmasi pembaruan izin"
|
173 |
|
174 |
+
#: ../includes/class-user-role-editor.php:893
|
175 |
msgid "Add New Role"
|
176 |
msgstr "Tambah Peran Baru"
|
177 |
|
178 |
+
#: ../includes/class-user-role-editor.php:894
|
179 |
+
#: ../includes/class-user-role-editor.php:899
|
180 |
#, fuzzy
|
181 |
msgid "Rename Role"
|
182 |
msgstr "Hapus Peran"
|
183 |
|
184 |
+
#: ../includes/class-user-role-editor.php:895
|
185 |
msgid " Role name (ID) can not be empty!"
|
186 |
msgstr "Nama peran (ID) tidak boleh kosong!"
|
187 |
|
188 |
+
#: ../includes/class-user-role-editor.php:896
|
189 |
msgid ""
|
190 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
191 |
"only!"
|
193 |
"Nama peran (ID) harus berisi karakter latin, angka, tanda hubung atau garis "
|
194 |
"bawah saja!"
|
195 |
|
196 |
+
#: ../includes/class-user-role-editor.php:897
|
197 |
msgid ""
|
198 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
199 |
"it."
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: ../includes/class-user-role-editor.php:898
|
203 |
msgid "Add Role"
|
204 |
msgstr "Tambah Peran"
|
205 |
|
206 |
+
#: ../includes/class-user-role-editor.php:900
|
207 |
msgid "Delete Role"
|
208 |
msgstr "Hapus Peran"
|
209 |
|
210 |
+
#: ../includes/class-user-role-editor.php:901
|
211 |
msgid "Cancel"
|
212 |
msgstr "Batalkan"
|
213 |
|
214 |
+
#: ../includes/class-user-role-editor.php:902
|
215 |
msgid "Add Capability"
|
216 |
msgstr "Tambah Kemampuan"
|
217 |
|
218 |
+
#: ../includes/class-user-role-editor.php:903
|
219 |
+
#: ../includes/class-user-role-editor.php:912
|
220 |
msgid "Delete Capability"
|
221 |
msgstr "Hapus Kemampuan"
|
222 |
|
223 |
+
#: ../includes/class-user-role-editor.php:904
|
224 |
msgid "Reset"
|
225 |
msgstr "Atur Ulang"
|
226 |
|
227 |
+
#: ../includes/class-user-role-editor.php:905
|
228 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
229 |
msgstr ""
|
230 |
"BAHAYA! Reset akan mengembalikan pengaturan default dari WordPress Inti."
|
231 |
|
232 |
+
#: ../includes/class-user-role-editor.php:906
|
233 |
msgid ""
|
234 |
"If any plugins have changed capabilities in any way upon installation (such "
|
235 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
238 |
"(seperti S2Member, WooCommerce, dan banyak lagi), kemampuan mereka akan "
|
239 |
"DIHAPUS!"
|
240 |
|
241 |
+
#: ../includes/class-user-role-editor.php:907
|
242 |
msgid ""
|
243 |
"For more information on how to undo changes and restore plugin capabilities "
|
244 |
"go to"
|
246 |
"Untuk informasi lebih lanjut tentang cara membatalkan perubahan dan "
|
247 |
"mengembalikan kemampuan Plugin pergi ke"
|
248 |
|
249 |
+
#: ../includes/class-user-role-editor.php:909
|
250 |
msgid "Continue?"
|
251 |
msgstr "Lanjut?"
|
252 |
|
253 |
+
#: ../includes/class-user-role-editor.php:910
|
254 |
msgid "Default Role"
|
255 |
msgstr "Peran "
|
256 |
|
257 |
+
#: ../includes/class-user-role-editor.php:911
|
258 |
msgid "Set New Default Role"
|
259 |
msgstr "Atur Peran Baru Default"
|
260 |
|
261 |
+
#: ../includes/class-user-role-editor.php:913
|
262 |
msgid ""
|
263 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
264 |
"or other custom code"
|
266 |
"Peringatan! Hati-hati - menghapus kemampuan kritis dapat menyebabkan crash "
|
267 |
"beberapa Plugin atau kode kustom lainnya"
|
268 |
|
269 |
+
#: ../includes/class-user-role-editor.php:914
|
270 |
msgid " Capability name (ID) can not be empty!"
|
271 |
msgstr "Nama Kemampuan (ID) tidak boleh kosong!"
|
272 |
|
273 |
+
#: ../includes/class-user-role-editor.php:915
|
274 |
msgid ""
|
275 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
276 |
"underscore only!"
|
278 |
"Nama Kemampuan (ID) harus mengandung karakter latin, angka, kata penghubung "
|
279 |
"atau garis bawah saja!"
|
280 |
|
281 |
+
#: ../includes/class-user-role-editor.php:949
|
282 |
+
#: ../includes/class-user-role-editor.php:978
|
283 |
msgid "Other Roles"
|
284 |
msgstr "Peran Lainnya"
|
285 |
|
286 |
+
#: ../includes/class-user-role-editor.php:960
|
287 |
msgid "Edit"
|
288 |
msgstr "Sunting"
|
289 |
|
317 |
msgid "Custom capabilities:"
|
318 |
msgstr "Kustom kemampuan:"
|
319 |
|
320 |
+
#: ../includes/class-ure-lib.php:156
|
321 |
msgid "Error: wrong request"
|
322 |
msgstr "Salah: salah permintaan"
|
323 |
|
324 |
+
#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
|
325 |
msgid "Role name (ID): "
|
326 |
msgstr "Nama Peran (ID):"
|
327 |
|
328 |
+
#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
|
329 |
msgid "Display Role Name: "
|
330 |
msgstr "Tampilkan Nama Peran:"
|
331 |
|
332 |
+
#: ../includes/class-ure-lib.php:193
|
333 |
msgid "Make copy of: "
|
334 |
msgstr "buat salinan:"
|
335 |
|
336 |
+
#: ../includes/class-ure-lib.php:209
|
337 |
msgid "Select Role:"
|
338 |
msgstr "Pilih Peran:"
|
339 |
|
340 |
+
#: ../includes/class-ure-lib.php:224
|
341 |
msgid "Delete:"
|
342 |
msgstr "Hapus:"
|
343 |
|
344 |
+
#: ../includes/class-ure-lib.php:231
|
345 |
msgid "Capability name (ID): "
|
346 |
msgstr "Nama Kemampuan (ID):"
|
347 |
|
348 |
+
#: ../includes/class-ure-lib.php:345
|
349 |
msgid "Error: "
|
350 |
msgstr "Salah:"
|
351 |
|
352 |
+
#: ../includes/class-ure-lib.php:345
|
353 |
msgid "Role"
|
354 |
msgstr "Peran"
|
355 |
|
356 |
+
#: ../includes/class-ure-lib.php:346
|
357 |
msgid "does not exist"
|
358 |
msgstr "tidak ada"
|
359 |
|
360 |
+
#: ../includes/class-ure-lib.php:389
|
361 |
msgid "Role is updated successfully"
|
362 |
msgstr "Peran berhasil diperbarui"
|
363 |
|
364 |
+
#: ../includes/class-ure-lib.php:391
|
365 |
msgid "Roles are updated for all network"
|
366 |
msgstr "Peran diperbarui untuk semua jaringan"
|
367 |
|
368 |
+
#: ../includes/class-ure-lib.php:397
|
369 |
msgid "Error occured during role(s) update"
|
370 |
msgstr "Kesalahan terjadi selama pembaruan peran"
|
371 |
|
372 |
+
#: ../includes/class-ure-lib.php:404
|
373 |
msgid "User capabilities are updated successfully"
|
374 |
msgstr "Kemampuan pengguna berhasil diperbarui"
|
375 |
|
376 |
+
#: ../includes/class-ure-lib.php:409
|
377 |
msgid "Error occured during user update"
|
378 |
msgstr "Kesalahan terjadi sepanjang pembaruan pengguna"
|
379 |
|
380 |
+
#: ../includes/class-ure-lib.php:467
|
381 |
msgid "User Roles are restored to WordPress default values. "
|
382 |
msgstr "Peran Pengguna dikembalikan ke nilai Wordpress default."
|
383 |
|
384 |
+
#: ../includes/class-ure-lib.php:1334
|
385 |
msgid "Help"
|
386 |
msgstr "Bantuan"
|
387 |
|
388 |
+
#: ../includes/class-ure-lib.php:1692
|
389 |
msgid "Error is occur. Please check the log file."
|
390 |
msgstr "kesalahan terjadi, Harap periksa log data."
|
391 |
|
392 |
+
#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
|
393 |
msgid ""
|
394 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
395 |
"only!"
|
397 |
"Kesalahan: ID Peran harus mengandung karakter latin, angka, kata penghubung "
|
398 |
"dan garis bawah saja!"
|
399 |
|
400 |
+
#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
|
401 |
msgid ""
|
402 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
403 |
"characters to it."
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: ../includes/class-ure-lib.php:1754
|
407 |
#, php-format
|
408 |
msgid "Role %s exists already"
|
409 |
msgstr "Peran %s telah ada"
|
410 |
|
411 |
+
#: ../includes/class-ure-lib.php:1769
|
412 |
msgid "Error is encountered during new role create operation"
|
413 |
msgstr "Kesalahan ditemui selama peran baru membuat operasi"
|
414 |
|
415 |
+
#: ../includes/class-ure-lib.php:1771
|
416 |
#, php-format
|
417 |
msgid "Role %s is created successfully"
|
418 |
msgstr "Peran %s berhasil dibuat"
|
419 |
|
420 |
+
#: ../includes/class-ure-lib.php:1795
|
421 |
msgid "Error: Role ID is empty!"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: ../includes/class-ure-lib.php:1813
|
425 |
msgid "Error: Empty role display name is not allowed."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../includes/class-ure-lib.php:1820
|
429 |
#, fuzzy, php-format
|
430 |
msgid "Role %s does not exists"
|
431 |
msgstr "tidak ada"
|
432 |
|
433 |
+
#: ../includes/class-ure-lib.php:1828
|
434 |
#, fuzzy, php-format
|
435 |
msgid "Role %s is renamed to %s successfully"
|
436 |
msgstr "Peran %s berhasil dibuat"
|
437 |
|
438 |
+
#: ../includes/class-ure-lib.php:1895
|
439 |
msgid "Error encountered during role delete operation"
|
440 |
msgstr "Kesalahan ditemui selama operasi penghapusan peran"
|
441 |
|
442 |
+
#: ../includes/class-ure-lib.php:1897
|
443 |
msgid "Unused roles are deleted successfully"
|
444 |
msgstr "Peran yang tidak digunakan berhasil dihapus"
|
445 |
|
446 |
+
#: ../includes/class-ure-lib.php:1899
|
447 |
#, php-format
|
448 |
msgid "Role %s is deleted successfully"
|
449 |
msgstr "Peran %s berhasil dihapus"
|
450 |
|
451 |
+
#: ../includes/class-ure-lib.php:1924
|
452 |
msgid "Error encountered during default role change operation"
|
453 |
msgstr "Kesalahan ditemui selama operasi perubahan peran standar"
|
454 |
|
455 |
+
#: ../includes/class-ure-lib.php:1930
|
456 |
#, php-format
|
457 |
msgid "Default role for new users is set to %s successfully"
|
458 |
msgstr "Peran standar untuk pengguna baru diatur ke %s dengan sukses"
|
459 |
|
460 |
+
#: ../includes/class-ure-lib.php:1949
|
461 |
msgid "Editor"
|
462 |
msgstr "Penyunting"
|
463 |
|
464 |
+
#: ../includes/class-ure-lib.php:1950
|
465 |
msgid "Author"
|
466 |
msgstr "Pengarang"
|
467 |
|
468 |
+
#: ../includes/class-ure-lib.php:1951
|
469 |
msgid "Contributor"
|
470 |
msgstr "Kontributor"
|
471 |
|
472 |
+
#: ../includes/class-ure-lib.php:1952
|
473 |
msgid "Subscriber"
|
474 |
msgstr "Pelanggan"
|
475 |
|
476 |
+
#: ../includes/class-ure-lib.php:1954
|
477 |
msgid "Switch themes"
|
478 |
msgstr "Ganti tema"
|
479 |
|
480 |
+
#: ../includes/class-ure-lib.php:1955
|
481 |
msgid "Edit themes"
|
482 |
msgstr "Sunting tema"
|
483 |
|
484 |
+
#: ../includes/class-ure-lib.php:1956
|
485 |
msgid "Activate plugins"
|
486 |
msgstr "Aktifkan plugin"
|
487 |
|
488 |
+
#: ../includes/class-ure-lib.php:1957
|
489 |
msgid "Edit plugins"
|
490 |
msgstr "Sunting plugin"
|
491 |
|
492 |
+
#: ../includes/class-ure-lib.php:1958
|
493 |
msgid "Edit users"
|
494 |
msgstr "Sunting pengguna"
|
495 |
|
496 |
+
#: ../includes/class-ure-lib.php:1959
|
497 |
msgid "Edit files"
|
498 |
msgstr "Sunting data"
|
499 |
|
500 |
+
#: ../includes/class-ure-lib.php:1960
|
501 |
msgid "Manage options"
|
502 |
msgstr "kelola pilihan"
|
503 |
|
504 |
+
#: ../includes/class-ure-lib.php:1961
|
505 |
msgid "Moderate comments"
|
506 |
msgstr "Moderasi komentar"
|
507 |
|
508 |
+
#: ../includes/class-ure-lib.php:1962
|
509 |
msgid "Manage categories"
|
510 |
msgstr "Kelola kategori"
|
511 |
|
512 |
+
#: ../includes/class-ure-lib.php:1963
|
513 |
msgid "Manage links"
|
514 |
msgstr "Kelola tautan"
|
515 |
|
516 |
+
#: ../includes/class-ure-lib.php:1964
|
517 |
msgid "Upload files"
|
518 |
msgstr "Unggah data"
|
519 |
|
520 |
+
#: ../includes/class-ure-lib.php:1965
|
521 |
msgid "Import"
|
522 |
msgstr "Impor"
|
523 |
|
524 |
+
#: ../includes/class-ure-lib.php:1966
|
525 |
msgid "Unfiltered html"
|
526 |
msgstr "HTML tidak tersaring"
|
527 |
|
528 |
+
#: ../includes/class-ure-lib.php:1967
|
529 |
msgid "Edit posts"
|
530 |
msgstr "Sunting posting"
|
531 |
|
532 |
+
#: ../includes/class-ure-lib.php:1968
|
533 |
msgid "Edit others posts"
|
534 |
msgstr "Sunting posting lainnya"
|
535 |
|
536 |
+
#: ../includes/class-ure-lib.php:1969
|
537 |
msgid "Edit published posts"
|
538 |
msgstr "Sunting posting terpublikasi"
|
539 |
|
540 |
+
#: ../includes/class-ure-lib.php:1970
|
541 |
msgid "Publish posts"
|
542 |
msgstr "Publikasi posting"
|
543 |
|
544 |
+
#: ../includes/class-ure-lib.php:1971
|
545 |
msgid "Edit pages"
|
546 |
msgstr "Sunting halaman"
|
547 |
|
548 |
+
#: ../includes/class-ure-lib.php:1972
|
549 |
msgid "Read"
|
550 |
msgstr "Baca"
|
551 |
|
552 |
+
#: ../includes/class-ure-lib.php:1973
|
553 |
msgid "Level 10"
|
554 |
msgstr "Tingkat 10"
|
555 |
|
556 |
+
#: ../includes/class-ure-lib.php:1974
|
557 |
msgid "Level 9"
|
558 |
msgstr "Tingkat 9"
|
559 |
|
560 |
+
#: ../includes/class-ure-lib.php:1975
|
561 |
msgid "Level 8"
|
562 |
msgstr "Tingkat 8"
|
563 |
|
564 |
+
#: ../includes/class-ure-lib.php:1976
|
565 |
msgid "Level 7"
|
566 |
msgstr "Tingkat 7"
|
567 |
|
568 |
+
#: ../includes/class-ure-lib.php:1977
|
569 |
msgid "Level 6"
|
570 |
msgstr "Tingkat 6"
|
571 |
|
572 |
+
#: ../includes/class-ure-lib.php:1978
|
573 |
msgid "Level 5"
|
574 |
msgstr "Tingkat 5"
|
575 |
|
576 |
+
#: ../includes/class-ure-lib.php:1979
|
577 |
msgid "Level 4"
|
578 |
msgstr "Tingkat 4"
|
579 |
|
580 |
+
#: ../includes/class-ure-lib.php:1980
|
581 |
msgid "Level 3"
|
582 |
msgstr "Tingkat 3"
|
583 |
|
584 |
+
#: ../includes/class-ure-lib.php:1981
|
585 |
msgid "Level 2"
|
586 |
msgstr "Tingkat 2"
|
587 |
|
588 |
+
#: ../includes/class-ure-lib.php:1982
|
589 |
msgid "Level 1"
|
590 |
msgstr "Tingkat 1"
|
591 |
|
592 |
+
#: ../includes/class-ure-lib.php:1983
|
593 |
msgid "Level 0"
|
594 |
msgstr "Tingkat 0"
|
595 |
|
596 |
+
#: ../includes/class-ure-lib.php:1984
|
597 |
msgid "Edit others pages"
|
598 |
msgstr "Sunting halaman lainnya"
|
599 |
|
600 |
+
#: ../includes/class-ure-lib.php:1985
|
601 |
msgid "Edit published pages"
|
602 |
msgstr "Sunting halaman terpublikasi"
|
603 |
|
604 |
+
#: ../includes/class-ure-lib.php:1986
|
605 |
msgid "Publish pages"
|
606 |
msgstr "Publikasi halaman"
|
607 |
|
608 |
+
#: ../includes/class-ure-lib.php:1987
|
609 |
msgid "Delete pages"
|
610 |
msgstr "Hapus halaman"
|
611 |
|
612 |
+
#: ../includes/class-ure-lib.php:1988
|
613 |
msgid "Delete others pages"
|
614 |
msgstr "Hapus halaman lainnya"
|
615 |
|
616 |
+
#: ../includes/class-ure-lib.php:1989
|
617 |
msgid "Delete published pages"
|
618 |
msgstr "Hapus halaman terpublikasi"
|
619 |
|
620 |
+
#: ../includes/class-ure-lib.php:1990
|
621 |
msgid "Delete posts"
|
622 |
msgstr "hapus posting"
|
623 |
|
624 |
+
#: ../includes/class-ure-lib.php:1991
|
625 |
msgid "Delete others posts"
|
626 |
msgstr "Hapus posting lainnya"
|
627 |
|
628 |
+
#: ../includes/class-ure-lib.php:1992
|
629 |
msgid "Delete published posts"
|
630 |
msgstr "Hapus posting terpublikasi"
|
631 |
|
632 |
+
#: ../includes/class-ure-lib.php:1993
|
633 |
msgid "Delete private posts"
|
634 |
msgstr "Hapus posting pribadi"
|
635 |
|
636 |
+
#: ../includes/class-ure-lib.php:1994
|
637 |
msgid "Edit private posts"
|
638 |
msgstr "Sunting posting pribadi"
|
639 |
|
640 |
+
#: ../includes/class-ure-lib.php:1995
|
641 |
msgid "Read private posts"
|
642 |
msgstr "Baca posting pribadi"
|
643 |
|
644 |
+
#: ../includes/class-ure-lib.php:1996
|
645 |
msgid "Delete private pages"
|
646 |
msgstr "Hapus halaman pribadi"
|
647 |
|
648 |
+
#: ../includes/class-ure-lib.php:1997
|
649 |
msgid "Edit private pages"
|
650 |
msgstr "Sunting halaman pribadi"
|
651 |
|
652 |
+
#: ../includes/class-ure-lib.php:1998
|
653 |
msgid "Read private pages"
|
654 |
msgstr "baca halaman pribadi"
|
655 |
|
656 |
+
#: ../includes/class-ure-lib.php:1999
|
657 |
msgid "Delete users"
|
658 |
msgstr "Hapus pengguna"
|
659 |
|
660 |
+
#: ../includes/class-ure-lib.php:2000
|
661 |
msgid "Create users"
|
662 |
msgstr "Buat pengguna"
|
663 |
|
664 |
+
#: ../includes/class-ure-lib.php:2001
|
665 |
msgid "Unfiltered upload"
|
666 |
msgstr "Unggahan tidak tersaring"
|
667 |
|
668 |
+
#: ../includes/class-ure-lib.php:2002
|
669 |
msgid "Edit dashboard"
|
670 |
msgstr "Sunting dasbor"
|
671 |
|
672 |
+
#: ../includes/class-ure-lib.php:2003
|
673 |
msgid "Update plugins"
|
674 |
msgstr "Perbarui plugin"
|
675 |
|
676 |
+
#: ../includes/class-ure-lib.php:2004
|
677 |
msgid "Delete plugins"
|
678 |
msgstr "Hapus plugin"
|
679 |
|
680 |
+
#: ../includes/class-ure-lib.php:2005
|
681 |
msgid "Install plugins"
|
682 |
msgstr "Pasang plugin"
|
683 |
|
684 |
+
#: ../includes/class-ure-lib.php:2006
|
685 |
msgid "Update themes"
|
686 |
msgstr "Perbarui tema"
|
687 |
|
688 |
+
#: ../includes/class-ure-lib.php:2007
|
689 |
msgid "Install themes"
|
690 |
msgstr "Pasang tema"
|
691 |
|
692 |
+
#: ../includes/class-ure-lib.php:2008
|
693 |
msgid "Update core"
|
694 |
msgstr "Perbarui inti"
|
695 |
|
696 |
+
#: ../includes/class-ure-lib.php:2009
|
697 |
msgid "List users"
|
698 |
msgstr "Daftar pengguna"
|
699 |
|
700 |
+
#: ../includes/class-ure-lib.php:2010
|
701 |
msgid "Remove users"
|
702 |
msgstr "Hapus pengguna"
|
703 |
|
704 |
+
#: ../includes/class-ure-lib.php:2011
|
705 |
msgid "Add users"
|
706 |
msgstr "Tambah pengguna"
|
707 |
|
708 |
+
#: ../includes/class-ure-lib.php:2012
|
709 |
msgid "Promote users"
|
710 |
msgstr "Promosi pengguna"
|
711 |
|
712 |
+
#: ../includes/class-ure-lib.php:2013
|
713 |
msgid "Edit theme options"
|
714 |
msgstr "Sunting pilihan tema"
|
715 |
|
716 |
+
#: ../includes/class-ure-lib.php:2014
|
717 |
msgid "Delete themes"
|
718 |
msgstr "Hapus tema"
|
719 |
|
720 |
+
#: ../includes/class-ure-lib.php:2015
|
721 |
msgid "Export"
|
722 |
msgstr "Ekspor"
|
723 |
|
724 |
+
#: ../includes/class-ure-lib.php:2125
|
725 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
726 |
msgstr "Salah: Kemampuan nama harus mengandung karakter latin dan angka saja!"
|
727 |
|
728 |
+
#: ../includes/class-ure-lib.php:2138
|
729 |
#, php-format
|
730 |
msgid "Capability %s is added successfully"
|
731 |
msgstr "Kemampuan %s berhasil ditambahkan"
|
732 |
|
733 |
+
#: ../includes/class-ure-lib.php:2140
|
734 |
#, php-format
|
735 |
msgid "Capability %s exists already"
|
736 |
msgstr "Kemampuan %s telah ada"
|
737 |
|
738 |
+
#: ../includes/class-ure-lib.php:2165
|
739 |
#, php-format
|
740 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
741 |
msgstr "Salah! Anda tidak memiliki izin untuk menghapus kemampuan ini: %s!"
|
742 |
|
743 |
+
#: ../includes/class-ure-lib.php:2184
|
744 |
#, php-format
|
745 |
msgid "Capability %s is removed successfully"
|
746 |
msgstr "Kemampuan %s berhasil dihapus"
|
747 |
|
748 |
+
#: ../includes/class-ure-lib.php:2288
|
749 |
msgid "Version:"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: ../includes/class-ure-lib.php:2289
|
753 |
msgid "Author's website"
|
754 |
msgstr "Website pengarang"
|
755 |
|
756 |
+
#: ../includes/class-ure-lib.php:2290
|
757 |
msgid "Plugin webpage"
|
758 |
msgstr "Halaman web Plugin"
|
759 |
|
760 |
+
#: ../includes/class-ure-lib.php:2291
|
761 |
#, fuzzy
|
762 |
msgid "Plugin download"
|
763 |
msgstr "Halaman web Plugin"
|
764 |
|
765 |
+
#: ../includes/class-ure-lib.php:2293
|
766 |
msgid "FAQ"
|
767 |
msgstr "FAQ"
|
768 |
|
769 |
+
#: ../includes/class-ure-lib.php:2341
|
770 |
msgid "None"
|
771 |
msgstr "Nihil"
|
772 |
|
773 |
+
#: ../includes/class-ure-lib.php:2368
|
774 |
msgid "Delete All Unused Roles"
|
775 |
msgstr "Hapus Peran Tidak Terpakai"
|
776 |
|
777 |
+
#: ../includes/class-ure-lib.php:2392
|
778 |
msgid "— No role for this site —"
|
779 |
msgstr "— Tidak ada peran untuk situs ini —"
|
780 |
|
830 |
"kompatibilitas dengan tema lama dan kode plugin. Menyalakan opsi ini akan "
|
831 |
"menunjukkan kemampuan mereka usang."
|
832 |
|
833 |
+
#: ../includes/class-ure-screen-help.php:41
|
834 |
+
#, fuzzy
|
835 |
+
msgid "select roles below"
|
836 |
+
msgstr "Batalkan Semua"
|
837 |
+
|
838 |
+
#: ../includes/class-ure-screen-help.php:56
|
839 |
+
msgid "Other default roles for new registered user"
|
840 |
msgstr ""
|
|
|
|
|
841 |
|
842 |
+
#: ../includes/class-ure-screen-help.php:57
|
843 |
+
msgid ""
|
844 |
+
"select roles below to assign them to the new user automatically as an "
|
845 |
+
"addition to the primary role. Note for multisite environment: take into "
|
846 |
+
"account that other default roles should exist at the site, in order to be "
|
847 |
+
"assigned to the new registered users."
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: ../includes/class-ure-screen-help.php:75
|
851 |
+
msgid "Allow non super-admininstrators to create, edit and delete users"
|
852 |
+
msgstr ""
|
853 |
+
|
854 |
+
#: ../includes/class-ure-screen-help.php:76
|
855 |
+
#, fuzzy
|
856 |
msgid ""
|
857 |
"Super administrator only may create, edit and delete users under WordPress "
|
858 |
+
"multi-site by default. Turn this option on in order to remove this "
|
859 |
+
"limitation."
|
860 |
msgstr ""
|
861 |
"Super administrator hanya dapat membuat, mengedit dan menghapus pengguna di "
|
862 |
"bawah WordPress multi-situs. Aktifkan pilihan ini dalam rangka menghapus "
|
863 |
"keterbatasan ini."
|
864 |
|
865 |
+
#~ msgid "Overview"
|
866 |
+
#~ msgstr "Ikhtisar"
|
867 |
+
|
868 |
+
#~ msgid "Allow create, edit and delete users to not super-admininstrators"
|
869 |
+
#~ msgstr ""
|
870 |
+
#~ "Izinkan membuat, menyunting dan menghapus pengguna untuk yang bukan super-"
|
871 |
+
#~ "administrator"
|
872 |
+
|
873 |
#~ msgid "About this Plugin:"
|
874 |
#~ msgstr "Tentang Plugin ini:"
|
lang/ure-nl.mo
ADDED
Binary file
|
lang/ure-nl.po
ADDED
@@ -0,0 +1,883 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-01 12:45+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"
|
9 |
+
"Language: nl\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
+
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
|
15 |
+
"X-Poedit-Basepath: .\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"X-Poedit-SearchPath-0: ..\n"
|
19 |
+
|
20 |
+
#: ../includes/settings-template.php:17
|
21 |
+
msgid "User Role Editor - Options"
|
22 |
+
msgstr "User Rol Editor - Opties"
|
23 |
+
|
24 |
+
#: ../includes/settings-template.php:21
|
25 |
+
#: ../includes/class-user-role-editor.php:547
|
26 |
+
msgid "General"
|
27 |
+
msgstr "Algemeen"
|
28 |
+
|
29 |
+
#: ../includes/settings-template.php:26
|
30 |
+
#: ../includes/class-user-role-editor.php:553
|
31 |
+
msgid "Additional Modules"
|
32 |
+
msgstr "Aanvullende modules"
|
33 |
+
|
34 |
+
#: ../includes/settings-template.php:30
|
35 |
+
#: ../includes/class-user-role-editor.php:559
|
36 |
+
msgid "Default Roles"
|
37 |
+
msgstr "Standaard Rollen"
|
38 |
+
|
39 |
+
#: ../includes/settings-template.php:34
|
40 |
+
#: ../includes/class-user-role-editor.php:564
|
41 |
+
msgid "Multisite"
|
42 |
+
msgstr "Multisite"
|
43 |
+
|
44 |
+
#: ../includes/settings-template.php:39
|
45 |
+
msgid "About"
|
46 |
+
msgstr "Over"
|
47 |
+
|
48 |
+
#: ../includes/settings-template.php:53
|
49 |
+
#: ../includes/class-ure-screen-help.php:15
|
50 |
+
msgid "Show Administrator role at User Role Editor"
|
51 |
+
msgstr "Toon Beheerders Rol in de Gebruikers Rol Editor"
|
52 |
+
|
53 |
+
#: ../includes/settings-template.php:61
|
54 |
+
#: ../includes/class-ure-screen-help.php:18
|
55 |
+
msgid "Show capabilities in the human readable form"
|
56 |
+
msgstr "Toon de rechten in een leesbare vorm"
|
57 |
+
|
58 |
+
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
59 |
+
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
60 |
+
msgid "Show deprecated capabilities"
|
61 |
+
msgstr "Toon afgekeurde rechten"
|
62 |
+
|
63 |
+
#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
|
64 |
+
#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
|
65 |
+
msgid "Save"
|
66 |
+
msgstr "Opslaan"
|
67 |
+
|
68 |
+
#: ../includes/settings-template.php:102
|
69 |
+
#: ../includes/class-ure-screen-help.php:40
|
70 |
+
msgid "Count users without role"
|
71 |
+
msgstr "Het aantal Gebruikers zonder rol"
|
72 |
+
|
73 |
+
#: ../includes/settings-template.php:129
|
74 |
+
msgid "Primary default role: "
|
75 |
+
msgstr "Standaard rol:"
|
76 |
+
|
77 |
+
#: ../includes/settings-template.php:136
|
78 |
+
msgid "Other default roles for new registered user: "
|
79 |
+
msgstr "Andere standaard rollen voor nieuw geregistreerde gebruiker:"
|
80 |
+
|
81 |
+
#: ../includes/settings-template.php:142
|
82 |
+
msgid ""
|
83 |
+
"Note for multisite environment: take into account that other default roles "
|
84 |
+
"should exist at the site, in order to be assigned to the new registered "
|
85 |
+
"users."
|
86 |
+
msgstr ""
|
87 |
+
"Noot voor multisite-omgeving: houdt er rekening mee dat er andere standaard "
|
88 |
+
"functies op de site moeten bestaan, om toegewezen te kunnen worden aan nieuw "
|
89 |
+
"geregistreerde gebruikers."
|
90 |
+
|
91 |
+
#: ../includes/settings-template.php:168
|
92 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
93 |
+
msgstr ""
|
94 |
+
"Sta niet super beheerders toe om gebruikers aan te maken, te bewerken en te "
|
95 |
+
"verwijderen"
|
96 |
+
|
97 |
+
#: ../includes/class-user-role-editor.php:195
|
98 |
+
msgid "Change role for users without role"
|
99 |
+
msgstr "Wijzig de rol van gebruikers zonder rol"
|
100 |
+
|
101 |
+
#: ../includes/class-user-role-editor.php:196
|
102 |
+
msgid "No rights"
|
103 |
+
msgstr "Geen rechten"
|
104 |
+
|
105 |
+
#: ../includes/class-user-role-editor.php:197
|
106 |
+
msgid "Provide new role"
|
107 |
+
msgstr "Creëer een nieuwe rol"
|
108 |
+
|
109 |
+
#: ../includes/class-user-role-editor.php:281
|
110 |
+
#: ../includes/class-user-role-editor.php:283
|
111 |
+
msgid "You do not have permission to edit this user."
|
112 |
+
msgstr "Je hebt toestemming om gegevens van deze gebruiker te wijzigen"
|
113 |
+
|
114 |
+
#: ../includes/class-user-role-editor.php:422
|
115 |
+
msgid "Capabilities"
|
116 |
+
msgstr "Rechten"
|
117 |
+
|
118 |
+
#: ../includes/class-user-role-editor.php:514
|
119 |
+
msgid "Settings"
|
120 |
+
msgstr "Instellingen"
|
121 |
+
|
122 |
+
#: ../includes/class-user-role-editor.php:525
|
123 |
+
#: ../includes/class-ure-lib.php:2292
|
124 |
+
msgid "Changelog"
|
125 |
+
msgstr "Changelog"
|
126 |
+
|
127 |
+
#: ../includes/class-user-role-editor.php:573
|
128 |
+
#: ../includes/class-user-role-editor.php:601
|
129 |
+
#: ../includes/class-user-role-editor.php:946
|
130 |
+
#: ../includes/class-ure-lib.php:248
|
131 |
+
msgid "User Role Editor"
|
132 |
+
msgstr "User Rol Editor"
|
133 |
+
|
134 |
+
#: ../includes/class-user-role-editor.php:658
|
135 |
+
#: ../includes/class-user-role-editor.php:676
|
136 |
+
#: ../includes/class-user-role-editor.php:720
|
137 |
+
msgid "User Role Editor options are updated"
|
138 |
+
msgstr "User Role Editor opties zijn ge-update"
|
139 |
+
|
140 |
+
#: ../includes/class-user-role-editor.php:704
|
141 |
+
msgid "Default Roles are updated"
|
142 |
+
msgstr "Standaard Rollen zijn ge-update"
|
143 |
+
|
144 |
+
#: ../includes/class-user-role-editor.php:728
|
145 |
+
msgid ""
|
146 |
+
"You do not have sufficient permissions to manage options for User Role "
|
147 |
+
"Editor."
|
148 |
+
msgstr "Je hebt onvoldoende rechten om de User Role Editor te beheren."
|
149 |
+
|
150 |
+
#: ../includes/class-user-role-editor.php:807
|
151 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
152 |
+
msgstr "Onvoldoende rechten om te werken met User Role Editor"
|
153 |
+
|
154 |
+
#: ../includes/class-user-role-editor.php:888
|
155 |
+
msgid "Select All"
|
156 |
+
msgstr "Alles selecteren"
|
157 |
+
|
158 |
+
#: ../includes/class-user-role-editor.php:889
|
159 |
+
msgid "Unselect All"
|
160 |
+
msgstr "Alles deselecteren"
|
161 |
+
|
162 |
+
#: ../includes/class-user-role-editor.php:890
|
163 |
+
msgid "Reverse"
|
164 |
+
msgstr "Omzetten"
|
165 |
+
|
166 |
+
#: ../includes/class-user-role-editor.php:891
|
167 |
+
msgid "Update"
|
168 |
+
msgstr "Update"
|
169 |
+
|
170 |
+
#: ../includes/class-user-role-editor.php:892
|
171 |
+
msgid "Please confirm permissions update"
|
172 |
+
msgstr "Bevestig toestemming om te mogen updaten"
|
173 |
+
|
174 |
+
#: ../includes/class-user-role-editor.php:893
|
175 |
+
msgid "Add New Role"
|
176 |
+
msgstr "Nieuwe Rol Toevoegen"
|
177 |
+
|
178 |
+
#: ../includes/class-user-role-editor.php:894
|
179 |
+
#: ../includes/class-user-role-editor.php:899
|
180 |
+
msgid "Rename Role"
|
181 |
+
msgstr "Hernoem Rol"
|
182 |
+
|
183 |
+
#: ../includes/class-user-role-editor.php:895
|
184 |
+
msgid " Role name (ID) can not be empty!"
|
185 |
+
msgstr "Rol naam (ID) kan niet leeg zijn!"
|
186 |
+
|
187 |
+
#: ../includes/class-user-role-editor.php:896
|
188 |
+
msgid ""
|
189 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
190 |
+
"only!"
|
191 |
+
msgstr ""
|
192 |
+
"Rol naam (ID) moet latijnse letters, cijfers, koppeltekens of een underscore "
|
193 |
+
"bevatten!"
|
194 |
+
|
195 |
+
#: ../includes/class-user-role-editor.php:897
|
196 |
+
msgid ""
|
197 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
198 |
+
"it."
|
199 |
+
msgstr ""
|
200 |
+
"WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse tekens "
|
201 |
+
"aan toe."
|
202 |
+
|
203 |
+
#: ../includes/class-user-role-editor.php:898
|
204 |
+
msgid "Add Role"
|
205 |
+
msgstr "Rol toevoegen"
|
206 |
+
|
207 |
+
#: ../includes/class-user-role-editor.php:900
|
208 |
+
msgid "Delete Role"
|
209 |
+
msgstr "Rol verwijderen"
|
210 |
+
|
211 |
+
#: ../includes/class-user-role-editor.php:901
|
212 |
+
msgid "Cancel"
|
213 |
+
msgstr "Annuleren"
|
214 |
+
|
215 |
+
#: ../includes/class-user-role-editor.php:902
|
216 |
+
msgid "Add Capability"
|
217 |
+
msgstr "Recht toevoegen"
|
218 |
+
|
219 |
+
#: ../includes/class-user-role-editor.php:903
|
220 |
+
#: ../includes/class-user-role-editor.php:912
|
221 |
+
msgid "Delete Capability"
|
222 |
+
msgstr "Recht verwijderen"
|
223 |
+
|
224 |
+
#: ../includes/class-user-role-editor.php:904
|
225 |
+
msgid "Reset"
|
226 |
+
msgstr "Terugkeren naar de basisinstellingen"
|
227 |
+
|
228 |
+
#: ../includes/class-user-role-editor.php:905
|
229 |
+
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
230 |
+
msgstr ""
|
231 |
+
"OPGELET! Opnieuw instellen zal de basisinstellingen herstellen van WordPress "
|
232 |
+
"Core"
|
233 |
+
|
234 |
+
#: ../includes/class-user-role-editor.php:906
|
235 |
+
msgid ""
|
236 |
+
"If any plugins have changed capabilities in any way upon installation (such "
|
237 |
+
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
238 |
+
msgstr ""
|
239 |
+
"Als plugins op enigerlei wijz instellingen gewijzigd hebben bij de "
|
240 |
+
"installatie (zoals S2Member, WooCommerce, en nog veel meer), zullen deze "
|
241 |
+
"instellingen worden VERWIJDERD!"
|
242 |
+
|
243 |
+
#: ../includes/class-user-role-editor.php:907
|
244 |
+
msgid ""
|
245 |
+
"For more information on how to undo changes and restore plugin capabilities "
|
246 |
+
"go to"
|
247 |
+
msgstr ""
|
248 |
+
"Voor meer informatie over hoe u wijzigingen ongedaan kunt maken en rechten "
|
249 |
+
"van de plugin kunt herstellen ga naar"
|
250 |
+
|
251 |
+
#: ../includes/class-user-role-editor.php:909
|
252 |
+
msgid "Continue?"
|
253 |
+
msgstr "Doorgaan?"
|
254 |
+
|
255 |
+
#: ../includes/class-user-role-editor.php:910
|
256 |
+
msgid "Default Role"
|
257 |
+
msgstr "Standaard Rol"
|
258 |
+
|
259 |
+
#: ../includes/class-user-role-editor.php:911
|
260 |
+
msgid "Set New Default Role"
|
261 |
+
msgstr "Maak een nieuwe standaard rol aan"
|
262 |
+
|
263 |
+
#: ../includes/class-user-role-editor.php:913
|
264 |
+
msgid ""
|
265 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
266 |
+
"or other custom code"
|
267 |
+
msgstr ""
|
268 |
+
"Waarschuwing! Wees voorzichtig - het verwijderen van een recht laat sommige "
|
269 |
+
"plugins of aangepaste code crashen"
|
270 |
+
|
271 |
+
#: ../includes/class-user-role-editor.php:914
|
272 |
+
msgid " Capability name (ID) can not be empty!"
|
273 |
+
msgstr "Een recht naam (ID) kan niet leeg zijn!"
|
274 |
+
|
275 |
+
#: ../includes/class-user-role-editor.php:915
|
276 |
+
msgid ""
|
277 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
278 |
+
"underscore only!"
|
279 |
+
msgstr ""
|
280 |
+
"Naam van het recht (ID) moet Latijnse letters, cijfers, koppeltekens of "
|
281 |
+
"underscores bevatten!!"
|
282 |
+
|
283 |
+
#: ../includes/class-user-role-editor.php:949
|
284 |
+
#: ../includes/class-user-role-editor.php:978
|
285 |
+
msgid "Other Roles"
|
286 |
+
msgstr "Andere Rollen"
|
287 |
+
|
288 |
+
#: ../includes/class-user-role-editor.php:960
|
289 |
+
msgid "Edit"
|
290 |
+
msgstr "Wijzigen"
|
291 |
+
|
292 |
+
#: ../includes/ure-role-edit.php:17
|
293 |
+
msgid "Select Role and change its capabilities:"
|
294 |
+
msgstr "Selecteer de Rol en wijzig de rechten"
|
295 |
+
|
296 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
|
297 |
+
msgid "Show capabilities in human readable form"
|
298 |
+
msgstr "Toon rechten in leesbare vorm"
|
299 |
+
|
300 |
+
#: ../includes/ure-role-edit.php:44
|
301 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
302 |
+
msgstr ""
|
303 |
+
"Indien aangevinkt, worden alle acties toegepast op ALLE locaties van dit "
|
304 |
+
"netwerk"
|
305 |
+
|
306 |
+
#: ../includes/ure-role-edit.php:56
|
307 |
+
msgid "Apply to All Sites"
|
308 |
+
msgstr "Pas toe op alle Sites"
|
309 |
+
|
310 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
|
311 |
+
msgid "Core capabilities:"
|
312 |
+
msgstr "Core rechten:"
|
313 |
+
|
314 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
|
315 |
+
msgid "Quick filter:"
|
316 |
+
msgstr "Snel filter:"
|
317 |
+
|
318 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
|
319 |
+
msgid "Custom capabilities:"
|
320 |
+
msgstr "Gebruikelijke rechten:"
|
321 |
+
|
322 |
+
#: ../includes/class-ure-lib.php:156
|
323 |
+
msgid "Error: wrong request"
|
324 |
+
msgstr "Fout: verkeerde aanvraag"
|
325 |
+
|
326 |
+
#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
|
327 |
+
msgid "Role name (ID): "
|
328 |
+
msgstr "Naam Rol (ID):"
|
329 |
+
|
330 |
+
#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
|
331 |
+
msgid "Display Role Name: "
|
332 |
+
msgstr "Maak de Naam van de Rol zichtbaar:"
|
333 |
+
|
334 |
+
#: ../includes/class-ure-lib.php:193
|
335 |
+
msgid "Make copy of: "
|
336 |
+
msgstr "Maak een kopie van:"
|
337 |
+
|
338 |
+
#: ../includes/class-ure-lib.php:209
|
339 |
+
msgid "Select Role:"
|
340 |
+
msgstr "Selecteer een Rol:"
|
341 |
+
|
342 |
+
#: ../includes/class-ure-lib.php:224
|
343 |
+
msgid "Delete:"
|
344 |
+
msgstr "Verwijder:"
|
345 |
+
|
346 |
+
#: ../includes/class-ure-lib.php:231
|
347 |
+
msgid "Capability name (ID): "
|
348 |
+
msgstr "Naam recht (ID):"
|
349 |
+
|
350 |
+
#: ../includes/class-ure-lib.php:345
|
351 |
+
msgid "Error: "
|
352 |
+
msgstr "Fout:"
|
353 |
+
|
354 |
+
#: ../includes/class-ure-lib.php:345
|
355 |
+
msgid "Role"
|
356 |
+
msgstr "Rol"
|
357 |
+
|
358 |
+
#: ../includes/class-ure-lib.php:346
|
359 |
+
msgid "does not exist"
|
360 |
+
msgstr "Bestaat niet"
|
361 |
+
|
362 |
+
#: ../includes/class-ure-lib.php:389
|
363 |
+
msgid "Role is updated successfully"
|
364 |
+
msgstr "Rol is succesvol ge-update"
|
365 |
+
|
366 |
+
#: ../includes/class-ure-lib.php:391
|
367 |
+
msgid "Roles are updated for all network"
|
368 |
+
msgstr "Rollen van het gehele netwerk zijn ge-update"
|
369 |
+
|
370 |
+
#: ../includes/class-ure-lib.php:397
|
371 |
+
msgid "Error occured during role(s) update"
|
372 |
+
msgstr "Er is een fout opgetreden tijdens het updaten van de rol(len)"
|
373 |
+
|
374 |
+
#: ../includes/class-ure-lib.php:404
|
375 |
+
msgid "User capabilities are updated successfully"
|
376 |
+
msgstr "Rechten van de gebruiker zijn succesvol geupdate"
|
377 |
+
|
378 |
+
#: ../includes/class-ure-lib.php:409
|
379 |
+
msgid "Error occured during user update"
|
380 |
+
msgstr "Er is een fout opgetreden tijdens het updaten van de gebruiker"
|
381 |
+
|
382 |
+
#: ../includes/class-ure-lib.php:467
|
383 |
+
msgid "User Roles are restored to WordPress default values. "
|
384 |
+
msgstr "Gebruikers rollen worden hersteld naar WordPress standaardwaarden."
|
385 |
+
|
386 |
+
#: ../includes/class-ure-lib.php:1334
|
387 |
+
msgid "Help"
|
388 |
+
msgstr "Help"
|
389 |
+
|
390 |
+
#: ../includes/class-ure-lib.php:1692
|
391 |
+
msgid "Error is occur. Please check the log file."
|
392 |
+
msgstr "Er heeft zich een fout voorgedaan. Controleer het log bestand."
|
393 |
+
|
394 |
+
#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
|
395 |
+
msgid ""
|
396 |
+
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
397 |
+
"only!"
|
398 |
+
msgstr ""
|
399 |
+
"Fout: Een Rol (ID) moet Latijnse letters, cijfers, koppeltekens of "
|
400 |
+
"underscores bevatten!"
|
401 |
+
|
402 |
+
#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
|
403 |
+
msgid ""
|
404 |
+
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
405 |
+
"characters to it."
|
406 |
+
msgstr ""
|
407 |
+
"Fout: WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse "
|
408 |
+
"tekens aan toe."
|
409 |
+
|
410 |
+
#: ../includes/class-ure-lib.php:1754
|
411 |
+
#, php-format
|
412 |
+
msgid "Role %s exists already"
|
413 |
+
msgstr "Deze Rol %s bestaat al"
|
414 |
+
|
415 |
+
#: ../includes/class-ure-lib.php:1769
|
416 |
+
msgid "Error is encountered during new role create operation"
|
417 |
+
msgstr "Er is een fout opgetreden tijdens het creëren van een nieuwe rol"
|
418 |
+
|
419 |
+
#: ../includes/class-ure-lib.php:1771
|
420 |
+
#, php-format
|
421 |
+
msgid "Role %s is created successfully"
|
422 |
+
msgstr "De Rol %s werd succesvol gecreërd"
|
423 |
+
|
424 |
+
#: ../includes/class-ure-lib.php:1795
|
425 |
+
msgid "Error: Role ID is empty!"
|
426 |
+
msgstr "Fout: Rol ID is niet gevuld!"
|
427 |
+
|
428 |
+
#: ../includes/class-ure-lib.php:1813
|
429 |
+
msgid "Error: Empty role display name is not allowed."
|
430 |
+
msgstr "Fout: De weergave van een lege naam van een rol is niet toegestaan."
|
431 |
+
|
432 |
+
#: ../includes/class-ure-lib.php:1820
|
433 |
+
#, php-format
|
434 |
+
msgid "Role %s does not exists"
|
435 |
+
msgstr "Rol %s bestaat niet"
|
436 |
+
|
437 |
+
#: ../includes/class-ure-lib.php:1828
|
438 |
+
#, php-format
|
439 |
+
msgid "Role %s is renamed to %s successfully"
|
440 |
+
msgstr "Rol %s is succesvol vernoemd naar %s"
|
441 |
+
|
442 |
+
#: ../includes/class-ure-lib.php:1895
|
443 |
+
msgid "Error encountered during role delete operation"
|
444 |
+
msgstr "Er is een fout opgetreden bij het vewijderen van de rol"
|
445 |
+
|
446 |
+
#: ../includes/class-ure-lib.php:1897
|
447 |
+
msgid "Unused roles are deleted successfully"
|
448 |
+
msgstr "Ongebruikte rollen zijn succesvol verwijderd"
|
449 |
+
|
450 |
+
#: ../includes/class-ure-lib.php:1899
|
451 |
+
#, php-format
|
452 |
+
msgid "Role %s is deleted successfully"
|
453 |
+
msgstr "Rol %s succesvol verwijderd"
|
454 |
+
|
455 |
+
#: ../includes/class-ure-lib.php:1924
|
456 |
+
msgid "Error encountered during default role change operation"
|
457 |
+
msgstr "Er is een fout opgetreden tijdens het wijzigen van de standaard rol"
|
458 |
+
|
459 |
+
#: ../includes/class-ure-lib.php:1930
|
460 |
+
#, php-format
|
461 |
+
msgid "Default role for new users is set to %s successfully"
|
462 |
+
msgstr "De standaard rol voor nieuwe gebruikers is met succes ingesteld op %s"
|
463 |
+
|
464 |
+
#: ../includes/class-ure-lib.php:1949
|
465 |
+
msgid "Editor"
|
466 |
+
msgstr "Redacteur"
|
467 |
+
|
468 |
+
#: ../includes/class-ure-lib.php:1950
|
469 |
+
msgid "Author"
|
470 |
+
msgstr "Editor"
|
471 |
+
|
472 |
+
#: ../includes/class-ure-lib.php:1951
|
473 |
+
msgid "Contributor"
|
474 |
+
msgstr "Inzender"
|
475 |
+
|
476 |
+
#: ../includes/class-ure-lib.php:1952
|
477 |
+
msgid "Subscriber"
|
478 |
+
msgstr "Abonnee"
|
479 |
+
|
480 |
+
#: ../includes/class-ure-lib.php:1954
|
481 |
+
msgid "Switch themes"
|
482 |
+
msgstr "Van thema wisselen"
|
483 |
+
|
484 |
+
#: ../includes/class-ure-lib.php:1955
|
485 |
+
msgid "Edit themes"
|
486 |
+
msgstr "Thema's bewerken"
|
487 |
+
|
488 |
+
#: ../includes/class-ure-lib.php:1956
|
489 |
+
msgid "Activate plugins"
|
490 |
+
msgstr "Plugins activeren"
|
491 |
+
|
492 |
+
#: ../includes/class-ure-lib.php:1957
|
493 |
+
msgid "Edit plugins"
|
494 |
+
msgstr "Plugins bewerken"
|
495 |
+
|
496 |
+
#: ../includes/class-ure-lib.php:1958
|
497 |
+
msgid "Edit users"
|
498 |
+
msgstr "Gebruikers bewerken"
|
499 |
+
|
500 |
+
#: ../includes/class-ure-lib.php:1959
|
501 |
+
msgid "Edit files"
|
502 |
+
msgstr "Bestanden bewerken"
|
503 |
+
|
504 |
+
#: ../includes/class-ure-lib.php:1960
|
505 |
+
msgid "Manage options"
|
506 |
+
msgstr "Opties beheren"
|
507 |
+
|
508 |
+
#: ../includes/class-ure-lib.php:1961
|
509 |
+
msgid "Moderate comments"
|
510 |
+
msgstr "Reacties beheren"
|
511 |
+
|
512 |
+
#: ../includes/class-ure-lib.php:1962
|
513 |
+
msgid "Manage categories"
|
514 |
+
msgstr "Categorieën beheren"
|
515 |
+
|
516 |
+
#: ../includes/class-ure-lib.php:1963
|
517 |
+
msgid "Manage links"
|
518 |
+
msgstr "Links beheren"
|
519 |
+
|
520 |
+
#: ../includes/class-ure-lib.php:1964
|
521 |
+
msgid "Upload files"
|
522 |
+
msgstr "Bestanden uploaden"
|
523 |
+
|
524 |
+
#: ../includes/class-ure-lib.php:1965
|
525 |
+
msgid "Import"
|
526 |
+
msgstr "Importeren"
|
527 |
+
|
528 |
+
#: ../includes/class-ure-lib.php:1966
|
529 |
+
msgid "Unfiltered html"
|
530 |
+
msgstr "Ongefilterd html"
|
531 |
+
|
532 |
+
#: ../includes/class-ure-lib.php:1967
|
533 |
+
msgid "Edit posts"
|
534 |
+
msgstr "Berichten bewerken"
|
535 |
+
|
536 |
+
#: ../includes/class-ure-lib.php:1968
|
537 |
+
msgid "Edit others posts"
|
538 |
+
msgstr "Berichten van anderen bewerken"
|
539 |
+
|
540 |
+
#: ../includes/class-ure-lib.php:1969
|
541 |
+
msgid "Edit published posts"
|
542 |
+
msgstr "Gepubliceerde berichten bewerken"
|
543 |
+
|
544 |
+
#: ../includes/class-ure-lib.php:1970
|
545 |
+
msgid "Publish posts"
|
546 |
+
msgstr "Berichten publiceren"
|
547 |
+
|
548 |
+
#: ../includes/class-ure-lib.php:1971
|
549 |
+
msgid "Edit pages"
|
550 |
+
msgstr "Pagina's bewerken"
|
551 |
+
|
552 |
+
#: ../includes/class-ure-lib.php:1972
|
553 |
+
msgid "Read"
|
554 |
+
msgstr "Lezen"
|
555 |
+
|
556 |
+
#: ../includes/class-ure-lib.php:1973
|
557 |
+
msgid "Level 10"
|
558 |
+
msgstr "Level 10"
|
559 |
+
|
560 |
+
#: ../includes/class-ure-lib.php:1974
|
561 |
+
msgid "Level 9"
|
562 |
+
msgstr "Level 9"
|
563 |
+
|
564 |
+
#: ../includes/class-ure-lib.php:1975
|
565 |
+
msgid "Level 8"
|
566 |
+
msgstr "Level 8"
|
567 |
+
|
568 |
+
#: ../includes/class-ure-lib.php:1976
|
569 |
+
msgid "Level 7"
|
570 |
+
msgstr "Level 7"
|
571 |
+
|
572 |
+
#: ../includes/class-ure-lib.php:1977
|
573 |
+
msgid "Level 6"
|
574 |
+
msgstr "Level 6"
|
575 |
+
|
576 |
+
#: ../includes/class-ure-lib.php:1978
|
577 |
+
msgid "Level 5"
|
578 |
+
msgstr "Level 5"
|
579 |
+
|
580 |
+
#: ../includes/class-ure-lib.php:1979
|
581 |
+
msgid "Level 4"
|
582 |
+
msgstr "Level 4"
|
583 |
+
|
584 |
+
#: ../includes/class-ure-lib.php:1980
|
585 |
+
msgid "Level 3"
|
586 |
+
msgstr "Level 3"
|
587 |
+
|
588 |
+
#: ../includes/class-ure-lib.php:1981
|
589 |
+
msgid "Level 2"
|
590 |
+
msgstr "Level 2"
|
591 |
+
|
592 |
+
#: ../includes/class-ure-lib.php:1982
|
593 |
+
msgid "Level 1"
|
594 |
+
msgstr "Level 1"
|
595 |
+
|
596 |
+
#: ../includes/class-ure-lib.php:1983
|
597 |
+
msgid "Level 0"
|
598 |
+
msgstr "Level 0"
|
599 |
+
|
600 |
+
#: ../includes/class-ure-lib.php:1984
|
601 |
+
msgid "Edit others pages"
|
602 |
+
msgstr "Pagina's van anderen bewerken"
|
603 |
+
|
604 |
+
#: ../includes/class-ure-lib.php:1985
|
605 |
+
msgid "Edit published pages"
|
606 |
+
msgstr "Gepubliceerde pagina's bewerken"
|
607 |
+
|
608 |
+
#: ../includes/class-ure-lib.php:1986
|
609 |
+
msgid "Publish pages"
|
610 |
+
msgstr "Pagina's publiceren"
|
611 |
+
|
612 |
+
#: ../includes/class-ure-lib.php:1987
|
613 |
+
msgid "Delete pages"
|
614 |
+
msgstr "Pagina's verwijderen"
|
615 |
+
|
616 |
+
#: ../includes/class-ure-lib.php:1988
|
617 |
+
msgid "Delete others pages"
|
618 |
+
msgstr "Pagina's verwijderen van anderen"
|
619 |
+
|
620 |
+
#: ../includes/class-ure-lib.php:1989
|
621 |
+
msgid "Delete published pages"
|
622 |
+
msgstr "Gepubliceerde pagina's verwijderen"
|
623 |
+
|
624 |
+
#: ../includes/class-ure-lib.php:1990
|
625 |
+
msgid "Delete posts"
|
626 |
+
msgstr "Berichten verwijderen"
|
627 |
+
|
628 |
+
#: ../includes/class-ure-lib.php:1991
|
629 |
+
msgid "Delete others posts"
|
630 |
+
msgstr "Verwijder berichten van anderen"
|
631 |
+
|
632 |
+
#: ../includes/class-ure-lib.php:1992
|
633 |
+
msgid "Delete published posts"
|
634 |
+
msgstr "Gepubliceerde berichten verwijderen"
|
635 |
+
|
636 |
+
#: ../includes/class-ure-lib.php:1993
|
637 |
+
msgid "Delete private posts"
|
638 |
+
msgstr "Privé berichten verwijderen"
|
639 |
+
|
640 |
+
#: ../includes/class-ure-lib.php:1994
|
641 |
+
msgid "Edit private posts"
|
642 |
+
msgstr "Privé berichten bewerken"
|
643 |
+
|
644 |
+
#: ../includes/class-ure-lib.php:1995
|
645 |
+
msgid "Read private posts"
|
646 |
+
msgstr "Privé berichten lezen"
|
647 |
+
|
648 |
+
#: ../includes/class-ure-lib.php:1996
|
649 |
+
msgid "Delete private pages"
|
650 |
+
msgstr "Privé berichten verwijderen"
|
651 |
+
|
652 |
+
#: ../includes/class-ure-lib.php:1997
|
653 |
+
msgid "Edit private pages"
|
654 |
+
msgstr "Privé pagina's bewerken"
|
655 |
+
|
656 |
+
#: ../includes/class-ure-lib.php:1998
|
657 |
+
msgid "Read private pages"
|
658 |
+
msgstr "Privé pagina's lezen"
|
659 |
+
|
660 |
+
#: ../includes/class-ure-lib.php:1999
|
661 |
+
msgid "Delete users"
|
662 |
+
msgstr "Gebruikers verwijderen"
|
663 |
+
|
664 |
+
#: ../includes/class-ure-lib.php:2000
|
665 |
+
msgid "Create users"
|
666 |
+
msgstr "Maak gebruikers aan"
|
667 |
+
|
668 |
+
#: ../includes/class-ure-lib.php:2001
|
669 |
+
msgid "Unfiltered upload"
|
670 |
+
msgstr "Ongefilterd uploaden"
|
671 |
+
|
672 |
+
#: ../includes/class-ure-lib.php:2002
|
673 |
+
msgid "Edit dashboard"
|
674 |
+
msgstr "Bewerk het dashboard"
|
675 |
+
|
676 |
+
#: ../includes/class-ure-lib.php:2003
|
677 |
+
msgid "Update plugins"
|
678 |
+
msgstr "Plugins updaten"
|
679 |
+
|
680 |
+
#: ../includes/class-ure-lib.php:2004
|
681 |
+
msgid "Delete plugins"
|
682 |
+
msgstr "Plugins verwijderen"
|
683 |
+
|
684 |
+
#: ../includes/class-ure-lib.php:2005
|
685 |
+
msgid "Install plugins"
|
686 |
+
msgstr "Plugins installeren"
|
687 |
+
|
688 |
+
#: ../includes/class-ure-lib.php:2006
|
689 |
+
msgid "Update themes"
|
690 |
+
msgstr "Thema's updaten"
|
691 |
+
|
692 |
+
#: ../includes/class-ure-lib.php:2007
|
693 |
+
msgid "Install themes"
|
694 |
+
msgstr "Thema's installeren"
|
695 |
+
|
696 |
+
#: ../includes/class-ure-lib.php:2008
|
697 |
+
msgid "Update core"
|
698 |
+
msgstr "Core updaten"
|
699 |
+
|
700 |
+
#: ../includes/class-ure-lib.php:2009
|
701 |
+
msgid "List users"
|
702 |
+
msgstr "Lijst van gebruikers aanmaken"
|
703 |
+
|
704 |
+
#: ../includes/class-ure-lib.php:2010
|
705 |
+
msgid "Remove users"
|
706 |
+
msgstr "Gebruikers verwijderen"
|
707 |
+
|
708 |
+
#: ../includes/class-ure-lib.php:2011
|
709 |
+
msgid "Add users"
|
710 |
+
msgstr "Gebruikers toevoegen"
|
711 |
+
|
712 |
+
#: ../includes/class-ure-lib.php:2012
|
713 |
+
msgid "Promote users"
|
714 |
+
msgstr "Gebruikers bevorderen"
|
715 |
+
|
716 |
+
#: ../includes/class-ure-lib.php:2013
|
717 |
+
msgid "Edit theme options"
|
718 |
+
msgstr "Thema opties bewerken"
|
719 |
+
|
720 |
+
#: ../includes/class-ure-lib.php:2014
|
721 |
+
msgid "Delete themes"
|
722 |
+
msgstr "Thema's verwijderen"
|
723 |
+
|
724 |
+
#: ../includes/class-ure-lib.php:2015
|
725 |
+
msgid "Export"
|
726 |
+
msgstr "Exporteren"
|
727 |
+
|
728 |
+
#: ../includes/class-ure-lib.php:2125
|
729 |
+
msgid "Error: Capability name must contain latin characters and digits only!"
|
730 |
+
msgstr ""
|
731 |
+
"Fout: De naam van een recht mag alleen latijnse letters en cijfers bevatten!"
|
732 |
+
|
733 |
+
#: ../includes/class-ure-lib.php:2138
|
734 |
+
#, php-format
|
735 |
+
msgid "Capability %s is added successfully"
|
736 |
+
msgstr "Recht %s is succesvol toegevoegd"
|
737 |
+
|
738 |
+
#: ../includes/class-ure-lib.php:2140
|
739 |
+
#, php-format
|
740 |
+
msgid "Capability %s exists already"
|
741 |
+
msgstr "Recht %s bestaat al"
|
742 |
+
|
743 |
+
#: ../includes/class-ure-lib.php:2165
|
744 |
+
#, php-format
|
745 |
+
msgid "Error! You do not have permission to delete this capability: %s!"
|
746 |
+
msgstr "Fout! U heeft geen toestemming om dit recht te verwijderen: % s!"
|
747 |
+
|
748 |
+
#: ../includes/class-ure-lib.php:2184
|
749 |
+
#, php-format
|
750 |
+
msgid "Capability %s is removed successfully"
|
751 |
+
msgstr "Recht %s is succesvol verwijderd"
|
752 |
+
|
753 |
+
#: ../includes/class-ure-lib.php:2288
|
754 |
+
msgid "Version:"
|
755 |
+
msgstr "Versie:"
|
756 |
+
|
757 |
+
#: ../includes/class-ure-lib.php:2289
|
758 |
+
msgid "Author's website"
|
759 |
+
msgstr "Website van de auteur"
|
760 |
+
|
761 |
+
#: ../includes/class-ure-lib.php:2290
|
762 |
+
msgid "Plugin webpage"
|
763 |
+
msgstr "Plugin webpagina "
|
764 |
+
|
765 |
+
#: ../includes/class-ure-lib.php:2291
|
766 |
+
msgid "Plugin download"
|
767 |
+
msgstr "Plugin download "
|
768 |
+
|
769 |
+
#: ../includes/class-ure-lib.php:2293
|
770 |
+
msgid "FAQ"
|
771 |
+
msgstr "FAQ"
|
772 |
+
|
773 |
+
#: ../includes/class-ure-lib.php:2341
|
774 |
+
msgid "None"
|
775 |
+
msgstr "Geen"
|
776 |
+
|
777 |
+
#: ../includes/class-ure-lib.php:2368
|
778 |
+
msgid "Delete All Unused Roles"
|
779 |
+
msgstr "Verwijder alle niet gebruikte Rollen"
|
780 |
+
|
781 |
+
#: ../includes/class-ure-lib.php:2392
|
782 |
+
msgid "— No role for this site —"
|
783 |
+
msgstr "— Geen rol voor deze website —"
|
784 |
+
|
785 |
+
#: ../includes/ure-user-edit.php:31
|
786 |
+
msgid "Network Super Admin"
|
787 |
+
msgstr "Network Super Beheerder"
|
788 |
+
|
789 |
+
#: ../includes/ure-user-edit.php:34
|
790 |
+
msgid "Change capabilities for user"
|
791 |
+
msgstr "Wijzig de rechten van deze gebruiker"
|
792 |
+
|
793 |
+
#: ../includes/ure-user-edit.php:71
|
794 |
+
msgid "Primary Role:"
|
795 |
+
msgstr "Primaire Rol:"
|
796 |
+
|
797 |
+
#: ../includes/ure-user-edit.php:81
|
798 |
+
msgid "bbPress Role:"
|
799 |
+
msgstr "bbPress Rol:"
|
800 |
+
|
801 |
+
#: ../includes/ure-user-edit.php:91
|
802 |
+
msgid "Other Roles:"
|
803 |
+
msgstr "Andere Rollen:"
|
804 |
+
|
805 |
+
#: ../includes/class-ure-screen-help.php:16
|
806 |
+
msgid ""
|
807 |
+
"turn this option on in order to make the \"Administrator\" role available at "
|
808 |
+
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
809 |
+
"for security reasons."
|
810 |
+
msgstr ""
|
811 |
+
"zet deze optie aan om de \"Administrator \" rol te zichtbaar te maken in de "
|
812 |
+
"Userr Role Editor rollen selectie keuzelijst. Het wordt standaard verborgen "
|
813 |
+
"om veiligheidsredenen."
|
814 |
+
|
815 |
+
#: ../includes/class-ure-screen-help.php:19
|
816 |
+
msgid ""
|
817 |
+
"automatically converts capability names from the technical form for internal "
|
818 |
+
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
819 |
+
"others posts\"."
|
820 |
+
msgstr ""
|
821 |
+
"converteert automatisch de namen van de rechten uit het technische formulier "
|
822 |
+
"voor intern gebruik zoals \"edit_berichten_van_anderen \" naar een meer "
|
823 |
+
"gebruiksvriendelijke vorm, bijvoorbeeld \"Edit berichten van anderen \"."
|
824 |
+
|
825 |
+
#: ../includes/class-ure-screen-help.php:22
|
826 |
+
msgid ""
|
827 |
+
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
828 |
+
"by WordPress. They are left at the user roles for the compatibility purpose "
|
829 |
+
"with the old themes and plugins code. Turning on this option will show those "
|
830 |
+
"deprecated capabilities."
|
831 |
+
msgstr ""
|
832 |
+
"Rechten zoals \"level_0 \", \"level_1 \" zijn verouderd en worden niet meer "
|
833 |
+
"gebruikt door WordPress. Ze worden gekoppeld aan de rollen van een "
|
834 |
+
"gebruiker met als reden compatibiliteits doeleinden met oude thema's en "
|
835 |
+
"plugins code. Het inschakelen van deze optie zal de afgekeurde rechten tonen."
|
836 |
+
|
837 |
+
#: ../includes/class-ure-screen-help.php:41
|
838 |
+
#, fuzzy
|
839 |
+
msgid "select roles below"
|
840 |
+
msgstr "Alles deselecteren"
|
841 |
+
|
842 |
+
#: ../includes/class-ure-screen-help.php:56
|
843 |
+
#, fuzzy
|
844 |
+
msgid "Other default roles for new registered user"
|
845 |
+
msgstr "Andere standaard rollen voor nieuw geregistreerde gebruiker:"
|
846 |
+
|
847 |
+
#: ../includes/class-ure-screen-help.php:57
|
848 |
+
#, fuzzy
|
849 |
+
msgid ""
|
850 |
+
"select roles below to assign them to the new user automatically as an "
|
851 |
+
"addition to the primary role. Note for multisite environment: take into "
|
852 |
+
"account that other default roles should exist at the site, in order to be "
|
853 |
+
"assigned to the new registered users."
|
854 |
+
msgstr ""
|
855 |
+
"Noot voor multisite-omgeving: houdt er rekening mee dat er andere standaard "
|
856 |
+
"functies op de site moeten bestaan, om toegewezen te kunnen worden aan nieuw "
|
857 |
+
"geregistreerde gebruikers."
|
858 |
+
|
859 |
+
#: ../includes/class-ure-screen-help.php:75
|
860 |
+
#, fuzzy
|
861 |
+
msgid "Allow non super-admininstrators to create, edit and delete users"
|
862 |
+
msgstr ""
|
863 |
+
"Sta niet super beheerders toe om gebruikers aan te maken, te bewerken en te "
|
864 |
+
"verwijderen"
|
865 |
+
|
866 |
+
#: ../includes/class-ure-screen-help.php:76
|
867 |
+
#, fuzzy
|
868 |
+
msgid ""
|
869 |
+
"Super administrator only may create, edit and delete users under WordPress "
|
870 |
+
"multi-site by default. Turn this option on in order to remove this "
|
871 |
+
"limitation."
|
872 |
+
msgstr ""
|
873 |
+
"Alleen de super beheerder kan gebruikers aanmaken, bewerken en verwijderen "
|
874 |
+
"in WordPress multi-site. Schakel deze optie aan om deze beperking te "
|
875 |
+
"verwijderen."
|
876 |
+
|
877 |
+
#~ msgid "Overview"
|
878 |
+
#~ msgstr "Overzicht"
|
879 |
+
|
880 |
+
#~ msgid "Allow create, edit and delete users to not super-admininstrators"
|
881 |
+
#~ msgstr ""
|
882 |
+
#~ "Het toestaan van het aanmaken, bewerken en verwijderen van gebruikers "
|
883 |
+
#~ "naar niet super-admininstrators"
|
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: 2014-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -21,58 +21,63 @@ msgid "User Role Editor - Options"
|
|
21 |
msgstr "Редактор ролей пользователей - Опции"
|
22 |
|
23 |
#: ../includes/settings-template.php:21
|
|
|
24 |
msgid "General"
|
25 |
msgstr "Общие"
|
26 |
|
27 |
-
#: ../includes/settings-template.php:
|
|
|
28 |
msgid "Additional Modules"
|
29 |
msgstr "Дополнительные модули"
|
30 |
|
31 |
-
#: ../includes/settings-template.php:
|
|
|
32 |
msgid "Default Roles"
|
33 |
msgstr "Роли по-умолчанию"
|
34 |
|
35 |
-
#: ../includes/settings-template.php:
|
|
|
36 |
msgid "Multisite"
|
37 |
msgstr "Многосайтовые"
|
38 |
|
39 |
-
#: ../includes/settings-template.php:
|
40 |
msgid "About"
|
41 |
msgstr "О плагине"
|
42 |
|
43 |
-
#: ../includes/settings-template.php:
|
44 |
#: ../includes/class-ure-screen-help.php:15
|
45 |
msgid "Show Administrator role at User Role Editor"
|
46 |
msgstr "Отобразить роль Администратор в Редакторе ролей пользователей"
|
47 |
|
48 |
-
#: ../includes/settings-template.php:
|
49 |
#: ../includes/class-ure-screen-help.php:18
|
50 |
msgid "Show capabilities in the human readable form"
|
51 |
msgstr "Показ прав доступа в читабельной форме"
|
52 |
|
53 |
-
#: ../includes/settings-template.php:
|
54 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
55 |
msgid "Show deprecated capabilities"
|
56 |
msgstr "Показать устаревшие разрешения"
|
57 |
|
58 |
-
#: ../includes/settings-template.php:
|
59 |
-
#: ../includes/settings-template.php:
|
60 |
msgid "Save"
|
61 |
msgstr "Сохранить"
|
62 |
|
63 |
-
#: ../includes/settings-template.php:
|
|
|
64 |
msgid "Count users without role"
|
65 |
msgstr "Подсчёт пользователей без роли"
|
66 |
|
67 |
-
#: ../includes/settings-template.php:
|
68 |
msgid "Primary default role: "
|
69 |
msgstr "Основная роль по-умолчанию:"
|
70 |
|
71 |
-
#: ../includes/settings-template.php:
|
72 |
msgid "Other default roles for new registered user: "
|
73 |
msgstr "Другие роли по-умолчанию для вновь зарегистрированного пользователя:"
|
74 |
|
75 |
-
#: ../includes/settings-template.php:
|
76 |
msgid ""
|
77 |
"Note for multisite environment: take into account that other default roles "
|
78 |
"should exist at the site, in order to be assigned to the new registered "
|
@@ -82,7 +87,7 @@ msgstr ""
|
|
82 |
"вновь зарегистрированному пользователю дополнительных ролей по-умолчанию эти "
|
83 |
"роли должны существовать на этом сайте."
|
84 |
|
85 |
-
#: ../includes/settings-template.php:
|
86 |
msgid "Allow non super administrators to create, edit, and delete users"
|
87 |
msgstr ""
|
88 |
"Разрешить простым администраторам создавать, изменять, удалять пользователей"
|
@@ -104,84 +109,80 @@ msgstr "Выберите новую роль"
|
|
104 |
msgid "You do not have permission to edit this user."
|
105 |
msgstr "Нет прав на редактирование этого пользователя"
|
106 |
|
107 |
-
#: ../includes/class-user-role-editor.php:
|
108 |
msgid "Capabilities"
|
109 |
msgstr "Возможности"
|
110 |
|
111 |
-
#: ../includes/class-user-role-editor.php:
|
112 |
msgid "Settings"
|
113 |
msgstr "Установки"
|
114 |
|
115 |
-
#: ../includes/class-user-role-editor.php:
|
116 |
-
#: ../includes/class-ure-lib.php:
|
117 |
msgid "Changelog"
|
118 |
msgstr "Журнал изменений"
|
119 |
|
120 |
-
#: ../includes/class-user-role-editor.php:
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
#: ../includes/class-user-role-editor.php:561
|
125 |
-
#: ../includes/class-user-role-editor.php:589
|
126 |
-
#: ../includes/class-user-role-editor.php:930
|
127 |
-
#: ../includes/class-ure-lib.php:232
|
128 |
msgid "User Role Editor"
|
129 |
msgstr "Редактор ролей пользователей"
|
130 |
|
131 |
-
#: ../includes/class-user-role-editor.php:
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
-
#: ../includes/class-user-role-editor.php:
|
134 |
msgid "User Role Editor options are updated"
|
135 |
msgstr "Изменения в настройках Редактора ролей пользователей сохранены"
|
136 |
|
137 |
-
#: ../includes/class-user-role-editor.php:
|
138 |
msgid "Default Roles are updated"
|
139 |
msgstr "Изменения в роли по-умолчанию сохранены"
|
140 |
|
141 |
-
#: ../includes/class-user-role-editor.php:
|
142 |
msgid ""
|
143 |
"You do not have sufficient permissions to manage options for User Role "
|
144 |
"Editor."
|
145 |
msgstr "У вас нет прав на изменение настроек плагина"
|
146 |
|
147 |
-
#: ../includes/class-user-role-editor.php:
|
148 |
msgid "Insufficient permissions to work with User Role Editor"
|
149 |
msgstr "Не достаточно прав для работы с User Role Editor"
|
150 |
|
151 |
-
#: ../includes/class-user-role-editor.php:
|
152 |
msgid "Select All"
|
153 |
msgstr "Выбрать все"
|
154 |
|
155 |
-
#: ../includes/class-user-role-editor.php:
|
156 |
msgid "Unselect All"
|
157 |
msgstr "Исключить все"
|
158 |
|
159 |
-
#: ../includes/class-user-role-editor.php:
|
160 |
msgid "Reverse"
|
161 |
msgstr "Обратить"
|
162 |
|
163 |
-
#: ../includes/class-user-role-editor.php:
|
164 |
msgid "Update"
|
165 |
msgstr "Сохранить"
|
166 |
|
167 |
-
#: ../includes/class-user-role-editor.php:
|
168 |
msgid "Please confirm permissions update"
|
169 |
msgstr "Пожалуйста, подтвердите продолжение "
|
170 |
|
171 |
-
#: ../includes/class-user-role-editor.php:
|
172 |
msgid "Add New Role"
|
173 |
msgstr "Добавить новую роль"
|
174 |
|
175 |
-
#: ../includes/class-user-role-editor.php:
|
176 |
-
#: ../includes/class-user-role-editor.php:
|
177 |
msgid "Rename Role"
|
178 |
msgstr "Переименовать роль"
|
179 |
|
180 |
-
#: ../includes/class-user-role-editor.php:
|
181 |
msgid " Role name (ID) can not be empty!"
|
182 |
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
183 |
|
184 |
-
#: ../includes/class-user-role-editor.php:
|
185 |
msgid ""
|
186 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
187 |
"only!"
|
@@ -189,7 +190,7 @@ msgstr ""
|
|
189 |
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
190 |
"тире и знак подчеркивания"
|
191 |
|
192 |
-
#: ../includes/class-user-role-editor.php:
|
193 |
msgid ""
|
194 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
195 |
"it."
|
@@ -197,38 +198,38 @@ msgstr ""
|
|
197 |
"WordPress не поддерживает цифровые идентификаторы ролей. Начните имя роли с "
|
198 |
"латинских символов."
|
199 |
|
200 |
-
#: ../includes/class-user-role-editor.php:
|
201 |
msgid "Add Role"
|
202 |
msgstr "Добавить роль"
|
203 |
|
204 |
-
#: ../includes/class-user-role-editor.php:
|
205 |
msgid "Delete Role"
|
206 |
msgstr "Удалить роль"
|
207 |
|
208 |
-
#: ../includes/class-user-role-editor.php:
|
209 |
msgid "Cancel"
|
210 |
msgstr "Отмена"
|
211 |
|
212 |
-
#: ../includes/class-user-role-editor.php:
|
213 |
msgid "Add Capability"
|
214 |
msgstr "Новая возм."
|
215 |
|
216 |
-
#: ../includes/class-user-role-editor.php:
|
217 |
-
#: ../includes/class-user-role-editor.php:
|
218 |
msgid "Delete Capability"
|
219 |
msgstr "Удалить возм."
|
220 |
|
221 |
-
#: ../includes/class-user-role-editor.php:
|
222 |
msgid "Reset"
|
223 |
msgstr "Сброс"
|
224 |
|
225 |
-
#: ../includes/class-user-role-editor.php:
|
226 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
227 |
msgstr ""
|
228 |
"ВНИМАНИЕ! Очистка восстановит роли по состоянию на момент установки "
|
229 |
"WordPress."
|
230 |
|
231 |
-
#: ../includes/class-user-role-editor.php:
|
232 |
msgid ""
|
233 |
"If any plugins have changed capabilities in any way upon installation (such "
|
234 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -236,7 +237,7 @@ msgstr ""
|
|
236 |
"Если плагины изменяли пользовательские права после установки WordPress "
|
237 |
"(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
|
238 |
|
239 |
-
#: ../includes/class-user-role-editor.php:
|
240 |
msgid ""
|
241 |
"For more information on how to undo changes and restore plugin capabilities "
|
242 |
"go to"
|
@@ -244,19 +245,19 @@ msgstr ""
|
|
244 |
"Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
|
245 |
"для плагинов, можно узнать здесь"
|
246 |
|
247 |
-
#: ../includes/class-user-role-editor.php:
|
248 |
msgid "Continue?"
|
249 |
msgstr "Продолжить?"
|
250 |
|
251 |
-
#: ../includes/class-user-role-editor.php:
|
252 |
msgid "Default Role"
|
253 |
msgstr "Роль по-умолчанию"
|
254 |
|
255 |
-
#: ../includes/class-user-role-editor.php:
|
256 |
msgid "Set New Default Role"
|
257 |
msgstr "Установить"
|
258 |
|
259 |
-
#: ../includes/class-user-role-editor.php:
|
260 |
msgid ""
|
261 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
262 |
"or other custom code"
|
@@ -264,11 +265,11 @@ msgstr ""
|
|
264 |
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
265 |
"прекращеню работы одного из плагинов или другого кода."
|
266 |
|
267 |
-
#: ../includes/class-user-role-editor.php:
|
268 |
msgid " Capability name (ID) can not be empty!"
|
269 |
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
270 |
|
271 |
-
#: ../includes/class-user-role-editor.php:
|
272 |
msgid ""
|
273 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
274 |
"underscore only!"
|
@@ -276,12 +277,12 @@ msgstr ""
|
|
276 |
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
277 |
"цифры, знаки подчеркивания"
|
278 |
|
279 |
-
#: ../includes/class-user-role-editor.php:
|
280 |
-
#: ../includes/class-user-role-editor.php:
|
281 |
msgid "Other Roles"
|
282 |
msgstr "Другие роли"
|
283 |
|
284 |
-
#: ../includes/class-user-role-editor.php:
|
285 |
msgid "Edit"
|
286 |
msgstr "Изменить"
|
287 |
|
@@ -313,79 +314,79 @@ msgstr "Фильтр:"
|
|
313 |
msgid "Custom capabilities:"
|
314 |
msgstr "Дополнительные возможности :"
|
315 |
|
316 |
-
#: ../includes/class-ure-lib.php:
|
317 |
msgid "Error: wrong request"
|
318 |
msgstr "Ошибка: неверный запрос"
|
319 |
|
320 |
-
#: ../includes/class-ure-lib.php:
|
321 |
msgid "Role name (ID): "
|
322 |
msgstr "Идентификатор роли (ID):"
|
323 |
|
324 |
-
#: ../includes/class-ure-lib.php:
|
325 |
msgid "Display Role Name: "
|
326 |
msgstr "Наименование роли:"
|
327 |
|
328 |
-
#: ../includes/class-ure-lib.php:
|
329 |
msgid "Make copy of: "
|
330 |
msgstr "Создать копию из:"
|
331 |
|
332 |
-
#: ../includes/class-ure-lib.php:
|
333 |
msgid "Select Role:"
|
334 |
msgstr "Выбери Роль:"
|
335 |
|
336 |
-
#: ../includes/class-ure-lib.php:
|
337 |
msgid "Delete:"
|
338 |
msgstr "Удалить"
|
339 |
|
340 |
-
#: ../includes/class-ure-lib.php:
|
341 |
msgid "Capability name (ID): "
|
342 |
msgstr "Идентификатор (ID):"
|
343 |
|
344 |
-
#: ../includes/class-ure-lib.php:
|
345 |
msgid "Error: "
|
346 |
msgstr "Ошибка:"
|
347 |
|
348 |
-
#: ../includes/class-ure-lib.php:
|
349 |
msgid "Role"
|
350 |
msgstr "Роль"
|
351 |
|
352 |
-
#: ../includes/class-ure-lib.php:
|
353 |
msgid "does not exist"
|
354 |
msgstr "не существует"
|
355 |
|
356 |
-
#: ../includes/class-ure-lib.php:
|
357 |
msgid "Role is updated successfully"
|
358 |
msgstr "Роль изменена успешно"
|
359 |
|
360 |
-
#: ../includes/class-ure-lib.php:
|
361 |
msgid "Roles are updated for all network"
|
362 |
msgstr "Роли изменены для всей сети"
|
363 |
|
364 |
-
#: ../includes/class-ure-lib.php:
|
365 |
msgid "Error occured during role(s) update"
|
366 |
msgstr "При изменении роли произошла ошибка"
|
367 |
|
368 |
-
#: ../includes/class-ure-lib.php:
|
369 |
msgid "User capabilities are updated successfully"
|
370 |
msgstr "Права пользователя изменены успешно"
|
371 |
|
372 |
-
#: ../includes/class-ure-lib.php:
|
373 |
msgid "Error occured during user update"
|
374 |
msgstr "При изменении прав пользователя произошла ошибка "
|
375 |
|
376 |
-
#: ../includes/class-ure-lib.php:
|
377 |
msgid "User Roles are restored to WordPress default values. "
|
378 |
msgstr "Роли возвращены к начальному состоянию"
|
379 |
|
380 |
-
#: ../includes/class-ure-lib.php:
|
381 |
msgid "Help"
|
382 |
msgstr "Помощь"
|
383 |
|
384 |
-
#: ../includes/class-ure-lib.php:
|
385 |
msgid "Error is occur. Please check the log file."
|
386 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
387 |
|
388 |
-
#: ../includes/class-ure-lib.php:
|
389 |
msgid ""
|
390 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
391 |
"only!"
|
@@ -393,7 +394,7 @@ msgstr ""
|
|
393 |
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
394 |
"цифры, знак подчеркивания и дефис."
|
395 |
|
396 |
-
#: ../includes/class-ure-lib.php:
|
397 |
msgid ""
|
398 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
399 |
"characters to it."
|
@@ -401,377 +402,377 @@ msgstr ""
|
|
401 |
"Ошибка: WordPress не поддерживает цифровые идентификаторы ролей. Начните имя "
|
402 |
"роли с латинских символов."
|
403 |
|
404 |
-
#: ../includes/class-ure-lib.php:
|
405 |
#, php-format
|
406 |
msgid "Role %s exists already"
|
407 |
msgstr "Роль %s уже существует"
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
msgid "Error is encountered during new role create operation"
|
411 |
msgstr "Произошла ошибка при создании новой роли"
|
412 |
|
413 |
-
#: ../includes/class-ure-lib.php:
|
414 |
#, php-format
|
415 |
msgid "Role %s is created successfully"
|
416 |
msgstr "Роль %s создана успешно"
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
msgid "Error: Role ID is empty!"
|
420 |
msgstr "Ошибка: пустой идентификатор (ID) роли!"
|
421 |
|
422 |
-
#: ../includes/class-ure-lib.php:
|
423 |
msgid "Error: Empty role display name is not allowed."
|
424 |
msgstr "Ошибка: пустое наименование роли не допускается"
|
425 |
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
#, php-format
|
428 |
msgid "Role %s does not exists"
|
429 |
msgstr "Роль %s не существует"
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
#, php-format
|
433 |
msgid "Role %s is renamed to %s successfully"
|
434 |
msgstr "Роль %s успешно переименована в %s"
|
435 |
|
436 |
-
#: ../includes/class-ure-lib.php:
|
437 |
msgid "Error encountered during role delete operation"
|
438 |
msgstr "Произошла ошибка при удалении роли"
|
439 |
|
440 |
-
#: ../includes/class-ure-lib.php:
|
441 |
msgid "Unused roles are deleted successfully"
|
442 |
msgstr "Неиспользуемые роли удалены успешно"
|
443 |
|
444 |
-
#: ../includes/class-ure-lib.php:
|
445 |
#, php-format
|
446 |
msgid "Role %s is deleted successfully"
|
447 |
msgstr "Роль %s удалена успешно"
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
msgid "Error encountered during default role change operation"
|
451 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
#, php-format
|
455 |
msgid "Default role for new users is set to %s successfully"
|
456 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
457 |
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
msgid "Editor"
|
460 |
msgstr "Редактор"
|
461 |
|
462 |
-
#: ../includes/class-ure-lib.php:
|
463 |
msgid "Author"
|
464 |
msgstr "Автор"
|
465 |
|
466 |
-
#: ../includes/class-ure-lib.php:
|
467 |
msgid "Contributor"
|
468 |
msgstr "Участник"
|
469 |
|
470 |
-
#: ../includes/class-ure-lib.php:
|
471 |
msgid "Subscriber"
|
472 |
msgstr "Подписчик"
|
473 |
|
474 |
-
#: ../includes/class-ure-lib.php:
|
475 |
msgid "Switch themes"
|
476 |
msgstr "Менять темы"
|
477 |
|
478 |
-
#: ../includes/class-ure-lib.php:
|
479 |
msgid "Edit themes"
|
480 |
msgstr "Изменять темы"
|
481 |
|
482 |
-
#: ../includes/class-ure-lib.php:
|
483 |
msgid "Activate plugins"
|
484 |
msgstr "Активировать плагины"
|
485 |
|
486 |
-
#: ../includes/class-ure-lib.php:
|
487 |
msgid "Edit plugins"
|
488 |
msgstr "Редактировать плагины"
|
489 |
|
490 |
-
#: ../includes/class-ure-lib.php:
|
491 |
msgid "Edit users"
|
492 |
msgstr "Изменять пользователей"
|
493 |
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
msgid "Edit files"
|
496 |
msgstr "Изменять файлы"
|
497 |
|
498 |
-
#: ../includes/class-ure-lib.php:
|
499 |
msgid "Manage options"
|
500 |
msgstr "Управлять установками"
|
501 |
|
502 |
-
#: ../includes/class-ure-lib.php:
|
503 |
msgid "Moderate comments"
|
504 |
msgstr "Модерировать комментарии"
|
505 |
|
506 |
-
#: ../includes/class-ure-lib.php:
|
507 |
msgid "Manage categories"
|
508 |
msgstr "Управлять категориями"
|
509 |
|
510 |
-
#: ../includes/class-ure-lib.php:
|
511 |
msgid "Manage links"
|
512 |
msgstr "Управлять ссылками"
|
513 |
|
514 |
-
#: ../includes/class-ure-lib.php:
|
515 |
msgid "Upload files"
|
516 |
msgstr "Загружать файлы"
|
517 |
|
518 |
-
#: ../includes/class-ure-lib.php:
|
519 |
msgid "Import"
|
520 |
msgstr "Импорт"
|
521 |
|
522 |
-
#: ../includes/class-ure-lib.php:
|
523 |
msgid "Unfiltered html"
|
524 |
msgstr "html без фильтра"
|
525 |
|
526 |
-
#: ../includes/class-ure-lib.php:
|
527 |
msgid "Edit posts"
|
528 |
msgstr "Изменять статьи"
|
529 |
|
530 |
-
#: ../includes/class-ure-lib.php:
|
531 |
msgid "Edit others posts"
|
532 |
msgstr "Изменять чужие статьи"
|
533 |
|
534 |
-
#: ../includes/class-ure-lib.php:
|
535 |
msgid "Edit published posts"
|
536 |
msgstr "Редактировать опубликованные статьи"
|
537 |
|
538 |
-
#: ../includes/class-ure-lib.php:
|
539 |
msgid "Publish posts"
|
540 |
msgstr "Публиковать статьи"
|
541 |
|
542 |
-
#: ../includes/class-ure-lib.php:
|
543 |
msgid "Edit pages"
|
544 |
msgstr "Изменять страницы"
|
545 |
|
546 |
-
#: ../includes/class-ure-lib.php:
|
547 |
msgid "Read"
|
548 |
msgstr "Чтение"
|
549 |
|
550 |
-
#: ../includes/class-ure-lib.php:
|
551 |
msgid "Level 10"
|
552 |
msgstr "Уровень 10"
|
553 |
|
554 |
-
#: ../includes/class-ure-lib.php:
|
555 |
msgid "Level 9"
|
556 |
msgstr "Уровень 9"
|
557 |
|
558 |
-
#: ../includes/class-ure-lib.php:
|
559 |
msgid "Level 8"
|
560 |
msgstr "Уровень 9"
|
561 |
|
562 |
-
#: ../includes/class-ure-lib.php:
|
563 |
msgid "Level 7"
|
564 |
msgstr "Уровень 7"
|
565 |
|
566 |
-
#: ../includes/class-ure-lib.php:
|
567 |
msgid "Level 6"
|
568 |
msgstr "Уровень 6"
|
569 |
|
570 |
-
#: ../includes/class-ure-lib.php:
|
571 |
msgid "Level 5"
|
572 |
msgstr "Уровень 5"
|
573 |
|
574 |
-
#: ../includes/class-ure-lib.php:
|
575 |
msgid "Level 4"
|
576 |
msgstr "Уровень 4"
|
577 |
|
578 |
-
#: ../includes/class-ure-lib.php:
|
579 |
msgid "Level 3"
|
580 |
msgstr "Уровень 3"
|
581 |
|
582 |
-
#: ../includes/class-ure-lib.php:
|
583 |
msgid "Level 2"
|
584 |
msgstr "Уровень 2"
|
585 |
|
586 |
-
#: ../includes/class-ure-lib.php:
|
587 |
msgid "Level 1"
|
588 |
msgstr "Уровень 1"
|
589 |
|
590 |
-
#: ../includes/class-ure-lib.php:
|
591 |
msgid "Level 0"
|
592 |
msgstr "Уровень 0"
|
593 |
|
594 |
-
#: ../includes/class-ure-lib.php:
|
595 |
msgid "Edit others pages"
|
596 |
msgstr "Редактировать чужие страницы"
|
597 |
|
598 |
-
#: ../includes/class-ure-lib.php:
|
599 |
msgid "Edit published pages"
|
600 |
msgstr "Редактировать опубликованные страницы"
|
601 |
|
602 |
-
#: ../includes/class-ure-lib.php:
|
603 |
msgid "Publish pages"
|
604 |
msgstr "Публиковать страницы"
|
605 |
|
606 |
-
#: ../includes/class-ure-lib.php:
|
607 |
msgid "Delete pages"
|
608 |
msgstr "Удалять страницы"
|
609 |
|
610 |
-
#: ../includes/class-ure-lib.php:
|
611 |
msgid "Delete others pages"
|
612 |
msgstr "Удалить чужие страницы"
|
613 |
|
614 |
-
#: ../includes/class-ure-lib.php:
|
615 |
msgid "Delete published pages"
|
616 |
msgstr "Удалять опубликованные страницы"
|
617 |
|
618 |
-
#: ../includes/class-ure-lib.php:
|
619 |
msgid "Delete posts"
|
620 |
msgstr "Удалять статьи"
|
621 |
|
622 |
-
#: ../includes/class-ure-lib.php:
|
623 |
msgid "Delete others posts"
|
624 |
msgstr "Удалять чужие статьи"
|
625 |
|
626 |
-
#: ../includes/class-ure-lib.php:
|
627 |
msgid "Delete published posts"
|
628 |
msgstr "Удалять опубликованные статьи"
|
629 |
|
630 |
-
#: ../includes/class-ure-lib.php:
|
631 |
msgid "Delete private posts"
|
632 |
msgstr "Удалять частные статьи"
|
633 |
|
634 |
-
#: ../includes/class-ure-lib.php:
|
635 |
msgid "Edit private posts"
|
636 |
msgstr "Редактировать частные статьи"
|
637 |
|
638 |
-
#: ../includes/class-ure-lib.php:
|
639 |
msgid "Read private posts"
|
640 |
msgstr "Читать частные статьи"
|
641 |
|
642 |
-
#: ../includes/class-ure-lib.php:
|
643 |
msgid "Delete private pages"
|
644 |
msgstr "Удалять частные страницы"
|
645 |
|
646 |
-
#: ../includes/class-ure-lib.php:
|
647 |
msgid "Edit private pages"
|
648 |
msgstr "Редактировать частные страницы"
|
649 |
|
650 |
-
#: ../includes/class-ure-lib.php:
|
651 |
msgid "Read private pages"
|
652 |
msgstr "Читать частные страницы"
|
653 |
|
654 |
-
#: ../includes/class-ure-lib.php:
|
655 |
msgid "Delete users"
|
656 |
msgstr "Удалять пользователей"
|
657 |
|
658 |
-
#: ../includes/class-ure-lib.php:
|
659 |
msgid "Create users"
|
660 |
msgstr "Создавать пользователей"
|
661 |
|
662 |
-
#: ../includes/class-ure-lib.php:
|
663 |
msgid "Unfiltered upload"
|
664 |
msgstr "Загрузка без фильтра"
|
665 |
|
666 |
-
#: ../includes/class-ure-lib.php:
|
667 |
msgid "Edit dashboard"
|
668 |
msgstr "Изменять панель администратора"
|
669 |
|
670 |
-
#: ../includes/class-ure-lib.php:
|
671 |
msgid "Update plugins"
|
672 |
msgstr "Обновлять плагины"
|
673 |
|
674 |
-
#: ../includes/class-ure-lib.php:
|
675 |
msgid "Delete plugins"
|
676 |
msgstr "Удалять плагины"
|
677 |
|
678 |
-
#: ../includes/class-ure-lib.php:
|
679 |
msgid "Install plugins"
|
680 |
msgstr "Устанавливать плагины"
|
681 |
|
682 |
-
#: ../includes/class-ure-lib.php:
|
683 |
msgid "Update themes"
|
684 |
msgstr "Обновлять темы"
|
685 |
|
686 |
-
#: ../includes/class-ure-lib.php:
|
687 |
msgid "Install themes"
|
688 |
msgstr "Устанавливать темы"
|
689 |
|
690 |
-
#: ../includes/class-ure-lib.php:
|
691 |
msgid "Update core"
|
692 |
msgstr "Обновлять ядро"
|
693 |
|
694 |
-
#: ../includes/class-ure-lib.php:
|
695 |
msgid "List users"
|
696 |
msgstr "Список пользователей"
|
697 |
|
698 |
-
#: ../includes/class-ure-lib.php:
|
699 |
msgid "Remove users"
|
700 |
msgstr "Удалять пользователей"
|
701 |
|
702 |
-
#: ../includes/class-ure-lib.php:
|
703 |
msgid "Add users"
|
704 |
msgstr "Добавлять пользователей"
|
705 |
|
706 |
-
#: ../includes/class-ure-lib.php:
|
707 |
msgid "Promote users"
|
708 |
msgstr "Продвигать пользователей"
|
709 |
|
710 |
-
#: ../includes/class-ure-lib.php:
|
711 |
msgid "Edit theme options"
|
712 |
msgstr "Изменять настройки темы"
|
713 |
|
714 |
-
#: ../includes/class-ure-lib.php:
|
715 |
msgid "Delete themes"
|
716 |
msgstr "Удалять темы"
|
717 |
|
718 |
-
#: ../includes/class-ure-lib.php:
|
719 |
msgid "Export"
|
720 |
msgstr "Экспорт"
|
721 |
|
722 |
-
#: ../includes/class-ure-lib.php:
|
723 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
724 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
725 |
|
726 |
-
#: ../includes/class-ure-lib.php:
|
727 |
#, php-format
|
728 |
msgid "Capability %s is added successfully"
|
729 |
msgstr "Возможность %s добавлена успешно"
|
730 |
|
731 |
-
#: ../includes/class-ure-lib.php:
|
732 |
#, php-format
|
733 |
msgid "Capability %s exists already"
|
734 |
msgstr "Возможность %s уже существует"
|
735 |
|
736 |
-
#: ../includes/class-ure-lib.php:
|
737 |
#, php-format
|
738 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
739 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
740 |
|
741 |
-
#: ../includes/class-ure-lib.php:
|
742 |
#, php-format
|
743 |
msgid "Capability %s is removed successfully"
|
744 |
msgstr "Возможность %s удалена успешно"
|
745 |
|
746 |
-
#: ../includes/class-ure-lib.php:
|
747 |
msgid "Version:"
|
748 |
msgstr "Версия:"
|
749 |
|
750 |
-
#: ../includes/class-ure-lib.php:
|
751 |
msgid "Author's website"
|
752 |
msgstr "Вебсайт автора"
|
753 |
|
754 |
-
#: ../includes/class-ure-lib.php:
|
755 |
msgid "Plugin webpage"
|
756 |
msgstr "Страница плагина"
|
757 |
|
758 |
-
#: ../includes/class-ure-lib.php:
|
759 |
msgid "Plugin download"
|
760 |
msgstr "Загрузить плагин"
|
761 |
|
762 |
-
#: ../includes/class-ure-lib.php:
|
763 |
msgid "FAQ"
|
764 |
msgstr "Часто задаваемые вопросы"
|
765 |
|
766 |
-
#: ../includes/class-ure-lib.php:
|
767 |
msgid "None"
|
768 |
msgstr "Нет"
|
769 |
|
770 |
-
#: ../includes/class-ure-lib.php:
|
771 |
msgid "Delete All Unused Roles"
|
772 |
msgstr "Удалить все неиспользуемые роли"
|
773 |
|
774 |
-
#: ../includes/class-ure-lib.php:
|
775 |
msgid "— No role for this site —"
|
776 |
msgstr "— Нет роли для этого сайта —"
|
777 |
|
@@ -827,20 +828,50 @@ msgstr ""
|
|
827 |
"обеспечения совместимости со старыми темами и плагинами. Включение данной "
|
828 |
"опции покажет все устаревшие права пользователей."
|
829 |
|
830 |
-
#: ../includes/class-ure-screen-help.php:
|
831 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
832 |
msgstr ""
|
833 |
-
"
|
834 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
835 |
|
836 |
-
#: ../includes/class-ure-screen-help.php:
|
837 |
msgid ""
|
838 |
"Super administrator only may create, edit and delete users under WordPress "
|
839 |
-
"multi-site. Turn this option on in order to remove this
|
|
|
840 |
msgstr ""
|
841 |
"Только супер-администратор может создавать, изменять и удалять пользователей "
|
842 |
"в многосайтовой сети WordPress. Включите эту опцию, чтобы отменить это "
|
843 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
844 |
|
845 |
#~ msgid "About this Plugin:"
|
846 |
#~ msgstr "Об этом плагине"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-01 12:45+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"
|
21 |
msgstr "Редактор ролей пользователей - Опции"
|
22 |
|
23 |
#: ../includes/settings-template.php:21
|
24 |
+
#: ../includes/class-user-role-editor.php:547
|
25 |
msgid "General"
|
26 |
msgstr "Общие"
|
27 |
|
28 |
+
#: ../includes/settings-template.php:26
|
29 |
+
#: ../includes/class-user-role-editor.php:553
|
30 |
msgid "Additional Modules"
|
31 |
msgstr "Дополнительные модули"
|
32 |
|
33 |
+
#: ../includes/settings-template.php:30
|
34 |
+
#: ../includes/class-user-role-editor.php:559
|
35 |
msgid "Default Roles"
|
36 |
msgstr "Роли по-умолчанию"
|
37 |
|
38 |
+
#: ../includes/settings-template.php:34
|
39 |
+
#: ../includes/class-user-role-editor.php:564
|
40 |
msgid "Multisite"
|
41 |
msgstr "Многосайтовые"
|
42 |
|
43 |
+
#: ../includes/settings-template.php:39
|
44 |
msgid "About"
|
45 |
msgstr "О плагине"
|
46 |
|
47 |
+
#: ../includes/settings-template.php:53
|
48 |
#: ../includes/class-ure-screen-help.php:15
|
49 |
msgid "Show Administrator role at User Role Editor"
|
50 |
msgstr "Отобразить роль Администратор в Редакторе ролей пользователей"
|
51 |
|
52 |
+
#: ../includes/settings-template.php:61
|
53 |
#: ../includes/class-ure-screen-help.php:18
|
54 |
msgid "Show capabilities in the human readable form"
|
55 |
msgstr "Показ прав доступа в читабельной форме"
|
56 |
|
57 |
+
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
58 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
59 |
msgid "Show deprecated capabilities"
|
60 |
msgstr "Показать устаревшие разрешения"
|
61 |
|
62 |
+
#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
|
63 |
+
#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
|
64 |
msgid "Save"
|
65 |
msgstr "Сохранить"
|
66 |
|
67 |
+
#: ../includes/settings-template.php:102
|
68 |
+
#: ../includes/class-ure-screen-help.php:40
|
69 |
msgid "Count users without role"
|
70 |
msgstr "Подсчёт пользователей без роли"
|
71 |
|
72 |
+
#: ../includes/settings-template.php:129
|
73 |
msgid "Primary default role: "
|
74 |
msgstr "Основная роль по-умолчанию:"
|
75 |
|
76 |
+
#: ../includes/settings-template.php:136
|
77 |
msgid "Other default roles for new registered user: "
|
78 |
msgstr "Другие роли по-умолчанию для вновь зарегистрированного пользователя:"
|
79 |
|
80 |
+
#: ../includes/settings-template.php:142
|
81 |
msgid ""
|
82 |
"Note for multisite environment: take into account that other default roles "
|
83 |
"should exist at the site, in order to be assigned to the new registered "
|
87 |
"вновь зарегистрированному пользователю дополнительных ролей по-умолчанию эти "
|
88 |
"роли должны существовать на этом сайте."
|
89 |
|
90 |
+
#: ../includes/settings-template.php:168
|
91 |
msgid "Allow non super administrators to create, edit, and delete users"
|
92 |
msgstr ""
|
93 |
"Разрешить простым администраторам создавать, изменять, удалять пользователей"
|
109 |
msgid "You do not have permission to edit this user."
|
110 |
msgstr "Нет прав на редактирование этого пользователя"
|
111 |
|
112 |
+
#: ../includes/class-user-role-editor.php:422
|
113 |
msgid "Capabilities"
|
114 |
msgstr "Возможности"
|
115 |
|
116 |
+
#: ../includes/class-user-role-editor.php:514
|
117 |
msgid "Settings"
|
118 |
msgstr "Установки"
|
119 |
|
120 |
+
#: ../includes/class-user-role-editor.php:525
|
121 |
+
#: ../includes/class-ure-lib.php:2292
|
122 |
msgid "Changelog"
|
123 |
msgstr "Журнал изменений"
|
124 |
|
125 |
+
#: ../includes/class-user-role-editor.php:573
|
126 |
+
#: ../includes/class-user-role-editor.php:601
|
127 |
+
#: ../includes/class-user-role-editor.php:946
|
128 |
+
#: ../includes/class-ure-lib.php:248
|
|
|
|
|
|
|
|
|
129 |
msgid "User Role Editor"
|
130 |
msgstr "Редактор ролей пользователей"
|
131 |
|
132 |
+
#: ../includes/class-user-role-editor.php:658
|
133 |
+
#: ../includes/class-user-role-editor.php:676
|
134 |
+
#: ../includes/class-user-role-editor.php:720
|
135 |
msgid "User Role Editor options are updated"
|
136 |
msgstr "Изменения в настройках Редактора ролей пользователей сохранены"
|
137 |
|
138 |
+
#: ../includes/class-user-role-editor.php:704
|
139 |
msgid "Default Roles are updated"
|
140 |
msgstr "Изменения в роли по-умолчанию сохранены"
|
141 |
|
142 |
+
#: ../includes/class-user-role-editor.php:728
|
143 |
msgid ""
|
144 |
"You do not have sufficient permissions to manage options for User Role "
|
145 |
"Editor."
|
146 |
msgstr "У вас нет прав на изменение настроек плагина"
|
147 |
|
148 |
+
#: ../includes/class-user-role-editor.php:807
|
149 |
msgid "Insufficient permissions to work with User Role Editor"
|
150 |
msgstr "Не достаточно прав для работы с User Role Editor"
|
151 |
|
152 |
+
#: ../includes/class-user-role-editor.php:888
|
153 |
msgid "Select All"
|
154 |
msgstr "Выбрать все"
|
155 |
|
156 |
+
#: ../includes/class-user-role-editor.php:889
|
157 |
msgid "Unselect All"
|
158 |
msgstr "Исключить все"
|
159 |
|
160 |
+
#: ../includes/class-user-role-editor.php:890
|
161 |
msgid "Reverse"
|
162 |
msgstr "Обратить"
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:891
|
165 |
msgid "Update"
|
166 |
msgstr "Сохранить"
|
167 |
|
168 |
+
#: ../includes/class-user-role-editor.php:892
|
169 |
msgid "Please confirm permissions update"
|
170 |
msgstr "Пожалуйста, подтвердите продолжение "
|
171 |
|
172 |
+
#: ../includes/class-user-role-editor.php:893
|
173 |
msgid "Add New Role"
|
174 |
msgstr "Добавить новую роль"
|
175 |
|
176 |
+
#: ../includes/class-user-role-editor.php:894
|
177 |
+
#: ../includes/class-user-role-editor.php:899
|
178 |
msgid "Rename Role"
|
179 |
msgstr "Переименовать роль"
|
180 |
|
181 |
+
#: ../includes/class-user-role-editor.php:895
|
182 |
msgid " Role name (ID) can not be empty!"
|
183 |
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
184 |
|
185 |
+
#: ../includes/class-user-role-editor.php:896
|
186 |
msgid ""
|
187 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
188 |
"only!"
|
190 |
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
191 |
"тире и знак подчеркивания"
|
192 |
|
193 |
+
#: ../includes/class-user-role-editor.php:897
|
194 |
msgid ""
|
195 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
196 |
"it."
|
198 |
"WordPress не поддерживает цифровые идентификаторы ролей. Начните имя роли с "
|
199 |
"латинских символов."
|
200 |
|
201 |
+
#: ../includes/class-user-role-editor.php:898
|
202 |
msgid "Add Role"
|
203 |
msgstr "Добавить роль"
|
204 |
|
205 |
+
#: ../includes/class-user-role-editor.php:900
|
206 |
msgid "Delete Role"
|
207 |
msgstr "Удалить роль"
|
208 |
|
209 |
+
#: ../includes/class-user-role-editor.php:901
|
210 |
msgid "Cancel"
|
211 |
msgstr "Отмена"
|
212 |
|
213 |
+
#: ../includes/class-user-role-editor.php:902
|
214 |
msgid "Add Capability"
|
215 |
msgstr "Новая возм."
|
216 |
|
217 |
+
#: ../includes/class-user-role-editor.php:903
|
218 |
+
#: ../includes/class-user-role-editor.php:912
|
219 |
msgid "Delete Capability"
|
220 |
msgstr "Удалить возм."
|
221 |
|
222 |
+
#: ../includes/class-user-role-editor.php:904
|
223 |
msgid "Reset"
|
224 |
msgstr "Сброс"
|
225 |
|
226 |
+
#: ../includes/class-user-role-editor.php:905
|
227 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
228 |
msgstr ""
|
229 |
"ВНИМАНИЕ! Очистка восстановит роли по состоянию на момент установки "
|
230 |
"WordPress."
|
231 |
|
232 |
+
#: ../includes/class-user-role-editor.php:906
|
233 |
msgid ""
|
234 |
"If any plugins have changed capabilities in any way upon installation (such "
|
235 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
237 |
"Если плагины изменяли пользовательские права после установки WordPress "
|
238 |
"(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
|
239 |
|
240 |
+
#: ../includes/class-user-role-editor.php:907
|
241 |
msgid ""
|
242 |
"For more information on how to undo changes and restore plugin capabilities "
|
243 |
"go to"
|
245 |
"Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
|
246 |
"для плагинов, можно узнать здесь"
|
247 |
|
248 |
+
#: ../includes/class-user-role-editor.php:909
|
249 |
msgid "Continue?"
|
250 |
msgstr "Продолжить?"
|
251 |
|
252 |
+
#: ../includes/class-user-role-editor.php:910
|
253 |
msgid "Default Role"
|
254 |
msgstr "Роль по-умолчанию"
|
255 |
|
256 |
+
#: ../includes/class-user-role-editor.php:911
|
257 |
msgid "Set New Default Role"
|
258 |
msgstr "Установить"
|
259 |
|
260 |
+
#: ../includes/class-user-role-editor.php:913
|
261 |
msgid ""
|
262 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
263 |
"or other custom code"
|
265 |
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
266 |
"прекращеню работы одного из плагинов или другого кода."
|
267 |
|
268 |
+
#: ../includes/class-user-role-editor.php:914
|
269 |
msgid " Capability name (ID) can not be empty!"
|
270 |
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
271 |
|
272 |
+
#: ../includes/class-user-role-editor.php:915
|
273 |
msgid ""
|
274 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
275 |
"underscore only!"
|
277 |
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
278 |
"цифры, знаки подчеркивания"
|
279 |
|
280 |
+
#: ../includes/class-user-role-editor.php:949
|
281 |
+
#: ../includes/class-user-role-editor.php:978
|
282 |
msgid "Other Roles"
|
283 |
msgstr "Другие роли"
|
284 |
|
285 |
+
#: ../includes/class-user-role-editor.php:960
|
286 |
msgid "Edit"
|
287 |
msgstr "Изменить"
|
288 |
|
314 |
msgid "Custom capabilities:"
|
315 |
msgstr "Дополнительные возможности :"
|
316 |
|
317 |
+
#: ../includes/class-ure-lib.php:156
|
318 |
msgid "Error: wrong request"
|
319 |
msgstr "Ошибка: неверный запрос"
|
320 |
|
321 |
+
#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
|
322 |
msgid "Role name (ID): "
|
323 |
msgstr "Идентификатор роли (ID):"
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
|
326 |
msgid "Display Role Name: "
|
327 |
msgstr "Наименование роли:"
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:193
|
330 |
msgid "Make copy of: "
|
331 |
msgstr "Создать копию из:"
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:209
|
334 |
msgid "Select Role:"
|
335 |
msgstr "Выбери Роль:"
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:224
|
338 |
msgid "Delete:"
|
339 |
msgstr "Удалить"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:231
|
342 |
msgid "Capability name (ID): "
|
343 |
msgstr "Идентификатор (ID):"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:345
|
346 |
msgid "Error: "
|
347 |
msgstr "Ошибка:"
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:345
|
350 |
msgid "Role"
|
351 |
msgstr "Роль"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:346
|
354 |
msgid "does not exist"
|
355 |
msgstr "не существует"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:389
|
358 |
msgid "Role is updated successfully"
|
359 |
msgstr "Роль изменена успешно"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:391
|
362 |
msgid "Roles are updated for all network"
|
363 |
msgstr "Роли изменены для всей сети"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:397
|
366 |
msgid "Error occured during role(s) update"
|
367 |
msgstr "При изменении роли произошла ошибка"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:404
|
370 |
msgid "User capabilities are updated successfully"
|
371 |
msgstr "Права пользователя изменены успешно"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:409
|
374 |
msgid "Error occured during user update"
|
375 |
msgstr "При изменении прав пользователя произошла ошибка "
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:467
|
378 |
msgid "User Roles are restored to WordPress default values. "
|
379 |
msgstr "Роли возвращены к начальному состоянию"
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:1334
|
382 |
msgid "Help"
|
383 |
msgstr "Помощь"
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:1692
|
386 |
msgid "Error is occur. Please check the log file."
|
387 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
|
390 |
msgid ""
|
391 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
392 |
"only!"
|
394 |
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
395 |
"цифры, знак подчеркивания и дефис."
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
|
398 |
msgid ""
|
399 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
400 |
"characters to it."
|
402 |
"Ошибка: WordPress не поддерживает цифровые идентификаторы ролей. Начните имя "
|
403 |
"роли с латинских символов."
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:1754
|
406 |
#, php-format
|
407 |
msgid "Role %s exists already"
|
408 |
msgstr "Роль %s уже существует"
|
409 |
|
410 |
+
#: ../includes/class-ure-lib.php:1769
|
411 |
msgid "Error is encountered during new role create operation"
|
412 |
msgstr "Произошла ошибка при создании новой роли"
|
413 |
|
414 |
+
#: ../includes/class-ure-lib.php:1771
|
415 |
#, php-format
|
416 |
msgid "Role %s is created successfully"
|
417 |
msgstr "Роль %s создана успешно"
|
418 |
|
419 |
+
#: ../includes/class-ure-lib.php:1795
|
420 |
msgid "Error: Role ID is empty!"
|
421 |
msgstr "Ошибка: пустой идентификатор (ID) роли!"
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:1813
|
424 |
msgid "Error: Empty role display name is not allowed."
|
425 |
msgstr "Ошибка: пустое наименование роли не допускается"
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:1820
|
428 |
#, php-format
|
429 |
msgid "Role %s does not exists"
|
430 |
msgstr "Роль %s не существует"
|
431 |
|
432 |
+
#: ../includes/class-ure-lib.php:1828
|
433 |
#, php-format
|
434 |
msgid "Role %s is renamed to %s successfully"
|
435 |
msgstr "Роль %s успешно переименована в %s"
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:1895
|
438 |
msgid "Error encountered during role delete operation"
|
439 |
msgstr "Произошла ошибка при удалении роли"
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:1897
|
442 |
msgid "Unused roles are deleted successfully"
|
443 |
msgstr "Неиспользуемые роли удалены успешно"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:1899
|
446 |
#, php-format
|
447 |
msgid "Role %s is deleted successfully"
|
448 |
msgstr "Роль %s удалена успешно"
|
449 |
|
450 |
+
#: ../includes/class-ure-lib.php:1924
|
451 |
msgid "Error encountered during default role change operation"
|
452 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
453 |
|
454 |
+
#: ../includes/class-ure-lib.php:1930
|
455 |
#, php-format
|
456 |
msgid "Default role for new users is set to %s successfully"
|
457 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
458 |
|
459 |
+
#: ../includes/class-ure-lib.php:1949
|
460 |
msgid "Editor"
|
461 |
msgstr "Редактор"
|
462 |
|
463 |
+
#: ../includes/class-ure-lib.php:1950
|
464 |
msgid "Author"
|
465 |
msgstr "Автор"
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:1951
|
468 |
msgid "Contributor"
|
469 |
msgstr "Участник"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:1952
|
472 |
msgid "Subscriber"
|
473 |
msgstr "Подписчик"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:1954
|
476 |
msgid "Switch themes"
|
477 |
msgstr "Менять темы"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:1955
|
480 |
msgid "Edit themes"
|
481 |
msgstr "Изменять темы"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:1956
|
484 |
msgid "Activate plugins"
|
485 |
msgstr "Активировать плагины"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:1957
|
488 |
msgid "Edit plugins"
|
489 |
msgstr "Редактировать плагины"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:1958
|
492 |
msgid "Edit users"
|
493 |
msgstr "Изменять пользователей"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:1959
|
496 |
msgid "Edit files"
|
497 |
msgstr "Изменять файлы"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:1960
|
500 |
msgid "Manage options"
|
501 |
msgstr "Управлять установками"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:1961
|
504 |
msgid "Moderate comments"
|
505 |
msgstr "Модерировать комментарии"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:1962
|
508 |
msgid "Manage categories"
|
509 |
msgstr "Управлять категориями"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:1963
|
512 |
msgid "Manage links"
|
513 |
msgstr "Управлять ссылками"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:1964
|
516 |
msgid "Upload files"
|
517 |
msgstr "Загружать файлы"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:1965
|
520 |
msgid "Import"
|
521 |
msgstr "Импорт"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:1966
|
524 |
msgid "Unfiltered html"
|
525 |
msgstr "html без фильтра"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:1967
|
528 |
msgid "Edit posts"
|
529 |
msgstr "Изменять статьи"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:1968
|
532 |
msgid "Edit others posts"
|
533 |
msgstr "Изменять чужие статьи"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:1969
|
536 |
msgid "Edit published posts"
|
537 |
msgstr "Редактировать опубликованные статьи"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:1970
|
540 |
msgid "Publish posts"
|
541 |
msgstr "Публиковать статьи"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:1971
|
544 |
msgid "Edit pages"
|
545 |
msgstr "Изменять страницы"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:1972
|
548 |
msgid "Read"
|
549 |
msgstr "Чтение"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:1973
|
552 |
msgid "Level 10"
|
553 |
msgstr "Уровень 10"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:1974
|
556 |
msgid "Level 9"
|
557 |
msgstr "Уровень 9"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:1975
|
560 |
msgid "Level 8"
|
561 |
msgstr "Уровень 9"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:1976
|
564 |
msgid "Level 7"
|
565 |
msgstr "Уровень 7"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:1977
|
568 |
msgid "Level 6"
|
569 |
msgstr "Уровень 6"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:1978
|
572 |
msgid "Level 5"
|
573 |
msgstr "Уровень 5"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:1979
|
576 |
msgid "Level 4"
|
577 |
msgstr "Уровень 4"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:1980
|
580 |
msgid "Level 3"
|
581 |
msgstr "Уровень 3"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:1981
|
584 |
msgid "Level 2"
|
585 |
msgstr "Уровень 2"
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:1982
|
588 |
msgid "Level 1"
|
589 |
msgstr "Уровень 1"
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:1983
|
592 |
msgid "Level 0"
|
593 |
msgstr "Уровень 0"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:1984
|
596 |
msgid "Edit others pages"
|
597 |
msgstr "Редактировать чужие страницы"
|
598 |
|
599 |
+
#: ../includes/class-ure-lib.php:1985
|
600 |
msgid "Edit published pages"
|
601 |
msgstr "Редактировать опубликованные страницы"
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:1986
|
604 |
msgid "Publish pages"
|
605 |
msgstr "Публиковать страницы"
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:1987
|
608 |
msgid "Delete pages"
|
609 |
msgstr "Удалять страницы"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:1988
|
612 |
msgid "Delete others pages"
|
613 |
msgstr "Удалить чужие страницы"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:1989
|
616 |
msgid "Delete published pages"
|
617 |
msgstr "Удалять опубликованные страницы"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:1990
|
620 |
msgid "Delete posts"
|
621 |
msgstr "Удалять статьи"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:1991
|
624 |
msgid "Delete others posts"
|
625 |
msgstr "Удалять чужие статьи"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:1992
|
628 |
msgid "Delete published posts"
|
629 |
msgstr "Удалять опубликованные статьи"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:1993
|
632 |
msgid "Delete private posts"
|
633 |
msgstr "Удалять частные статьи"
|
634 |
|
635 |
+
#: ../includes/class-ure-lib.php:1994
|
636 |
msgid "Edit private posts"
|
637 |
msgstr "Редактировать частные статьи"
|
638 |
|
639 |
+
#: ../includes/class-ure-lib.php:1995
|
640 |
msgid "Read private posts"
|
641 |
msgstr "Читать частные статьи"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:1996
|
644 |
msgid "Delete private pages"
|
645 |
msgstr "Удалять частные страницы"
|
646 |
|
647 |
+
#: ../includes/class-ure-lib.php:1997
|
648 |
msgid "Edit private pages"
|
649 |
msgstr "Редактировать частные страницы"
|
650 |
|
651 |
+
#: ../includes/class-ure-lib.php:1998
|
652 |
msgid "Read private pages"
|
653 |
msgstr "Читать частные страницы"
|
654 |
|
655 |
+
#: ../includes/class-ure-lib.php:1999
|
656 |
msgid "Delete users"
|
657 |
msgstr "Удалять пользователей"
|
658 |
|
659 |
+
#: ../includes/class-ure-lib.php:2000
|
660 |
msgid "Create users"
|
661 |
msgstr "Создавать пользователей"
|
662 |
|
663 |
+
#: ../includes/class-ure-lib.php:2001
|
664 |
msgid "Unfiltered upload"
|
665 |
msgstr "Загрузка без фильтра"
|
666 |
|
667 |
+
#: ../includes/class-ure-lib.php:2002
|
668 |
msgid "Edit dashboard"
|
669 |
msgstr "Изменять панель администратора"
|
670 |
|
671 |
+
#: ../includes/class-ure-lib.php:2003
|
672 |
msgid "Update plugins"
|
673 |
msgstr "Обновлять плагины"
|
674 |
|
675 |
+
#: ../includes/class-ure-lib.php:2004
|
676 |
msgid "Delete plugins"
|
677 |
msgstr "Удалять плагины"
|
678 |
|
679 |
+
#: ../includes/class-ure-lib.php:2005
|
680 |
msgid "Install plugins"
|
681 |
msgstr "Устанавливать плагины"
|
682 |
|
683 |
+
#: ../includes/class-ure-lib.php:2006
|
684 |
msgid "Update themes"
|
685 |
msgstr "Обновлять темы"
|
686 |
|
687 |
+
#: ../includes/class-ure-lib.php:2007
|
688 |
msgid "Install themes"
|
689 |
msgstr "Устанавливать темы"
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:2008
|
692 |
msgid "Update core"
|
693 |
msgstr "Обновлять ядро"
|
694 |
|
695 |
+
#: ../includes/class-ure-lib.php:2009
|
696 |
msgid "List users"
|
697 |
msgstr "Список пользователей"
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2010
|
700 |
msgid "Remove users"
|
701 |
msgstr "Удалять пользователей"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2011
|
704 |
msgid "Add users"
|
705 |
msgstr "Добавлять пользователей"
|
706 |
|
707 |
+
#: ../includes/class-ure-lib.php:2012
|
708 |
msgid "Promote users"
|
709 |
msgstr "Продвигать пользователей"
|
710 |
|
711 |
+
#: ../includes/class-ure-lib.php:2013
|
712 |
msgid "Edit theme options"
|
713 |
msgstr "Изменять настройки темы"
|
714 |
|
715 |
+
#: ../includes/class-ure-lib.php:2014
|
716 |
msgid "Delete themes"
|
717 |
msgstr "Удалять темы"
|
718 |
|
719 |
+
#: ../includes/class-ure-lib.php:2015
|
720 |
msgid "Export"
|
721 |
msgstr "Экспорт"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2125
|
724 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
725 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
726 |
|
727 |
+
#: ../includes/class-ure-lib.php:2138
|
728 |
#, php-format
|
729 |
msgid "Capability %s is added successfully"
|
730 |
msgstr "Возможность %s добавлена успешно"
|
731 |
|
732 |
+
#: ../includes/class-ure-lib.php:2140
|
733 |
#, php-format
|
734 |
msgid "Capability %s exists already"
|
735 |
msgstr "Возможность %s уже существует"
|
736 |
|
737 |
+
#: ../includes/class-ure-lib.php:2165
|
738 |
#, php-format
|
739 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
740 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
741 |
|
742 |
+
#: ../includes/class-ure-lib.php:2184
|
743 |
#, php-format
|
744 |
msgid "Capability %s is removed successfully"
|
745 |
msgstr "Возможность %s удалена успешно"
|
746 |
|
747 |
+
#: ../includes/class-ure-lib.php:2288
|
748 |
msgid "Version:"
|
749 |
msgstr "Версия:"
|
750 |
|
751 |
+
#: ../includes/class-ure-lib.php:2289
|
752 |
msgid "Author's website"
|
753 |
msgstr "Вебсайт автора"
|
754 |
|
755 |
+
#: ../includes/class-ure-lib.php:2290
|
756 |
msgid "Plugin webpage"
|
757 |
msgstr "Страница плагина"
|
758 |
|
759 |
+
#: ../includes/class-ure-lib.php:2291
|
760 |
msgid "Plugin download"
|
761 |
msgstr "Загрузить плагин"
|
762 |
|
763 |
+
#: ../includes/class-ure-lib.php:2293
|
764 |
msgid "FAQ"
|
765 |
msgstr "Часто задаваемые вопросы"
|
766 |
|
767 |
+
#: ../includes/class-ure-lib.php:2341
|
768 |
msgid "None"
|
769 |
msgstr "Нет"
|
770 |
|
771 |
+
#: ../includes/class-ure-lib.php:2368
|
772 |
msgid "Delete All Unused Roles"
|
773 |
msgstr "Удалить все неиспользуемые роли"
|
774 |
|
775 |
+
#: ../includes/class-ure-lib.php:2392
|
776 |
msgid "— No role for this site —"
|
777 |
msgstr "— Нет роли для этого сайта —"
|
778 |
|
828 |
"обеспечения совместимости со старыми темами и плагинами. Включение данной "
|
829 |
"опции покажет все устаревшие права пользователей."
|
830 |
|
831 |
+
#: ../includes/class-ure-screen-help.php:41
|
832 |
+
msgid "select roles below"
|
833 |
+
msgstr "выберите роли ниже"
|
834 |
+
|
835 |
+
#: ../includes/class-ure-screen-help.php:56
|
836 |
+
msgid "Other default roles for new registered user"
|
837 |
+
msgstr "Другие роли по-умолчанию для вновь зарегистрированного пользователя:"
|
838 |
+
|
839 |
+
#: ../includes/class-ure-screen-help.php:57
|
840 |
+
msgid ""
|
841 |
+
"select roles below to assign them to the new user automatically as an "
|
842 |
+
"addition to the primary role. Note for multisite environment: take into "
|
843 |
+
"account that other default roles should exist at the site, in order to be "
|
844 |
+
"assigned to the new registered users."
|
845 |
msgstr ""
|
846 |
+
"выберите роли из расположенного ниже списка, чтобы присваивать их новым "
|
847 |
+
"пользователям автоматически в дополнение к основной роли.Заметка для "
|
848 |
+
"WordPress с несколькими сайтами: учтите, что для присвоения вновь "
|
849 |
+
"зарегистрированному пользователю дополнительных ролей по-умолчанию эти роли "
|
850 |
+
"должны существовать на этом сайте."
|
851 |
+
|
852 |
+
#: ../includes/class-ure-screen-help.php:75
|
853 |
+
msgid "Allow non super-admininstrators to create, edit and delete users"
|
854 |
+
msgstr ""
|
855 |
+
"Разрешить локальным администраторам сайтов (не суперадмин) создавать, "
|
856 |
+
"изменять, удалять пользователей на своих сайтах"
|
857 |
|
858 |
+
#: ../includes/class-ure-screen-help.php:76
|
859 |
msgid ""
|
860 |
"Super administrator only may create, edit and delete users under WordPress "
|
861 |
+
"multi-site by default. Turn this option on in order to remove this "
|
862 |
+
"limitation."
|
863 |
msgstr ""
|
864 |
"Только супер-администратор может создавать, изменять и удалять пользователей "
|
865 |
"в многосайтовой сети WordPress. Включите эту опцию, чтобы отменить это "
|
866 |
+
"ограничение."
|
867 |
+
|
868 |
+
#~ msgid "Overview"
|
869 |
+
#~ msgstr "Обзор"
|
870 |
+
|
871 |
+
#~ msgid "Allow create, edit and delete users to not super-admininstrators"
|
872 |
+
#~ msgstr ""
|
873 |
+
#~ "Разрешить создание, изменение и удаление пользователей простым "
|
874 |
+
#~ "администраторам"
|
875 |
|
876 |
#~ msgid "About this Plugin:"
|
877 |
#~ msgstr "Об этом плагине"
|
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: 2014-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: \n"
|
@@ -22,70 +22,75 @@ msgid "User Role Editor - Options"
|
|
22 |
msgstr "Kullanıcı Rol Editörü"
|
23 |
|
24 |
#: ../includes/settings-template.php:21
|
|
|
25 |
#, fuzzy
|
26 |
msgid "General"
|
27 |
msgstr "Seçenekleri yönetmek"
|
28 |
|
29 |
-
#: ../includes/settings-template.php:
|
|
|
30 |
msgid "Additional Modules"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: ../includes/settings-template.php:
|
|
|
34 |
#, fuzzy
|
35 |
msgid "Default Roles"
|
36 |
msgstr "Öntanımlı Rol"
|
37 |
|
38 |
-
#: ../includes/settings-template.php:
|
|
|
39 |
msgid "Multisite"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: ../includes/settings-template.php:
|
43 |
msgid "About"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: ../includes/settings-template.php:
|
47 |
#: ../includes/class-ure-screen-help.php:15
|
48 |
msgid "Show Administrator role at User Role Editor"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../includes/settings-template.php:
|
52 |
#: ../includes/class-ure-screen-help.php:18
|
53 |
#, fuzzy
|
54 |
msgid "Show capabilities in the human readable form"
|
55 |
msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
|
56 |
|
57 |
-
#: ../includes/settings-template.php:
|
58 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
59 |
msgid "Show deprecated capabilities"
|
60 |
msgstr "Önerilmeyen yetenekleri göster"
|
61 |
|
62 |
-
#: ../includes/settings-template.php:
|
63 |
-
#: ../includes/settings-template.php:
|
64 |
msgid "Save"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: ../includes/settings-template.php:
|
|
|
68 |
#, fuzzy
|
69 |
msgid "Count users without role"
|
70 |
msgstr "Varsayılan Rolü Değiştir"
|
71 |
|
72 |
-
#: ../includes/settings-template.php:
|
73 |
#, fuzzy
|
74 |
msgid "Primary default role: "
|
75 |
msgstr "Birincil rol:"
|
76 |
|
77 |
-
#: ../includes/settings-template.php:
|
78 |
msgid "Other default roles for new registered user: "
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: ../includes/settings-template.php:
|
82 |
msgid ""
|
83 |
"Note for multisite environment: take into account that other default roles "
|
84 |
"should exist at the site, in order to be assigned to the new registered "
|
85 |
"users."
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: ../includes/settings-template.php:
|
89 |
msgid "Allow non super administrators to create, edit, and delete users"
|
90 |
msgstr ""
|
91 |
|
@@ -107,86 +112,82 @@ msgstr ""
|
|
107 |
msgid "You do not have permission to edit this user."
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: ../includes/class-user-role-editor.php:
|
111 |
msgid "Capabilities"
|
112 |
msgstr "Kabiliyetler"
|
113 |
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
msgid "Settings"
|
116 |
msgstr "Ayarlar"
|
117 |
|
118 |
-
#: ../includes/class-user-role-editor.php:
|
119 |
-
#: ../includes/class-ure-lib.php:
|
120 |
msgid "Changelog"
|
121 |
msgstr "Changelog"
|
122 |
|
123 |
-
#: ../includes/class-user-role-editor.php:
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
#: ../includes/class-user-role-editor.php:561
|
128 |
-
#: ../includes/class-user-role-editor.php:589
|
129 |
-
#: ../includes/class-user-role-editor.php:930
|
130 |
-
#: ../includes/class-ure-lib.php:232
|
131 |
msgid "User Role Editor"
|
132 |
msgstr "Kullanıcı Rol Editörü"
|
133 |
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
-
#: ../includes/class-user-role-editor.php:
|
136 |
-
#: ../includes/class-user-role-editor.php:
|
137 |
msgid "User Role Editor options are updated"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: ../includes/class-user-role-editor.php:
|
141 |
#, fuzzy
|
142 |
msgid "Default Roles are updated"
|
143 |
msgstr "Yeni Kullanıcılar için Varsayılan Rol"
|
144 |
|
145 |
-
#: ../includes/class-user-role-editor.php:
|
146 |
msgid ""
|
147 |
"You do not have sufficient permissions to manage options for User Role "
|
148 |
"Editor."
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: ../includes/class-user-role-editor.php:
|
152 |
msgid "Insufficient permissions to work with User Role Editor"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: ../includes/class-user-role-editor.php:
|
156 |
msgid "Select All"
|
157 |
msgstr "Tümünü Seç"
|
158 |
|
159 |
-
#: ../includes/class-user-role-editor.php:
|
160 |
msgid "Unselect All"
|
161 |
msgstr "Seçimi Kaldır"
|
162 |
|
163 |
-
#: ../includes/class-user-role-editor.php:
|
164 |
msgid "Reverse"
|
165 |
msgstr "Seçimi Tersine Çevir"
|
166 |
|
167 |
-
#: ../includes/class-user-role-editor.php:
|
168 |
msgid "Update"
|
169 |
msgstr "Güncelle"
|
170 |
|
171 |
-
#: ../includes/class-user-role-editor.php:
|
172 |
msgid "Please confirm permissions update"
|
173 |
msgstr "İzinleri güncelleştirmek için lütfen onaylayın"
|
174 |
|
175 |
-
#: ../includes/class-user-role-editor.php:
|
176 |
msgid "Add New Role"
|
177 |
msgstr "Yeni Rol Ekle"
|
178 |
|
179 |
-
#: ../includes/class-user-role-editor.php:
|
180 |
-
#: ../includes/class-user-role-editor.php:
|
181 |
#, fuzzy
|
182 |
msgid "Rename Role"
|
183 |
msgstr "Rolü Sil"
|
184 |
|
185 |
-
#: ../includes/class-user-role-editor.php:
|
186 |
msgid " Role name (ID) can not be empty!"
|
187 |
msgstr "Ad (ID) boş bırakılamaz!"
|
188 |
|
189 |
-
#: ../includes/class-user-role-editor.php:
|
190 |
msgid ""
|
191 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
192 |
"only!"
|
@@ -194,66 +195,66 @@ msgstr ""
|
|
194 |
"Rol adı (ID) yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
|
195 |
"oluşabilir."
|
196 |
|
197 |
-
#: ../includes/class-user-role-editor.php:
|
198 |
msgid ""
|
199 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
200 |
"it."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: ../includes/class-user-role-editor.php:
|
204 |
msgid "Add Role"
|
205 |
msgstr "Rol Ekle"
|
206 |
|
207 |
-
#: ../includes/class-user-role-editor.php:
|
208 |
msgid "Delete Role"
|
209 |
msgstr "Rolü Sil"
|
210 |
|
211 |
-
#: ../includes/class-user-role-editor.php:
|
212 |
msgid "Cancel"
|
213 |
msgstr "İptal"
|
214 |
|
215 |
-
#: ../includes/class-user-role-editor.php:
|
216 |
msgid "Add Capability"
|
217 |
msgstr "Kabiliyet Ekle"
|
218 |
|
219 |
-
#: ../includes/class-user-role-editor.php:
|
220 |
-
#: ../includes/class-user-role-editor.php:
|
221 |
msgid "Delete Capability"
|
222 |
msgstr "Kabiliyeti kaldır"
|
223 |
|
224 |
-
#: ../includes/class-user-role-editor.php:
|
225 |
msgid "Reset"
|
226 |
msgstr "Geri al"
|
227 |
|
228 |
-
#: ../includes/class-user-role-editor.php:
|
229 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: ../includes/class-user-role-editor.php:
|
233 |
msgid ""
|
234 |
"If any plugins have changed capabilities in any way upon installation (such "
|
235 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: ../includes/class-user-role-editor.php:
|
239 |
msgid ""
|
240 |
"For more information on how to undo changes and restore plugin capabilities "
|
241 |
"go to"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: ../includes/class-user-role-editor.php:
|
245 |
msgid "Continue?"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: ../includes/class-user-role-editor.php:
|
249 |
msgid "Default Role"
|
250 |
msgstr "Öntanımlı Rol"
|
251 |
|
252 |
-
#: ../includes/class-user-role-editor.php:
|
253 |
msgid "Set New Default Role"
|
254 |
msgstr "Yeni Öntanımlı Rol Seç"
|
255 |
|
256 |
-
#: ../includes/class-user-role-editor.php:
|
257 |
msgid ""
|
258 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
259 |
"or other custom code"
|
@@ -261,11 +262,11 @@ msgstr ""
|
|
261 |
"Uyarı! Dikkatli olun - önemli kabiliyetleri kaldırmak bazı eklentileri veya "
|
262 |
"başka özel kodların bozulmasına sebep olabilir"
|
263 |
|
264 |
-
#: ../includes/class-user-role-editor.php:
|
265 |
msgid " Capability name (ID) can not be empty!"
|
266 |
msgstr "Ad (ID) boş bırakılamaz!"
|
267 |
|
268 |
-
#: ../includes/class-user-role-editor.php:
|
269 |
msgid ""
|
270 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
271 |
"underscore only!"
|
@@ -273,12 +274,12 @@ msgstr ""
|
|
273 |
"Kabiliyet adı (ID) yalnızca latin karakterleri, sayılar, tire veya "
|
274 |
"altçizgiden oluşabilir."
|
275 |
|
276 |
-
#: ../includes/class-user-role-editor.php:
|
277 |
-
#: ../includes/class-user-role-editor.php:
|
278 |
msgid "Other Roles"
|
279 |
msgstr "Diğer Roller"
|
280 |
|
281 |
-
#: ../includes/class-user-role-editor.php:
|
282 |
msgid "Edit"
|
283 |
msgstr "Düzenle"
|
284 |
|
@@ -311,79 +312,79 @@ msgstr ""
|
|
311 |
msgid "Custom capabilities:"
|
312 |
msgstr "Özel Kabiliyetler:"
|
313 |
|
314 |
-
#: ../includes/class-ure-lib.php:
|
315 |
msgid "Error: wrong request"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: ../includes/class-ure-lib.php:
|
319 |
msgid "Role name (ID): "
|
320 |
msgstr "Rol adı (ID):"
|
321 |
|
322 |
-
#: ../includes/class-ure-lib.php:
|
323 |
msgid "Display Role Name: "
|
324 |
msgstr "Görünecek Rol Adı:"
|
325 |
|
326 |
-
#: ../includes/class-ure-lib.php:
|
327 |
msgid "Make copy of: "
|
328 |
msgstr "Bundan kopyala:"
|
329 |
|
330 |
-
#: ../includes/class-ure-lib.php:
|
331 |
msgid "Select Role:"
|
332 |
msgstr "Rolü Seçin:"
|
333 |
|
334 |
-
#: ../includes/class-ure-lib.php:
|
335 |
msgid "Delete:"
|
336 |
msgstr "Sil:"
|
337 |
|
338 |
-
#: ../includes/class-ure-lib.php:
|
339 |
msgid "Capability name (ID): "
|
340 |
msgstr "Yetenek adı (ID): "
|
341 |
|
342 |
-
#: ../includes/class-ure-lib.php:
|
343 |
msgid "Error: "
|
344 |
msgstr "Hata:"
|
345 |
|
346 |
-
#: ../includes/class-ure-lib.php:
|
347 |
msgid "Role"
|
348 |
msgstr "Rol:"
|
349 |
|
350 |
-
#: ../includes/class-ure-lib.php:
|
351 |
msgid "does not exist"
|
352 |
msgstr "bulunmuyor"
|
353 |
|
354 |
-
#: ../includes/class-ure-lib.php:
|
355 |
msgid "Role is updated successfully"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: ../includes/class-ure-lib.php:
|
359 |
msgid "Roles are updated for all network"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: ../includes/class-ure-lib.php:
|
363 |
msgid "Error occured during role(s) update"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: ../includes/class-ure-lib.php:
|
367 |
msgid "User capabilities are updated successfully"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: ../includes/class-ure-lib.php:
|
371 |
msgid "Error occured during user update"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: ../includes/class-ure-lib.php:
|
375 |
msgid "User Roles are restored to WordPress default values. "
|
376 |
msgstr "Rol yetkileri WordPress öntanımlılarına geri yüklendi."
|
377 |
|
378 |
-
#: ../includes/class-ure-lib.php:
|
379 |
msgid "Help"
|
380 |
msgstr "Yardım"
|
381 |
|
382 |
-
#: ../includes/class-ure-lib.php:
|
383 |
msgid "Error is occur. Please check the log file."
|
384 |
msgstr "Bir hata oluştu. Lütfen günlük dosyasını kontrol edin."
|
385 |
|
386 |
-
#: ../includes/class-ure-lib.php:
|
387 |
msgid ""
|
388 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
389 |
"only!"
|
@@ -391,385 +392,385 @@ msgstr ""
|
|
391 |
"Hata: Rol ID yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
|
392 |
"oluşabilir."
|
393 |
|
394 |
-
#: ../includes/class-ure-lib.php:
|
395 |
msgid ""
|
396 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
397 |
"characters to it."
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: ../includes/class-ure-lib.php:
|
401 |
#, php-format
|
402 |
msgid "Role %s exists already"
|
403 |
msgstr "%s rolü zaten mevcut"
|
404 |
|
405 |
-
#: ../includes/class-ure-lib.php:
|
406 |
msgid "Error is encountered during new role create operation"
|
407 |
msgstr "Yeni rol oluşturma işlemi sırasında hata"
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
#, php-format
|
411 |
msgid "Role %s is created successfully"
|
412 |
msgstr "%s rolü başarıyla oluşturuldu"
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
415 |
msgid "Error: Role ID is empty!"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
msgid "Error: Empty role display name is not allowed."
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: ../includes/class-ure-lib.php:
|
423 |
#, fuzzy, php-format
|
424 |
msgid "Role %s does not exists"
|
425 |
msgstr "bulunmuyor"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
#, fuzzy, php-format
|
429 |
msgid "Role %s is renamed to %s successfully"
|
430 |
msgstr "%s rolü başarıyla oluşturuldu"
|
431 |
|
432 |
-
#: ../includes/class-ure-lib.php:
|
433 |
msgid "Error encountered during role delete operation"
|
434 |
msgstr "Rol silme işlemi sırasında hata"
|
435 |
|
436 |
-
#: ../includes/class-ure-lib.php:
|
437 |
msgid "Unused roles are deleted successfully"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ../includes/class-ure-lib.php:
|
441 |
#, php-format
|
442 |
msgid "Role %s is deleted successfully"
|
443 |
msgstr "%s rolü başarıyla silindi"
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
msgid "Error encountered during default role change operation"
|
447 |
msgstr "Varsayılan rolü değiştirme işlemi sırasında hata"
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
#, php-format
|
451 |
msgid "Default role for new users is set to %s successfully"
|
452 |
msgstr "Yeni kullanıcılar için varsayılan rol %s olarak başarıyla değiştirildi"
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
msgid "Editor"
|
456 |
msgstr "Editör"
|
457 |
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
msgid "Author"
|
460 |
msgstr "Yazar"
|
461 |
|
462 |
-
#: ../includes/class-ure-lib.php:
|
463 |
msgid "Contributor"
|
464 |
msgstr "İçerik Sağlayıcı"
|
465 |
|
466 |
-
#: ../includes/class-ure-lib.php:
|
467 |
msgid "Subscriber"
|
468 |
msgstr "Üye"
|
469 |
|
470 |
-
#: ../includes/class-ure-lib.php:
|
471 |
msgid "Switch themes"
|
472 |
msgstr "Temaları değiştir"
|
473 |
|
474 |
-
#: ../includes/class-ure-lib.php:
|
475 |
msgid "Edit themes"
|
476 |
msgstr "Temaları düzenle"
|
477 |
|
478 |
-
#: ../includes/class-ure-lib.php:
|
479 |
msgid "Activate plugins"
|
480 |
msgstr "Eklentileri aktive et"
|
481 |
|
482 |
-
#: ../includes/class-ure-lib.php:
|
483 |
msgid "Edit plugins"
|
484 |
msgstr "Eklentileri düzenlemek"
|
485 |
|
486 |
-
#: ../includes/class-ure-lib.php:
|
487 |
msgid "Edit users"
|
488 |
msgstr "Kullanıcıları düzenlemek"
|
489 |
|
490 |
-
#: ../includes/class-ure-lib.php:
|
491 |
msgid "Edit files"
|
492 |
msgstr "Dosyaları düzenlemek"
|
493 |
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
msgid "Manage options"
|
496 |
msgstr "Seçenekleri yönetmek"
|
497 |
|
498 |
-
#: ../includes/class-ure-lib.php:
|
499 |
msgid "Moderate comments"
|
500 |
msgstr "Yorumları yönetmek"
|
501 |
|
502 |
-
#: ../includes/class-ure-lib.php:
|
503 |
msgid "Manage categories"
|
504 |
msgstr "Kategorileri yönetmek"
|
505 |
|
506 |
-
#: ../includes/class-ure-lib.php:
|
507 |
msgid "Manage links"
|
508 |
msgstr "Linkleri yönetmek"
|
509 |
|
510 |
-
#: ../includes/class-ure-lib.php:
|
511 |
msgid "Upload files"
|
512 |
msgstr "Dosya yüklemek"
|
513 |
|
514 |
-
#: ../includes/class-ure-lib.php:
|
515 |
msgid "Import"
|
516 |
msgstr "İçeri aktarmak"
|
517 |
|
518 |
-
#: ../includes/class-ure-lib.php:
|
519 |
msgid "Unfiltered html"
|
520 |
msgstr "Filtrelenmemiş HTML"
|
521 |
|
522 |
-
#: ../includes/class-ure-lib.php:
|
523 |
msgid "Edit posts"
|
524 |
msgstr "Yazıları düzenlemek"
|
525 |
|
526 |
-
#: ../includes/class-ure-lib.php:
|
527 |
msgid "Edit others posts"
|
528 |
msgstr "Başkalarının yazılarını düzenlemek"
|
529 |
|
530 |
-
#: ../includes/class-ure-lib.php:
|
531 |
msgid "Edit published posts"
|
532 |
msgstr "Yayınlanmış yazıları düzenlemek"
|
533 |
|
534 |
-
#: ../includes/class-ure-lib.php:
|
535 |
msgid "Publish posts"
|
536 |
msgstr "Yazıları yayınlamak"
|
537 |
|
538 |
-
#: ../includes/class-ure-lib.php:
|
539 |
msgid "Edit pages"
|
540 |
msgstr "Sayfaları düzenlemek"
|
541 |
|
542 |
-
#: ../includes/class-ure-lib.php:
|
543 |
msgid "Read"
|
544 |
msgstr "Okumak"
|
545 |
|
546 |
-
#: ../includes/class-ure-lib.php:
|
547 |
msgid "Level 10"
|
548 |
msgstr "Seviye 10"
|
549 |
|
550 |
-
#: ../includes/class-ure-lib.php:
|
551 |
msgid "Level 9"
|
552 |
msgstr "Seviye 9"
|
553 |
|
554 |
-
#: ../includes/class-ure-lib.php:
|
555 |
msgid "Level 8"
|
556 |
msgstr "Seviye 8"
|
557 |
|
558 |
-
#: ../includes/class-ure-lib.php:
|
559 |
msgid "Level 7"
|
560 |
msgstr "Seviye 7"
|
561 |
|
562 |
-
#: ../includes/class-ure-lib.php:
|
563 |
msgid "Level 6"
|
564 |
msgstr "Seviye 6"
|
565 |
|
566 |
-
#: ../includes/class-ure-lib.php:
|
567 |
msgid "Level 5"
|
568 |
msgstr "Seviye 5"
|
569 |
|
570 |
-
#: ../includes/class-ure-lib.php:
|
571 |
msgid "Level 4"
|
572 |
msgstr "Seviye 4"
|
573 |
|
574 |
-
#: ../includes/class-ure-lib.php:
|
575 |
msgid "Level 3"
|
576 |
msgstr "Seviye 3"
|
577 |
|
578 |
-
#: ../includes/class-ure-lib.php:
|
579 |
msgid "Level 2"
|
580 |
msgstr "Seviye 2"
|
581 |
|
582 |
-
#: ../includes/class-ure-lib.php:
|
583 |
msgid "Level 1"
|
584 |
msgstr "Seviye 1"
|
585 |
|
586 |
-
#: ../includes/class-ure-lib.php:
|
587 |
msgid "Level 0"
|
588 |
msgstr "Seviye 0"
|
589 |
|
590 |
-
#: ../includes/class-ure-lib.php:
|
591 |
msgid "Edit others pages"
|
592 |
msgstr "Başkalarının sayfalarını düzenlemek"
|
593 |
|
594 |
-
#: ../includes/class-ure-lib.php:
|
595 |
msgid "Edit published pages"
|
596 |
msgstr "Yayınlanmış sayfaları düzenlemek"
|
597 |
|
598 |
-
#: ../includes/class-ure-lib.php:
|
599 |
msgid "Publish pages"
|
600 |
msgstr "Sayfaları yayınlamak"
|
601 |
|
602 |
-
#: ../includes/class-ure-lib.php:
|
603 |
msgid "Delete pages"
|
604 |
msgstr "Sayfaları silmek"
|
605 |
|
606 |
-
#: ../includes/class-ure-lib.php:
|
607 |
msgid "Delete others pages"
|
608 |
msgstr "Başkalarının sayfalarını silmek"
|
609 |
|
610 |
-
#: ../includes/class-ure-lib.php:
|
611 |
msgid "Delete published pages"
|
612 |
msgstr "Yayınlanmış sayfaları silmek"
|
613 |
|
614 |
-
#: ../includes/class-ure-lib.php:
|
615 |
msgid "Delete posts"
|
616 |
msgstr "Yazıları silmek"
|
617 |
|
618 |
-
#: ../includes/class-ure-lib.php:
|
619 |
msgid "Delete others posts"
|
620 |
msgstr "Başkalarının yazılarını silmek"
|
621 |
|
622 |
-
#: ../includes/class-ure-lib.php:
|
623 |
msgid "Delete published posts"
|
624 |
msgstr "Yayınlanmış yazıları silmek"
|
625 |
|
626 |
-
#: ../includes/class-ure-lib.php:
|
627 |
msgid "Delete private posts"
|
628 |
msgstr "Özel yazıları silmek"
|
629 |
|
630 |
-
#: ../includes/class-ure-lib.php:
|
631 |
msgid "Edit private posts"
|
632 |
msgstr "Özel yazıları düzenlemek"
|
633 |
|
634 |
-
#: ../includes/class-ure-lib.php:
|
635 |
msgid "Read private posts"
|
636 |
msgstr "Özel yazıları okumak"
|
637 |
|
638 |
-
#: ../includes/class-ure-lib.php:
|
639 |
msgid "Delete private pages"
|
640 |
msgstr "Özel sayfaları silmek"
|
641 |
|
642 |
-
#: ../includes/class-ure-lib.php:
|
643 |
msgid "Edit private pages"
|
644 |
msgstr "Özel sayfaları düzenlemek"
|
645 |
|
646 |
-
#: ../includes/class-ure-lib.php:
|
647 |
msgid "Read private pages"
|
648 |
msgstr "Özel yazıları okumak"
|
649 |
|
650 |
-
#: ../includes/class-ure-lib.php:
|
651 |
msgid "Delete users"
|
652 |
msgstr "Kullanıcı silmek"
|
653 |
|
654 |
-
#: ../includes/class-ure-lib.php:
|
655 |
msgid "Create users"
|
656 |
msgstr "Kullanıcı oluşturmak"
|
657 |
|
658 |
-
#: ../includes/class-ure-lib.php:
|
659 |
msgid "Unfiltered upload"
|
660 |
msgstr "Filtrelenmemiş dosya yüklemek"
|
661 |
|
662 |
-
#: ../includes/class-ure-lib.php:
|
663 |
msgid "Edit dashboard"
|
664 |
msgstr "Paneli düzenlemek"
|
665 |
|
666 |
-
#: ../includes/class-ure-lib.php:
|
667 |
msgid "Update plugins"
|
668 |
msgstr "Eklentileri güncellemek"
|
669 |
|
670 |
-
#: ../includes/class-ure-lib.php:
|
671 |
msgid "Delete plugins"
|
672 |
msgstr "Eklenti silmek"
|
673 |
|
674 |
-
#: ../includes/class-ure-lib.php:
|
675 |
msgid "Install plugins"
|
676 |
msgstr "Eklenti yüklemek"
|
677 |
|
678 |
-
#: ../includes/class-ure-lib.php:
|
679 |
msgid "Update themes"
|
680 |
msgstr "Temaları güncellemek"
|
681 |
|
682 |
-
#: ../includes/class-ure-lib.php:
|
683 |
msgid "Install themes"
|
684 |
msgstr "Tema yüklemek"
|
685 |
|
686 |
-
#: ../includes/class-ure-lib.php:
|
687 |
msgid "Update core"
|
688 |
msgstr "Güncelle"
|
689 |
|
690 |
-
#: ../includes/class-ure-lib.php:
|
691 |
msgid "List users"
|
692 |
msgstr "Kullanıcıları listelemek"
|
693 |
|
694 |
-
#: ../includes/class-ure-lib.php:
|
695 |
msgid "Remove users"
|
696 |
msgstr "Kullanıcı silmek"
|
697 |
|
698 |
-
#: ../includes/class-ure-lib.php:
|
699 |
msgid "Add users"
|
700 |
msgstr "Kullanıcıları eklemek"
|
701 |
|
702 |
-
#: ../includes/class-ure-lib.php:
|
703 |
msgid "Promote users"
|
704 |
msgstr "Kullanıcı yükseltmek"
|
705 |
|
706 |
-
#: ../includes/class-ure-lib.php:
|
707 |
msgid "Edit theme options"
|
708 |
msgstr "Tema ayarlarını düzenlemek"
|
709 |
|
710 |
-
#: ../includes/class-ure-lib.php:
|
711 |
msgid "Delete themes"
|
712 |
msgstr "Temaları silmek"
|
713 |
|
714 |
-
#: ../includes/class-ure-lib.php:
|
715 |
msgid "Export"
|
716 |
msgstr "Dışa aktarmak"
|
717 |
|
718 |
-
#: ../includes/class-ure-lib.php:
|
719 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
720 |
msgstr ""
|
721 |
"Hata: Kabiliyet adı yalnızca latin karakterleri ve sayılardan oluşabilir."
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
#, php-format
|
725 |
msgid "Capability %s is added successfully"
|
726 |
msgstr "%s kabiliyeti başarıyla eklendi"
|
727 |
|
728 |
-
#: ../includes/class-ure-lib.php:
|
729 |
#, php-format
|
730 |
msgid "Capability %s exists already"
|
731 |
msgstr "%s kabiliyeti zaten mevcut"
|
732 |
|
733 |
-
#: ../includes/class-ure-lib.php:
|
734 |
#, php-format
|
735 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
736 |
msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
|
737 |
|
738 |
-
#: ../includes/class-ure-lib.php:
|
739 |
#, php-format
|
740 |
msgid "Capability %s is removed successfully"
|
741 |
msgstr "%s kabiliyeti başarıyla oluşturuldu"
|
742 |
|
743 |
-
#: ../includes/class-ure-lib.php:
|
744 |
msgid "Version:"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: ../includes/class-ure-lib.php:
|
748 |
msgid "Author's website"
|
749 |
msgstr "Hazırlayanın websitesi"
|
750 |
|
751 |
-
#: ../includes/class-ure-lib.php:
|
752 |
msgid "Plugin webpage"
|
753 |
msgstr "Eklentinin websitesi"
|
754 |
|
755 |
-
#: ../includes/class-ure-lib.php:
|
756 |
#, fuzzy
|
757 |
msgid "Plugin download"
|
758 |
msgstr "Başkalarının sayfalarını silmek"
|
759 |
|
760 |
-
#: ../includes/class-ure-lib.php:
|
761 |
msgid "FAQ"
|
762 |
msgstr "SSS"
|
763 |
|
764 |
-
#: ../includes/class-ure-lib.php:
|
765 |
msgid "None"
|
766 |
msgstr "Hiçbiri"
|
767 |
|
768 |
-
#: ../includes/class-ure-lib.php:
|
769 |
msgid "Delete All Unused Roles"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: ../includes/class-ure-lib.php:
|
773 |
msgid "— No role for this site —"
|
774 |
msgstr ""
|
775 |
|
@@ -815,14 +816,32 @@ msgid ""
|
|
815 |
"deprecated capabilities."
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: ../includes/class-ure-screen-help.php:
|
819 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: ../includes/class-ure-screen-help.php:
|
823 |
msgid ""
|
824 |
"Super administrator only may create, edit and delete users under WordPress "
|
825 |
-
"multi-site. Turn this option on in order to remove this
|
|
|
826 |
msgstr ""
|
827 |
|
828 |
#~ msgid "About this Plugin:"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: user-role-editor\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-01 12:45+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: \n"
|
22 |
msgstr "Kullanıcı Rol Editörü"
|
23 |
|
24 |
#: ../includes/settings-template.php:21
|
25 |
+
#: ../includes/class-user-role-editor.php:547
|
26 |
#, fuzzy
|
27 |
msgid "General"
|
28 |
msgstr "Seçenekleri yönetmek"
|
29 |
|
30 |
+
#: ../includes/settings-template.php:26
|
31 |
+
#: ../includes/class-user-role-editor.php:553
|
32 |
msgid "Additional Modules"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ../includes/settings-template.php:30
|
36 |
+
#: ../includes/class-user-role-editor.php:559
|
37 |
#, fuzzy
|
38 |
msgid "Default Roles"
|
39 |
msgstr "Öntanımlı Rol"
|
40 |
|
41 |
+
#: ../includes/settings-template.php:34
|
42 |
+
#: ../includes/class-user-role-editor.php:564
|
43 |
msgid "Multisite"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: ../includes/settings-template.php:39
|
47 |
msgid "About"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: ../includes/settings-template.php:53
|
51 |
#: ../includes/class-ure-screen-help.php:15
|
52 |
msgid "Show Administrator role at User Role Editor"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: ../includes/settings-template.php:61
|
56 |
#: ../includes/class-ure-screen-help.php:18
|
57 |
#, fuzzy
|
58 |
msgid "Show capabilities in the human readable form"
|
59 |
msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
|
60 |
|
61 |
+
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
62 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
63 |
msgid "Show deprecated capabilities"
|
64 |
msgstr "Önerilmeyen yetenekleri göster"
|
65 |
|
66 |
+
#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
|
67 |
+
#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
|
68 |
msgid "Save"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: ../includes/settings-template.php:102
|
72 |
+
#: ../includes/class-ure-screen-help.php:40
|
73 |
#, fuzzy
|
74 |
msgid "Count users without role"
|
75 |
msgstr "Varsayılan Rolü Değiştir"
|
76 |
|
77 |
+
#: ../includes/settings-template.php:129
|
78 |
#, fuzzy
|
79 |
msgid "Primary default role: "
|
80 |
msgstr "Birincil rol:"
|
81 |
|
82 |
+
#: ../includes/settings-template.php:136
|
83 |
msgid "Other default roles for new registered user: "
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: ../includes/settings-template.php:142
|
87 |
msgid ""
|
88 |
"Note for multisite environment: take into account that other default roles "
|
89 |
"should exist at the site, in order to be assigned to the new registered "
|
90 |
"users."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: ../includes/settings-template.php:168
|
94 |
msgid "Allow non super administrators to create, edit, and delete users"
|
95 |
msgstr ""
|
96 |
|
112 |
msgid "You do not have permission to edit this user."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: ../includes/class-user-role-editor.php:422
|
116 |
msgid "Capabilities"
|
117 |
msgstr "Kabiliyetler"
|
118 |
|
119 |
+
#: ../includes/class-user-role-editor.php:514
|
120 |
msgid "Settings"
|
121 |
msgstr "Ayarlar"
|
122 |
|
123 |
+
#: ../includes/class-user-role-editor.php:525
|
124 |
+
#: ../includes/class-ure-lib.php:2292
|
125 |
msgid "Changelog"
|
126 |
msgstr "Changelog"
|
127 |
|
128 |
+
#: ../includes/class-user-role-editor.php:573
|
129 |
+
#: ../includes/class-user-role-editor.php:601
|
130 |
+
#: ../includes/class-user-role-editor.php:946
|
131 |
+
#: ../includes/class-ure-lib.php:248
|
|
|
|
|
|
|
|
|
132 |
msgid "User Role Editor"
|
133 |
msgstr "Kullanıcı Rol Editörü"
|
134 |
|
135 |
+
#: ../includes/class-user-role-editor.php:658
|
136 |
+
#: ../includes/class-user-role-editor.php:676
|
137 |
+
#: ../includes/class-user-role-editor.php:720
|
138 |
msgid "User Role Editor options are updated"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: ../includes/class-user-role-editor.php:704
|
142 |
#, fuzzy
|
143 |
msgid "Default Roles are updated"
|
144 |
msgstr "Yeni Kullanıcılar için Varsayılan Rol"
|
145 |
|
146 |
+
#: ../includes/class-user-role-editor.php:728
|
147 |
msgid ""
|
148 |
"You do not have sufficient permissions to manage options for User Role "
|
149 |
"Editor."
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: ../includes/class-user-role-editor.php:807
|
153 |
msgid "Insufficient permissions to work with User Role Editor"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: ../includes/class-user-role-editor.php:888
|
157 |
msgid "Select All"
|
158 |
msgstr "Tümünü Seç"
|
159 |
|
160 |
+
#: ../includes/class-user-role-editor.php:889
|
161 |
msgid "Unselect All"
|
162 |
msgstr "Seçimi Kaldır"
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:890
|
165 |
msgid "Reverse"
|
166 |
msgstr "Seçimi Tersine Çevir"
|
167 |
|
168 |
+
#: ../includes/class-user-role-editor.php:891
|
169 |
msgid "Update"
|
170 |
msgstr "Güncelle"
|
171 |
|
172 |
+
#: ../includes/class-user-role-editor.php:892
|
173 |
msgid "Please confirm permissions update"
|
174 |
msgstr "İzinleri güncelleştirmek için lütfen onaylayın"
|
175 |
|
176 |
+
#: ../includes/class-user-role-editor.php:893
|
177 |
msgid "Add New Role"
|
178 |
msgstr "Yeni Rol Ekle"
|
179 |
|
180 |
+
#: ../includes/class-user-role-editor.php:894
|
181 |
+
#: ../includes/class-user-role-editor.php:899
|
182 |
#, fuzzy
|
183 |
msgid "Rename Role"
|
184 |
msgstr "Rolü Sil"
|
185 |
|
186 |
+
#: ../includes/class-user-role-editor.php:895
|
187 |
msgid " Role name (ID) can not be empty!"
|
188 |
msgstr "Ad (ID) boş bırakılamaz!"
|
189 |
|
190 |
+
#: ../includes/class-user-role-editor.php:896
|
191 |
msgid ""
|
192 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
193 |
"only!"
|
195 |
"Rol adı (ID) yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
|
196 |
"oluşabilir."
|
197 |
|
198 |
+
#: ../includes/class-user-role-editor.php:897
|
199 |
msgid ""
|
200 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
201 |
"it."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: ../includes/class-user-role-editor.php:898
|
205 |
msgid "Add Role"
|
206 |
msgstr "Rol Ekle"
|
207 |
|
208 |
+
#: ../includes/class-user-role-editor.php:900
|
209 |
msgid "Delete Role"
|
210 |
msgstr "Rolü Sil"
|
211 |
|
212 |
+
#: ../includes/class-user-role-editor.php:901
|
213 |
msgid "Cancel"
|
214 |
msgstr "İptal"
|
215 |
|
216 |
+
#: ../includes/class-user-role-editor.php:902
|
217 |
msgid "Add Capability"
|
218 |
msgstr "Kabiliyet Ekle"
|
219 |
|
220 |
+
#: ../includes/class-user-role-editor.php:903
|
221 |
+
#: ../includes/class-user-role-editor.php:912
|
222 |
msgid "Delete Capability"
|
223 |
msgstr "Kabiliyeti kaldır"
|
224 |
|
225 |
+
#: ../includes/class-user-role-editor.php:904
|
226 |
msgid "Reset"
|
227 |
msgstr "Geri al"
|
228 |
|
229 |
+
#: ../includes/class-user-role-editor.php:905
|
230 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ../includes/class-user-role-editor.php:906
|
234 |
msgid ""
|
235 |
"If any plugins have changed capabilities in any way upon installation (such "
|
236 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../includes/class-user-role-editor.php:907
|
240 |
msgid ""
|
241 |
"For more information on how to undo changes and restore plugin capabilities "
|
242 |
"go to"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: ../includes/class-user-role-editor.php:909
|
246 |
msgid "Continue?"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: ../includes/class-user-role-editor.php:910
|
250 |
msgid "Default Role"
|
251 |
msgstr "Öntanımlı Rol"
|
252 |
|
253 |
+
#: ../includes/class-user-role-editor.php:911
|
254 |
msgid "Set New Default Role"
|
255 |
msgstr "Yeni Öntanımlı Rol Seç"
|
256 |
|
257 |
+
#: ../includes/class-user-role-editor.php:913
|
258 |
msgid ""
|
259 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
260 |
"or other custom code"
|
262 |
"Uyarı! Dikkatli olun - önemli kabiliyetleri kaldırmak bazı eklentileri veya "
|
263 |
"başka özel kodların bozulmasına sebep olabilir"
|
264 |
|
265 |
+
#: ../includes/class-user-role-editor.php:914
|
266 |
msgid " Capability name (ID) can not be empty!"
|
267 |
msgstr "Ad (ID) boş bırakılamaz!"
|
268 |
|
269 |
+
#: ../includes/class-user-role-editor.php:915
|
270 |
msgid ""
|
271 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
272 |
"underscore only!"
|
274 |
"Kabiliyet adı (ID) yalnızca latin karakterleri, sayılar, tire veya "
|
275 |
"altçizgiden oluşabilir."
|
276 |
|
277 |
+
#: ../includes/class-user-role-editor.php:949
|
278 |
+
#: ../includes/class-user-role-editor.php:978
|
279 |
msgid "Other Roles"
|
280 |
msgstr "Diğer Roller"
|
281 |
|
282 |
+
#: ../includes/class-user-role-editor.php:960
|
283 |
msgid "Edit"
|
284 |
msgstr "Düzenle"
|
285 |
|
312 |
msgid "Custom capabilities:"
|
313 |
msgstr "Özel Kabiliyetler:"
|
314 |
|
315 |
+
#: ../includes/class-ure-lib.php:156
|
316 |
msgid "Error: wrong request"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
|
320 |
msgid "Role name (ID): "
|
321 |
msgstr "Rol adı (ID):"
|
322 |
|
323 |
+
#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
|
324 |
msgid "Display Role Name: "
|
325 |
msgstr "Görünecek Rol Adı:"
|
326 |
|
327 |
+
#: ../includes/class-ure-lib.php:193
|
328 |
msgid "Make copy of: "
|
329 |
msgstr "Bundan kopyala:"
|
330 |
|
331 |
+
#: ../includes/class-ure-lib.php:209
|
332 |
msgid "Select Role:"
|
333 |
msgstr "Rolü Seçin:"
|
334 |
|
335 |
+
#: ../includes/class-ure-lib.php:224
|
336 |
msgid "Delete:"
|
337 |
msgstr "Sil:"
|
338 |
|
339 |
+
#: ../includes/class-ure-lib.php:231
|
340 |
msgid "Capability name (ID): "
|
341 |
msgstr "Yetenek adı (ID): "
|
342 |
|
343 |
+
#: ../includes/class-ure-lib.php:345
|
344 |
msgid "Error: "
|
345 |
msgstr "Hata:"
|
346 |
|
347 |
+
#: ../includes/class-ure-lib.php:345
|
348 |
msgid "Role"
|
349 |
msgstr "Rol:"
|
350 |
|
351 |
+
#: ../includes/class-ure-lib.php:346
|
352 |
msgid "does not exist"
|
353 |
msgstr "bulunmuyor"
|
354 |
|
355 |
+
#: ../includes/class-ure-lib.php:389
|
356 |
msgid "Role is updated successfully"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: ../includes/class-ure-lib.php:391
|
360 |
msgid "Roles are updated for all network"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../includes/class-ure-lib.php:397
|
364 |
msgid "Error occured during role(s) update"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ../includes/class-ure-lib.php:404
|
368 |
msgid "User capabilities are updated successfully"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ../includes/class-ure-lib.php:409
|
372 |
msgid "Error occured during user update"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ../includes/class-ure-lib.php:467
|
376 |
msgid "User Roles are restored to WordPress default values. "
|
377 |
msgstr "Rol yetkileri WordPress öntanımlılarına geri yüklendi."
|
378 |
|
379 |
+
#: ../includes/class-ure-lib.php:1334
|
380 |
msgid "Help"
|
381 |
msgstr "Yardım"
|
382 |
|
383 |
+
#: ../includes/class-ure-lib.php:1692
|
384 |
msgid "Error is occur. Please check the log file."
|
385 |
msgstr "Bir hata oluştu. Lütfen günlük dosyasını kontrol edin."
|
386 |
|
387 |
+
#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
|
388 |
msgid ""
|
389 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
390 |
"only!"
|
392 |
"Hata: Rol ID yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
|
393 |
"oluşabilir."
|
394 |
|
395 |
+
#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
|
396 |
msgid ""
|
397 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
398 |
"characters to it."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:1754
|
402 |
#, php-format
|
403 |
msgid "Role %s exists already"
|
404 |
msgstr "%s rolü zaten mevcut"
|
405 |
|
406 |
+
#: ../includes/class-ure-lib.php:1769
|
407 |
msgid "Error is encountered during new role create operation"
|
408 |
msgstr "Yeni rol oluşturma işlemi sırasında hata"
|
409 |
|
410 |
+
#: ../includes/class-ure-lib.php:1771
|
411 |
#, php-format
|
412 |
msgid "Role %s is created successfully"
|
413 |
msgstr "%s rolü başarıyla oluşturuldu"
|
414 |
|
415 |
+
#: ../includes/class-ure-lib.php:1795
|
416 |
msgid "Error: Role ID is empty!"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: ../includes/class-ure-lib.php:1813
|
420 |
msgid "Error: Empty role display name is not allowed."
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:1820
|
424 |
#, fuzzy, php-format
|
425 |
msgid "Role %s does not exists"
|
426 |
msgstr "bulunmuyor"
|
427 |
|
428 |
+
#: ../includes/class-ure-lib.php:1828
|
429 |
#, fuzzy, php-format
|
430 |
msgid "Role %s is renamed to %s successfully"
|
431 |
msgstr "%s rolü başarıyla oluşturuldu"
|
432 |
|
433 |
+
#: ../includes/class-ure-lib.php:1895
|
434 |
msgid "Error encountered during role delete operation"
|
435 |
msgstr "Rol silme işlemi sırasında hata"
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:1897
|
438 |
msgid "Unused roles are deleted successfully"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:1899
|
442 |
#, php-format
|
443 |
msgid "Role %s is deleted successfully"
|
444 |
msgstr "%s rolü başarıyla silindi"
|
445 |
|
446 |
+
#: ../includes/class-ure-lib.php:1924
|
447 |
msgid "Error encountered during default role change operation"
|
448 |
msgstr "Varsayılan rolü değiştirme işlemi sırasında hata"
|
449 |
|
450 |
+
#: ../includes/class-ure-lib.php:1930
|
451 |
#, php-format
|
452 |
msgid "Default role for new users is set to %s successfully"
|
453 |
msgstr "Yeni kullanıcılar için varsayılan rol %s olarak başarıyla değiştirildi"
|
454 |
|
455 |
+
#: ../includes/class-ure-lib.php:1949
|
456 |
msgid "Editor"
|
457 |
msgstr "Editör"
|
458 |
|
459 |
+
#: ../includes/class-ure-lib.php:1950
|
460 |
msgid "Author"
|
461 |
msgstr "Yazar"
|
462 |
|
463 |
+
#: ../includes/class-ure-lib.php:1951
|
464 |
msgid "Contributor"
|
465 |
msgstr "İçerik Sağlayıcı"
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:1952
|
468 |
msgid "Subscriber"
|
469 |
msgstr "Üye"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:1954
|
472 |
msgid "Switch themes"
|
473 |
msgstr "Temaları değiştir"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:1955
|
476 |
msgid "Edit themes"
|
477 |
msgstr "Temaları düzenle"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:1956
|
480 |
msgid "Activate plugins"
|
481 |
msgstr "Eklentileri aktive et"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:1957
|
484 |
msgid "Edit plugins"
|
485 |
msgstr "Eklentileri düzenlemek"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:1958
|
488 |
msgid "Edit users"
|
489 |
msgstr "Kullanıcıları düzenlemek"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:1959
|
492 |
msgid "Edit files"
|
493 |
msgstr "Dosyaları düzenlemek"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:1960
|
496 |
msgid "Manage options"
|
497 |
msgstr "Seçenekleri yönetmek"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:1961
|
500 |
msgid "Moderate comments"
|
501 |
msgstr "Yorumları yönetmek"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:1962
|
504 |
msgid "Manage categories"
|
505 |
msgstr "Kategorileri yönetmek"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:1963
|
508 |
msgid "Manage links"
|
509 |
msgstr "Linkleri yönetmek"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:1964
|
512 |
msgid "Upload files"
|
513 |
msgstr "Dosya yüklemek"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:1965
|
516 |
msgid "Import"
|
517 |
msgstr "İçeri aktarmak"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:1966
|
520 |
msgid "Unfiltered html"
|
521 |
msgstr "Filtrelenmemiş HTML"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:1967
|
524 |
msgid "Edit posts"
|
525 |
msgstr "Yazıları düzenlemek"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:1968
|
528 |
msgid "Edit others posts"
|
529 |
msgstr "Başkalarının yazılarını düzenlemek"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:1969
|
532 |
msgid "Edit published posts"
|
533 |
msgstr "Yayınlanmış yazıları düzenlemek"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:1970
|
536 |
msgid "Publish posts"
|
537 |
msgstr "Yazıları yayınlamak"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:1971
|
540 |
msgid "Edit pages"
|
541 |
msgstr "Sayfaları düzenlemek"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:1972
|
544 |
msgid "Read"
|
545 |
msgstr "Okumak"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:1973
|
548 |
msgid "Level 10"
|
549 |
msgstr "Seviye 10"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:1974
|
552 |
msgid "Level 9"
|
553 |
msgstr "Seviye 9"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:1975
|
556 |
msgid "Level 8"
|
557 |
msgstr "Seviye 8"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:1976
|
560 |
msgid "Level 7"
|
561 |
msgstr "Seviye 7"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:1977
|
564 |
msgid "Level 6"
|
565 |
msgstr "Seviye 6"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:1978
|
568 |
msgid "Level 5"
|
569 |
msgstr "Seviye 5"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:1979
|
572 |
msgid "Level 4"
|
573 |
msgstr "Seviye 4"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:1980
|
576 |
msgid "Level 3"
|
577 |
msgstr "Seviye 3"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:1981
|
580 |
msgid "Level 2"
|
581 |
msgstr "Seviye 2"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:1982
|
584 |
msgid "Level 1"
|
585 |
msgstr "Seviye 1"
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:1983
|
588 |
msgid "Level 0"
|
589 |
msgstr "Seviye 0"
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:1984
|
592 |
msgid "Edit others pages"
|
593 |
msgstr "Başkalarının sayfalarını düzenlemek"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:1985
|
596 |
msgid "Edit published pages"
|
597 |
msgstr "Yayınlanmış sayfaları düzenlemek"
|
598 |
|
599 |
+
#: ../includes/class-ure-lib.php:1986
|
600 |
msgid "Publish pages"
|
601 |
msgstr "Sayfaları yayınlamak"
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:1987
|
604 |
msgid "Delete pages"
|
605 |
msgstr "Sayfaları silmek"
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:1988
|
608 |
msgid "Delete others pages"
|
609 |
msgstr "Başkalarının sayfalarını silmek"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:1989
|
612 |
msgid "Delete published pages"
|
613 |
msgstr "Yayınlanmış sayfaları silmek"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:1990
|
616 |
msgid "Delete posts"
|
617 |
msgstr "Yazıları silmek"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:1991
|
620 |
msgid "Delete others posts"
|
621 |
msgstr "Başkalarının yazılarını silmek"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:1992
|
624 |
msgid "Delete published posts"
|
625 |
msgstr "Yayınlanmış yazıları silmek"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:1993
|
628 |
msgid "Delete private posts"
|
629 |
msgstr "Özel yazıları silmek"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:1994
|
632 |
msgid "Edit private posts"
|
633 |
msgstr "Özel yazıları düzenlemek"
|
634 |
|
635 |
+
#: ../includes/class-ure-lib.php:1995
|
636 |
msgid "Read private posts"
|
637 |
msgstr "Özel yazıları okumak"
|
638 |
|
639 |
+
#: ../includes/class-ure-lib.php:1996
|
640 |
msgid "Delete private pages"
|
641 |
msgstr "Özel sayfaları silmek"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:1997
|
644 |
msgid "Edit private pages"
|
645 |
msgstr "Özel sayfaları düzenlemek"
|
646 |
|
647 |
+
#: ../includes/class-ure-lib.php:1998
|
648 |
msgid "Read private pages"
|
649 |
msgstr "Özel yazıları okumak"
|
650 |
|
651 |
+
#: ../includes/class-ure-lib.php:1999
|
652 |
msgid "Delete users"
|
653 |
msgstr "Kullanıcı silmek"
|
654 |
|
655 |
+
#: ../includes/class-ure-lib.php:2000
|
656 |
msgid "Create users"
|
657 |
msgstr "Kullanıcı oluşturmak"
|
658 |
|
659 |
+
#: ../includes/class-ure-lib.php:2001
|
660 |
msgid "Unfiltered upload"
|
661 |
msgstr "Filtrelenmemiş dosya yüklemek"
|
662 |
|
663 |
+
#: ../includes/class-ure-lib.php:2002
|
664 |
msgid "Edit dashboard"
|
665 |
msgstr "Paneli düzenlemek"
|
666 |
|
667 |
+
#: ../includes/class-ure-lib.php:2003
|
668 |
msgid "Update plugins"
|
669 |
msgstr "Eklentileri güncellemek"
|
670 |
|
671 |
+
#: ../includes/class-ure-lib.php:2004
|
672 |
msgid "Delete plugins"
|
673 |
msgstr "Eklenti silmek"
|
674 |
|
675 |
+
#: ../includes/class-ure-lib.php:2005
|
676 |
msgid "Install plugins"
|
677 |
msgstr "Eklenti yüklemek"
|
678 |
|
679 |
+
#: ../includes/class-ure-lib.php:2006
|
680 |
msgid "Update themes"
|
681 |
msgstr "Temaları güncellemek"
|
682 |
|
683 |
+
#: ../includes/class-ure-lib.php:2007
|
684 |
msgid "Install themes"
|
685 |
msgstr "Tema yüklemek"
|
686 |
|
687 |
+
#: ../includes/class-ure-lib.php:2008
|
688 |
msgid "Update core"
|
689 |
msgstr "Güncelle"
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:2009
|
692 |
msgid "List users"
|
693 |
msgstr "Kullanıcıları listelemek"
|
694 |
|
695 |
+
#: ../includes/class-ure-lib.php:2010
|
696 |
msgid "Remove users"
|
697 |
msgstr "Kullanıcı silmek"
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2011
|
700 |
msgid "Add users"
|
701 |
msgstr "Kullanıcıları eklemek"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2012
|
704 |
msgid "Promote users"
|
705 |
msgstr "Kullanıcı yükseltmek"
|
706 |
|
707 |
+
#: ../includes/class-ure-lib.php:2013
|
708 |
msgid "Edit theme options"
|
709 |
msgstr "Tema ayarlarını düzenlemek"
|
710 |
|
711 |
+
#: ../includes/class-ure-lib.php:2014
|
712 |
msgid "Delete themes"
|
713 |
msgstr "Temaları silmek"
|
714 |
|
715 |
+
#: ../includes/class-ure-lib.php:2015
|
716 |
msgid "Export"
|
717 |
msgstr "Dışa aktarmak"
|
718 |
|
719 |
+
#: ../includes/class-ure-lib.php:2125
|
720 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
721 |
msgstr ""
|
722 |
"Hata: Kabiliyet adı yalnızca latin karakterleri ve sayılardan oluşabilir."
|
723 |
|
724 |
+
#: ../includes/class-ure-lib.php:2138
|
725 |
#, php-format
|
726 |
msgid "Capability %s is added successfully"
|
727 |
msgstr "%s kabiliyeti başarıyla eklendi"
|
728 |
|
729 |
+
#: ../includes/class-ure-lib.php:2140
|
730 |
#, php-format
|
731 |
msgid "Capability %s exists already"
|
732 |
msgstr "%s kabiliyeti zaten mevcut"
|
733 |
|
734 |
+
#: ../includes/class-ure-lib.php:2165
|
735 |
#, php-format
|
736 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
737 |
msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
|
738 |
|
739 |
+
#: ../includes/class-ure-lib.php:2184
|
740 |
#, php-format
|
741 |
msgid "Capability %s is removed successfully"
|
742 |
msgstr "%s kabiliyeti başarıyla oluşturuldu"
|
743 |
|
744 |
+
#: ../includes/class-ure-lib.php:2288
|
745 |
msgid "Version:"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: ../includes/class-ure-lib.php:2289
|
749 |
msgid "Author's website"
|
750 |
msgstr "Hazırlayanın websitesi"
|
751 |
|
752 |
+
#: ../includes/class-ure-lib.php:2290
|
753 |
msgid "Plugin webpage"
|
754 |
msgstr "Eklentinin websitesi"
|
755 |
|
756 |
+
#: ../includes/class-ure-lib.php:2291
|
757 |
#, fuzzy
|
758 |
msgid "Plugin download"
|
759 |
msgstr "Başkalarının sayfalarını silmek"
|
760 |
|
761 |
+
#: ../includes/class-ure-lib.php:2293
|
762 |
msgid "FAQ"
|
763 |
msgstr "SSS"
|
764 |
|
765 |
+
#: ../includes/class-ure-lib.php:2341
|
766 |
msgid "None"
|
767 |
msgstr "Hiçbiri"
|
768 |
|
769 |
+
#: ../includes/class-ure-lib.php:2368
|
770 |
msgid "Delete All Unused Roles"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: ../includes/class-ure-lib.php:2392
|
774 |
msgid "— No role for this site —"
|
775 |
msgstr ""
|
776 |
|
816 |
"deprecated capabilities."
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: ../includes/class-ure-screen-help.php:41
|
820 |
+
#, fuzzy
|
821 |
+
msgid "select roles below"
|
822 |
+
msgstr "Seçimi Kaldır"
|
823 |
+
|
824 |
+
#: ../includes/class-ure-screen-help.php:56
|
825 |
+
msgid "Other default roles for new registered user"
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
#: ../includes/class-ure-screen-help.php:57
|
829 |
+
msgid ""
|
830 |
+
"select roles below to assign them to the new user automatically as an "
|
831 |
+
"addition to the primary role. Note for multisite environment: take into "
|
832 |
+
"account that other default roles should exist at the site, in order to be "
|
833 |
+
"assigned to the new registered users."
|
834 |
+
msgstr ""
|
835 |
+
|
836 |
+
#: ../includes/class-ure-screen-help.php:75
|
837 |
+
msgid "Allow non super-admininstrators to create, edit and delete users"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: ../includes/class-ure-screen-help.php:76
|
841 |
msgid ""
|
842 |
"Super administrator only may create, edit and delete users under WordPress "
|
843 |
+
"multi-site by default. Turn this option on in order to remove this "
|
844 |
+
"limitation."
|
845 |
msgstr ""
|
846 |
|
847 |
#~ msgid "About this Plugin:"
|
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: 2014-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -21,65 +21,70 @@ msgid "User Role Editor - Options"
|
|
21 |
msgstr ""
|
22 |
|
23 |
#: ../includes/settings-template.php:21
|
|
|
24 |
msgid "General"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: ../includes/settings-template.php:
|
|
|
28 |
msgid "Additional Modules"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../includes/settings-template.php:
|
|
|
32 |
msgid "Default Roles"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../includes/settings-template.php:
|
|
|
36 |
msgid "Multisite"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: ../includes/settings-template.php:
|
40 |
msgid "About"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: ../includes/settings-template.php:
|
44 |
#: ../includes/class-ure-screen-help.php:15
|
45 |
msgid "Show Administrator role at User Role Editor"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: ../includes/settings-template.php:
|
49 |
#: ../includes/class-ure-screen-help.php:18
|
50 |
msgid "Show capabilities in the human readable form"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: ../includes/settings-template.php:
|
54 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
55 |
msgid "Show deprecated capabilities"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: ../includes/settings-template.php:
|
59 |
-
#: ../includes/settings-template.php:
|
60 |
msgid "Save"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: ../includes/settings-template.php:
|
|
|
64 |
msgid "Count users without role"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: ../includes/settings-template.php:
|
68 |
msgid "Primary default role: "
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: ../includes/settings-template.php:
|
72 |
msgid "Other default roles for new registered user: "
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: ../includes/settings-template.php:
|
76 |
msgid ""
|
77 |
"Note for multisite environment: take into account that other default roles "
|
78 |
"should exist at the site, in order to be assigned to the new registered "
|
79 |
"users."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: ../includes/settings-template.php:
|
83 |
msgid "Allow non super administrators to create, edit, and delete users"
|
84 |
msgstr ""
|
85 |
|
@@ -100,170 +105,166 @@ msgstr ""
|
|
100 |
msgid "You do not have permission to edit this user."
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: ../includes/class-user-role-editor.php:
|
104 |
msgid "Capabilities"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: ../includes/class-user-role-editor.php:
|
108 |
msgid "Settings"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: ../includes/class-user-role-editor.php:
|
112 |
-
#: ../includes/class-ure-lib.php:
|
113 |
msgid "Changelog"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: ../includes/class-user-role-editor.php:
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
#: ../includes/class-user-role-editor.php:561
|
121 |
-
#: ../includes/class-user-role-editor.php:589
|
122 |
-
#: ../includes/class-user-role-editor.php:930
|
123 |
-
#: ../includes/class-ure-lib.php:232
|
124 |
msgid "User Role Editor"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: ../includes/class-user-role-editor.php:
|
128 |
-
#: ../includes/class-user-role-editor.php:
|
129 |
-
#: ../includes/class-user-role-editor.php:
|
130 |
msgid "User Role Editor options are updated"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../includes/class-user-role-editor.php:
|
134 |
msgid "Default Roles are updated"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ../includes/class-user-role-editor.php:
|
138 |
msgid ""
|
139 |
"You do not have sufficient permissions to manage options for User Role "
|
140 |
"Editor."
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: ../includes/class-user-role-editor.php:
|
144 |
msgid "Insufficient permissions to work with User Role Editor"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: ../includes/class-user-role-editor.php:
|
148 |
msgid "Select All"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: ../includes/class-user-role-editor.php:
|
152 |
msgid "Unselect All"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: ../includes/class-user-role-editor.php:
|
156 |
msgid "Reverse"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: ../includes/class-user-role-editor.php:
|
160 |
msgid "Update"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: ../includes/class-user-role-editor.php:
|
164 |
msgid "Please confirm permissions update"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: ../includes/class-user-role-editor.php:
|
168 |
msgid "Add New Role"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: ../includes/class-user-role-editor.php:
|
172 |
-
#: ../includes/class-user-role-editor.php:
|
173 |
msgid "Rename Role"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: ../includes/class-user-role-editor.php:
|
177 |
msgid " Role name (ID) can not be empty!"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: ../includes/class-user-role-editor.php:
|
181 |
msgid ""
|
182 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
183 |
"only!"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: ../includes/class-user-role-editor.php:
|
187 |
msgid ""
|
188 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
189 |
"it."
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: ../includes/class-user-role-editor.php:
|
193 |
msgid "Add Role"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: ../includes/class-user-role-editor.php:
|
197 |
msgid "Delete Role"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: ../includes/class-user-role-editor.php:
|
201 |
msgid "Cancel"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: ../includes/class-user-role-editor.php:
|
205 |
msgid "Add Capability"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: ../includes/class-user-role-editor.php:
|
209 |
-
#: ../includes/class-user-role-editor.php:
|
210 |
msgid "Delete Capability"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../includes/class-user-role-editor.php:
|
214 |
msgid "Reset"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ../includes/class-user-role-editor.php:
|
218 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: ../includes/class-user-role-editor.php:
|
222 |
msgid ""
|
223 |
"If any plugins have changed capabilities in any way upon installation (such "
|
224 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: ../includes/class-user-role-editor.php:
|
228 |
msgid ""
|
229 |
"For more information on how to undo changes and restore plugin capabilities "
|
230 |
"go to"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: ../includes/class-user-role-editor.php:
|
234 |
msgid "Continue?"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: ../includes/class-user-role-editor.php:
|
238 |
msgid "Default Role"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: ../includes/class-user-role-editor.php:
|
242 |
msgid "Set New Default Role"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: ../includes/class-user-role-editor.php:
|
246 |
msgid ""
|
247 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
248 |
"or other custom code"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: ../includes/class-user-role-editor.php:
|
252 |
msgid " Capability name (ID) can not be empty!"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: ../includes/class-user-role-editor.php:
|
256 |
msgid ""
|
257 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
258 |
"underscore only!"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: ../includes/class-user-role-editor.php:
|
262 |
-
#: ../includes/class-user-role-editor.php:
|
263 |
msgid "Other Roles"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: ../includes/class-user-role-editor.php:
|
267 |
msgid "Edit"
|
268 |
msgstr ""
|
269 |
|
@@ -295,461 +296,461 @@ msgstr ""
|
|
295 |
msgid "Custom capabilities:"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: ../includes/class-ure-lib.php:
|
299 |
msgid "Error: wrong request"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: ../includes/class-ure-lib.php:
|
303 |
msgid "Role name (ID): "
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: ../includes/class-ure-lib.php:
|
307 |
msgid "Display Role Name: "
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: ../includes/class-ure-lib.php:
|
311 |
msgid "Make copy of: "
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: ../includes/class-ure-lib.php:
|
315 |
msgid "Select Role:"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: ../includes/class-ure-lib.php:
|
319 |
msgid "Delete:"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: ../includes/class-ure-lib.php:
|
323 |
msgid "Capability name (ID): "
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: ../includes/class-ure-lib.php:
|
327 |
msgid "Error: "
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: ../includes/class-ure-lib.php:
|
331 |
msgid "Role"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: ../includes/class-ure-lib.php:
|
335 |
msgid "does not exist"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: ../includes/class-ure-lib.php:
|
339 |
msgid "Role is updated successfully"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: ../includes/class-ure-lib.php:
|
343 |
msgid "Roles are updated for all network"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: ../includes/class-ure-lib.php:
|
347 |
msgid "Error occured during role(s) update"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: ../includes/class-ure-lib.php:
|
351 |
msgid "User capabilities are updated successfully"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: ../includes/class-ure-lib.php:
|
355 |
msgid "Error occured during user update"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: ../includes/class-ure-lib.php:
|
359 |
msgid "User Roles are restored to WordPress default values. "
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: ../includes/class-ure-lib.php:
|
363 |
msgid "Help"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: ../includes/class-ure-lib.php:
|
367 |
msgid "Error is occur. Please check the log file."
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: ../includes/class-ure-lib.php:
|
371 |
msgid ""
|
372 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
373 |
"only!"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: ../includes/class-ure-lib.php:
|
377 |
msgid ""
|
378 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
379 |
"characters to it."
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: ../includes/class-ure-lib.php:
|
383 |
#, php-format
|
384 |
msgid "Role %s exists already"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: ../includes/class-ure-lib.php:
|
388 |
msgid "Error is encountered during new role create operation"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: ../includes/class-ure-lib.php:
|
392 |
#, php-format
|
393 |
msgid "Role %s is created successfully"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: ../includes/class-ure-lib.php:
|
397 |
msgid "Error: Role ID is empty!"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: ../includes/class-ure-lib.php:
|
401 |
msgid "Error: Empty role display name is not allowed."
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: ../includes/class-ure-lib.php:
|
405 |
#, php-format
|
406 |
msgid "Role %s does not exists"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
#, php-format
|
411 |
msgid "Role %s is renamed to %s successfully"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
415 |
msgid "Error encountered during role delete operation"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
msgid "Unused roles are deleted successfully"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: ../includes/class-ure-lib.php:
|
423 |
#, php-format
|
424 |
msgid "Role %s is deleted successfully"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
msgid "Error encountered during default role change operation"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
#, php-format
|
433 |
msgid "Default role for new users is set to %s successfully"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: ../includes/class-ure-lib.php:
|
437 |
msgid "Editor"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ../includes/class-ure-lib.php:
|
441 |
msgid "Author"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ../includes/class-ure-lib.php:
|
445 |
msgid "Contributor"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: ../includes/class-ure-lib.php:
|
449 |
msgid "Subscriber"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: ../includes/class-ure-lib.php:
|
453 |
msgid "Switch themes"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ../includes/class-ure-lib.php:
|
457 |
msgid "Edit themes"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../includes/class-ure-lib.php:
|
461 |
msgid "Activate plugins"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: ../includes/class-ure-lib.php:
|
465 |
msgid "Edit plugins"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: ../includes/class-ure-lib.php:
|
469 |
msgid "Edit users"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: ../includes/class-ure-lib.php:
|
473 |
msgid "Edit files"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: ../includes/class-ure-lib.php:
|
477 |
msgid "Manage options"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: ../includes/class-ure-lib.php:
|
481 |
msgid "Moderate comments"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: ../includes/class-ure-lib.php:
|
485 |
msgid "Manage categories"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: ../includes/class-ure-lib.php:
|
489 |
msgid "Manage links"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: ../includes/class-ure-lib.php:
|
493 |
msgid "Upload files"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: ../includes/class-ure-lib.php:
|
497 |
msgid "Import"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: ../includes/class-ure-lib.php:
|
501 |
msgid "Unfiltered html"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: ../includes/class-ure-lib.php:
|
505 |
msgid "Edit posts"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: ../includes/class-ure-lib.php:
|
509 |
msgid "Edit others posts"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: ../includes/class-ure-lib.php:
|
513 |
msgid "Edit published posts"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: ../includes/class-ure-lib.php:
|
517 |
msgid "Publish posts"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: ../includes/class-ure-lib.php:
|
521 |
msgid "Edit pages"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: ../includes/class-ure-lib.php:
|
525 |
msgid "Read"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: ../includes/class-ure-lib.php:
|
529 |
msgid "Level 10"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: ../includes/class-ure-lib.php:
|
533 |
msgid "Level 9"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: ../includes/class-ure-lib.php:
|
537 |
msgid "Level 8"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: ../includes/class-ure-lib.php:
|
541 |
msgid "Level 7"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: ../includes/class-ure-lib.php:
|
545 |
msgid "Level 6"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: ../includes/class-ure-lib.php:
|
549 |
msgid "Level 5"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: ../includes/class-ure-lib.php:
|
553 |
msgid "Level 4"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: ../includes/class-ure-lib.php:
|
557 |
msgid "Level 3"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: ../includes/class-ure-lib.php:
|
561 |
msgid "Level 2"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: ../includes/class-ure-lib.php:
|
565 |
msgid "Level 1"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: ../includes/class-ure-lib.php:
|
569 |
msgid "Level 0"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: ../includes/class-ure-lib.php:
|
573 |
msgid "Edit others pages"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: ../includes/class-ure-lib.php:
|
577 |
msgid "Edit published pages"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: ../includes/class-ure-lib.php:
|
581 |
msgid "Publish pages"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: ../includes/class-ure-lib.php:
|
585 |
msgid "Delete pages"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: ../includes/class-ure-lib.php:
|
589 |
msgid "Delete others pages"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: ../includes/class-ure-lib.php:
|
593 |
msgid "Delete published pages"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: ../includes/class-ure-lib.php:
|
597 |
msgid "Delete posts"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: ../includes/class-ure-lib.php:
|
601 |
msgid "Delete others posts"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: ../includes/class-ure-lib.php:
|
605 |
msgid "Delete published posts"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: ../includes/class-ure-lib.php:
|
609 |
msgid "Delete private posts"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: ../includes/class-ure-lib.php:
|
613 |
msgid "Edit private posts"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: ../includes/class-ure-lib.php:
|
617 |
msgid "Read private posts"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: ../includes/class-ure-lib.php:
|
621 |
msgid "Delete private pages"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: ../includes/class-ure-lib.php:
|
625 |
msgid "Edit private pages"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: ../includes/class-ure-lib.php:
|
629 |
msgid "Read private pages"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: ../includes/class-ure-lib.php:
|
633 |
msgid "Delete users"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: ../includes/class-ure-lib.php:
|
637 |
msgid "Create users"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: ../includes/class-ure-lib.php:
|
641 |
msgid "Unfiltered upload"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: ../includes/class-ure-lib.php:
|
645 |
msgid "Edit dashboard"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: ../includes/class-ure-lib.php:
|
649 |
msgid "Update plugins"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: ../includes/class-ure-lib.php:
|
653 |
msgid "Delete plugins"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../includes/class-ure-lib.php:
|
657 |
msgid "Install plugins"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: ../includes/class-ure-lib.php:
|
661 |
msgid "Update themes"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: ../includes/class-ure-lib.php:
|
665 |
msgid "Install themes"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: ../includes/class-ure-lib.php:
|
669 |
msgid "Update core"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: ../includes/class-ure-lib.php:
|
673 |
msgid "List users"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: ../includes/class-ure-lib.php:
|
677 |
msgid "Remove users"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: ../includes/class-ure-lib.php:
|
681 |
msgid "Add users"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: ../includes/class-ure-lib.php:
|
685 |
msgid "Promote users"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: ../includes/class-ure-lib.php:
|
689 |
msgid "Edit theme options"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: ../includes/class-ure-lib.php:
|
693 |
msgid "Delete themes"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: ../includes/class-ure-lib.php:
|
697 |
msgid "Export"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: ../includes/class-ure-lib.php:
|
701 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: ../includes/class-ure-lib.php:
|
705 |
#, php-format
|
706 |
msgid "Capability %s is added successfully"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: ../includes/class-ure-lib.php:
|
710 |
#, php-format
|
711 |
msgid "Capability %s exists already"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: ../includes/class-ure-lib.php:
|
715 |
#, php-format
|
716 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
#, php-format
|
721 |
msgid "Capability %s is removed successfully"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: ../includes/class-ure-lib.php:
|
725 |
msgid "Version:"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: ../includes/class-ure-lib.php:
|
729 |
msgid "Author's website"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: ../includes/class-ure-lib.php:
|
733 |
msgid "Plugin webpage"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: ../includes/class-ure-lib.php:
|
737 |
msgid "Plugin download"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: ../includes/class-ure-lib.php:
|
741 |
msgid "FAQ"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: ../includes/class-ure-lib.php:
|
745 |
msgid "None"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: ../includes/class-ure-lib.php:
|
749 |
msgid "Delete All Unused Roles"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: ../includes/class-ure-lib.php:
|
753 |
msgid "— No role for this site —"
|
754 |
msgstr ""
|
755 |
|
@@ -795,12 +796,29 @@ msgid ""
|
|
795 |
"deprecated capabilities."
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: ../includes/class-ure-screen-help.php:
|
799 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: ../includes/class-ure-screen-help.php:
|
803 |
msgid ""
|
804 |
"Super administrator only may create, edit and delete users under WordPress "
|
805 |
-
"multi-site. Turn this option on in order to remove this
|
|
|
806 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-01 12:45+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"
|
21 |
msgstr ""
|
22 |
|
23 |
#: ../includes/settings-template.php:21
|
24 |
+
#: ../includes/class-user-role-editor.php:547
|
25 |
msgid "General"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: ../includes/settings-template.php:26
|
29 |
+
#: ../includes/class-user-role-editor.php:553
|
30 |
msgid "Additional Modules"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../includes/settings-template.php:30
|
34 |
+
#: ../includes/class-user-role-editor.php:559
|
35 |
msgid "Default Roles"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: ../includes/settings-template.php:34
|
39 |
+
#: ../includes/class-user-role-editor.php:564
|
40 |
msgid "Multisite"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../includes/settings-template.php:39
|
44 |
msgid "About"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: ../includes/settings-template.php:53
|
48 |
#: ../includes/class-ure-screen-help.php:15
|
49 |
msgid "Show Administrator role at User Role Editor"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../includes/settings-template.php:61
|
53 |
#: ../includes/class-ure-screen-help.php:18
|
54 |
msgid "Show capabilities in the human readable form"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
58 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
59 |
msgid "Show deprecated capabilities"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
|
63 |
+
#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
|
64 |
msgid "Save"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: ../includes/settings-template.php:102
|
68 |
+
#: ../includes/class-ure-screen-help.php:40
|
69 |
msgid "Count users without role"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: ../includes/settings-template.php:129
|
73 |
msgid "Primary default role: "
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: ../includes/settings-template.php:136
|
77 |
msgid "Other default roles for new registered user: "
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: ../includes/settings-template.php:142
|
81 |
msgid ""
|
82 |
"Note for multisite environment: take into account that other default roles "
|
83 |
"should exist at the site, in order to be assigned to the new registered "
|
84 |
"users."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: ../includes/settings-template.php:168
|
88 |
msgid "Allow non super administrators to create, edit, and delete users"
|
89 |
msgstr ""
|
90 |
|
105 |
msgid "You do not have permission to edit this user."
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: ../includes/class-user-role-editor.php:422
|
109 |
msgid "Capabilities"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: ../includes/class-user-role-editor.php:514
|
113 |
msgid "Settings"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: ../includes/class-user-role-editor.php:525
|
117 |
+
#: ../includes/class-ure-lib.php:2292
|
118 |
msgid "Changelog"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ../includes/class-user-role-editor.php:573
|
122 |
+
#: ../includes/class-user-role-editor.php:601
|
123 |
+
#: ../includes/class-user-role-editor.php:946
|
124 |
+
#: ../includes/class-ure-lib.php:248
|
|
|
|
|
|
|
|
|
125 |
msgid "User Role Editor"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: ../includes/class-user-role-editor.php:658
|
129 |
+
#: ../includes/class-user-role-editor.php:676
|
130 |
+
#: ../includes/class-user-role-editor.php:720
|
131 |
msgid "User Role Editor options are updated"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: ../includes/class-user-role-editor.php:704
|
135 |
msgid "Default Roles are updated"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: ../includes/class-user-role-editor.php:728
|
139 |
msgid ""
|
140 |
"You do not have sufficient permissions to manage options for User Role "
|
141 |
"Editor."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: ../includes/class-user-role-editor.php:807
|
145 |
msgid "Insufficient permissions to work with User Role Editor"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: ../includes/class-user-role-editor.php:888
|
149 |
msgid "Select All"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: ../includes/class-user-role-editor.php:889
|
153 |
msgid "Unselect All"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: ../includes/class-user-role-editor.php:890
|
157 |
msgid "Reverse"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: ../includes/class-user-role-editor.php:891
|
161 |
msgid "Update"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:892
|
165 |
msgid "Please confirm permissions update"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: ../includes/class-user-role-editor.php:893
|
169 |
msgid "Add New Role"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: ../includes/class-user-role-editor.php:894
|
173 |
+
#: ../includes/class-user-role-editor.php:899
|
174 |
msgid "Rename Role"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: ../includes/class-user-role-editor.php:895
|
178 |
msgid " Role name (ID) can not be empty!"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../includes/class-user-role-editor.php:896
|
182 |
msgid ""
|
183 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
184 |
"only!"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: ../includes/class-user-role-editor.php:897
|
188 |
msgid ""
|
189 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
190 |
"it."
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: ../includes/class-user-role-editor.php:898
|
194 |
msgid "Add Role"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ../includes/class-user-role-editor.php:900
|
198 |
msgid "Delete Role"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: ../includes/class-user-role-editor.php:901
|
202 |
msgid "Cancel"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: ../includes/class-user-role-editor.php:902
|
206 |
msgid "Add Capability"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: ../includes/class-user-role-editor.php:903
|
210 |
+
#: ../includes/class-user-role-editor.php:912
|
211 |
msgid "Delete Capability"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../includes/class-user-role-editor.php:904
|
215 |
msgid "Reset"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../includes/class-user-role-editor.php:905
|
219 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class-user-role-editor.php:906
|
223 |
msgid ""
|
224 |
"If any plugins have changed capabilities in any way upon installation (such "
|
225 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../includes/class-user-role-editor.php:907
|
229 |
msgid ""
|
230 |
"For more information on how to undo changes and restore plugin capabilities "
|
231 |
"go to"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../includes/class-user-role-editor.php:909
|
235 |
msgid "Continue?"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ../includes/class-user-role-editor.php:910
|
239 |
msgid "Default Role"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../includes/class-user-role-editor.php:911
|
243 |
msgid "Set New Default Role"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../includes/class-user-role-editor.php:913
|
247 |
msgid ""
|
248 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
249 |
"or other custom code"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: ../includes/class-user-role-editor.php:914
|
253 |
msgid " Capability name (ID) can not be empty!"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: ../includes/class-user-role-editor.php:915
|
257 |
msgid ""
|
258 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
259 |
"underscore only!"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: ../includes/class-user-role-editor.php:949
|
263 |
+
#: ../includes/class-user-role-editor.php:978
|
264 |
msgid "Other Roles"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../includes/class-user-role-editor.php:960
|
268 |
msgid "Edit"
|
269 |
msgstr ""
|
270 |
|
296 |
msgid "Custom capabilities:"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: ../includes/class-ure-lib.php:156
|
300 |
msgid "Error: wrong request"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ../includes/class-ure-lib.php:189 ../includes/class-ure-lib.php:200
|
304 |
msgid "Role name (ID): "
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
|
308 |
msgid "Display Role Name: "
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../includes/class-ure-lib.php:193
|
312 |
msgid "Make copy of: "
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../includes/class-ure-lib.php:209
|
316 |
msgid "Select Role:"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ../includes/class-ure-lib.php:224
|
320 |
msgid "Delete:"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ../includes/class-ure-lib.php:231
|
324 |
msgid "Capability name (ID): "
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ../includes/class-ure-lib.php:345
|
328 |
msgid "Error: "
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: ../includes/class-ure-lib.php:345
|
332 |
msgid "Role"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: ../includes/class-ure-lib.php:346
|
336 |
msgid "does not exist"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: ../includes/class-ure-lib.php:389
|
340 |
msgid "Role is updated successfully"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: ../includes/class-ure-lib.php:391
|
344 |
msgid "Roles are updated for all network"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: ../includes/class-ure-lib.php:397
|
348 |
msgid "Error occured during role(s) update"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: ../includes/class-ure-lib.php:404
|
352 |
msgid "User capabilities are updated successfully"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: ../includes/class-ure-lib.php:409
|
356 |
msgid "Error occured during user update"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: ../includes/class-ure-lib.php:467
|
360 |
msgid "User Roles are restored to WordPress default values. "
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../includes/class-ure-lib.php:1334
|
364 |
msgid "Help"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ../includes/class-ure-lib.php:1692
|
368 |
msgid "Error is occur. Please check the log file."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ../includes/class-ure-lib.php:1735 ../includes/class-ure-lib.php:1802
|
372 |
msgid ""
|
373 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
374 |
"only!"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:1739 ../includes/class-ure-lib.php:1806
|
378 |
msgid ""
|
379 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
380 |
"characters to it."
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: ../includes/class-ure-lib.php:1754
|
384 |
#, php-format
|
385 |
msgid "Role %s exists already"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: ../includes/class-ure-lib.php:1769
|
389 |
msgid "Error is encountered during new role create operation"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: ../includes/class-ure-lib.php:1771
|
393 |
#, php-format
|
394 |
msgid "Role %s is created successfully"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:1795
|
398 |
msgid "Error: Role ID is empty!"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:1813
|
402 |
msgid "Error: Empty role display name is not allowed."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:1820
|
406 |
#, php-format
|
407 |
msgid "Role %s does not exists"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: ../includes/class-ure-lib.php:1828
|
411 |
#, php-format
|
412 |
msgid "Role %s is renamed to %s successfully"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../includes/class-ure-lib.php:1895
|
416 |
msgid "Error encountered during role delete operation"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: ../includes/class-ure-lib.php:1897
|
420 |
msgid "Unused roles are deleted successfully"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:1899
|
424 |
#, php-format
|
425 |
msgid "Role %s is deleted successfully"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../includes/class-ure-lib.php:1924
|
429 |
msgid "Error encountered during default role change operation"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ../includes/class-ure-lib.php:1930
|
433 |
#, php-format
|
434 |
msgid "Default role for new users is set to %s successfully"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:1949
|
438 |
msgid "Editor"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:1950
|
442 |
msgid "Author"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:1951
|
446 |
msgid "Contributor"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:1952
|
450 |
msgid "Subscriber"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:1954
|
454 |
msgid "Switch themes"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:1955
|
458 |
msgid "Edit themes"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:1956
|
462 |
msgid "Activate plugins"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:1957
|
466 |
msgid "Edit plugins"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:1958
|
470 |
msgid "Edit users"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: ../includes/class-ure-lib.php:1959
|
474 |
msgid "Edit files"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:1960
|
478 |
msgid "Manage options"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:1961
|
482 |
msgid "Moderate comments"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:1962
|
486 |
msgid "Manage categories"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:1963
|
490 |
msgid "Manage links"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:1964
|
494 |
msgid "Upload files"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:1965
|
498 |
msgid "Import"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:1966
|
502 |
msgid "Unfiltered html"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:1967
|
506 |
msgid "Edit posts"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:1968
|
510 |
msgid "Edit others posts"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:1969
|
514 |
msgid "Edit published posts"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: ../includes/class-ure-lib.php:1970
|
518 |
msgid "Publish posts"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: ../includes/class-ure-lib.php:1971
|
522 |
msgid "Edit pages"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: ../includes/class-ure-lib.php:1972
|
526 |
msgid "Read"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:1973
|
530 |
msgid "Level 10"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../includes/class-ure-lib.php:1974
|
534 |
msgid "Level 9"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ../includes/class-ure-lib.php:1975
|
538 |
msgid "Level 8"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ../includes/class-ure-lib.php:1976
|
542 |
msgid "Level 7"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: ../includes/class-ure-lib.php:1977
|
546 |
msgid "Level 6"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: ../includes/class-ure-lib.php:1978
|
550 |
msgid "Level 5"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: ../includes/class-ure-lib.php:1979
|
554 |
msgid "Level 4"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: ../includes/class-ure-lib.php:1980
|
558 |
msgid "Level 3"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: ../includes/class-ure-lib.php:1981
|
562 |
msgid "Level 2"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:1982
|
566 |
msgid "Level 1"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: ../includes/class-ure-lib.php:1983
|
570 |
msgid "Level 0"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: ../includes/class-ure-lib.php:1984
|
574 |
msgid "Edit others pages"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: ../includes/class-ure-lib.php:1985
|
578 |
msgid "Edit published pages"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: ../includes/class-ure-lib.php:1986
|
582 |
msgid "Publish pages"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: ../includes/class-ure-lib.php:1987
|
586 |
msgid "Delete pages"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: ../includes/class-ure-lib.php:1988
|
590 |
msgid "Delete others pages"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: ../includes/class-ure-lib.php:1989
|
594 |
msgid "Delete published pages"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: ../includes/class-ure-lib.php:1990
|
598 |
msgid "Delete posts"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: ../includes/class-ure-lib.php:1991
|
602 |
msgid "Delete others posts"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:1992
|
606 |
msgid "Delete published posts"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: ../includes/class-ure-lib.php:1993
|
610 |
msgid "Delete private posts"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: ../includes/class-ure-lib.php:1994
|
614 |
msgid "Edit private posts"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: ../includes/class-ure-lib.php:1995
|
618 |
msgid "Read private posts"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: ../includes/class-ure-lib.php:1996
|
622 |
msgid "Delete private pages"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: ../includes/class-ure-lib.php:1997
|
626 |
msgid "Edit private pages"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: ../includes/class-ure-lib.php:1998
|
630 |
msgid "Read private pages"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: ../includes/class-ure-lib.php:1999
|
634 |
msgid "Delete users"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: ../includes/class-ure-lib.php:2000
|
638 |
msgid "Create users"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: ../includes/class-ure-lib.php:2001
|
642 |
msgid "Unfiltered upload"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: ../includes/class-ure-lib.php:2002
|
646 |
msgid "Edit dashboard"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: ../includes/class-ure-lib.php:2003
|
650 |
msgid "Update plugins"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: ../includes/class-ure-lib.php:2004
|
654 |
msgid "Delete plugins"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: ../includes/class-ure-lib.php:2005
|
658 |
msgid "Install plugins"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: ../includes/class-ure-lib.php:2006
|
662 |
msgid "Update themes"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: ../includes/class-ure-lib.php:2007
|
666 |
msgid "Install themes"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: ../includes/class-ure-lib.php:2008
|
670 |
msgid "Update core"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: ../includes/class-ure-lib.php:2009
|
674 |
msgid "List users"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: ../includes/class-ure-lib.php:2010
|
678 |
msgid "Remove users"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: ../includes/class-ure-lib.php:2011
|
682 |
msgid "Add users"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: ../includes/class-ure-lib.php:2012
|
686 |
msgid "Promote users"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: ../includes/class-ure-lib.php:2013
|
690 |
msgid "Edit theme options"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: ../includes/class-ure-lib.php:2014
|
694 |
msgid "Delete themes"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: ../includes/class-ure-lib.php:2015
|
698 |
msgid "Export"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: ../includes/class-ure-lib.php:2125
|
702 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: ../includes/class-ure-lib.php:2138
|
706 |
#, php-format
|
707 |
msgid "Capability %s is added successfully"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: ../includes/class-ure-lib.php:2140
|
711 |
#, php-format
|
712 |
msgid "Capability %s exists already"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: ../includes/class-ure-lib.php:2165
|
716 |
#, php-format
|
717 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: ../includes/class-ure-lib.php:2184
|
721 |
#, php-format
|
722 |
msgid "Capability %s is removed successfully"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: ../includes/class-ure-lib.php:2288
|
726 |
msgid "Version:"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: ../includes/class-ure-lib.php:2289
|
730 |
msgid "Author's website"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: ../includes/class-ure-lib.php:2290
|
734 |
msgid "Plugin webpage"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: ../includes/class-ure-lib.php:2291
|
738 |
msgid "Plugin download"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../includes/class-ure-lib.php:2293
|
742 |
msgid "FAQ"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../includes/class-ure-lib.php:2341
|
746 |
msgid "None"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: ../includes/class-ure-lib.php:2368
|
750 |
msgid "Delete All Unused Roles"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: ../includes/class-ure-lib.php:2392
|
754 |
msgid "— No role for this site —"
|
755 |
msgstr ""
|
756 |
|
796 |
"deprecated capabilities."
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: ../includes/class-ure-screen-help.php:41
|
800 |
+
msgid "select roles below"
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: ../includes/class-ure-screen-help.php:56
|
804 |
+
msgid "Other default roles for new registered user"
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
#: ../includes/class-ure-screen-help.php:57
|
808 |
+
msgid ""
|
809 |
+
"select roles below to assign them to the new user automatically as an "
|
810 |
+
"addition to the primary role. Note for multisite environment: take into "
|
811 |
+
"account that other default roles should exist at the site, in order to be "
|
812 |
+
"assigned to the new registered users."
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: ../includes/class-ure-screen-help.php:75
|
816 |
+
msgid "Allow non super-admininstrators to create, edit and delete users"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: ../includes/class-ure-screen-help.php:76
|
820 |
msgid ""
|
821 |
"Super administrator only may create, edit and delete users under WordPress "
|
822 |
+
"multi-site by default. Turn this option on in order to remove this "
|
823 |
+
"limitation."
|
824 |
msgstr ""
|
readme.txt
CHANGED
@@ -32,6 +32,7 @@ Pro version includes extra modules:
|
|
32 |
<li>Block selected widgets under "Appearance" menu for role.</li>
|
33 |
<li>"Export/Import" module. You can export user roles to the local file and import them then to any WordPress site or other sites of the multi-site WordPress network.</li>
|
34 |
<li>Roles and Users permissions management via Network Admin for multisite configuration. One click Synchronization to the whole network.</li>
|
|
|
35 |
<li>Per posts/pages users access management to post/page editing functionality.</li>
|
36 |
<li>Per plugin users access management for plugins activate/deactivate operations.</li>
|
37 |
<li>Per form users access management for Gravity Forms plugin.</li>
|
@@ -67,23 +68,36 @@ To read full FAQ section visit [this page](http://www.shinephp.com/user-role-edi
|
|
67 |
To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/user-role-editor-wordpress-plugin/) at [shinephp.com](shinephp.com).
|
68 |
|
69 |
= Translations =
|
70 |
-
* Catalan: [Efraim Bayarri](http://replicantsfactory.com/);
|
71 |
-
*
|
72 |
-
*
|
73 |
-
*
|
74 |
-
*
|
75 |
-
*
|
76 |
-
*
|
|
|
77 |
|
78 |
-
Information for translators: All translations (except Russian) are outdated and need update for new added text.
|
79 |
|
80 |
Dear plugin User!
|
81 |
-
If you wish to help me with this plugin translation I very appreciate it. Please send your language .po and .mo files to vladimir[at-sign]shinephp.com email. Do not forget include you site link in order
|
82 |
-
If you have better translation for some phrases, send it to me and it will be taken into consideration. You are welcome!
|
83 |
-
Share with me new ideas about plugin further development and link to your site will appear here.
|
84 |
|
85 |
|
86 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
= 4.16 =
|
88 |
* 11.09.2014
|
89 |
* "create_sites" user capability was added to the list of built-in WordPress user capabilities for WordPress multisite. It does not exist by default. But it is used to control "Add New" button at the "Sites" page under WordPress multisite network admin.
|
@@ -156,43 +170,6 @@ what user capability restrict access to what admin menu item.
|
|
156 |
* Pro version: Bug was fixed: Plugins activation assess restriction section was not shown for selected user under multi-site environment.
|
157 |
|
158 |
|
159 |
-
= 4.8 =
|
160 |
-
* 10.12.2013
|
161 |
-
* Role ID validation rule was added to prohibit numeric role ID - WordPress does not support them.
|
162 |
-
* Plugin "Options" page was divided into sections (tabs): General, Multisite, About. Section with information about plugin author, his site, etc. was moved from User Role Editor main page to its "Options" page - "About" tab.
|
163 |
-
* HTML markup was updated to provide compatibility with upcoming WordPress 3.8 new administrator backend theme "MP6".
|
164 |
-
* Restore previous blog 'switch_to_blog($old_blog_id)' call was replaced to 'restore_current_blog()' where it is possible to provide better compatibility with WordPress API.
|
165 |
-
After use 'switch_to_blog()' in cycle, URE clears '_wp_switched_stack' global variable directly instead of call 'restore_current_blog()' inside the cycle to work faster.
|
166 |
-
* Pro version: It is possible to restrict access of single sites administrators to the selected user capabilities and Add/Delete role operations inside User Role Editor.
|
167 |
-
* Pro version: Shortcode [user_role_editor roles="none"]text for not logged in users[/user_role_editor] is available. Recursive processing of other shortcodes inside enclosed text is available now.
|
168 |
-
* Pro version: Gravity Forms available at "Export Entries", "Export Forms" pages is under URE access restriction now, if such one was set for the user.
|
169 |
-
* Pro version: Gravity Forms import was set under "gravityforms_import" user capability control.
|
170 |
-
* Pro version: Option was added to show/hide help links (question signs) near the capabilities from single site administrators.
|
171 |
-
|
172 |
-
= 4.7 =
|
173 |
-
* 04.11.2013
|
174 |
-
* "Delete Role" menu has "Delete All Unused Roles" menu item now.
|
175 |
-
* More detailed warning was added before fulfill "Reset" roles command in order to reduce accident use of this critical operation.
|
176 |
-
* Bug was fixed at Ure_Lib::reset_user_roles() method. Method did not work correctly for the rest sites of the network except the main blog.
|
177 |
-
* Pro version: Post/Pages editing restriction could be setup for the user by one of two modes: 'Allow' or 'Prohibit'.
|
178 |
-
* Pro version: Shortcode [user_role_editor roles="role1, role2, ..."]bla-bla[/user_role_editor] for posts and pages was added.
|
179 |
-
You may restrict access to content inside this shortcode tags this way to the users only who have one of the roles noted at the "roles" attribute.
|
180 |
-
* Pro version: If license key was installed it is shown as asterisks at the input field.
|
181 |
-
* Pro version: In case site domain change you should input license key at the Settings page again.
|
182 |
-
|
183 |
-
= 4.6 =
|
184 |
-
* 21.10.2013
|
185 |
-
* Multi-site: 'unfiltered_html' capability marked as deprecated one. Read this post for more information (http://shinephp.com/is-unfiltered_html-capability-deprecated/).
|
186 |
-
* Multi-site: 'manage_network%' capabilities were included into WordPress core capabilities list.
|
187 |
-
* On screen help was added to the "User Role Editor Options" page - click "Help" at the top right corner to read it.
|
188 |
-
* Bug fix: turning off capability at the Administrator role fully removed that capability from capabilities list.
|
189 |
-
* Various internal code enhancements.
|
190 |
-
* Information about GPLv2 license was added to show apparently - "User Role Editor" is licensed under GPLv2 or later.
|
191 |
-
* Pro version only: Multi-site: Assign roles and capabilities to the users from one point at the Network Admin. Add user with his permissions together to all sites of your network with one click.
|
192 |
-
* Pro version only: 'wp-content/uploads' folder is used now instead of plugin's own one to process file with importing roles data.
|
193 |
-
* Pro version only: Bug fix: Nonexistent method was called to notify user about folder write permission error during roles import.
|
194 |
-
|
195 |
-
|
196 |
Click [here](http://role-editor.com/changelog)</a> to look at [the full list of changes](http://role-editor.com/changelog) of User Role Editor plugin.
|
197 |
|
198 |
|
32 |
<li>Block selected widgets under "Appearance" menu for role.</li>
|
33 |
<li>"Export/Import" module. You can export user roles to the local file and import them then to any WordPress site or other sites of the multi-site WordPress network.</li>
|
34 |
<li>Roles and Users permissions management via Network Admin for multisite configuration. One click Synchronization to the whole network.</li>
|
35 |
+
<li>"Other roles access" module allows to define which other roles user with current role may see at WordPress: dropdown menus, e.g assign role to user editing user profile, etc.</li>
|
36 |
<li>Per posts/pages users access management to post/page editing functionality.</li>
|
37 |
<li>Per plugin users access management for plugins activate/deactivate operations.</li>
|
38 |
<li>Per form users access management for Gravity Forms plugin.</li>
|
68 |
To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/user-role-editor-wordpress-plugin/) at [shinephp.com](shinephp.com).
|
69 |
|
70 |
= Translations =
|
71 |
+
* Catalan: [Efraim Bayarri](http://replicantsfactory.com/) - needs update;
|
72 |
+
* Dutch: Arjan Bosch;
|
73 |
+
* Hebrew: [atar4u](http://atar4u.com) - needs update;
|
74 |
+
* Hungarian: Németh Balázs;
|
75 |
+
* Persian: Morteza - needs update;
|
76 |
+
* Russian: [Vladimir Garagulya](https://www.role-editor.com)
|
77 |
+
* Spanish: [Dario Ferrer](http://darioferrer.com/) - needs update;
|
78 |
+
* Turkish: [Muhammed YILDIRIM](http://ben.muhammed.im) - needs update.
|
79 |
|
|
|
80 |
|
81 |
Dear plugin User!
|
82 |
+
If you wish to help me with this plugin translation I very appreciate it. Please send your language .po and .mo files to vladimir[at-sign]shinephp.com email. Do not forget include you site link in order to show it with greetings for the translation help in this readme.txt file.
|
83 |
+
Some translations may be outdated. If you have better translation for some phrases, send it to me and it will be taken into consideration. You are welcome!
|
|
|
84 |
|
85 |
|
86 |
== Changelog ==
|
87 |
+
= 4.17 =
|
88 |
+
* 01.10.2014
|
89 |
+
* Multisite (update for cases when URE was not network activated): It is possible to use own settings for single site activated instances of User Role Editor.
|
90 |
+
Earlier User Role Editor used the settings values from the main blog only located under "Network Admin - Settings".
|
91 |
+
Some critical options were hidden from the "Multisite" tab for single site administrators and visible to the superadmin only.
|
92 |
+
Single site admin should not have access to the options which purpose is to restrict him.
|
93 |
+
Important! In case you decide to allow single site administrator activate/deactivate User Role Editor himself, setup this PHP constant at the wp-config.php file:
|
94 |
+
define('URE_ENABLE_SIMPLE_ADMIN_FOR_MULTISITE', 1);
|
95 |
+
Otherwise single site admin will not see User Role Editor in the plugins list after its activation. User Role Editor hides itself under multisite from all users except superadmin by default.
|
96 |
+
* Help screen for the Settings page was updated.
|
97 |
+
* Hungarian translation was added. Thanks to Németh Balázs.
|
98 |
+
* Dutch translation was added. Thanks to Arjan Bosch.
|
99 |
+
|
100 |
+
|
101 |
= 4.16 =
|
102 |
* 11.09.2014
|
103 |
* "create_sites" user capability was added to the list of built-in WordPress user capabilities for WordPress multisite. It does not exist by default. But it is used to control "Add New" button at the "Sites" page under WordPress multisite network admin.
|
170 |
* Pro version: Bug was fixed: Plugins activation assess restriction section was not shown for selected user under multi-site environment.
|
171 |
|
172 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
Click [here](http://role-editor.com/changelog)</a> to look at [the full list of changes](http://role-editor.com/changelog) of User Role Editor plugin.
|
174 |
|
175 |
|
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,9 +23,10 @@ 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__));
|
30 |
define('URE_PLUGIN_FULL_PATH', __FILE__);
|
31 |
|
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.17
|
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.17');
|
27 |
define('URE_PLUGIN_URL', plugin_dir_url(__FILE__));
|
28 |
define('URE_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
29 |
+
define('URE_PLUGIN_BASE_NAME', plugin_basename(__FILE__));
|
30 |
define('URE_PLUGIN_FILE', basename(__FILE__));
|
31 |
define('URE_PLUGIN_FULL_PATH', __FILE__);
|
32 |
|