Version Description
- 21.10.2013
- Multi-site: 'unfiltered_html' capability marked as deprecated one. Read this post for more information (http://shinephp.com/is-unfiltered_html-capability-deprecated/).
- Multi-site: 'manage_network%' capabilities were included into WordPress core capabilities list.
- On screen help was added to the "User Role Editor Options" page - click "Help" at the top right corner to read it.
- Bug fix: turning off capability at the Administrator role fully removed that capability from capabilities list.
- Various internal code enhancements.
- Information about GPLv2 license was added to show apparently - "User Role Editor" is licensed under GPLv2 or later.
- 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.
- Pro version only: 'wp-content/uploads' folder is used now instead of plugin's own one to process file with importing roles data.
- Pro version only: Bug fix: Nonexistent method was called to notify user about folder write permission error during roles import.
Download this release
Release Info
Developer | shinephp |
Plugin | User Role Editor |
Version | 4.6 |
Comparing to | |
See all releases |
Code changes from version 4.5.2 to 4.6
- images/user-role-editor-page-icon.png +0 -0
- includes/class-garvs-wp-lib.php +39 -17
- includes/class-ure-lib.php +153 -85
- includes/class-ure-screen-help.php +56 -0
- includes/class-user-role-editor.php +84 -44
- includes/settings-template.php +44 -40
- includes/ure-role-edit.php +1 -1
- includes/ure-user-edit.php +5 -7
- lang/ure-ca.mo +0 -0
- lang/ure-ca.po +357 -283
- lang/ure-es_ES.mo +0 -0
- lang/ure-es_ES.po +339 -280
- lang/ure-ru_RU.mo +0 -0
- lang/ure-ru_RU.po +215 -151
- lang/ure-tr_TR.mo +0 -0
- lang/ure-tr_TR.po +324 -241
- lang/ure.mo +0 -0
- lang/ure.pot +206 -151
- license.txt +375 -0
- readme.txt +25 -12
- screenshot-4.png +0 -0
- user-role-editor.php +7 -2
images/user-role-editor-page-icon.png
ADDED
Binary file
|
includes/class-garvs-wp-lib.php
CHANGED
@@ -16,24 +16,47 @@ 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 |
-
|
|
|
|
|
20 |
public $log_to_file = false; // set to true in order to record data about critical actions to log file
|
21 |
private $log_file_name = ''; // file name to write log messages
|
22 |
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
// end of __construct()
|
35 |
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
/**
|
38 |
* get current options for this plugin
|
39 |
*/
|
@@ -41,6 +64,7 @@ class Garvs_WP_Lib {
|
|
41 |
$this->options_id = $options_id;
|
42 |
$this->options = get_option($options_id);
|
43 |
}
|
|
|
44 |
|
45 |
/**
|
46 |
* Return HTML formatted message
|
@@ -103,7 +127,7 @@ class Garvs_WP_Lib {
|
|
103 |
|
104 |
return $result;
|
105 |
}
|
106 |
-
// end of get_request_var
|
107 |
|
108 |
|
109 |
/**
|
@@ -188,6 +212,4 @@ class Garvs_WP_Lib {
|
|
188 |
|
189 |
//
|
190 |
}
|
191 |
-
// end of Garvs_WP_Lib class
|
192 |
-
|
193 |
-
?>
|
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
|
23 |
private $log_file_name = ''; // file name to write log messages
|
24 |
|
25 |
+
/**
|
26 |
+
* class constructor
|
27 |
+
* @param string $option_name identifire to save/retrieve plugin options to/from wp_option DB table
|
28 |
+
*/
|
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];
|
36 |
+
}
|
37 |
+
|
38 |
+
$this->init_options($options_id);
|
39 |
|
40 |
+
add_action('admin_notices', array(&$this, 'show_message'));
|
41 |
+
}
|
42 |
+
// end of __construct()
|
|
|
43 |
|
44 |
+
|
45 |
+
/**
|
46 |
+
* Returns the array of multisite WP blogs IDs
|
47 |
+
* @global wpdb $wpdb
|
48 |
+
* @return array
|
49 |
+
*/
|
50 |
+
protected function get_blog_ids() {
|
51 |
+
global $wpdb;
|
52 |
+
|
53 |
+
$blog_ids = $wpdb->get_col("select blog_id from $wpdb->blogs order by blog_id asc");
|
54 |
+
|
55 |
+
return $blog_ids;
|
56 |
+
}
|
57 |
+
// end of get_blog_ids()
|
58 |
+
|
59 |
+
|
60 |
/**
|
61 |
* get current options for this plugin
|
62 |
*/
|
64 |
$this->options_id = $options_id;
|
65 |
$this->options = get_option($options_id);
|
66 |
}
|
67 |
+
// end of init_options()
|
68 |
|
69 |
/**
|
70 |
* Return HTML formatted message
|
127 |
|
128 |
return $result;
|
129 |
}
|
130 |
+
// end of get_request_var()
|
131 |
|
132 |
|
133 |
/**
|
212 |
|
213 |
//
|
214 |
}
|
215 |
+
// end of Garvs_WP_Lib class
|
|
|
|
includes/class-ure-lib.php
CHANGED
@@ -16,8 +16,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
16 |
public $roles = null;
|
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 |
-
public $multisite = false;
|
21 |
|
22 |
protected $capabilities_to_save = null;
|
23 |
protected $current_role = '';
|
@@ -35,9 +34,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
35 |
protected $role_delete_html = '';
|
36 |
protected $capability_remove_html = '';
|
37 |
protected $integrate_with_gravity_forms = false;
|
38 |
-
protected $advert = null;
|
39 |
-
protected $main_blog_id = 0;
|
40 |
-
protected $hidden_built_in_wp_caps_quant = 0;
|
41 |
|
42 |
|
43 |
/** class constructor
|
@@ -45,25 +42,16 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
45 |
* @param string $option_name
|
46 |
*
|
47 |
*/
|
48 |
-
function __construct() {
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
$this->multisite = function_exists('is_multisite') && is_multisite();
|
53 |
-
if ($this->multisite) {
|
54 |
-
// get Id of 1st (main) blog
|
55 |
-
$this->main_blog_id = $wpdb->get_var("SELECT blog_id FROM $wpdb->blogs order by blog_id asc limit 0, 1");
|
56 |
-
}
|
57 |
-
|
58 |
-
$this->init_options('user_role_editor');
|
59 |
|
60 |
$this->integrate_with_gravity_forms = class_exists('GFForms');
|
61 |
-
|
62 |
-
|
63 |
|
64 |
}
|
65 |
// end of __construct()
|
66 |
-
|
67 |
|
68 |
/**
|
69 |
* get options for User Role Editor plugin
|
@@ -73,22 +61,22 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
73 |
protected function init_options($options_id) {
|
74 |
|
75 |
global $wpdb;
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
switch_to_blog($this->main_blog_id); // in order to get URE options from the main blog
|
80 |
}
|
81 |
|
82 |
$this->options_id = $options_id;
|
83 |
$this->options = get_option($options_id);
|
84 |
|
85 |
-
if ($this->multisite) {
|
86 |
// return back to the current blog
|
87 |
switch_to_blog($current_blog);
|
88 |
}
|
89 |
|
90 |
}
|
91 |
-
// end of init_options
|
92 |
|
93 |
|
94 |
/**
|
@@ -431,18 +419,18 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
431 |
} else {
|
432 |
$this->caps_readable = 1;
|
433 |
}
|
434 |
-
|
435 |
} else if ($action == 'show-deprecated-caps') {
|
436 |
if ($this->show_deprecated_caps) {
|
437 |
$this->show_deprecated_caps = 0;
|
438 |
} else {
|
439 |
$this->show_deprecated_caps = 1;
|
440 |
}
|
441 |
-
|
442 |
-
|
443 |
$this->hide_pro_banner = 1;
|
444 |
-
|
445 |
-
|
446 |
} else if ($action == 'add-new-capability') {
|
447 |
$this->notification = $this->add_new_capability();
|
448 |
} else if ($action == 'delete-user-capability') {
|
@@ -900,12 +888,13 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
900 |
$caps['export'] = 1;
|
901 |
$caps['delete_users'] = 1;
|
902 |
$caps['create_users'] = 1;
|
903 |
-
$
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
|
|
909 |
|
910 |
return $caps;
|
911 |
}
|
@@ -1006,6 +995,9 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1006 |
'level_9' => 0,
|
1007 |
'level_10' => 0,
|
1008 |
'edit_files' => 0);
|
|
|
|
|
|
|
1009 |
|
1010 |
return $dep_caps;
|
1011 |
}
|
@@ -1027,10 +1019,10 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1027 |
}
|
1028 |
|
1029 |
if ($core) {
|
1030 |
-
$quant = count($this->get_built_in_wp_caps())
|
1031 |
$deprecated_caps = $this->get_deprecated_caps();
|
1032 |
} else {
|
1033 |
-
$quant = count($this->full_capabilities) - count($this->get_built_in_wp_caps())
|
1034 |
$deprecated_caps = array();
|
1035 |
}
|
1036 |
$quant_in_column = (int) $quant / 3;
|
@@ -1092,7 +1084,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1092 |
} // if (empty($hidden_class
|
1093 |
}
|
1094 |
}
|
1095 |
-
// end of
|
1096 |
|
1097 |
|
1098 |
/**
|
@@ -1163,6 +1155,10 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1163 |
<hr />
|
1164 |
<div id="ure_update_user">
|
1165 |
<button id="ure_update_role" class="ure_toolbar_button button-primary">Update</button>
|
|
|
|
|
|
|
|
|
1166 |
</div>
|
1167 |
<?php
|
1168 |
}
|
@@ -1340,10 +1336,9 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1340 |
}
|
1341 |
}
|
1342 |
|
1343 |
-
$this->hidden_built_in_wp_caps_quant = 0;
|
1344 |
foreach ($this->built_in_wp_caps as $cap=>$val) {
|
1345 |
if (!isset($this->full_capabilities[$cap])) {
|
1346 |
-
$this->
|
1347 |
}
|
1348 |
}
|
1349 |
|
@@ -1414,10 +1409,23 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1414 |
// end of is_full_network_synch()
|
1415 |
|
1416 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1417 |
// Save Roles to database
|
1418 |
protected function save_roles() {
|
1419 |
global $wpdb;
|
1420 |
|
|
|
|
|
|
|
1421 |
if (!isset($this->roles[$this->current_role])) {
|
1422 |
return false;
|
1423 |
}
|
@@ -1435,20 +1443,23 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1435 |
* Update roles for all network using direct database access - quicker in several times
|
1436 |
*
|
1437 |
* @global wpdb $wpdb
|
1438 |
-
* @param type $blog_ids
|
1439 |
* @return boolean
|
1440 |
*/
|
1441 |
-
function direct_network_roles_update(
|
1442 |
global $wpdb;
|
1443 |
|
|
|
|
|
|
|
1444 |
if (!empty($this->current_role)) {
|
1445 |
if (!isset($this->roles[$this->current_role])) {
|
1446 |
$this->roles[$this->current_role]['name'] = $this->current_role_name;
|
1447 |
}
|
1448 |
$this->roles[$this->current_role]['capabilities'] = $this->capabilities_to_save;
|
1449 |
-
}
|
|
|
1450 |
$serialized_roles = serialize($this->roles);
|
1451 |
-
foreach ($blog_ids as $blog_id) {
|
1452 |
$prefix = $wpdb->get_blog_prefix($blog_id);
|
1453 |
$options_table_name = $prefix . 'options';
|
1454 |
$option_name = $prefix . 'user_roles';
|
@@ -1462,9 +1473,35 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1462 |
return false;
|
1463 |
}
|
1464 |
}
|
|
|
|
|
1465 |
}
|
1466 |
// end of direct_network_roles_update()
|
1467 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1468 |
|
1469 |
/**
|
1470 |
* Update role for all network using WordPress API
|
@@ -1472,42 +1509,22 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1472 |
* @return boolean
|
1473 |
*/
|
1474 |
protected function multisite_update_roles() {
|
1475 |
-
|
1476 |
-
global $wpdb;
|
1477 |
|
1478 |
if (defined('URE_DEBUG') && URE_DEBUG) {
|
1479 |
$time_shot = microtime();
|
1480 |
}
|
1481 |
-
|
1482 |
-
$old_blog = $wpdb->blogid;
|
1483 |
-
// Get all blog ids
|
1484 |
-
$blogIds = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs");
|
1485 |
if ($this->is_full_network_synch()) {
|
1486 |
-
$this->direct_network_roles_update(
|
1487 |
} else {
|
1488 |
-
|
1489 |
-
switch_to_blog($blog_id);
|
1490 |
-
$this->roles = $this->get_user_roles();
|
1491 |
-
if (!$this->roles) {
|
1492 |
-
echo '<div class="error fade below-h2">' . URE_ERROR . '</div>';
|
1493 |
-
switch_to_blog($old_blog);
|
1494 |
-
$this->roles = $this->get_user_roles();
|
1495 |
-
return false;
|
1496 |
-
}
|
1497 |
-
if (!isset($this->roles[$this->current_role])) { // add new role to this blog
|
1498 |
-
$this->roles[$this->current_role] = array('name' => $this->current_role_name, 'capabilities' => array('read' => 1));
|
1499 |
-
}
|
1500 |
-
$this->save_roles();
|
1501 |
-
}
|
1502 |
-
switch_to_blog($old_blog);
|
1503 |
-
$this->roles = $this->get_user_roles();
|
1504 |
}
|
1505 |
|
1506 |
if (defined('URE_DEBUG') && URE_DEBUG) {
|
1507 |
echo '<div class="updated fade below-h2">Roles updated for ' . ( microtime() - $time_shot ) . ' milliseconds</div>';
|
1508 |
}
|
1509 |
|
1510 |
-
return
|
1511 |
}
|
1512 |
// end of multisite_update_roles()
|
1513 |
|
@@ -1766,6 +1783,25 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1766 |
// end of ure_TranslationData()
|
1767 |
|
1768 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1769 |
/**
|
1770 |
* Update user roles and capabilities
|
1771 |
*
|
@@ -1775,10 +1811,15 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1775 |
*/
|
1776 |
protected function update_user($user) {
|
1777 |
global $wp_roles;
|
1778 |
-
|
1779 |
-
|
1780 |
-
|
1781 |
-
|
|
|
|
|
|
|
|
|
|
|
1782 |
$primary_role = '';
|
1783 |
}
|
1784 |
if (function_exists('bbp_filter_blog_editable_roles')) { // bbPress plugin is active
|
@@ -1819,10 +1860,16 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1819 |
}
|
1820 |
}
|
1821 |
$user->update_user_level_from_caps();
|
1822 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1823 |
return true;
|
1824 |
}
|
1825 |
-
// end of
|
1826 |
|
1827 |
|
1828 |
/**
|
@@ -2078,6 +2125,27 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2078 |
// end of role_edit_prepare_html()
|
2079 |
|
2080 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2081 |
// returns true if $user has $capability assigned through the roles or directly
|
2082 |
// returns true if user has role with name equal $capability
|
2083 |
protected function user_can($capability) {
|
@@ -2101,29 +2169,29 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2101 |
|
2102 |
// returns true if current user has $capability assigned through the roles or directly
|
2103 |
// returns true if current user has role with name equal $capability
|
2104 |
-
public function user_has_capability($user, $cap) {
|
2105 |
-
|
2106 |
global $wp_roles;
|
2107 |
-
|
2108 |
-
|
2109 |
-
|
2110 |
-
|
2111 |
-
|
2112 |
if (isset($user->caps[$cap])) {
|
2113 |
return true;
|
2114 |
}
|
2115 |
foreach ($user->roles as $role) {
|
2116 |
-
if ($role
|
2117 |
return true;
|
2118 |
}
|
2119 |
if (!empty($wp_roles->roles[$role]['capabilities'][$cap])) {
|
2120 |
return true;
|
2121 |
}
|
2122 |
}
|
2123 |
-
|
2124 |
-
return false;
|
2125 |
}
|
2126 |
// end of user_has_capability()
|
2127 |
-
|
2128 |
}
|
2129 |
// end of URE_Lib class
|
16 |
public $roles = null;
|
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 = '';
|
34 |
protected $role_delete_html = '';
|
35 |
protected $capability_remove_html = '';
|
36 |
protected $integrate_with_gravity_forms = false;
|
37 |
+
protected $advert = null;
|
|
|
|
|
38 |
|
39 |
|
40 |
/** class constructor
|
42 |
* @param string $option_name
|
43 |
*
|
44 |
*/
|
45 |
+
public function __construct($options_id) {
|
46 |
+
|
47 |
+
parent::__construct($options_id);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
$this->integrate_with_gravity_forms = class_exists('GFForms');
|
50 |
+
|
|
|
51 |
|
52 |
}
|
53 |
// end of __construct()
|
54 |
+
|
55 |
|
56 |
/**
|
57 |
* get options for User Role Editor plugin
|
61 |
protected function init_options($options_id) {
|
62 |
|
63 |
global $wpdb;
|
64 |
+
|
65 |
+
$current_blog = $wpdb->blogid;
|
66 |
+
if ($this->multisite && $current_blog!=$this->main_blog_id) {
|
67 |
switch_to_blog($this->main_blog_id); // in order to get URE options from the main blog
|
68 |
}
|
69 |
|
70 |
$this->options_id = $options_id;
|
71 |
$this->options = get_option($options_id);
|
72 |
|
73 |
+
if ($this->multisite && $current_blog!=$this->main_blog_id) {
|
74 |
// return back to the current blog
|
75 |
switch_to_blog($current_blog);
|
76 |
}
|
77 |
|
78 |
}
|
79 |
+
// end of init_options()
|
80 |
|
81 |
|
82 |
/**
|
419 |
} else {
|
420 |
$this->caps_readable = 1;
|
421 |
}
|
422 |
+
set_site_transient( 'ure_caps_readable', $this->caps_readable, 600 );
|
423 |
} else if ($action == 'show-deprecated-caps') {
|
424 |
if ($this->show_deprecated_caps) {
|
425 |
$this->show_deprecated_caps = 0;
|
426 |
} else {
|
427 |
$this->show_deprecated_caps = 1;
|
428 |
}
|
429 |
+
set_site_transient( 'ure_show_deprecated_caps', $this->show_deprecated_caps, 600 );
|
430 |
+
} else if ($action == 'hide-pro-banner') {
|
431 |
$this->hide_pro_banner = 1;
|
432 |
+
$this->put_option('ure_hide_pro_banner', 1);
|
433 |
+
$this->flush_options();
|
434 |
} else if ($action == 'add-new-capability') {
|
435 |
$this->notification = $this->add_new_capability();
|
436 |
} else if ($action == 'delete-user-capability') {
|
888 |
$caps['export'] = 1;
|
889 |
$caps['delete_users'] = 1;
|
890 |
$caps['create_users'] = 1;
|
891 |
+
if ($this->multisite) {
|
892 |
+
$caps['manage_network'] = 1;
|
893 |
+
$caps['manage_network_users'] = 1;
|
894 |
+
$caps['manage_network_themes'] = 1;
|
895 |
+
$caps['manage_network_plugins'] = 1;
|
896 |
+
$caps['manage_network_options'] = 1;
|
897 |
+
}
|
898 |
|
899 |
return $caps;
|
900 |
}
|
995 |
'level_9' => 0,
|
996 |
'level_10' => 0,
|
997 |
'edit_files' => 0);
|
998 |
+
if ($this->multisite) {
|
999 |
+
$dep_caps['unfiltered_html'] = 0;
|
1000 |
+
}
|
1001 |
|
1002 |
return $dep_caps;
|
1003 |
}
|
1019 |
}
|
1020 |
|
1021 |
if ($core) {
|
1022 |
+
$quant = count($this->get_built_in_wp_caps());
|
1023 |
$deprecated_caps = $this->get_deprecated_caps();
|
1024 |
} else {
|
1025 |
+
$quant = count($this->full_capabilities) - count($this->get_built_in_wp_caps());
|
1026 |
$deprecated_caps = array();
|
1027 |
}
|
1028 |
$quant_in_column = (int) $quant / 3;
|
1084 |
} // if (empty($hidden_class
|
1085 |
}
|
1086 |
}
|
1087 |
+
// end of show_capabilities()
|
1088 |
|
1089 |
|
1090 |
/**
|
1155 |
<hr />
|
1156 |
<div id="ure_update_user">
|
1157 |
<button id="ure_update_role" class="ure_toolbar_button button-primary">Update</button>
|
1158 |
+
<?php
|
1159 |
+
do_action('ure_user_edit_toolbar_update');
|
1160 |
+
?>
|
1161 |
+
|
1162 |
</div>
|
1163 |
<?php
|
1164 |
}
|
1336 |
}
|
1337 |
}
|
1338 |
|
|
|
1339 |
foreach ($this->built_in_wp_caps as $cap=>$val) {
|
1340 |
if (!isset($this->full_capabilities[$cap])) {
|
1341 |
+
$this->add_capability_to_full_caps_list($cap);
|
1342 |
}
|
1343 |
}
|
1344 |
|
1409 |
// end of is_full_network_synch()
|
1410 |
|
1411 |
|
1412 |
+
protected function last_check_before_update() {
|
1413 |
+
if (empty($this->roles) || !is_array($this->roles) || count($this->roles)==0) { // Nothing to save - something goes wrong - stop ...
|
1414 |
+
return false;
|
1415 |
+
}
|
1416 |
+
|
1417 |
+
return true;
|
1418 |
+
}
|
1419 |
+
// end of last_check_before_update()
|
1420 |
+
|
1421 |
+
|
1422 |
// Save Roles to database
|
1423 |
protected function save_roles() {
|
1424 |
global $wpdb;
|
1425 |
|
1426 |
+
if (!$this->last_check_before_update()) {
|
1427 |
+
return false;
|
1428 |
+
}
|
1429 |
if (!isset($this->roles[$this->current_role])) {
|
1430 |
return false;
|
1431 |
}
|
1443 |
* Update roles for all network using direct database access - quicker in several times
|
1444 |
*
|
1445 |
* @global wpdb $wpdb
|
|
|
1446 |
* @return boolean
|
1447 |
*/
|
1448 |
+
function direct_network_roles_update() {
|
1449 |
global $wpdb;
|
1450 |
|
1451 |
+
if (!$this->last_check_before_update()) {
|
1452 |
+
return false;
|
1453 |
+
}
|
1454 |
if (!empty($this->current_role)) {
|
1455 |
if (!isset($this->roles[$this->current_role])) {
|
1456 |
$this->roles[$this->current_role]['name'] = $this->current_role_name;
|
1457 |
}
|
1458 |
$this->roles[$this->current_role]['capabilities'] = $this->capabilities_to_save;
|
1459 |
+
}
|
1460 |
+
|
1461 |
$serialized_roles = serialize($this->roles);
|
1462 |
+
foreach ($this->blog_ids as $blog_id) {
|
1463 |
$prefix = $wpdb->get_blog_prefix($blog_id);
|
1464 |
$options_table_name = $prefix . 'options';
|
1465 |
$option_name = $prefix . 'user_roles';
|
1473 |
return false;
|
1474 |
}
|
1475 |
}
|
1476 |
+
|
1477 |
+
return true;
|
1478 |
}
|
1479 |
// end of direct_network_roles_update()
|
1480 |
|
1481 |
+
|
1482 |
+
protected function wp_api_network_roles_update() {
|
1483 |
+
global $wpdb;
|
1484 |
+
|
1485 |
+
$result = true;
|
1486 |
+
$old_blog = $wpdb->blogid;
|
1487 |
+
foreach ($this->blog_ids as $blog_id) {
|
1488 |
+
switch_to_blog($blog_id);
|
1489 |
+
$this->roles = $this->get_user_roles();
|
1490 |
+
if (!isset($this->roles[$this->current_role])) { // add new role to this blog
|
1491 |
+
$this->roles[$this->current_role] = array('name' => $this->current_role_name, 'capabilities' => array('read' => 1));
|
1492 |
+
}
|
1493 |
+
if (!$this->save_roles()) {
|
1494 |
+
$result = false;
|
1495 |
+
break;
|
1496 |
+
}
|
1497 |
+
}
|
1498 |
+
switch_to_blog($old_blog);
|
1499 |
+
$this->roles = $this->get_user_roles();
|
1500 |
+
|
1501 |
+
return $result;
|
1502 |
+
}
|
1503 |
+
// end of wp_api_network_roles_update()
|
1504 |
+
|
1505 |
|
1506 |
/**
|
1507 |
* Update role for all network using WordPress API
|
1509 |
* @return boolean
|
1510 |
*/
|
1511 |
protected function multisite_update_roles() {
|
|
|
|
|
1512 |
|
1513 |
if (defined('URE_DEBUG') && URE_DEBUG) {
|
1514 |
$time_shot = microtime();
|
1515 |
}
|
1516 |
+
|
|
|
|
|
|
|
1517 |
if ($this->is_full_network_synch()) {
|
1518 |
+
$result = $this->direct_network_roles_update();
|
1519 |
} else {
|
1520 |
+
$result = $this->wp_api_network_roles_update();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1521 |
}
|
1522 |
|
1523 |
if (defined('URE_DEBUG') && URE_DEBUG) {
|
1524 |
echo '<div class="updated fade below-h2">Roles updated for ' . ( microtime() - $time_shot ) . ' milliseconds</div>';
|
1525 |
}
|
1526 |
|
1527 |
+
return $result;
|
1528 |
}
|
1529 |
// end of multisite_update_roles()
|
1530 |
|
1783 |
// end of ure_TranslationData()
|
1784 |
|
1785 |
|
1786 |
+
/**
|
1787 |
+
* placeholder - realized at the Pro version
|
1788 |
+
*/
|
1789 |
+
protected function check_blog_user($user) {
|
1790 |
+
|
1791 |
+
return true;
|
1792 |
+
}
|
1793 |
+
// end of check_blog_user()
|
1794 |
+
|
1795 |
+
/**
|
1796 |
+
* placeholder - realized at the Pro version
|
1797 |
+
*/
|
1798 |
+
protected function network_update_user($user) {
|
1799 |
+
|
1800 |
+
return true;
|
1801 |
+
}
|
1802 |
+
// end of network_update_user()
|
1803 |
+
|
1804 |
+
|
1805 |
/**
|
1806 |
* Update user roles and capabilities
|
1807 |
*
|
1811 |
*/
|
1812 |
protected function update_user($user) {
|
1813 |
global $wp_roles;
|
1814 |
+
|
1815 |
+
if ($this->multisite) {
|
1816 |
+
if (!$this->check_blog_user($user)) {
|
1817 |
+
return false;
|
1818 |
+
}
|
1819 |
+
}
|
1820 |
+
|
1821 |
+
$primary_role = $_POST['primary_role'];
|
1822 |
+
if (empty($primary_role) || !isset($wp_roles->roles[$primary_role])) {
|
1823 |
$primary_role = '';
|
1824 |
}
|
1825 |
if (function_exists('bbp_filter_blog_editable_roles')) { // bbPress plugin is active
|
1860 |
}
|
1861 |
}
|
1862 |
$user->update_user_level_from_caps();
|
1863 |
+
|
1864 |
+
if ($this->apply_to_all) { // apply update to the all network
|
1865 |
+
if (!$this->network_update_user($user)) {
|
1866 |
+
return false;
|
1867 |
+
}
|
1868 |
+
}
|
1869 |
+
|
1870 |
return true;
|
1871 |
}
|
1872 |
+
// end of update_user()
|
1873 |
|
1874 |
|
1875 |
/**
|
2125 |
// end of role_edit_prepare_html()
|
2126 |
|
2127 |
|
2128 |
+
public function user_primary_role_dropdown_list($user_roles) {
|
2129 |
+
?>
|
2130 |
+
<select name="primary_role" id="primary_role">
|
2131 |
+
<?php
|
2132 |
+
// Compare user role against currently editable roles
|
2133 |
+
$user_roles = array_intersect( array_values( $user_roles ), array_keys( get_editable_roles() ) );
|
2134 |
+
$user_primary_role = array_shift( $user_roles );
|
2135 |
+
|
2136 |
+
// print the full list of roles with the primary one selected.
|
2137 |
+
wp_dropdown_roles($user_primary_role);
|
2138 |
+
|
2139 |
+
// print the 'no role' option. Make it selected if the user has no role yet.
|
2140 |
+
$selected = ( empty($user_primary_role) ) ? 'selected="selected"' : '';
|
2141 |
+
echo '<option value="" '. $selected.'>' . __('— No role for this site —') . '</option>';
|
2142 |
+
?>
|
2143 |
+
</select>
|
2144 |
+
<?php
|
2145 |
+
}
|
2146 |
+
// end of user_primary_role_dropdown_list()
|
2147 |
+
|
2148 |
+
|
2149 |
// returns true if $user has $capability assigned through the roles or directly
|
2150 |
// returns true if user has role with name equal $capability
|
2151 |
protected function user_can($capability) {
|
2169 |
|
2170 |
// returns true if current user has $capability assigned through the roles or directly
|
2171 |
// returns true if current user has role with name equal $capability
|
2172 |
+
public function user_has_capability($user, $cap) {
|
2173 |
+
|
2174 |
global $wp_roles;
|
2175 |
+
|
2176 |
+
if (is_multisite() && is_super_admin()) {
|
2177 |
+
return true;
|
2178 |
+
}
|
2179 |
+
|
2180 |
if (isset($user->caps[$cap])) {
|
2181 |
return true;
|
2182 |
}
|
2183 |
foreach ($user->roles as $role) {
|
2184 |
+
if ($role === $cap) {
|
2185 |
return true;
|
2186 |
}
|
2187 |
if (!empty($wp_roles->roles[$role]['capabilities'][$cap])) {
|
2188 |
return true;
|
2189 |
}
|
2190 |
}
|
2191 |
+
|
2192 |
+
return false;
|
2193 |
}
|
2194 |
// end of user_has_capability()
|
2195 |
+
|
2196 |
}
|
2197 |
// end of URE_Lib class
|
includes/class-ure-screen-help.php
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*
|
4 |
+
* User Role Editor On Screen Help class
|
5 |
+
*
|
6 |
+
*/
|
7 |
+
|
8 |
+
class URE_Screen_Help {
|
9 |
+
|
10 |
+
protected function get_settings_overview_tab_help() {
|
11 |
+
|
12 |
+
$text = '<h2>User Role Editor Options page help</h2>
|
13 |
+
<p>
|
14 |
+
<ul>
|
15 |
+
<li><strong>' . esc_html__('Show Administrator role at User Role Editor', 'ure').'</strong> - ' .
|
16 |
+
esc_html__('turn this option on in order to make the "Administrator" role available at the User Role Editor '
|
17 |
+
. 'roles selection drop-down list. It is hidden by default for security reasons.','ure') . '</li>
|
18 |
+
<li><strong>' . esc_html__('Show capabilities in the human readable form','ure').'</strong> - ' .
|
19 |
+
esc_html__('automatically converts capability names from the technical form for internal use like '
|
20 |
+
. '"edit_others_posts" to more user friendly form, e.g. "Edit others posts".','ure') . '</li>
|
21 |
+
<li><strong>' . esc_html__('Show deprecated capabilities','ure').'</strong> - '.
|
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 |
+
if (is_multisite()) {
|
26 |
+
$text .='
|
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 get_settings_overview_tab_help()
|
39 |
+
|
40 |
+
|
41 |
+
public function get_settings_help($tab_name) {
|
42 |
+
switch ($tab_name) {
|
43 |
+
case 'overview':{
|
44 |
+
$text = $this->get_settings_overview_tab_help();
|
45 |
+
break;
|
46 |
+
}
|
47 |
+
default:
|
48 |
+
}
|
49 |
+
|
50 |
+
return $text;
|
51 |
+
}
|
52 |
+
// end of get_settings_help()
|
53 |
+
|
54 |
+
|
55 |
+
}
|
56 |
+
// end of URE_Screen_Help
|
includes/class-user-role-editor.php
CHANGED
@@ -9,10 +9,12 @@
|
|
9 |
*/
|
10 |
|
11 |
class User_Role_Editor {
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
|
|
|
|
16 |
|
17 |
/**
|
18 |
* class constructor
|
@@ -423,37 +425,77 @@ class User_Role_Editor {
|
|
423 |
|
424 |
// end of plugin_row_meta
|
425 |
|
426 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
427 |
public function plugin_menu() {
|
428 |
|
|
|
429 |
if (function_exists('add_submenu_page')) {
|
430 |
-
$ure_page = add_submenu_page(
|
431 |
-
|
|
|
|
|
|
|
|
|
|
|
432 |
add_action("admin_print_styles-$ure_page", array(&$this, 'admin_css_action'));
|
433 |
}
|
434 |
|
435 |
if (!$this->lib->multisite) {
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
|
|
|
|
|
|
|
|
440 |
}
|
441 |
}
|
442 |
// end of plugin_menu()
|
443 |
|
444 |
-
|
445 |
-
public function network_plugin_menu() {
|
446 |
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
455 |
|
456 |
-
|
|
|
|
|
|
|
457 |
if (isset($_POST['user_role_editor_settings_update'])) { // process update from the options form
|
458 |
$nonce = $_POST['_wpnonce'];
|
459 |
if (!wp_verify_nonce($nonce, 'user-role-editor')) {
|
@@ -466,25 +508,24 @@ class User_Role_Editor {
|
|
466 |
$show_admin_role = $this->lib->get_request_var('show_admin_role', 'checkbox');
|
467 |
}
|
468 |
$this->lib->put_option('show_admin_role', $show_admin_role);
|
469 |
-
|
470 |
$caps_readable = $this->lib->get_request_var('caps_readable', 'checkbox');
|
471 |
$this->lib->put_option('ure_caps_readable', $caps_readable);
|
472 |
-
|
473 |
$show_deprecated_caps = $this->lib->get_request_var('show_deprecated_caps', 'checkbox');
|
474 |
$this->lib->put_option('ure_show_deprecated_caps', $show_deprecated_caps);
|
475 |
-
|
476 |
if ($this->lib->multisite) {
|
477 |
$allow_edit_users_to_not_super_admin = $this->lib->get_request_var('allow_edit_users_to_not_super_admin', 'checkbox');
|
478 |
$this->lib->put_option('allow_edit_users_to_not_super_admin', $allow_edit_users_to_not_super_admin);
|
479 |
}
|
480 |
-
|
481 |
do_action('ure_settings_update');
|
482 |
-
|
483 |
-
$this->lib->flush_options();
|
484 |
$this->lib->show_message(__('User Role Editor options are updated', 'ure'));
|
485 |
} else { // get options from the options storage
|
486 |
-
|
487 |
-
if (defined('URE_SHOW_ADMIN_ROLE') && (URE_SHOW_ADMIN_ROLE==1) ) {
|
488 |
$show_admin_role = 1;
|
489 |
} else {
|
490 |
$show_admin_role = $this->lib->get_option('show_admin_role', 0);
|
@@ -503,7 +544,6 @@ class User_Role_Editor {
|
|
503 |
$link = 'options-general.php';
|
504 |
}
|
505 |
require_once(URE_PLUGIN_DIR . 'includes/settings-template.php');
|
506 |
-
|
507 |
}
|
508 |
// end of settings()
|
509 |
|
@@ -611,13 +651,20 @@ class User_Role_Editor {
|
|
611 |
// end of admin_load_js()
|
612 |
|
613 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
614 |
|
615 |
public function edit_user_profile($user) {
|
616 |
|
617 |
-
global $current_user
|
618 |
-
|
619 |
-
|
620 |
-
if ($result !== false) { // exit, this code just for single site user profile only, not for network admin center
|
621 |
return;
|
622 |
}
|
623 |
if (!$this->lib->user_is_admin($current_user->ID)) {
|
@@ -643,17 +690,10 @@ class User_Role_Editor {
|
|
643 |
</tr>
|
644 |
</table>
|
645 |
<?php
|
646 |
-
/*
|
647 |
-
<script type="text/javascript">
|
648 |
-
jQuery('#role').attr('disabled', 'disabled');
|
649 |
-
</script>
|
650 |
-
*/
|
651 |
-
?>
|
652 |
-
<?php
|
653 |
}
|
|
|
654 |
|
655 |
-
|
656 |
-
|
657 |
/**
|
658 |
* add 'Other Roles' column to WordPress users list table
|
659 |
*
|
9 |
*/
|
10 |
|
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
|
17 |
+
public $key_capability = 'not allowed';
|
18 |
|
19 |
/**
|
20 |
* class constructor
|
425 |
|
426 |
// end of plugin_row_meta
|
427 |
|
428 |
+
|
429 |
+
public function settings_screen_configure() {
|
430 |
+
$settings_page_hook = $this->settings_page_hook;
|
431 |
+
if (is_multisite()) {
|
432 |
+
$settings_page_hook .= '-network';
|
433 |
+
}
|
434 |
+
$screen = get_current_screen();
|
435 |
+
// Check if current screen is URE's settings page
|
436 |
+
if ($screen->id != $settings_page_hook) {
|
437 |
+
return;
|
438 |
+
}
|
439 |
+
$screen_help = new Ure_Screen_Help();
|
440 |
+
$screen->add_help_tab( array(
|
441 |
+
'id' => 'overview',
|
442 |
+
'title' => __('Overview'),
|
443 |
+
'content' => $screen_help->get_settings_help('overview')
|
444 |
+
));
|
445 |
+
}
|
446 |
+
// end of settings_screen_configure()
|
447 |
+
|
448 |
+
|
449 |
public function plugin_menu() {
|
450 |
|
451 |
+
$translated_title = esc_html__('User Role Editor', 'ure');
|
452 |
if (function_exists('add_submenu_page')) {
|
453 |
+
$ure_page = add_submenu_page(
|
454 |
+
'users.php',
|
455 |
+
$translated_title,
|
456 |
+
$translated_title,
|
457 |
+
$this->key_capability,
|
458 |
+
'users-' . URE_PLUGIN_FILE,
|
459 |
+
array(&$this, 'edit_roles'));
|
460 |
add_action("admin_print_styles-$ure_page", array(&$this, 'admin_css_action'));
|
461 |
}
|
462 |
|
463 |
if (!$this->lib->multisite) {
|
464 |
+
$this->settings_page_hook = add_options_page(
|
465 |
+
$translated_title,
|
466 |
+
$translated_title,
|
467 |
+
$this->key_capability,
|
468 |
+
'settings-' . URE_PLUGIN_FILE,
|
469 |
+
array(&$this, 'settings'));
|
470 |
+
add_action( 'load-'.$this->settings_page_hook, array($this,'settings_screen_configure') );
|
471 |
+
|
472 |
}
|
473 |
}
|
474 |
// end of plugin_menu()
|
475 |
|
|
|
|
|
476 |
|
477 |
+
public function network_plugin_menu() {
|
478 |
+
if (is_multisite()) {
|
479 |
+
$translated_title = esc_html__('User Role Editor', 'ure');
|
480 |
+
$this->settings_page_hook = add_submenu_page(
|
481 |
+
'settings.php',
|
482 |
+
$translated_title,
|
483 |
+
$translated_title,
|
484 |
+
$this->key_capability,
|
485 |
+
'settings-' . URE_PLUGIN_FILE,
|
486 |
+
array(&$this, 'settings'));
|
487 |
+
add_action( 'load-'.$this->settings_page_hook, array($this,'settings_screen_configure') );
|
488 |
+
}
|
489 |
+
|
490 |
+
}
|
491 |
+
|
492 |
+
// end of network_plugin_menu()
|
493 |
+
|
494 |
|
495 |
+
public function settings() {
|
496 |
+
if (!current_user_can($this->key_capability)) {
|
497 |
+
__( 'You do not have sufficient permissions to manage options for User Role Editor.' );
|
498 |
+
}
|
499 |
if (isset($_POST['user_role_editor_settings_update'])) { // process update from the options form
|
500 |
$nonce = $_POST['_wpnonce'];
|
501 |
if (!wp_verify_nonce($nonce, 'user-role-editor')) {
|
508 |
$show_admin_role = $this->lib->get_request_var('show_admin_role', 'checkbox');
|
509 |
}
|
510 |
$this->lib->put_option('show_admin_role', $show_admin_role);
|
511 |
+
|
512 |
$caps_readable = $this->lib->get_request_var('caps_readable', 'checkbox');
|
513 |
$this->lib->put_option('ure_caps_readable', $caps_readable);
|
514 |
+
|
515 |
$show_deprecated_caps = $this->lib->get_request_var('show_deprecated_caps', 'checkbox');
|
516 |
$this->lib->put_option('ure_show_deprecated_caps', $show_deprecated_caps);
|
517 |
+
|
518 |
if ($this->lib->multisite) {
|
519 |
$allow_edit_users_to_not_super_admin = $this->lib->get_request_var('allow_edit_users_to_not_super_admin', 'checkbox');
|
520 |
$this->lib->put_option('allow_edit_users_to_not_super_admin', $allow_edit_users_to_not_super_admin);
|
521 |
}
|
522 |
+
|
523 |
do_action('ure_settings_update');
|
524 |
+
|
525 |
+
$this->lib->flush_options();
|
526 |
$this->lib->show_message(__('User Role Editor options are updated', 'ure'));
|
527 |
} else { // get options from the options storage
|
528 |
+
if (defined('URE_SHOW_ADMIN_ROLE') && (URE_SHOW_ADMIN_ROLE == 1)) {
|
|
|
529 |
$show_admin_role = 1;
|
530 |
} else {
|
531 |
$show_admin_role = $this->lib->get_option('show_admin_role', 0);
|
544 |
$link = 'options-general.php';
|
545 |
}
|
546 |
require_once(URE_PLUGIN_DIR . 'includes/settings-template.php');
|
|
|
547 |
}
|
548 |
// end of settings()
|
549 |
|
651 |
// end of admin_load_js()
|
652 |
|
653 |
|
654 |
+
protected function is_user_profile_extention_allowed() {
|
655 |
+
// Check if we are not at the network admin center
|
656 |
+
$result = stripos($_SERVER['REQUEST_URI'], 'network/user-edit.php') == false;
|
657 |
+
|
658 |
+
return $result;
|
659 |
+
}
|
660 |
+
// end of is_user_profile_extention_allowed()
|
661 |
+
|
662 |
|
663 |
public function edit_user_profile($user) {
|
664 |
|
665 |
+
global $current_user;
|
666 |
+
|
667 |
+
if (!$this->is_user_profile_extention_allowed()) {
|
|
|
668 |
return;
|
669 |
}
|
670 |
if (!$this->lib->user_is_admin($current_user->ID)) {
|
690 |
</tr>
|
691 |
</table>
|
692 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
693 |
}
|
694 |
+
// end of edit_user_profile()
|
695 |
|
696 |
+
|
|
|
697 |
/**
|
698 |
* add 'Other Roles' column to WordPress users list table
|
699 |
*
|
includes/settings-template.php
CHANGED
@@ -11,55 +11,59 @@
|
|
11 |
|
12 |
?>
|
13 |
<div class="wrap">
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
|
|
|
|
41 |
<?php
|
42 |
if ($this->lib->multisite) {
|
43 |
?>
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
|
|
52 |
<?php
|
53 |
}
|
54 |
|
55 |
do_action('ure_settings_show');
|
56 |
?>
|
57 |
-
|
58 |
<?php wp_nonce_field('user-role-editor'); ?>
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
|
63 |
-
|
|
|
64 |
</div>
|
65 |
|
11 |
|
12 |
?>
|
13 |
<div class="wrap">
|
14 |
+
<div id="ure-settings-header">
|
15 |
+
<div id="icon-ure-options" style="float: left; margin-right: 20px;"><img src="<?php echo URE_PLUGIN_URL . 'images/user-role-editor-page-icon.png'; ?>" alt="User Role Editor icon" height="64" width="105"/></div>
|
16 |
+
<h2><?php esc_html_e('User Role Editor - Options', 'ure'); ?></h2>
|
17 |
+
</div>
|
18 |
+
<div id="ure-settings-form" style="clear: left;">
|
19 |
+
<hr/>
|
20 |
+
<form method="post" action="<?php echo $link; ?>?page=settings-<?php echo URE_PLUGIN_FILE; ?>" >
|
21 |
+
<table id="ure_settings">
|
22 |
+
<tr>
|
23 |
+
<td><label for="show_admin_role"><?php esc_html_e('Show Administrator role at User Role Editor:', 'ure'); ?></label></td>
|
24 |
+
<td><input type="checkbox" name="show_admin_role" id="show_admin_role" value="1"
|
25 |
+
<?php echo ($show_admin_role == 1) ? 'checked="checked"' : ''; ?>
|
26 |
+
<?php echo defined('URE_SHOW_ADMIN_ROLE') ? 'disabled="disabled" title="Predefined by \'URE_SHOW_ADMIN_ROLE\' constant at wp-config.php"' : ''; ?> />
|
27 |
+
</td>
|
28 |
+
</tr>
|
29 |
+
<tr>
|
30 |
+
<td><label for="caps_readable"><?php esc_html_e('Show capabilities in the human readable form:', 'ure'); ?></label></td>
|
31 |
+
<td>
|
32 |
+
<input type="checkbox" name="caps_readable" id="caps_readable" value="1"
|
33 |
+
<?php echo ($caps_readable == 1) ? 'checked="checked"' : ''; ?> />
|
34 |
+
</td>
|
35 |
+
</tr>
|
36 |
+
<tr>
|
37 |
+
<td><label for="show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities:', 'ure'); ?></label></td>
|
38 |
+
<td>
|
39 |
+
<input type="checkbox" name="show_deprecated_caps" id="show_deprecated_caps" value="1"
|
40 |
+
<?php echo ($show_deprecated_caps == 1) ? 'checked="checked"' : ''; ?> />
|
41 |
+
</td>
|
42 |
+
</tr>
|
43 |
<?php
|
44 |
if ($this->lib->multisite) {
|
45 |
?>
|
46 |
+
<tr>
|
47 |
+
<td>
|
48 |
+
<label for="allow_edit_users_to_not_super_admin"><?php esc_html_e('Allow create, edit and delete users to not super-admininstrators:', 'ure'); ?></label>
|
49 |
+
</td>
|
50 |
+
<td>
|
51 |
+
<input type="checkbox" name="allow_edit_users_to_not_super_admin" id="allow_edit_users_to_not_super_admin" value="1"
|
52 |
+
<?php echo ($allow_edit_users_to_not_super_admin == 1) ? 'checked="checked"' : ''; ?> />
|
53 |
+
</td>
|
54 |
+
</tr>
|
55 |
<?php
|
56 |
}
|
57 |
|
58 |
do_action('ure_settings_show');
|
59 |
?>
|
60 |
+
</table>
|
61 |
<?php wp_nonce_field('user-role-editor'); ?>
|
62 |
+
<p class="submit">
|
63 |
+
<input type="submit" class="button-primary" name="user_role_editor_settings_update" value="<?php _e('Save', 'ure') ?>" />
|
64 |
+
</p>
|
65 |
|
66 |
+
</form>
|
67 |
+
</div>
|
68 |
</div>
|
69 |
|
includes/ure-role-edit.php
CHANGED
@@ -78,7 +78,7 @@ if (is_multisite() && !is_network_admin() && is_main_site( get_current_blog_id()
|
|
78 |
</tr>
|
79 |
</table>
|
80 |
<?php
|
81 |
-
$quant = count( $this->full_capabilities ) - count( $this->get_built_in_wp_caps() )
|
82 |
if ($quant>0) {
|
83 |
echo '<hr />';
|
84 |
_e('Custom capabilities:', 'ure');
|
78 |
</tr>
|
79 |
</table>
|
80 |
<?php
|
81 |
+
$quant = count( $this->full_capabilities ) - count( $this->get_built_in_wp_caps() );
|
82 |
if ($quant>0) {
|
83 |
echo '<hr />';
|
84 |
_e('Custom capabilities:', 'ure');
|
includes/ure-user-edit.php
CHANGED
@@ -31,7 +31,7 @@ if (!defined('URE_PLUGIN_URL')) {
|
|
31 |
$user_info .= ' <span style="font-weight: bold; color:red;">'. esc_html__('Network Super Admin', 'ure') .'</span>';
|
32 |
}
|
33 |
|
34 |
-
$this->display_box_start(__('Change capabilities for user', 'ure').$user_info, 'min-width:
|
35 |
|
36 |
?>
|
37 |
<table cellpadding="0" cellspacing="0">
|
@@ -65,13 +65,11 @@ if (!defined('URE_PLUGIN_URL')) {
|
|
65 |
<td class="ure-user-roles">
|
66 |
<div style="margin-bottom: 5px; font-weight: bold;"><?php echo __('Primary Role:', 'ure'); ?></div>
|
67 |
<?php
|
|
|
|
|
|
|
68 |
$values = array_values($this->user_to_edit->roles);
|
69 |
$primary_role = array_shift($values); // get 1st element from roles array
|
70 |
-
if (!empty($primary_role) && isset($this->roles[$primary_role])) {
|
71 |
-
echo $this->roles[$primary_role]['name'];
|
72 |
-
} else {
|
73 |
-
echo 'None';
|
74 |
-
}
|
75 |
if (function_exists('bbp_filter_blog_editable_roles') ) { // bbPress plugin is active
|
76 |
?>
|
77 |
<div style="margin-top: 5px;margin-bottom: 5px; font-weight: bold;"><?php echo __('bbPress Role:', 'ure'); ?></div>
|
@@ -120,7 +118,7 @@ if (function_exists('bbp_filter_blog_editable_roles') ) { // bbPress plugin is
|
|
120 |
</tr>
|
121 |
</table>
|
122 |
<?php
|
123 |
-
$quant = count( $this->full_capabilities ) - count( $this->get_built_in_wp_caps() )
|
124 |
if ($quant>0) {
|
125 |
echo '<hr />';
|
126 |
?>
|
31 |
$user_info .= ' <span style="font-weight: bold; color:red;">'. esc_html__('Network Super Admin', 'ure') .'</span>';
|
32 |
}
|
33 |
|
34 |
+
$this->display_box_start(__('Change capabilities for user', 'ure').$user_info, 'min-width:900px;');
|
35 |
|
36 |
?>
|
37 |
<table cellpadding="0" cellspacing="0">
|
65 |
<td class="ure-user-roles">
|
66 |
<div style="margin-bottom: 5px; font-weight: bold;"><?php echo __('Primary Role:', 'ure'); ?></div>
|
67 |
<?php
|
68 |
+
// output primary role selection dropdown list
|
69 |
+
$this->user_primary_role_dropdown_list($this->user_to_edit->roles);
|
70 |
+
|
71 |
$values = array_values($this->user_to_edit->roles);
|
72 |
$primary_role = array_shift($values); // get 1st element from roles array
|
|
|
|
|
|
|
|
|
|
|
73 |
if (function_exists('bbp_filter_blog_editable_roles') ) { // bbPress plugin is active
|
74 |
?>
|
75 |
<div style="margin-top: 5px;margin-bottom: 5px; font-weight: bold;"><?php echo __('bbPress Role:', 'ure'); ?></div>
|
118 |
</tr>
|
119 |
</table>
|
120 |
<?php
|
121 |
+
$quant = count( $this->full_capabilities ) - count( $this->get_built_in_wp_caps() );
|
122 |
if ($quant>0) {
|
123 |
echo '<hr />';
|
124 |
?>
|
lang/ure-ca.mo
CHANGED
Binary file
|
lang/ure-ca.po
CHANGED
@@ -2,751 +2,825 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v. 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
-
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
-
"X-Poedit-Language: Spanish\n"
|
15 |
-
"X-Poedit-Country: RUSSIAN FEDERATION\n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;
|
|
|
18 |
"X-Poedit-Basepath: ../../\n"
|
19 |
"X-Textdomain-Support: yes\n"
|
|
|
20 |
"X-Poedit-SearchPath-0: user-role-editor\n"
|
21 |
|
|
|
|
|
|
|
|
|
22 |
# @ ure
|
23 |
-
#: ../user-role-editor.php:
|
24 |
-
|
25 |
-
msgid "
|
26 |
-
msgstr "
|
27 |
|
28 |
# @ ure
|
29 |
-
#: ../user-role-editor.php:
|
30 |
-
|
31 |
-
|
32 |
-
msgstr "Si us plau actualitza!"
|
33 |
|
34 |
# @ ure
|
35 |
-
#: ../user-role-editor.php:
|
36 |
-
msgid "
|
37 |
-
msgstr "
|
38 |
|
39 |
# @ ure
|
40 |
-
#: ../user-role-editor.php:
|
41 |
-
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
# @ ure
|
45 |
# @ default
|
46 |
-
#: ../user-role-editor.php:
|
47 |
-
#: ../user-role-editor.php:
|
48 |
-
#: ../user-role-editor.php:
|
|
|
49 |
msgid "User Role Editor"
|
50 |
msgstr "User Role Editor"
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
# @ ure
|
53 |
-
|
54 |
-
|
55 |
-
msgid "User Role Editor
|
56 |
-
msgstr "
|
|
|
|
|
|
|
|
|
57 |
|
58 |
# @ ure
|
59 |
-
#: ../user-role-editor.php:
|
60 |
msgid "Select All"
|
61 |
msgstr "Seleccionar-ho tot"
|
62 |
|
63 |
-
#: ../user-role-editor.php:
|
64 |
msgid "Unselect All"
|
65 |
msgstr "De-selecciona-ho tot"
|
66 |
|
67 |
-
#: ../user-role-editor.php:
|
68 |
msgid "Reverse"
|
69 |
msgstr "Invertir"
|
70 |
|
71 |
# @ ure
|
72 |
-
#: ../user-role-editor.php:
|
73 |
msgid "Update"
|
74 |
msgstr "Actualitzar"
|
75 |
|
76 |
# @ ure
|
77 |
-
#: ../user-role-editor.php:
|
78 |
msgid "Please confirm permissions update"
|
79 |
msgstr "Si us plau confirmeu l'actualització de permisos "
|
80 |
|
81 |
# @ ure
|
82 |
-
#: ../user-role-editor.php:
|
83 |
msgid "Add New Role"
|
84 |
msgstr "Afegir nou Rol"
|
85 |
|
86 |
# @ ure
|
87 |
-
#: ../user-role-editor.php:
|
88 |
msgid " Role name (ID) can not be empty!"
|
89 |
msgstr "El nom de rol (ID) no pot estar buit!"
|
90 |
|
91 |
# @ ure
|
92 |
-
#: ../user-role-editor.php:
|
93 |
-
msgid "
|
|
|
|
|
94 |
msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
|
95 |
|
96 |
# @ ure
|
97 |
-
#: ../user-role-editor.php:
|
98 |
msgid "Add Role"
|
99 |
msgstr "Afegir nou Rol"
|
100 |
|
101 |
# @ ure
|
102 |
-
#: ../user-role-editor.php:
|
103 |
msgid "Delete Role"
|
104 |
msgstr "Eliminar Rol"
|
105 |
|
106 |
# @ ure
|
107 |
-
#: ../user-role-editor.php:
|
108 |
msgid "Cancel"
|
109 |
msgstr "Cancel·lar"
|
110 |
|
111 |
# @ ure
|
112 |
-
#: ../user-role-editor.php:
|
113 |
msgid "Add Capability"
|
114 |
msgstr "Afegir nou privilegi"
|
115 |
|
116 |
# @ ure
|
117 |
-
#: ../user-role-editor.php:
|
118 |
-
#: ../user-role-editor.php:
|
119 |
msgid "Delete Capability"
|
120 |
msgstr "Eliminar privilegi"
|
121 |
|
122 |
# @ ure
|
123 |
-
#: ../user-role-editor.php:
|
124 |
msgid "Reset"
|
125 |
msgstr "Reiniciar"
|
126 |
|
127 |
-
#: ../user-role-editor.php:
|
128 |
-
msgid "
|
129 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
|
131 |
# @ ure
|
132 |
-
#: ../user-role-editor.php:
|
133 |
msgid "Default Role"
|
134 |
msgstr "Rol predeterminat"
|
135 |
|
136 |
# @ ure
|
137 |
-
#: ../user-role-editor.php:
|
138 |
msgid "Set New Default Role"
|
139 |
msgstr "Assignar com a rol predeterminat"
|
140 |
|
141 |
# @ ure
|
142 |
-
#: ../user-role-editor.php:
|
143 |
-
msgid "
|
144 |
-
|
|
|
|
|
|
|
|
|
145 |
|
146 |
# @ ure
|
147 |
-
#: ../user-role-editor.php:
|
148 |
msgid " Capability name (ID) can not be empty!"
|
149 |
msgstr "El nom de priviliegi (ID) no pot estar buit!"
|
150 |
|
151 |
# @ ure
|
152 |
-
#: ../user-role-editor.php:
|
153 |
-
msgid "
|
154 |
-
|
|
|
|
|
|
|
|
|
155 |
|
156 |
# @ ure
|
157 |
-
#: ../user-role-editor.php:
|
158 |
-
|
159 |
-
|
|
|
160 |
|
161 |
# @ ure
|
162 |
-
#: ../user-role-editor.php:
|
163 |
-
|
164 |
-
|
165 |
-
msgstr "Registre de canvis"
|
166 |
|
167 |
# @ ure
|
168 |
-
#: ../
|
169 |
-
msgid "
|
170 |
-
msgstr "
|
171 |
|
172 |
# @ ure
|
173 |
-
#: ../
|
174 |
-
|
175 |
-
|
176 |
-
msgstr "Altres rols"
|
177 |
|
178 |
# @ ure
|
179 |
-
#: ../
|
180 |
-
msgid "
|
181 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
|
183 |
# ure
|
184 |
-
#: ../includes/ure-lib.php:
|
185 |
msgid "Error is occur. Please check the log file."
|
186 |
msgstr "Ha ocorregut un error. Si us plau revisa l'arxiu de registres."
|
187 |
|
188 |
# @ ure
|
189 |
-
#: ../includes/ure-lib.php:
|
190 |
-
msgid "
|
191 |
-
|
192 |
-
|
193 |
-
# @ ure
|
194 |
-
#: ../includes/ure-lib.php:481
|
195 |
-
msgid "Error: Role ID must contain latin characters, digits, hyphens or underscore only!"
|
196 |
msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
|
197 |
|
198 |
# @ ure
|
199 |
-
#: ../includes/ure-lib.php:
|
200 |
#, php-format
|
201 |
msgid "Role %s exists already"
|
202 |
msgstr "Rol %s ja existeix"
|
203 |
|
204 |
# @ ure
|
205 |
-
#: ../includes/ure-lib.php:
|
206 |
msgid "Error is encountered during new role create operation"
|
207 |
msgstr "Error trobat durant la creació d'un nou Rol"
|
208 |
|
209 |
# @ ure
|
210 |
-
#: ../includes/ure-lib.php:
|
211 |
#, php-format
|
212 |
msgid "Role %s is created successfully"
|
213 |
msgstr "Rol %s s'ha creat correctament"
|
214 |
|
215 |
# @ ure
|
216 |
-
#: ../includes/ure-lib.php:
|
217 |
msgid "Error encountered during role delete operation"
|
218 |
msgstr "Error trobat durant l'eliminació del Rol"
|
219 |
|
220 |
# @ ure
|
221 |
-
#: ../includes/ure-lib.php:
|
222 |
#, php-format
|
223 |
msgid "Role %s is deleted successfully"
|
224 |
msgstr "Rol %s s'elimina amb èxit"
|
225 |
|
226 |
# @ ure
|
227 |
-
#: ../includes/ure-lib.php:
|
228 |
msgid "Error encountered during default role change operation"
|
229 |
msgstr "Error trobat durant el canvi de Rol per defecte"
|
230 |
|
231 |
# @ ure
|
232 |
-
#: ../includes/ure-lib.php:
|
233 |
#, php-format
|
234 |
msgid "Default role for new users is set to %s successfully"
|
235 |
msgstr "Rol predeterminat per a nous usuaris està establert en %s amb èxit"
|
236 |
|
237 |
# @ ure
|
238 |
-
#: ../includes/ure-lib.php:
|
239 |
msgid "Editor"
|
240 |
msgstr "Editor"
|
241 |
|
242 |
# @ ure
|
243 |
-
#: ../includes/ure-lib.php:
|
244 |
msgid "Author"
|
245 |
msgstr "Autor"
|
246 |
|
247 |
# @ ure
|
248 |
-
#: ../includes/ure-lib.php:
|
249 |
msgid "Contributor"
|
250 |
msgstr "Col·laborador"
|
251 |
|
252 |
# @ ure
|
253 |
-
#: ../includes/ure-lib.php:
|
254 |
msgid "Subscriber"
|
255 |
msgstr "Subscriptor"
|
256 |
|
257 |
# @ ure
|
258 |
-
#: ../includes/ure-lib.php:
|
259 |
msgid "Switch themes"
|
260 |
msgstr "Canviar plantilles"
|
261 |
|
262 |
# @ ure
|
263 |
-
#: ../includes/ure-lib.php:
|
264 |
msgid "Edit themes"
|
265 |
msgstr "Editar plantilles"
|
266 |
|
267 |
# @ ure
|
268 |
-
#: ../includes/ure-lib.php:
|
269 |
msgid "Activate plugins"
|
270 |
msgstr "Activar connectors"
|
271 |
|
272 |
# @ ure
|
273 |
-
#: ../includes/ure-lib.php:
|
274 |
msgid "Edit plugins"
|
275 |
msgstr "Editar connectors"
|
276 |
|
277 |
# @ ure
|
278 |
-
#: ../includes/ure-lib.php:
|
279 |
msgid "Edit users"
|
280 |
msgstr "Editar usuaris"
|
281 |
|
282 |
# @ ure
|
283 |
-
#: ../includes/ure-lib.php:
|
284 |
msgid "Edit files"
|
285 |
msgstr "Editar arxius"
|
286 |
|
287 |
# @ ure
|
288 |
-
#: ../includes/ure-lib.php:
|
289 |
msgid "Manage options"
|
290 |
msgstr "Administrar opcions"
|
291 |
|
292 |
# @ ure
|
293 |
-
#: ../includes/ure-lib.php:
|
294 |
msgid "Moderate comments"
|
295 |
msgstr "Moderar comentaris"
|
296 |
|
297 |
# @ ure
|
298 |
-
#: ../includes/ure-lib.php:
|
299 |
msgid "Manage categories"
|
300 |
msgstr "Administrar categories"
|
301 |
|
302 |
# @ ure
|
303 |
-
#: ../includes/ure-lib.php:
|
304 |
msgid "Manage links"
|
305 |
msgstr "Administrar enllaços"
|
306 |
|
307 |
# @ ure
|
308 |
-
#: ../includes/ure-lib.php:
|
309 |
msgid "Upload files"
|
310 |
msgstr "Pujar arxius"
|
311 |
|
312 |
# @ ure
|
313 |
-
#: ../includes/ure-lib.php:
|
314 |
msgid "Import"
|
315 |
msgstr "Importar"
|
316 |
|
317 |
# @ ure
|
318 |
-
#: ../includes/ure-lib.php:
|
319 |
msgid "Unfiltered html"
|
320 |
msgstr "Ometre Filtrat d'HTML"
|
321 |
|
322 |
# @ ure
|
323 |
-
#: ../includes/ure-lib.php:
|
324 |
msgid "Edit posts"
|
325 |
msgstr "Editar missatges"
|
326 |
|
327 |
# @ ure
|
328 |
-
#: ../includes/ure-lib.php:
|
329 |
msgid "Edit others posts"
|
330 |
msgstr "Editar missatges de altres"
|
331 |
|
332 |
# @ ure
|
333 |
-
#: ../includes/ure-lib.php:
|
334 |
msgid "Edit published posts"
|
335 |
msgstr "Editar els missatges publicats"
|
336 |
|
337 |
# @ ure
|
338 |
-
#: ../includes/ure-lib.php:
|
339 |
msgid "Publish posts"
|
340 |
msgstr "Publicar missatges"
|
341 |
|
342 |
# @ ure
|
343 |
-
#: ../includes/ure-lib.php:
|
344 |
msgid "Edit pages"
|
345 |
msgstr "Editar pàgines"
|
346 |
|
347 |
# @ ure
|
348 |
-
#: ../includes/ure-lib.php:
|
349 |
msgid "Read"
|
350 |
msgstr "Llegir"
|
351 |
|
352 |
# @ ure
|
353 |
-
#: ../includes/ure-lib.php:
|
354 |
msgid "Level 10"
|
355 |
msgstr "Nivell 10"
|
356 |
|
357 |
# @ ure
|
358 |
-
#: ../includes/ure-lib.php:
|
359 |
msgid "Level 9"
|
360 |
msgstr "Nivell 9"
|
361 |
|
362 |
# @ ure
|
363 |
-
#: ../includes/ure-lib.php:
|
364 |
msgid "Level 8"
|
365 |
msgstr "Nivell 8"
|
366 |
|
367 |
# @ ure
|
368 |
-
#: ../includes/ure-lib.php:
|
369 |
msgid "Level 7"
|
370 |
msgstr "Nivell 7"
|
371 |
|
372 |
# @ ure
|
373 |
-
#: ../includes/ure-lib.php:
|
374 |
msgid "Level 6"
|
375 |
msgstr "Nivell 6"
|
376 |
|
377 |
# @ ure
|
378 |
-
#: ../includes/ure-lib.php:
|
379 |
msgid "Level 5"
|
380 |
msgstr "Nivell 5"
|
381 |
|
382 |
# @ ure
|
383 |
-
#: ../includes/ure-lib.php:
|
384 |
msgid "Level 4"
|
385 |
msgstr "Nivell 4"
|
386 |
|
387 |
# @ ure
|
388 |
-
#: ../includes/ure-lib.php:
|
389 |
msgid "Level 3"
|
390 |
msgstr "Nivell 3"
|
391 |
|
392 |
# @ ure
|
393 |
-
#: ../includes/ure-lib.php:
|
394 |
msgid "Level 2"
|
395 |
msgstr "Nivell 2"
|
396 |
|
397 |
# @ ure
|
398 |
-
#: ../includes/ure-lib.php:
|
399 |
msgid "Level 1"
|
400 |
msgstr "Nivell 1"
|
401 |
|
402 |
# @ ure
|
403 |
-
#: ../includes/ure-lib.php:
|
404 |
msgid "Level 0"
|
405 |
msgstr "Nivell 0"
|
406 |
|
407 |
# @ ure
|
408 |
-
#: ../includes/ure-lib.php:
|
409 |
msgid "Edit others pages"
|
410 |
msgstr "Editar pàgines de altres"
|
411 |
|
412 |
# @ ure
|
413 |
-
#: ../includes/ure-lib.php:
|
414 |
msgid "Edit published pages"
|
415 |
msgstr "Editar pàgines publicades"
|
416 |
|
417 |
# @ ure
|
418 |
-
#: ../includes/ure-lib.php:
|
419 |
msgid "Publish pages"
|
420 |
msgstr "Publicar pàgines"
|
421 |
|
422 |
# @ ure
|
423 |
-
#: ../includes/ure-lib.php:
|
424 |
msgid "Delete pages"
|
425 |
msgstr "Eliminar pàgines"
|
426 |
|
427 |
# ure
|
428 |
-
#: ../includes/ure-lib.php:
|
429 |
msgid "Delete others pages"
|
430 |
msgstr "Eliminar pàgines de altres"
|
431 |
|
432 |
# @ ure
|
433 |
-
#: ../includes/ure-lib.php:
|
434 |
msgid "Delete published pages"
|
435 |
msgstr "Eliminar pàgines publicades"
|
436 |
|
437 |
# ure
|
438 |
-
#: ../includes/ure-lib.php:
|
439 |
msgid "Delete posts"
|
440 |
msgstr "Eliminar missatges"
|
441 |
|
442 |
# @ ure
|
443 |
-
#: ../includes/ure-lib.php:
|
444 |
msgid "Delete others posts"
|
445 |
msgstr "Eliminar missatges de altres"
|
446 |
|
447 |
# ure
|
448 |
-
#: ../includes/ure-lib.php:
|
449 |
msgid "Delete published posts"
|
450 |
msgstr "Eliminar missatges publicats"
|
451 |
|
452 |
# ure
|
453 |
-
#: ../includes/ure-lib.php:
|
454 |
msgid "Delete private posts"
|
455 |
msgstr "Eliminar missatges privats"
|
456 |
|
457 |
# @ ure
|
458 |
-
#: ../includes/ure-lib.php:
|
459 |
msgid "Edit private posts"
|
460 |
msgstr "Editar missatges privats"
|
461 |
|
462 |
# @ ure
|
463 |
-
#: ../includes/ure-lib.php:
|
464 |
msgid "Read private posts"
|
465 |
msgstr "Llegir missatges privats"
|
466 |
|
467 |
# @ ure
|
468 |
-
#: ../includes/ure-lib.php:
|
469 |
msgid "Delete private pages"
|
470 |
msgstr "Eliminar pàgines privades"
|
471 |
|
472 |
# @ ure
|
473 |
-
#: ../includes/ure-lib.php:
|
474 |
msgid "Edit private pages"
|
475 |
msgstr "Editar pàgines privades"
|
476 |
|
477 |
# @ ure
|
478 |
-
#: ../includes/ure-lib.php:
|
479 |
msgid "Read private pages"
|
480 |
msgstr "Llegir pàgines privades"
|
481 |
|
482 |
# @ ure
|
483 |
-
#: ../includes/ure-lib.php:
|
484 |
msgid "Delete users"
|
485 |
msgstr "Eliminar usuaris"
|
486 |
|
487 |
# @ ure
|
488 |
-
#: ../includes/ure-lib.php:
|
489 |
msgid "Create users"
|
490 |
msgstr "Crear usuaris"
|
491 |
|
492 |
# @ ure
|
493 |
-
#: ../includes/ure-lib.php:
|
494 |
msgid "Unfiltered upload"
|
495 |
msgstr "Sense filtre de càrrega"
|
496 |
|
497 |
# @ ure
|
498 |
-
#: ../includes/ure-lib.php:
|
499 |
msgid "Edit dashboard"
|
500 |
msgstr "Editar taulell"
|
501 |
|
502 |
# @ ure
|
503 |
-
#: ../includes/ure-lib.php:
|
504 |
msgid "Update plugins"
|
505 |
msgstr "Actualitzar connectors"
|
506 |
|
507 |
# @ ure
|
508 |
-
#: ../includes/ure-lib.php:
|
509 |
msgid "Delete plugins"
|
510 |
msgstr "Eliminar connectors"
|
511 |
|
512 |
# @ ure
|
513 |
-
#: ../includes/ure-lib.php:
|
514 |
msgid "Install plugins"
|
515 |
msgstr "Instal·lar connectors"
|
516 |
|
517 |
# @ ure
|
518 |
-
#: ../includes/ure-lib.php:
|
519 |
msgid "Update themes"
|
520 |
msgstr "Actualitzar plantilles"
|
521 |
|
522 |
# @ ure
|
523 |
-
#: ../includes/ure-lib.php:
|
524 |
msgid "Install themes"
|
525 |
msgstr "Instal·lar plantilles"
|
526 |
|
527 |
# @ ure
|
528 |
-
#: ../includes/ure-lib.php:
|
529 |
msgid "Update core"
|
530 |
msgstr "Actualitzar nucli"
|
531 |
|
532 |
# @ ure
|
533 |
-
#: ../includes/ure-lib.php:
|
534 |
msgid "List users"
|
535 |
msgstr "Llistar usuaris"
|
536 |
|
537 |
# @ ure
|
538 |
-
#: ../includes/ure-lib.php:
|
539 |
msgid "Remove users"
|
540 |
msgstr "Eliminar usuaris"
|
541 |
|
542 |
# @ ure
|
543 |
-
#: ../includes/ure-lib.php:
|
544 |
msgid "Add users"
|
545 |
msgstr "Afegir usuaris"
|
546 |
|
547 |
# @ ure
|
548 |
-
#: ../includes/ure-lib.php:
|
549 |
msgid "Promote users"
|
550 |
msgstr "Promoure usuaris"
|
551 |
|
552 |
# @ ure
|
553 |
-
#: ../includes/ure-lib.php:
|
554 |
msgid "Edit theme options"
|
555 |
msgstr "Editar opcions de plantilla"
|
556 |
|
557 |
# @ ure
|
558 |
-
#: ../includes/ure-lib.php:
|
559 |
msgid "Delete themes"
|
560 |
msgstr "Eliminar plantilles"
|
561 |
|
562 |
# @ ure
|
563 |
-
#: ../includes/ure-lib.php:
|
564 |
msgid "Export"
|
565 |
msgstr "Exportar"
|
566 |
|
567 |
# @ ure
|
568 |
-
#: ../includes/ure-lib.php:
|
569 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
570 |
-
msgstr "
|
|
|
571 |
|
572 |
# @ ure
|
573 |
-
#: ../includes/ure-lib.php:
|
574 |
#, php-format
|
575 |
msgid "Capability %s is added successfully"
|
576 |
msgstr "Privilegi %s s'ha afegit correctament"
|
577 |
|
578 |
# @ ure
|
579 |
-
#: ../includes/ure-lib.php:
|
580 |
#, php-format
|
581 |
msgid "Capability %s exists already"
|
582 |
msgstr "Ja existeix el privilegi %s"
|
583 |
|
584 |
# @ ure
|
585 |
-
#: ../includes/ure-lib.php:
|
586 |
#, php-format
|
587 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
588 |
msgstr "¡Error! No tens permisos per esborrar aquest privilegi: %s !"
|
589 |
|
590 |
# @ ure
|
591 |
-
#: ../includes/ure-lib.php:
|
592 |
#, php-format
|
593 |
msgid "Capability %s is removed successfully"
|
594 |
msgstr "El privilegi %s s'ha eliminat amb èxit"
|
595 |
|
596 |
# @ ure
|
597 |
-
#: ../includes/ure-lib.php:
|
598 |
-
msgid "
|
599 |
-
msgstr "
|
600 |
-
|
601 |
-
# @ ure
|
602 |
-
#: ../includes/ure-role-edit.php:29
|
603 |
-
msgid "None"
|
604 |
-
msgstr "Cap"
|
605 |
-
|
606 |
-
# @ ure
|
607 |
-
#: ../includes/ure-role-edit.php:67
|
608 |
-
msgid "Select Role and change its capabilities list"
|
609 |
-
msgstr "Selecciona el Rol per canviar la seva llista de privilegis"
|
610 |
-
|
611 |
-
# @ ure
|
612 |
-
#: ../includes/ure-role-edit.php:69
|
613 |
-
#: ../includes/ure-role-edit.php:166
|
614 |
-
msgid "Select Role:"
|
615 |
-
msgstr "Selecciona el Rol:"
|
616 |
-
|
617 |
-
# @ ure
|
618 |
-
#: ../includes/ure-role-edit.php:79
|
619 |
-
#: ../includes/ure-user-edit.php:38
|
620 |
-
msgid "Show capabilities in human readable form"
|
621 |
-
msgstr "Mostra privilegis de forma llegible"
|
622 |
-
|
623 |
-
# @ ure
|
624 |
-
#: ../includes/ure-role-edit.php:88
|
625 |
-
#: ../includes/ure-user-edit.php:47
|
626 |
-
msgid "Show deprecated capabilities"
|
627 |
-
msgstr "Mostrar privilegis obsolets"
|
628 |
-
|
629 |
-
# @ default
|
630 |
-
#: ../includes/ure-role-edit.php:92
|
631 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
632 |
-
msgstr "Si està marcat s'aplica l'acció a TOTS els llocs d'aquesta xarxa"
|
633 |
|
634 |
# @ ure
|
635 |
-
#: ../includes/ure-
|
636 |
-
msgid "
|
637 |
-
msgstr "
|
638 |
|
639 |
# @ ure
|
640 |
-
#: ../includes/ure-
|
641 |
-
|
642 |
-
|
643 |
-
msgstr "Privilegis"
|
644 |
|
645 |
# @ ure
|
646 |
-
#: ../includes/ure-
|
647 |
-
|
648 |
-
|
649 |
-
msgstr "Privilegis personalitzats"
|
650 |
-
|
651 |
-
#: ../includes/ure-role-edit.php:155
|
652 |
-
msgid "Role name (ID): "
|
653 |
-
msgstr "Nom de rol (ID):"
|
654 |
-
|
655 |
-
#: ../includes/ure-role-edit.php:157
|
656 |
-
msgid "Display Role Name: "
|
657 |
-
msgstr "Visualització de nom de rol:"
|
658 |
|
659 |
# @ ure
|
660 |
-
#: ../includes/ure-
|
661 |
-
msgid "
|
662 |
-
msgstr "
|
663 |
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
msgstr "Eliminar:"
|
668 |
|
669 |
-
#: ../includes/ure-
|
670 |
-
msgid "
|
671 |
-
msgstr "
|
672 |
|
673 |
# @ ure
|
674 |
-
#: ../includes/ure-user-edit.php:
|
675 |
msgid "Change capabilities for user"
|
676 |
msgstr "Canviar privilegis d'usuari"
|
677 |
|
678 |
-
#: ../includes/ure-user-edit.php:
|
679 |
msgid "Primary Role:"
|
680 |
msgstr "Rol principal:"
|
681 |
|
682 |
-
#: ../includes/ure-user-edit.php:
|
683 |
msgid "bbPress Role:"
|
684 |
msgstr "Rol bbPress:"
|
685 |
|
686 |
# @ ure
|
687 |
-
#: ../includes/ure-user-edit.php:
|
688 |
msgid "Other Roles:"
|
689 |
msgstr "Altres rols:"
|
690 |
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
msgstr "Els rols d'usuari es restableixen als valors predeterminats de WordPress."
|
695 |
-
|
696 |
-
# @ ure
|
697 |
-
#: ../includes/ure-options.php:136
|
698 |
-
msgid "Error: "
|
699 |
-
msgstr "Error:"
|
700 |
-
|
701 |
-
# @ ure
|
702 |
-
#: ../includes/ure-options.php:136
|
703 |
-
#: ../includes/ure-options.php:156
|
704 |
-
msgid "Role"
|
705 |
-
msgstr "Rol"
|
706 |
-
|
707 |
-
# @ ure
|
708 |
-
#: ../includes/ure-options.php:136
|
709 |
-
msgid "does not exist"
|
710 |
-
msgstr "no existeix"
|
711 |
-
|
712 |
-
# @ ure
|
713 |
-
#: ../includes/ure-options.php:156
|
714 |
-
msgid "is updated successfully"
|
715 |
-
msgstr "s'actualitzat correctament"
|
716 |
-
|
717 |
-
# @ ure
|
718 |
-
#: ../includes/ure-options.php:161
|
719 |
-
#: ../includes/ure-options.php:174
|
720 |
-
msgid "Error occured during role update"
|
721 |
-
msgstr "Error trobat durant l'actualització del rol"
|
722 |
-
|
723 |
-
# @ ure
|
724 |
-
#: ../includes/ure-options.php:169
|
725 |
-
msgid "User"
|
726 |
-
msgstr "Usuari"
|
727 |
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
|
|
|
|
732 |
|
733 |
# @ ure
|
734 |
-
#: ../includes/ure-
|
735 |
-
|
736 |
-
|
|
|
737 |
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
|
|
|
|
742 |
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
|
|
|
|
|
|
747 |
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
msgstr "FAQ"
|
752 |
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v. 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-10-21 12:12+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: es_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
|
|
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
16 |
+
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
"X-Poedit-Basepath: ../../\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
+
"X-Generator: Poedit 1.5.4\n"
|
20 |
"X-Poedit-SearchPath-0: user-role-editor\n"
|
21 |
|
22 |
+
#: ../includes/settings-template.php:63
|
23 |
+
msgid "Save"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
# @ ure
|
27 |
+
#: ../includes/class-user-role-editor.php:171
|
28 |
+
#: ../includes/class-user-role-editor.php:173
|
29 |
+
msgid "You do not have permission to edit this user."
|
30 |
+
msgstr ""
|
31 |
|
32 |
# @ ure
|
33 |
+
#: ../includes/class-user-role-editor.php:314
|
34 |
+
msgid "Capabilities"
|
35 |
+
msgstr "Capacitats"
|
|
|
36 |
|
37 |
# @ ure
|
38 |
+
#: ../includes/class-user-role-editor.php:407
|
39 |
+
msgid "Settings"
|
40 |
+
msgstr "Opcions"
|
41 |
|
42 |
# @ ure
|
43 |
+
#: ../includes/class-user-role-editor.php:420
|
44 |
+
#: ../includes/class-ure-lib.php:2050
|
45 |
+
msgid "Changelog"
|
46 |
+
msgstr "Registre de canvis"
|
47 |
+
|
48 |
+
#: ../includes/class-user-role-editor.php:442
|
49 |
+
msgid "Overview"
|
50 |
+
msgstr ""
|
51 |
|
52 |
# @ ure
|
53 |
# @ default
|
54 |
+
#: ../includes/class-user-role-editor.php:451
|
55 |
+
#: ../includes/class-user-role-editor.php:479
|
56 |
+
#: ../includes/class-user-role-editor.php:674
|
57 |
+
#: ../includes/class-ure-lib.php:223
|
58 |
msgid "User Role Editor"
|
59 |
msgstr "User Role Editor"
|
60 |
|
61 |
+
#: ../includes/class-user-role-editor.php:497
|
62 |
+
msgid ""
|
63 |
+
"You do not have sufficient permissions to manage options for User Role "
|
64 |
+
"Editor."
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
# @ ure
|
68 |
+
# @ default
|
69 |
+
#: ../includes/class-user-role-editor.php:526
|
70 |
+
msgid "User Role Editor options are updated"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: ../includes/class-user-role-editor.php:571
|
74 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
75 |
+
msgstr ""
|
76 |
|
77 |
# @ ure
|
78 |
+
#: ../includes/class-user-role-editor.php:624
|
79 |
msgid "Select All"
|
80 |
msgstr "Seleccionar-ho tot"
|
81 |
|
82 |
+
#: ../includes/class-user-role-editor.php:625
|
83 |
msgid "Unselect All"
|
84 |
msgstr "De-selecciona-ho tot"
|
85 |
|
86 |
+
#: ../includes/class-user-role-editor.php:626
|
87 |
msgid "Reverse"
|
88 |
msgstr "Invertir"
|
89 |
|
90 |
# @ ure
|
91 |
+
#: ../includes/class-user-role-editor.php:627
|
92 |
msgid "Update"
|
93 |
msgstr "Actualitzar"
|
94 |
|
95 |
# @ ure
|
96 |
+
#: ../includes/class-user-role-editor.php:628
|
97 |
msgid "Please confirm permissions update"
|
98 |
msgstr "Si us plau confirmeu l'actualització de permisos "
|
99 |
|
100 |
# @ ure
|
101 |
+
#: ../includes/class-user-role-editor.php:629
|
102 |
msgid "Add New Role"
|
103 |
msgstr "Afegir nou Rol"
|
104 |
|
105 |
# @ ure
|
106 |
+
#: ../includes/class-user-role-editor.php:630
|
107 |
msgid " Role name (ID) can not be empty!"
|
108 |
msgstr "El nom de rol (ID) no pot estar buit!"
|
109 |
|
110 |
# @ ure
|
111 |
+
#: ../includes/class-user-role-editor.php:631
|
112 |
+
msgid ""
|
113 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
114 |
+
"only!"
|
115 |
msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
|
116 |
|
117 |
# @ ure
|
118 |
+
#: ../includes/class-user-role-editor.php:632
|
119 |
msgid "Add Role"
|
120 |
msgstr "Afegir nou Rol"
|
121 |
|
122 |
# @ ure
|
123 |
+
#: ../includes/class-user-role-editor.php:633
|
124 |
msgid "Delete Role"
|
125 |
msgstr "Eliminar Rol"
|
126 |
|
127 |
# @ ure
|
128 |
+
#: ../includes/class-user-role-editor.php:634
|
129 |
msgid "Cancel"
|
130 |
msgstr "Cancel·lar"
|
131 |
|
132 |
# @ ure
|
133 |
+
#: ../includes/class-user-role-editor.php:635
|
134 |
msgid "Add Capability"
|
135 |
msgstr "Afegir nou privilegi"
|
136 |
|
137 |
# @ ure
|
138 |
+
#: ../includes/class-user-role-editor.php:636
|
139 |
+
#: ../includes/class-user-role-editor.php:641
|
140 |
msgid "Delete Capability"
|
141 |
msgstr "Eliminar privilegi"
|
142 |
|
143 |
# @ ure
|
144 |
+
#: ../includes/class-user-role-editor.php:637
|
145 |
msgid "Reset"
|
146 |
msgstr "Reiniciar"
|
147 |
|
148 |
+
#: ../includes/class-user-role-editor.php:638
|
149 |
+
msgid ""
|
150 |
+
"Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
151 |
+
"plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
|
152 |
+
"could be needed. Continue?"
|
153 |
+
msgstr ""
|
154 |
+
"Restableix funcions als valors per defecte de WordPress. Aneu amb compte, "
|
155 |
+
"tots els canvis realitzats per vostè o per connectors es perdran. Alguns "
|
156 |
+
"connectors, per exemple, S2Member, WooCommerce, podrian necessitar una "
|
157 |
+
"reactivació. Continuar?"
|
158 |
|
159 |
# @ ure
|
160 |
+
#: ../includes/class-user-role-editor.php:639
|
161 |
msgid "Default Role"
|
162 |
msgstr "Rol predeterminat"
|
163 |
|
164 |
# @ ure
|
165 |
+
#: ../includes/class-user-role-editor.php:640
|
166 |
msgid "Set New Default Role"
|
167 |
msgstr "Assignar com a rol predeterminat"
|
168 |
|
169 |
# @ ure
|
170 |
+
#: ../includes/class-user-role-editor.php:642
|
171 |
+
msgid ""
|
172 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
173 |
+
"or other custom code"
|
174 |
+
msgstr ""
|
175 |
+
"Advertència! Vés amb compte - Remoure privilegis crítics podria inutilitzar "
|
176 |
+
"algun connector o algun altre codi personalitzat."
|
177 |
|
178 |
# @ ure
|
179 |
+
#: ../includes/class-user-role-editor.php:643
|
180 |
msgid " Capability name (ID) can not be empty!"
|
181 |
msgstr "El nom de priviliegi (ID) no pot estar buit!"
|
182 |
|
183 |
# @ ure
|
184 |
+
#: ../includes/class-user-role-editor.php:644
|
185 |
+
msgid ""
|
186 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
187 |
+
"underscore only!"
|
188 |
+
msgstr ""
|
189 |
+
"Error: el nom del privilegi (ID) només ha de contenir caràcters llatins i "
|
190 |
+
"dígits."
|
191 |
|
192 |
# @ ure
|
193 |
+
#: ../includes/class-user-role-editor.php:677
|
194 |
+
#: ../includes/class-user-role-editor.php:705
|
195 |
+
msgid "Other Roles"
|
196 |
+
msgstr "Altres rols"
|
197 |
|
198 |
# @ ure
|
199 |
+
#: ../includes/class-user-role-editor.php:687
|
200 |
+
msgid "Edit"
|
201 |
+
msgstr "Editar"
|
|
|
202 |
|
203 |
# @ ure
|
204 |
+
#: ../includes/ure-role-edit.php:17
|
205 |
+
msgid "Select Role and change its capabilities list"
|
206 |
+
msgstr "Selecciona el Rol per canviar la seva llista de privilegis"
|
207 |
|
208 |
# @ ure
|
209 |
+
#: ../includes/ure-role-edit.php:19 ../includes/class-ure-lib.php:184
|
210 |
+
msgid "Select Role:"
|
211 |
+
msgstr "Selecciona el Rol:"
|
|
|
212 |
|
213 |
# @ ure
|
214 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:51
|
215 |
+
msgid "Show capabilities in human readable form"
|
216 |
+
msgstr "Mostra privilegis de forma llegible"
|
217 |
+
|
218 |
+
# @ ure
|
219 |
+
#: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
|
220 |
+
#: ../includes/class-ure-screen-help.php:21
|
221 |
+
msgid "Show deprecated capabilities"
|
222 |
+
msgstr "Mostrar privilegis obsolets"
|
223 |
+
|
224 |
+
# @ default
|
225 |
+
#: ../includes/ure-role-edit.php:45
|
226 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
227 |
+
msgstr "Si està marcat s'aplica l'acció a TOTS els llocs d'aquesta xarxa"
|
228 |
+
|
229 |
+
# @ ure
|
230 |
+
#: ../includes/ure-role-edit.php:57
|
231 |
+
msgid "Apply to All Sites"
|
232 |
+
msgstr "Aplicar a tot arreu"
|
233 |
+
|
234 |
+
# @ ure
|
235 |
+
#: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:104
|
236 |
+
msgid "Core capabilities:"
|
237 |
+
msgstr "Privilegis"
|
238 |
+
|
239 |
+
#: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:106
|
240 |
+
msgid "Quick filter:"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
# @ ure
|
244 |
+
#: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:125
|
245 |
+
msgid "Custom capabilities:"
|
246 |
+
msgstr "Privilegis personalitzats"
|
247 |
+
|
248 |
+
#: ../includes/class-ure-lib.php:141
|
249 |
+
msgid "Error: wrong request"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: ../includes/class-ure-lib.php:173
|
253 |
+
msgid "Role name (ID): "
|
254 |
+
msgstr "Nom de rol (ID):"
|
255 |
+
|
256 |
+
#: ../includes/class-ure-lib.php:175
|
257 |
+
msgid "Display Role Name: "
|
258 |
+
msgstr "Visualització de nom de rol:"
|
259 |
+
|
260 |
+
# @ ure
|
261 |
+
#: ../includes/class-ure-lib.php:177
|
262 |
+
msgid "Make copy of: "
|
263 |
+
msgstr "Fer còpia de:"
|
264 |
+
|
265 |
+
# @ ure
|
266 |
+
#: ../includes/class-ure-lib.php:199
|
267 |
+
msgid "Delete:"
|
268 |
+
msgstr "Eliminar:"
|
269 |
+
|
270 |
+
#: ../includes/class-ure-lib.php:206
|
271 |
+
msgid "Capability name (ID): "
|
272 |
+
msgstr "Nom provolegi (ID):"
|
273 |
+
|
274 |
+
# @ ure
|
275 |
+
#: ../includes/class-ure-lib.php:321
|
276 |
+
msgid "Error: "
|
277 |
+
msgstr "Error:"
|
278 |
+
|
279 |
+
# @ ure
|
280 |
+
#: ../includes/class-ure-lib.php:321
|
281 |
+
msgid "Role"
|
282 |
+
msgstr "Rol"
|
283 |
+
|
284 |
+
# @ ure
|
285 |
+
#: ../includes/class-ure-lib.php:321
|
286 |
+
msgid "does not exist"
|
287 |
+
msgstr "no existeix"
|
288 |
+
|
289 |
+
# @ ure
|
290 |
+
#: ../includes/class-ure-lib.php:364
|
291 |
+
msgid "Role is updated successfully"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: ../includes/class-ure-lib.php:366
|
295 |
+
msgid "Roles are updated for all network"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
# @ ure
|
299 |
+
#: ../includes/class-ure-lib.php:372
|
300 |
+
msgid "Error occured during role(s) update"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
# @ ure
|
304 |
+
#: ../includes/class-ure-lib.php:379
|
305 |
+
msgid "User capabilities are updated successfully"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
# @ ure
|
309 |
+
#: ../includes/class-ure-lib.php:384
|
310 |
+
msgid "Error occured during user update"
|
311 |
+
msgstr "Error trobat durant l'actualització del rol"
|
312 |
+
|
313 |
+
# @ ure
|
314 |
+
#: ../includes/class-ure-lib.php:439
|
315 |
+
msgid "User Roles are restored to WordPress default values. "
|
316 |
+
msgstr ""
|
317 |
+
"Els rols d'usuari es restableixen als valors predeterminats de WordPress."
|
318 |
+
|
319 |
+
# @ ure
|
320 |
+
#: ../includes/class-ure-lib.php:1237
|
321 |
+
msgid "Help"
|
322 |
+
msgstr "Ajuda"
|
323 |
|
324 |
# ure
|
325 |
+
#: ../includes/class-ure-lib.php:1576
|
326 |
msgid "Error is occur. Please check the log file."
|
327 |
msgstr "Ha ocorregut un error. Si us plau revisa l'arxiu de registres."
|
328 |
|
329 |
# @ ure
|
330 |
+
#: ../includes/class-ure-lib.php:1601
|
331 |
+
msgid ""
|
332 |
+
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
333 |
+
"only!"
|
|
|
|
|
|
|
334 |
msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
|
335 |
|
336 |
# @ ure
|
337 |
+
#: ../includes/class-ure-lib.php:1616
|
338 |
#, php-format
|
339 |
msgid "Role %s exists already"
|
340 |
msgstr "Rol %s ja existeix"
|
341 |
|
342 |
# @ ure
|
343 |
+
#: ../includes/class-ure-lib.php:1631
|
344 |
msgid "Error is encountered during new role create operation"
|
345 |
msgstr "Error trobat durant la creació d'un nou Rol"
|
346 |
|
347 |
# @ ure
|
348 |
+
#: ../includes/class-ure-lib.php:1633
|
349 |
#, php-format
|
350 |
msgid "Role %s is created successfully"
|
351 |
msgstr "Rol %s s'ha creat correctament"
|
352 |
|
353 |
# @ ure
|
354 |
+
#: ../includes/class-ure-lib.php:1662
|
355 |
msgid "Error encountered during role delete operation"
|
356 |
msgstr "Error trobat durant l'eliminació del Rol"
|
357 |
|
358 |
# @ ure
|
359 |
+
#: ../includes/class-ure-lib.php:1664
|
360 |
#, php-format
|
361 |
msgid "Role %s is deleted successfully"
|
362 |
msgstr "Rol %s s'elimina amb èxit"
|
363 |
|
364 |
# @ ure
|
365 |
+
#: ../includes/class-ure-lib.php:1689
|
366 |
msgid "Error encountered during default role change operation"
|
367 |
msgstr "Error trobat durant el canvi de Rol per defecte"
|
368 |
|
369 |
# @ ure
|
370 |
+
#: ../includes/class-ure-lib.php:1695
|
371 |
#, php-format
|
372 |
msgid "Default role for new users is set to %s successfully"
|
373 |
msgstr "Rol predeterminat per a nous usuaris està establert en %s amb èxit"
|
374 |
|
375 |
# @ ure
|
376 |
+
#: ../includes/class-ure-lib.php:1714
|
377 |
msgid "Editor"
|
378 |
msgstr "Editor"
|
379 |
|
380 |
# @ ure
|
381 |
+
#: ../includes/class-ure-lib.php:1715
|
382 |
msgid "Author"
|
383 |
msgstr "Autor"
|
384 |
|
385 |
# @ ure
|
386 |
+
#: ../includes/class-ure-lib.php:1716
|
387 |
msgid "Contributor"
|
388 |
msgstr "Col·laborador"
|
389 |
|
390 |
# @ ure
|
391 |
+
#: ../includes/class-ure-lib.php:1717
|
392 |
msgid "Subscriber"
|
393 |
msgstr "Subscriptor"
|
394 |
|
395 |
# @ ure
|
396 |
+
#: ../includes/class-ure-lib.php:1719
|
397 |
msgid "Switch themes"
|
398 |
msgstr "Canviar plantilles"
|
399 |
|
400 |
# @ ure
|
401 |
+
#: ../includes/class-ure-lib.php:1720
|
402 |
msgid "Edit themes"
|
403 |
msgstr "Editar plantilles"
|
404 |
|
405 |
# @ ure
|
406 |
+
#: ../includes/class-ure-lib.php:1721
|
407 |
msgid "Activate plugins"
|
408 |
msgstr "Activar connectors"
|
409 |
|
410 |
# @ ure
|
411 |
+
#: ../includes/class-ure-lib.php:1722
|
412 |
msgid "Edit plugins"
|
413 |
msgstr "Editar connectors"
|
414 |
|
415 |
# @ ure
|
416 |
+
#: ../includes/class-ure-lib.php:1723
|
417 |
msgid "Edit users"
|
418 |
msgstr "Editar usuaris"
|
419 |
|
420 |
# @ ure
|
421 |
+
#: ../includes/class-ure-lib.php:1724
|
422 |
msgid "Edit files"
|
423 |
msgstr "Editar arxius"
|
424 |
|
425 |
# @ ure
|
426 |
+
#: ../includes/class-ure-lib.php:1725
|
427 |
msgid "Manage options"
|
428 |
msgstr "Administrar opcions"
|
429 |
|
430 |
# @ ure
|
431 |
+
#: ../includes/class-ure-lib.php:1726
|
432 |
msgid "Moderate comments"
|
433 |
msgstr "Moderar comentaris"
|
434 |
|
435 |
# @ ure
|
436 |
+
#: ../includes/class-ure-lib.php:1727
|
437 |
msgid "Manage categories"
|
438 |
msgstr "Administrar categories"
|
439 |
|
440 |
# @ ure
|
441 |
+
#: ../includes/class-ure-lib.php:1728
|
442 |
msgid "Manage links"
|
443 |
msgstr "Administrar enllaços"
|
444 |
|
445 |
# @ ure
|
446 |
+
#: ../includes/class-ure-lib.php:1729
|
447 |
msgid "Upload files"
|
448 |
msgstr "Pujar arxius"
|
449 |
|
450 |
# @ ure
|
451 |
+
#: ../includes/class-ure-lib.php:1730
|
452 |
msgid "Import"
|
453 |
msgstr "Importar"
|
454 |
|
455 |
# @ ure
|
456 |
+
#: ../includes/class-ure-lib.php:1731
|
457 |
msgid "Unfiltered html"
|
458 |
msgstr "Ometre Filtrat d'HTML"
|
459 |
|
460 |
# @ ure
|
461 |
+
#: ../includes/class-ure-lib.php:1732
|
462 |
msgid "Edit posts"
|
463 |
msgstr "Editar missatges"
|
464 |
|
465 |
# @ ure
|
466 |
+
#: ../includes/class-ure-lib.php:1733
|
467 |
msgid "Edit others posts"
|
468 |
msgstr "Editar missatges de altres"
|
469 |
|
470 |
# @ ure
|
471 |
+
#: ../includes/class-ure-lib.php:1734
|
472 |
msgid "Edit published posts"
|
473 |
msgstr "Editar els missatges publicats"
|
474 |
|
475 |
# @ ure
|
476 |
+
#: ../includes/class-ure-lib.php:1735
|
477 |
msgid "Publish posts"
|
478 |
msgstr "Publicar missatges"
|
479 |
|
480 |
# @ ure
|
481 |
+
#: ../includes/class-ure-lib.php:1736
|
482 |
msgid "Edit pages"
|
483 |
msgstr "Editar pàgines"
|
484 |
|
485 |
# @ ure
|
486 |
+
#: ../includes/class-ure-lib.php:1737
|
487 |
msgid "Read"
|
488 |
msgstr "Llegir"
|
489 |
|
490 |
# @ ure
|
491 |
+
#: ../includes/class-ure-lib.php:1738
|
492 |
msgid "Level 10"
|
493 |
msgstr "Nivell 10"
|
494 |
|
495 |
# @ ure
|
496 |
+
#: ../includes/class-ure-lib.php:1739
|
497 |
msgid "Level 9"
|
498 |
msgstr "Nivell 9"
|
499 |
|
500 |
# @ ure
|
501 |
+
#: ../includes/class-ure-lib.php:1740
|
502 |
msgid "Level 8"
|
503 |
msgstr "Nivell 8"
|
504 |
|
505 |
# @ ure
|
506 |
+
#: ../includes/class-ure-lib.php:1741
|
507 |
msgid "Level 7"
|
508 |
msgstr "Nivell 7"
|
509 |
|
510 |
# @ ure
|
511 |
+
#: ../includes/class-ure-lib.php:1742
|
512 |
msgid "Level 6"
|
513 |
msgstr "Nivell 6"
|
514 |
|
515 |
# @ ure
|
516 |
+
#: ../includes/class-ure-lib.php:1743
|
517 |
msgid "Level 5"
|
518 |
msgstr "Nivell 5"
|
519 |
|
520 |
# @ ure
|
521 |
+
#: ../includes/class-ure-lib.php:1744
|
522 |
msgid "Level 4"
|
523 |
msgstr "Nivell 4"
|
524 |
|
525 |
# @ ure
|
526 |
+
#: ../includes/class-ure-lib.php:1745
|
527 |
msgid "Level 3"
|
528 |
msgstr "Nivell 3"
|
529 |
|
530 |
# @ ure
|
531 |
+
#: ../includes/class-ure-lib.php:1746
|
532 |
msgid "Level 2"
|
533 |
msgstr "Nivell 2"
|
534 |
|
535 |
# @ ure
|
536 |
+
#: ../includes/class-ure-lib.php:1747
|
537 |
msgid "Level 1"
|
538 |
msgstr "Nivell 1"
|
539 |
|
540 |
# @ ure
|
541 |
+
#: ../includes/class-ure-lib.php:1748
|
542 |
msgid "Level 0"
|
543 |
msgstr "Nivell 0"
|
544 |
|
545 |
# @ ure
|
546 |
+
#: ../includes/class-ure-lib.php:1749
|
547 |
msgid "Edit others pages"
|
548 |
msgstr "Editar pàgines de altres"
|
549 |
|
550 |
# @ ure
|
551 |
+
#: ../includes/class-ure-lib.php:1750
|
552 |
msgid "Edit published pages"
|
553 |
msgstr "Editar pàgines publicades"
|
554 |
|
555 |
# @ ure
|
556 |
+
#: ../includes/class-ure-lib.php:1751
|
557 |
msgid "Publish pages"
|
558 |
msgstr "Publicar pàgines"
|
559 |
|
560 |
# @ ure
|
561 |
+
#: ../includes/class-ure-lib.php:1752
|
562 |
msgid "Delete pages"
|
563 |
msgstr "Eliminar pàgines"
|
564 |
|
565 |
# ure
|
566 |
+
#: ../includes/class-ure-lib.php:1753
|
567 |
msgid "Delete others pages"
|
568 |
msgstr "Eliminar pàgines de altres"
|
569 |
|
570 |
# @ ure
|
571 |
+
#: ../includes/class-ure-lib.php:1754
|
572 |
msgid "Delete published pages"
|
573 |
msgstr "Eliminar pàgines publicades"
|
574 |
|
575 |
# ure
|
576 |
+
#: ../includes/class-ure-lib.php:1755
|
577 |
msgid "Delete posts"
|
578 |
msgstr "Eliminar missatges"
|
579 |
|
580 |
# @ ure
|
581 |
+
#: ../includes/class-ure-lib.php:1756
|
582 |
msgid "Delete others posts"
|
583 |
msgstr "Eliminar missatges de altres"
|
584 |
|
585 |
# ure
|
586 |
+
#: ../includes/class-ure-lib.php:1757
|
587 |
msgid "Delete published posts"
|
588 |
msgstr "Eliminar missatges publicats"
|
589 |
|
590 |
# ure
|
591 |
+
#: ../includes/class-ure-lib.php:1758
|
592 |
msgid "Delete private posts"
|
593 |
msgstr "Eliminar missatges privats"
|
594 |
|
595 |
# @ ure
|
596 |
+
#: ../includes/class-ure-lib.php:1759
|
597 |
msgid "Edit private posts"
|
598 |
msgstr "Editar missatges privats"
|
599 |
|
600 |
# @ ure
|
601 |
+
#: ../includes/class-ure-lib.php:1760
|
602 |
msgid "Read private posts"
|
603 |
msgstr "Llegir missatges privats"
|
604 |
|
605 |
# @ ure
|
606 |
+
#: ../includes/class-ure-lib.php:1761
|
607 |
msgid "Delete private pages"
|
608 |
msgstr "Eliminar pàgines privades"
|
609 |
|
610 |
# @ ure
|
611 |
+
#: ../includes/class-ure-lib.php:1762
|
612 |
msgid "Edit private pages"
|
613 |
msgstr "Editar pàgines privades"
|
614 |
|
615 |
# @ ure
|
616 |
+
#: ../includes/class-ure-lib.php:1763
|
617 |
msgid "Read private pages"
|
618 |
msgstr "Llegir pàgines privades"
|
619 |
|
620 |
# @ ure
|
621 |
+
#: ../includes/class-ure-lib.php:1764
|
622 |
msgid "Delete users"
|
623 |
msgstr "Eliminar usuaris"
|
624 |
|
625 |
# @ ure
|
626 |
+
#: ../includes/class-ure-lib.php:1765
|
627 |
msgid "Create users"
|
628 |
msgstr "Crear usuaris"
|
629 |
|
630 |
# @ ure
|
631 |
+
#: ../includes/class-ure-lib.php:1766
|
632 |
msgid "Unfiltered upload"
|
633 |
msgstr "Sense filtre de càrrega"
|
634 |
|
635 |
# @ ure
|
636 |
+
#: ../includes/class-ure-lib.php:1767
|
637 |
msgid "Edit dashboard"
|
638 |
msgstr "Editar taulell"
|
639 |
|
640 |
# @ ure
|
641 |
+
#: ../includes/class-ure-lib.php:1768
|
642 |
msgid "Update plugins"
|
643 |
msgstr "Actualitzar connectors"
|
644 |
|
645 |
# @ ure
|
646 |
+
#: ../includes/class-ure-lib.php:1769
|
647 |
msgid "Delete plugins"
|
648 |
msgstr "Eliminar connectors"
|
649 |
|
650 |
# @ ure
|
651 |
+
#: ../includes/class-ure-lib.php:1770
|
652 |
msgid "Install plugins"
|
653 |
msgstr "Instal·lar connectors"
|
654 |
|
655 |
# @ ure
|
656 |
+
#: ../includes/class-ure-lib.php:1771
|
657 |
msgid "Update themes"
|
658 |
msgstr "Actualitzar plantilles"
|
659 |
|
660 |
# @ ure
|
661 |
+
#: ../includes/class-ure-lib.php:1772
|
662 |
msgid "Install themes"
|
663 |
msgstr "Instal·lar plantilles"
|
664 |
|
665 |
# @ ure
|
666 |
+
#: ../includes/class-ure-lib.php:1773
|
667 |
msgid "Update core"
|
668 |
msgstr "Actualitzar nucli"
|
669 |
|
670 |
# @ ure
|
671 |
+
#: ../includes/class-ure-lib.php:1774
|
672 |
msgid "List users"
|
673 |
msgstr "Llistar usuaris"
|
674 |
|
675 |
# @ ure
|
676 |
+
#: ../includes/class-ure-lib.php:1775
|
677 |
msgid "Remove users"
|
678 |
msgstr "Eliminar usuaris"
|
679 |
|
680 |
# @ ure
|
681 |
+
#: ../includes/class-ure-lib.php:1776
|
682 |
msgid "Add users"
|
683 |
msgstr "Afegir usuaris"
|
684 |
|
685 |
# @ ure
|
686 |
+
#: ../includes/class-ure-lib.php:1777
|
687 |
msgid "Promote users"
|
688 |
msgstr "Promoure usuaris"
|
689 |
|
690 |
# @ ure
|
691 |
+
#: ../includes/class-ure-lib.php:1778
|
692 |
msgid "Edit theme options"
|
693 |
msgstr "Editar opcions de plantilla"
|
694 |
|
695 |
# @ ure
|
696 |
+
#: ../includes/class-ure-lib.php:1779
|
697 |
msgid "Delete themes"
|
698 |
msgstr "Eliminar plantilles"
|
699 |
|
700 |
# @ ure
|
701 |
+
#: ../includes/class-ure-lib.php:1780
|
702 |
msgid "Export"
|
703 |
msgstr "Exportar"
|
704 |
|
705 |
# @ ure
|
706 |
+
#: ../includes/class-ure-lib.php:1890
|
707 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
708 |
+
msgstr ""
|
709 |
+
"Error: el nom del Privilegi només ha de contenir caràcters llatins i dígits."
|
710 |
|
711 |
# @ ure
|
712 |
+
#: ../includes/class-ure-lib.php:1903
|
713 |
#, php-format
|
714 |
msgid "Capability %s is added successfully"
|
715 |
msgstr "Privilegi %s s'ha afegit correctament"
|
716 |
|
717 |
# @ ure
|
718 |
+
#: ../includes/class-ure-lib.php:1905
|
719 |
#, php-format
|
720 |
msgid "Capability %s exists already"
|
721 |
msgstr "Ja existeix el privilegi %s"
|
722 |
|
723 |
# @ ure
|
724 |
+
#: ../includes/class-ure-lib.php:1930
|
725 |
#, php-format
|
726 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
727 |
msgstr "¡Error! No tens permisos per esborrar aquest privilegi: %s !"
|
728 |
|
729 |
# @ ure
|
730 |
+
#: ../includes/class-ure-lib.php:1949
|
731 |
#, php-format
|
732 |
msgid "Capability %s is removed successfully"
|
733 |
msgstr "El privilegi %s s'ha eliminat amb èxit"
|
734 |
|
735 |
# @ ure
|
736 |
+
#: ../includes/class-ure-lib.php:2046
|
737 |
+
msgid "About this Plugin:"
|
738 |
+
msgstr "Sobre aquest connector:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
739 |
|
740 |
# @ ure
|
741 |
+
#: ../includes/class-ure-lib.php:2048
|
742 |
+
msgid "Author's website"
|
743 |
+
msgstr "Lloc web del autor"
|
744 |
|
745 |
# @ ure
|
746 |
+
#: ../includes/class-ure-lib.php:2049
|
747 |
+
msgid "Plugin webpage"
|
748 |
+
msgstr "Pàgina web del connector"
|
|
|
749 |
|
750 |
# @ ure
|
751 |
+
#: ../includes/class-ure-lib.php:2051
|
752 |
+
msgid "FAQ"
|
753 |
+
msgstr "FAQ"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
754 |
|
755 |
# @ ure
|
756 |
+
#: ../includes/class-ure-lib.php:2092
|
757 |
+
msgid "None"
|
758 |
+
msgstr "Cap"
|
759 |
|
760 |
+
#: ../includes/class-ure-lib.php:2141
|
761 |
+
msgid "— No role for this site —"
|
762 |
+
msgstr ""
|
|
|
763 |
|
764 |
+
#: ../includes/ure-user-edit.php:31
|
765 |
+
msgid "Network Super Admin"
|
766 |
+
msgstr ""
|
767 |
|
768 |
# @ ure
|
769 |
+
#: ../includes/ure-user-edit.php:34
|
770 |
msgid "Change capabilities for user"
|
771 |
msgstr "Canviar privilegis d'usuari"
|
772 |
|
773 |
+
#: ../includes/ure-user-edit.php:66
|
774 |
msgid "Primary Role:"
|
775 |
msgstr "Rol principal:"
|
776 |
|
777 |
+
#: ../includes/ure-user-edit.php:75
|
778 |
msgid "bbPress Role:"
|
779 |
msgstr "Rol bbPress:"
|
780 |
|
781 |
# @ ure
|
782 |
+
#: ../includes/ure-user-edit.php:85
|
783 |
msgid "Other Roles:"
|
784 |
msgstr "Altres rols:"
|
785 |
|
786 |
+
#: ../includes/class-ure-screen-help.php:15
|
787 |
+
msgid "Show Administrator role at User Role Editor"
|
788 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
789 |
|
790 |
+
#: ../includes/class-ure-screen-help.php:16
|
791 |
+
msgid ""
|
792 |
+
"turn this option on in order to make the \"Administrator\" role available at "
|
793 |
+
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
794 |
+
"for security reasons."
|
795 |
+
msgstr ""
|
796 |
|
797 |
# @ ure
|
798 |
+
#: ../includes/class-ure-screen-help.php:18
|
799 |
+
#, fuzzy
|
800 |
+
msgid "Show capabilities in the human readable form"
|
801 |
+
msgstr "Mostra privilegis de forma llegible"
|
802 |
|
803 |
+
#: ../includes/class-ure-screen-help.php:19
|
804 |
+
msgid ""
|
805 |
+
"automatically converts capability names from the technical form for internal "
|
806 |
+
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
807 |
+
"others posts\"."
|
808 |
+
msgstr ""
|
809 |
|
810 |
+
#: ../includes/class-ure-screen-help.php:22
|
811 |
+
msgid ""
|
812 |
+
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
813 |
+
"by WordPress. They are left at the user roles for the compatibility purpose "
|
814 |
+
"with the old themes and plugins code. Turning on this option will show those "
|
815 |
+
"deprecated capabilities."
|
816 |
+
msgstr ""
|
817 |
|
818 |
+
#: ../includes/class-ure-screen-help.php:27
|
819 |
+
msgid "Allow create, edit and delete users to not super-admininstrators"
|
820 |
+
msgstr ""
|
|
|
821 |
|
822 |
+
#: ../includes/class-ure-screen-help.php:28
|
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 limitation."
|
826 |
+
msgstr ""
|
lang/ure-es_ES.mo
CHANGED
Binary file
|
lang/ure-es_ES.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -13,90 +13,272 @@ msgstr ""
|
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
"X-Poedit-KeywordsList: __;_e\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
-
"X-Generator: Poedit 1.5.
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "Error: wrong request"
|
21 |
msgstr "Error: Petición inválida"
|
22 |
|
23 |
-
#: ../includes/class-ure-lib.php:
|
24 |
msgid "Role name (ID): "
|
25 |
msgstr "Nombre del Rol (ID):"
|
26 |
|
27 |
-
#: ../includes/class-ure-lib.php:
|
28 |
msgid "Display Role Name: "
|
29 |
msgstr "Mostrar nombre del Rol:"
|
30 |
|
31 |
-
#: ../includes/class-ure-lib.php:
|
32 |
msgid "Make copy of: "
|
33 |
msgstr "Hacer copia de:"
|
34 |
|
35 |
-
#: ../includes/class-ure-lib.php:
|
36 |
-
msgid "Select Role:"
|
37 |
-
msgstr "Seleccionar Rol:"
|
38 |
-
|
39 |
-
#: ../includes/class-ure-lib.php:211
|
40 |
msgid "Delete:"
|
41 |
msgstr "Eliminar:"
|
42 |
|
43 |
-
#: ../includes/class-ure-lib.php:
|
44 |
msgid "Capability name (ID): "
|
45 |
msgstr "Nombre de la Capacidad (ID):"
|
46 |
|
47 |
-
#: ../includes/class-ure-lib.php:
|
48 |
-
#: ../includes/class-user-role-editor.php:430
|
49 |
-
#: ../includes/class-user-role-editor.php:448
|
50 |
-
#: ../includes/class-user-role-editor.php:627
|
51 |
-
msgid "User Role Editor"
|
52 |
-
msgstr "Editor de Roles"
|
53 |
-
|
54 |
-
#: ../includes/class-ure-lib.php:333
|
55 |
msgid "Error: "
|
56 |
msgstr "Error:"
|
57 |
|
58 |
-
#: ../includes/class-ure-lib.php:
|
59 |
msgid "Role"
|
60 |
msgstr "Rol"
|
61 |
|
62 |
-
#: ../includes/class-ure-lib.php:
|
63 |
msgid "does not exist"
|
64 |
msgstr "no existe"
|
65 |
|
66 |
-
#: ../includes/class-ure-lib.php:
|
67 |
msgid "Role is updated successfully"
|
68 |
msgstr "El Rol fue exitosamente actualizado"
|
69 |
|
70 |
-
#: ../includes/class-ure-lib.php:
|
71 |
msgid "Roles are updated for all network"
|
72 |
msgstr "Roles actualizados en toda la Red"
|
73 |
|
74 |
-
#: ../includes/class-ure-lib.php:
|
75 |
msgid "Error occured during role(s) update"
|
76 |
msgstr "Ocurrió un error durante la actualización del Rol"
|
77 |
|
78 |
-
#: ../includes/class-ure-lib.php:
|
79 |
msgid "User capabilities are updated successfully"
|
80 |
msgstr "Las Capacidades de Usuario fueron actualizadas exitosamente"
|
81 |
|
82 |
-
#: ../includes/class-ure-lib.php:
|
83 |
msgid "Error occured during user update"
|
84 |
msgstr "Ocurrió un error durante la actualización del Usuario"
|
85 |
|
86 |
-
#: ../includes/class-ure-lib.php:
|
87 |
msgid "User Roles are restored to WordPress default values. "
|
88 |
msgstr ""
|
89 |
"Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
|
90 |
|
91 |
-
#: ../includes/class-ure-lib.php:
|
92 |
msgid "Help"
|
93 |
msgstr "Ayuda"
|
94 |
|
95 |
-
#: ../includes/class-ure-lib.php:
|
96 |
msgid "Error is occur. Please check the log file."
|
97 |
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
|
98 |
|
99 |
-
#: ../includes/class-ure-lib.php:
|
100 |
msgid ""
|
101 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
102 |
"only!"
|
@@ -104,534 +286,411 @@ msgstr ""
|
|
104 |
"Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
|
105 |
"altos o bajos!"
|
106 |
|
107 |
-
#: ../includes/class-ure-lib.php:
|
108 |
#, php-format
|
109 |
msgid "Role %s exists already"
|
110 |
msgstr "El Rol %s ya existe"
|
111 |
|
112 |
-
#: ../includes/class-ure-lib.php:
|
113 |
msgid "Error is encountered during new role create operation"
|
114 |
msgstr "Un error fue encontrado durante la creación del nuevo Rol"
|
115 |
|
116 |
-
#: ../includes/class-ure-lib.php:
|
117 |
#, php-format
|
118 |
msgid "Role %s is created successfully"
|
119 |
msgstr "El Rol %s fue creado exitosamente"
|
120 |
|
121 |
-
#: ../includes/class-ure-lib.php:
|
122 |
msgid "Error encountered during role delete operation"
|
123 |
msgstr "Un error fue encontrado durante la eliminación del Rol"
|
124 |
|
125 |
-
#: ../includes/class-ure-lib.php:
|
126 |
#, php-format
|
127 |
msgid "Role %s is deleted successfully"
|
128 |
msgstr "El Rol %s fue eliminado exitosamente"
|
129 |
|
130 |
-
#: ../includes/class-ure-lib.php:
|
131 |
msgid "Error encountered during default role change operation"
|
132 |
msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
|
133 |
|
134 |
-
#: ../includes/class-ure-lib.php:
|
135 |
#, php-format
|
136 |
msgid "Default role for new users is set to %s successfully"
|
137 |
msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
|
138 |
|
139 |
-
#: ../includes/class-ure-lib.php:
|
140 |
msgid "Editor"
|
141 |
msgstr "Editor"
|
142 |
|
143 |
-
#: ../includes/class-ure-lib.php:
|
144 |
msgid "Author"
|
145 |
msgstr "Autor"
|
146 |
|
147 |
-
#: ../includes/class-ure-lib.php:
|
148 |
msgid "Contributor"
|
149 |
msgstr "Contribuyente"
|
150 |
|
151 |
-
#: ../includes/class-ure-lib.php:
|
152 |
msgid "Subscriber"
|
153 |
msgstr "Suscriptor"
|
154 |
|
155 |
-
#: ../includes/class-ure-lib.php:
|
156 |
msgid "Switch themes"
|
157 |
msgstr "Cambiar temas (plantillas)"
|
158 |
|
159 |
-
#: ../includes/class-ure-lib.php:
|
160 |
msgid "Edit themes"
|
161 |
msgstr "Editar temas (plantillas)"
|
162 |
|
163 |
-
#: ../includes/class-ure-lib.php:
|
164 |
msgid "Activate plugins"
|
165 |
msgstr "Activar plugins"
|
166 |
|
167 |
-
#: ../includes/class-ure-lib.php:
|
168 |
msgid "Edit plugins"
|
169 |
msgstr "Editar plugins"
|
170 |
|
171 |
-
#: ../includes/class-ure-lib.php:
|
172 |
msgid "Edit users"
|
173 |
msgstr "Editar usuarios"
|
174 |
|
175 |
-
#: ../includes/class-ure-lib.php:
|
176 |
msgid "Edit files"
|
177 |
msgstr "Editar archivos"
|
178 |
|
179 |
-
#: ../includes/class-ure-lib.php:
|
180 |
msgid "Manage options"
|
181 |
msgstr "Administrar opciones"
|
182 |
|
183 |
-
#: ../includes/class-ure-lib.php:
|
184 |
msgid "Moderate comments"
|
185 |
msgstr "Moderar comentarios"
|
186 |
|
187 |
-
#: ../includes/class-ure-lib.php:
|
188 |
msgid "Manage categories"
|
189 |
msgstr "Administrar categorías"
|
190 |
|
191 |
-
#: ../includes/class-ure-lib.php:
|
192 |
msgid "Manage links"
|
193 |
msgstr "Administrar enlaces"
|
194 |
|
195 |
-
#: ../includes/class-ure-lib.php:
|
196 |
msgid "Upload files"
|
197 |
msgstr "Subir archivos"
|
198 |
|
199 |
-
#: ../includes/class-ure-lib.php:
|
200 |
msgid "Import"
|
201 |
msgstr "Importar"
|
202 |
|
203 |
-
#: ../includes/class-ure-lib.php:
|
204 |
msgid "Unfiltered html"
|
205 |
msgstr "HTML sin filtrar"
|
206 |
|
207 |
-
#: ../includes/class-ure-lib.php:
|
208 |
msgid "Edit posts"
|
209 |
msgstr "Editar entradas"
|
210 |
|
211 |
-
#: ../includes/class-ure-lib.php:
|
212 |
msgid "Edit others posts"
|
213 |
msgstr "Editar entradas ajenas"
|
214 |
|
215 |
-
#: ../includes/class-ure-lib.php:
|
216 |
msgid "Edit published posts"
|
217 |
msgstr "Editar entradas publicadas"
|
218 |
|
219 |
-
#: ../includes/class-ure-lib.php:
|
220 |
msgid "Publish posts"
|
221 |
msgstr "Publicar entradas"
|
222 |
|
223 |
-
#: ../includes/class-ure-lib.php:
|
224 |
msgid "Edit pages"
|
225 |
msgstr "Editar páginas"
|
226 |
|
227 |
-
#: ../includes/class-ure-lib.php:
|
228 |
msgid "Read"
|
229 |
msgstr "Leer"
|
230 |
|
231 |
-
#: ../includes/class-ure-lib.php:
|
232 |
msgid "Level 10"
|
233 |
msgstr "Nivel 10"
|
234 |
|
235 |
-
#: ../includes/class-ure-lib.php:
|
236 |
msgid "Level 9"
|
237 |
msgstr "Nivel 9"
|
238 |
|
239 |
-
#: ../includes/class-ure-lib.php:
|
240 |
msgid "Level 8"
|
241 |
msgstr "Nivel 8"
|
242 |
|
243 |
-
#: ../includes/class-ure-lib.php:
|
244 |
msgid "Level 7"
|
245 |
msgstr "Nivel 7"
|
246 |
|
247 |
-
#: ../includes/class-ure-lib.php:
|
248 |
msgid "Level 6"
|
249 |
msgstr "Nivel 6"
|
250 |
|
251 |
-
#: ../includes/class-ure-lib.php:
|
252 |
msgid "Level 5"
|
253 |
msgstr "Nivel 5"
|
254 |
|
255 |
-
#: ../includes/class-ure-lib.php:
|
256 |
msgid "Level 4"
|
257 |
msgstr "Nivel 4"
|
258 |
|
259 |
-
#: ../includes/class-ure-lib.php:
|
260 |
msgid "Level 3"
|
261 |
msgstr "Nivel 3"
|
262 |
|
263 |
-
#: ../includes/class-ure-lib.php:
|
264 |
msgid "Level 2"
|
265 |
msgstr "Nivel 2"
|
266 |
|
267 |
-
#: ../includes/class-ure-lib.php:
|
268 |
msgid "Level 1"
|
269 |
msgstr "Nivel 1"
|
270 |
|
271 |
-
#: ../includes/class-ure-lib.php:
|
272 |
msgid "Level 0"
|
273 |
msgstr "Nivel 0"
|
274 |
|
275 |
-
#: ../includes/class-ure-lib.php:
|
276 |
msgid "Edit others pages"
|
277 |
msgstr "Editar páginas ajenas"
|
278 |
|
279 |
-
#: ../includes/class-ure-lib.php:
|
280 |
msgid "Edit published pages"
|
281 |
msgstr "Editar páginas publicadas"
|
282 |
|
283 |
-
#: ../includes/class-ure-lib.php:
|
284 |
msgid "Publish pages"
|
285 |
msgstr "Publicar páginas"
|
286 |
|
287 |
-
#: ../includes/class-ure-lib.php:
|
288 |
msgid "Delete pages"
|
289 |
msgstr "Eliminar páginas"
|
290 |
|
291 |
-
#: ../includes/class-ure-lib.php:
|
292 |
msgid "Delete others pages"
|
293 |
msgstr "Eliminar páginas ajenas"
|
294 |
|
295 |
-
#: ../includes/class-ure-lib.php:
|
296 |
msgid "Delete published pages"
|
297 |
msgstr "Eliminar páginas publicadas"
|
298 |
|
299 |
-
#: ../includes/class-ure-lib.php:
|
300 |
msgid "Delete posts"
|
301 |
msgstr "Eliminar entradas"
|
302 |
|
303 |
-
#: ../includes/class-ure-lib.php:
|
304 |
msgid "Delete others posts"
|
305 |
msgstr "Eliminar entradas ajenas"
|
306 |
|
307 |
-
#: ../includes/class-ure-lib.php:
|
308 |
msgid "Delete published posts"
|
309 |
msgstr "Eliminar entradas publicadas"
|
310 |
|
311 |
-
#: ../includes/class-ure-lib.php:
|
312 |
msgid "Delete private posts"
|
313 |
msgstr "Eliminar entradas privadas"
|
314 |
|
315 |
-
#: ../includes/class-ure-lib.php:
|
316 |
msgid "Edit private posts"
|
317 |
msgstr "Editar entradas privadas"
|
318 |
|
319 |
-
#: ../includes/class-ure-lib.php:
|
320 |
msgid "Read private posts"
|
321 |
msgstr "Leer entradas privadas"
|
322 |
|
323 |
-
#: ../includes/class-ure-lib.php:
|
324 |
msgid "Delete private pages"
|
325 |
msgstr "Eliminar páginas privadas"
|
326 |
|
327 |
-
#: ../includes/class-ure-lib.php:
|
328 |
msgid "Edit private pages"
|
329 |
msgstr "Editar páginas privadas"
|
330 |
|
331 |
-
#: ../includes/class-ure-lib.php:
|
332 |
msgid "Read private pages"
|
333 |
msgstr "Leer páginas privadas"
|
334 |
|
335 |
-
#: ../includes/class-ure-lib.php:
|
336 |
msgid "Delete users"
|
337 |
msgstr "Eliminar usuarios"
|
338 |
|
339 |
-
#: ../includes/class-ure-lib.php:
|
340 |
msgid "Create users"
|
341 |
msgstr "Crear usuarios"
|
342 |
|
343 |
-
#: ../includes/class-ure-lib.php:
|
344 |
msgid "Unfiltered upload"
|
345 |
msgstr "Subir sin filtrado"
|
346 |
|
347 |
-
#: ../includes/class-ure-lib.php:
|
348 |
msgid "Edit dashboard"
|
349 |
msgstr "Editar escritorio"
|
350 |
|
351 |
-
#: ../includes/class-ure-lib.php:
|
352 |
msgid "Update plugins"
|
353 |
msgstr "Actualizar plugins"
|
354 |
|
355 |
-
#: ../includes/class-ure-lib.php:
|
356 |
msgid "Delete plugins"
|
357 |
msgstr "Eliminar plugins"
|
358 |
|
359 |
-
#: ../includes/class-ure-lib.php:
|
360 |
msgid "Install plugins"
|
361 |
msgstr "Instalar plugins"
|
362 |
|
363 |
-
#: ../includes/class-ure-lib.php:
|
364 |
msgid "Update themes"
|
365 |
msgstr "Actualizar temas (plantillas)"
|
366 |
|
367 |
-
#: ../includes/class-ure-lib.php:
|
368 |
msgid "Install themes"
|
369 |
msgstr "Instalar temas (plantillas)"
|
370 |
|
371 |
-
#: ../includes/class-ure-lib.php:
|
372 |
msgid "Update core"
|
373 |
msgstr "Actualizar núcleo"
|
374 |
|
375 |
-
#: ../includes/class-ure-lib.php:
|
376 |
msgid "List users"
|
377 |
msgstr "Listar usuarios"
|
378 |
|
379 |
-
#: ../includes/class-ure-lib.php:
|
380 |
msgid "Remove users"
|
381 |
msgstr "Eliminar usuarios"
|
382 |
|
383 |
-
#: ../includes/class-ure-lib.php:
|
384 |
msgid "Add users"
|
385 |
msgstr "Agregar usuarios"
|
386 |
|
387 |
-
#: ../includes/class-ure-lib.php:
|
388 |
msgid "Promote users"
|
389 |
msgstr "Promover usuarios"
|
390 |
|
391 |
-
#: ../includes/class-ure-lib.php:
|
392 |
msgid "Edit theme options"
|
393 |
msgstr "Editar opciones del tema (plantilla)"
|
394 |
|
395 |
-
#: ../includes/class-ure-lib.php:
|
396 |
msgid "Delete themes"
|
397 |
msgstr "Eliminar temas (plantillas)"
|
398 |
|
399 |
-
#: ../includes/class-ure-lib.php:
|
400 |
msgid "Export"
|
401 |
msgstr "Exportar"
|
402 |
|
403 |
-
#: ../includes/class-ure-lib.php:
|
404 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
405 |
msgstr ""
|
406 |
"Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
|
407 |
|
408 |
-
#: ../includes/class-ure-lib.php:
|
409 |
#, php-format
|
410 |
msgid "Capability %s is added successfully"
|
411 |
msgstr "La Capacidad %s fue agregada exitosamente"
|
412 |
|
413 |
-
#: ../includes/class-ure-lib.php:
|
414 |
#, php-format
|
415 |
msgid "Capability %s exists already"
|
416 |
msgstr "La Capacidad %s ya existe"
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
#, php-format
|
420 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
421 |
msgstr ""
|
422 |
"¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
|
423 |
|
424 |
-
#: ../includes/class-ure-lib.php:
|
425 |
#, php-format
|
426 |
msgid "Capability %s is removed successfully"
|
427 |
msgstr "La Capacidad %s fue eliminada exitosamente"
|
428 |
|
429 |
-
#: ../includes/class-ure-lib.php:
|
430 |
msgid "About this Plugin:"
|
431 |
msgstr "Acerca de este Plugin:"
|
432 |
|
433 |
-
#: ../includes/class-ure-lib.php:
|
434 |
msgid "Author's website"
|
435 |
msgstr "Sitio web del Autor"
|
436 |
|
437 |
-
#: ../includes/class-ure-lib.php:
|
438 |
msgid "Plugin webpage"
|
439 |
msgstr "Página web del Plugin"
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
-
#: ../includes/class-user-role-editor.php:418
|
443 |
-
msgid "Changelog"
|
444 |
-
msgstr "Registro de cambios"
|
445 |
-
|
446 |
-
#: ../includes/class-ure-lib.php:1996
|
447 |
msgid "FAQ"
|
448 |
msgstr "FAQ"
|
449 |
|
450 |
-
#: ../includes/class-ure-lib.php:
|
451 |
msgid "None"
|
452 |
msgstr "Ninguno"
|
453 |
|
454 |
-
#: ../includes/class-
|
455 |
-
|
456 |
-
|
457 |
-
msgstr "No tienes los suficientes permisos para editar este usuario"
|
458 |
-
|
459 |
-
#: ../includes/class-user-role-editor.php:312
|
460 |
-
msgid "Capabilities"
|
461 |
-
msgstr "Capacidades"
|
462 |
-
|
463 |
-
#: ../includes/class-user-role-editor.php:405
|
464 |
-
msgid "Settings"
|
465 |
-
msgstr "Configuración"
|
466 |
-
|
467 |
-
#: ../includes/class-user-role-editor.php:484
|
468 |
-
msgid "User Role Editor options are updated"
|
469 |
-
msgstr "Opciones actualizadas"
|
470 |
-
|
471 |
-
#: ../includes/class-user-role-editor.php:531
|
472 |
-
msgid "Insufficient permissions to work with User Role Editor"
|
473 |
-
msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
|
474 |
-
|
475 |
-
#: ../includes/class-user-role-editor.php:584
|
476 |
-
msgid "Select All"
|
477 |
-
msgstr "Seleccionar todo"
|
478 |
|
479 |
-
#: ../includes/
|
480 |
-
msgid "
|
481 |
-
msgstr "
|
482 |
|
483 |
-
#: ../includes/
|
484 |
-
msgid "
|
485 |
-
msgstr "
|
486 |
|
487 |
-
#: ../includes/
|
488 |
-
msgid "
|
489 |
-
msgstr "
|
490 |
|
491 |
-
#: ../includes/
|
492 |
-
msgid "
|
493 |
-
msgstr "
|
494 |
|
495 |
-
#: ../includes/
|
496 |
-
msgid "
|
497 |
-
msgstr "
|
498 |
|
499 |
-
#: ../includes/class-
|
500 |
-
msgid "
|
501 |
-
msgstr "
|
502 |
|
503 |
-
#: ../includes/class-
|
504 |
msgid ""
|
505 |
-
"
|
506 |
-
"
|
|
|
507 |
msgstr ""
|
508 |
-
"¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
|
509 |
-
"altos o bajos!"
|
510 |
|
511 |
-
#: ../includes/class-
|
512 |
-
msgid "
|
513 |
-
msgstr "
|
514 |
-
|
515 |
-
#: ../includes/class-user-role-editor.php:593
|
516 |
-
msgid "Delete Role"
|
517 |
-
msgstr "Eliminar Rol"
|
518 |
-
|
519 |
-
#: ../includes/class-user-role-editor.php:594
|
520 |
-
msgid "Cancel"
|
521 |
-
msgstr "Cancelar"
|
522 |
-
|
523 |
-
#: ../includes/class-user-role-editor.php:595
|
524 |
-
msgid "Add Capability"
|
525 |
-
msgstr "Agregar Capacidad"
|
526 |
-
|
527 |
-
#: ../includes/class-user-role-editor.php:596
|
528 |
-
#: ../includes/class-user-role-editor.php:601
|
529 |
-
msgid "Delete Capability"
|
530 |
-
msgstr "Eliminar Capacidades"
|
531 |
-
|
532 |
-
#: ../includes/class-user-role-editor.php:597
|
533 |
-
msgid "Reset"
|
534 |
-
msgstr "Reiniciar"
|
535 |
|
536 |
-
#: ../includes/class-
|
537 |
msgid ""
|
538 |
-
"
|
539 |
-
"
|
540 |
-
"
|
541 |
msgstr ""
|
542 |
-
"Reiniciar Roles a los predeterminados de WordPress. Ten cuidado, todos los "
|
543 |
-
"cambios que tú hayas realizado (o ejecutados por algún plugin) se perderán. "
|
544 |
-
"Algunos plugins como S2Member, WooCommerce podrían necesitar una "
|
545 |
-
"reactivación ¿Deseas continuar?"
|
546 |
-
|
547 |
-
#: ../includes/class-user-role-editor.php:599
|
548 |
-
msgid "Default Role"
|
549 |
-
msgstr "Rol Predeterminado"
|
550 |
-
|
551 |
-
#: ../includes/class-user-role-editor.php:600
|
552 |
-
msgid "Set New Default Role"
|
553 |
-
msgstr "Establecer nuevo Rol"
|
554 |
|
555 |
-
#: ../includes/class-
|
556 |
msgid ""
|
557 |
-
"
|
558 |
-
"
|
|
|
|
|
559 |
msgstr ""
|
560 |
-
"¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
|
561 |
-
"algún plugin o código personalizado"
|
562 |
|
563 |
-
#: ../includes/class-
|
564 |
-
msgid "
|
565 |
-
msgstr "
|
566 |
|
567 |
-
#: ../includes/class-
|
568 |
msgid ""
|
569 |
-
"
|
570 |
-
"
|
571 |
msgstr ""
|
572 |
-
"¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
|
573 |
-
"guiones altos o bajos!"
|
574 |
-
|
575 |
-
#: ../includes/class-user-role-editor.php:630
|
576 |
-
#: ../includes/class-user-role-editor.php:665
|
577 |
-
msgid "Other Roles"
|
578 |
-
msgstr "Otros Roles"
|
579 |
-
|
580 |
-
#: ../includes/class-user-role-editor.php:640
|
581 |
-
msgid "Edit"
|
582 |
-
msgstr "Editar"
|
583 |
-
|
584 |
-
#: ../includes/settings-template.php:60
|
585 |
-
msgid "Save"
|
586 |
-
msgstr "Guardar"
|
587 |
-
|
588 |
-
#: ../includes/ure-role-edit.php:17
|
589 |
-
msgid "Select Role and change its capabilities list"
|
590 |
-
msgstr "Selecciona un rol y modifica su lista de Capacidades"
|
591 |
-
|
592 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:51
|
593 |
-
msgid "Show capabilities in human readable form"
|
594 |
-
msgstr "Mostrar Capacidades de forma legible"
|
595 |
-
|
596 |
-
#: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
|
597 |
-
msgid "Show deprecated capabilities"
|
598 |
-
msgstr "Mostrar Capacidades obsoletas"
|
599 |
-
|
600 |
-
#: ../includes/ure-role-edit.php:45
|
601 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
602 |
-
msgstr "Si está marcado, se aplicará la acción a TODOS los sitios de la Red"
|
603 |
-
|
604 |
-
#: ../includes/ure-role-edit.php:57
|
605 |
-
msgid "Apply to All Sites"
|
606 |
-
msgstr "Aplicar a todos los Sitios"
|
607 |
-
|
608 |
-
#: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:106
|
609 |
-
msgid "Core capabilities:"
|
610 |
-
msgstr "Capacidades del núcleo del sistema:"
|
611 |
-
|
612 |
-
#: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:108
|
613 |
-
msgid "Quick filter:"
|
614 |
-
msgstr "Filtro rápido:"
|
615 |
-
|
616 |
-
#: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:127
|
617 |
-
msgid "Custom capabilities:"
|
618 |
-
msgstr "Capacidades personalizadas:"
|
619 |
-
|
620 |
-
#: ../includes/ure-user-edit.php:34
|
621 |
-
msgid "Change capabilities for user"
|
622 |
-
msgstr "Cambiar Capacidades para el usuario"
|
623 |
-
|
624 |
-
#: ../includes/ure-user-edit.php:66
|
625 |
-
msgid "Primary Role:"
|
626 |
-
msgstr "Rol Primario:"
|
627 |
-
|
628 |
-
#: ../includes/ure-user-edit.php:77
|
629 |
-
msgid "bbPress Role:"
|
630 |
-
msgstr "Rol de bbPress:"
|
631 |
-
|
632 |
-
#: ../includes/ure-user-edit.php:87
|
633 |
-
msgid "Other Roles:"
|
634 |
-
msgstr "Otros Roles:"
|
635 |
|
636 |
#~ msgid "Only"
|
637 |
#~ msgstr "Solamente"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-10-21 12:12+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"
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
"X-Poedit-KeywordsList: __;_e\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/settings-template.php:63
|
20 |
+
msgid "Save"
|
21 |
+
msgstr "Guardar"
|
22 |
+
|
23 |
+
#: ../includes/class-user-role-editor.php:171
|
24 |
+
#: ../includes/class-user-role-editor.php:173
|
25 |
+
msgid "You do not have permission to edit this user."
|
26 |
+
msgstr "No tienes los suficientes permisos para editar este usuario"
|
27 |
+
|
28 |
+
#: ../includes/class-user-role-editor.php:314
|
29 |
+
msgid "Capabilities"
|
30 |
+
msgstr "Capacidades"
|
31 |
+
|
32 |
+
#: ../includes/class-user-role-editor.php:407
|
33 |
+
msgid "Settings"
|
34 |
+
msgstr "Configuración"
|
35 |
+
|
36 |
+
#: ../includes/class-user-role-editor.php:420
|
37 |
+
#: ../includes/class-ure-lib.php:2050
|
38 |
+
msgid "Changelog"
|
39 |
+
msgstr "Registro de cambios"
|
40 |
+
|
41 |
+
#: ../includes/class-user-role-editor.php:442
|
42 |
+
msgid "Overview"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: ../includes/class-user-role-editor.php:451
|
46 |
+
#: ../includes/class-user-role-editor.php:479
|
47 |
+
#: ../includes/class-user-role-editor.php:674
|
48 |
+
#: ../includes/class-ure-lib.php:223
|
49 |
+
msgid "User Role Editor"
|
50 |
+
msgstr "Editor de Roles"
|
51 |
+
|
52 |
+
#: ../includes/class-user-role-editor.php:497
|
53 |
+
msgid ""
|
54 |
+
"You do not have sufficient permissions to manage options for User Role "
|
55 |
+
"Editor."
|
56 |
+
msgstr "Permisos insuficientes para trabajar"
|
57 |
+
|
58 |
+
#: ../includes/class-user-role-editor.php:526
|
59 |
+
msgid "User Role Editor options are updated"
|
60 |
+
msgstr "Opciones actualizadas"
|
61 |
+
|
62 |
+
#: ../includes/class-user-role-editor.php:571
|
63 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
64 |
+
msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
|
65 |
+
|
66 |
+
#: ../includes/class-user-role-editor.php:624
|
67 |
+
msgid "Select All"
|
68 |
+
msgstr "Seleccionar todo"
|
69 |
+
|
70 |
+
#: ../includes/class-user-role-editor.php:625
|
71 |
+
msgid "Unselect All"
|
72 |
+
msgstr "Deseleccionar todo"
|
73 |
+
|
74 |
+
#: ../includes/class-user-role-editor.php:626
|
75 |
+
msgid "Reverse"
|
76 |
+
msgstr "Revertir"
|
77 |
+
|
78 |
+
#: ../includes/class-user-role-editor.php:627
|
79 |
+
msgid "Update"
|
80 |
+
msgstr "Actualizar"
|
81 |
+
|
82 |
+
#: ../includes/class-user-role-editor.php:628
|
83 |
+
msgid "Please confirm permissions update"
|
84 |
+
msgstr "Por favor confirma las actualizaciones de permisos"
|
85 |
+
|
86 |
+
#: ../includes/class-user-role-editor.php:629
|
87 |
+
msgid "Add New Role"
|
88 |
+
msgstr "Agregar nuevo Rol"
|
89 |
+
|
90 |
+
#: ../includes/class-user-role-editor.php:630
|
91 |
+
msgid " Role name (ID) can not be empty!"
|
92 |
+
msgstr "¡El nombre del Rol (ID) no puede estar vacío!"
|
93 |
+
|
94 |
+
#: ../includes/class-user-role-editor.php:631
|
95 |
+
msgid ""
|
96 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
97 |
+
"only!"
|
98 |
+
msgstr ""
|
99 |
+
"¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
|
100 |
+
"altos o bajos!"
|
101 |
+
|
102 |
+
#: ../includes/class-user-role-editor.php:632
|
103 |
+
msgid "Add Role"
|
104 |
+
msgstr "Agregar Rol"
|
105 |
+
|
106 |
+
#: ../includes/class-user-role-editor.php:633
|
107 |
+
msgid "Delete Role"
|
108 |
+
msgstr "Eliminar Rol"
|
109 |
+
|
110 |
+
#: ../includes/class-user-role-editor.php:634
|
111 |
+
msgid "Cancel"
|
112 |
+
msgstr "Cancelar"
|
113 |
+
|
114 |
+
#: ../includes/class-user-role-editor.php:635
|
115 |
+
msgid "Add Capability"
|
116 |
+
msgstr "Agregar Capacidad"
|
117 |
+
|
118 |
+
#: ../includes/class-user-role-editor.php:636
|
119 |
+
#: ../includes/class-user-role-editor.php:641
|
120 |
+
msgid "Delete Capability"
|
121 |
+
msgstr "Eliminar Capacidades"
|
122 |
+
|
123 |
+
#: ../includes/class-user-role-editor.php:637
|
124 |
+
msgid "Reset"
|
125 |
+
msgstr "Reiniciar"
|
126 |
+
|
127 |
+
#: ../includes/class-user-role-editor.php:638
|
128 |
+
msgid ""
|
129 |
+
"Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
130 |
+
"plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
|
131 |
+
"could be needed. Continue?"
|
132 |
+
msgstr ""
|
133 |
+
"Reiniciar Roles a los predeterminados de WordPress. Ten cuidado, todos los "
|
134 |
+
"cambios que tú hayas realizado (o ejecutados por algún plugin) se perderán. "
|
135 |
+
"Algunos plugins como S2Member, WooCommerce podrían necesitar una "
|
136 |
+
"reactivación ¿Deseas continuar?"
|
137 |
+
|
138 |
+
#: ../includes/class-user-role-editor.php:639
|
139 |
+
msgid "Default Role"
|
140 |
+
msgstr "Rol Predeterminado"
|
141 |
+
|
142 |
+
#: ../includes/class-user-role-editor.php:640
|
143 |
+
msgid "Set New Default Role"
|
144 |
+
msgstr "Establecer nuevo Rol"
|
145 |
+
|
146 |
+
#: ../includes/class-user-role-editor.php:642
|
147 |
+
msgid ""
|
148 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
149 |
+
"or other custom code"
|
150 |
+
msgstr ""
|
151 |
+
"¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
|
152 |
+
"algún plugin o código personalizado"
|
153 |
+
|
154 |
+
#: ../includes/class-user-role-editor.php:643
|
155 |
+
msgid " Capability name (ID) can not be empty!"
|
156 |
+
msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
|
157 |
+
|
158 |
+
#: ../includes/class-user-role-editor.php:644
|
159 |
+
msgid ""
|
160 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
161 |
+
"underscore only!"
|
162 |
+
msgstr ""
|
163 |
+
"¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
|
164 |
+
"guiones altos o bajos!"
|
165 |
+
|
166 |
+
#: ../includes/class-user-role-editor.php:677
|
167 |
+
#: ../includes/class-user-role-editor.php:705
|
168 |
+
msgid "Other Roles"
|
169 |
+
msgstr "Otros Roles"
|
170 |
+
|
171 |
+
#: ../includes/class-user-role-editor.php:687
|
172 |
+
msgid "Edit"
|
173 |
+
msgstr "Editar"
|
174 |
+
|
175 |
+
#: ../includes/ure-role-edit.php:17
|
176 |
+
msgid "Select Role and change its capabilities list"
|
177 |
+
msgstr "Selecciona un rol y modifica su lista de Capacidades"
|
178 |
+
|
179 |
+
#: ../includes/ure-role-edit.php:19 ../includes/class-ure-lib.php:184
|
180 |
+
msgid "Select Role:"
|
181 |
+
msgstr "Seleccionar Rol:"
|
182 |
+
|
183 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:51
|
184 |
+
msgid "Show capabilities in human readable form"
|
185 |
+
msgstr "Mostrar Capacidades de forma legible"
|
186 |
+
|
187 |
+
#: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
|
188 |
+
#: ../includes/class-ure-screen-help.php:21
|
189 |
+
msgid "Show deprecated capabilities"
|
190 |
+
msgstr "Mostrar Capacidades obsoletas"
|
191 |
+
|
192 |
+
#: ../includes/ure-role-edit.php:45
|
193 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
194 |
+
msgstr "Si está marcado, se aplicará la acción a TODOS los sitios de la Red"
|
195 |
+
|
196 |
+
#: ../includes/ure-role-edit.php:57
|
197 |
+
msgid "Apply to All Sites"
|
198 |
+
msgstr "Aplicar a todos los Sitios"
|
199 |
+
|
200 |
+
#: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:104
|
201 |
+
msgid "Core capabilities:"
|
202 |
+
msgstr "Capacidades del núcleo del sistema:"
|
203 |
+
|
204 |
+
#: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:106
|
205 |
+
msgid "Quick filter:"
|
206 |
+
msgstr "Filtro rápido:"
|
207 |
+
|
208 |
+
#: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:125
|
209 |
+
msgid "Custom capabilities:"
|
210 |
+
msgstr "Capacidades personalizadas:"
|
211 |
+
|
212 |
+
#: ../includes/class-ure-lib.php:141
|
213 |
msgid "Error: wrong request"
|
214 |
msgstr "Error: Petición inválida"
|
215 |
|
216 |
+
#: ../includes/class-ure-lib.php:173
|
217 |
msgid "Role name (ID): "
|
218 |
msgstr "Nombre del Rol (ID):"
|
219 |
|
220 |
+
#: ../includes/class-ure-lib.php:175
|
221 |
msgid "Display Role Name: "
|
222 |
msgstr "Mostrar nombre del Rol:"
|
223 |
|
224 |
+
#: ../includes/class-ure-lib.php:177
|
225 |
msgid "Make copy of: "
|
226 |
msgstr "Hacer copia de:"
|
227 |
|
228 |
+
#: ../includes/class-ure-lib.php:199
|
|
|
|
|
|
|
|
|
229 |
msgid "Delete:"
|
230 |
msgstr "Eliminar:"
|
231 |
|
232 |
+
#: ../includes/class-ure-lib.php:206
|
233 |
msgid "Capability name (ID): "
|
234 |
msgstr "Nombre de la Capacidad (ID):"
|
235 |
|
236 |
+
#: ../includes/class-ure-lib.php:321
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
msgid "Error: "
|
238 |
msgstr "Error:"
|
239 |
|
240 |
+
#: ../includes/class-ure-lib.php:321
|
241 |
msgid "Role"
|
242 |
msgstr "Rol"
|
243 |
|
244 |
+
#: ../includes/class-ure-lib.php:321
|
245 |
msgid "does not exist"
|
246 |
msgstr "no existe"
|
247 |
|
248 |
+
#: ../includes/class-ure-lib.php:364
|
249 |
msgid "Role is updated successfully"
|
250 |
msgstr "El Rol fue exitosamente actualizado"
|
251 |
|
252 |
+
#: ../includes/class-ure-lib.php:366
|
253 |
msgid "Roles are updated for all network"
|
254 |
msgstr "Roles actualizados en toda la Red"
|
255 |
|
256 |
+
#: ../includes/class-ure-lib.php:372
|
257 |
msgid "Error occured during role(s) update"
|
258 |
msgstr "Ocurrió un error durante la actualización del Rol"
|
259 |
|
260 |
+
#: ../includes/class-ure-lib.php:379
|
261 |
msgid "User capabilities are updated successfully"
|
262 |
msgstr "Las Capacidades de Usuario fueron actualizadas exitosamente"
|
263 |
|
264 |
+
#: ../includes/class-ure-lib.php:384
|
265 |
msgid "Error occured during user update"
|
266 |
msgstr "Ocurrió un error durante la actualización del Usuario"
|
267 |
|
268 |
+
#: ../includes/class-ure-lib.php:439
|
269 |
msgid "User Roles are restored to WordPress default values. "
|
270 |
msgstr ""
|
271 |
"Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
|
272 |
|
273 |
+
#: ../includes/class-ure-lib.php:1237
|
274 |
msgid "Help"
|
275 |
msgstr "Ayuda"
|
276 |
|
277 |
+
#: ../includes/class-ure-lib.php:1576
|
278 |
msgid "Error is occur. Please check the log file."
|
279 |
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
|
280 |
|
281 |
+
#: ../includes/class-ure-lib.php:1601
|
282 |
msgid ""
|
283 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
284 |
"only!"
|
286 |
"Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
|
287 |
"altos o bajos!"
|
288 |
|
289 |
+
#: ../includes/class-ure-lib.php:1616
|
290 |
#, php-format
|
291 |
msgid "Role %s exists already"
|
292 |
msgstr "El Rol %s ya existe"
|
293 |
|
294 |
+
#: ../includes/class-ure-lib.php:1631
|
295 |
msgid "Error is encountered during new role create operation"
|
296 |
msgstr "Un error fue encontrado durante la creación del nuevo Rol"
|
297 |
|
298 |
+
#: ../includes/class-ure-lib.php:1633
|
299 |
#, php-format
|
300 |
msgid "Role %s is created successfully"
|
301 |
msgstr "El Rol %s fue creado exitosamente"
|
302 |
|
303 |
+
#: ../includes/class-ure-lib.php:1662
|
304 |
msgid "Error encountered during role delete operation"
|
305 |
msgstr "Un error fue encontrado durante la eliminación del Rol"
|
306 |
|
307 |
+
#: ../includes/class-ure-lib.php:1664
|
308 |
#, php-format
|
309 |
msgid "Role %s is deleted successfully"
|
310 |
msgstr "El Rol %s fue eliminado exitosamente"
|
311 |
|
312 |
+
#: ../includes/class-ure-lib.php:1689
|
313 |
msgid "Error encountered during default role change operation"
|
314 |
msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
|
315 |
|
316 |
+
#: ../includes/class-ure-lib.php:1695
|
317 |
#, php-format
|
318 |
msgid "Default role for new users is set to %s successfully"
|
319 |
msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
|
320 |
|
321 |
+
#: ../includes/class-ure-lib.php:1714
|
322 |
msgid "Editor"
|
323 |
msgstr "Editor"
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:1715
|
326 |
msgid "Author"
|
327 |
msgstr "Autor"
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:1716
|
330 |
msgid "Contributor"
|
331 |
msgstr "Contribuyente"
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:1717
|
334 |
msgid "Subscriber"
|
335 |
msgstr "Suscriptor"
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:1719
|
338 |
msgid "Switch themes"
|
339 |
msgstr "Cambiar temas (plantillas)"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:1720
|
342 |
msgid "Edit themes"
|
343 |
msgstr "Editar temas (plantillas)"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:1721
|
346 |
msgid "Activate plugins"
|
347 |
msgstr "Activar plugins"
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:1722
|
350 |
msgid "Edit plugins"
|
351 |
msgstr "Editar plugins"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:1723
|
354 |
msgid "Edit users"
|
355 |
msgstr "Editar usuarios"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:1724
|
358 |
msgid "Edit files"
|
359 |
msgstr "Editar archivos"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:1725
|
362 |
msgid "Manage options"
|
363 |
msgstr "Administrar opciones"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:1726
|
366 |
msgid "Moderate comments"
|
367 |
msgstr "Moderar comentarios"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:1727
|
370 |
msgid "Manage categories"
|
371 |
msgstr "Administrar categorías"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:1728
|
374 |
msgid "Manage links"
|
375 |
msgstr "Administrar enlaces"
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:1729
|
378 |
msgid "Upload files"
|
379 |
msgstr "Subir archivos"
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:1730
|
382 |
msgid "Import"
|
383 |
msgstr "Importar"
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:1731
|
386 |
msgid "Unfiltered html"
|
387 |
msgstr "HTML sin filtrar"
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:1732
|
390 |
msgid "Edit posts"
|
391 |
msgstr "Editar entradas"
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1733
|
394 |
msgid "Edit others posts"
|
395 |
msgstr "Editar entradas ajenas"
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:1734
|
398 |
msgid "Edit published posts"
|
399 |
msgstr "Editar entradas publicadas"
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:1735
|
402 |
msgid "Publish posts"
|
403 |
msgstr "Publicar entradas"
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:1736
|
406 |
msgid "Edit pages"
|
407 |
msgstr "Editar páginas"
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1737
|
410 |
msgid "Read"
|
411 |
msgstr "Leer"
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:1738
|
414 |
msgid "Level 10"
|
415 |
msgstr "Nivel 10"
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1739
|
418 |
msgid "Level 9"
|
419 |
msgstr "Nivel 9"
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:1740
|
422 |
msgid "Level 8"
|
423 |
msgstr "Nivel 8"
|
424 |
|
425 |
+
#: ../includes/class-ure-lib.php:1741
|
426 |
msgid "Level 7"
|
427 |
msgstr "Nivel 7"
|
428 |
|
429 |
+
#: ../includes/class-ure-lib.php:1742
|
430 |
msgid "Level 6"
|
431 |
msgstr "Nivel 6"
|
432 |
|
433 |
+
#: ../includes/class-ure-lib.php:1743
|
434 |
msgid "Level 5"
|
435 |
msgstr "Nivel 5"
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:1744
|
438 |
msgid "Level 4"
|
439 |
msgstr "Nivel 4"
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:1745
|
442 |
msgid "Level 3"
|
443 |
msgstr "Nivel 3"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:1746
|
446 |
msgid "Level 2"
|
447 |
msgstr "Nivel 2"
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:1747
|
450 |
msgid "Level 1"
|
451 |
msgstr "Nivel 1"
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:1748
|
454 |
msgid "Level 0"
|
455 |
msgstr "Nivel 0"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:1749
|
458 |
msgid "Edit others pages"
|
459 |
msgstr "Editar páginas ajenas"
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:1750
|
462 |
msgid "Edit published pages"
|
463 |
msgstr "Editar páginas publicadas"
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:1751
|
466 |
msgid "Publish pages"
|
467 |
msgstr "Publicar páginas"
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:1752
|
470 |
msgid "Delete pages"
|
471 |
msgstr "Eliminar páginas"
|
472 |
|
473 |
+
#: ../includes/class-ure-lib.php:1753
|
474 |
msgid "Delete others pages"
|
475 |
msgstr "Eliminar páginas ajenas"
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:1754
|
478 |
msgid "Delete published pages"
|
479 |
msgstr "Eliminar páginas publicadas"
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:1755
|
482 |
msgid "Delete posts"
|
483 |
msgstr "Eliminar entradas"
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:1756
|
486 |
msgid "Delete others posts"
|
487 |
msgstr "Eliminar entradas ajenas"
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:1757
|
490 |
msgid "Delete published posts"
|
491 |
msgstr "Eliminar entradas publicadas"
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:1758
|
494 |
msgid "Delete private posts"
|
495 |
msgstr "Eliminar entradas privadas"
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:1759
|
498 |
msgid "Edit private posts"
|
499 |
msgstr "Editar entradas privadas"
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:1760
|
502 |
msgid "Read private posts"
|
503 |
msgstr "Leer entradas privadas"
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:1761
|
506 |
msgid "Delete private pages"
|
507 |
msgstr "Eliminar páginas privadas"
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:1762
|
510 |
msgid "Edit private pages"
|
511 |
msgstr "Editar páginas privadas"
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:1763
|
514 |
msgid "Read private pages"
|
515 |
msgstr "Leer páginas privadas"
|
516 |
|
517 |
+
#: ../includes/class-ure-lib.php:1764
|
518 |
msgid "Delete users"
|
519 |
msgstr "Eliminar usuarios"
|
520 |
|
521 |
+
#: ../includes/class-ure-lib.php:1765
|
522 |
msgid "Create users"
|
523 |
msgstr "Crear usuarios"
|
524 |
|
525 |
+
#: ../includes/class-ure-lib.php:1766
|
526 |
msgid "Unfiltered upload"
|
527 |
msgstr "Subir sin filtrado"
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:1767
|
530 |
msgid "Edit dashboard"
|
531 |
msgstr "Editar escritorio"
|
532 |
|
533 |
+
#: ../includes/class-ure-lib.php:1768
|
534 |
msgid "Update plugins"
|
535 |
msgstr "Actualizar plugins"
|
536 |
|
537 |
+
#: ../includes/class-ure-lib.php:1769
|
538 |
msgid "Delete plugins"
|
539 |
msgstr "Eliminar plugins"
|
540 |
|
541 |
+
#: ../includes/class-ure-lib.php:1770
|
542 |
msgid "Install plugins"
|
543 |
msgstr "Instalar plugins"
|
544 |
|
545 |
+
#: ../includes/class-ure-lib.php:1771
|
546 |
msgid "Update themes"
|
547 |
msgstr "Actualizar temas (plantillas)"
|
548 |
|
549 |
+
#: ../includes/class-ure-lib.php:1772
|
550 |
msgid "Install themes"
|
551 |
msgstr "Instalar temas (plantillas)"
|
552 |
|
553 |
+
#: ../includes/class-ure-lib.php:1773
|
554 |
msgid "Update core"
|
555 |
msgstr "Actualizar núcleo"
|
556 |
|
557 |
+
#: ../includes/class-ure-lib.php:1774
|
558 |
msgid "List users"
|
559 |
msgstr "Listar usuarios"
|
560 |
|
561 |
+
#: ../includes/class-ure-lib.php:1775
|
562 |
msgid "Remove users"
|
563 |
msgstr "Eliminar usuarios"
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:1776
|
566 |
msgid "Add users"
|
567 |
msgstr "Agregar usuarios"
|
568 |
|
569 |
+
#: ../includes/class-ure-lib.php:1777
|
570 |
msgid "Promote users"
|
571 |
msgstr "Promover usuarios"
|
572 |
|
573 |
+
#: ../includes/class-ure-lib.php:1778
|
574 |
msgid "Edit theme options"
|
575 |
msgstr "Editar opciones del tema (plantilla)"
|
576 |
|
577 |
+
#: ../includes/class-ure-lib.php:1779
|
578 |
msgid "Delete themes"
|
579 |
msgstr "Eliminar temas (plantillas)"
|
580 |
|
581 |
+
#: ../includes/class-ure-lib.php:1780
|
582 |
msgid "Export"
|
583 |
msgstr "Exportar"
|
584 |
|
585 |
+
#: ../includes/class-ure-lib.php:1890
|
586 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
587 |
msgstr ""
|
588 |
"Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
|
589 |
|
590 |
+
#: ../includes/class-ure-lib.php:1903
|
591 |
#, php-format
|
592 |
msgid "Capability %s is added successfully"
|
593 |
msgstr "La Capacidad %s fue agregada exitosamente"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:1905
|
596 |
#, php-format
|
597 |
msgid "Capability %s exists already"
|
598 |
msgstr "La Capacidad %s ya existe"
|
599 |
|
600 |
+
#: ../includes/class-ure-lib.php:1930
|
601 |
#, php-format
|
602 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
603 |
msgstr ""
|
604 |
"¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
|
605 |
|
606 |
+
#: ../includes/class-ure-lib.php:1949
|
607 |
#, php-format
|
608 |
msgid "Capability %s is removed successfully"
|
609 |
msgstr "La Capacidad %s fue eliminada exitosamente"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:2046
|
612 |
msgid "About this Plugin:"
|
613 |
msgstr "Acerca de este Plugin:"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:2048
|
616 |
msgid "Author's website"
|
617 |
msgstr "Sitio web del Autor"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:2049
|
620 |
msgid "Plugin webpage"
|
621 |
msgstr "Página web del Plugin"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:2051
|
|
|
|
|
|
|
|
|
|
|
624 |
msgid "FAQ"
|
625 |
msgstr "FAQ"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:2092
|
628 |
msgid "None"
|
629 |
msgstr "Ninguno"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:2141
|
632 |
+
msgid "— No role for this site —"
|
633 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
634 |
|
635 |
+
#: ../includes/ure-user-edit.php:31
|
636 |
+
msgid "Network Super Admin"
|
637 |
+
msgstr ""
|
638 |
|
639 |
+
#: ../includes/ure-user-edit.php:34
|
640 |
+
msgid "Change capabilities for user"
|
641 |
+
msgstr "Cambiar Capacidades para el usuario"
|
642 |
|
643 |
+
#: ../includes/ure-user-edit.php:66
|
644 |
+
msgid "Primary Role:"
|
645 |
+
msgstr "Rol Primario:"
|
646 |
|
647 |
+
#: ../includes/ure-user-edit.php:75
|
648 |
+
msgid "bbPress Role:"
|
649 |
+
msgstr "Rol de bbPress:"
|
650 |
|
651 |
+
#: ../includes/ure-user-edit.php:85
|
652 |
+
msgid "Other Roles:"
|
653 |
+
msgstr "Otros Roles:"
|
654 |
|
655 |
+
#: ../includes/class-ure-screen-help.php:15
|
656 |
+
msgid "Show Administrator role at User Role Editor"
|
657 |
+
msgstr ""
|
658 |
|
659 |
+
#: ../includes/class-ure-screen-help.php:16
|
660 |
msgid ""
|
661 |
+
"turn this option on in order to make the \"Administrator\" role available at "
|
662 |
+
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
663 |
+
"for security reasons."
|
664 |
msgstr ""
|
|
|
|
|
665 |
|
666 |
+
#: ../includes/class-ure-screen-help.php:18
|
667 |
+
msgid "Show capabilities in the human readable form"
|
668 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
669 |
|
670 |
+
#: ../includes/class-ure-screen-help.php:19
|
671 |
msgid ""
|
672 |
+
"automatically converts capability names from the technical form for internal "
|
673 |
+
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
674 |
+
"others posts\"."
|
675 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
676 |
|
677 |
+
#: ../includes/class-ure-screen-help.php:22
|
678 |
msgid ""
|
679 |
+
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
680 |
+
"by WordPress. They are left at the user roles for the compatibility purpose "
|
681 |
+
"with the old themes and plugins code. Turning on this option will show those "
|
682 |
+
"deprecated capabilities."
|
683 |
msgstr ""
|
|
|
|
|
684 |
|
685 |
+
#: ../includes/class-ure-screen-help.php:27
|
686 |
+
msgid "Allow create, edit and delete users to not super-admininstrators"
|
687 |
+
msgstr ""
|
688 |
|
689 |
+
#: ../includes/class-ure-screen-help.php:28
|
690 |
msgid ""
|
691 |
+
"Super administrator only may create, edit and delete users under WordPress "
|
692 |
+
"multi-site. Turn this option on in order to remove this limitation."
|
693 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
694 |
|
695 |
#~ msgid "Only"
|
696 |
#~ msgstr "Solamente"
|
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: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -16,76 +16,82 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../includes/settings-template.php:
|
20 |
msgid "Save"
|
21 |
msgstr "Сохранить"
|
22 |
|
23 |
-
#: ../includes/class-user-role-editor.php:
|
24 |
-
#: ../includes/class-user-role-editor.php:
|
25 |
msgid "You do not have permission to edit this user."
|
26 |
msgstr "Нет прав на редактирование этого пользователя"
|
27 |
|
28 |
-
#: ../includes/class-user-role-editor.php:
|
29 |
msgid "Capabilities"
|
30 |
msgstr "Возможности"
|
31 |
|
32 |
-
#: ../includes/class-user-role-editor.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Установки"
|
35 |
|
36 |
-
#: ../includes/class-user-role-editor.php:
|
37 |
-
#: ../includes/class-ure-lib.php:
|
38 |
msgid "Changelog"
|
39 |
msgstr "Журнал изменений"
|
40 |
|
41 |
-
#: ../includes/class-user-role-editor.php:
|
42 |
-
|
43 |
-
|
44 |
-
|
|
|
|
|
|
|
|
|
45 |
msgid "User Role Editor"
|
46 |
msgstr "Редактор ролей пользователей"
|
47 |
|
48 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
msgid "User Role Editor options are updated"
|
50 |
msgstr "Изменения в настройках Редактора ролей пользователей сохранены"
|
51 |
|
52 |
-
#: ../includes/class-user-role-editor.php:
|
53 |
-
msgid "
|
54 |
-
msgstr "
|
55 |
-
|
56 |
-
#: ../includes/class-user-role-editor.php:534
|
57 |
-
msgid "is allowed to use"
|
58 |
-
msgstr "разрешено использовать"
|
59 |
|
60 |
-
#: ../includes/class-user-role-editor.php:
|
61 |
msgid "Select All"
|
62 |
msgstr "Выбрать Все:"
|
63 |
|
64 |
-
#: ../includes/class-user-role-editor.php:
|
65 |
msgid "Unselect All"
|
66 |
msgstr "Исключить все"
|
67 |
|
68 |
-
#: ../includes/class-user-role-editor.php:
|
69 |
msgid "Reverse"
|
70 |
msgstr "Обратить"
|
71 |
|
72 |
-
#: ../includes/class-user-role-editor.php:
|
73 |
msgid "Update"
|
74 |
msgstr "Сохранить"
|
75 |
|
76 |
-
#: ../includes/class-user-role-editor.php:
|
77 |
msgid "Please confirm permissions update"
|
78 |
msgstr "Пожалуйста, подтвердите продолжение "
|
79 |
|
80 |
-
#: ../includes/class-user-role-editor.php:
|
81 |
msgid "Add New Role"
|
82 |
msgstr "Добавить новую Роль"
|
83 |
|
84 |
-
#: ../includes/class-user-role-editor.php:
|
85 |
msgid " Role name (ID) can not be empty!"
|
86 |
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
87 |
|
88 |
-
#: ../includes/class-user-role-editor.php:
|
89 |
msgid ""
|
90 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
91 |
"only!"
|
@@ -93,32 +99,32 @@ msgstr ""
|
|
93 |
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
94 |
"тире и знак подчеркивания"
|
95 |
|
96 |
-
#: ../includes/class-user-role-editor.php:
|
97 |
msgid "Add Role"
|
98 |
msgstr "Добавить новую Роль"
|
99 |
|
100 |
-
#: ../includes/class-user-role-editor.php:
|
101 |
msgid "Delete Role"
|
102 |
msgstr "Удалить Роль"
|
103 |
|
104 |
-
#: ../includes/class-user-role-editor.php:
|
105 |
msgid "Cancel"
|
106 |
msgstr "Отмена"
|
107 |
|
108 |
-
#: ../includes/class-user-role-editor.php:
|
109 |
msgid "Add Capability"
|
110 |
msgstr "Добавить новую Возможность"
|
111 |
|
112 |
-
#: ../includes/class-user-role-editor.php:
|
113 |
-
#: ../includes/class-user-role-editor.php:
|
114 |
msgid "Delete Capability"
|
115 |
msgstr "Удалить Возможность"
|
116 |
|
117 |
-
#: ../includes/class-user-role-editor.php:
|
118 |
msgid "Reset"
|
119 |
msgstr "Сброс"
|
120 |
|
121 |
-
#: ../includes/class-user-role-editor.php:
|
122 |
msgid ""
|
123 |
"Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
124 |
"plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
|
@@ -128,15 +134,15 @@ msgstr ""
|
|
128 |
"сделанные темой и плагинами, будут потеряны, необходимо будет активировать "
|
129 |
"заново некоторые плагины, например S2Member, WooCommerce. Продолжить?"
|
130 |
|
131 |
-
#: ../includes/class-user-role-editor.php:
|
132 |
msgid "Default Role"
|
133 |
msgstr "Роль по-умолчанию"
|
134 |
|
135 |
-
#: ../includes/class-user-role-editor.php:
|
136 |
msgid "Set New Default Role"
|
137 |
msgstr "Установить новую роль по-умолчанию"
|
138 |
|
139 |
-
#: ../includes/class-user-role-editor.php:
|
140 |
msgid ""
|
141 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
142 |
"or other custom code"
|
@@ -144,11 +150,11 @@ msgstr ""
|
|
144 |
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
145 |
"прекращеню работы одного из плагинов или другого кода."
|
146 |
|
147 |
-
#: ../includes/class-user-role-editor.php:
|
148 |
msgid " Capability name (ID) can not be empty!"
|
149 |
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
150 |
|
151 |
-
#: ../includes/class-user-role-editor.php:
|
152 |
msgid ""
|
153 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
154 |
"underscore only!"
|
@@ -156,12 +162,12 @@ msgstr ""
|
|
156 |
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
157 |
"цифры, знаки подчеркивания"
|
158 |
|
159 |
-
#: ../includes/class-user-role-editor.php:
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid "Other Roles"
|
162 |
msgstr "Другие Роли"
|
163 |
|
164 |
-
#: ../includes/class-user-role-editor.php:
|
165 |
msgid "Edit"
|
166 |
msgstr "Редактор"
|
167 |
|
@@ -169,7 +175,7 @@ msgstr "Редактор"
|
|
169 |
msgid "Select Role and change its capabilities list"
|
170 |
msgstr "Выбери Роль и измени список разрешённых операций"
|
171 |
|
172 |
-
#: ../includes/ure-role-edit.php:19 ../includes/class-ure-lib.php:
|
173 |
msgid "Select Role:"
|
174 |
msgstr "Выбери Роль:"
|
175 |
|
@@ -178,6 +184,7 @@ msgid "Show capabilities in human readable form"
|
|
178 |
msgstr "Показ возможностей в читабельной форме"
|
179 |
|
180 |
#: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
|
|
|
181 |
msgid "Show deprecated capabilities"
|
182 |
msgstr "Показать устаревшие разрешения"
|
183 |
|
@@ -189,87 +196,87 @@ msgstr "Если включено, применить ко всем сайтам
|
|
189 |
msgid "Apply to All Sites"
|
190 |
msgstr "Применить ко всем сайтам"
|
191 |
|
192 |
-
#: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:
|
193 |
msgid "Core capabilities:"
|
194 |
msgstr "Возможности ядра:"
|
195 |
|
196 |
-
#: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:
|
197 |
msgid "Quick filter:"
|
198 |
msgstr "Фильтр:"
|
199 |
|
200 |
-
#: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:
|
201 |
msgid "Custom capabilities:"
|
202 |
msgstr "Дополнительные возможности :"
|
203 |
|
204 |
-
#: ../includes/class-ure-lib.php:
|
205 |
msgid "Error: wrong request"
|
206 |
msgstr "Ошибка: неверный запрос"
|
207 |
|
208 |
-
#: ../includes/class-ure-lib.php:
|
209 |
msgid "Role name (ID): "
|
210 |
msgstr "Идентификатор роли (ID):"
|
211 |
|
212 |
-
#: ../includes/class-ure-lib.php:
|
213 |
msgid "Display Role Name: "
|
214 |
msgstr "Наименование роли:"
|
215 |
|
216 |
-
#: ../includes/class-ure-lib.php:
|
217 |
msgid "Make copy of: "
|
218 |
msgstr "Создать копию из:"
|
219 |
|
220 |
-
#: ../includes/class-ure-lib.php:
|
221 |
msgid "Delete:"
|
222 |
msgstr "Удалить"
|
223 |
|
224 |
-
#: ../includes/class-ure-lib.php:
|
225 |
msgid "Capability name (ID): "
|
226 |
msgstr "Идентификатор возможности (ID):"
|
227 |
|
228 |
-
#: ../includes/class-ure-lib.php:
|
229 |
msgid "Error: "
|
230 |
msgstr "Ошибка:"
|
231 |
|
232 |
-
#: ../includes/class-ure-lib.php:
|
233 |
msgid "Role"
|
234 |
msgstr "Роль"
|
235 |
|
236 |
-
#: ../includes/class-ure-lib.php:
|
237 |
msgid "does not exist"
|
238 |
msgstr "не существует"
|
239 |
|
240 |
-
#: ../includes/class-ure-lib.php:
|
241 |
msgid "Role is updated successfully"
|
242 |
msgstr "Роль изменена успешно"
|
243 |
|
244 |
-
#: ../includes/class-ure-lib.php:
|
245 |
msgid "Roles are updated for all network"
|
246 |
msgstr "Роли изменены для всей сети"
|
247 |
|
248 |
-
#: ../includes/class-ure-lib.php:
|
249 |
msgid "Error occured during role(s) update"
|
250 |
msgstr "При изменении роли произошла ошибка"
|
251 |
|
252 |
-
#: ../includes/class-ure-lib.php:
|
253 |
msgid "User capabilities are updated successfully"
|
254 |
msgstr "Права пользователя изменены успешно"
|
255 |
|
256 |
-
#: ../includes/class-ure-lib.php:
|
257 |
msgid "Error occured during user update"
|
258 |
msgstr "При изменении прав пользователя произошла ошибка "
|
259 |
|
260 |
-
#: ../includes/class-ure-lib.php:
|
261 |
msgid "User Roles are restored to WordPress default values. "
|
262 |
msgstr "Роли возвращены к начальному состоянию"
|
263 |
|
264 |
-
#: ../includes/class-ure-lib.php:
|
265 |
msgid "Help"
|
266 |
msgstr "Помощь"
|
267 |
|
268 |
-
#: ../includes/class-ure-lib.php:
|
269 |
msgid "Error is occur. Please check the log file."
|
270 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
271 |
|
272 |
-
#: ../includes/class-ure-lib.php:
|
273 |
msgid ""
|
274 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
275 |
"only!"
|
@@ -277,346 +284,354 @@ msgstr ""
|
|
277 |
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
278 |
"цифры, знак подчеркивания и дефис."
|
279 |
|
280 |
-
#: ../includes/class-ure-lib.php:
|
281 |
#, php-format
|
282 |
msgid "Role %s exists already"
|
283 |
msgstr "Роль %s уже существует"
|
284 |
|
285 |
-
#: ../includes/class-ure-lib.php:
|
286 |
msgid "Error is encountered during new role create operation"
|
287 |
msgstr "Произошла ошибка при создании новой роли"
|
288 |
|
289 |
-
#: ../includes/class-ure-lib.php:
|
290 |
#, php-format
|
291 |
msgid "Role %s is created successfully"
|
292 |
msgstr "Роль %s создана успешно"
|
293 |
|
294 |
-
#: ../includes/class-ure-lib.php:
|
295 |
msgid "Error encountered during role delete operation"
|
296 |
msgstr "Произошла ошибка при удалении роли"
|
297 |
|
298 |
-
#: ../includes/class-ure-lib.php:
|
299 |
#, php-format
|
300 |
msgid "Role %s is deleted successfully"
|
301 |
msgstr "Роль %s удалена успешно"
|
302 |
|
303 |
-
#: ../includes/class-ure-lib.php:
|
304 |
msgid "Error encountered during default role change operation"
|
305 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
306 |
|
307 |
-
#: ../includes/class-ure-lib.php:
|
308 |
#, php-format
|
309 |
msgid "Default role for new users is set to %s successfully"
|
310 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
311 |
|
312 |
-
#: ../includes/class-ure-lib.php:
|
313 |
msgid "Editor"
|
314 |
msgstr "Редактор"
|
315 |
|
316 |
-
#: ../includes/class-ure-lib.php:
|
317 |
msgid "Author"
|
318 |
msgstr "Автор"
|
319 |
|
320 |
-
#: ../includes/class-ure-lib.php:
|
321 |
msgid "Contributor"
|
322 |
msgstr "Участник"
|
323 |
|
324 |
-
#: ../includes/class-ure-lib.php:
|
325 |
msgid "Subscriber"
|
326 |
msgstr "Подписчик"
|
327 |
|
328 |
-
#: ../includes/class-ure-lib.php:
|
329 |
msgid "Switch themes"
|
330 |
msgstr "Менять темы"
|
331 |
|
332 |
-
#: ../includes/class-ure-lib.php:
|
333 |
msgid "Edit themes"
|
334 |
msgstr "Изменять темы"
|
335 |
|
336 |
-
#: ../includes/class-ure-lib.php:
|
337 |
msgid "Activate plugins"
|
338 |
msgstr "Активировать плагины"
|
339 |
|
340 |
-
#: ../includes/class-ure-lib.php:
|
341 |
msgid "Edit plugins"
|
342 |
msgstr "Редактировать плагины"
|
343 |
|
344 |
-
#: ../includes/class-ure-lib.php:
|
345 |
msgid "Edit users"
|
346 |
msgstr "Изменять пользователей"
|
347 |
|
348 |
-
#: ../includes/class-ure-lib.php:
|
349 |
msgid "Edit files"
|
350 |
msgstr "Изменять файлы"
|
351 |
|
352 |
-
#: ../includes/class-ure-lib.php:
|
353 |
msgid "Manage options"
|
354 |
msgstr "Управлять установками"
|
355 |
|
356 |
-
#: ../includes/class-ure-lib.php:
|
357 |
msgid "Moderate comments"
|
358 |
msgstr "Модерировать комментарии"
|
359 |
|
360 |
-
#: ../includes/class-ure-lib.php:
|
361 |
msgid "Manage categories"
|
362 |
msgstr "Управлять категориями"
|
363 |
|
364 |
-
#: ../includes/class-ure-lib.php:
|
365 |
msgid "Manage links"
|
366 |
msgstr "Управлять ссылками"
|
367 |
|
368 |
-
#: ../includes/class-ure-lib.php:
|
369 |
msgid "Upload files"
|
370 |
msgstr "Загружать файлы"
|
371 |
|
372 |
-
#: ../includes/class-ure-lib.php:
|
373 |
msgid "Import"
|
374 |
msgstr "Импорт"
|
375 |
|
376 |
-
#: ../includes/class-ure-lib.php:
|
377 |
msgid "Unfiltered html"
|
378 |
msgstr "html без фильтра"
|
379 |
|
380 |
-
#: ../includes/class-ure-lib.php:
|
381 |
msgid "Edit posts"
|
382 |
msgstr "Изменять статьи"
|
383 |
|
384 |
-
#: ../includes/class-ure-lib.php:
|
385 |
msgid "Edit others posts"
|
386 |
msgstr "Изменять чужие статьи"
|
387 |
|
388 |
-
#: ../includes/class-ure-lib.php:
|
389 |
msgid "Edit published posts"
|
390 |
msgstr "Редактировать опубликованные статьи"
|
391 |
|
392 |
-
#: ../includes/class-ure-lib.php:
|
393 |
msgid "Publish posts"
|
394 |
msgstr "Публиковать статьи"
|
395 |
|
396 |
-
#: ../includes/class-ure-lib.php:
|
397 |
msgid "Edit pages"
|
398 |
msgstr "Изменять страницы"
|
399 |
|
400 |
-
#: ../includes/class-ure-lib.php:
|
401 |
msgid "Read"
|
402 |
msgstr "Чтение"
|
403 |
|
404 |
-
#: ../includes/class-ure-lib.php:
|
405 |
msgid "Level 10"
|
406 |
msgstr "Уровень 10"
|
407 |
|
408 |
-
#: ../includes/class-ure-lib.php:
|
409 |
msgid "Level 9"
|
410 |
msgstr "Уровень 9"
|
411 |
|
412 |
-
#: ../includes/class-ure-lib.php:
|
413 |
msgid "Level 8"
|
414 |
msgstr "Уровень 9"
|
415 |
|
416 |
-
#: ../includes/class-ure-lib.php:
|
417 |
msgid "Level 7"
|
418 |
msgstr "Уровень 7"
|
419 |
|
420 |
-
#: ../includes/class-ure-lib.php:
|
421 |
msgid "Level 6"
|
422 |
msgstr "Уровень 6"
|
423 |
|
424 |
-
#: ../includes/class-ure-lib.php:
|
425 |
msgid "Level 5"
|
426 |
msgstr "Уровень 5"
|
427 |
|
428 |
-
#: ../includes/class-ure-lib.php:
|
429 |
msgid "Level 4"
|
430 |
msgstr "Уровень 4"
|
431 |
|
432 |
-
#: ../includes/class-ure-lib.php:
|
433 |
msgid "Level 3"
|
434 |
msgstr "Уровень 3"
|
435 |
|
436 |
-
#: ../includes/class-ure-lib.php:
|
437 |
msgid "Level 2"
|
438 |
msgstr "Уровень 2"
|
439 |
|
440 |
-
#: ../includes/class-ure-lib.php:
|
441 |
msgid "Level 1"
|
442 |
msgstr "Уровень 1"
|
443 |
|
444 |
-
#: ../includes/class-ure-lib.php:
|
445 |
msgid "Level 0"
|
446 |
msgstr "Уровень 0"
|
447 |
|
448 |
-
#: ../includes/class-ure-lib.php:
|
449 |
msgid "Edit others pages"
|
450 |
msgstr "Редактировать чужие страницы"
|
451 |
|
452 |
-
#: ../includes/class-ure-lib.php:
|
453 |
msgid "Edit published pages"
|
454 |
msgstr "Редактировать опубликованные страницы"
|
455 |
|
456 |
-
#: ../includes/class-ure-lib.php:
|
457 |
msgid "Publish pages"
|
458 |
msgstr "Публиковать страницы"
|
459 |
|
460 |
-
#: ../includes/class-ure-lib.php:
|
461 |
msgid "Delete pages"
|
462 |
msgstr "Удалять страницы"
|
463 |
|
464 |
-
#: ../includes/class-ure-lib.php:
|
465 |
msgid "Delete others pages"
|
466 |
msgstr "Удалить чужие страницы"
|
467 |
|
468 |
-
#: ../includes/class-ure-lib.php:
|
469 |
msgid "Delete published pages"
|
470 |
msgstr "Удалять опубликованные страницы"
|
471 |
|
472 |
-
#: ../includes/class-ure-lib.php:
|
473 |
msgid "Delete posts"
|
474 |
msgstr "Удалять статьи"
|
475 |
|
476 |
-
#: ../includes/class-ure-lib.php:
|
477 |
msgid "Delete others posts"
|
478 |
msgstr "Удалять чужие статьи"
|
479 |
|
480 |
-
#: ../includes/class-ure-lib.php:
|
481 |
msgid "Delete published posts"
|
482 |
msgstr "Удалять опубликованные статьи"
|
483 |
|
484 |
-
#: ../includes/class-ure-lib.php:
|
485 |
msgid "Delete private posts"
|
486 |
msgstr "Удалять частные статьи"
|
487 |
|
488 |
-
#: ../includes/class-ure-lib.php:
|
489 |
msgid "Edit private posts"
|
490 |
msgstr "Редактировать частные статьи"
|
491 |
|
492 |
-
#: ../includes/class-ure-lib.php:
|
493 |
msgid "Read private posts"
|
494 |
msgstr "Читать частные статьи"
|
495 |
|
496 |
-
#: ../includes/class-ure-lib.php:
|
497 |
msgid "Delete private pages"
|
498 |
msgstr "Удалять частные страницы"
|
499 |
|
500 |
-
#: ../includes/class-ure-lib.php:
|
501 |
msgid "Edit private pages"
|
502 |
msgstr "Редактировать частные страницы"
|
503 |
|
504 |
-
#: ../includes/class-ure-lib.php:
|
505 |
msgid "Read private pages"
|
506 |
msgstr "Читать частные страницы"
|
507 |
|
508 |
-
#: ../includes/class-ure-lib.php:
|
509 |
msgid "Delete users"
|
510 |
msgstr "Удалять пользователей"
|
511 |
|
512 |
-
#: ../includes/class-ure-lib.php:
|
513 |
msgid "Create users"
|
514 |
msgstr "Создавать пользователей"
|
515 |
|
516 |
-
#: ../includes/class-ure-lib.php:
|
517 |
msgid "Unfiltered upload"
|
518 |
msgstr "Загрузка без фильтра"
|
519 |
|
520 |
-
#: ../includes/class-ure-lib.php:
|
521 |
msgid "Edit dashboard"
|
522 |
msgstr "Изменять панель администратора"
|
523 |
|
524 |
-
#: ../includes/class-ure-lib.php:
|
525 |
msgid "Update plugins"
|
526 |
msgstr "Обновлять плагины"
|
527 |
|
528 |
-
#: ../includes/class-ure-lib.php:
|
529 |
msgid "Delete plugins"
|
530 |
msgstr "Удалять плагины"
|
531 |
|
532 |
-
#: ../includes/class-ure-lib.php:
|
533 |
msgid "Install plugins"
|
534 |
msgstr "Устанавливать плагины"
|
535 |
|
536 |
-
#: ../includes/class-ure-lib.php:
|
537 |
msgid "Update themes"
|
538 |
msgstr "Обновлять темы"
|
539 |
|
540 |
-
#: ../includes/class-ure-lib.php:
|
541 |
msgid "Install themes"
|
542 |
msgstr "Устанавливать темы"
|
543 |
|
544 |
-
#: ../includes/class-ure-lib.php:
|
545 |
msgid "Update core"
|
546 |
msgstr "Обновлять ядро"
|
547 |
|
548 |
-
#: ../includes/class-ure-lib.php:
|
549 |
msgid "List users"
|
550 |
msgstr "Список пользователей"
|
551 |
|
552 |
-
#: ../includes/class-ure-lib.php:
|
553 |
msgid "Remove users"
|
554 |
msgstr "Удалять пользователей"
|
555 |
|
556 |
-
#: ../includes/class-ure-lib.php:
|
557 |
msgid "Add users"
|
558 |
msgstr "Добавлять пользователей"
|
559 |
|
560 |
-
#: ../includes/class-ure-lib.php:
|
561 |
msgid "Promote users"
|
562 |
msgstr "Продвигать пользователей"
|
563 |
|
564 |
-
#: ../includes/class-ure-lib.php:
|
565 |
msgid "Edit theme options"
|
566 |
msgstr "Изменять настройки темы"
|
567 |
|
568 |
-
#: ../includes/class-ure-lib.php:
|
569 |
msgid "Delete themes"
|
570 |
msgstr "Удалять темы"
|
571 |
|
572 |
-
#: ../includes/class-ure-lib.php:
|
573 |
msgid "Export"
|
574 |
msgstr "Экспорт"
|
575 |
|
576 |
-
#: ../includes/class-ure-lib.php:
|
577 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
578 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
579 |
|
580 |
-
#: ../includes/class-ure-lib.php:
|
581 |
#, php-format
|
582 |
msgid "Capability %s is added successfully"
|
583 |
msgstr "Возможность %s добавлена успешно"
|
584 |
|
585 |
-
#: ../includes/class-ure-lib.php:
|
586 |
#, php-format
|
587 |
msgid "Capability %s exists already"
|
588 |
msgstr "Возможность %s уже существует"
|
589 |
|
590 |
-
#: ../includes/class-ure-lib.php:
|
591 |
#, php-format
|
592 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
593 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
#, php-format
|
597 |
msgid "Capability %s is removed successfully"
|
598 |
msgstr "Возможность %s удалена успешно"
|
599 |
|
600 |
-
#: ../includes/class-ure-lib.php:
|
601 |
msgid "About this Plugin:"
|
602 |
msgstr "Об этом плагине"
|
603 |
|
604 |
-
#: ../includes/class-ure-lib.php:
|
605 |
msgid "Author's website"
|
606 |
msgstr "Вебсайт автора"
|
607 |
|
608 |
-
#: ../includes/class-ure-lib.php:
|
609 |
msgid "Plugin webpage"
|
610 |
msgstr "Страница плагина"
|
611 |
|
612 |
-
#: ../includes/class-ure-lib.php:
|
613 |
msgid "FAQ"
|
614 |
msgstr "Часто задаваемые вопросы"
|
615 |
|
616 |
-
#: ../includes/class-ure-lib.php:
|
617 |
msgid "None"
|
618 |
msgstr "Нет"
|
619 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
620 |
#: ../includes/ure-user-edit.php:34
|
621 |
msgid "Change capabilities for user"
|
622 |
msgstr "Изменить возможности для пользователя"
|
@@ -625,14 +640,63 @@ msgstr "Изменить возможности для пользователя"
|
|
625 |
msgid "Primary Role:"
|
626 |
msgstr "Первичаная роль:"
|
627 |
|
628 |
-
#: ../includes/ure-user-edit.php:
|
629 |
msgid "bbPress Role:"
|
630 |
msgstr "Роль bbPress:"
|
631 |
|
632 |
-
#: ../includes/ure-user-edit.php:
|
633 |
msgid "Other Roles:"
|
634 |
msgstr "Другие Роли:"
|
635 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
636 |
#~ msgid "User"
|
637 |
#~ msgstr "Пользователь"
|
638 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-10-21 12:12+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/settings-template.php:63
|
20 |
msgid "Save"
|
21 |
msgstr "Сохранить"
|
22 |
|
23 |
+
#: ../includes/class-user-role-editor.php:171
|
24 |
+
#: ../includes/class-user-role-editor.php:173
|
25 |
msgid "You do not have permission to edit this user."
|
26 |
msgstr "Нет прав на редактирование этого пользователя"
|
27 |
|
28 |
+
#: ../includes/class-user-role-editor.php:314
|
29 |
msgid "Capabilities"
|
30 |
msgstr "Возможности"
|
31 |
|
32 |
+
#: ../includes/class-user-role-editor.php:407
|
33 |
msgid "Settings"
|
34 |
msgstr "Установки"
|
35 |
|
36 |
+
#: ../includes/class-user-role-editor.php:420
|
37 |
+
#: ../includes/class-ure-lib.php:2050
|
38 |
msgid "Changelog"
|
39 |
msgstr "Журнал изменений"
|
40 |
|
41 |
+
#: ../includes/class-user-role-editor.php:442
|
42 |
+
msgid "Overview"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: ../includes/class-user-role-editor.php:451
|
46 |
+
#: ../includes/class-user-role-editor.php:479
|
47 |
+
#: ../includes/class-user-role-editor.php:674
|
48 |
+
#: ../includes/class-ure-lib.php:223
|
49 |
msgid "User Role Editor"
|
50 |
msgstr "Редактор ролей пользователей"
|
51 |
|
52 |
+
#: ../includes/class-user-role-editor.php:497
|
53 |
+
msgid ""
|
54 |
+
"You do not have sufficient permissions to manage options for User Role "
|
55 |
+
"Editor."
|
56 |
+
msgstr "У вас нет прав на изменение настроек плагина"
|
57 |
+
|
58 |
+
#: ../includes/class-user-role-editor.php:526
|
59 |
msgid "User Role Editor options are updated"
|
60 |
msgstr "Изменения в настройках Редактора ролей пользователей сохранены"
|
61 |
|
62 |
+
#: ../includes/class-user-role-editor.php:571
|
63 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
64 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
65 |
|
66 |
+
#: ../includes/class-user-role-editor.php:624
|
67 |
msgid "Select All"
|
68 |
msgstr "Выбрать Все:"
|
69 |
|
70 |
+
#: ../includes/class-user-role-editor.php:625
|
71 |
msgid "Unselect All"
|
72 |
msgstr "Исключить все"
|
73 |
|
74 |
+
#: ../includes/class-user-role-editor.php:626
|
75 |
msgid "Reverse"
|
76 |
msgstr "Обратить"
|
77 |
|
78 |
+
#: ../includes/class-user-role-editor.php:627
|
79 |
msgid "Update"
|
80 |
msgstr "Сохранить"
|
81 |
|
82 |
+
#: ../includes/class-user-role-editor.php:628
|
83 |
msgid "Please confirm permissions update"
|
84 |
msgstr "Пожалуйста, подтвердите продолжение "
|
85 |
|
86 |
+
#: ../includes/class-user-role-editor.php:629
|
87 |
msgid "Add New Role"
|
88 |
msgstr "Добавить новую Роль"
|
89 |
|
90 |
+
#: ../includes/class-user-role-editor.php:630
|
91 |
msgid " Role name (ID) can not be empty!"
|
92 |
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
93 |
|
94 |
+
#: ../includes/class-user-role-editor.php:631
|
95 |
msgid ""
|
96 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
97 |
"only!"
|
99 |
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
100 |
"тире и знак подчеркивания"
|
101 |
|
102 |
+
#: ../includes/class-user-role-editor.php:632
|
103 |
msgid "Add Role"
|
104 |
msgstr "Добавить новую Роль"
|
105 |
|
106 |
+
#: ../includes/class-user-role-editor.php:633
|
107 |
msgid "Delete Role"
|
108 |
msgstr "Удалить Роль"
|
109 |
|
110 |
+
#: ../includes/class-user-role-editor.php:634
|
111 |
msgid "Cancel"
|
112 |
msgstr "Отмена"
|
113 |
|
114 |
+
#: ../includes/class-user-role-editor.php:635
|
115 |
msgid "Add Capability"
|
116 |
msgstr "Добавить новую Возможность"
|
117 |
|
118 |
+
#: ../includes/class-user-role-editor.php:636
|
119 |
+
#: ../includes/class-user-role-editor.php:641
|
120 |
msgid "Delete Capability"
|
121 |
msgstr "Удалить Возможность"
|
122 |
|
123 |
+
#: ../includes/class-user-role-editor.php:637
|
124 |
msgid "Reset"
|
125 |
msgstr "Сброс"
|
126 |
|
127 |
+
#: ../includes/class-user-role-editor.php:638
|
128 |
msgid ""
|
129 |
"Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
130 |
"plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
|
134 |
"сделанные темой и плагинами, будут потеряны, необходимо будет активировать "
|
135 |
"заново некоторые плагины, например S2Member, WooCommerce. Продолжить?"
|
136 |
|
137 |
+
#: ../includes/class-user-role-editor.php:639
|
138 |
msgid "Default Role"
|
139 |
msgstr "Роль по-умолчанию"
|
140 |
|
141 |
+
#: ../includes/class-user-role-editor.php:640
|
142 |
msgid "Set New Default Role"
|
143 |
msgstr "Установить новую роль по-умолчанию"
|
144 |
|
145 |
+
#: ../includes/class-user-role-editor.php:642
|
146 |
msgid ""
|
147 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
148 |
"or other custom code"
|
150 |
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
151 |
"прекращеню работы одного из плагинов или другого кода."
|
152 |
|
153 |
+
#: ../includes/class-user-role-editor.php:643
|
154 |
msgid " Capability name (ID) can not be empty!"
|
155 |
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
156 |
|
157 |
+
#: ../includes/class-user-role-editor.php:644
|
158 |
msgid ""
|
159 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
160 |
"underscore only!"
|
162 |
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
163 |
"цифры, знаки подчеркивания"
|
164 |
|
165 |
+
#: ../includes/class-user-role-editor.php:677
|
166 |
+
#: ../includes/class-user-role-editor.php:705
|
167 |
msgid "Other Roles"
|
168 |
msgstr "Другие Роли"
|
169 |
|
170 |
+
#: ../includes/class-user-role-editor.php:687
|
171 |
msgid "Edit"
|
172 |
msgstr "Редактор"
|
173 |
|
175 |
msgid "Select Role and change its capabilities list"
|
176 |
msgstr "Выбери Роль и измени список разрешённых операций"
|
177 |
|
178 |
+
#: ../includes/ure-role-edit.php:19 ../includes/class-ure-lib.php:184
|
179 |
msgid "Select Role:"
|
180 |
msgstr "Выбери Роль:"
|
181 |
|
184 |
msgstr "Показ возможностей в читабельной форме"
|
185 |
|
186 |
#: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
|
187 |
+
#: ../includes/class-ure-screen-help.php:21
|
188 |
msgid "Show deprecated capabilities"
|
189 |
msgstr "Показать устаревшие разрешения"
|
190 |
|
196 |
msgid "Apply to All Sites"
|
197 |
msgstr "Применить ко всем сайтам"
|
198 |
|
199 |
+
#: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:104
|
200 |
msgid "Core capabilities:"
|
201 |
msgstr "Возможности ядра:"
|
202 |
|
203 |
+
#: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:106
|
204 |
msgid "Quick filter:"
|
205 |
msgstr "Фильтр:"
|
206 |
|
207 |
+
#: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:125
|
208 |
msgid "Custom capabilities:"
|
209 |
msgstr "Дополнительные возможности :"
|
210 |
|
211 |
+
#: ../includes/class-ure-lib.php:141
|
212 |
msgid "Error: wrong request"
|
213 |
msgstr "Ошибка: неверный запрос"
|
214 |
|
215 |
+
#: ../includes/class-ure-lib.php:173
|
216 |
msgid "Role name (ID): "
|
217 |
msgstr "Идентификатор роли (ID):"
|
218 |
|
219 |
+
#: ../includes/class-ure-lib.php:175
|
220 |
msgid "Display Role Name: "
|
221 |
msgstr "Наименование роли:"
|
222 |
|
223 |
+
#: ../includes/class-ure-lib.php:177
|
224 |
msgid "Make copy of: "
|
225 |
msgstr "Создать копию из:"
|
226 |
|
227 |
+
#: ../includes/class-ure-lib.php:199
|
228 |
msgid "Delete:"
|
229 |
msgstr "Удалить"
|
230 |
|
231 |
+
#: ../includes/class-ure-lib.php:206
|
232 |
msgid "Capability name (ID): "
|
233 |
msgstr "Идентификатор возможности (ID):"
|
234 |
|
235 |
+
#: ../includes/class-ure-lib.php:321
|
236 |
msgid "Error: "
|
237 |
msgstr "Ошибка:"
|
238 |
|
239 |
+
#: ../includes/class-ure-lib.php:321
|
240 |
msgid "Role"
|
241 |
msgstr "Роль"
|
242 |
|
243 |
+
#: ../includes/class-ure-lib.php:321
|
244 |
msgid "does not exist"
|
245 |
msgstr "не существует"
|
246 |
|
247 |
+
#: ../includes/class-ure-lib.php:364
|
248 |
msgid "Role is updated successfully"
|
249 |
msgstr "Роль изменена успешно"
|
250 |
|
251 |
+
#: ../includes/class-ure-lib.php:366
|
252 |
msgid "Roles are updated for all network"
|
253 |
msgstr "Роли изменены для всей сети"
|
254 |
|
255 |
+
#: ../includes/class-ure-lib.php:372
|
256 |
msgid "Error occured during role(s) update"
|
257 |
msgstr "При изменении роли произошла ошибка"
|
258 |
|
259 |
+
#: ../includes/class-ure-lib.php:379
|
260 |
msgid "User capabilities are updated successfully"
|
261 |
msgstr "Права пользователя изменены успешно"
|
262 |
|
263 |
+
#: ../includes/class-ure-lib.php:384
|
264 |
msgid "Error occured during user update"
|
265 |
msgstr "При изменении прав пользователя произошла ошибка "
|
266 |
|
267 |
+
#: ../includes/class-ure-lib.php:439
|
268 |
msgid "User Roles are restored to WordPress default values. "
|
269 |
msgstr "Роли возвращены к начальному состоянию"
|
270 |
|
271 |
+
#: ../includes/class-ure-lib.php:1237
|
272 |
msgid "Help"
|
273 |
msgstr "Помощь"
|
274 |
|
275 |
+
#: ../includes/class-ure-lib.php:1576
|
276 |
msgid "Error is occur. Please check the log file."
|
277 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
278 |
|
279 |
+
#: ../includes/class-ure-lib.php:1601
|
280 |
msgid ""
|
281 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
282 |
"only!"
|
284 |
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
285 |
"цифры, знак подчеркивания и дефис."
|
286 |
|
287 |
+
#: ../includes/class-ure-lib.php:1616
|
288 |
#, php-format
|
289 |
msgid "Role %s exists already"
|
290 |
msgstr "Роль %s уже существует"
|
291 |
|
292 |
+
#: ../includes/class-ure-lib.php:1631
|
293 |
msgid "Error is encountered during new role create operation"
|
294 |
msgstr "Произошла ошибка при создании новой роли"
|
295 |
|
296 |
+
#: ../includes/class-ure-lib.php:1633
|
297 |
#, php-format
|
298 |
msgid "Role %s is created successfully"
|
299 |
msgstr "Роль %s создана успешно"
|
300 |
|
301 |
+
#: ../includes/class-ure-lib.php:1662
|
302 |
msgid "Error encountered during role delete operation"
|
303 |
msgstr "Произошла ошибка при удалении роли"
|
304 |
|
305 |
+
#: ../includes/class-ure-lib.php:1664
|
306 |
#, php-format
|
307 |
msgid "Role %s is deleted successfully"
|
308 |
msgstr "Роль %s удалена успешно"
|
309 |
|
310 |
+
#: ../includes/class-ure-lib.php:1689
|
311 |
msgid "Error encountered during default role change operation"
|
312 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
313 |
|
314 |
+
#: ../includes/class-ure-lib.php:1695
|
315 |
#, php-format
|
316 |
msgid "Default role for new users is set to %s successfully"
|
317 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
318 |
|
319 |
+
#: ../includes/class-ure-lib.php:1714
|
320 |
msgid "Editor"
|
321 |
msgstr "Редактор"
|
322 |
|
323 |
+
#: ../includes/class-ure-lib.php:1715
|
324 |
msgid "Author"
|
325 |
msgstr "Автор"
|
326 |
|
327 |
+
#: ../includes/class-ure-lib.php:1716
|
328 |
msgid "Contributor"
|
329 |
msgstr "Участник"
|
330 |
|
331 |
+
#: ../includes/class-ure-lib.php:1717
|
332 |
msgid "Subscriber"
|
333 |
msgstr "Подписчик"
|
334 |
|
335 |
+
#: ../includes/class-ure-lib.php:1719
|
336 |
msgid "Switch themes"
|
337 |
msgstr "Менять темы"
|
338 |
|
339 |
+
#: ../includes/class-ure-lib.php:1720
|
340 |
msgid "Edit themes"
|
341 |
msgstr "Изменять темы"
|
342 |
|
343 |
+
#: ../includes/class-ure-lib.php:1721
|
344 |
msgid "Activate plugins"
|
345 |
msgstr "Активировать плагины"
|
346 |
|
347 |
+
#: ../includes/class-ure-lib.php:1722
|
348 |
msgid "Edit plugins"
|
349 |
msgstr "Редактировать плагины"
|
350 |
|
351 |
+
#: ../includes/class-ure-lib.php:1723
|
352 |
msgid "Edit users"
|
353 |
msgstr "Изменять пользователей"
|
354 |
|
355 |
+
#: ../includes/class-ure-lib.php:1724
|
356 |
msgid "Edit files"
|
357 |
msgstr "Изменять файлы"
|
358 |
|
359 |
+
#: ../includes/class-ure-lib.php:1725
|
360 |
msgid "Manage options"
|
361 |
msgstr "Управлять установками"
|
362 |
|
363 |
+
#: ../includes/class-ure-lib.php:1726
|
364 |
msgid "Moderate comments"
|
365 |
msgstr "Модерировать комментарии"
|
366 |
|
367 |
+
#: ../includes/class-ure-lib.php:1727
|
368 |
msgid "Manage categories"
|
369 |
msgstr "Управлять категориями"
|
370 |
|
371 |
+
#: ../includes/class-ure-lib.php:1728
|
372 |
msgid "Manage links"
|
373 |
msgstr "Управлять ссылками"
|
374 |
|
375 |
+
#: ../includes/class-ure-lib.php:1729
|
376 |
msgid "Upload files"
|
377 |
msgstr "Загружать файлы"
|
378 |
|
379 |
+
#: ../includes/class-ure-lib.php:1730
|
380 |
msgid "Import"
|
381 |
msgstr "Импорт"
|
382 |
|
383 |
+
#: ../includes/class-ure-lib.php:1731
|
384 |
msgid "Unfiltered html"
|
385 |
msgstr "html без фильтра"
|
386 |
|
387 |
+
#: ../includes/class-ure-lib.php:1732
|
388 |
msgid "Edit posts"
|
389 |
msgstr "Изменять статьи"
|
390 |
|
391 |
+
#: ../includes/class-ure-lib.php:1733
|
392 |
msgid "Edit others posts"
|
393 |
msgstr "Изменять чужие статьи"
|
394 |
|
395 |
+
#: ../includes/class-ure-lib.php:1734
|
396 |
msgid "Edit published posts"
|
397 |
msgstr "Редактировать опубликованные статьи"
|
398 |
|
399 |
+
#: ../includes/class-ure-lib.php:1735
|
400 |
msgid "Publish posts"
|
401 |
msgstr "Публиковать статьи"
|
402 |
|
403 |
+
#: ../includes/class-ure-lib.php:1736
|
404 |
msgid "Edit pages"
|
405 |
msgstr "Изменять страницы"
|
406 |
|
407 |
+
#: ../includes/class-ure-lib.php:1737
|
408 |
msgid "Read"
|
409 |
msgstr "Чтение"
|
410 |
|
411 |
+
#: ../includes/class-ure-lib.php:1738
|
412 |
msgid "Level 10"
|
413 |
msgstr "Уровень 10"
|
414 |
|
415 |
+
#: ../includes/class-ure-lib.php:1739
|
416 |
msgid "Level 9"
|
417 |
msgstr "Уровень 9"
|
418 |
|
419 |
+
#: ../includes/class-ure-lib.php:1740
|
420 |
msgid "Level 8"
|
421 |
msgstr "Уровень 9"
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:1741
|
424 |
msgid "Level 7"
|
425 |
msgstr "Уровень 7"
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:1742
|
428 |
msgid "Level 6"
|
429 |
msgstr "Уровень 6"
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:1743
|
432 |
msgid "Level 5"
|
433 |
msgstr "Уровень 5"
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:1744
|
436 |
msgid "Level 4"
|
437 |
msgstr "Уровень 4"
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:1745
|
440 |
msgid "Level 3"
|
441 |
msgstr "Уровень 3"
|
442 |
|
443 |
+
#: ../includes/class-ure-lib.php:1746
|
444 |
msgid "Level 2"
|
445 |
msgstr "Уровень 2"
|
446 |
|
447 |
+
#: ../includes/class-ure-lib.php:1747
|
448 |
msgid "Level 1"
|
449 |
msgstr "Уровень 1"
|
450 |
|
451 |
+
#: ../includes/class-ure-lib.php:1748
|
452 |
msgid "Level 0"
|
453 |
msgstr "Уровень 0"
|
454 |
|
455 |
+
#: ../includes/class-ure-lib.php:1749
|
456 |
msgid "Edit others pages"
|
457 |
msgstr "Редактировать чужие страницы"
|
458 |
|
459 |
+
#: ../includes/class-ure-lib.php:1750
|
460 |
msgid "Edit published pages"
|
461 |
msgstr "Редактировать опубликованные страницы"
|
462 |
|
463 |
+
#: ../includes/class-ure-lib.php:1751
|
464 |
msgid "Publish pages"
|
465 |
msgstr "Публиковать страницы"
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:1752
|
468 |
msgid "Delete pages"
|
469 |
msgstr "Удалять страницы"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:1753
|
472 |
msgid "Delete others pages"
|
473 |
msgstr "Удалить чужие страницы"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:1754
|
476 |
msgid "Delete published pages"
|
477 |
msgstr "Удалять опубликованные страницы"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:1755
|
480 |
msgid "Delete posts"
|
481 |
msgstr "Удалять статьи"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:1756
|
484 |
msgid "Delete others posts"
|
485 |
msgstr "Удалять чужие статьи"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:1757
|
488 |
msgid "Delete published posts"
|
489 |
msgstr "Удалять опубликованные статьи"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:1758
|
492 |
msgid "Delete private posts"
|
493 |
msgstr "Удалять частные статьи"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:1759
|
496 |
msgid "Edit private posts"
|
497 |
msgstr "Редактировать частные статьи"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:1760
|
500 |
msgid "Read private posts"
|
501 |
msgstr "Читать частные статьи"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:1761
|
504 |
msgid "Delete private pages"
|
505 |
msgstr "Удалять частные страницы"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:1762
|
508 |
msgid "Edit private pages"
|
509 |
msgstr "Редактировать частные страницы"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:1763
|
512 |
msgid "Read private pages"
|
513 |
msgstr "Читать частные страницы"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:1764
|
516 |
msgid "Delete users"
|
517 |
msgstr "Удалять пользователей"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:1765
|
520 |
msgid "Create users"
|
521 |
msgstr "Создавать пользователей"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:1766
|
524 |
msgid "Unfiltered upload"
|
525 |
msgstr "Загрузка без фильтра"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:1767
|
528 |
msgid "Edit dashboard"
|
529 |
msgstr "Изменять панель администратора"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:1768
|
532 |
msgid "Update plugins"
|
533 |
msgstr "Обновлять плагины"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:1769
|
536 |
msgid "Delete plugins"
|
537 |
msgstr "Удалять плагины"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:1770
|
540 |
msgid "Install plugins"
|
541 |
msgstr "Устанавливать плагины"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:1771
|
544 |
msgid "Update themes"
|
545 |
msgstr "Обновлять темы"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:1772
|
548 |
msgid "Install themes"
|
549 |
msgstr "Устанавливать темы"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:1773
|
552 |
msgid "Update core"
|
553 |
msgstr "Обновлять ядро"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:1774
|
556 |
msgid "List users"
|
557 |
msgstr "Список пользователей"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:1775
|
560 |
msgid "Remove users"
|
561 |
msgstr "Удалять пользователей"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:1776
|
564 |
msgid "Add users"
|
565 |
msgstr "Добавлять пользователей"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:1777
|
568 |
msgid "Promote users"
|
569 |
msgstr "Продвигать пользователей"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:1778
|
572 |
msgid "Edit theme options"
|
573 |
msgstr "Изменять настройки темы"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:1779
|
576 |
msgid "Delete themes"
|
577 |
msgstr "Удалять темы"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:1780
|
580 |
msgid "Export"
|
581 |
msgstr "Экспорт"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:1890
|
584 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
585 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:1903
|
588 |
#, php-format
|
589 |
msgid "Capability %s is added successfully"
|
590 |
msgstr "Возможность %s добавлена успешно"
|
591 |
|
592 |
+
#: ../includes/class-ure-lib.php:1905
|
593 |
#, php-format
|
594 |
msgid "Capability %s exists already"
|
595 |
msgstr "Возможность %s уже существует"
|
596 |
|
597 |
+
#: ../includes/class-ure-lib.php:1930
|
598 |
#, php-format
|
599 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
600 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
601 |
|
602 |
+
#: ../includes/class-ure-lib.php:1949
|
603 |
#, php-format
|
604 |
msgid "Capability %s is removed successfully"
|
605 |
msgstr "Возможность %s удалена успешно"
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:2046
|
608 |
msgid "About this Plugin:"
|
609 |
msgstr "Об этом плагине"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:2048
|
612 |
msgid "Author's website"
|
613 |
msgstr "Вебсайт автора"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:2049
|
616 |
msgid "Plugin webpage"
|
617 |
msgstr "Страница плагина"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:2051
|
620 |
msgid "FAQ"
|
621 |
msgstr "Часто задаваемые вопросы"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:2092
|
624 |
msgid "None"
|
625 |
msgstr "Нет"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:2141
|
628 |
+
msgid "— No role for this site —"
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: ../includes/ure-user-edit.php:31
|
632 |
+
msgid "Network Super Admin"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
#: ../includes/ure-user-edit.php:34
|
636 |
msgid "Change capabilities for user"
|
637 |
msgstr "Изменить возможности для пользователя"
|
640 |
msgid "Primary Role:"
|
641 |
msgstr "Первичаная роль:"
|
642 |
|
643 |
+
#: ../includes/ure-user-edit.php:75
|
644 |
msgid "bbPress Role:"
|
645 |
msgstr "Роль bbPress:"
|
646 |
|
647 |
+
#: ../includes/ure-user-edit.php:85
|
648 |
msgid "Other Roles:"
|
649 |
msgstr "Другие Роли:"
|
650 |
|
651 |
+
#: ../includes/class-ure-screen-help.php:15
|
652 |
+
msgid "Show Administrator role at User Role Editor"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: ../includes/class-ure-screen-help.php:16
|
656 |
+
msgid ""
|
657 |
+
"turn this option on in order to make the \"Administrator\" role available at "
|
658 |
+
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
659 |
+
"for security reasons."
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
#: ../includes/class-ure-screen-help.php:18
|
663 |
+
msgid "Show capabilities in the human readable form"
|
664 |
+
msgstr "Показ прав доступа в читабельной форме"
|
665 |
+
|
666 |
+
#: ../includes/class-ure-screen-help.php:19
|
667 |
+
msgid ""
|
668 |
+
"automatically converts capability names from the technical form for internal "
|
669 |
+
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
670 |
+
"others posts\"."
|
671 |
+
msgstr ""
|
672 |
+
|
673 |
+
#: ../includes/class-ure-screen-help.php:22
|
674 |
+
msgid ""
|
675 |
+
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
676 |
+
"by WordPress. They are left at the user roles for the compatibility purpose "
|
677 |
+
"with the old themes and plugins code. Turning on this option will show those "
|
678 |
+
"deprecated capabilities."
|
679 |
+
msgstr ""
|
680 |
+
|
681 |
+
#: ../includes/class-ure-screen-help.php:27
|
682 |
+
msgid "Allow create, edit and delete users to not super-admininstrators"
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: ../includes/class-ure-screen-help.php:28
|
686 |
+
msgid ""
|
687 |
+
"Super administrator only may create, edit and delete users under WordPress "
|
688 |
+
"multi-site. Turn this option on in order to remove this limitation."
|
689 |
+
msgstr ""
|
690 |
+
"Только супер-администратор может создавать, изменять и удалять пользователей "
|
691 |
+
"в многосайтовой сети WordPress. Включите эту опцию, чтобы отменить это "
|
692 |
+
"ограничение"
|
693 |
+
|
694 |
+
#~ msgid "Only"
|
695 |
+
#~ msgstr "Только"
|
696 |
+
|
697 |
+
#~ msgid "is allowed to use"
|
698 |
+
#~ msgstr "разрешено использовать"
|
699 |
+
|
700 |
#~ msgid "User"
|
701 |
#~ msgstr "Пользователь"
|
702 |
|
lang/ure-tr_TR.mo
CHANGED
Binary file
|
lang/ure-tr_TR.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: user-role-editor\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: \n"
|
9 |
"Language: tr_TR\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -16,65 +16,82 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
22 |
msgstr ""
|
23 |
-
"User Role Editor eklentisi PHP %s veya daha yüksek bir sürüme ihtiyaç "
|
24 |
-
"duymaktadır."
|
25 |
|
26 |
-
#: ../
|
27 |
-
msgid "
|
28 |
-
msgstr "
|
|
|
|
|
|
|
|
|
29 |
|
30 |
-
#: ../user-role-editor.php:
|
31 |
-
|
32 |
-
|
|
|
33 |
|
34 |
-
#: ../user-role-editor.php:
|
35 |
-
msgid "
|
36 |
-
msgstr "
|
37 |
|
38 |
-
#: ../
|
39 |
-
#: ../user-role-editor.php:
|
|
|
|
|
40 |
msgid "User Role Editor"
|
41 |
msgstr "Kullanıcı Rol Editörü"
|
42 |
|
43 |
-
#: ../user-role-editor.php:
|
44 |
-
|
45 |
-
|
|
|
|
|
|
|
|
|
|
|
46 |
msgstr ""
|
47 |
-
"User Role Editor eklentisi en az WordPress %s sürümüne ihtiyaç duymaktadır."
|
48 |
|
49 |
-
#: ../user-role-editor.php:
|
|
|
|
|
|
|
|
|
50 |
msgid "Select All"
|
51 |
msgstr "Tümünü Seç"
|
52 |
|
53 |
-
#: ../user-role-editor.php:
|
54 |
msgid "Unselect All"
|
55 |
msgstr "Seçimi Kaldır"
|
56 |
|
57 |
-
#: ../user-role-editor.php:
|
58 |
msgid "Reverse"
|
59 |
msgstr "Seçimi Tersine Çevir"
|
60 |
|
61 |
-
#: ../user-role-editor.php:
|
62 |
msgid "Update"
|
63 |
msgstr "Güncelle"
|
64 |
|
65 |
-
#: ../user-role-editor.php:
|
66 |
msgid "Please confirm permissions update"
|
67 |
msgstr "İzinleri güncelleştirmek için lütfen onaylayın"
|
68 |
|
69 |
-
#: ../user-role-editor.php:
|
70 |
msgid "Add New Role"
|
71 |
msgstr "Yeni Rol Ekle"
|
72 |
|
73 |
-
#: ../user-role-editor.php:
|
74 |
msgid " Role name (ID) can not be empty!"
|
75 |
msgstr "Ad (ID) boş bırakılamaz!"
|
76 |
|
77 |
-
#: ../user-role-editor.php:
|
78 |
msgid ""
|
79 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
80 |
"only!"
|
@@ -82,31 +99,32 @@ msgstr ""
|
|
82 |
"Rol adı (ID) yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
|
83 |
"oluşabilir."
|
84 |
|
85 |
-
#: ../user-role-editor.php:
|
86 |
msgid "Add Role"
|
87 |
msgstr "Rol Ekle"
|
88 |
|
89 |
-
#: ../user-role-editor.php:
|
90 |
msgid "Delete Role"
|
91 |
msgstr "Rolü Sil"
|
92 |
|
93 |
-
#: ../user-role-editor.php:
|
94 |
msgid "Cancel"
|
95 |
msgstr "İptal"
|
96 |
|
97 |
-
#: ../user-role-editor.php:
|
98 |
msgid "Add Capability"
|
99 |
msgstr "Kabiliyet Ekle"
|
100 |
|
101 |
-
#: ../
|
|
|
102 |
msgid "Delete Capability"
|
103 |
msgstr "Kabiliyeti kaldır"
|
104 |
|
105 |
-
#: ../user-role-editor.php:
|
106 |
msgid "Reset"
|
107 |
msgstr "Geri al"
|
108 |
|
109 |
-
#: ../user-role-editor.php:
|
110 |
msgid ""
|
111 |
"Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
112 |
"plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
|
@@ -117,15 +135,15 @@ msgstr ""
|
|
117 |
"eklentiler, örneğin S2Member, WooCommerce için yeniden etkinleştirme "
|
118 |
"gerekebilir. Devam etmek istiyor musunuz?"
|
119 |
|
120 |
-
#: ../user-role-editor.php:
|
121 |
msgid "Default Role"
|
122 |
msgstr "Öntanımlı Rol"
|
123 |
|
124 |
-
#: ../user-role-editor.php:
|
125 |
msgid "Set New Default Role"
|
126 |
msgstr "Yeni Öntanımlı Rol Seç"
|
127 |
|
128 |
-
#: ../user-role-editor.php:
|
129 |
msgid ""
|
130 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
131 |
"or other custom code"
|
@@ -133,11 +151,11 @@ msgstr ""
|
|
133 |
"Uyarı! Dikkatli olun - önemli kabiliyetleri kaldırmak bazı eklentileri veya "
|
134 |
"başka özel kodların bozulmasına sebep olabilir"
|
135 |
|
136 |
-
#: ../user-role-editor.php:
|
137 |
msgid " Capability name (ID) can not be empty!"
|
138 |
msgstr "Ad (ID) boş bırakılamaz!"
|
139 |
|
140 |
-
#: ../user-role-editor.php:
|
141 |
msgid ""
|
142 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
143 |
"underscore only!"
|
@@ -145,35 +163,122 @@ msgstr ""
|
|
145 |
"Kabiliyet adı (ID) yalnızca latin karakterleri, sayılar, tire veya "
|
146 |
"altçizgiden oluşabilir."
|
147 |
|
148 |
-
#: ../user-role-editor.php:
|
149 |
-
|
150 |
-
msgstr "Ayarlar"
|
151 |
-
|
152 |
-
#: ../user-role-editor.php:294 ../includes/ure-options.php:209
|
153 |
-
msgid "Changelog"
|
154 |
-
msgstr "Changelog"
|
155 |
-
|
156 |
-
#: ../user-role-editor.php:342
|
157 |
-
msgid "Capabilities"
|
158 |
-
msgstr "Kabiliyetler"
|
159 |
-
|
160 |
-
#: ../user-role-editor.php:371 ../user-role-editor.php:407
|
161 |
msgid "Other Roles"
|
162 |
msgstr "Diğer Roller"
|
163 |
|
164 |
-
#: ../user-role-editor.php:
|
165 |
msgid "Edit"
|
166 |
msgstr "Düzenle"
|
167 |
|
168 |
-
#: ../includes/ure-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
msgid "Error is occur. Please check the log file."
|
170 |
msgstr "Bir hata oluştu. Lütfen günlük dosyasını kontrol edin."
|
171 |
|
172 |
-
#: ../includes/ure-lib.php:
|
173 |
-
msgid "Backup record is created for the current role capabilities"
|
174 |
-
msgstr "Güncel rol yeterlilikleri için yedek kayıt oluşturuldu"
|
175 |
-
|
176 |
-
#: ../includes/ure-lib.php:481
|
177 |
msgid ""
|
178 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
179 |
"only!"
|
@@ -181,450 +286,436 @@ msgstr ""
|
|
181 |
"Hata: Rol ID yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
|
182 |
"oluşabilir."
|
183 |
|
184 |
-
#: ../includes/ure-lib.php:
|
185 |
#, php-format
|
186 |
msgid "Role %s exists already"
|
187 |
msgstr "%s rolü zaten mevcut"
|
188 |
|
189 |
-
#: ../includes/ure-lib.php:
|
190 |
msgid "Error is encountered during new role create operation"
|
191 |
msgstr "Yeni rol oluşturma işlemi sırasında hata"
|
192 |
|
193 |
-
#: ../includes/ure-lib.php:
|
194 |
#, php-format
|
195 |
msgid "Role %s is created successfully"
|
196 |
msgstr "%s rolü başarıyla oluşturuldu"
|
197 |
|
198 |
-
#: ../includes/ure-lib.php:
|
199 |
msgid "Error encountered during role delete operation"
|
200 |
msgstr "Rol silme işlemi sırasında hata"
|
201 |
|
202 |
-
#: ../includes/ure-lib.php:
|
203 |
#, php-format
|
204 |
msgid "Role %s is deleted successfully"
|
205 |
msgstr "%s rolü başarıyla silindi"
|
206 |
|
207 |
-
#: ../includes/ure-lib.php:
|
208 |
msgid "Error encountered during default role change operation"
|
209 |
msgstr "Varsayılan rolü değiştirme işlemi sırasında hata"
|
210 |
|
211 |
-
#: ../includes/ure-lib.php:
|
212 |
#, php-format
|
213 |
msgid "Default role for new users is set to %s successfully"
|
214 |
msgstr "Yeni kullanıcılar için varsayılan rol %s olarak başarıyla değiştirildi"
|
215 |
|
216 |
-
#: ../includes/ure-lib.php:
|
217 |
msgid "Editor"
|
218 |
msgstr "Editör"
|
219 |
|
220 |
-
#: ../includes/ure-lib.php:
|
221 |
msgid "Author"
|
222 |
msgstr "Yazar"
|
223 |
|
224 |
-
#: ../includes/ure-lib.php:
|
225 |
msgid "Contributor"
|
226 |
msgstr "İçerik Sağlayıcı"
|
227 |
|
228 |
-
#: ../includes/ure-lib.php:
|
229 |
msgid "Subscriber"
|
230 |
msgstr "Üye"
|
231 |
|
232 |
-
#: ../includes/ure-lib.php:
|
233 |
msgid "Switch themes"
|
234 |
msgstr "Temaları değiştir"
|
235 |
|
236 |
-
#: ../includes/ure-lib.php:
|
237 |
msgid "Edit themes"
|
238 |
msgstr "Temaları düzenle"
|
239 |
|
240 |
-
#: ../includes/ure-lib.php:
|
241 |
msgid "Activate plugins"
|
242 |
msgstr "Eklentileri aktive et"
|
243 |
|
244 |
-
#: ../includes/ure-lib.php:
|
245 |
msgid "Edit plugins"
|
246 |
msgstr "Eklentileri düzenlemek"
|
247 |
|
248 |
-
#: ../includes/ure-lib.php:
|
249 |
msgid "Edit users"
|
250 |
msgstr "Kullanıcıları düzenlemek"
|
251 |
|
252 |
-
#: ../includes/ure-lib.php:
|
253 |
msgid "Edit files"
|
254 |
msgstr "Dosyaları düzenlemek"
|
255 |
|
256 |
-
#: ../includes/ure-lib.php:
|
257 |
msgid "Manage options"
|
258 |
msgstr "Seçenekleri yönetmek"
|
259 |
|
260 |
-
#: ../includes/ure-lib.php:
|
261 |
msgid "Moderate comments"
|
262 |
msgstr "Yorumları yönetmek"
|
263 |
|
264 |
-
#: ../includes/ure-lib.php:
|
265 |
msgid "Manage categories"
|
266 |
msgstr "Kategorileri yönetmek"
|
267 |
|
268 |
-
#: ../includes/ure-lib.php:
|
269 |
msgid "Manage links"
|
270 |
msgstr "Linkleri yönetmek"
|
271 |
|
272 |
-
#: ../includes/ure-lib.php:
|
273 |
msgid "Upload files"
|
274 |
msgstr "Dosya yüklemek"
|
275 |
|
276 |
-
#: ../includes/ure-lib.php:
|
277 |
msgid "Import"
|
278 |
msgstr "İçeri aktarmak"
|
279 |
|
280 |
-
#: ../includes/ure-lib.php:
|
281 |
msgid "Unfiltered html"
|
282 |
msgstr "Filtrelenmemiş HTML"
|
283 |
|
284 |
-
#: ../includes/ure-lib.php:
|
285 |
msgid "Edit posts"
|
286 |
msgstr "Yazıları düzenlemek"
|
287 |
|
288 |
-
#: ../includes/ure-lib.php:
|
289 |
msgid "Edit others posts"
|
290 |
msgstr "Başkalarının yazılarını düzenlemek"
|
291 |
|
292 |
-
#: ../includes/ure-lib.php:
|
293 |
msgid "Edit published posts"
|
294 |
msgstr "Yayınlanmış yazıları düzenlemek"
|
295 |
|
296 |
-
#: ../includes/ure-lib.php:
|
297 |
msgid "Publish posts"
|
298 |
msgstr "Yazıları yayınlamak"
|
299 |
|
300 |
-
#: ../includes/ure-lib.php:
|
301 |
msgid "Edit pages"
|
302 |
msgstr "Sayfaları düzenlemek"
|
303 |
|
304 |
-
#: ../includes/ure-lib.php:
|
305 |
msgid "Read"
|
306 |
msgstr "Okumak"
|
307 |
|
308 |
-
#: ../includes/ure-lib.php:
|
309 |
msgid "Level 10"
|
310 |
msgstr "Seviye 10"
|
311 |
|
312 |
-
#: ../includes/ure-lib.php:
|
313 |
msgid "Level 9"
|
314 |
msgstr "Seviye 9"
|
315 |
|
316 |
-
#: ../includes/ure-lib.php:
|
317 |
msgid "Level 8"
|
318 |
msgstr "Seviye 8"
|
319 |
|
320 |
-
#: ../includes/ure-lib.php:
|
321 |
msgid "Level 7"
|
322 |
msgstr "Seviye 7"
|
323 |
|
324 |
-
#: ../includes/ure-lib.php:
|
325 |
msgid "Level 6"
|
326 |
msgstr "Seviye 6"
|
327 |
|
328 |
-
#: ../includes/ure-lib.php:
|
329 |
msgid "Level 5"
|
330 |
msgstr "Seviye 5"
|
331 |
|
332 |
-
#: ../includes/ure-lib.php:
|
333 |
msgid "Level 4"
|
334 |
msgstr "Seviye 4"
|
335 |
|
336 |
-
#: ../includes/ure-lib.php:
|
337 |
msgid "Level 3"
|
338 |
msgstr "Seviye 3"
|
339 |
|
340 |
-
#: ../includes/ure-lib.php:
|
341 |
msgid "Level 2"
|
342 |
msgstr "Seviye 2"
|
343 |
|
344 |
-
#: ../includes/ure-lib.php:
|
345 |
msgid "Level 1"
|
346 |
msgstr "Seviye 1"
|
347 |
|
348 |
-
#: ../includes/ure-lib.php:
|
349 |
msgid "Level 0"
|
350 |
msgstr "Seviye 0"
|
351 |
|
352 |
-
#: ../includes/ure-lib.php:
|
353 |
msgid "Edit others pages"
|
354 |
msgstr "Başkalarının sayfalarını düzenlemek"
|
355 |
|
356 |
-
#: ../includes/ure-lib.php:
|
357 |
msgid "Edit published pages"
|
358 |
msgstr "Yayınlanmış sayfaları düzenlemek"
|
359 |
|
360 |
-
#: ../includes/ure-lib.php:
|
361 |
msgid "Publish pages"
|
362 |
msgstr "Sayfaları yayınlamak"
|
363 |
|
364 |
-
#: ../includes/ure-lib.php:
|
365 |
msgid "Delete pages"
|
366 |
msgstr "Sayfaları silmek"
|
367 |
|
368 |
-
#: ../includes/ure-lib.php:
|
369 |
msgid "Delete others pages"
|
370 |
msgstr "Başkalarının sayfalarını silmek"
|
371 |
|
372 |
-
#: ../includes/ure-lib.php:
|
373 |
msgid "Delete published pages"
|
374 |
msgstr "Yayınlanmış sayfaları silmek"
|
375 |
|
376 |
-
#: ../includes/ure-lib.php:
|
377 |
msgid "Delete posts"
|
378 |
msgstr "Yazıları silmek"
|
379 |
|
380 |
-
#: ../includes/ure-lib.php:
|
381 |
msgid "Delete others posts"
|
382 |
msgstr "Başkalarının yazılarını silmek"
|
383 |
|
384 |
-
#: ../includes/ure-lib.php:
|
385 |
msgid "Delete published posts"
|
386 |
msgstr "Yayınlanmış yazıları silmek"
|
387 |
|
388 |
-
#: ../includes/ure-lib.php:
|
389 |
msgid "Delete private posts"
|
390 |
msgstr "Özel yazıları silmek"
|
391 |
|
392 |
-
#: ../includes/ure-lib.php:
|
393 |
msgid "Edit private posts"
|
394 |
msgstr "Özel yazıları düzenlemek"
|
395 |
|
396 |
-
#: ../includes/ure-lib.php:
|
397 |
msgid "Read private posts"
|
398 |
msgstr "Özel yazıları okumak"
|
399 |
|
400 |
-
#: ../includes/ure-lib.php:
|
401 |
msgid "Delete private pages"
|
402 |
msgstr "Özel sayfaları silmek"
|
403 |
|
404 |
-
#: ../includes/ure-lib.php:
|
405 |
msgid "Edit private pages"
|
406 |
msgstr "Özel sayfaları düzenlemek"
|
407 |
|
408 |
-
#: ../includes/ure-lib.php:
|
409 |
msgid "Read private pages"
|
410 |
msgstr "Özel yazıları okumak"
|
411 |
|
412 |
-
#: ../includes/ure-lib.php:
|
413 |
msgid "Delete users"
|
414 |
msgstr "Kullanıcı silmek"
|
415 |
|
416 |
-
#: ../includes/ure-lib.php:
|
417 |
msgid "Create users"
|
418 |
msgstr "Kullanıcı oluşturmak"
|
419 |
|
420 |
-
#: ../includes/ure-lib.php:
|
421 |
msgid "Unfiltered upload"
|
422 |
msgstr "Filtrelenmemiş dosya yüklemek"
|
423 |
|
424 |
-
#: ../includes/ure-lib.php:
|
425 |
msgid "Edit dashboard"
|
426 |
msgstr "Paneli düzenlemek"
|
427 |
|
428 |
-
#: ../includes/ure-lib.php:
|
429 |
msgid "Update plugins"
|
430 |
msgstr "Eklentileri güncellemek"
|
431 |
|
432 |
-
#: ../includes/ure-lib.php:
|
433 |
msgid "Delete plugins"
|
434 |
msgstr "Eklenti silmek"
|
435 |
|
436 |
-
#: ../includes/ure-lib.php:
|
437 |
msgid "Install plugins"
|
438 |
msgstr "Eklenti yüklemek"
|
439 |
|
440 |
-
#: ../includes/ure-lib.php:
|
441 |
msgid "Update themes"
|
442 |
msgstr "Temaları güncellemek"
|
443 |
|
444 |
-
#: ../includes/ure-lib.php:
|
445 |
msgid "Install themes"
|
446 |
msgstr "Tema yüklemek"
|
447 |
|
448 |
-
#: ../includes/ure-lib.php:
|
449 |
msgid "Update core"
|
450 |
msgstr "Güncelle"
|
451 |
|
452 |
-
#: ../includes/ure-lib.php:
|
453 |
msgid "List users"
|
454 |
msgstr "Kullanıcıları listelemek"
|
455 |
|
456 |
-
#: ../includes/ure-lib.php:
|
457 |
msgid "Remove users"
|
458 |
msgstr "Kullanıcı silmek"
|
459 |
|
460 |
-
#: ../includes/ure-lib.php:
|
461 |
msgid "Add users"
|
462 |
msgstr "Kullanıcıları eklemek"
|
463 |
|
464 |
-
#: ../includes/ure-lib.php:
|
465 |
msgid "Promote users"
|
466 |
msgstr "Kullanıcı yükseltmek"
|
467 |
|
468 |
-
#: ../includes/ure-lib.php:
|
469 |
msgid "Edit theme options"
|
470 |
msgstr "Tema ayarlarını düzenlemek"
|
471 |
|
472 |
-
#: ../includes/ure-lib.php:
|
473 |
msgid "Delete themes"
|
474 |
msgstr "Temaları silmek"
|
475 |
|
476 |
-
#: ../includes/ure-lib.php:
|
477 |
msgid "Export"
|
478 |
msgstr "Dışa aktarmak"
|
479 |
|
480 |
-
#: ../includes/ure-lib.php:
|
481 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
482 |
msgstr ""
|
483 |
"Hata: Kabiliyet adı yalnızca latin karakterleri ve sayılardan oluşabilir."
|
484 |
|
485 |
-
#: ../includes/ure-lib.php:
|
486 |
#, php-format
|
487 |
msgid "Capability %s is added successfully"
|
488 |
msgstr "%s kabiliyeti başarıyla eklendi"
|
489 |
|
490 |
-
#: ../includes/ure-lib.php:
|
491 |
#, php-format
|
492 |
msgid "Capability %s exists already"
|
493 |
msgstr "%s kabiliyeti zaten mevcut"
|
494 |
|
495 |
-
#: ../includes/ure-lib.php:
|
496 |
#, php-format
|
497 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
498 |
msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
|
499 |
|
500 |
-
#: ../includes/ure-lib.php:
|
501 |
#, php-format
|
502 |
msgid "Capability %s is removed successfully"
|
503 |
msgstr "%s kabiliyeti başarıyla oluşturuldu"
|
504 |
|
505 |
-
#: ../includes/ure-lib.php:
|
506 |
-
msgid "
|
507 |
-
msgstr "
|
508 |
-
|
509 |
-
#: ../includes/ure-role-edit.php:29
|
510 |
-
msgid "None"
|
511 |
-
msgstr "Hiçbiri"
|
512 |
-
|
513 |
-
#: ../includes/ure-role-edit.php:67
|
514 |
-
msgid "Select Role and change its capabilities list"
|
515 |
-
msgstr "Rolü seçin ve rolün yetki listesini değiştirin"
|
516 |
-
|
517 |
-
#: ../includes/ure-role-edit.php:69 ../includes/ure-role-edit.php:166
|
518 |
-
msgid "Select Role:"
|
519 |
-
msgstr "Rolü Seçin:"
|
520 |
-
|
521 |
-
#: ../includes/ure-role-edit.php:79 ../includes/ure-user-edit.php:38
|
522 |
-
msgid "Show capabilities in human readable form"
|
523 |
-
msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
|
524 |
-
|
525 |
-
#: ../includes/ure-role-edit.php:88 ../includes/ure-user-edit.php:47
|
526 |
-
msgid "Show deprecated capabilities"
|
527 |
-
msgstr "Önerilmeyen yetenekleri göster"
|
528 |
-
|
529 |
-
#: ../includes/ure-role-edit.php:92
|
530 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
531 |
-
msgstr "Eğer seçilirse, bu ağdaki tüm siteler için uygulanır"
|
532 |
-
|
533 |
-
#: ../includes/ure-role-edit.php:102
|
534 |
-
msgid "Apply to All Sites"
|
535 |
-
msgstr "Tüm sitelere uygula"
|
536 |
-
|
537 |
-
#: ../includes/ure-role-edit.php:109 ../includes/ure-user-edit.php:88
|
538 |
-
msgid "Core capabilities:"
|
539 |
-
msgstr "Çekirdek Kabiliyetleri:"
|
540 |
|
541 |
-
#: ../includes/
|
542 |
-
msgid "
|
543 |
-
msgstr "
|
544 |
|
545 |
-
#: ../includes/ure-
|
546 |
-
msgid "
|
547 |
-
msgstr "
|
548 |
|
549 |
-
#: ../includes/ure-
|
550 |
-
msgid "
|
551 |
-
msgstr "
|
552 |
|
553 |
-
#: ../includes/ure-
|
554 |
-
msgid "
|
555 |
-
msgstr "
|
556 |
|
557 |
-
#: ../includes/ure-
|
558 |
-
msgid "
|
559 |
-
msgstr "
|
560 |
|
561 |
-
#: ../includes/ure-
|
562 |
-
msgid "
|
563 |
-
msgstr "
|
564 |
|
565 |
-
#: ../includes/ure-user-edit.php:
|
566 |
msgid "Change capabilities for user"
|
567 |
msgstr "Kullanıcının kabiliyetlerini değiştir: "
|
568 |
|
569 |
-
#: ../includes/ure-user-edit.php:
|
570 |
msgid "Primary Role:"
|
571 |
msgstr "Birincil rol:"
|
572 |
|
573 |
-
#: ../includes/ure-user-edit.php:
|
574 |
msgid "bbPress Role:"
|
575 |
msgstr "bbPress rolü: "
|
576 |
|
577 |
-
#: ../includes/ure-user-edit.php:
|
578 |
msgid "Other Roles:"
|
579 |
msgstr "Diğer Roller:"
|
580 |
|
581 |
-
#: ../includes/ure-
|
582 |
-
msgid "
|
583 |
-
msgstr "
|
584 |
|
585 |
-
#: ../includes/ure-
|
586 |
-
msgid "
|
587 |
-
|
|
|
|
|
|
|
588 |
|
589 |
-
#: ../includes/
|
590 |
-
|
591 |
-
|
|
|
592 |
|
593 |
-
#: ../includes/ure-
|
594 |
-
msgid "
|
595 |
-
|
|
|
|
|
|
|
596 |
|
597 |
-
#: ../includes/ure-
|
598 |
-
msgid "
|
599 |
-
|
|
|
|
|
|
|
|
|
600 |
|
601 |
-
#: ../includes/
|
602 |
-
msgid "
|
603 |
-
msgstr "
|
604 |
|
605 |
-
#: ../includes/ure-
|
606 |
-
msgid "
|
607 |
-
|
|
|
|
|
608 |
|
609 |
-
|
610 |
-
|
611 |
-
|
|
|
612 |
|
613 |
-
|
614 |
-
|
615 |
-
msgstr "Bu eklenti hakkında:"
|
616 |
|
617 |
-
|
618 |
-
|
619 |
-
msgstr "Hazırlayanın websitesi"
|
620 |
|
621 |
-
|
622 |
-
|
623 |
-
msgstr "Eklentinin websitesi"
|
624 |
|
625 |
-
|
626 |
-
|
627 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
628 |
|
629 |
#~ msgid "Database operation error. Check log file."
|
630 |
#~ msgstr "Veritabanı operasyonu hatası. Günlük dosyasını kontrol edin."
|
@@ -939,10 +1030,6 @@ msgstr "SSS"
|
|
939 |
#~ msgid "Add New"
|
940 |
#~ msgstr "Yeni Rol Ekle"
|
941 |
|
942 |
-
#, fuzzy
|
943 |
-
#~ msgid "You do not have permission to download this file."
|
944 |
-
#~ msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
|
945 |
-
|
946 |
#, fuzzy
|
947 |
#~ msgid "You do not have permission to upload files/downloads."
|
948 |
#~ msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
|
@@ -1105,10 +1192,6 @@ msgstr "SSS"
|
|
1105 |
#~ msgid "History"
|
1106 |
#~ msgstr "Editör"
|
1107 |
|
1108 |
-
#, fuzzy
|
1109 |
-
#~ msgid "You do not have sufficient permission to moderate comments."
|
1110 |
-
#~ msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
|
1111 |
-
|
1112 |
#, fuzzy
|
1113 |
#~ msgid "Delete all"
|
1114 |
#~ msgstr "Rolü Sil"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: user-role-editor\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-10-21 12:12+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: tr_TR\n"
|
10 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/settings-template.php:63
|
20 |
+
msgid "Save"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: ../includes/class-user-role-editor.php:171
|
24 |
+
#: ../includes/class-user-role-editor.php:173
|
25 |
+
msgid "You do not have permission to edit this user."
|
26 |
msgstr ""
|
|
|
|
|
27 |
|
28 |
+
#: ../includes/class-user-role-editor.php:314
|
29 |
+
msgid "Capabilities"
|
30 |
+
msgstr "Kabiliyetler"
|
31 |
+
|
32 |
+
#: ../includes/class-user-role-editor.php:407
|
33 |
+
msgid "Settings"
|
34 |
+
msgstr "Ayarlar"
|
35 |
|
36 |
+
#: ../includes/class-user-role-editor.php:420
|
37 |
+
#: ../includes/class-ure-lib.php:2050
|
38 |
+
msgid "Changelog"
|
39 |
+
msgstr "Changelog"
|
40 |
|
41 |
+
#: ../includes/class-user-role-editor.php:442
|
42 |
+
msgid "Overview"
|
43 |
+
msgstr ""
|
44 |
|
45 |
+
#: ../includes/class-user-role-editor.php:451
|
46 |
+
#: ../includes/class-user-role-editor.php:479
|
47 |
+
#: ../includes/class-user-role-editor.php:674
|
48 |
+
#: ../includes/class-ure-lib.php:223
|
49 |
msgid "User Role Editor"
|
50 |
msgstr "Kullanıcı Rol Editörü"
|
51 |
|
52 |
+
#: ../includes/class-user-role-editor.php:497
|
53 |
+
msgid ""
|
54 |
+
"You do not have sufficient permissions to manage options for User Role "
|
55 |
+
"Editor."
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: ../includes/class-user-role-editor.php:526
|
59 |
+
msgid "User Role Editor options are updated"
|
60 |
msgstr ""
|
|
|
61 |
|
62 |
+
#: ../includes/class-user-role-editor.php:571
|
63 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: ../includes/class-user-role-editor.php:624
|
67 |
msgid "Select All"
|
68 |
msgstr "Tümünü Seç"
|
69 |
|
70 |
+
#: ../includes/class-user-role-editor.php:625
|
71 |
msgid "Unselect All"
|
72 |
msgstr "Seçimi Kaldır"
|
73 |
|
74 |
+
#: ../includes/class-user-role-editor.php:626
|
75 |
msgid "Reverse"
|
76 |
msgstr "Seçimi Tersine Çevir"
|
77 |
|
78 |
+
#: ../includes/class-user-role-editor.php:627
|
79 |
msgid "Update"
|
80 |
msgstr "Güncelle"
|
81 |
|
82 |
+
#: ../includes/class-user-role-editor.php:628
|
83 |
msgid "Please confirm permissions update"
|
84 |
msgstr "İzinleri güncelleştirmek için lütfen onaylayın"
|
85 |
|
86 |
+
#: ../includes/class-user-role-editor.php:629
|
87 |
msgid "Add New Role"
|
88 |
msgstr "Yeni Rol Ekle"
|
89 |
|
90 |
+
#: ../includes/class-user-role-editor.php:630
|
91 |
msgid " Role name (ID) can not be empty!"
|
92 |
msgstr "Ad (ID) boş bırakılamaz!"
|
93 |
|
94 |
+
#: ../includes/class-user-role-editor.php:631
|
95 |
msgid ""
|
96 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
97 |
"only!"
|
99 |
"Rol adı (ID) yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
|
100 |
"oluşabilir."
|
101 |
|
102 |
+
#: ../includes/class-user-role-editor.php:632
|
103 |
msgid "Add Role"
|
104 |
msgstr "Rol Ekle"
|
105 |
|
106 |
+
#: ../includes/class-user-role-editor.php:633
|
107 |
msgid "Delete Role"
|
108 |
msgstr "Rolü Sil"
|
109 |
|
110 |
+
#: ../includes/class-user-role-editor.php:634
|
111 |
msgid "Cancel"
|
112 |
msgstr "İptal"
|
113 |
|
114 |
+
#: ../includes/class-user-role-editor.php:635
|
115 |
msgid "Add Capability"
|
116 |
msgstr "Kabiliyet Ekle"
|
117 |
|
118 |
+
#: ../includes/class-user-role-editor.php:636
|
119 |
+
#: ../includes/class-user-role-editor.php:641
|
120 |
msgid "Delete Capability"
|
121 |
msgstr "Kabiliyeti kaldır"
|
122 |
|
123 |
+
#: ../includes/class-user-role-editor.php:637
|
124 |
msgid "Reset"
|
125 |
msgstr "Geri al"
|
126 |
|
127 |
+
#: ../includes/class-user-role-editor.php:638
|
128 |
msgid ""
|
129 |
"Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
130 |
"plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
|
135 |
"eklentiler, örneğin S2Member, WooCommerce için yeniden etkinleştirme "
|
136 |
"gerekebilir. Devam etmek istiyor musunuz?"
|
137 |
|
138 |
+
#: ../includes/class-user-role-editor.php:639
|
139 |
msgid "Default Role"
|
140 |
msgstr "Öntanımlı Rol"
|
141 |
|
142 |
+
#: ../includes/class-user-role-editor.php:640
|
143 |
msgid "Set New Default Role"
|
144 |
msgstr "Yeni Öntanımlı Rol Seç"
|
145 |
|
146 |
+
#: ../includes/class-user-role-editor.php:642
|
147 |
msgid ""
|
148 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
149 |
"or other custom code"
|
151 |
"Uyarı! Dikkatli olun - önemli kabiliyetleri kaldırmak bazı eklentileri veya "
|
152 |
"başka özel kodların bozulmasına sebep olabilir"
|
153 |
|
154 |
+
#: ../includes/class-user-role-editor.php:643
|
155 |
msgid " Capability name (ID) can not be empty!"
|
156 |
msgstr "Ad (ID) boş bırakılamaz!"
|
157 |
|
158 |
+
#: ../includes/class-user-role-editor.php:644
|
159 |
msgid ""
|
160 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
161 |
"underscore only!"
|
163 |
"Kabiliyet adı (ID) yalnızca latin karakterleri, sayılar, tire veya "
|
164 |
"altçizgiden oluşabilir."
|
165 |
|
166 |
+
#: ../includes/class-user-role-editor.php:677
|
167 |
+
#: ../includes/class-user-role-editor.php:705
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
168 |
msgid "Other Roles"
|
169 |
msgstr "Diğer Roller"
|
170 |
|
171 |
+
#: ../includes/class-user-role-editor.php:687
|
172 |
msgid "Edit"
|
173 |
msgstr "Düzenle"
|
174 |
|
175 |
+
#: ../includes/ure-role-edit.php:17
|
176 |
+
msgid "Select Role and change its capabilities list"
|
177 |
+
msgstr "Rolü seçin ve rolün yetki listesini değiştirin"
|
178 |
+
|
179 |
+
#: ../includes/ure-role-edit.php:19 ../includes/class-ure-lib.php:184
|
180 |
+
msgid "Select Role:"
|
181 |
+
msgstr "Rolü Seçin:"
|
182 |
+
|
183 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:51
|
184 |
+
msgid "Show capabilities in human readable form"
|
185 |
+
msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
|
186 |
+
|
187 |
+
#: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
|
188 |
+
#: ../includes/class-ure-screen-help.php:21
|
189 |
+
msgid "Show deprecated capabilities"
|
190 |
+
msgstr "Önerilmeyen yetenekleri göster"
|
191 |
+
|
192 |
+
#: ../includes/ure-role-edit.php:45
|
193 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
194 |
+
msgstr "Eğer seçilirse, bu ağdaki tüm siteler için uygulanır"
|
195 |
+
|
196 |
+
#: ../includes/ure-role-edit.php:57
|
197 |
+
msgid "Apply to All Sites"
|
198 |
+
msgstr "Tüm sitelere uygula"
|
199 |
+
|
200 |
+
#: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:104
|
201 |
+
msgid "Core capabilities:"
|
202 |
+
msgstr "Çekirdek Kabiliyetleri:"
|
203 |
+
|
204 |
+
#: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:106
|
205 |
+
msgid "Quick filter:"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:125
|
209 |
+
msgid "Custom capabilities:"
|
210 |
+
msgstr "Özel Kabiliyetler:"
|
211 |
+
|
212 |
+
#: ../includes/class-ure-lib.php:141
|
213 |
+
msgid "Error: wrong request"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: ../includes/class-ure-lib.php:173
|
217 |
+
msgid "Role name (ID): "
|
218 |
+
msgstr "Rol adı (ID):"
|
219 |
+
|
220 |
+
#: ../includes/class-ure-lib.php:175
|
221 |
+
msgid "Display Role Name: "
|
222 |
+
msgstr "Görünecek Rol Adı:"
|
223 |
+
|
224 |
+
#: ../includes/class-ure-lib.php:177
|
225 |
+
msgid "Make copy of: "
|
226 |
+
msgstr "Bundan kopyala:"
|
227 |
+
|
228 |
+
#: ../includes/class-ure-lib.php:199
|
229 |
+
msgid "Delete:"
|
230 |
+
msgstr "Sil:"
|
231 |
+
|
232 |
+
#: ../includes/class-ure-lib.php:206
|
233 |
+
msgid "Capability name (ID): "
|
234 |
+
msgstr "Yetenek adı (ID): "
|
235 |
+
|
236 |
+
#: ../includes/class-ure-lib.php:321
|
237 |
+
msgid "Error: "
|
238 |
+
msgstr "Hata:"
|
239 |
+
|
240 |
+
#: ../includes/class-ure-lib.php:321
|
241 |
+
msgid "Role"
|
242 |
+
msgstr "Rol:"
|
243 |
+
|
244 |
+
#: ../includes/class-ure-lib.php:321
|
245 |
+
msgid "does not exist"
|
246 |
+
msgstr "bulunmuyor"
|
247 |
+
|
248 |
+
#: ../includes/class-ure-lib.php:364
|
249 |
+
msgid "Role is updated successfully"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: ../includes/class-ure-lib.php:366
|
253 |
+
msgid "Roles are updated for all network"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: ../includes/class-ure-lib.php:372
|
257 |
+
msgid "Error occured during role(s) update"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: ../includes/class-ure-lib.php:379
|
261 |
+
msgid "User capabilities are updated successfully"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: ../includes/class-ure-lib.php:384
|
265 |
+
#, fuzzy
|
266 |
+
msgid "Error occured during user update"
|
267 |
+
msgstr "Rol güncelleme işlemi sırasında hata oluştu"
|
268 |
+
|
269 |
+
#: ../includes/class-ure-lib.php:439
|
270 |
+
msgid "User Roles are restored to WordPress default values. "
|
271 |
+
msgstr "Rol yetkileri WordPress öntanımlılarına geri yüklendi."
|
272 |
+
|
273 |
+
#: ../includes/class-ure-lib.php:1237
|
274 |
+
msgid "Help"
|
275 |
+
msgstr "Yardım"
|
276 |
+
|
277 |
+
#: ../includes/class-ure-lib.php:1576
|
278 |
msgid "Error is occur. Please check the log file."
|
279 |
msgstr "Bir hata oluştu. Lütfen günlük dosyasını kontrol edin."
|
280 |
|
281 |
+
#: ../includes/class-ure-lib.php:1601
|
|
|
|
|
|
|
|
|
282 |
msgid ""
|
283 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
284 |
"only!"
|
286 |
"Hata: Rol ID yalnızca latin karakterleri, sayılar, tire veya altçizgiden "
|
287 |
"oluşabilir."
|
288 |
|
289 |
+
#: ../includes/class-ure-lib.php:1616
|
290 |
#, php-format
|
291 |
msgid "Role %s exists already"
|
292 |
msgstr "%s rolü zaten mevcut"
|
293 |
|
294 |
+
#: ../includes/class-ure-lib.php:1631
|
295 |
msgid "Error is encountered during new role create operation"
|
296 |
msgstr "Yeni rol oluşturma işlemi sırasında hata"
|
297 |
|
298 |
+
#: ../includes/class-ure-lib.php:1633
|
299 |
#, php-format
|
300 |
msgid "Role %s is created successfully"
|
301 |
msgstr "%s rolü başarıyla oluşturuldu"
|
302 |
|
303 |
+
#: ../includes/class-ure-lib.php:1662
|
304 |
msgid "Error encountered during role delete operation"
|
305 |
msgstr "Rol silme işlemi sırasında hata"
|
306 |
|
307 |
+
#: ../includes/class-ure-lib.php:1664
|
308 |
#, php-format
|
309 |
msgid "Role %s is deleted successfully"
|
310 |
msgstr "%s rolü başarıyla silindi"
|
311 |
|
312 |
+
#: ../includes/class-ure-lib.php:1689
|
313 |
msgid "Error encountered during default role change operation"
|
314 |
msgstr "Varsayılan rolü değiştirme işlemi sırasında hata"
|
315 |
|
316 |
+
#: ../includes/class-ure-lib.php:1695
|
317 |
#, php-format
|
318 |
msgid "Default role for new users is set to %s successfully"
|
319 |
msgstr "Yeni kullanıcılar için varsayılan rol %s olarak başarıyla değiştirildi"
|
320 |
|
321 |
+
#: ../includes/class-ure-lib.php:1714
|
322 |
msgid "Editor"
|
323 |
msgstr "Editör"
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:1715
|
326 |
msgid "Author"
|
327 |
msgstr "Yazar"
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:1716
|
330 |
msgid "Contributor"
|
331 |
msgstr "İçerik Sağlayıcı"
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:1717
|
334 |
msgid "Subscriber"
|
335 |
msgstr "Üye"
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:1719
|
338 |
msgid "Switch themes"
|
339 |
msgstr "Temaları değiştir"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:1720
|
342 |
msgid "Edit themes"
|
343 |
msgstr "Temaları düzenle"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:1721
|
346 |
msgid "Activate plugins"
|
347 |
msgstr "Eklentileri aktive et"
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:1722
|
350 |
msgid "Edit plugins"
|
351 |
msgstr "Eklentileri düzenlemek"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:1723
|
354 |
msgid "Edit users"
|
355 |
msgstr "Kullanıcıları düzenlemek"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:1724
|
358 |
msgid "Edit files"
|
359 |
msgstr "Dosyaları düzenlemek"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:1725
|
362 |
msgid "Manage options"
|
363 |
msgstr "Seçenekleri yönetmek"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:1726
|
366 |
msgid "Moderate comments"
|
367 |
msgstr "Yorumları yönetmek"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:1727
|
370 |
msgid "Manage categories"
|
371 |
msgstr "Kategorileri yönetmek"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:1728
|
374 |
msgid "Manage links"
|
375 |
msgstr "Linkleri yönetmek"
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:1729
|
378 |
msgid "Upload files"
|
379 |
msgstr "Dosya yüklemek"
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:1730
|
382 |
msgid "Import"
|
383 |
msgstr "İçeri aktarmak"
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:1731
|
386 |
msgid "Unfiltered html"
|
387 |
msgstr "Filtrelenmemiş HTML"
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:1732
|
390 |
msgid "Edit posts"
|
391 |
msgstr "Yazıları düzenlemek"
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1733
|
394 |
msgid "Edit others posts"
|
395 |
msgstr "Başkalarının yazılarını düzenlemek"
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:1734
|
398 |
msgid "Edit published posts"
|
399 |
msgstr "Yayınlanmış yazıları düzenlemek"
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:1735
|
402 |
msgid "Publish posts"
|
403 |
msgstr "Yazıları yayınlamak"
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:1736
|
406 |
msgid "Edit pages"
|
407 |
msgstr "Sayfaları düzenlemek"
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1737
|
410 |
msgid "Read"
|
411 |
msgstr "Okumak"
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:1738
|
414 |
msgid "Level 10"
|
415 |
msgstr "Seviye 10"
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1739
|
418 |
msgid "Level 9"
|
419 |
msgstr "Seviye 9"
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:1740
|
422 |
msgid "Level 8"
|
423 |
msgstr "Seviye 8"
|
424 |
|
425 |
+
#: ../includes/class-ure-lib.php:1741
|
426 |
msgid "Level 7"
|
427 |
msgstr "Seviye 7"
|
428 |
|
429 |
+
#: ../includes/class-ure-lib.php:1742
|
430 |
msgid "Level 6"
|
431 |
msgstr "Seviye 6"
|
432 |
|
433 |
+
#: ../includes/class-ure-lib.php:1743
|
434 |
msgid "Level 5"
|
435 |
msgstr "Seviye 5"
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:1744
|
438 |
msgid "Level 4"
|
439 |
msgstr "Seviye 4"
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:1745
|
442 |
msgid "Level 3"
|
443 |
msgstr "Seviye 3"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:1746
|
446 |
msgid "Level 2"
|
447 |
msgstr "Seviye 2"
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:1747
|
450 |
msgid "Level 1"
|
451 |
msgstr "Seviye 1"
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:1748
|
454 |
msgid "Level 0"
|
455 |
msgstr "Seviye 0"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:1749
|
458 |
msgid "Edit others pages"
|
459 |
msgstr "Başkalarının sayfalarını düzenlemek"
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:1750
|
462 |
msgid "Edit published pages"
|
463 |
msgstr "Yayınlanmış sayfaları düzenlemek"
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:1751
|
466 |
msgid "Publish pages"
|
467 |
msgstr "Sayfaları yayınlamak"
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:1752
|
470 |
msgid "Delete pages"
|
471 |
msgstr "Sayfaları silmek"
|
472 |
|
473 |
+
#: ../includes/class-ure-lib.php:1753
|
474 |
msgid "Delete others pages"
|
475 |
msgstr "Başkalarının sayfalarını silmek"
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:1754
|
478 |
msgid "Delete published pages"
|
479 |
msgstr "Yayınlanmış sayfaları silmek"
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:1755
|
482 |
msgid "Delete posts"
|
483 |
msgstr "Yazıları silmek"
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:1756
|
486 |
msgid "Delete others posts"
|
487 |
msgstr "Başkalarının yazılarını silmek"
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:1757
|
490 |
msgid "Delete published posts"
|
491 |
msgstr "Yayınlanmış yazıları silmek"
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:1758
|
494 |
msgid "Delete private posts"
|
495 |
msgstr "Özel yazıları silmek"
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:1759
|
498 |
msgid "Edit private posts"
|
499 |
msgstr "Özel yazıları düzenlemek"
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:1760
|
502 |
msgid "Read private posts"
|
503 |
msgstr "Özel yazıları okumak"
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:1761
|
506 |
msgid "Delete private pages"
|
507 |
msgstr "Özel sayfaları silmek"
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:1762
|
510 |
msgid "Edit private pages"
|
511 |
msgstr "Özel sayfaları düzenlemek"
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:1763
|
514 |
msgid "Read private pages"
|
515 |
msgstr "Özel yazıları okumak"
|
516 |
|
517 |
+
#: ../includes/class-ure-lib.php:1764
|
518 |
msgid "Delete users"
|
519 |
msgstr "Kullanıcı silmek"
|
520 |
|
521 |
+
#: ../includes/class-ure-lib.php:1765
|
522 |
msgid "Create users"
|
523 |
msgstr "Kullanıcı oluşturmak"
|
524 |
|
525 |
+
#: ../includes/class-ure-lib.php:1766
|
526 |
msgid "Unfiltered upload"
|
527 |
msgstr "Filtrelenmemiş dosya yüklemek"
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:1767
|
530 |
msgid "Edit dashboard"
|
531 |
msgstr "Paneli düzenlemek"
|
532 |
|
533 |
+
#: ../includes/class-ure-lib.php:1768
|
534 |
msgid "Update plugins"
|
535 |
msgstr "Eklentileri güncellemek"
|
536 |
|
537 |
+
#: ../includes/class-ure-lib.php:1769
|
538 |
msgid "Delete plugins"
|
539 |
msgstr "Eklenti silmek"
|
540 |
|
541 |
+
#: ../includes/class-ure-lib.php:1770
|
542 |
msgid "Install plugins"
|
543 |
msgstr "Eklenti yüklemek"
|
544 |
|
545 |
+
#: ../includes/class-ure-lib.php:1771
|
546 |
msgid "Update themes"
|
547 |
msgstr "Temaları güncellemek"
|
548 |
|
549 |
+
#: ../includes/class-ure-lib.php:1772
|
550 |
msgid "Install themes"
|
551 |
msgstr "Tema yüklemek"
|
552 |
|
553 |
+
#: ../includes/class-ure-lib.php:1773
|
554 |
msgid "Update core"
|
555 |
msgstr "Güncelle"
|
556 |
|
557 |
+
#: ../includes/class-ure-lib.php:1774
|
558 |
msgid "List users"
|
559 |
msgstr "Kullanıcıları listelemek"
|
560 |
|
561 |
+
#: ../includes/class-ure-lib.php:1775
|
562 |
msgid "Remove users"
|
563 |
msgstr "Kullanıcı silmek"
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:1776
|
566 |
msgid "Add users"
|
567 |
msgstr "Kullanıcıları eklemek"
|
568 |
|
569 |
+
#: ../includes/class-ure-lib.php:1777
|
570 |
msgid "Promote users"
|
571 |
msgstr "Kullanıcı yükseltmek"
|
572 |
|
573 |
+
#: ../includes/class-ure-lib.php:1778
|
574 |
msgid "Edit theme options"
|
575 |
msgstr "Tema ayarlarını düzenlemek"
|
576 |
|
577 |
+
#: ../includes/class-ure-lib.php:1779
|
578 |
msgid "Delete themes"
|
579 |
msgstr "Temaları silmek"
|
580 |
|
581 |
+
#: ../includes/class-ure-lib.php:1780
|
582 |
msgid "Export"
|
583 |
msgstr "Dışa aktarmak"
|
584 |
|
585 |
+
#: ../includes/class-ure-lib.php:1890
|
586 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
587 |
msgstr ""
|
588 |
"Hata: Kabiliyet adı yalnızca latin karakterleri ve sayılardan oluşabilir."
|
589 |
|
590 |
+
#: ../includes/class-ure-lib.php:1903
|
591 |
#, php-format
|
592 |
msgid "Capability %s is added successfully"
|
593 |
msgstr "%s kabiliyeti başarıyla eklendi"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:1905
|
596 |
#, php-format
|
597 |
msgid "Capability %s exists already"
|
598 |
msgstr "%s kabiliyeti zaten mevcut"
|
599 |
|
600 |
+
#: ../includes/class-ure-lib.php:1930
|
601 |
#, php-format
|
602 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
603 |
msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:1949
|
606 |
#, php-format
|
607 |
msgid "Capability %s is removed successfully"
|
608 |
msgstr "%s kabiliyeti başarıyla oluşturuldu"
|
609 |
|
610 |
+
#: ../includes/class-ure-lib.php:2046
|
611 |
+
msgid "About this Plugin:"
|
612 |
+
msgstr "Bu eklenti hakkında:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
613 |
|
614 |
+
#: ../includes/class-ure-lib.php:2048
|
615 |
+
msgid "Author's website"
|
616 |
+
msgstr "Hazırlayanın websitesi"
|
617 |
|
618 |
+
#: ../includes/class-ure-lib.php:2049
|
619 |
+
msgid "Plugin webpage"
|
620 |
+
msgstr "Eklentinin websitesi"
|
621 |
|
622 |
+
#: ../includes/class-ure-lib.php:2051
|
623 |
+
msgid "FAQ"
|
624 |
+
msgstr "SSS"
|
625 |
|
626 |
+
#: ../includes/class-ure-lib.php:2092
|
627 |
+
msgid "None"
|
628 |
+
msgstr "Hiçbiri"
|
629 |
|
630 |
+
#: ../includes/class-ure-lib.php:2141
|
631 |
+
msgid "— No role for this site —"
|
632 |
+
msgstr ""
|
633 |
|
634 |
+
#: ../includes/ure-user-edit.php:31
|
635 |
+
msgid "Network Super Admin"
|
636 |
+
msgstr ""
|
637 |
|
638 |
+
#: ../includes/ure-user-edit.php:34
|
639 |
msgid "Change capabilities for user"
|
640 |
msgstr "Kullanıcının kabiliyetlerini değiştir: "
|
641 |
|
642 |
+
#: ../includes/ure-user-edit.php:66
|
643 |
msgid "Primary Role:"
|
644 |
msgstr "Birincil rol:"
|
645 |
|
646 |
+
#: ../includes/ure-user-edit.php:75
|
647 |
msgid "bbPress Role:"
|
648 |
msgstr "bbPress rolü: "
|
649 |
|
650 |
+
#: ../includes/ure-user-edit.php:85
|
651 |
msgid "Other Roles:"
|
652 |
msgstr "Diğer Roller:"
|
653 |
|
654 |
+
#: ../includes/class-ure-screen-help.php:15
|
655 |
+
msgid "Show Administrator role at User Role Editor"
|
656 |
+
msgstr ""
|
657 |
|
658 |
+
#: ../includes/class-ure-screen-help.php:16
|
659 |
+
msgid ""
|
660 |
+
"turn this option on in order to make the \"Administrator\" role available at "
|
661 |
+
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
662 |
+
"for security reasons."
|
663 |
+
msgstr ""
|
664 |
|
665 |
+
#: ../includes/class-ure-screen-help.php:18
|
666 |
+
#, fuzzy
|
667 |
+
msgid "Show capabilities in the human readable form"
|
668 |
+
msgstr "Yetkileri insan tarafından okunabilir biçimde göster"
|
669 |
|
670 |
+
#: ../includes/class-ure-screen-help.php:19
|
671 |
+
msgid ""
|
672 |
+
"automatically converts capability names from the technical form for internal "
|
673 |
+
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
674 |
+
"others posts\"."
|
675 |
+
msgstr ""
|
676 |
|
677 |
+
#: ../includes/class-ure-screen-help.php:22
|
678 |
+
msgid ""
|
679 |
+
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
680 |
+
"by WordPress. They are left at the user roles for the compatibility purpose "
|
681 |
+
"with the old themes and plugins code. Turning on this option will show those "
|
682 |
+
"deprecated capabilities."
|
683 |
+
msgstr ""
|
684 |
|
685 |
+
#: ../includes/class-ure-screen-help.php:27
|
686 |
+
msgid "Allow create, edit and delete users to not super-admininstrators"
|
687 |
+
msgstr ""
|
688 |
|
689 |
+
#: ../includes/class-ure-screen-help.php:28
|
690 |
+
msgid ""
|
691 |
+
"Super administrator only may create, edit and delete users under WordPress "
|
692 |
+
"multi-site. Turn this option on in order to remove this limitation."
|
693 |
+
msgstr ""
|
694 |
|
695 |
+
#~ msgid "User Role Editor requires PHP %s or newer."
|
696 |
+
#~ msgstr ""
|
697 |
+
#~ "User Role Editor eklentisi PHP %s veya daha yüksek bir sürüme ihtiyaç "
|
698 |
+
#~ "duymaktadır."
|
699 |
|
700 |
+
#~ msgid "Please update!"
|
701 |
+
#~ msgstr "Lütfen güncelleyin!"
|
|
|
702 |
|
703 |
+
#~ msgid "Only"
|
704 |
+
#~ msgstr "Sadece"
|
|
|
705 |
|
706 |
+
#~ msgid "is allowed to use"
|
707 |
+
#~ msgstr "kullanmak için yetkilidir"
|
|
|
708 |
|
709 |
+
#~ msgid "User Role Editor requires WordPress %s or newer."
|
710 |
+
#~ msgstr ""
|
711 |
+
#~ "User Role Editor eklentisi en az WordPress %s sürümüne ihtiyaç "
|
712 |
+
#~ "duymaktadır."
|
713 |
+
|
714 |
+
#~ msgid "Backup record is created for the current role capabilities"
|
715 |
+
#~ msgstr "Güncel rol yeterlilikleri için yedek kayıt oluşturuldu"
|
716 |
+
|
717 |
+
#~ msgid "User"
|
718 |
+
#~ msgstr "Kullanıcı"
|
719 |
|
720 |
#~ msgid "Database operation error. Check log file."
|
721 |
#~ msgstr "Veritabanı operasyonu hatası. Günlük dosyasını kontrol edin."
|
1030 |
#~ msgid "Add New"
|
1031 |
#~ msgstr "Yeni Rol Ekle"
|
1032 |
|
|
|
|
|
|
|
|
|
1033 |
#, fuzzy
|
1034 |
#~ msgid "You do not have permission to upload files/downloads."
|
1035 |
#~ msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
|
1192 |
#~ msgid "History"
|
1193 |
#~ msgstr "Editör"
|
1194 |
|
|
|
|
|
|
|
|
|
1195 |
#, fuzzy
|
1196 |
#~ msgid "Delete all"
|
1197 |
#~ msgstr "Rolü Sil"
|
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: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -10,149 +10,155 @@ msgstr ""
|
|
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:
|
14 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../includes/settings-template.php:
|
20 |
msgid "Save"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: ../includes/class-user-role-editor.php:
|
24 |
-
#: ../includes/class-user-role-editor.php:
|
25 |
msgid "You do not have permission to edit this user."
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: ../includes/class-user-role-editor.php:
|
29 |
msgid "Capabilities"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: ../includes/class-user-role-editor.php:
|
33 |
msgid "Settings"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: ../includes/class-user-role-editor.php:
|
37 |
-
#: ../includes/class-ure-lib.php:
|
38 |
msgid "Changelog"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: ../includes/class-user-role-editor.php:
|
42 |
-
|
43 |
-
|
44 |
-
|
|
|
|
|
|
|
|
|
45 |
msgid "User Role Editor"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: ../includes/class-user-role-editor.php:
|
49 |
-
msgid "
|
|
|
|
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../includes/class-user-role-editor.php:
|
53 |
-
msgid "
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: ../includes/class-user-role-editor.php:
|
57 |
-
msgid "
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: ../includes/class-user-role-editor.php:
|
61 |
msgid "Select All"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: ../includes/class-user-role-editor.php:
|
65 |
msgid "Unselect All"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: ../includes/class-user-role-editor.php:
|
69 |
msgid "Reverse"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: ../includes/class-user-role-editor.php:
|
73 |
msgid "Update"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: ../includes/class-user-role-editor.php:
|
77 |
msgid "Please confirm permissions update"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: ../includes/class-user-role-editor.php:
|
81 |
msgid "Add New Role"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: ../includes/class-user-role-editor.php:
|
85 |
msgid " Role name (ID) can not be empty!"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: ../includes/class-user-role-editor.php:
|
89 |
msgid ""
|
90 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
91 |
"only!"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: ../includes/class-user-role-editor.php:
|
95 |
msgid "Add Role"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: ../includes/class-user-role-editor.php:
|
99 |
msgid "Delete Role"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: ../includes/class-user-role-editor.php:
|
103 |
msgid "Cancel"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: ../includes/class-user-role-editor.php:
|
107 |
msgid "Add Capability"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: ../includes/class-user-role-editor.php:
|
111 |
-
#: ../includes/class-user-role-editor.php:
|
112 |
msgid "Delete Capability"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: ../includes/class-user-role-editor.php:
|
116 |
msgid "Reset"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: ../includes/class-user-role-editor.php:
|
120 |
msgid ""
|
121 |
"Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
122 |
"plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
|
123 |
"could be needed. Continue?"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: ../includes/class-user-role-editor.php:
|
127 |
msgid "Default Role"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: ../includes/class-user-role-editor.php:
|
131 |
msgid "Set New Default Role"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
msgid ""
|
136 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
137 |
"or other custom code"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: ../includes/class-user-role-editor.php:
|
141 |
msgid " Capability name (ID) can not be empty!"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: ../includes/class-user-role-editor.php:
|
145 |
msgid ""
|
146 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
147 |
"underscore only!"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: ../includes/class-user-role-editor.php:
|
151 |
-
#: ../includes/class-user-role-editor.php:
|
152 |
msgid "Other Roles"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: ../includes/class-user-role-editor.php:
|
156 |
msgid "Edit"
|
157 |
msgstr ""
|
158 |
|
@@ -160,7 +166,7 @@ msgstr ""
|
|
160 |
msgid "Select Role and change its capabilities list"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: ../includes/ure-role-edit.php:19 ../includes/class-ure-lib.php:
|
164 |
msgid "Select Role:"
|
165 |
msgstr ""
|
166 |
|
@@ -169,6 +175,7 @@ msgid "Show capabilities in human readable form"
|
|
169 |
msgstr ""
|
170 |
|
171 |
#: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
|
|
|
172 |
msgid "Show deprecated capabilities"
|
173 |
msgstr ""
|
174 |
|
@@ -180,432 +187,440 @@ msgstr ""
|
|
180 |
msgid "Apply to All Sites"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:
|
184 |
msgid "Core capabilities:"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:
|
188 |
msgid "Quick filter:"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:
|
192 |
msgid "Custom capabilities:"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: ../includes/class-ure-lib.php:
|
196 |
msgid "Error: wrong request"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: ../includes/class-ure-lib.php:
|
200 |
msgid "Role name (ID): "
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: ../includes/class-ure-lib.php:
|
204 |
msgid "Display Role Name: "
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: ../includes/class-ure-lib.php:
|
208 |
msgid "Make copy of: "
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: ../includes/class-ure-lib.php:
|
212 |
msgid "Delete:"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: ../includes/class-ure-lib.php:
|
216 |
msgid "Capability name (ID): "
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: ../includes/class-ure-lib.php:
|
220 |
msgid "Error: "
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: ../includes/class-ure-lib.php:
|
224 |
msgid "Role"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: ../includes/class-ure-lib.php:
|
228 |
msgid "does not exist"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: ../includes/class-ure-lib.php:
|
232 |
msgid "Role is updated successfully"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: ../includes/class-ure-lib.php:
|
236 |
msgid "Roles are updated for all network"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ../includes/class-ure-lib.php:
|
240 |
msgid "Error occured during role(s) update"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: ../includes/class-ure-lib.php:
|
244 |
msgid "User capabilities are updated successfully"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: ../includes/class-ure-lib.php:
|
248 |
msgid "Error occured during user update"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: ../includes/class-ure-lib.php:
|
252 |
msgid "User Roles are restored to WordPress default values. "
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: ../includes/class-ure-lib.php:
|
256 |
msgid "Help"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: ../includes/class-ure-lib.php:
|
260 |
msgid "Error is occur. Please check the log file."
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: ../includes/class-ure-lib.php:
|
264 |
msgid ""
|
265 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
266 |
"only!"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: ../includes/class-ure-lib.php:
|
270 |
#, php-format
|
271 |
msgid "Role %s exists already"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: ../includes/class-ure-lib.php:
|
275 |
msgid "Error is encountered during new role create operation"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: ../includes/class-ure-lib.php:
|
279 |
#, php-format
|
280 |
msgid "Role %s is created successfully"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../includes/class-ure-lib.php:
|
284 |
msgid "Error encountered during role delete operation"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../includes/class-ure-lib.php:
|
288 |
#, php-format
|
289 |
msgid "Role %s is deleted successfully"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: ../includes/class-ure-lib.php:
|
293 |
msgid "Error encountered during default role change operation"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: ../includes/class-ure-lib.php:
|
297 |
#, php-format
|
298 |
msgid "Default role for new users is set to %s successfully"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: ../includes/class-ure-lib.php:
|
302 |
msgid "Editor"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: ../includes/class-ure-lib.php:
|
306 |
msgid "Author"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: ../includes/class-ure-lib.php:
|
310 |
msgid "Contributor"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: ../includes/class-ure-lib.php:
|
314 |
msgid "Subscriber"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: ../includes/class-ure-lib.php:
|
318 |
msgid "Switch themes"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: ../includes/class-ure-lib.php:
|
322 |
msgid "Edit themes"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: ../includes/class-ure-lib.php:
|
326 |
msgid "Activate plugins"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: ../includes/class-ure-lib.php:
|
330 |
msgid "Edit plugins"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: ../includes/class-ure-lib.php:
|
334 |
msgid "Edit users"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: ../includes/class-ure-lib.php:
|
338 |
msgid "Edit files"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: ../includes/class-ure-lib.php:
|
342 |
msgid "Manage options"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: ../includes/class-ure-lib.php:
|
346 |
msgid "Moderate comments"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: ../includes/class-ure-lib.php:
|
350 |
msgid "Manage categories"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: ../includes/class-ure-lib.php:
|
354 |
msgid "Manage links"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: ../includes/class-ure-lib.php:
|
358 |
msgid "Upload files"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: ../includes/class-ure-lib.php:
|
362 |
msgid "Import"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: ../includes/class-ure-lib.php:
|
366 |
msgid "Unfiltered html"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: ../includes/class-ure-lib.php:
|
370 |
msgid "Edit posts"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: ../includes/class-ure-lib.php:
|
374 |
msgid "Edit others posts"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
msgid "Edit published posts"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: ../includes/class-ure-lib.php:
|
382 |
msgid "Publish posts"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: ../includes/class-ure-lib.php:
|
386 |
msgid "Edit pages"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: ../includes/class-ure-lib.php:
|
390 |
msgid "Read"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: ../includes/class-ure-lib.php:
|
394 |
msgid "Level 10"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: ../includes/class-ure-lib.php:
|
398 |
msgid "Level 9"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
402 |
msgid "Level 8"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: ../includes/class-ure-lib.php:
|
406 |
msgid "Level 7"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
msgid "Level 6"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: ../includes/class-ure-lib.php:
|
414 |
msgid "Level 5"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: ../includes/class-ure-lib.php:
|
418 |
msgid "Level 4"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: ../includes/class-ure-lib.php:
|
422 |
msgid "Level 3"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: ../includes/class-ure-lib.php:
|
426 |
msgid "Level 2"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: ../includes/class-ure-lib.php:
|
430 |
msgid "Level 1"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: ../includes/class-ure-lib.php:
|
434 |
msgid "Level 0"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: ../includes/class-ure-lib.php:
|
438 |
msgid "Edit others pages"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
msgid "Edit published pages"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
msgid "Publish pages"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
msgid "Delete pages"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
msgid "Delete others pages"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
msgid "Delete published pages"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: ../includes/class-ure-lib.php:
|
462 |
msgid "Delete posts"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: ../includes/class-ure-lib.php:
|
466 |
msgid "Delete others posts"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: ../includes/class-ure-lib.php:
|
470 |
msgid "Delete published posts"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: ../includes/class-ure-lib.php:
|
474 |
msgid "Delete private posts"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: ../includes/class-ure-lib.php:
|
478 |
msgid "Edit private posts"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: ../includes/class-ure-lib.php:
|
482 |
msgid "Read private posts"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../includes/class-ure-lib.php:
|
486 |
msgid "Delete private pages"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: ../includes/class-ure-lib.php:
|
490 |
msgid "Edit private pages"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: ../includes/class-ure-lib.php:
|
494 |
msgid "Read private pages"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: ../includes/class-ure-lib.php:
|
498 |
msgid "Delete users"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: ../includes/class-ure-lib.php:
|
502 |
msgid "Create users"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: ../includes/class-ure-lib.php:
|
506 |
msgid "Unfiltered upload"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: ../includes/class-ure-lib.php:
|
510 |
msgid "Edit dashboard"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: ../includes/class-ure-lib.php:
|
514 |
msgid "Update plugins"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: ../includes/class-ure-lib.php:
|
518 |
msgid "Delete plugins"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: ../includes/class-ure-lib.php:
|
522 |
msgid "Install plugins"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: ../includes/class-ure-lib.php:
|
526 |
msgid "Update themes"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: ../includes/class-ure-lib.php:
|
530 |
msgid "Install themes"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ../includes/class-ure-lib.php:
|
534 |
msgid "Update core"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../includes/class-ure-lib.php:
|
538 |
msgid "List users"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../includes/class-ure-lib.php:
|
542 |
msgid "Remove users"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: ../includes/class-ure-lib.php:
|
546 |
msgid "Add users"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: ../includes/class-ure-lib.php:
|
550 |
msgid "Promote users"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: ../includes/class-ure-lib.php:
|
554 |
msgid "Edit theme options"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: ../includes/class-ure-lib.php:
|
558 |
msgid "Delete themes"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: ../includes/class-ure-lib.php:
|
562 |
msgid "Export"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: ../includes/class-ure-lib.php:
|
566 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: ../includes/class-ure-lib.php:
|
570 |
#, php-format
|
571 |
msgid "Capability %s is added successfully"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: ../includes/class-ure-lib.php:
|
575 |
#, php-format
|
576 |
msgid "Capability %s exists already"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
#, php-format
|
581 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: ../includes/class-ure-lib.php:
|
585 |
#, php-format
|
586 |
msgid "Capability %s is removed successfully"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: ../includes/class-ure-lib.php:
|
590 |
msgid "About this Plugin:"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: ../includes/class-ure-lib.php:
|
594 |
msgid "Author's website"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: ../includes/class-ure-lib.php:
|
598 |
msgid "Plugin webpage"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: ../includes/class-ure-lib.php:
|
602 |
msgid "FAQ"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: ../includes/class-ure-lib.php:
|
606 |
msgid "None"
|
607 |
msgstr ""
|
608 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
609 |
#: ../includes/ure-user-edit.php:34
|
610 |
msgid "Change capabilities for user"
|
611 |
msgstr ""
|
@@ -614,10 +629,50 @@ msgstr ""
|
|
614 |
msgid "Primary Role:"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: ../includes/ure-user-edit.php:
|
618 |
msgid "bbPress Role:"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: ../includes/ure-user-edit.php:
|
622 |
msgid "Other Roles:"
|
623 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-10-21 12:12+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"
|
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__\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/settings-template.php:63
|
20 |
msgid "Save"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: ../includes/class-user-role-editor.php:171
|
24 |
+
#: ../includes/class-user-role-editor.php:173
|
25 |
msgid "You do not have permission to edit this user."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: ../includes/class-user-role-editor.php:314
|
29 |
msgid "Capabilities"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: ../includes/class-user-role-editor.php:407
|
33 |
msgid "Settings"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: ../includes/class-user-role-editor.php:420
|
37 |
+
#: ../includes/class-ure-lib.php:2050
|
38 |
msgid "Changelog"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: ../includes/class-user-role-editor.php:442
|
42 |
+
msgid "Overview"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: ../includes/class-user-role-editor.php:451
|
46 |
+
#: ../includes/class-user-role-editor.php:479
|
47 |
+
#: ../includes/class-user-role-editor.php:674
|
48 |
+
#: ../includes/class-ure-lib.php:223
|
49 |
msgid "User Role Editor"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../includes/class-user-role-editor.php:497
|
53 |
+
msgid ""
|
54 |
+
"You do not have sufficient permissions to manage options for User Role "
|
55 |
+
"Editor."
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: ../includes/class-user-role-editor.php:526
|
59 |
+
msgid "User Role Editor options are updated"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: ../includes/class-user-role-editor.php:571
|
63 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: ../includes/class-user-role-editor.php:624
|
67 |
msgid "Select All"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: ../includes/class-user-role-editor.php:625
|
71 |
msgid "Unselect All"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: ../includes/class-user-role-editor.php:626
|
75 |
msgid "Reverse"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: ../includes/class-user-role-editor.php:627
|
79 |
msgid "Update"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: ../includes/class-user-role-editor.php:628
|
83 |
msgid "Please confirm permissions update"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: ../includes/class-user-role-editor.php:629
|
87 |
msgid "Add New Role"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: ../includes/class-user-role-editor.php:630
|
91 |
msgid " Role name (ID) can not be empty!"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: ../includes/class-user-role-editor.php:631
|
95 |
msgid ""
|
96 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
97 |
"only!"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: ../includes/class-user-role-editor.php:632
|
101 |
msgid "Add Role"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: ../includes/class-user-role-editor.php:633
|
105 |
msgid "Delete Role"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: ../includes/class-user-role-editor.php:634
|
109 |
msgid "Cancel"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: ../includes/class-user-role-editor.php:635
|
113 |
msgid "Add Capability"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: ../includes/class-user-role-editor.php:636
|
117 |
+
#: ../includes/class-user-role-editor.php:641
|
118 |
msgid "Delete Capability"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ../includes/class-user-role-editor.php:637
|
122 |
msgid "Reset"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: ../includes/class-user-role-editor.php:638
|
126 |
msgid ""
|
127 |
"Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
128 |
"plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation "
|
129 |
"could be needed. Continue?"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: ../includes/class-user-role-editor.php:639
|
133 |
msgid "Default Role"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: ../includes/class-user-role-editor.php:640
|
137 |
msgid "Set New Default Role"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: ../includes/class-user-role-editor.php:642
|
141 |
msgid ""
|
142 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
143 |
"or other custom code"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: ../includes/class-user-role-editor.php:643
|
147 |
msgid " Capability name (ID) can not be empty!"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: ../includes/class-user-role-editor.php:644
|
151 |
msgid ""
|
152 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
153 |
"underscore only!"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: ../includes/class-user-role-editor.php:677
|
157 |
+
#: ../includes/class-user-role-editor.php:705
|
158 |
msgid "Other Roles"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ../includes/class-user-role-editor.php:687
|
162 |
msgid "Edit"
|
163 |
msgstr ""
|
164 |
|
166 |
msgid "Select Role and change its capabilities list"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: ../includes/ure-role-edit.php:19 ../includes/class-ure-lib.php:184
|
170 |
msgid "Select Role:"
|
171 |
msgstr ""
|
172 |
|
175 |
msgstr ""
|
176 |
|
177 |
#: ../includes/ure-role-edit.php:40 ../includes/ure-user-edit.php:61
|
178 |
+
#: ../includes/class-ure-screen-help.php:21
|
179 |
msgid "Show deprecated capabilities"
|
180 |
msgstr ""
|
181 |
|
187 |
msgid "Apply to All Sites"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: ../includes/ure-role-edit.php:64 ../includes/ure-user-edit.php:104
|
191 |
msgid "Core capabilities:"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../includes/ure-role-edit.php:66 ../includes/ure-user-edit.php:106
|
195 |
msgid "Quick filter:"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: ../includes/ure-role-edit.php:84 ../includes/ure-user-edit.php:125
|
199 |
msgid "Custom capabilities:"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: ../includes/class-ure-lib.php:141
|
203 |
msgid "Error: wrong request"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: ../includes/class-ure-lib.php:173
|
207 |
msgid "Role name (ID): "
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: ../includes/class-ure-lib.php:175
|
211 |
msgid "Display Role Name: "
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../includes/class-ure-lib.php:177
|
215 |
msgid "Make copy of: "
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../includes/class-ure-lib.php:199
|
219 |
msgid "Delete:"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class-ure-lib.php:206
|
223 |
msgid "Capability name (ID): "
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: ../includes/class-ure-lib.php:321
|
227 |
msgid "Error: "
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../includes/class-ure-lib.php:321
|
231 |
msgid "Role"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../includes/class-ure-lib.php:321
|
235 |
msgid "does not exist"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ../includes/class-ure-lib.php:364
|
239 |
msgid "Role is updated successfully"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../includes/class-ure-lib.php:366
|
243 |
msgid "Roles are updated for all network"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../includes/class-ure-lib.php:372
|
247 |
msgid "Error occured during role(s) update"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: ../includes/class-ure-lib.php:379
|
251 |
msgid "User capabilities are updated successfully"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: ../includes/class-ure-lib.php:384
|
255 |
msgid "Error occured during user update"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: ../includes/class-ure-lib.php:439
|
259 |
msgid "User Roles are restored to WordPress default values. "
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: ../includes/class-ure-lib.php:1237
|
263 |
msgid "Help"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: ../includes/class-ure-lib.php:1576
|
267 |
msgid "Error is occur. Please check the log file."
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: ../includes/class-ure-lib.php:1601
|
271 |
msgid ""
|
272 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
273 |
"only!"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: ../includes/class-ure-lib.php:1616
|
277 |
#, php-format
|
278 |
msgid "Role %s exists already"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: ../includes/class-ure-lib.php:1631
|
282 |
msgid "Error is encountered during new role create operation"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: ../includes/class-ure-lib.php:1633
|
286 |
#, php-format
|
287 |
msgid "Role %s is created successfully"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: ../includes/class-ure-lib.php:1662
|
291 |
msgid "Error encountered during role delete operation"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: ../includes/class-ure-lib.php:1664
|
295 |
#, php-format
|
296 |
msgid "Role %s is deleted successfully"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: ../includes/class-ure-lib.php:1689
|
300 |
msgid "Error encountered during default role change operation"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ../includes/class-ure-lib.php:1695
|
304 |
#, php-format
|
305 |
msgid "Default role for new users is set to %s successfully"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: ../includes/class-ure-lib.php:1714
|
309 |
msgid "Editor"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: ../includes/class-ure-lib.php:1715
|
313 |
msgid "Author"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: ../includes/class-ure-lib.php:1716
|
317 |
msgid "Contributor"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: ../includes/class-ure-lib.php:1717
|
321 |
msgid "Subscriber"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: ../includes/class-ure-lib.php:1719
|
325 |
msgid "Switch themes"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: ../includes/class-ure-lib.php:1720
|
329 |
msgid "Edit themes"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: ../includes/class-ure-lib.php:1721
|
333 |
msgid "Activate plugins"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: ../includes/class-ure-lib.php:1722
|
337 |
msgid "Edit plugins"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../includes/class-ure-lib.php:1723
|
341 |
msgid "Edit users"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: ../includes/class-ure-lib.php:1724
|
345 |
msgid "Edit files"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: ../includes/class-ure-lib.php:1725
|
349 |
msgid "Manage options"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: ../includes/class-ure-lib.php:1726
|
353 |
msgid "Moderate comments"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: ../includes/class-ure-lib.php:1727
|
357 |
msgid "Manage categories"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: ../includes/class-ure-lib.php:1728
|
361 |
msgid "Manage links"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: ../includes/class-ure-lib.php:1729
|
365 |
msgid "Upload files"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: ../includes/class-ure-lib.php:1730
|
369 |
msgid "Import"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: ../includes/class-ure-lib.php:1731
|
373 |
msgid "Unfiltered html"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: ../includes/class-ure-lib.php:1732
|
377 |
msgid "Edit posts"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: ../includes/class-ure-lib.php:1733
|
381 |
msgid "Edit others posts"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: ../includes/class-ure-lib.php:1734
|
385 |
msgid "Edit published posts"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: ../includes/class-ure-lib.php:1735
|
389 |
msgid "Publish posts"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: ../includes/class-ure-lib.php:1736
|
393 |
msgid "Edit pages"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: ../includes/class-ure-lib.php:1737
|
397 |
msgid "Read"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: ../includes/class-ure-lib.php:1738
|
401 |
msgid "Level 10"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: ../includes/class-ure-lib.php:1739
|
405 |
msgid "Level 9"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: ../includes/class-ure-lib.php:1740
|
409 |
msgid "Level 8"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: ../includes/class-ure-lib.php:1741
|
413 |
msgid "Level 7"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: ../includes/class-ure-lib.php:1742
|
417 |
msgid "Level 6"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: ../includes/class-ure-lib.php:1743
|
421 |
msgid "Level 5"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: ../includes/class-ure-lib.php:1744
|
425 |
msgid "Level 4"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../includes/class-ure-lib.php:1745
|
429 |
msgid "Level 3"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ../includes/class-ure-lib.php:1746
|
433 |
msgid "Level 2"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../includes/class-ure-lib.php:1747
|
437 |
msgid "Level 1"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../includes/class-ure-lib.php:1748
|
441 |
msgid "Level 0"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: ../includes/class-ure-lib.php:1749
|
445 |
msgid "Edit others pages"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ../includes/class-ure-lib.php:1750
|
449 |
msgid "Edit published pages"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: ../includes/class-ure-lib.php:1751
|
453 |
msgid "Publish pages"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ../includes/class-ure-lib.php:1752
|
457 |
msgid "Delete pages"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: ../includes/class-ure-lib.php:1753
|
461 |
msgid "Delete others pages"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: ../includes/class-ure-lib.php:1754
|
465 |
msgid "Delete published pages"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: ../includes/class-ure-lib.php:1755
|
469 |
msgid "Delete posts"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: ../includes/class-ure-lib.php:1756
|
473 |
msgid "Delete others posts"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: ../includes/class-ure-lib.php:1757
|
477 |
msgid "Delete published posts"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: ../includes/class-ure-lib.php:1758
|
481 |
msgid "Delete private posts"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: ../includes/class-ure-lib.php:1759
|
485 |
msgid "Edit private posts"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: ../includes/class-ure-lib.php:1760
|
489 |
msgid "Read private posts"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: ../includes/class-ure-lib.php:1761
|
493 |
msgid "Delete private pages"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: ../includes/class-ure-lib.php:1762
|
497 |
msgid "Edit private pages"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: ../includes/class-ure-lib.php:1763
|
501 |
msgid "Read private pages"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: ../includes/class-ure-lib.php:1764
|
505 |
msgid "Delete users"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: ../includes/class-ure-lib.php:1765
|
509 |
msgid "Create users"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: ../includes/class-ure-lib.php:1766
|
513 |
msgid "Unfiltered upload"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: ../includes/class-ure-lib.php:1767
|
517 |
msgid "Edit dashboard"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: ../includes/class-ure-lib.php:1768
|
521 |
msgid "Update plugins"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: ../includes/class-ure-lib.php:1769
|
525 |
msgid "Delete plugins"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: ../includes/class-ure-lib.php:1770
|
529 |
msgid "Install plugins"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: ../includes/class-ure-lib.php:1771
|
533 |
msgid "Update themes"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: ../includes/class-ure-lib.php:1772
|
537 |
msgid "Install themes"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: ../includes/class-ure-lib.php:1773
|
541 |
msgid "Update core"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: ../includes/class-ure-lib.php:1774
|
545 |
msgid "List users"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: ../includes/class-ure-lib.php:1775
|
549 |
msgid "Remove users"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: ../includes/class-ure-lib.php:1776
|
553 |
msgid "Add users"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: ../includes/class-ure-lib.php:1777
|
557 |
msgid "Promote users"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: ../includes/class-ure-lib.php:1778
|
561 |
msgid "Edit theme options"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: ../includes/class-ure-lib.php:1779
|
565 |
msgid "Delete themes"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../includes/class-ure-lib.php:1780
|
569 |
msgid "Export"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: ../includes/class-ure-lib.php:1890
|
573 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../includes/class-ure-lib.php:1903
|
577 |
#, php-format
|
578 |
msgid "Capability %s is added successfully"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: ../includes/class-ure-lib.php:1905
|
582 |
#, php-format
|
583 |
msgid "Capability %s exists already"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: ../includes/class-ure-lib.php:1930
|
587 |
#, php-format
|
588 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:1949
|
592 |
#, php-format
|
593 |
msgid "Capability %s is removed successfully"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: ../includes/class-ure-lib.php:2046
|
597 |
msgid "About this Plugin:"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: ../includes/class-ure-lib.php:2048
|
601 |
msgid "Author's website"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: ../includes/class-ure-lib.php:2049
|
605 |
msgid "Plugin webpage"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: ../includes/class-ure-lib.php:2051
|
609 |
msgid "FAQ"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: ../includes/class-ure-lib.php:2092
|
613 |
msgid "None"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: ../includes/class-ure-lib.php:2141
|
617 |
+
msgid "— No role for this site —"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: ../includes/ure-user-edit.php:31
|
621 |
+
msgid "Network Super Admin"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
#: ../includes/ure-user-edit.php:34
|
625 |
msgid "Change capabilities for user"
|
626 |
msgstr ""
|
629 |
msgid "Primary Role:"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: ../includes/ure-user-edit.php:75
|
633 |
msgid "bbPress Role:"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: ../includes/ure-user-edit.php:85
|
637 |
msgid "Other Roles:"
|
638 |
msgstr ""
|
639 |
+
|
640 |
+
#: ../includes/class-ure-screen-help.php:15
|
641 |
+
msgid "Show Administrator role at User Role Editor"
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: ../includes/class-ure-screen-help.php:16
|
645 |
+
msgid ""
|
646 |
+
"turn this option on in order to make the \"Administrator\" role available at "
|
647 |
+
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
648 |
+
"for security reasons."
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: ../includes/class-ure-screen-help.php:18
|
652 |
+
msgid "Show capabilities in the human readable form"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: ../includes/class-ure-screen-help.php:19
|
656 |
+
msgid ""
|
657 |
+
"automatically converts capability names from the technical form for internal "
|
658 |
+
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
659 |
+
"others posts\"."
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
#: ../includes/class-ure-screen-help.php:22
|
663 |
+
msgid ""
|
664 |
+
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
665 |
+
"by WordPress. They are left at the user roles for the compatibility purpose "
|
666 |
+
"with the old themes and plugins code. Turning on this option will show those "
|
667 |
+
"deprecated capabilities."
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#: ../includes/class-ure-screen-help.php:27
|
671 |
+
msgid "Allow create, edit and delete users to not super-admininstrators"
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#: ../includes/class-ure-screen-help.php:28
|
675 |
+
msgid ""
|
676 |
+
"Super administrator only may create, edit and delete users under WordPress "
|
677 |
+
"multi-site. Turn this option on in order to remove this limitation."
|
678 |
+
msgstr ""
|
license.txt
ADDED
@@ -0,0 +1,375 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
User Role Editor WordPress plugin
|
2 |
+
|
3 |
+
Copyright 2009-2013 by Vladimir Garagulya - vladimir@shinephp.com
|
4 |
+
|
5 |
+
This program is free software; you can redistribute it and/or modify
|
6 |
+
it under the terms of the GNU General Public License as published by
|
7 |
+
the Free Software Foundation; either version 2 of the License, or
|
8 |
+
(at your option) any later version.
|
9 |
+
|
10 |
+
This program is distributed in the hope that it will be useful,
|
11 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13 |
+
GNU General Public License for more details.
|
14 |
+
|
15 |
+
You should have received a copy of the GNU General Public License
|
16 |
+
along with this program; if not, write to the Free Software
|
17 |
+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
18 |
+
|
19 |
+
This program is based on the work covered by the following copyright and
|
20 |
+
permission notices:
|
21 |
+
|
22 |
+
WordPress - Web publishing software
|
23 |
+
|
24 |
+
Copyright 2003-2010 by the contributors
|
25 |
+
|
26 |
+
WordPress is released under the GPL
|
27 |
+
|
28 |
+
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
29 |
+
|
30 |
+
GNU GENERAL PUBLIC LICENSE
|
31 |
+
Version 2, June 1991
|
32 |
+
|
33 |
+
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
34 |
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
35 |
+
Everyone is permitted to copy and distribute verbatim copies
|
36 |
+
of this license document, but changing it is not allowed.
|
37 |
+
|
38 |
+
Preamble
|
39 |
+
|
40 |
+
The licenses for most software are designed to take away your
|
41 |
+
freedom to share and change it. By contrast, the GNU General Public
|
42 |
+
License is intended to guarantee your freedom to share and change free
|
43 |
+
software--to make sure the software is free for all its users. This
|
44 |
+
General Public License applies to most of the Free Software
|
45 |
+
Foundation's software and to any other program whose authors commit to
|
46 |
+
using it. (Some other Free Software Foundation software is covered by
|
47 |
+
the GNU Lesser General Public License instead.) You can apply it to
|
48 |
+
your programs, too.
|
49 |
+
|
50 |
+
When we speak of free software, we are referring to freedom, not
|
51 |
+
price. Our General Public Licenses are designed to make sure that you
|
52 |
+
have the freedom to distribute copies of free software (and charge for
|
53 |
+
this service if you wish), that you receive source code or can get it
|
54 |
+
if you want it, that you can change the software or use pieces of it
|
55 |
+
in new free programs; and that you know you can do these things.
|
56 |
+
|
57 |
+
To protect your rights, we need to make restrictions that forbid
|
58 |
+
anyone to deny you these rights or to ask you to surrender the rights.
|
59 |
+
These restrictions translate to certain responsibilities for you if you
|
60 |
+
distribute copies of the software, or if you modify it.
|
61 |
+
|
62 |
+
For example, if you distribute copies of such a program, whether
|
63 |
+
gratis or for a fee, you must give the recipients all the rights that
|
64 |
+
you have. You must make sure that they, too, receive or can get the
|
65 |
+
source code. And you must show them these terms so they know their
|
66 |
+
rights.
|
67 |
+
|
68 |
+
We protect your rights with two steps: (1) copyright the software, and
|
69 |
+
(2) offer you this license which gives you legal permission to copy,
|
70 |
+
distribute and/or modify the software.
|
71 |
+
|
72 |
+
Also, for each author's protection and ours, we want to make certain
|
73 |
+
that everyone understands that there is no warranty for this free
|
74 |
+
software. If the software is modified by someone else and passed on, we
|
75 |
+
want its recipients to know that what they have is not the original, so
|
76 |
+
that any problems introduced by others will not reflect on the original
|
77 |
+
authors' reputations.
|
78 |
+
|
79 |
+
Finally, any free program is threatened constantly by software
|
80 |
+
patents. We wish to avoid the danger that redistributors of a free
|
81 |
+
program will individually obtain patent licenses, in effect making the
|
82 |
+
program proprietary. To prevent this, we have made it clear that any
|
83 |
+
patent must be licensed for everyone's free use or not licensed at all.
|
84 |
+
|
85 |
+
The precise terms and conditions for copying, distribution and
|
86 |
+
modification follow.
|
87 |
+
|
88 |
+
GNU GENERAL PUBLIC LICENSE
|
89 |
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
90 |
+
|
91 |
+
0. This License applies to any program or other work which contains
|
92 |
+
a notice placed by the copyright holder saying it may be distributed
|
93 |
+
under the terms of this General Public License. The "Program", below,
|
94 |
+
refers to any such program or work, and a "work based on the Program"
|
95 |
+
means either the Program or any derivative work under copyright law:
|
96 |
+
that is to say, a work containing the Program or a portion of it,
|
97 |
+
either verbatim or with modifications and/or translated into another
|
98 |
+
language. (Hereinafter, translation is included without limitation in
|
99 |
+
the term "modification".) Each licensee is addressed as "you".
|
100 |
+
|
101 |
+
Activities other than copying, distribution and modification are not
|
102 |
+
covered by this License; they are outside its scope. The act of
|
103 |
+
running the Program is not restricted, and the output from the Program
|
104 |
+
is covered only if its contents constitute a work based on the
|
105 |
+
Program (independent of having been made by running the Program).
|
106 |
+
Whether that is true depends on what the Program does.
|
107 |
+
|
108 |
+
1. You may copy and distribute verbatim copies of the Program's
|
109 |
+
source code as you receive it, in any medium, provided that you
|
110 |
+
conspicuously and appropriately publish on each copy an appropriate
|
111 |
+
copyright notice and disclaimer of warranty; keep intact all the
|
112 |
+
notices that refer to this License and to the absence of any warranty;
|
113 |
+
and give any other recipients of the Program a copy of this License
|
114 |
+
along with the Program.
|
115 |
+
|
116 |
+
You may charge a fee for the physical act of transferring a copy, and
|
117 |
+
you may at your option offer warranty protection in exchange for a fee.
|
118 |
+
|
119 |
+
2. You may modify your copy or copies of the Program or any portion
|
120 |
+
of it, thus forming a work based on the Program, and copy and
|
121 |
+
distribute such modifications or work under the terms of Section 1
|
122 |
+
above, provided that you also meet all of these conditions:
|
123 |
+
|
124 |
+
a) You must cause the modified files to carry prominent notices
|
125 |
+
stating that you changed the files and the date of any change.
|
126 |
+
|
127 |
+
b) You must cause any work that you distribute or publish, that in
|
128 |
+
whole or in part contains or is derived from the Program or any
|
129 |
+
part thereof, to be licensed as a whole at no charge to all third
|
130 |
+
parties under the terms of this License.
|
131 |
+
|
132 |
+
c) If the modified program normally reads commands interactively
|
133 |
+
when run, you must cause it, when started running for such
|
134 |
+
interactive use in the most ordinary way, to print or display an
|
135 |
+
announcement including an appropriate copyright notice and a
|
136 |
+
notice that there is no warranty (or else, saying that you provide
|
137 |
+
a warranty) and that users may redistribute the program under
|
138 |
+
these conditions, and telling the user how to view a copy of this
|
139 |
+
License. (Exception: if the Program itself is interactive but
|
140 |
+
does not normally print such an announcement, your work based on
|
141 |
+
the Program is not required to print an announcement.)
|
142 |
+
|
143 |
+
These requirements apply to the modified work as a whole. If
|
144 |
+
identifiable sections of that work are not derived from the Program,
|
145 |
+
and can be reasonably considered independent and separate works in
|
146 |
+
themselves, then this License, and its terms, do not apply to those
|
147 |
+
sections when you distribute them as separate works. But when you
|
148 |
+
distribute the same sections as part of a whole which is a work based
|
149 |
+
on the Program, the distribution of the whole must be on the terms of
|
150 |
+
this License, whose permissions for other licensees extend to the
|
151 |
+
entire whole, and thus to each and every part regardless of who wrote it.
|
152 |
+
|
153 |
+
Thus, it is not the intent of this section to claim rights or contest
|
154 |
+
your rights to work written entirely by you; rather, the intent is to
|
155 |
+
exercise the right to control the distribution of derivative or
|
156 |
+
collective works based on the Program.
|
157 |
+
|
158 |
+
In addition, mere aggregation of another work not based on the Program
|
159 |
+
with the Program (or with a work based on the Program) on a volume of
|
160 |
+
a storage or distribution medium does not bring the other work under
|
161 |
+
the scope of this License.
|
162 |
+
|
163 |
+
3. You may copy and distribute the Program (or a work based on it,
|
164 |
+
under Section 2) in object code or executable form under the terms of
|
165 |
+
Sections 1 and 2 above provided that you also do one of the following:
|
166 |
+
|
167 |
+
a) Accompany it with the complete corresponding machine-readable
|
168 |
+
source code, which must be distributed under the terms of Sections
|
169 |
+
1 and 2 above on a medium customarily used for software interchange; or,
|
170 |
+
|
171 |
+
b) Accompany it with a written offer, valid for at least three
|
172 |
+
years, to give any third party, for a charge no more than your
|
173 |
+
cost of physically performing source distribution, a complete
|
174 |
+
machine-readable copy of the corresponding source code, to be
|
175 |
+
distributed under the terms of Sections 1 and 2 above on a medium
|
176 |
+
customarily used for software interchange; or,
|
177 |
+
|
178 |
+
c) Accompany it with the information you received as to the offer
|
179 |
+
to distribute corresponding source code. (This alternative is
|
180 |
+
allowed only for noncommercial distribution and only if you
|
181 |
+
received the program in object code or executable form with such
|
182 |
+
an offer, in accord with Subsection b above.)
|
183 |
+
|
184 |
+
The source code for a work means the preferred form of the work for
|
185 |
+
making modifications to it. For an executable work, complete source
|
186 |
+
code means all the source code for all modules it contains, plus any
|
187 |
+
associated interface definition files, plus the scripts used to
|
188 |
+
control compilation and installation of the executable. However, as a
|
189 |
+
special exception, the source code distributed need not include
|
190 |
+
anything that is normally distributed (in either source or binary
|
191 |
+
form) with the major components (compiler, kernel, and so on) of the
|
192 |
+
operating system on which the executable runs, unless that component
|
193 |
+
itself accompanies the executable.
|
194 |
+
|
195 |
+
If distribution of executable or object code is made by offering
|
196 |
+
access to copy from a designated place, then offering equivalent
|
197 |
+
access to copy the source code from the same place counts as
|
198 |
+
distribution of the source code, even though third parties are not
|
199 |
+
compelled to copy the source along with the object code.
|
200 |
+
|
201 |
+
4. You may not copy, modify, sublicense, or distribute the Program
|
202 |
+
except as expressly provided under this License. Any attempt
|
203 |
+
otherwise to copy, modify, sublicense or distribute the Program is
|
204 |
+
void, and will automatically terminate your rights under this License.
|
205 |
+
However, parties who have received copies, or rights, from you under
|
206 |
+
this License will not have their licenses terminated so long as such
|
207 |
+
parties remain in full compliance.
|
208 |
+
|
209 |
+
5. You are not required to accept this License, since you have not
|
210 |
+
signed it. However, nothing else grants you permission to modify or
|
211 |
+
distribute the Program or its derivative works. These actions are
|
212 |
+
prohibited by law if you do not accept this License. Therefore, by
|
213 |
+
modifying or distributing the Program (or any work based on the
|
214 |
+
Program), you indicate your acceptance of this License to do so, and
|
215 |
+
all its terms and conditions for copying, distributing or modifying
|
216 |
+
the Program or works based on it.
|
217 |
+
|
218 |
+
6. Each time you redistribute the Program (or any work based on the
|
219 |
+
Program), the recipient automatically receives a license from the
|
220 |
+
original licensor to copy, distribute or modify the Program subject to
|
221 |
+
these terms and conditions. You may not impose any further
|
222 |
+
restrictions on the recipients' exercise of the rights granted herein.
|
223 |
+
You are not responsible for enforcing compliance by third parties to
|
224 |
+
this License.
|
225 |
+
|
226 |
+
7. If, as a consequence of a court judgment or allegation of patent
|
227 |
+
infringement or for any other reason (not limited to patent issues),
|
228 |
+
conditions are imposed on you (whether by court order, agreement or
|
229 |
+
otherwise) that contradict the conditions of this License, they do not
|
230 |
+
excuse you from the conditions of this License. If you cannot
|
231 |
+
distribute so as to satisfy simultaneously your obligations under this
|
232 |
+
License and any other pertinent obligations, then as a consequence you
|
233 |
+
may not distribute the Program at all. For example, if a patent
|
234 |
+
license would not permit royalty-free redistribution of the Program by
|
235 |
+
all those who receive copies directly or indirectly through you, then
|
236 |
+
the only way you could satisfy both it and this License would be to
|
237 |
+
refrain entirely from distribution of the Program.
|
238 |
+
|
239 |
+
If any portion of this section is held invalid or unenforceable under
|
240 |
+
any particular circumstance, the balance of the section is intended to
|
241 |
+
apply and the section as a whole is intended to apply in other
|
242 |
+
circumstances.
|
243 |
+
|
244 |
+
It is not the purpose of this section to induce you to infringe any
|
245 |
+
patents or other property right claims or to contest validity of any
|
246 |
+
such claims; this section has the sole purpose of protecting the
|
247 |
+
integrity of the free software distribution system, which is
|
248 |
+
implemented by public license practices. Many people have made
|
249 |
+
generous contributions to the wide range of software distributed
|
250 |
+
through that system in reliance on consistent application of that
|
251 |
+
system; it is up to the author/donor to decide if he or she is willing
|
252 |
+
to distribute software through any other system and a licensee cannot
|
253 |
+
impose that choice.
|
254 |
+
|
255 |
+
This section is intended to make thoroughly clear what is believed to
|
256 |
+
be a consequence of the rest of this License.
|
257 |
+
|
258 |
+
8. If the distribution and/or use of the Program is restricted in
|
259 |
+
certain countries either by patents or by copyrighted interfaces, the
|
260 |
+
original copyright holder who places the Program under this License
|
261 |
+
may add an explicit geographical distribution limitation excluding
|
262 |
+
those countries, so that distribution is permitted only in or among
|
263 |
+
countries not thus excluded. In such case, this License incorporates
|
264 |
+
the limitation as if written in the body of this License.
|
265 |
+
|
266 |
+
9. The Free Software Foundation may publish revised and/or new versions
|
267 |
+
of the General Public License from time to time. Such new versions will
|
268 |
+
be similar in spirit to the present version, but may differ in detail to
|
269 |
+
address new problems or concerns.
|
270 |
+
|
271 |
+
Each version is given a distinguishing version number. If the Program
|
272 |
+
specifies a version number of this License which applies to it and "any
|
273 |
+
later version", you have the option of following the terms and conditions
|
274 |
+
either of that version or of any later version published by the Free
|
275 |
+
Software Foundation. If the Program does not specify a version number of
|
276 |
+
this License, you may choose any version ever published by the Free Software
|
277 |
+
Foundation.
|
278 |
+
|
279 |
+
10. If you wish to incorporate parts of the Program into other free
|
280 |
+
programs whose distribution conditions are different, write to the author
|
281 |
+
to ask for permission. For software which is copyrighted by the Free
|
282 |
+
Software Foundation, write to the Free Software Foundation; we sometimes
|
283 |
+
make exceptions for this. Our decision will be guided by the two goals
|
284 |
+
of preserving the free status of all derivatives of our free software and
|
285 |
+
of promoting the sharing and reuse of software generally.
|
286 |
+
|
287 |
+
NO WARRANTY
|
288 |
+
|
289 |
+
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
290 |
+
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
291 |
+
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
292 |
+
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
293 |
+
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
294 |
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
295 |
+
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
296 |
+
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
297 |
+
REPAIR OR CORRECTION.
|
298 |
+
|
299 |
+
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
300 |
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
301 |
+
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
302 |
+
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
303 |
+
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
304 |
+
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
305 |
+
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
306 |
+
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
307 |
+
POSSIBILITY OF SUCH DAMAGES.
|
308 |
+
|
309 |
+
END OF TERMS AND CONDITIONS
|
310 |
+
|
311 |
+
How to Apply These Terms to Your New Programs
|
312 |
+
|
313 |
+
If you develop a new program, and you want it to be of the greatest
|
314 |
+
possible use to the public, the best way to achieve this is to make it
|
315 |
+
free software which everyone can redistribute and change under these terms.
|
316 |
+
|
317 |
+
To do so, attach the following notices to the program. It is safest
|
318 |
+
to attach them to the start of each source file to most effectively
|
319 |
+
convey the exclusion of warranty; and each file should have at least
|
320 |
+
the "copyright" line and a pointer to where the full notice is found.
|
321 |
+
|
322 |
+
<one line to give the program's name and a brief idea of what it does.>
|
323 |
+
Copyright (C) <year> <name of author>
|
324 |
+
|
325 |
+
This program is free software; you can redistribute it and/or modify
|
326 |
+
it under the terms of the GNU General Public License as published by
|
327 |
+
the Free Software Foundation; either version 2 of the License, or
|
328 |
+
(at your option) any later version.
|
329 |
+
|
330 |
+
This program is distributed in the hope that it will be useful,
|
331 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
332 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
333 |
+
GNU General Public License for more details.
|
334 |
+
|
335 |
+
You should have received a copy of the GNU General Public License along
|
336 |
+
with this program; if not, write to the Free Software Foundation, Inc.,
|
337 |
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
338 |
+
|
339 |
+
Also add information on how to contact you by electronic and paper mail.
|
340 |
+
|
341 |
+
If the program is interactive, make it output a short notice like this
|
342 |
+
when it starts in an interactive mode:
|
343 |
+
|
344 |
+
Gnomovision version 69, Copyright (C) year name of author
|
345 |
+
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
346 |
+
This is free software, and you are welcome to redistribute it
|
347 |
+
under certain conditions; type `show c' for details.
|
348 |
+
|
349 |
+
The hypothetical commands `show w' and `show c' should show the appropriate
|
350 |
+
parts of the General Public License. Of course, the commands you use may
|
351 |
+
be called something other than `show w' and `show c'; they could even be
|
352 |
+
mouse-clicks or menu items--whatever suits your program.
|
353 |
+
|
354 |
+
You should also get your employer (if you work as a programmer) or your
|
355 |
+
school, if any, to sign a "copyright disclaimer" for the program, if
|
356 |
+
necessary. Here is a sample; alter the names:
|
357 |
+
|
358 |
+
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
359 |
+
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
360 |
+
|
361 |
+
<signature of Ty Coon>, 1 April 1989
|
362 |
+
Ty Coon, President of Vice
|
363 |
+
|
364 |
+
This General Public License does not permit incorporating your program into
|
365 |
+
proprietary programs. If your program is a subroutine library, you may
|
366 |
+
consider it more useful to permit linking proprietary applications with the
|
367 |
+
library. If this is what you want to do, use the GNU Lesser General
|
368 |
+
Public License instead of this License.
|
369 |
+
|
370 |
+
WRITTEN OFFER
|
371 |
+
|
372 |
+
The source code for any program binaries or compressed scripts that are
|
373 |
+
included with WordPress can be freely obtained at the following URL:
|
374 |
+
|
375 |
+
http://wordpress.org/download/source/
|
readme.txt
CHANGED
@@ -3,10 +3,12 @@ Contributors: shinephp
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=vladimir%40shinephp%2ecom&lc=RU&item_name=ShinePHP%2ecom&item_number=User%20Role%20Editor%20WordPress%20plugin¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
|
4 |
Tags: user, role, editor, security, access, permission, capability
|
5 |
Requires at least: 3.5
|
6 |
-
Tested up to: 3.
|
7 |
Stable tag: trunk
|
|
|
|
|
8 |
|
9 |
-
User Role Editor WordPress plugin makes the role capabilities changing easy. You can change any
|
10 |
|
11 |
== Description ==
|
12 |
|
@@ -19,21 +21,20 @@ Capabilities could be assigned on per user basis. Multiple roles could be assign
|
|
19 |
You can add new capabilities and remove unnecessary capabilities which could be left from uninstalled plugins.
|
20 |
Multi-site support is provided.
|
21 |
|
22 |
-
|
|
|
|
|
|
|
23 |
Buy [Pro version](htpp://role-editor.com).
|
24 |
Pro version is advertisement free. Pro version includes extra modules:
|
25 |
<ul>
|
26 |
-
<li>"Export/Import" module. You can export user roles to the local file and import them then
|
27 |
-
to any WordPress site or other sites of the multi-site WordPress network.
|
28 |
<li>Roles management via Network Admin for multisite configuration.</li>
|
|
|
|
|
29 |
<li>Per form users access management for Gravity Forms plugin.</li>
|
30 |
</ul>
|
31 |
-
Premium support is included.
|
32 |
-
|
33 |
-
To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/user-role-editor-wordpress-plugin/) at [shinephp.com](http://shinephp.com)
|
34 |
-
|
35 |
-
Русская версия этой статьи доступна по адресу [ru.shinephp.com](http://ru.shinephp.com/user-role-editor-wordpress-plugin-rus/)
|
36 |
-
|
37 |
|
38 |
== Installation ==
|
39 |
|
@@ -60,7 +61,6 @@ To read full FAQ section visit [this page](http://www.shinephp.com/user-role-edi
|
|
60 |
|
61 |
To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/user-role-editor-wordpress-plugin/) at [shinephp.com](shinephp.com).
|
62 |
|
63 |
-
|
64 |
= Translations =
|
65 |
* Catalan: [Efraim Bayarri](http://replicantsfactory.com/);
|
66 |
* Spanish: [Dario Ferrer](http://darioferrer.com/);
|
@@ -76,6 +76,19 @@ Share with me new ideas about plugin further development and link to your site w
|
|
76 |
|
77 |
== Changelog ==
|
78 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
= 4.5.2 =
|
80 |
* 23.09.2013
|
81 |
* User capabilities editor updated to support capabilities beyond the user roles - capabilities added by other plugins directly to the users, or deleted from the user roles.
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=vladimir%40shinephp%2ecom&lc=RU&item_name=ShinePHP%2ecom&item_number=User%20Role%20Editor%20WordPress%20plugin¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
|
4 |
Tags: user, role, editor, security, access, permission, capability
|
5 |
Requires at least: 3.5
|
6 |
+
Tested up to: 3.7
|
7 |
Stable tag: trunk
|
8 |
+
License: GPLv2 or later
|
9 |
+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
+
User Role Editor WordPress plugin makes the role capabilities changing easy. You can change any WordPress user role.
|
12 |
|
13 |
== Description ==
|
14 |
|
21 |
You can add new capabilities and remove unnecessary capabilities which could be left from uninstalled plugins.
|
22 |
Multi-site support is provided.
|
23 |
|
24 |
+
To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/user-role-editor-wordpress-plugin/) at [shinephp.com](http://shinephp.com)
|
25 |
+
Русская версия этой статьи доступна по адресу [ru.shinephp.com](http://ru.shinephp.com/user-role-editor-wordpress-plugin-rus/)
|
26 |
+
|
27 |
+
Do you need more functionality with quality support in real time? Do you wish remove advertisements from User Role Editor pages?
|
28 |
Buy [Pro version](htpp://role-editor.com).
|
29 |
Pro version is advertisement free. Pro version includes extra modules:
|
30 |
<ul>
|
31 |
+
<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>
|
|
|
32 |
<li>Roles management via Network Admin for multisite configuration.</li>
|
33 |
+
<li>Users permissions management via Network Admin for multisite configuration.</li>
|
34 |
+
<li>Per plugin users access management for plugins activate/deactivate operations.</li>
|
35 |
<li>Per form users access management for Gravity Forms plugin.</li>
|
36 |
</ul>
|
37 |
+
Premium support is included. It is provided by User Role Editor plugin author Vladimir Garagulya. You will get an answer on your question not once a week or never, but in 24 hours.
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
== Installation ==
|
40 |
|
61 |
|
62 |
To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/user-role-editor-wordpress-plugin/) at [shinephp.com](shinephp.com).
|
63 |
|
|
|
64 |
= Translations =
|
65 |
* Catalan: [Efraim Bayarri](http://replicantsfactory.com/);
|
66 |
* Spanish: [Dario Ferrer](http://darioferrer.com/);
|
76 |
|
77 |
== Changelog ==
|
78 |
|
79 |
+
= 4.6 =
|
80 |
+
* 21.10.2013
|
81 |
+
* Multi-site: 'unfiltered_html' capability marked as deprecated one. Read this post for more information (http://shinephp.com/is-unfiltered_html-capability-deprecated/).
|
82 |
+
* Multi-site: 'manage_network%' capabilities were included into WordPress core capabilities list.
|
83 |
+
* On screen help was added to the "User Role Editor Options" page - click "Help" at the top right corner to read it.
|
84 |
+
* Bug fix: turning off capability at the Administrator role fully removed that capability from capabilities list.
|
85 |
+
* Various internal code enhancements.
|
86 |
+
* Information about GPLv2 license was added to show apparently - "User Role Editor" is licensed under GPLv2 or later.
|
87 |
+
* 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.
|
88 |
+
* Pro version only: 'wp-content/uploads' folder is used now instead of plugin's own one to process file with importing roles data.
|
89 |
+
* Pro version only: Bug fix: Nonexistent method was called to notify user about folder write permission error during roles import.
|
90 |
+
|
91 |
+
|
92 |
= 4.5.2 =
|
93 |
* 23.09.2013
|
94 |
* User capabilities editor updated to support capabilities beyond the user roles - capabilities added by other plugins directly to the users, or deleted from the user roles.
|
screenshot-4.png
CHANGED
Binary file
|
user-role-editor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: User Role Editor
|
4 |
Plugin URI: http://role-editor.com
|
5 |
Description: Change/add/delete WordPress user roles and capabilities.
|
6 |
-
Version: 4.
|
7 |
Author: Vladimir Garagulya
|
8 |
Author URI: http://www.shinephp.com
|
9 |
Text Domain: ure
|
@@ -19,6 +19,10 @@ if (!function_exists("get_option")) {
|
|
19 |
die; // Silence is golden, direct call is prohibited
|
20 |
}
|
21 |
|
|
|
|
|
|
|
|
|
22 |
define('URE_PLUGIN_URL', plugin_dir_url(__FILE__));
|
23 |
define('URE_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
24 |
define('URE_PLUGIN_FILE', basename(__FILE__));
|
@@ -41,8 +45,9 @@ Ure_Lib::check_version(get_bloginfo('version'), $ure_required_wp_version, $exit_
|
|
41 |
|
42 |
require_once(URE_PLUGIN_DIR .'includes/define-constants.php');
|
43 |
require_once(URE_PLUGIN_DIR .'includes/misc-support-stuff.php');
|
|
|
44 |
require_once( URE_PLUGIN_DIR .'includes/class-user-role-editor.php');
|
45 |
|
46 |
|
47 |
-
$ure_lib = new Ure_Lib('
|
48 |
new User_Role_Editor($ure_lib);
|
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.6
|
7 |
Author: Vladimir Garagulya
|
8 |
Author URI: http://www.shinephp.com
|
9 |
Text Domain: ure
|
19 |
die; // Silence is golden, direct call is prohibited
|
20 |
}
|
21 |
|
22 |
+
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_PLUGIN_URL', plugin_dir_url(__FILE__));
|
27 |
define('URE_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
28 |
define('URE_PLUGIN_FILE', basename(__FILE__));
|
45 |
|
46 |
require_once(URE_PLUGIN_DIR .'includes/define-constants.php');
|
47 |
require_once(URE_PLUGIN_DIR .'includes/misc-support-stuff.php');
|
48 |
+
require_once(URE_PLUGIN_DIR .'includes/class-ure-screen-help.php');
|
49 |
require_once( URE_PLUGIN_DIR .'includes/class-user-role-editor.php');
|
50 |
|
51 |
|
52 |
+
$ure_lib = new Ure_Lib('user_role_editor');
|
53 |
new User_Role_Editor($ure_lib);
|