Version Description
Download this release
Release Info
Developer | shinephp |
Plugin | User Role Editor |
Version | 4.19.2 |
Comparing to | |
See all releases |
Code changes from version 4.19.1 to 4.19.2
- css/ure-admin.css +0 -1
- includes/class-garvs-wp-lib.php +1 -1
- includes/class-ure-lib.php +139 -135
- includes/class-ure-screen-help.php +18 -18
- includes/class-user-other-roles.php +13 -11
- includes/class-user-role-editor.php +46 -46
- includes/index.php +0 -1
- includes/settings-template.php +19 -19
- includes/ure-role-edit.php +8 -8
- includes/ure-user-edit.php +11 -11
- index.php +0 -1
- lang/index.php +0 -1
- lang/ure-de_DE.mo +0 -0
- lang/ure-es_ES.mo +0 -0
- lang/ure-fa_IR.mo +0 -0
- lang/ure-fr_FR.mo +0 -0
- lang/ure-hu_HU.mo +0 -0
- lang/ure-id_ID.mo +0 -0
- lang/ure-it_IT.mo +0 -0
- lang/ure-nl_NL.mo +0 -0
- lang/ure-ru_RU.mo +0 -0
- lang/ure-tr_TR.mo +0 -0
- lang/ure.mo +0 -0
- lang/user-role-editor-de_DE.mo +0 -0
- lang/{ure-de_DE.po → user-role-editor-de_DE.po} +593 -568
- lang/user-role-editor-es_ES.mo +0 -0
- lang/{ure-es_ES.po → user-role-editor-es_ES.po} +467 -443
- lang/user-role-editor-fa_IR.mo +0 -0
- lang/{ure-fa_IR.po → user-role-editor-fa_IR.po} +460 -435
- lang/user-role-editor-fr_FR.mo +0 -0
- lang/{ure-fr_FR.po → user-role-editor-fr_FR.po} +473 -448
- lang/{ure-he_IL.mo → user-role-editor-he_IL.mo} +0 -0
- lang/{ure-he_IL.po → user-role-editor-he_IL.po} +884 -856
- lang/user-role-editor-hu_HU.mo +0 -0
- lang/{ure-hu_HU.po → user-role-editor-hu_HU.po} +470 -445
- lang/user-role-editor-id_ID.mo +0 -0
- lang/{ure-id_ID.po → user-role-editor-id_ID.po} +471 -446
- lang/user-role-editor-it_IT.mo +0 -0
- lang/{ure-it_IT.po → user-role-editor-it_IT.po} +467 -442
- lang/user-role-editor-nl_NL.mo +0 -0
- lang/{ure-nl_NL.po → user-role-editor-nl_NL.po} +938 -912
- lang/user-role-editor-ru_RU.mo +0 -0
- lang/{ure-ru_RU.po → user-role-editor-ru_RU.po} +465 -442
- lang/user-role-editor-tr_TR.mo +0 -0
- lang/{ure-tr_TR.po → user-role-editor-tr_TR.po} +467 -442
- lang/user-role-editor.mo +0 -0
- lang/{ure.pot → user-role-editor.pot} +486 -464
- readme.txt +9 -15
- uninstall.php +0 -2
- user-role-editor.php +2 -2
css/ure-admin.css
CHANGED
@@ -82,7 +82,6 @@ input.warning:hover, a.warning:hover {
|
|
82 |
|
83 |
#ure_form_controls {
|
84 |
float: left;
|
85 |
-
width: 40%;
|
86 |
}
|
87 |
|
88 |
#ure_toolbar {
|
82 |
|
83 |
#ure_form_controls {
|
84 |
float: left;
|
|
|
85 |
}
|
86 |
|
87 |
#ure_toolbar {
|
includes/class-garvs-wp-lib.php
CHANGED
@@ -38,7 +38,7 @@ class Garvs_WP_Lib {
|
|
38 |
|
39 |
$this->init_options($options_id);
|
40 |
|
41 |
-
add_action('admin_notices', array(&$this, 'show_message'));
|
42 |
}
|
43 |
// end of __construct()
|
44 |
|
38 |
|
39 |
$this->init_options($options_id);
|
40 |
|
41 |
+
//add_action('admin_notices', array(&$this, 'show_message')); // TODO: use WordPress notifications instead of my own
|
42 |
}
|
43 |
// end of __construct()
|
44 |
|
includes/class-ure-lib.php
CHANGED
@@ -244,7 +244,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
244 |
public function editor() {
|
245 |
|
246 |
if (!$this->editor_init0()) {
|
247 |
-
$this->show_message(esc_html__('Error: wrong request', '
|
248 |
return false;
|
249 |
}
|
250 |
$this->process_user_request();
|
@@ -277,27 +277,27 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
277 |
<!-- popup dialogs markup -->
|
278 |
<div id="ure_add_role_dialog" class="ure-modal-dialog" style="padding: 10px;">
|
279 |
<form id="ure_add_role_form" name="ure_add_role_form" method="POST">
|
280 |
-
<div class="ure-label"><?php esc_html_e('Role name (ID): ', '
|
281 |
<div class="ure-input"><input type="text" name="user_role_id" id="user_role_id" size="25"/></div>
|
282 |
-
<div class="ure-label"><?php esc_html_e('Display Role Name: ', '
|
283 |
<div class="ure-input"><input type="text" name="user_role_name" id="user_role_name" size="25"/></div>
|
284 |
-
<div class="ure-label"><?php esc_html_e('Make copy of: ', '
|
285 |
<div class="ure-input"><?php echo $this->role_to_copy_html; ?></div>
|
286 |
</form>
|
287 |
</div>
|
288 |
|
289 |
<div id="ure_rename_role_dialog" class="ure-modal-dialog" style="padding: 10px;">
|
290 |
<form id="ure_rename_role_form" name="ure_rename_role_form" method="POST">
|
291 |
-
<div class="ure-label"><?php esc_html_e('Role name (ID): ', '
|
292 |
<div class="ure-input"><input type="text" name="ren_user_role_id" id="ren_user_role_id" size="25" disabled /></div>
|
293 |
-
<div class="ure-label"><?php esc_html_e('Display Role Name: ', '
|
294 |
<div class="ure-input"><input type="text" name="ren_user_role_name" id="ren_user_role_name" size="25"/></div>
|
295 |
</form>
|
296 |
</div>
|
297 |
|
298 |
<div id="ure_delete_role_dialog" class="ure-modal-dialog">
|
299 |
<div style="padding:10px;">
|
300 |
-
<div class="ure-label"><?php esc_html_e('Select Role:', '
|
301 |
<div class="ure-input"><?php echo $this->role_delete_html; ?></div>
|
302 |
</div>
|
303 |
</div>
|
@@ -312,14 +312,14 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
312 |
|
313 |
<div id="ure_delete_capability_dialog" class="ure-modal-dialog">
|
314 |
<div style="padding:10px;">
|
315 |
-
<div class="ure-label"><?php esc_html_e('Delete:', '
|
316 |
<div class="ure-input"><?php echo $this->capability_remove_html; ?></div>
|
317 |
</div>
|
318 |
</div>
|
319 |
|
320 |
<div id="ure_add_capability_dialog" class="ure-modal-dialog">
|
321 |
<div style="padding:10px;">
|
322 |
-
<div class="ure-label"><?php esc_html_e('Capability name (ID): ', '
|
323 |
<div class="ure-input"><input type="text" name="capability_id" id="capability_id" size="25"/></div>
|
324 |
</div>
|
325 |
</div>
|
@@ -336,7 +336,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
336 |
?>
|
337 |
<div class="wrap">
|
338 |
<div id="ure-icon" class="icon32"><br/></div>
|
339 |
-
<h2><?php _e('User Role Editor', '
|
340 |
<div id="poststuff">
|
341 |
<div class="ure-sidebar" >
|
342 |
<?php
|
@@ -433,8 +433,8 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
433 |
protected function init_current_role_name() {
|
434 |
|
435 |
if (!isset($this->roles[$_POST['user_role']])) {
|
436 |
-
$mess = esc_html__('Error: ', '
|
437 |
-
esc_html__('does not exist', '
|
438 |
$this->current_role = '';
|
439 |
$this->current_role_name = '';
|
440 |
} else {
|
@@ -477,27 +477,27 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
477 |
$mess .= '<br/>';
|
478 |
}
|
479 |
if (!$this->apply_to_all) {
|
480 |
-
$mess = esc_html__('Role is updated successfully', '
|
481 |
} else {
|
482 |
-
$mess = esc_html__('Roles are updated for all network', '
|
483 |
}
|
484 |
} else {
|
485 |
if ($mess) {
|
486 |
$mess .= '<br/>';
|
487 |
}
|
488 |
-
$mess = esc_html__('Error occured during role(s) update', '
|
489 |
}
|
490 |
} else {
|
491 |
if ($this->update_user($this->user_to_edit)) {
|
492 |
if ($mess) {
|
493 |
$mess .= '<br/>';
|
494 |
}
|
495 |
-
$mess = esc_html__('User capabilities are updated successfully', '
|
496 |
} else {
|
497 |
if ($mess) {
|
498 |
$mess .= '<br/>';
|
499 |
}
|
500 |
-
$mess = esc_html__('Error occured during user update', '
|
501 |
}
|
502 |
}
|
503 |
return $mess;
|
@@ -555,7 +555,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
555 |
} else if ($action == 'delete-user-capability') {
|
556 |
$this->notification = $this->delete_capability();
|
557 |
} else if ($action == 'roles_restore_note') {
|
558 |
-
$this->notification = esc_html__('User Roles are restored to WordPress default values. ', '
|
559 |
} else if ($action == 'update') {
|
560 |
$this->roles = $this->get_user_roles();
|
561 |
$this->init_full_capabilities();
|
@@ -774,7 +774,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
774 |
{
|
775 |
global $wpdb, $wp_roles;
|
776 |
|
777 |
-
$error_message = 'Error! ' . __('Database operation error. Check log file.', '
|
778 |
$option_name = $wpdb->prefix . 'user_roles';
|
779 |
$backup_option_name = $wpdb->prefix . 'backup_user_roles';
|
780 |
$query = "select option_value
|
@@ -807,7 +807,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
807 |
<?php
|
808 |
$mess = '';
|
809 |
} else {
|
810 |
-
$mess = __('No backup data. It is created automatically before the first role data update.', '
|
811 |
}
|
812 |
if (isset($_REQUEST['user_role'])) {
|
813 |
unset($_REQUEST['user_role']);
|
@@ -1177,6 +1177,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1177 |
}
|
1178 |
$quant_in_column = (int) $quant / 3;
|
1179 |
$printed_quant = 0;
|
|
|
1180 |
foreach ($this->full_capabilities as $capability) {
|
1181 |
if ($core) {
|
1182 |
if (!$capability['wp_core']) { // show WP built-in capabilities 1st
|
@@ -1241,10 +1242,13 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1241 |
echo '<label for="' . $cap_id . '" title="' . $capability[$cap_ind_alt] . '" ' . $label_style . ' > ' .
|
1242 |
$capability[$cap_ind] . '</label> ' . $help_link . '</div>';
|
1243 |
$printed_quant++;
|
1244 |
-
|
|
|
1245 |
$printed_quant = 0;
|
1246 |
-
echo '</td>
|
1247 |
-
|
|
|
|
|
1248 |
}
|
1249 |
} else { // if (empty($hidden_class
|
1250 |
echo '</div>';
|
@@ -1433,9 +1437,9 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1433 |
}
|
1434 |
// end of switch
|
1435 |
if (!empty($url)) {
|
1436 |
-
$link = '<a href="' . $url . '" title="' . esc_html__('read about', '
|
1437 |
-
esc_html__('user capability', '
|
1438 |
-
URE_PLUGIN_URL . 'images/help.png" alt="' . esc_html__('Help', '
|
1439 |
} else {
|
1440 |
$link = '';
|
1441 |
}
|
@@ -1497,7 +1501,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1497 |
if (!isset($this->full_capabilities[$cap_id])) { // if capability was not added yet
|
1498 |
$cap = array();
|
1499 |
$cap['inner'] = $cap_id;
|
1500 |
-
$cap['human'] = esc_html__($this->convert_caps_to_readable($cap_id), '
|
1501 |
if (isset($this->built_in_wp_caps[$cap_id])) {
|
1502 |
$cap['wp_core'] = true;
|
1503 |
} else {
|
@@ -1690,7 +1694,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1690 |
protected function reset_user_roles() {
|
1691 |
|
1692 |
if (!current_user_can('ure_reset_roles')) {
|
1693 |
-
return esc_html__('Insufficient permissions to work with User Role Editor','
|
1694 |
}
|
1695 |
|
1696 |
$this->wp_roles_reinit();
|
@@ -1906,7 +1910,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1906 |
fclose($fh);
|
1907 |
|
1908 |
if ($show_message) {
|
1909 |
-
$this->show_message('Error! ' . esc_html__('Error is occur. Please check the log file.', '
|
1910 |
}
|
1911 |
}
|
1912 |
// end of log_event()
|
@@ -1943,7 +1947,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1943 |
global $wp_roles;
|
1944 |
|
1945 |
if (!current_user_can('ure_create_roles')) {
|
1946 |
-
return esc_html__('Insufficient permissions to work with User Role Editor','
|
1947 |
}
|
1948 |
$mess = '';
|
1949 |
$this->current_role = '';
|
@@ -1952,11 +1956,11 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1952 |
// sanitize user input for security
|
1953 |
$valid_name = preg_match('/[A-Za-z0-9_\-]*/', $user_role_id, $match);
|
1954 |
if (!$valid_name || ($valid_name && ($match[0] != $user_role_id))) { // some non-alphanumeric charactes found!
|
1955 |
-
return esc_html__('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', '
|
1956 |
}
|
1957 |
$numeric_name = preg_match('/[0-9]*/', $user_role_id, $match);
|
1958 |
if ($numeric_name && ($match[0] == $user_role_id)) { // numeric name discovered
|
1959 |
-
return esc_html__('Error: WordPress does not support numeric Role name (ID). Add latin characters to it.', '
|
1960 |
}
|
1961 |
|
1962 |
if ($user_role_id) {
|
@@ -1971,7 +1975,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1971 |
$wp_roles = new WP_Roles();
|
1972 |
}
|
1973 |
if (isset($wp_roles->roles[$user_role_id])) {
|
1974 |
-
return sprintf('Error! ' . esc_html__('Role %s exists already', '
|
1975 |
}
|
1976 |
$user_role_id = strtolower($user_role_id);
|
1977 |
$this->current_role = $user_role_id;
|
@@ -1986,9 +1990,9 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1986 |
// add new role to the roles array
|
1987 |
$result = add_role($user_role_id, $user_role_name, $capabilities);
|
1988 |
if (!isset($result) || empty($result)) {
|
1989 |
-
$mess = 'Error! ' . esc_html__('Error is encountered during new role create operation', '
|
1990 |
} else {
|
1991 |
-
$mess = sprintf(esc_html__('Role %s is created successfully', '
|
1992 |
}
|
1993 |
}
|
1994 |
}
|
@@ -2012,32 +2016,32 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2012 |
$mess = '';
|
2013 |
$user_role_id = filter_input(INPUT_POST, 'user_role_id', FILTER_SANITIZE_STRING);
|
2014 |
if (empty($user_role_id)) {
|
2015 |
-
return esc_html__('Error: Role ID is empty!', '
|
2016 |
}
|
2017 |
$user_role_id = utf8_decode($user_role_id);
|
2018 |
// sanitize user input for security
|
2019 |
$match = array();
|
2020 |
$valid_name = preg_match('/[A-Za-z0-9_\-]*/', $user_role_id, $match);
|
2021 |
if (!$valid_name || ($valid_name && ($match[0] != $user_role_id))) { // some non-alphanumeric charactes found!
|
2022 |
-
return esc_html__('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', '
|
2023 |
}
|
2024 |
$numeric_name = preg_match('/[0-9]*/', $user_role_id, $match);
|
2025 |
if ($numeric_name && ($match[0] == $user_role_id)) { // numeric name discovered
|
2026 |
-
return esc_html__('Error: WordPress does not support numeric Role name (ID). Add latin characters to it.', '
|
2027 |
}
|
2028 |
|
2029 |
$new_role_name = filter_input(INPUT_POST, 'user_role_name', FILTER_SANITIZE_STRING);
|
2030 |
if (!empty($new_role_name)) {
|
2031 |
$new_role_name = sanitize_text_field($new_role_name);
|
2032 |
} else {
|
2033 |
-
return esc_html__('Error: Empty role display name is not allowed.', '
|
2034 |
}
|
2035 |
|
2036 |
if (!isset($wp_roles)) {
|
2037 |
$wp_roles = new WP_Roles();
|
2038 |
}
|
2039 |
if (!isset($wp_roles->roles[$user_role_id])) {
|
2040 |
-
return sprintf('Error! ' . esc_html__('Role %s does not exists', '
|
2041 |
}
|
2042 |
$this->current_role = $user_role_id;
|
2043 |
$this->current_role_name = $new_role_name;
|
@@ -2045,7 +2049,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2045 |
$old_role_name = $wp_roles->roles[$user_role_id]['name'];
|
2046 |
$wp_roles->roles[$user_role_id]['name'] = $new_role_name;
|
2047 |
update_option( $wp_roles->role_key, $wp_roles->roles );
|
2048 |
-
$mess = sprintf(esc_html__('Role %s is renamed to %s successfully', '
|
2049 |
|
2050 |
return $mess;
|
2051 |
}
|
@@ -2059,7 +2063,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2059 |
global $wp_roles;
|
2060 |
|
2061 |
if (!current_user_can('ure_delete_roles')) {
|
2062 |
-
return esc_html__('Insufficient permissions to work with User Role Editor','
|
2063 |
}
|
2064 |
if (!isset($wp_roles)) {
|
2065 |
$wp_roles = new WP_Roles();
|
@@ -2107,7 +2111,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2107 |
protected function delete_role() {
|
2108 |
|
2109 |
if (!current_user_can('ure_delete_roles')) {
|
2110 |
-
return esc_html__('Insufficient permissions to work with User Role Editor','
|
2111 |
}
|
2112 |
$mess = '';
|
2113 |
if (isset($_POST['user_role_id']) && $_POST['user_role_id']) {
|
@@ -2118,11 +2122,11 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2118 |
$result = $this->delete_wp_roles(array($role));
|
2119 |
}
|
2120 |
if (empty($result)) {
|
2121 |
-
$mess = 'Error! ' . esc_html__('Error encountered during role delete operation', '
|
2122 |
} elseif ($role==-1) {
|
2123 |
-
$mess = sprintf(esc_html__('Unused roles are deleted successfully', '
|
2124 |
} else {
|
2125 |
-
$mess = sprintf(esc_html__('Role %s is deleted successfully', '
|
2126 |
}
|
2127 |
unset($_POST['user_role']);
|
2128 |
}
|
@@ -2150,15 +2154,15 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2150 |
if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
|
2151 |
$result = update_option('default_role', $user_role_id);
|
2152 |
if (empty($result)) {
|
2153 |
-
$mess = 'Error! ' . esc_html__('Error encountered during default role change operation', '
|
2154 |
} else {
|
2155 |
$this->get_default_role();
|
2156 |
-
$mess = sprintf(esc_html__('Default role for new users is set to %s successfully', '
|
2157 |
}
|
2158 |
} elseif ($user_role_id === 'administrator') {
|
2159 |
-
$mess = 'Error! ' . esc_html__('Can not set Administrator role as a default one', '
|
2160 |
} else {
|
2161 |
-
$mess = 'Error! ' . esc_html__('This role does not exist - ', '
|
2162 |
}
|
2163 |
}
|
2164 |
|
@@ -2174,73 +2178,73 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2174 |
// for the translation purpose
|
2175 |
if (false) {
|
2176 |
// Standard WordPress roles
|
2177 |
-
__('Editor', '
|
2178 |
-
__('Author', '
|
2179 |
-
__('Contributor', '
|
2180 |
-
__('Subscriber', '
|
2181 |
// Standard WordPress capabilities
|
2182 |
-
__('Switch themes', '
|
2183 |
-
__('Edit themes', '
|
2184 |
-
__('Activate plugins', '
|
2185 |
-
__('Edit plugins', '
|
2186 |
-
__('Edit users', '
|
2187 |
-
__('Edit files', '
|
2188 |
-
__('Manage options', '
|
2189 |
-
__('Moderate comments', '
|
2190 |
-
__('Manage categories', '
|
2191 |
-
__('Manage links', '
|
2192 |
-
__('Upload files', '
|
2193 |
-
__('Import', '
|
2194 |
-
__('Unfiltered html', '
|
2195 |
-
__('Edit posts', '
|
2196 |
-
__('Edit others posts', '
|
2197 |
-
__('Edit published posts', '
|
2198 |
-
__('Publish posts', '
|
2199 |
-
__('Edit pages', '
|
2200 |
-
__('Read', '
|
2201 |
-
__('Level 10', '
|
2202 |
-
__('Level 9', '
|
2203 |
-
__('Level 8', '
|
2204 |
-
__('Level 7', '
|
2205 |
-
__('Level 6', '
|
2206 |
-
__('Level 5', '
|
2207 |
-
__('Level 4', '
|
2208 |
-
__('Level 3', '
|
2209 |
-
__('Level 2', '
|
2210 |
-
__('Level 1', '
|
2211 |
-
__('Level 0', '
|
2212 |
-
__('Edit others pages', '
|
2213 |
-
__('Edit published pages', '
|
2214 |
-
__('Publish pages', '
|
2215 |
-
__('Delete pages', '
|
2216 |
-
__('Delete others pages', '
|
2217 |
-
__('Delete published pages', '
|
2218 |
-
__('Delete posts', '
|
2219 |
-
__('Delete others posts', '
|
2220 |
-
__('Delete published posts', '
|
2221 |
-
__('Delete private posts', '
|
2222 |
-
__('Edit private posts', '
|
2223 |
-
__('Read private posts', '
|
2224 |
-
__('Delete private pages', '
|
2225 |
-
__('Edit private pages', '
|
2226 |
-
__('Read private pages', '
|
2227 |
-
__('Delete users', '
|
2228 |
-
__('Create users', '
|
2229 |
-
__('Unfiltered upload', '
|
2230 |
-
__('Edit dashboard', '
|
2231 |
-
__('Update plugins', '
|
2232 |
-
__('Delete plugins', '
|
2233 |
-
__('Install plugins', '
|
2234 |
-
__('Update themes', '
|
2235 |
-
__('Install themes', '
|
2236 |
-
__('Update core', '
|
2237 |
-
__('List users', '
|
2238 |
-
__('Remove users', '
|
2239 |
-
__('Add users', '
|
2240 |
-
__('Promote users', '
|
2241 |
-
__('Edit theme options', '
|
2242 |
-
__('Delete themes', '
|
2243 |
-
__('Export', '
|
2244 |
}
|
2245 |
}
|
2246 |
// end of ure_TranslationData()
|
@@ -2355,7 +2359,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2355 |
global $wp_roles;
|
2356 |
|
2357 |
if (!current_user_can('ure_create_capabilities')) {
|
2358 |
-
return esc_html__('Insufficient permissions to work with User Role Editor','
|
2359 |
}
|
2360 |
$mess = '';
|
2361 |
if (isset($_POST['capability_id']) && $_POST['capability_id']) {
|
@@ -2363,7 +2367,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2363 |
// sanitize user input for security
|
2364 |
$valid_name = preg_match('/[A-Za-z0-9_\-]*/', $user_capability, $match);
|
2365 |
if (!$valid_name || ($valid_name && ($match[0] != $user_capability))) { // some non-alphanumeric charactes found!
|
2366 |
-
return 'Error! ' . esc_html__('Error: Capability name must contain latin characters and digits only!', '
|
2367 |
;
|
2368 |
}
|
2369 |
|
@@ -2376,9 +2380,9 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2376 |
$administrator = $wp_roles->get_role('administrator');
|
2377 |
if (!$administrator->has_cap($user_capability)) {
|
2378 |
$wp_roles->add_cap('administrator', $user_capability);
|
2379 |
-
$mess = sprintf(esc_html__('Capability %s is added successfully', '
|
2380 |
} else {
|
2381 |
-
$mess = sprintf('Error! ' . esc_html__('Capability %s exists already', '
|
2382 |
}
|
2383 |
}
|
2384 |
}
|
@@ -2400,14 +2404,14 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2400 |
|
2401 |
|
2402 |
if (!current_user_can('ure_delete_capabilities')) {
|
2403 |
-
return esc_html__('Insufficient permissions to work with User Role Editor','
|
2404 |
}
|
2405 |
$mess = '';
|
2406 |
if (!empty($_POST['user_capability_id'])) {
|
2407 |
$capability_id = $_POST['user_capability_id'];
|
2408 |
$caps_to_remove = $this->get_caps_to_remove();
|
2409 |
if (!is_array($caps_to_remove) || count($caps_to_remove) == 0 || !isset($caps_to_remove[$capability_id])) {
|
2410 |
-
return sprintf(esc_html__('Error! You do not have permission to delete this capability: %s!', '
|
2411 |
}
|
2412 |
|
2413 |
// process users
|
@@ -2426,7 +2430,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2426 |
}
|
2427 |
}
|
2428 |
|
2429 |
-
$mess = sprintf(esc_html__('Capability %s was removed successfully', '
|
2430 |
}
|
2431 |
|
2432 |
return $mess;
|
@@ -2494,12 +2498,12 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2494 |
?>
|
2495 |
<h2>User Role Editor</h2>
|
2496 |
|
2497 |
-
<strong><?php esc_html_e('Version:', '
|
2498 |
-
<a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/vladimir.png'; ?>);" target="_blank" href="http://www.shinephp.com/"><?php _e("Author's website", '
|
2499 |
-
<a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="https://www.role-editor.com"><?php _e('Plugin webpage', '
|
2500 |
-
<a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="https://www.role-editor.com/download-plugin"><?php _e('Plugin download', '
|
2501 |
-
<a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="https://www.role-editor.com/changelog"><?php _e('Changelog', '
|
2502 |
-
<a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/faq-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#faq"><?php _e('FAQ', '
|
2503 |
<hr />
|
2504 |
<div style="text-align: center;">
|
2505 |
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
@@ -2551,7 +2555,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2551 |
$selected = $this->option_selected($key, $this->wp_default_role);
|
2552 |
$disabled = ($key==='administrator' && $caps_access_restrict_for_simple_admin && !is_super_admin()) ? 'disabled' : '';
|
2553 |
if ($show_admin_role || $key != 'administrator') {
|
2554 |
-
$translated_name = esc_html__($value['name'], '
|
2555 |
if ($translated_name === $value['name']) { // get WordPress internal translation
|
2556 |
$translated_name = translate_user_role($translated_name);
|
2557 |
}
|
@@ -2570,9 +2574,9 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2570 |
if ($roles_can_delete && count($roles_can_delete) > 0) {
|
2571 |
$this->role_delete_html = '<select id="del_user_role" name="del_user_role" width="200" style="width: 200px">';
|
2572 |
foreach ($roles_can_delete as $key => $value) {
|
2573 |
-
$this->role_delete_html .= '<option value="' . $key . '">' . esc_html__($value, '
|
2574 |
}
|
2575 |
-
$this->role_delete_html .= '<option value="-1" style="color: red;">' . esc_html__('Delete All Unused Roles', '
|
2576 |
$this->role_delete_html .= '</select>';
|
2577 |
} else {
|
2578 |
$this->role_delete_html = '';
|
@@ -2585,13 +2589,13 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2585 |
$caps_access_restrict_for_simple_admin = $this->get_option('caps_access_restrict_for_simple_admin', 0);
|
2586 |
$show_admin_role = $this->show_admin_role_allowed();
|
2587 |
$this->role_to_copy_html = '<select id="user_role_copy_from" name="user_role_copy_from" style="width: '. $select_width .'px">
|
2588 |
-
<option value="none" selected="selected">' . esc_html__('None', '
|
2589 |
$this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
|
2590 |
foreach ($this->roles as $key => $value) {
|
2591 |
$selected1 = $this->option_selected($key, $this->current_role);
|
2592 |
$disabled = ($key==='administrator' && $caps_access_restrict_for_simple_admin && !is_super_admin()) ? 'disabled' : '';
|
2593 |
if ($show_admin_role || $key != 'administrator') {
|
2594 |
-
$translated_name = esc_html__($value['name'], '
|
2595 |
if ($translated_name === $value['name']) { // get WordPress internal translation
|
2596 |
$translated_name = translate_user_role($translated_name);
|
2597 |
}
|
@@ -2701,7 +2705,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2701 |
}
|
2702 |
echo '<label for="wp_role_' . $role_id .'"><input type="checkbox" id="wp_role_' . $role_id .
|
2703 |
'" name="wp_role_' . $role_id . '" value="' . $role_id . '"' . $checked .' /> ' .
|
2704 |
-
esc_html__($role['name'], '
|
2705 |
}
|
2706 |
|
2707 |
}
|
244 |
public function editor() {
|
245 |
|
246 |
if (!$this->editor_init0()) {
|
247 |
+
$this->show_message(esc_html__('Error: wrong request', 'user-role-editor'));
|
248 |
return false;
|
249 |
}
|
250 |
$this->process_user_request();
|
277 |
<!-- popup dialogs markup -->
|
278 |
<div id="ure_add_role_dialog" class="ure-modal-dialog" style="padding: 10px;">
|
279 |
<form id="ure_add_role_form" name="ure_add_role_form" method="POST">
|
280 |
+
<div class="ure-label"><?php esc_html_e('Role name (ID): ', 'user-role-editor'); ?></div>
|
281 |
<div class="ure-input"><input type="text" name="user_role_id" id="user_role_id" size="25"/></div>
|
282 |
+
<div class="ure-label"><?php esc_html_e('Display Role Name: ', 'user-role-editor'); ?></div>
|
283 |
<div class="ure-input"><input type="text" name="user_role_name" id="user_role_name" size="25"/></div>
|
284 |
+
<div class="ure-label"><?php esc_html_e('Make copy of: ', 'user-role-editor'); ?></div>
|
285 |
<div class="ure-input"><?php echo $this->role_to_copy_html; ?></div>
|
286 |
</form>
|
287 |
</div>
|
288 |
|
289 |
<div id="ure_rename_role_dialog" class="ure-modal-dialog" style="padding: 10px;">
|
290 |
<form id="ure_rename_role_form" name="ure_rename_role_form" method="POST">
|
291 |
+
<div class="ure-label"><?php esc_html_e('Role name (ID): ', 'user-role-editor'); ?></div>
|
292 |
<div class="ure-input"><input type="text" name="ren_user_role_id" id="ren_user_role_id" size="25" disabled /></div>
|
293 |
+
<div class="ure-label"><?php esc_html_e('Display Role Name: ', 'user-role-editor'); ?></div>
|
294 |
<div class="ure-input"><input type="text" name="ren_user_role_name" id="ren_user_role_name" size="25"/></div>
|
295 |
</form>
|
296 |
</div>
|
297 |
|
298 |
<div id="ure_delete_role_dialog" class="ure-modal-dialog">
|
299 |
<div style="padding:10px;">
|
300 |
+
<div class="ure-label"><?php esc_html_e('Select Role:', 'user-role-editor');?></div>
|
301 |
<div class="ure-input"><?php echo $this->role_delete_html; ?></div>
|
302 |
</div>
|
303 |
</div>
|
312 |
|
313 |
<div id="ure_delete_capability_dialog" class="ure-modal-dialog">
|
314 |
<div style="padding:10px;">
|
315 |
+
<div class="ure-label"><?php esc_html_e('Delete:', 'user-role-editor');?></div>
|
316 |
<div class="ure-input"><?php echo $this->capability_remove_html; ?></div>
|
317 |
</div>
|
318 |
</div>
|
319 |
|
320 |
<div id="ure_add_capability_dialog" class="ure-modal-dialog">
|
321 |
<div style="padding:10px;">
|
322 |
+
<div class="ure-label"><?php esc_html_e('Capability name (ID): ', 'user-role-editor'); ?></div>
|
323 |
<div class="ure-input"><input type="text" name="capability_id" id="capability_id" size="25"/></div>
|
324 |
</div>
|
325 |
</div>
|
336 |
?>
|
337 |
<div class="wrap">
|
338 |
<div id="ure-icon" class="icon32"><br/></div>
|
339 |
+
<h2><?php _e('User Role Editor', 'user-role-editor'); ?></h2>
|
340 |
<div id="poststuff">
|
341 |
<div class="ure-sidebar" >
|
342 |
<?php
|
433 |
protected function init_current_role_name() {
|
434 |
|
435 |
if (!isset($this->roles[$_POST['user_role']])) {
|
436 |
+
$mess = esc_html__('Error: ', 'user-role-editor') . esc_html__('Role', 'user-role-editor') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' .
|
437 |
+
esc_html__('does not exist', 'user-role-editor');
|
438 |
$this->current_role = '';
|
439 |
$this->current_role_name = '';
|
440 |
} else {
|
477 |
$mess .= '<br/>';
|
478 |
}
|
479 |
if (!$this->apply_to_all) {
|
480 |
+
$mess = esc_html__('Role is updated successfully', 'user-role-editor');
|
481 |
} else {
|
482 |
+
$mess = esc_html__('Roles are updated for all network', 'user-role-editor');
|
483 |
}
|
484 |
} else {
|
485 |
if ($mess) {
|
486 |
$mess .= '<br/>';
|
487 |
}
|
488 |
+
$mess = esc_html__('Error occured during role(s) update', 'user-role-editor');
|
489 |
}
|
490 |
} else {
|
491 |
if ($this->update_user($this->user_to_edit)) {
|
492 |
if ($mess) {
|
493 |
$mess .= '<br/>';
|
494 |
}
|
495 |
+
$mess = esc_html__('User capabilities are updated successfully', 'user-role-editor');
|
496 |
} else {
|
497 |
if ($mess) {
|
498 |
$mess .= '<br/>';
|
499 |
}
|
500 |
+
$mess = esc_html__('Error occured during user update', 'user-role-editor');
|
501 |
}
|
502 |
}
|
503 |
return $mess;
|
555 |
} else if ($action == 'delete-user-capability') {
|
556 |
$this->notification = $this->delete_capability();
|
557 |
} else if ($action == 'roles_restore_note') {
|
558 |
+
$this->notification = esc_html__('User Roles are restored to WordPress default values. ', 'user-role-editor');
|
559 |
} else if ($action == 'update') {
|
560 |
$this->roles = $this->get_user_roles();
|
561 |
$this->init_full_capabilities();
|
774 |
{
|
775 |
global $wpdb, $wp_roles;
|
776 |
|
777 |
+
$error_message = 'Error! ' . __('Database operation error. Check log file.', 'user-role-editor');
|
778 |
$option_name = $wpdb->prefix . 'user_roles';
|
779 |
$backup_option_name = $wpdb->prefix . 'backup_user_roles';
|
780 |
$query = "select option_value
|
807 |
<?php
|
808 |
$mess = '';
|
809 |
} else {
|
810 |
+
$mess = __('No backup data. It is created automatically before the first role data update.', 'user-role-editor');
|
811 |
}
|
812 |
if (isset($_REQUEST['user_role'])) {
|
813 |
unset($_REQUEST['user_role']);
|
1177 |
}
|
1178 |
$quant_in_column = (int) $quant / 3;
|
1179 |
$printed_quant = 0;
|
1180 |
+
$printed_total = 0;
|
1181 |
foreach ($this->full_capabilities as $capability) {
|
1182 |
if ($core) {
|
1183 |
if (!$capability['wp_core']) { // show WP built-in capabilities 1st
|
1242 |
echo '<label for="' . $cap_id . '" title="' . $capability[$cap_ind_alt] . '" ' . $label_style . ' > ' .
|
1243 |
$capability[$cap_ind] . '</label> ' . $help_link . '</div>';
|
1244 |
$printed_quant++;
|
1245 |
+
$printed_total++;
|
1246 |
+
if ($printed_quant>=$quant_in_column) {
|
1247 |
$printed_quant = 0;
|
1248 |
+
echo '</td>';
|
1249 |
+
if ($printed_total<$quant) {
|
1250 |
+
echo '<td style="vertical-align:top;">';
|
1251 |
+
}
|
1252 |
}
|
1253 |
} else { // if (empty($hidden_class
|
1254 |
echo '</div>';
|
1437 |
}
|
1438 |
// end of switch
|
1439 |
if (!empty($url)) {
|
1440 |
+
$link = '<a href="' . $url . '" title="' . esc_html__('read about', 'user-role-editor') .' '. $capability .' '.
|
1441 |
+
esc_html__('user capability', 'user-role-editor') .'" target="new"><img src="' .
|
1442 |
+
URE_PLUGIN_URL . 'images/help.png" alt="' . esc_html__('Help', 'user-role-editor') . '" /></a>';
|
1443 |
} else {
|
1444 |
$link = '';
|
1445 |
}
|
1501 |
if (!isset($this->full_capabilities[$cap_id])) { // if capability was not added yet
|
1502 |
$cap = array();
|
1503 |
$cap['inner'] = $cap_id;
|
1504 |
+
$cap['human'] = esc_html__($this->convert_caps_to_readable($cap_id), 'user-role-editor');
|
1505 |
if (isset($this->built_in_wp_caps[$cap_id])) {
|
1506 |
$cap['wp_core'] = true;
|
1507 |
} else {
|
1694 |
protected function reset_user_roles() {
|
1695 |
|
1696 |
if (!current_user_can('ure_reset_roles')) {
|
1697 |
+
return esc_html__('Insufficient permissions to work with User Role Editor','user-role-editor');
|
1698 |
}
|
1699 |
|
1700 |
$this->wp_roles_reinit();
|
1910 |
fclose($fh);
|
1911 |
|
1912 |
if ($show_message) {
|
1913 |
+
$this->show_message('Error! ' . esc_html__('Error is occur. Please check the log file.', 'user-role-editor'));
|
1914 |
}
|
1915 |
}
|
1916 |
// end of log_event()
|
1947 |
global $wp_roles;
|
1948 |
|
1949 |
if (!current_user_can('ure_create_roles')) {
|
1950 |
+
return esc_html__('Insufficient permissions to work with User Role Editor','user-role-editor');
|
1951 |
}
|
1952 |
$mess = '';
|
1953 |
$this->current_role = '';
|
1956 |
// sanitize user input for security
|
1957 |
$valid_name = preg_match('/[A-Za-z0-9_\-]*/', $user_role_id, $match);
|
1958 |
if (!$valid_name || ($valid_name && ($match[0] != $user_role_id))) { // some non-alphanumeric charactes found!
|
1959 |
+
return esc_html__('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'user-role-editor');
|
1960 |
}
|
1961 |
$numeric_name = preg_match('/[0-9]*/', $user_role_id, $match);
|
1962 |
if ($numeric_name && ($match[0] == $user_role_id)) { // numeric name discovered
|
1963 |
+
return esc_html__('Error: WordPress does not support numeric Role name (ID). Add latin characters to it.', 'user-role-editor');
|
1964 |
}
|
1965 |
|
1966 |
if ($user_role_id) {
|
1975 |
$wp_roles = new WP_Roles();
|
1976 |
}
|
1977 |
if (isset($wp_roles->roles[$user_role_id])) {
|
1978 |
+
return sprintf('Error! ' . esc_html__('Role %s exists already', 'user-role-editor'), $user_role_id);
|
1979 |
}
|
1980 |
$user_role_id = strtolower($user_role_id);
|
1981 |
$this->current_role = $user_role_id;
|
1990 |
// add new role to the roles array
|
1991 |
$result = add_role($user_role_id, $user_role_name, $capabilities);
|
1992 |
if (!isset($result) || empty($result)) {
|
1993 |
+
$mess = 'Error! ' . esc_html__('Error is encountered during new role create operation', 'user-role-editor');
|
1994 |
} else {
|
1995 |
+
$mess = sprintf(esc_html__('Role %s is created successfully', 'user-role-editor'), $user_role_name);
|
1996 |
}
|
1997 |
}
|
1998 |
}
|
2016 |
$mess = '';
|
2017 |
$user_role_id = filter_input(INPUT_POST, 'user_role_id', FILTER_SANITIZE_STRING);
|
2018 |
if (empty($user_role_id)) {
|
2019 |
+
return esc_html__('Error: Role ID is empty!', 'user-role-editor');
|
2020 |
}
|
2021 |
$user_role_id = utf8_decode($user_role_id);
|
2022 |
// sanitize user input for security
|
2023 |
$match = array();
|
2024 |
$valid_name = preg_match('/[A-Za-z0-9_\-]*/', $user_role_id, $match);
|
2025 |
if (!$valid_name || ($valid_name && ($match[0] != $user_role_id))) { // some non-alphanumeric charactes found!
|
2026 |
+
return esc_html__('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'user-role-editor');
|
2027 |
}
|
2028 |
$numeric_name = preg_match('/[0-9]*/', $user_role_id, $match);
|
2029 |
if ($numeric_name && ($match[0] == $user_role_id)) { // numeric name discovered
|
2030 |
+
return esc_html__('Error: WordPress does not support numeric Role name (ID). Add latin characters to it.', 'user-role-editor');
|
2031 |
}
|
2032 |
|
2033 |
$new_role_name = filter_input(INPUT_POST, 'user_role_name', FILTER_SANITIZE_STRING);
|
2034 |
if (!empty($new_role_name)) {
|
2035 |
$new_role_name = sanitize_text_field($new_role_name);
|
2036 |
} else {
|
2037 |
+
return esc_html__('Error: Empty role display name is not allowed.', 'user-role-editor');
|
2038 |
}
|
2039 |
|
2040 |
if (!isset($wp_roles)) {
|
2041 |
$wp_roles = new WP_Roles();
|
2042 |
}
|
2043 |
if (!isset($wp_roles->roles[$user_role_id])) {
|
2044 |
+
return sprintf('Error! ' . esc_html__('Role %s does not exists', 'user-role-editor'), $user_role_id);
|
2045 |
}
|
2046 |
$this->current_role = $user_role_id;
|
2047 |
$this->current_role_name = $new_role_name;
|
2049 |
$old_role_name = $wp_roles->roles[$user_role_id]['name'];
|
2050 |
$wp_roles->roles[$user_role_id]['name'] = $new_role_name;
|
2051 |
update_option( $wp_roles->role_key, $wp_roles->roles );
|
2052 |
+
$mess = sprintf(esc_html__('Role %s is renamed to %s successfully', 'user-role-editor'), $old_role_name, $new_role_name);
|
2053 |
|
2054 |
return $mess;
|
2055 |
}
|
2063 |
global $wp_roles;
|
2064 |
|
2065 |
if (!current_user_can('ure_delete_roles')) {
|
2066 |
+
return esc_html__('Insufficient permissions to work with User Role Editor','user-role-editor');
|
2067 |
}
|
2068 |
if (!isset($wp_roles)) {
|
2069 |
$wp_roles = new WP_Roles();
|
2111 |
protected function delete_role() {
|
2112 |
|
2113 |
if (!current_user_can('ure_delete_roles')) {
|
2114 |
+
return esc_html__('Insufficient permissions to work with User Role Editor','user-role-editor');
|
2115 |
}
|
2116 |
$mess = '';
|
2117 |
if (isset($_POST['user_role_id']) && $_POST['user_role_id']) {
|
2122 |
$result = $this->delete_wp_roles(array($role));
|
2123 |
}
|
2124 |
if (empty($result)) {
|
2125 |
+
$mess = 'Error! ' . esc_html__('Error encountered during role delete operation', 'user-role-editor');
|
2126 |
} elseif ($role==-1) {
|
2127 |
+
$mess = sprintf(esc_html__('Unused roles are deleted successfully', 'user-role-editor'), $role);
|
2128 |
} else {
|
2129 |
+
$mess = sprintf(esc_html__('Role %s is deleted successfully', 'user-role-editor'), $role);
|
2130 |
}
|
2131 |
unset($_POST['user_role']);
|
2132 |
}
|
2154 |
if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
|
2155 |
$result = update_option('default_role', $user_role_id);
|
2156 |
if (empty($result)) {
|
2157 |
+
$mess = 'Error! ' . esc_html__('Error encountered during default role change operation', 'user-role-editor');
|
2158 |
} else {
|
2159 |
$this->get_default_role();
|
2160 |
+
$mess = sprintf(esc_html__('Default role for new users is set to %s successfully', 'user-role-editor'), $wp_roles->role_names[$user_role_id]);
|
2161 |
}
|
2162 |
} elseif ($user_role_id === 'administrator') {
|
2163 |
+
$mess = 'Error! ' . esc_html__('Can not set Administrator role as a default one', 'user-role-editor');
|
2164 |
} else {
|
2165 |
+
$mess = 'Error! ' . esc_html__('This role does not exist - ', 'user-role-editor') . esc_html($user_role_id);
|
2166 |
}
|
2167 |
}
|
2168 |
|
2178 |
// for the translation purpose
|
2179 |
if (false) {
|
2180 |
// Standard WordPress roles
|
2181 |
+
__('Editor', 'user-role-editor');
|
2182 |
+
__('Author', 'user-role-editor');
|
2183 |
+
__('Contributor', 'user-role-editor');
|
2184 |
+
__('Subscriber', 'user-role-editor');
|
2185 |
// Standard WordPress capabilities
|
2186 |
+
__('Switch themes', 'user-role-editor');
|
2187 |
+
__('Edit themes', 'user-role-editor');
|
2188 |
+
__('Activate plugins', 'user-role-editor');
|
2189 |
+
__('Edit plugins', 'user-role-editor');
|
2190 |
+
__('Edit users', 'user-role-editor');
|
2191 |
+
__('Edit files', 'user-role-editor');
|
2192 |
+
__('Manage options', 'user-role-editor');
|
2193 |
+
__('Moderate comments', 'user-role-editor');
|
2194 |
+
__('Manage categories', 'user-role-editor');
|
2195 |
+
__('Manage links', 'user-role-editor');
|
2196 |
+
__('Upload files', 'user-role-editor');
|
2197 |
+
__('Import', 'user-role-editor');
|
2198 |
+
__('Unfiltered html', 'user-role-editor');
|
2199 |
+
__('Edit posts', 'user-role-editor');
|
2200 |
+
__('Edit others posts', 'user-role-editor');
|
2201 |
+
__('Edit published posts', 'user-role-editor');
|
2202 |
+
__('Publish posts', 'user-role-editor');
|
2203 |
+
__('Edit pages', 'user-role-editor');
|
2204 |
+
__('Read', 'user-role-editor');
|
2205 |
+
__('Level 10', 'user-role-editor');
|
2206 |
+
__('Level 9', 'user-role-editor');
|
2207 |
+
__('Level 8', 'user-role-editor');
|
2208 |
+
__('Level 7', 'user-role-editor');
|
2209 |
+
__('Level 6', 'user-role-editor');
|
2210 |
+
__('Level 5', 'user-role-editor');
|
2211 |
+
__('Level 4', 'user-role-editor');
|
2212 |
+
__('Level 3', 'user-role-editor');
|
2213 |
+
__('Level 2', 'user-role-editor');
|
2214 |
+
__('Level 1', 'user-role-editor');
|
2215 |
+
__('Level 0', 'user-role-editor');
|
2216 |
+
__('Edit others pages', 'user-role-editor');
|
2217 |
+
__('Edit published pages', 'user-role-editor');
|
2218 |
+
__('Publish pages', 'user-role-editor');
|
2219 |
+
__('Delete pages', 'user-role-editor');
|
2220 |
+
__('Delete others pages', 'user-role-editor');
|
2221 |
+
__('Delete published pages', 'user-role-editor');
|
2222 |
+
__('Delete posts', 'user-role-editor');
|
2223 |
+
__('Delete others posts', 'user-role-editor');
|
2224 |
+
__('Delete published posts', 'user-role-editor');
|
2225 |
+
__('Delete private posts', 'user-role-editor');
|
2226 |
+
__('Edit private posts', 'user-role-editor');
|
2227 |
+
__('Read private posts', 'user-role-editor');
|
2228 |
+
__('Delete private pages', 'user-role-editor');
|
2229 |
+
__('Edit private pages', 'user-role-editor');
|
2230 |
+
__('Read private pages', 'user-role-editor');
|
2231 |
+
__('Delete users', 'user-role-editor');
|
2232 |
+
__('Create users', 'user-role-editor');
|
2233 |
+
__('Unfiltered upload', 'user-role-editor');
|
2234 |
+
__('Edit dashboard', 'user-role-editor');
|
2235 |
+
__('Update plugins', 'user-role-editor');
|
2236 |
+
__('Delete plugins', 'user-role-editor');
|
2237 |
+
__('Install plugins', 'user-role-editor');
|
2238 |
+
__('Update themes', 'user-role-editor');
|
2239 |
+
__('Install themes', 'user-role-editor');
|
2240 |
+
__('Update core', 'user-role-editor');
|
2241 |
+
__('List users', 'user-role-editor');
|
2242 |
+
__('Remove users', 'user-role-editor');
|
2243 |
+
__('Add users', 'user-role-editor');
|
2244 |
+
__('Promote users', 'user-role-editor');
|
2245 |
+
__('Edit theme options', 'user-role-editor');
|
2246 |
+
__('Delete themes', 'user-role-editor');
|
2247 |
+
__('Export', 'user-role-editor');
|
2248 |
}
|
2249 |
}
|
2250 |
// end of ure_TranslationData()
|
2359 |
global $wp_roles;
|
2360 |
|
2361 |
if (!current_user_can('ure_create_capabilities')) {
|
2362 |
+
return esc_html__('Insufficient permissions to work with User Role Editor','user-role-editor');
|
2363 |
}
|
2364 |
$mess = '';
|
2365 |
if (isset($_POST['capability_id']) && $_POST['capability_id']) {
|
2367 |
// sanitize user input for security
|
2368 |
$valid_name = preg_match('/[A-Za-z0-9_\-]*/', $user_capability, $match);
|
2369 |
if (!$valid_name || ($valid_name && ($match[0] != $user_capability))) { // some non-alphanumeric charactes found!
|
2370 |
+
return 'Error! ' . esc_html__('Error: Capability name must contain latin characters and digits only!', 'user-role-editor');
|
2371 |
;
|
2372 |
}
|
2373 |
|
2380 |
$administrator = $wp_roles->get_role('administrator');
|
2381 |
if (!$administrator->has_cap($user_capability)) {
|
2382 |
$wp_roles->add_cap('administrator', $user_capability);
|
2383 |
+
$mess = sprintf(esc_html__('Capability %s is added successfully', 'user-role-editor'), $user_capability);
|
2384 |
} else {
|
2385 |
+
$mess = sprintf('Error! ' . esc_html__('Capability %s exists already', 'user-role-editor'), $user_capability);
|
2386 |
}
|
2387 |
}
|
2388 |
}
|
2404 |
|
2405 |
|
2406 |
if (!current_user_can('ure_delete_capabilities')) {
|
2407 |
+
return esc_html__('Insufficient permissions to work with User Role Editor','user-role-editor');
|
2408 |
}
|
2409 |
$mess = '';
|
2410 |
if (!empty($_POST['user_capability_id'])) {
|
2411 |
$capability_id = $_POST['user_capability_id'];
|
2412 |
$caps_to_remove = $this->get_caps_to_remove();
|
2413 |
if (!is_array($caps_to_remove) || count($caps_to_remove) == 0 || !isset($caps_to_remove[$capability_id])) {
|
2414 |
+
return sprintf(esc_html__('Error! You do not have permission to delete this capability: %s!', 'user-role-editor'), $capability_id);
|
2415 |
}
|
2416 |
|
2417 |
// process users
|
2430 |
}
|
2431 |
}
|
2432 |
|
2433 |
+
$mess = sprintf(esc_html__('Capability %s was removed successfully', 'user-role-editor'), $capability_id);
|
2434 |
}
|
2435 |
|
2436 |
return $mess;
|
2498 |
?>
|
2499 |
<h2>User Role Editor</h2>
|
2500 |
|
2501 |
+
<strong><?php esc_html_e('Version:', 'user-role-editor');?></strong> <?php echo URE_VERSION; ?><br/><br/>
|
2502 |
+
<a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/vladimir.png'; ?>);" target="_blank" href="http://www.shinephp.com/"><?php _e("Author's website", 'user-role-editor'); ?></a><br/>
|
2503 |
+
<a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="https://www.role-editor.com"><?php _e('Plugin webpage', 'user-role-editor'); ?></a><br/>
|
2504 |
+
<a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="https://www.role-editor.com/download-plugin"><?php _e('Plugin download', 'user-role-editor'); ?></a><br/>
|
2505 |
+
<a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="https://www.role-editor.com/changelog"><?php _e('Changelog', 'user-role-editor'); ?></a><br/>
|
2506 |
+
<a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/faq-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#faq"><?php _e('FAQ', 'user-role-editor'); ?></a><br/>
|
2507 |
<hr />
|
2508 |
<div style="text-align: center;">
|
2509 |
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
2555 |
$selected = $this->option_selected($key, $this->wp_default_role);
|
2556 |
$disabled = ($key==='administrator' && $caps_access_restrict_for_simple_admin && !is_super_admin()) ? 'disabled' : '';
|
2557 |
if ($show_admin_role || $key != 'administrator') {
|
2558 |
+
$translated_name = esc_html__($value['name'], 'user-role-editor'); // get translation from URE language file, if exists
|
2559 |
if ($translated_name === $value['name']) { // get WordPress internal translation
|
2560 |
$translated_name = translate_user_role($translated_name);
|
2561 |
}
|
2574 |
if ($roles_can_delete && count($roles_can_delete) > 0) {
|
2575 |
$this->role_delete_html = '<select id="del_user_role" name="del_user_role" width="200" style="width: 200px">';
|
2576 |
foreach ($roles_can_delete as $key => $value) {
|
2577 |
+
$this->role_delete_html .= '<option value="' . $key . '">' . esc_html__($value, 'user-role-editor') . '</option>';
|
2578 |
}
|
2579 |
+
$this->role_delete_html .= '<option value="-1" style="color: red;">' . esc_html__('Delete All Unused Roles', 'user-role-editor') . '</option>';
|
2580 |
$this->role_delete_html .= '</select>';
|
2581 |
} else {
|
2582 |
$this->role_delete_html = '';
|
2589 |
$caps_access_restrict_for_simple_admin = $this->get_option('caps_access_restrict_for_simple_admin', 0);
|
2590 |
$show_admin_role = $this->show_admin_role_allowed();
|
2591 |
$this->role_to_copy_html = '<select id="user_role_copy_from" name="user_role_copy_from" style="width: '. $select_width .'px">
|
2592 |
+
<option value="none" selected="selected">' . esc_html__('None', 'user-role-editor') . '</option>';
|
2593 |
$this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
|
2594 |
foreach ($this->roles as $key => $value) {
|
2595 |
$selected1 = $this->option_selected($key, $this->current_role);
|
2596 |
$disabled = ($key==='administrator' && $caps_access_restrict_for_simple_admin && !is_super_admin()) ? 'disabled' : '';
|
2597 |
if ($show_admin_role || $key != 'administrator') {
|
2598 |
+
$translated_name = esc_html__($value['name'], 'user-role-editor'); // get translation from URE language file, if exists
|
2599 |
if ($translated_name === $value['name']) { // get WordPress internal translation
|
2600 |
$translated_name = translate_user_role($translated_name);
|
2601 |
}
|
2705 |
}
|
2706 |
echo '<label for="wp_role_' . $role_id .'"><input type="checkbox" id="wp_role_' . $role_id .
|
2707 |
'" name="wp_role_' . $role_id . '" value="' . $role_id . '"' . $checked .' /> ' .
|
2708 |
+
esc_html__($role['name'], 'user-role-editor') . '</label><br />';
|
2709 |
}
|
2710 |
|
2711 |
}
|
includes/class-ure-screen-help.php
CHANGED
@@ -9,23 +9,23 @@ class URE_Screen_Help {
|
|
9 |
|
10 |
protected function get_general_tab() {
|
11 |
|
12 |
-
$text = '<h2>'. esc_html__('User Role Editor Options page help', '
|
13 |
<p>
|
14 |
<ul>
|
15 |
-
<li><strong>' . esc_html__('Show Administrator role at User Role Editor', '
|
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.','
|
18 |
-
<li><strong>' . esc_html__('Show capabilities in the human readable form','
|
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".','
|
21 |
-
<li><strong>' . esc_html__('Show deprecated capabilities','
|
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.', '
|
25 |
-
<li><strong>' . esc_html__('Edit user capabilities','
|
26 |
esc_html__('If turned off - capabilities section of selected user is shown in readonly mode. '
|
27 |
. 'Administrator can not assign capabilities to the user directly. '
|
28 |
-
. 'He should make it using roles only.', '
|
29 |
|
30 |
$text = apply_filters('ure_get_settings_general_tab_help', $text);
|
31 |
$text .='
|
@@ -38,13 +38,13 @@ class URE_Screen_Help {
|
|
38 |
|
39 |
|
40 |
protected function get_additional_modules_tab() {
|
41 |
-
$text = '<h2>'. esc_html__('User Role Editor Options page help', '
|
42 |
<p>
|
43 |
<ul>';
|
44 |
if (!is_multisite()) {
|
45 |
-
$text .= '<li><strong>' . esc_html__('Count users without role', '
|
46 |
esc_html__('Show at the "Users" page a quant of users without role. Module allows to assign all of them '.
|
47 |
-
'an empty role "No rights", in order to look on the users list with role "No rights" at the separate tab then.','
|
48 |
}
|
49 |
$text = apply_filters('ure_get_settings_additional_modules_tab_help', $text);
|
50 |
$text .='
|
@@ -57,13 +57,13 @@ class URE_Screen_Help {
|
|
57 |
|
58 |
|
59 |
protected function get_default_roles_tab() {
|
60 |
-
$text = '<h2>'. esc_html__('User Role Editor Options page help', '
|
61 |
<p>
|
62 |
<ul>
|
63 |
-
<li><strong>' . esc_html__('Other default roles for new registered user', '
|
64 |
esc_html__('select roles below to assign them to the new user automatically as an addition to the primary role. '.
|
65 |
'Note for multisite environment: take into account that other default roles should exist at the site, '.
|
66 |
-
'in order to be assigned to the new registered users.','
|
67 |
|
68 |
$text = apply_filters('ure_get_settings_default_roles_tab_help', $text);
|
69 |
$text .='
|
@@ -76,12 +76,12 @@ class URE_Screen_Help {
|
|
76 |
|
77 |
|
78 |
protected function get_multisite_tab() {
|
79 |
-
$text = '<h2>'. esc_html__('User Role Editor Options page help', '
|
80 |
<p>
|
81 |
<ul>
|
82 |
-
<li><strong>' . esc_html__('Allow non super-admininstrators to create, edit and delete users', '
|
83 |
esc_html__('Super administrator only may create, edit and delete users under WordPress multi-site by default. '
|
84 |
-
. 'Turn this option on in order to remove this limitation.','
|
85 |
|
86 |
$text = apply_filters('ure_get_settings_multisite_tab_help', $text);
|
87 |
$text .='
|
9 |
|
10 |
protected function get_general_tab() {
|
11 |
|
12 |
+
$text = '<h2>'. esc_html__('User Role Editor Options page help', 'user-role-editor') .'</h2>
|
13 |
<p>
|
14 |
<ul>
|
15 |
+
<li><strong>' . esc_html__('Show Administrator role at User Role Editor', 'user-role-editor').'</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.','user-role-editor') . '</li>
|
18 |
+
<li><strong>' . esc_html__('Show capabilities in the human readable form','user-role-editor').'</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".','user-role-editor') . '</li>
|
21 |
+
<li><strong>' . esc_html__('Show deprecated capabilities','user-role-editor').'</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.', 'user-role-editor') . '</li>
|
25 |
+
<li><strong>' . esc_html__('Edit user capabilities','user-role-editor').'</strong> - '.
|
26 |
esc_html__('If turned off - capabilities section of selected user is shown in readonly mode. '
|
27 |
. 'Administrator can not assign capabilities to the user directly. '
|
28 |
+
. 'He should make it using roles only.', 'user-role-editor') . '</li>';
|
29 |
|
30 |
$text = apply_filters('ure_get_settings_general_tab_help', $text);
|
31 |
$text .='
|
38 |
|
39 |
|
40 |
protected function get_additional_modules_tab() {
|
41 |
+
$text = '<h2>'. esc_html__('User Role Editor Options page help', 'user-role-editor') .'</h2>
|
42 |
<p>
|
43 |
<ul>';
|
44 |
if (!is_multisite()) {
|
45 |
+
$text .= '<li><strong>' . esc_html__('Count users without role', 'user-role-editor').'</strong> - ' .
|
46 |
esc_html__('Show at the "Users" page a quant of users without role. Module allows to assign all of them '.
|
47 |
+
'an empty role "No rights", in order to look on the users list with role "No rights" at the separate tab then.','user-role-editor') . '</li>';
|
48 |
}
|
49 |
$text = apply_filters('ure_get_settings_additional_modules_tab_help', $text);
|
50 |
$text .='
|
57 |
|
58 |
|
59 |
protected function get_default_roles_tab() {
|
60 |
+
$text = '<h2>'. esc_html__('User Role Editor Options page help', 'user-role-editor') .'</h2>
|
61 |
<p>
|
62 |
<ul>
|
63 |
+
<li><strong>' . esc_html__('Other default roles for new registered user', 'user-role-editor').'</strong> - ' .
|
64 |
esc_html__('select roles below to assign them to the new user automatically as an addition to the primary role. '.
|
65 |
'Note for multisite environment: take into account that other default roles should exist at the site, '.
|
66 |
+
'in order to be assigned to the new registered users.','user-role-editor') . '</li>';
|
67 |
|
68 |
$text = apply_filters('ure_get_settings_default_roles_tab_help', $text);
|
69 |
$text .='
|
76 |
|
77 |
|
78 |
protected function get_multisite_tab() {
|
79 |
+
$text = '<h2>'. esc_html__('User Role Editor Options page help', 'user-role-editor') .'</h2>
|
80 |
<p>
|
81 |
<ul>
|
82 |
+
<li><strong>' . esc_html__('Allow non super-admininstrators to create, edit and delete users', 'user-role-editor').'</strong> - ' .
|
83 |
esc_html__('Super administrator only may create, edit and delete users under WordPress multi-site by default. '
|
84 |
+
. 'Turn this option on in order to remove this limitation.','user-role-editor') . '</li>';
|
85 |
|
86 |
$text = apply_filters('ure_get_settings_multisite_tab_help', $text);
|
87 |
$text .='
|
includes/class-user-other-roles.php
CHANGED
@@ -37,9 +37,9 @@ class URE_User_Other_Roles {
|
|
37 |
}
|
38 |
if ($this->lib->multisite) {
|
39 |
add_action( 'wpmu_activate_user', array($this, 'add_other_roles'), 10, 1 );
|
40 |
-
}
|
41 |
-
|
42 |
-
|
43 |
}
|
44 |
// end of set_hooks()
|
45 |
|
@@ -79,8 +79,8 @@ class URE_User_Other_Roles {
|
|
79 |
wp_enqueue_script('ure-user-profile-other-roles');
|
80 |
wp_localize_script('ure-user-profile-other-roles', 'ure_data_user_profile_other_roles', array(
|
81 |
'wp_nonce' => wp_create_nonce('user-role-editor'),
|
82 |
-
'other_roles' => esc_html__('Other Roles', '
|
83 |
-
'select_roles' => esc_html__('Select additional roles for this user', '
|
84 |
));
|
85 |
}
|
86 |
// end of load_js()
|
@@ -159,14 +159,14 @@ class URE_User_Other_Roles {
|
|
159 |
?>
|
160 |
<tr>
|
161 |
<th>
|
162 |
-
<?php esc_html_e('Capabilities', '
|
163 |
</th>
|
164 |
<td>
|
165 |
<?php
|
166 |
echo $user_caps .'<br/>';
|
167 |
if ($this->lib->user_is_admin($current_user->ID)) {
|
168 |
echo '<a href="' . wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&user_id={$user->ID}", "ure_user_{$user->ID}") . '">' .
|
169 |
-
esc_html__('Edit', '
|
170 |
}
|
171 |
?>
|
172 |
</td>
|
@@ -180,7 +180,7 @@ class URE_User_Other_Roles {
|
|
180 |
?>
|
181 |
<table class="form-table">
|
182 |
<tr>
|
183 |
-
<th scope="row"><?php esc_html_e('Other Roles', '
|
184 |
<td>
|
185 |
<?php
|
186 |
$this->roles_select_html($user);
|
@@ -212,7 +212,7 @@ class URE_User_Other_Roles {
|
|
212 |
return;
|
213 |
}
|
214 |
?>
|
215 |
-
<h3><?php esc_html_e('Additional Capabilities', '
|
216 |
<?php
|
217 |
$this->display($user, 'user-edit');
|
218 |
}
|
@@ -240,7 +240,7 @@ class URE_User_Other_Roles {
|
|
240 |
*/
|
241 |
public function user_role_column($columns = array()) {
|
242 |
|
243 |
-
$columns['ure_roles'] = esc_html__('Other Roles', '
|
244 |
|
245 |
return $columns;
|
246 |
}
|
@@ -314,7 +314,9 @@ class URE_User_Other_Roles {
|
|
314 |
return;
|
315 |
}
|
316 |
foreach ($other_default_roles as $role) {
|
317 |
-
$user->
|
|
|
|
|
318 |
}
|
319 |
}
|
320 |
|
37 |
}
|
38 |
if ($this->lib->multisite) {
|
39 |
add_action( 'wpmu_activate_user', array($this, 'add_other_roles'), 10, 1 );
|
40 |
+
}
|
41 |
+
add_action( 'user_register', array($this, 'add_other_roles'), 10, 1 );
|
42 |
+
|
43 |
}
|
44 |
// end of set_hooks()
|
45 |
|
79 |
wp_enqueue_script('ure-user-profile-other-roles');
|
80 |
wp_localize_script('ure-user-profile-other-roles', 'ure_data_user_profile_other_roles', array(
|
81 |
'wp_nonce' => wp_create_nonce('user-role-editor'),
|
82 |
+
'other_roles' => esc_html__('Other Roles', 'user-role-editor'),
|
83 |
+
'select_roles' => esc_html__('Select additional roles for this user', 'user-role-editor')
|
84 |
));
|
85 |
}
|
86 |
// end of load_js()
|
159 |
?>
|
160 |
<tr>
|
161 |
<th>
|
162 |
+
<?php esc_html_e('Capabilities', 'user-role-editor'); ?>
|
163 |
</th>
|
164 |
<td>
|
165 |
<?php
|
166 |
echo $user_caps .'<br/>';
|
167 |
if ($this->lib->user_is_admin($current_user->ID)) {
|
168 |
echo '<a href="' . wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&user_id={$user->ID}", "ure_user_{$user->ID}") . '">' .
|
169 |
+
esc_html__('Edit', 'user-role-editor') . '</a>';
|
170 |
}
|
171 |
?>
|
172 |
</td>
|
180 |
?>
|
181 |
<table class="form-table">
|
182 |
<tr>
|
183 |
+
<th scope="row"><?php esc_html_e('Other Roles', 'user-role-editor'); ?></th>
|
184 |
<td>
|
185 |
<?php
|
186 |
$this->roles_select_html($user);
|
212 |
return;
|
213 |
}
|
214 |
?>
|
215 |
+
<h3><?php esc_html_e('Additional Capabilities', 'user-role-editor'); ?></h3>
|
216 |
<?php
|
217 |
$this->display($user, 'user-edit');
|
218 |
}
|
240 |
*/
|
241 |
public function user_role_column($columns = array()) {
|
242 |
|
243 |
+
$columns['ure_roles'] = esc_html__('Other Roles', 'user-role-editor');
|
244 |
|
245 |
return $columns;
|
246 |
}
|
314 |
return;
|
315 |
}
|
316 |
foreach ($other_default_roles as $role) {
|
317 |
+
if (!isset($user->caps[$role])) {
|
318 |
+
$user->add_role($role);
|
319 |
+
}
|
320 |
}
|
321 |
}
|
322 |
|
includes/class-user-role-editor.php
CHANGED
@@ -230,9 +230,9 @@ class User_Role_Editor {
|
|
230 |
wp_enqueue_script ( 'ure-users-js' );
|
231 |
wp_localize_script( 'ure-users-js', 'ure_users_data', array(
|
232 |
'wp_nonce' => wp_create_nonce('user-role-editor'),
|
233 |
-
'move_from_no_role_title' => esc_html__('Change role for users without role', '
|
234 |
-
'no_rights_caption' => esc_html__('No rights', '
|
235 |
-
'provide_new_role_caption' => esc_html__('Provide new role', '
|
236 |
));
|
237 |
|
238 |
}
|
@@ -435,7 +435,7 @@ class User_Role_Editor {
|
|
435 |
if ($current_user->has_cap($this->key_capability)) {
|
436 |
$actions['capabilities'] = '<a href="' .
|
437 |
wp_nonce_url("users.php?page=users-" . URE_PLUGIN_FILE . "&object=user&user_id={$user->ID}", "ure_user_{$user->ID}") .
|
438 |
-
'">' . esc_html__('Capabilities', '
|
439 |
}
|
440 |
}
|
441 |
|
@@ -518,7 +518,7 @@ class User_Role_Editor {
|
|
518 |
*/
|
519 |
function load_translation() {
|
520 |
|
521 |
-
load_plugin_textdomain('
|
522 |
|
523 |
}
|
524 |
// end of ure_load_translation()
|
@@ -532,7 +532,7 @@ class User_Role_Editor {
|
|
532 |
*/
|
533 |
public function plugin_action_links($links) {
|
534 |
|
535 |
-
$settings_link = "<a href='options-general.php?page=settings-" . URE_PLUGIN_FILE . "'>" . esc_html__('Settings', '
|
536 |
array_unshift($links, $settings_link);
|
537 |
|
538 |
return $links;
|
@@ -543,7 +543,7 @@ class User_Role_Editor {
|
|
543 |
public function plugin_row_meta($links, $file) {
|
544 |
|
545 |
if ($file == plugin_basename(dirname(URE_PLUGIN_FULL_PATH) .'/'.URE_PLUGIN_FILE)) {
|
546 |
-
$links[] = '<a target="_blank" href="http://role-editor.com/changelog">' . esc_html__('Changelog', '
|
547 |
}
|
548 |
|
549 |
return $links;
|
@@ -565,25 +565,25 @@ class User_Role_Editor {
|
|
565 |
$screen_help = new Ure_Screen_Help();
|
566 |
$screen->add_help_tab( array(
|
567 |
'id' => 'general',
|
568 |
-
'title' => esc_html__('General', '
|
569 |
'content' => $screen_help->get_settings_help('general')
|
570 |
));
|
571 |
if ($this->lib->is_pro() || !$this->lib->multisite) {
|
572 |
$screen->add_help_tab( array(
|
573 |
'id' => 'additional_modules',
|
574 |
-
'title' => esc_html__('Additional Modules', '
|
575 |
'content' => $screen_help->get_settings_help('additional_modules')
|
576 |
));
|
577 |
}
|
578 |
$screen->add_help_tab( array(
|
579 |
'id' => 'default_roles',
|
580 |
-
'title' => esc_html__('Default Roles', '
|
581 |
'content' => $screen_help->get_settings_help('default_roles')
|
582 |
));
|
583 |
if ($this->lib->multisite) {
|
584 |
$screen->add_help_tab( array(
|
585 |
'id' => 'multisite',
|
586 |
-
'title' => esc_html__('Multisite', '
|
587 |
'content' => $screen_help->get_settings_help('multisite')
|
588 |
));
|
589 |
}
|
@@ -593,7 +593,7 @@ class User_Role_Editor {
|
|
593 |
|
594 |
public function plugin_menu() {
|
595 |
|
596 |
-
$translated_title = esc_html__('User Role Editor', '
|
597 |
if (function_exists('add_submenu_page')) {
|
598 |
$ure_page = add_submenu_page(
|
599 |
'users.php',
|
@@ -622,7 +622,7 @@ class User_Role_Editor {
|
|
622 |
|
623 |
public function network_plugin_menu() {
|
624 |
if (is_multisite()) {
|
625 |
-
$translated_title = esc_html__('User Role Editor', '
|
626 |
$this->settings_page_hook = add_submenu_page(
|
627 |
'settings.php',
|
628 |
$translated_title,
|
@@ -682,7 +682,7 @@ class User_Role_Editor {
|
|
682 |
do_action('ure_settings_update1');
|
683 |
|
684 |
$this->lib->flush_options();
|
685 |
-
$this->lib->show_message(esc_html__('User Role Editor options are updated', '
|
686 |
|
687 |
}
|
688 |
// end of update_general_options()
|
@@ -700,7 +700,7 @@ class User_Role_Editor {
|
|
700 |
do_action('ure_settings_update2');
|
701 |
|
702 |
$this->lib->flush_options();
|
703 |
-
$this->lib->show_message(esc_html__('User Role Editor options are updated', '
|
704 |
}
|
705 |
// end of update_addons_options()
|
706 |
|
@@ -728,7 +728,7 @@ class User_Role_Editor {
|
|
728 |
} // foreach()
|
729 |
$this->lib->put_option('other_default_roles', $other_default_roles, true);
|
730 |
|
731 |
-
$this->lib->show_message(esc_html__('Default Roles are updated', '
|
732 |
}
|
733 |
// end of update_default_roles()
|
734 |
|
@@ -744,7 +744,7 @@ class User_Role_Editor {
|
|
744 |
do_action('ure_settings_ms_update');
|
745 |
|
746 |
$this->lib->flush_options();
|
747 |
-
$this->lib->show_message(esc_html__('User Role Editor options are updated', '
|
748 |
|
749 |
}
|
750 |
// end of update_multisite_options()
|
@@ -753,7 +753,7 @@ class User_Role_Editor {
|
|
753 |
public function settings() {
|
754 |
$settings_capability = $this->lib->get_settings_capability();
|
755 |
if (!current_user_can($settings_capability)) {
|
756 |
-
wp_die(esc_html__( 'You do not have sufficient permissions to manage options for User Role Editor.', '
|
757 |
}
|
758 |
$action = $this->get_settings_action();
|
759 |
switch ($action) {
|
@@ -825,7 +825,7 @@ class User_Role_Editor {
|
|
825 |
public function edit_roles() {
|
826 |
|
827 |
if (!current_user_can($this->key_capability)) {
|
828 |
-
wp_die(esc_html__('Insufficient permissions to work with User Role Editor', '
|
829 |
}
|
830 |
|
831 |
$this->lib->editor();
|
@@ -882,34 +882,34 @@ class User_Role_Editor {
|
|
882 |
'wp_nonce' => wp_create_nonce('user-role-editor'),
|
883 |
'page_url' => URE_WP_ADMIN_URL . URE_PARENT . '?page=users-' . URE_PLUGIN_FILE,
|
884 |
'is_multisite' => is_multisite() ? 1 : 0,
|
885 |
-
'select_all' => esc_html__('Select All', '
|
886 |
-
'unselect_all' => esc_html__('Unselect All', '
|
887 |
-
'reverse' => esc_html__('Reverse', '
|
888 |
-
'update' => esc_html__('Update', '
|
889 |
-
'confirm_submit' => esc_html__('Please confirm permissions update', '
|
890 |
-
'add_new_role_title' => esc_html__('Add New Role', '
|
891 |
-
'rename_role_title' => esc_html__('Rename Role', '
|
892 |
-
'role_name_required' => esc_html__(' Role name (ID) can not be empty!', '
|
893 |
-
'role_name_valid_chars' => esc_html__(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', '
|
894 |
-
'numeric_role_name_prohibited' => esc_html__(' WordPress does not support numeric Role name (ID). Add latin characters to it.', '
|
895 |
-
'add_role' => esc_html__('Add Role', '
|
896 |
-
'rename_role' => esc_html__('Rename Role', '
|
897 |
-
'delete_role' => esc_html__('Delete Role', '
|
898 |
-
'cancel' => esc_html__('Cancel', '
|
899 |
-
'add_capability' => esc_html__('Add Capability', '
|
900 |
-
'delete_capability' => esc_html__('Delete Capability', '
|
901 |
-
'reset' => esc_html__('Reset', '
|
902 |
-
'reset_warning' => esc_html__('DANGER! Resetting will restore default settings from WordPress Core.', '
|
903 |
-
esc_html__('If any plugins have changed capabilities in any way upon installation (such as S2Member, WooCommerce, and many more), those capabilities will be DELETED!', '
|
904 |
-
esc_html__('For more information on how to undo changes and restore plugin capabilities go to', '
|
905 |
'http://role-editor.com/how-to-restore-deleted-wordpress-user-roles/' . "\n\n" .
|
906 |
-
esc_html__('Continue?', '
|
907 |
-
'default_role' => esc_html__('Default Role', '
|
908 |
-
'set_new_default_role' => esc_html__('Set New Default Role', '
|
909 |
-
'delete_capability' => esc_html__('Delete Capability', '
|
910 |
-
'delete_capability_warning' => esc_html__('Warning! Be careful - removing critical capability could crash some plugin or other custom code', '
|
911 |
-
'capability_name_required' => esc_html__(' Capability name (ID) can not be empty!', '
|
912 |
-
'capability_name_valid_chars' => esc_html__(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', '
|
913 |
));
|
914 |
|
915 |
// load additional JS stuff for Pro version, if exists
|
230 |
wp_enqueue_script ( 'ure-users-js' );
|
231 |
wp_localize_script( 'ure-users-js', 'ure_users_data', array(
|
232 |
'wp_nonce' => wp_create_nonce('user-role-editor'),
|
233 |
+
'move_from_no_role_title' => esc_html__('Change role for users without role', 'user-role-editor'),
|
234 |
+
'no_rights_caption' => esc_html__('No rights', 'user-role-editor'),
|
235 |
+
'provide_new_role_caption' => esc_html__('Provide new role', 'user-role-editor')
|
236 |
));
|
237 |
|
238 |
}
|
435 |
if ($current_user->has_cap($this->key_capability)) {
|
436 |
$actions['capabilities'] = '<a href="' .
|
437 |
wp_nonce_url("users.php?page=users-" . URE_PLUGIN_FILE . "&object=user&user_id={$user->ID}", "ure_user_{$user->ID}") .
|
438 |
+
'">' . esc_html__('Capabilities', 'user-role-editor') . '</a>';
|
439 |
}
|
440 |
}
|
441 |
|
518 |
*/
|
519 |
function load_translation() {
|
520 |
|
521 |
+
load_plugin_textdomain('user-role-editor', '', dirname( plugin_basename( URE_PLUGIN_FULL_PATH ) ) .'/lang');
|
522 |
|
523 |
}
|
524 |
// end of ure_load_translation()
|
532 |
*/
|
533 |
public function plugin_action_links($links) {
|
534 |
|
535 |
+
$settings_link = "<a href='options-general.php?page=settings-" . URE_PLUGIN_FILE . "'>" . esc_html__('Settings', 'user-role-editor') . "</a>";
|
536 |
array_unshift($links, $settings_link);
|
537 |
|
538 |
return $links;
|
543 |
public function plugin_row_meta($links, $file) {
|
544 |
|
545 |
if ($file == plugin_basename(dirname(URE_PLUGIN_FULL_PATH) .'/'.URE_PLUGIN_FILE)) {
|
546 |
+
$links[] = '<a target="_blank" href="http://role-editor.com/changelog">' . esc_html__('Changelog', 'user-role-editor') . '</a>';
|
547 |
}
|
548 |
|
549 |
return $links;
|
565 |
$screen_help = new Ure_Screen_Help();
|
566 |
$screen->add_help_tab( array(
|
567 |
'id' => 'general',
|
568 |
+
'title' => esc_html__('General', 'user-role-editor'),
|
569 |
'content' => $screen_help->get_settings_help('general')
|
570 |
));
|
571 |
if ($this->lib->is_pro() || !$this->lib->multisite) {
|
572 |
$screen->add_help_tab( array(
|
573 |
'id' => 'additional_modules',
|
574 |
+
'title' => esc_html__('Additional Modules', 'user-role-editor'),
|
575 |
'content' => $screen_help->get_settings_help('additional_modules')
|
576 |
));
|
577 |
}
|
578 |
$screen->add_help_tab( array(
|
579 |
'id' => 'default_roles',
|
580 |
+
'title' => esc_html__('Default Roles', 'user-role-editor'),
|
581 |
'content' => $screen_help->get_settings_help('default_roles')
|
582 |
));
|
583 |
if ($this->lib->multisite) {
|
584 |
$screen->add_help_tab( array(
|
585 |
'id' => 'multisite',
|
586 |
+
'title' => esc_html__('Multisite', 'user-role-editor'),
|
587 |
'content' => $screen_help->get_settings_help('multisite')
|
588 |
));
|
589 |
}
|
593 |
|
594 |
public function plugin_menu() {
|
595 |
|
596 |
+
$translated_title = esc_html__('User Role Editor', 'user-role-editor');
|
597 |
if (function_exists('add_submenu_page')) {
|
598 |
$ure_page = add_submenu_page(
|
599 |
'users.php',
|
622 |
|
623 |
public function network_plugin_menu() {
|
624 |
if (is_multisite()) {
|
625 |
+
$translated_title = esc_html__('User Role Editor', 'user-role-editor');
|
626 |
$this->settings_page_hook = add_submenu_page(
|
627 |
'settings.php',
|
628 |
$translated_title,
|
682 |
do_action('ure_settings_update1');
|
683 |
|
684 |
$this->lib->flush_options();
|
685 |
+
$this->lib->show_message(esc_html__('User Role Editor options are updated', 'user-role-editor'));
|
686 |
|
687 |
}
|
688 |
// end of update_general_options()
|
700 |
do_action('ure_settings_update2');
|
701 |
|
702 |
$this->lib->flush_options();
|
703 |
+
$this->lib->show_message(esc_html__('User Role Editor options are updated', 'user-role-editor'));
|
704 |
}
|
705 |
// end of update_addons_options()
|
706 |
|
728 |
} // foreach()
|
729 |
$this->lib->put_option('other_default_roles', $other_default_roles, true);
|
730 |
|
731 |
+
$this->lib->show_message(esc_html__('Default Roles are updated', 'user-role-editor'));
|
732 |
}
|
733 |
// end of update_default_roles()
|
734 |
|
744 |
do_action('ure_settings_ms_update');
|
745 |
|
746 |
$this->lib->flush_options();
|
747 |
+
$this->lib->show_message(esc_html__('User Role Editor options are updated', 'user-role-editor'));
|
748 |
|
749 |
}
|
750 |
// end of update_multisite_options()
|
753 |
public function settings() {
|
754 |
$settings_capability = $this->lib->get_settings_capability();
|
755 |
if (!current_user_can($settings_capability)) {
|
756 |
+
wp_die(esc_html__( 'You do not have sufficient permissions to manage options for User Role Editor.', 'user-role-editor' ));
|
757 |
}
|
758 |
$action = $this->get_settings_action();
|
759 |
switch ($action) {
|
825 |
public function edit_roles() {
|
826 |
|
827 |
if (!current_user_can($this->key_capability)) {
|
828 |
+
wp_die(esc_html__('Insufficient permissions to work with User Role Editor', 'user-role-editor'));
|
829 |
}
|
830 |
|
831 |
$this->lib->editor();
|
882 |
'wp_nonce' => wp_create_nonce('user-role-editor'),
|
883 |
'page_url' => URE_WP_ADMIN_URL . URE_PARENT . '?page=users-' . URE_PLUGIN_FILE,
|
884 |
'is_multisite' => is_multisite() ? 1 : 0,
|
885 |
+
'select_all' => esc_html__('Select All', 'user-role-editor'),
|
886 |
+
'unselect_all' => esc_html__('Unselect All', 'user-role-editor'),
|
887 |
+
'reverse' => esc_html__('Reverse', 'user-role-editor'),
|
888 |
+
'update' => esc_html__('Update', 'user-role-editor'),
|
889 |
+
'confirm_submit' => esc_html__('Please confirm permissions update', 'user-role-editor'),
|
890 |
+
'add_new_role_title' => esc_html__('Add New Role', 'user-role-editor'),
|
891 |
+
'rename_role_title' => esc_html__('Rename Role', 'user-role-editor'),
|
892 |
+
'role_name_required' => esc_html__(' Role name (ID) can not be empty!', 'user-role-editor'),
|
893 |
+
'role_name_valid_chars' => esc_html__(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'user-role-editor'),
|
894 |
+
'numeric_role_name_prohibited' => esc_html__(' WordPress does not support numeric Role name (ID). Add latin characters to it.', 'user-role-editor'),
|
895 |
+
'add_role' => esc_html__('Add Role', 'user-role-editor'),
|
896 |
+
'rename_role' => esc_html__('Rename Role', 'user-role-editor'),
|
897 |
+
'delete_role' => esc_html__('Delete Role', 'user-role-editor'),
|
898 |
+
'cancel' => esc_html__('Cancel', 'user-role-editor'),
|
899 |
+
'add_capability' => esc_html__('Add Capability', 'user-role-editor'),
|
900 |
+
'delete_capability' => esc_html__('Delete Capability', 'user-role-editor'),
|
901 |
+
'reset' => esc_html__('Reset', 'user-role-editor'),
|
902 |
+
'reset_warning' => esc_html__('DANGER! Resetting will restore default settings from WordPress Core.', 'user-role-editor') . "\n\n" .
|
903 |
+
esc_html__('If any plugins have changed capabilities in any way upon installation (such as S2Member, WooCommerce, and many more), those capabilities will be DELETED!', 'user-role-editor') . "\n\n" .
|
904 |
+
esc_html__('For more information on how to undo changes and restore plugin capabilities go to', 'user-role-editor') . "\n" .
|
905 |
'http://role-editor.com/how-to-restore-deleted-wordpress-user-roles/' . "\n\n" .
|
906 |
+
esc_html__('Continue?', 'user-role-editor'),
|
907 |
+
'default_role' => esc_html__('Default Role', 'user-role-editor'),
|
908 |
+
'set_new_default_role' => esc_html__('Set New Default Role', 'user-role-editor'),
|
909 |
+
'delete_capability' => esc_html__('Delete Capability', 'user-role-editor'),
|
910 |
+
'delete_capability_warning' => esc_html__('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'user-role-editor'),
|
911 |
+
'capability_name_required' => esc_html__(' Capability name (ID) can not be empty!', 'user-role-editor'),
|
912 |
+
'capability_name_valid_chars' => esc_html__(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'user-role-editor'),
|
913 |
));
|
914 |
|
915 |
// load additional JS stuff for Pro version, if exists
|
includes/index.php
CHANGED
@@ -1,3 +1,2 @@
|
|
1 |
<?php
|
2 |
// Silence is golden.
|
3 |
-
?>
|
1 |
<?php
|
2 |
// Silence is golden.
|
|
includes/settings-template.php
CHANGED
@@ -14,29 +14,29 @@
|
|
14 |
<a href="http://role-editor.com">
|
15 |
<div id="ure-icon" class="icon32"><br></div>
|
16 |
</a>
|
17 |
-
<h2><?php esc_html_e('User Role Editor - Options', '
|
18 |
|
19 |
<div id="ure_tabs" style="clear: left;">
|
20 |
<ul>
|
21 |
-
<li><a href="#ure_tabs-1"><?php esc_html_e('General', '
|
22 |
<?php
|
23 |
if (!$license_key_only) {
|
24 |
if ($this->lib->is_pro() || !$this->lib->multisite) {
|
25 |
?>
|
26 |
-
<li><a href="#ure_tabs-2"><?php esc_html_e('Additional Modules', '
|
27 |
<?php
|
28 |
}
|
29 |
?>
|
30 |
-
<li><a href="#ure_tabs-3"><?php esc_html_e('Default Roles', '
|
31 |
<?php
|
32 |
if ( $this->lib->multisite && ($this->lib->is_pro() || is_super_admin()) ) {
|
33 |
?>
|
34 |
-
<li><a href="#ure_tabs-4"><?php esc_html_e('Multisite', '
|
35 |
<?php
|
36 |
}
|
37 |
}
|
38 |
?>
|
39 |
-
<li><a href="#ure_tabs-5"><?php esc_html_e('About', '
|
40 |
</ul>
|
41 |
<div id="ure_tabs-1">
|
42 |
<div id="ure-settings-form">
|
@@ -50,7 +50,7 @@ if (!$license_key_only) {
|
|
50 |
<input type="checkbox" name="show_admin_role" id="show_admin_role" value="1"
|
51 |
<?php echo ($show_admin_role == 1) ? 'checked="checked"' : ''; ?>
|
52 |
<?php echo defined('URE_SHOW_ADMIN_ROLE') ? 'disabled="disabled" title="Predefined by \'URE_SHOW_ADMIN_ROLE\' constant at wp-config.php"' : ''; ?> />
|
53 |
-
<label for="show_admin_role"><?php esc_html_e('Show Administrator role at User Role Editor', '
|
54 |
<td>
|
55 |
</td>
|
56 |
</tr>
|
@@ -58,7 +58,7 @@ if (!$license_key_only) {
|
|
58 |
<td>
|
59 |
<input type="checkbox" name="caps_readable" id="caps_readable" value="1"
|
60 |
<?php echo ($caps_readable == 1) ? 'checked="checked"' : ''; ?> />
|
61 |
-
<label for="caps_readable"><?php esc_html_e('Show capabilities in the human readable form', '
|
62 |
<td>
|
63 |
</td>
|
64 |
</tr>
|
@@ -66,7 +66,7 @@ if (!$license_key_only) {
|
|
66 |
<td>
|
67 |
<input type="checkbox" name="show_deprecated_caps" id="show_deprecated_caps" value="1"
|
68 |
<?php echo ($show_deprecated_caps == 1) ? 'checked="checked"' : ''; ?> />
|
69 |
-
<label for="show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities', '
|
70 |
<td>
|
71 |
</td>
|
72 |
</tr>
|
@@ -74,7 +74,7 @@ if (!$license_key_only) {
|
|
74 |
<td>
|
75 |
<input type="checkbox" name="edit_user_caps" id="edit_user_caps" value="1"
|
76 |
<?php echo ($edit_user_caps == 1) ? 'checked="checked"' : ''; ?> />
|
77 |
-
<label for="edit_user_caps"><?php esc_html_e('Edit user capabilities', '
|
78 |
<td>
|
79 |
</td>
|
80 |
</tr>
|
@@ -87,7 +87,7 @@ if (!$license_key_only) {
|
|
87 |
<?php wp_nonce_field('user-role-editor'); ?>
|
88 |
<input type="hidden" name="ure_tab_idx" value="0" />
|
89 |
<p class="submit">
|
90 |
-
<input type="submit" class="button-primary" name="ure_settings_update" value="<?php _e('Save', '
|
91 |
</p>
|
92 |
|
93 |
</form>
|
@@ -108,7 +108,7 @@ if (!$this->lib->multisite) {
|
|
108 |
<td>
|
109 |
<input type="checkbox" name="count_users_without_role" id="count_users_without_role" value="1"
|
110 |
<?php echo ($count_users_without_role == 1) ? 'checked="checked"' : ''; ?> />
|
111 |
-
<label for="count_users_without_role"><?php esc_html_e('Count users without role', '
|
112 |
<td>
|
113 |
</td>
|
114 |
</tr>
|
@@ -123,7 +123,7 @@ if (!$this->lib->multisite) {
|
|
123 |
<?php wp_nonce_field('user-role-editor'); ?>
|
124 |
<input type="hidden" name="ure_tab_idx" value="1" />
|
125 |
<p class="submit">
|
126 |
-
<input type="submit" class="button-primary" name="ure_addons_settings_update" value="<?php _e('Save', '
|
127 |
|
128 |
</form>
|
129 |
</div>
|
@@ -135,27 +135,27 @@ if (!$this->lib->multisite) {
|
|
135 |
<form name="ure_default_roles" method="post" action="<?php echo $link; ?>?page=settings-<?php echo URE_PLUGIN_FILE; ?>" >
|
136 |
<?php
|
137 |
if (!$this->lib->multisite) {
|
138 |
-
esc_html_e('Primary default role: ', '
|
139 |
echo $this->lib->role_default_html;
|
140 |
?>
|
141 |
<hr>
|
142 |
<?php
|
143 |
}
|
144 |
?>
|
145 |
-
<?php esc_html_e('Other default roles for new registered user: ', '
|
146 |
<div id="other_default_roles">
|
147 |
<?php $this->lib->show_other_default_roles(); ?>
|
148 |
</div>
|
149 |
<?php
|
150 |
if ($this->lib->multisite) {
|
151 |
-
echo '<p>'. esc_html__('Note for multisite environment: take into account that other default roles should exist at the site, in order to be assigned to the new registered users.', '
|
152 |
}
|
153 |
?>
|
154 |
<hr>
|
155 |
<?php wp_nonce_field('user-role-editor'); ?>
|
156 |
<input type="hidden" name="ure_tab_idx" value="2" />
|
157 |
<p class="submit">
|
158 |
-
<input type="submit" class="button-primary" name="ure_default_roles_update" value="<?php _e('Save', '
|
159 |
</p>
|
160 |
</form>
|
161 |
</div> <!-- ure_tabs-3 -->
|
@@ -174,7 +174,7 @@ if (!$this->lib->multisite) {
|
|
174 |
<td>
|
175 |
<input type="checkbox" name="allow_edit_users_to_not_super_admin" id="allow_edit_users_to_not_super_admin" value="1"
|
176 |
<?php echo ($allow_edit_users_to_not_super_admin == 1) ? 'checked="checked"' : ''; ?> />
|
177 |
-
<label for="allow_edit_users_to_not_super_admin"><?php esc_html_e('Allow non super administrators to create, edit, and delete users', '
|
178 |
</td>
|
179 |
<td>
|
180 |
</td>
|
@@ -187,7 +187,7 @@ if (!$this->lib->multisite) {
|
|
187 |
<?php wp_nonce_field('user-role-editor'); ?>
|
188 |
<input type="hidden" name="ure_tab_idx" value="3" />
|
189 |
<p class="submit">
|
190 |
-
<input type="submit" class="button-primary" name="ure_settings_ms_update" value="<?php _e('Save', '
|
191 |
</p>
|
192 |
</form>
|
193 |
</div> <!-- ure-settings-form-ms -->
|
14 |
<a href="http://role-editor.com">
|
15 |
<div id="ure-icon" class="icon32"><br></div>
|
16 |
</a>
|
17 |
+
<h2><?php esc_html_e('User Role Editor - Options', 'user-role-editor'); ?></h2>
|
18 |
|
19 |
<div id="ure_tabs" style="clear: left;">
|
20 |
<ul>
|
21 |
+
<li><a href="#ure_tabs-1"><?php esc_html_e('General', 'user-role-editor');?></a></li>
|
22 |
<?php
|
23 |
if (!$license_key_only) {
|
24 |
if ($this->lib->is_pro() || !$this->lib->multisite) {
|
25 |
?>
|
26 |
+
<li><a href="#ure_tabs-2"><?php esc_html_e('Additional Modules', 'user-role-editor'); ?></a></li>
|
27 |
<?php
|
28 |
}
|
29 |
?>
|
30 |
+
<li><a href="#ure_tabs-3"><?php esc_html_e('Default Roles', 'user-role-editor'); ?></a></li>
|
31 |
<?php
|
32 |
if ( $this->lib->multisite && ($this->lib->is_pro() || is_super_admin()) ) {
|
33 |
?>
|
34 |
+
<li><a href="#ure_tabs-4"><?php esc_html_e('Multisite', 'user-role-editor'); ?></a></li>
|
35 |
<?php
|
36 |
}
|
37 |
}
|
38 |
?>
|
39 |
+
<li><a href="#ure_tabs-5"><?php esc_html_e('About', 'user-role-editor');?></a></li>
|
40 |
</ul>
|
41 |
<div id="ure_tabs-1">
|
42 |
<div id="ure-settings-form">
|
50 |
<input type="checkbox" name="show_admin_role" id="show_admin_role" value="1"
|
51 |
<?php echo ($show_admin_role == 1) ? 'checked="checked"' : ''; ?>
|
52 |
<?php echo defined('URE_SHOW_ADMIN_ROLE') ? 'disabled="disabled" title="Predefined by \'URE_SHOW_ADMIN_ROLE\' constant at wp-config.php"' : ''; ?> />
|
53 |
+
<label for="show_admin_role"><?php esc_html_e('Show Administrator role at User Role Editor', 'user-role-editor'); ?></label></td>
|
54 |
<td>
|
55 |
</td>
|
56 |
</tr>
|
58 |
<td>
|
59 |
<input type="checkbox" name="caps_readable" id="caps_readable" value="1"
|
60 |
<?php echo ($caps_readable == 1) ? 'checked="checked"' : ''; ?> />
|
61 |
+
<label for="caps_readable"><?php esc_html_e('Show capabilities in the human readable form', 'user-role-editor'); ?></label></td>
|
62 |
<td>
|
63 |
</td>
|
64 |
</tr>
|
66 |
<td>
|
67 |
<input type="checkbox" name="show_deprecated_caps" id="show_deprecated_caps" value="1"
|
68 |
<?php echo ($show_deprecated_caps == 1) ? 'checked="checked"' : ''; ?> />
|
69 |
+
<label for="show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities', 'user-role-editor'); ?></label></td>
|
70 |
<td>
|
71 |
</td>
|
72 |
</tr>
|
74 |
<td>
|
75 |
<input type="checkbox" name="edit_user_caps" id="edit_user_caps" value="1"
|
76 |
<?php echo ($edit_user_caps == 1) ? 'checked="checked"' : ''; ?> />
|
77 |
+
<label for="edit_user_caps"><?php esc_html_e('Edit user capabilities', 'user-role-editor'); ?></label></td>
|
78 |
<td>
|
79 |
</td>
|
80 |
</tr>
|
87 |
<?php wp_nonce_field('user-role-editor'); ?>
|
88 |
<input type="hidden" name="ure_tab_idx" value="0" />
|
89 |
<p class="submit">
|
90 |
+
<input type="submit" class="button-primary" name="ure_settings_update" value="<?php _e('Save', 'user-role-editor') ?>" />
|
91 |
</p>
|
92 |
|
93 |
</form>
|
108 |
<td>
|
109 |
<input type="checkbox" name="count_users_without_role" id="count_users_without_role" value="1"
|
110 |
<?php echo ($count_users_without_role == 1) ? 'checked="checked"' : ''; ?> />
|
111 |
+
<label for="count_users_without_role"><?php esc_html_e('Count users without role', 'user-role-editor'); ?></label></td>
|
112 |
<td>
|
113 |
</td>
|
114 |
</tr>
|
123 |
<?php wp_nonce_field('user-role-editor'); ?>
|
124 |
<input type="hidden" name="ure_tab_idx" value="1" />
|
125 |
<p class="submit">
|
126 |
+
<input type="submit" class="button-primary" name="ure_addons_settings_update" value="<?php _e('Save', 'user-role-editor') ?>" />
|
127 |
|
128 |
</form>
|
129 |
</div>
|
135 |
<form name="ure_default_roles" method="post" action="<?php echo $link; ?>?page=settings-<?php echo URE_PLUGIN_FILE; ?>" >
|
136 |
<?php
|
137 |
if (!$this->lib->multisite) {
|
138 |
+
esc_html_e('Primary default role: ', 'user-role-editor');
|
139 |
echo $this->lib->role_default_html;
|
140 |
?>
|
141 |
<hr>
|
142 |
<?php
|
143 |
}
|
144 |
?>
|
145 |
+
<?php esc_html_e('Other default roles for new registered user: ', 'user-role-editor'); ?>
|
146 |
<div id="other_default_roles">
|
147 |
<?php $this->lib->show_other_default_roles(); ?>
|
148 |
</div>
|
149 |
<?php
|
150 |
if ($this->lib->multisite) {
|
151 |
+
echo '<p>'. esc_html__('Note for multisite environment: take into account that other default roles should exist at the site, in order to be assigned to the new registered users.', 'user-role-editor') .'</p>';
|
152 |
}
|
153 |
?>
|
154 |
<hr>
|
155 |
<?php wp_nonce_field('user-role-editor'); ?>
|
156 |
<input type="hidden" name="ure_tab_idx" value="2" />
|
157 |
<p class="submit">
|
158 |
+
<input type="submit" class="button-primary" name="ure_default_roles_update" value="<?php _e('Save', 'user-role-editor') ?>" />
|
159 |
</p>
|
160 |
</form>
|
161 |
</div> <!-- ure_tabs-3 -->
|
174 |
<td>
|
175 |
<input type="checkbox" name="allow_edit_users_to_not_super_admin" id="allow_edit_users_to_not_super_admin" value="1"
|
176 |
<?php echo ($allow_edit_users_to_not_super_admin == 1) ? 'checked="checked"' : ''; ?> />
|
177 |
+
<label for="allow_edit_users_to_not_super_admin"><?php esc_html_e('Allow non super administrators to create, edit, and delete users', 'user-role-editor'); ?></label>
|
178 |
</td>
|
179 |
<td>
|
180 |
</td>
|
187 |
<?php wp_nonce_field('user-role-editor'); ?>
|
188 |
<input type="hidden" name="ure_tab_idx" value="3" />
|
189 |
<p class="submit">
|
190 |
+
<input type="submit" class="button-primary" name="ure_settings_ms_update" value="<?php _e('Save', 'user-role-editor') ?>" />
|
191 |
</p>
|
192 |
</form>
|
193 |
</div> <!-- ure-settings-form-ms -->
|
includes/ure-role-edit.php
CHANGED
@@ -14,7 +14,7 @@ if (!defined('URE_PLUGIN_URL')) {
|
|
14 |
|
15 |
<div class="has-sidebar-content">
|
16 |
<div class="postbox" style="float: left; min-width:850px;">
|
17 |
-
<h3><?php esc_html_e('Select Role and change its capabilities:', '
|
18 |
<div class="inside">
|
19 |
<?php
|
20 |
if ($this->caps_readable) {
|
@@ -27,7 +27,7 @@ if (!defined('URE_PLUGIN_URL')) {
|
|
27 |
?>
|
28 |
<input type="checkbox" name="ure_caps_readable" id="ure_caps_readable" value="1"
|
29 |
<?php echo $checked; ?> onclick="ure_turn_caps_readable(0);"/>
|
30 |
-
<label for="ure_caps_readable"><?php esc_html_e('Show capabilities in human readable form', '
|
31 |
<?php
|
32 |
if ($this->show_deprecated_caps) {
|
33 |
$checked = 'checked="checked"';
|
@@ -37,7 +37,7 @@ if (!defined('URE_PLUGIN_URL')) {
|
|
37 |
?>
|
38 |
<input type="checkbox" name="ure_show_deprecated_caps" id="ure_show_deprecated_caps" value="1"
|
39 |
<?php echo $checked; ?> onclick="ure_turn_deprecated_caps(0);"/>
|
40 |
-
<label for="ure_show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities', '
|
41 |
<?php
|
42 |
}
|
43 |
if ($this->multisite && $this->active_for_network && !is_network_admin() && is_main_site( get_current_blog_id() ) && is_super_admin()) {
|
@@ -53,16 +53,16 @@ if ($this->multisite && $this->active_for_network && !is_network_admin() && is_m
|
|
53 |
<div style="float: right; margin-left:10px; margin-right: 20px; <?php echo $fontColor;?>" id="ure_apply_to_all_div">
|
54 |
<input type="checkbox" name="ure_apply_to_all" id="ure_apply_to_all" value="1"
|
55 |
<?php echo $checked; ?> title="<?php echo $hint;?>" onclick="ure_applyToAllOnClick(this)"/>
|
56 |
-
<label for="ure_apply_to_all" title="<?php echo $hint;?>"><?php esc_html_e('Apply to All Sites', '
|
57 |
</div>
|
58 |
<?php
|
59 |
}
|
60 |
?>
|
61 |
<br /><br />
|
62 |
<hr />
|
63 |
-
<?php esc_html_e('Core capabilities:', '
|
64 |
<div style="display:table-inline; float: right; margin-right: 12px;">
|
65 |
-
<?php esc_html_e('Quick filter:', '
|
66 |
<input type="text" id="quick_filter" name="quick_filter" value="" size="20" onkeyup="ure_filter_capabilities(this.value);" />
|
67 |
</div>
|
68 |
|
@@ -80,14 +80,14 @@ if ($this->multisite && $this->active_for_network && !is_network_admin() && is_m
|
|
80 |
$quant = count( $this->full_capabilities ) - count( $this->get_built_in_wp_caps() );
|
81 |
if ($quant>0) {
|
82 |
echo '<hr />';
|
83 |
-
esc_html_e('Custom capabilities:', '
|
84 |
?>
|
85 |
<table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
|
86 |
<tr>
|
87 |
<td style="vertical-align:top;">
|
88 |
<?php $this->show_capabilities( false, true ); ?>
|
89 |
</td>
|
90 |
-
|
91 |
</tr>
|
92 |
</table>
|
93 |
<?php
|
14 |
|
15 |
<div class="has-sidebar-content">
|
16 |
<div class="postbox" style="float: left; min-width:850px;">
|
17 |
+
<h3><?php esc_html_e('Select Role and change its capabilities:', 'user-role-editor'); ?> <?php echo $this->role_select_html; ?></h3>
|
18 |
<div class="inside">
|
19 |
<?php
|
20 |
if ($this->caps_readable) {
|
27 |
?>
|
28 |
<input type="checkbox" name="ure_caps_readable" id="ure_caps_readable" value="1"
|
29 |
<?php echo $checked; ?> onclick="ure_turn_caps_readable(0);"/>
|
30 |
+
<label for="ure_caps_readable"><?php esc_html_e('Show capabilities in human readable form', 'user-role-editor'); ?></label>
|
31 |
<?php
|
32 |
if ($this->show_deprecated_caps) {
|
33 |
$checked = 'checked="checked"';
|
37 |
?>
|
38 |
<input type="checkbox" name="ure_show_deprecated_caps" id="ure_show_deprecated_caps" value="1"
|
39 |
<?php echo $checked; ?> onclick="ure_turn_deprecated_caps(0);"/>
|
40 |
+
<label for="ure_show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities', 'user-role-editor'); ?></label>
|
41 |
<?php
|
42 |
}
|
43 |
if ($this->multisite && $this->active_for_network && !is_network_admin() && is_main_site( get_current_blog_id() ) && is_super_admin()) {
|
53 |
<div style="float: right; margin-left:10px; margin-right: 20px; <?php echo $fontColor;?>" id="ure_apply_to_all_div">
|
54 |
<input type="checkbox" name="ure_apply_to_all" id="ure_apply_to_all" value="1"
|
55 |
<?php echo $checked; ?> title="<?php echo $hint;?>" onclick="ure_applyToAllOnClick(this)"/>
|
56 |
+
<label for="ure_apply_to_all" title="<?php echo $hint;?>"><?php esc_html_e('Apply to All Sites', 'user-role-editor');?></label>
|
57 |
</div>
|
58 |
<?php
|
59 |
}
|
60 |
?>
|
61 |
<br /><br />
|
62 |
<hr />
|
63 |
+
<?php esc_html_e('Core capabilities:', 'user-role-editor'); ?>
|
64 |
<div style="display:table-inline; float: right; margin-right: 12px;">
|
65 |
+
<?php esc_html_e('Quick filter:', 'user-role-editor'); ?>
|
66 |
<input type="text" id="quick_filter" name="quick_filter" value="" size="20" onkeyup="ure_filter_capabilities(this.value);" />
|
67 |
</div>
|
68 |
|
80 |
$quant = count( $this->full_capabilities ) - count( $this->get_built_in_wp_caps() );
|
81 |
if ($quant>0) {
|
82 |
echo '<hr />';
|
83 |
+
esc_html_e('Custom capabilities:', 'user-role-editor');
|
84 |
?>
|
85 |
<table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
|
86 |
<tr>
|
87 |
<td style="vertical-align:top;">
|
88 |
<?php $this->show_capabilities( false, true ); ?>
|
89 |
</td>
|
90 |
+
<td></td>
|
91 |
</tr>
|
92 |
</table>
|
93 |
<?php
|
includes/ure-user-edit.php
CHANGED
@@ -29,10 +29,10 @@ $edit_user_caps_mode = $this->get_edit_user_caps_mode();
|
|
29 |
}
|
30 |
$user_info .= $anchor_end.'</span>';
|
31 |
if (is_multisite() && is_super_admin($this->user_to_edit->ID)) {
|
32 |
-
$user_info .= ' <span style="font-weight: bold; color:red;">'. esc_html__('Network Super Admin', '
|
33 |
}
|
34 |
|
35 |
-
$this->display_box_start(esc_html__('Change capabilities for user', '
|
36 |
|
37 |
?>
|
38 |
<table cellpadding="0" cellspacing="0" style="width: 100%;">
|
@@ -51,7 +51,7 @@ $edit_user_caps_mode = $this->get_edit_user_caps_mode();
|
|
51 |
|
52 |
<input type="checkbox" name="ure_caps_readable" id="ure_caps_readable" value="1"
|
53 |
<?php echo $checked; ?> onclick="ure_turn_caps_readable(<?php echo $this->user_to_edit->ID; ?>);" />
|
54 |
-
<label for="ure_caps_readable"><?php esc_html_e('Show capabilities in human readable form', '
|
55 |
<?php
|
56 |
if ($this->show_deprecated_caps) {
|
57 |
$checked = 'checked="checked"';
|
@@ -61,7 +61,7 @@ $edit_user_caps_mode = $this->get_edit_user_caps_mode();
|
|
61 |
?>
|
62 |
<input type="checkbox" name="ure_show_deprecated_caps" id="ure_show_deprecated_caps" value="1"
|
63 |
<?php echo $checked; ?> onclick="ure_turn_deprecated_caps(<?php echo $this->user_to_edit->ID; ?>);"/>
|
64 |
-
<label for="ure_show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities', '
|
65 |
<?php
|
66 |
}
|
67 |
?>
|
@@ -69,7 +69,7 @@ $edit_user_caps_mode = $this->get_edit_user_caps_mode();
|
|
69 |
</tr>
|
70 |
<tr>
|
71 |
<td class="ure-user-roles">
|
72 |
-
<div style="margin-bottom: 5px; font-weight: bold;"><?php esc_html_e('Primary Role:', '
|
73 |
<?php
|
74 |
$show_admin_role = $this->show_admin_role_allowed();
|
75 |
// output primary role selection dropdown list
|
@@ -79,7 +79,7 @@ $values = array_values($this->user_to_edit->roles);
|
|
79 |
$primary_role = array_shift($values); // get 1st element from roles array
|
80 |
if (function_exists('bbp_filter_blog_editable_roles') ) { // bbPress plugin is active
|
81 |
?>
|
82 |
-
<div style="margin-top: 5px;margin-bottom: 5px; font-weight: bold;"><?php esc_html_e('bbPress Role:', '
|
83 |
<?php
|
84 |
// Get the roles
|
85 |
$dynamic_roles = bbp_get_dynamic_roles();
|
@@ -89,7 +89,7 @@ if (function_exists('bbp_filter_blog_editable_roles') ) { // bbPress plugin is
|
|
89 |
}
|
90 |
}
|
91 |
?>
|
92 |
-
<div style="margin-top: 5px;margin-bottom: 5px; font-weight: bold;"><?php esc_html_e('Other Roles:', '
|
93 |
<?php
|
94 |
|
95 |
foreach ($this->roles as $role_id => $role) {
|
@@ -101,15 +101,15 @@ if (function_exists('bbp_filter_blog_editable_roles') ) { // bbPress plugin is
|
|
101 |
}
|
102 |
echo '<label for="wp_role_' . $role_id .'"><input type="checkbox" id="wp_role_' . $role_id .
|
103 |
'" name="wp_role_' . $role_id . '" value="' . $role_id . '"' . $checked .' /> ' .
|
104 |
-
esc_html__($role['name'], '
|
105 |
}
|
106 |
}
|
107 |
?>
|
108 |
</td>
|
109 |
<td style="padding-left: 5px; padding-top: 5px; border-top: 1px solid #ccc;">
|
110 |
-
<span style="font-weight: bold;"><?php esc_html_e('Core capabilities:', '
|
111 |
<div style="display:table-inline; float: right; margin-right: 12px;">
|
112 |
-
<?php esc_html_e('Quick filter:', '
|
113 |
<input type="text" id="quick_filter" name="quick_filter" value="" size="20" onkeyup="ure_filter_capabilities(this.value);" />
|
114 |
</div>
|
115 |
|
@@ -128,7 +128,7 @@ if (function_exists('bbp_filter_blog_editable_roles') ) { // bbPress plugin is
|
|
128 |
if ($quant>0) {
|
129 |
echo '<hr />';
|
130 |
?>
|
131 |
-
<span style="font-weight: bold;"><?php esc_html_e('Custom capabilities:', '
|
132 |
<table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
|
133 |
<tr>
|
134 |
<td style="vertical-align:top;">
|
29 |
}
|
30 |
$user_info .= $anchor_end.'</span>';
|
31 |
if (is_multisite() && is_super_admin($this->user_to_edit->ID)) {
|
32 |
+
$user_info .= ' <span style="font-weight: bold; color:red;">'. esc_html__('Network Super Admin', 'user-role-editor') .'</span>';
|
33 |
}
|
34 |
|
35 |
+
$this->display_box_start(esc_html__('Change capabilities for user', 'user-role-editor').$user_info, 'min-width:1100px;');
|
36 |
|
37 |
?>
|
38 |
<table cellpadding="0" cellspacing="0" style="width: 100%;">
|
51 |
|
52 |
<input type="checkbox" name="ure_caps_readable" id="ure_caps_readable" value="1"
|
53 |
<?php echo $checked; ?> onclick="ure_turn_caps_readable(<?php echo $this->user_to_edit->ID; ?>);" />
|
54 |
+
<label for="ure_caps_readable"><?php esc_html_e('Show capabilities in human readable form', 'user-role-editor'); ?></label>
|
55 |
<?php
|
56 |
if ($this->show_deprecated_caps) {
|
57 |
$checked = 'checked="checked"';
|
61 |
?>
|
62 |
<input type="checkbox" name="ure_show_deprecated_caps" id="ure_show_deprecated_caps" value="1"
|
63 |
<?php echo $checked; ?> onclick="ure_turn_deprecated_caps(<?php echo $this->user_to_edit->ID; ?>);"/>
|
64 |
+
<label for="ure_show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities', 'user-role-editor'); ?></label>
|
65 |
<?php
|
66 |
}
|
67 |
?>
|
69 |
</tr>
|
70 |
<tr>
|
71 |
<td class="ure-user-roles">
|
72 |
+
<div style="margin-bottom: 5px; font-weight: bold;"><?php esc_html_e('Primary Role:', 'user-role-editor'); ?></div>
|
73 |
<?php
|
74 |
$show_admin_role = $this->show_admin_role_allowed();
|
75 |
// output primary role selection dropdown list
|
79 |
$primary_role = array_shift($values); // get 1st element from roles array
|
80 |
if (function_exists('bbp_filter_blog_editable_roles') ) { // bbPress plugin is active
|
81 |
?>
|
82 |
+
<div style="margin-top: 5px;margin-bottom: 5px; font-weight: bold;"><?php esc_html_e('bbPress Role:', 'user-role-editor'); ?></div>
|
83 |
<?php
|
84 |
// Get the roles
|
85 |
$dynamic_roles = bbp_get_dynamic_roles();
|
89 |
}
|
90 |
}
|
91 |
?>
|
92 |
+
<div style="margin-top: 5px;margin-bottom: 5px; font-weight: bold;"><?php esc_html_e('Other Roles:', 'user-role-editor'); ?></div>
|
93 |
<?php
|
94 |
|
95 |
foreach ($this->roles as $role_id => $role) {
|
101 |
}
|
102 |
echo '<label for="wp_role_' . $role_id .'"><input type="checkbox" id="wp_role_' . $role_id .
|
103 |
'" name="wp_role_' . $role_id . '" value="' . $role_id . '"' . $checked .' /> ' .
|
104 |
+
esc_html__($role['name'], 'user-role-editor') . '</label><br />';
|
105 |
}
|
106 |
}
|
107 |
?>
|
108 |
</td>
|
109 |
<td style="padding-left: 5px; padding-top: 5px; border-top: 1px solid #ccc;">
|
110 |
+
<span style="font-weight: bold;"><?php esc_html_e('Core capabilities:', 'user-role-editor'); ?></span>
|
111 |
<div style="display:table-inline; float: right; margin-right: 12px;">
|
112 |
+
<?php esc_html_e('Quick filter:', 'user-role-editor'); ?>
|
113 |
<input type="text" id="quick_filter" name="quick_filter" value="" size="20" onkeyup="ure_filter_capabilities(this.value);" />
|
114 |
</div>
|
115 |
|
128 |
if ($quant>0) {
|
129 |
echo '<hr />';
|
130 |
?>
|
131 |
+
<span style="font-weight: bold;"><?php esc_html_e('Custom capabilities:', 'user-role-editor'); ?></span>
|
132 |
<table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
|
133 |
<tr>
|
134 |
<td style="vertical-align:top;">
|
index.php
CHANGED
@@ -1,3 +1,2 @@
|
|
1 |
<?php
|
2 |
// Silence is golden.
|
3 |
-
?>
|
1 |
<?php
|
2 |
// Silence is golden.
|
|
lang/index.php
CHANGED
@@ -1,3 +1,2 @@
|
|
1 |
<?php
|
2 |
// Silence is golden.
|
3 |
-
?>
|
1 |
<?php
|
2 |
// Silence is golden.
|
|
lang/ure-de_DE.mo
DELETED
Binary file
|
lang/ure-es_ES.mo
DELETED
Binary file
|
lang/ure-fa_IR.mo
DELETED
Binary file
|
lang/ure-fr_FR.mo
DELETED
Binary file
|
lang/ure-hu_HU.mo
DELETED
Binary file
|
lang/ure-id_ID.mo
DELETED
Binary file
|
lang/ure-it_IT.mo
DELETED
Binary file
|
lang/ure-nl_NL.mo
DELETED
Binary file
|
lang/ure-ru_RU.mo
DELETED
Binary file
|
lang/ure-tr_TR.mo
DELETED
Binary file
|
lang/ure.mo
DELETED
Binary file
|
lang/user-role-editor-de_DE.mo
ADDED
Binary file
|
lang/{ure-de_DE.po → user-role-editor-de_DE.po}
RENAMED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v. 3.7.5\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
-
"Last-Translator: Vladimir Garagulya <
|
8 |
"Language-Team: Peter Becker-Heidmann <peter@becker-heidmann.de>\n"
|
9 |
"Language: de_DE\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -19,942 +19,676 @@ msgstr ""
|
|
19 |
"X-Generator: Poedit 1.5.4\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
msgid "User Role Editor - Options"
|
26 |
-
msgstr "User Role Editor"
|
27 |
|
28 |
-
#: ../includes/
|
29 |
-
|
30 |
-
msgid "General"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: ../includes/
|
34 |
-
|
35 |
-
msgid "Additional Modules"
|
36 |
msgstr ""
|
37 |
|
|
|
|
|
|
|
|
|
38 |
# @ ure
|
39 |
-
#: ../includes/
|
40 |
-
|
|
|
|
|
|
|
|
|
41 |
#, fuzzy
|
42 |
-
msgid "
|
43 |
-
msgstr "Löschen
|
44 |
|
45 |
-
#: ../includes/
|
46 |
-
|
47 |
-
msgid "Multisite"
|
48 |
msgstr ""
|
49 |
|
50 |
-
|
51 |
-
|
52 |
-
|
|
|
|
|
|
|
53 |
|
54 |
-
#: ../includes/
|
55 |
-
|
56 |
-
|
57 |
-
msgstr ""
|
58 |
|
59 |
# @ ure
|
60 |
-
#: ../includes/
|
61 |
-
|
62 |
-
|
63 |
-
msgid "Show capabilities in the human readable form"
|
64 |
-
msgstr "Anzeige der Rechte in allgemeinverständlicher Form"
|
65 |
|
66 |
-
#: ../includes/
|
67 |
-
|
68 |
-
|
69 |
-
msgstr "Zeige herabgesetzte Rechte"
|
70 |
|
71 |
-
|
72 |
-
#: ../includes/class-ure-
|
73 |
#, fuzzy
|
74 |
-
msgid "
|
75 |
-
msgstr "
|
76 |
|
77 |
-
#: ../includes/
|
78 |
-
|
79 |
-
msgid "Save"
|
80 |
msgstr ""
|
81 |
|
82 |
-
|
83 |
-
#: ../includes/class-ure-
|
84 |
-
|
85 |
-
|
|
|
86 |
|
87 |
-
|
88 |
-
|
89 |
-
|
|
|
|
|
90 |
|
91 |
# @ ure
|
92 |
-
#: ../includes/
|
93 |
#, fuzzy
|
94 |
-
msgid "
|
95 |
-
msgstr "
|
96 |
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
"
|
101 |
-
"
|
102 |
-
msgstr ""
|
103 |
|
104 |
-
#: ../includes/
|
105 |
-
msgid "
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: ../includes/class-
|
109 |
-
|
110 |
-
|
|
|
111 |
|
112 |
-
#: ../includes/class-
|
113 |
-
msgid "
|
114 |
-
msgstr ""
|
115 |
|
116 |
-
#: ../includes/class-
|
117 |
-
|
|
|
|
|
|
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: ../includes/class-user-role-editor.php:320
|
121 |
-
#: ../includes/class-user-role-editor.php:322
|
122 |
-
#, fuzzy
|
123 |
-
msgid "You do not have permission to edit this user."
|
124 |
-
msgstr "Fehler: Sie haben nicht die Erlaubnis, dieses Recht zu löschen: %s!"
|
125 |
-
|
126 |
-
#: ../includes/class-user-role-editor.php:460
|
127 |
-
msgid "Capabilities"
|
128 |
-
msgstr "Rechte"
|
129 |
-
|
130 |
# @ ure
|
131 |
-
#: ../includes/class-
|
132 |
-
msgid "
|
133 |
-
msgstr "
|
134 |
|
135 |
# @ ure
|
136 |
-
#: ../includes/class-
|
137 |
-
|
138 |
-
msgid "
|
139 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
|
141 |
# @ ure
|
142 |
-
#: ../includes/class-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
msgid "User Role Editor"
|
147 |
-
msgstr "User Role Editor"
|
148 |
|
149 |
# @ ure
|
150 |
-
#: ../includes/class-
|
151 |
-
|
152 |
-
|
153 |
-
#, fuzzy
|
154 |
-
msgid "User Role Editor options are updated"
|
155 |
-
msgstr "User Role Editor"
|
156 |
|
157 |
# @ ure
|
158 |
-
#: ../includes/class-
|
159 |
-
#,
|
160 |
-
msgid "
|
161 |
-
msgstr "
|
162 |
|
163 |
-
#: ../includes/class-
|
164 |
-
msgid ""
|
165 |
-
"You do not have sufficient permissions to manage options for User Role "
|
166 |
-
"Editor."
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../includes/class-
|
170 |
-
|
171 |
-
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
172 |
-
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
173 |
-
msgid "Insufficient permissions to work with User Role Editor"
|
174 |
msgstr ""
|
175 |
|
176 |
-
|
177 |
-
|
178 |
-
msgid "
|
179 |
-
msgstr "
|
180 |
-
|
181 |
-
#: ../includes/class-user-role-editor.php:978
|
182 |
-
msgid "Unselect All"
|
183 |
-
msgstr "Wähle alle ab"
|
184 |
-
|
185 |
-
#: ../includes/class-user-role-editor.php:979
|
186 |
-
msgid "Reverse"
|
187 |
-
msgstr "Rückgängig"
|
188 |
|
189 |
# @ ure
|
190 |
-
#: ../includes/class-
|
191 |
-
|
192 |
-
|
|
|
193 |
|
194 |
# @ ure
|
195 |
-
#: ../includes/class-
|
196 |
-
|
197 |
-
|
198 |
-
msgstr "Bestätigen Sie bitte, um fortzufahren"
|
199 |
|
200 |
# @ ure
|
201 |
-
#: ../includes/class-
|
202 |
-
|
203 |
-
|
|
|
204 |
|
205 |
# @ ure
|
206 |
-
#: ../includes/class-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
msgstr "Löschen der Rolle"
|
211 |
|
212 |
# @ ure
|
213 |
-
#: ../includes/class-
|
214 |
-
|
215 |
-
|
216 |
-
msgstr "Name darf nicht leer sein!"
|
217 |
|
218 |
# @ ure
|
219 |
-
#: ../includes/class-
|
220 |
-
#,
|
221 |
-
msgid ""
|
222 |
-
"
|
223 |
-
"only!"
|
224 |
-
msgstr "Fehler: Der Rollen-Name darf nur Buchstaben und Ziffern enthalten!"
|
225 |
|
226 |
-
#: ../includes/class-
|
227 |
-
msgid ""
|
228 |
-
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
229 |
-
"it."
|
230 |
msgstr ""
|
231 |
|
232 |
-
|
233 |
-
#: ../includes/class-user-role-editor.php:987
|
234 |
#, fuzzy
|
235 |
-
msgid "
|
236 |
-
msgstr "
|
237 |
|
238 |
# @ ure
|
239 |
-
#: ../includes/class-
|
240 |
-
msgid "
|
241 |
-
msgstr "
|
242 |
|
243 |
# @ ure
|
244 |
-
#: ../includes/class-
|
245 |
-
msgid "
|
246 |
-
msgstr "
|
247 |
|
248 |
# @ ure
|
249 |
-
#: ../includes/class-
|
250 |
-
|
251 |
-
|
252 |
-
msgstr "Füge neues Recht hinzu"
|
253 |
-
|
254 |
-
#: ../includes/class-user-role-editor.php:992
|
255 |
-
#: ../includes/class-user-role-editor.php:1001
|
256 |
-
#, fuzzy
|
257 |
-
msgid "Delete Capability"
|
258 |
-
msgstr "Entferne Recht"
|
259 |
|
260 |
# @ ure
|
261 |
-
#: ../includes/class-
|
262 |
-
msgid "
|
263 |
-
msgstr "
|
264 |
-
|
265 |
-
#: ../includes/class-user-role-editor.php:994
|
266 |
-
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
267 |
-
msgstr ""
|
268 |
-
|
269 |
-
#: ../includes/class-user-role-editor.php:995
|
270 |
-
msgid ""
|
271 |
-
"If any plugins have changed capabilities in any way upon installation (such "
|
272 |
-
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
273 |
-
msgstr ""
|
274 |
-
|
275 |
-
#: ../includes/class-user-role-editor.php:996
|
276 |
-
msgid ""
|
277 |
-
"For more information on how to undo changes and restore plugin capabilities "
|
278 |
-
"go to"
|
279 |
-
msgstr ""
|
280 |
|
281 |
# @ ure
|
282 |
-
#: ../includes/class-
|
283 |
-
|
284 |
-
|
285 |
-
msgstr "Mitarbeiter"
|
286 |
|
287 |
# @ ure
|
288 |
-
#: ../includes/class-
|
289 |
-
|
290 |
-
|
291 |
-
msgstr "Löschen der Rolle"
|
292 |
|
293 |
# @ ure
|
294 |
-
#: ../includes/class-
|
295 |
-
#, fuzzy
|
296 |
-
msgid "Set New Default Role"
|
297 |
-
msgstr "Als Standard-Benutzer-Rolle setzen"
|
298 |
-
|
299 |
-
#: ../includes/class-user-role-editor.php:1002
|
300 |
-
msgid ""
|
301 |
-
"Warning! Be careful - removing critical capability could crash some plugin "
|
302 |
-
"or other custom code"
|
303 |
-
msgstr ""
|
304 |
-
"Achtung! Seien Sie vorsichtig - das Löschen kritischer Rechte könnte Plugin- "
|
305 |
-
"oder angepassten Code zerstören."
|
306 |
-
|
307 |
-
# @ ure
|
308 |
-
#: ../includes/class-user-role-editor.php:1003
|
309 |
-
#, fuzzy
|
310 |
-
msgid " Capability name (ID) can not be empty!"
|
311 |
-
msgstr "Name darf nicht leer sein!"
|
312 |
-
|
313 |
-
# @ ure
|
314 |
-
#: ../includes/class-user-role-editor.php:1004
|
315 |
-
#, fuzzy
|
316 |
-
msgid ""
|
317 |
-
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
318 |
-
"underscore only!"
|
319 |
-
msgstr "Fehler: Der Name des Rechts darf nur Buchstaben und Ziffern enthalten!"
|
320 |
-
|
321 |
-
# @ ure
|
322 |
-
#: ../includes/class-user-role-editor.php:1033
|
323 |
-
#: ../includes/class-user-role-editor.php:1066
|
324 |
-
#, fuzzy
|
325 |
-
msgid "Other Roles"
|
326 |
-
msgstr "Löschen der Rolle"
|
327 |
-
|
328 |
-
# @ ure
|
329 |
-
#: ../includes/class-user-role-editor.php:1047
|
330 |
-
#, fuzzy
|
331 |
-
msgid "Edit"
|
332 |
-
msgstr "Redakteur"
|
333 |
-
|
334 |
-
# @ ure
|
335 |
-
#: ../includes/ure-role-edit.php:17
|
336 |
-
#, fuzzy
|
337 |
-
msgid "Select Role and change its capabilities:"
|
338 |
-
msgstr "Eine Rolle auswählen und ihre Rechte ändern"
|
339 |
-
|
340 |
-
# @ ure
|
341 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
342 |
-
msgid "Show capabilities in human readable form"
|
343 |
-
msgstr "Anzeige der Rechte in allgemeinverständlicher Form"
|
344 |
-
|
345 |
-
#: ../includes/ure-role-edit.php:44
|
346 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
347 |
-
msgstr "Fall aktiviert, wende die Aktion auf ALLE Webpräsenzen"
|
348 |
-
|
349 |
-
#: ../includes/ure-role-edit.php:56
|
350 |
-
msgid "Apply to All Sites"
|
351 |
-
msgstr "Wende auf alle Webpräsenzen an"
|
352 |
-
|
353 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
354 |
-
msgid "Core capabilities:"
|
355 |
-
msgstr "Rechte WordPress:"
|
356 |
-
|
357 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
358 |
-
msgid "Quick filter:"
|
359 |
-
msgstr ""
|
360 |
-
|
361 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
362 |
-
#, fuzzy
|
363 |
-
msgid "Custom capabilities:"
|
364 |
-
msgstr "Rechte:"
|
365 |
-
|
366 |
-
#: ../includes/class-ure-lib.php:245
|
367 |
-
msgid "Error: wrong request"
|
368 |
-
msgstr ""
|
369 |
-
|
370 |
-
#: ../includes/class-ure-lib.php:278 ../includes/class-ure-lib.php:289
|
371 |
-
msgid "Role name (ID): "
|
372 |
-
msgstr ""
|
373 |
-
|
374 |
-
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
375 |
-
msgid "Display Role Name: "
|
376 |
-
msgstr ""
|
377 |
-
|
378 |
-
#: ../includes/class-ure-lib.php:282
|
379 |
-
msgid "Make copy of: "
|
380 |
-
msgstr "Erstelle Kopie von:"
|
381 |
-
|
382 |
-
# @ ure
|
383 |
-
#: ../includes/class-ure-lib.php:298
|
384 |
-
msgid "Select Role:"
|
385 |
-
msgstr "Eine Rolle auswählen:"
|
386 |
-
|
387 |
-
# @ ure
|
388 |
-
#: ../includes/class-ure-lib.php:313
|
389 |
-
#, fuzzy
|
390 |
-
msgid "Delete:"
|
391 |
-
msgstr "Löschen"
|
392 |
-
|
393 |
-
#: ../includes/class-ure-lib.php:320
|
394 |
-
msgid "Capability name (ID): "
|
395 |
-
msgstr ""
|
396 |
-
|
397 |
-
#: ../includes/class-ure-lib.php:434
|
398 |
-
msgid "Error: "
|
399 |
-
msgstr "Fehler:"
|
400 |
-
|
401 |
-
# @ ure
|
402 |
-
#: ../includes/class-ure-lib.php:434
|
403 |
-
msgid "Role"
|
404 |
-
msgstr "Rolle"
|
405 |
-
|
406 |
-
#: ../includes/class-ure-lib.php:435
|
407 |
-
msgid "does not exist"
|
408 |
-
msgstr "existiert nicht"
|
409 |
-
|
410 |
-
# @ ure
|
411 |
-
#: ../includes/class-ure-lib.php:478
|
412 |
-
#, fuzzy
|
413 |
-
msgid "Role is updated successfully"
|
414 |
-
msgstr "wurde erfolgreich aktualisiert"
|
415 |
-
|
416 |
-
#: ../includes/class-ure-lib.php:480
|
417 |
-
msgid "Roles are updated for all network"
|
418 |
-
msgstr ""
|
419 |
-
|
420 |
-
# @ ure
|
421 |
-
#: ../includes/class-ure-lib.php:486
|
422 |
-
#, fuzzy
|
423 |
-
msgid "Error occured during role(s) update"
|
424 |
-
msgstr "Ein Fehler ist während des Löschvorgangs der Rolle aufgetreten"
|
425 |
-
|
426 |
-
# @ ure
|
427 |
-
#: ../includes/class-ure-lib.php:493
|
428 |
-
#, fuzzy
|
429 |
-
msgid "User capabilities are updated successfully"
|
430 |
-
msgstr "Rechte wurden erfolgreich aktualisiert"
|
431 |
-
|
432 |
-
# @ ure
|
433 |
-
#: ../includes/class-ure-lib.php:498
|
434 |
-
#, fuzzy
|
435 |
-
msgid "Error occured during user update"
|
436 |
-
msgstr "Ein Fehler ist während des Löschvorgangs der Rolle aufgetreten"
|
437 |
-
|
438 |
-
# @ ure
|
439 |
-
#: ../includes/class-ure-lib.php:556
|
440 |
-
#, fuzzy
|
441 |
-
msgid "User Roles are restored to WordPress default values. "
|
442 |
-
msgstr "Rollenbefugnisse werden von der Sicherheitskopie wiederhergestellt."
|
443 |
-
|
444 |
-
#: ../includes/class-ure-lib.php:1444
|
445 |
-
msgid "read about"
|
446 |
-
msgstr ""
|
447 |
-
|
448 |
-
#: ../includes/class-ure-lib.php:1445
|
449 |
-
#, fuzzy
|
450 |
-
msgid "user capability"
|
451 |
-
msgstr "Entferne Benutzerrecht"
|
452 |
-
|
453 |
-
#: ../includes/class-ure-lib.php:1446
|
454 |
-
msgid "Help"
|
455 |
-
msgstr "Hilfe"
|
456 |
-
|
457 |
-
# @ ure
|
458 |
-
#: ../includes/class-ure-lib.php:1914
|
459 |
-
msgid "Error is occur. Please check the log file."
|
460 |
-
msgstr "Ein Fehler ist aufgetreten. Bitte überprüfen Sie die Log-Datei."
|
461 |
-
|
462 |
-
# @ ure
|
463 |
-
#: ../includes/class-ure-lib.php:1960 ../includes/class-ure-lib.php:2027
|
464 |
-
#, fuzzy
|
465 |
-
msgid ""
|
466 |
-
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
467 |
-
"only!"
|
468 |
-
msgstr "Fehler: Der Rollen-Name darf nur Buchstaben und Ziffern enthalten!"
|
469 |
-
|
470 |
-
#: ../includes/class-ure-lib.php:1964 ../includes/class-ure-lib.php:2031
|
471 |
-
msgid ""
|
472 |
-
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
473 |
-
"characters to it."
|
474 |
-
msgstr ""
|
475 |
-
|
476 |
-
# @ ure
|
477 |
-
#: ../includes/class-ure-lib.php:1979
|
478 |
-
#, php-format
|
479 |
-
msgid "Role %s exists already"
|
480 |
-
msgstr "Rolle %s existiert bereits"
|
481 |
-
|
482 |
-
# @ ure
|
483 |
-
#: ../includes/class-ure-lib.php:1994
|
484 |
-
msgid "Error is encountered during new role create operation"
|
485 |
-
msgstr "Ein Fehler ist beim Erstellen der neuen Rolle aufgetreten"
|
486 |
-
|
487 |
-
# @ ure
|
488 |
-
#: ../includes/class-ure-lib.php:1996
|
489 |
-
#, php-format
|
490 |
-
msgid "Role %s is created successfully"
|
491 |
-
msgstr "Rolle %s wurde erfolgreich erstellt"
|
492 |
-
|
493 |
-
#: ../includes/class-ure-lib.php:2020
|
494 |
-
msgid "Error: Role ID is empty!"
|
495 |
-
msgstr ""
|
496 |
-
|
497 |
-
#: ../includes/class-ure-lib.php:2038
|
498 |
-
msgid "Error: Empty role display name is not allowed."
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
-
#: ../includes/class-ure-lib.php:2045
|
502 |
-
#, fuzzy, php-format
|
503 |
-
msgid "Role %s does not exists"
|
504 |
-
msgstr "existiert nicht"
|
505 |
-
|
506 |
-
# @ ure
|
507 |
-
#: ../includes/class-ure-lib.php:2053
|
508 |
-
#, fuzzy, php-format
|
509 |
-
msgid "Role %s is renamed to %s successfully"
|
510 |
-
msgstr "Rolle %s wurde erfolgreich erstellt"
|
511 |
-
|
512 |
-
# @ ure
|
513 |
-
#: ../includes/class-ure-lib.php:2126
|
514 |
-
msgid "Error encountered during role delete operation"
|
515 |
-
msgstr "Ein Fehler ist während des Löschvorgangs der Rolle aufgetreten"
|
516 |
-
|
517 |
-
# @ ure
|
518 |
-
#: ../includes/class-ure-lib.php:2128
|
519 |
-
#, fuzzy
|
520 |
-
msgid "Unused roles are deleted successfully"
|
521 |
-
msgstr "Rolle %s wurde erfolgreich gelöscht"
|
522 |
-
|
523 |
-
# @ ure
|
524 |
-
#: ../includes/class-ure-lib.php:2130
|
525 |
-
#, php-format
|
526 |
-
msgid "Role %s is deleted successfully"
|
527 |
-
msgstr "Rolle %s wurde erfolgreich gelöscht"
|
528 |
-
|
529 |
-
# @ ure
|
530 |
-
#: ../includes/class-ure-lib.php:2155
|
531 |
-
msgid "Error encountered during default role change operation"
|
532 |
-
msgstr "Ein Fehler ist während Änderung der Standard-Rolle aufgetreten"
|
533 |
-
|
534 |
-
# @ ure
|
535 |
-
#: ../includes/class-ure-lib.php:2161
|
536 |
-
#, php-format
|
537 |
-
msgid "Default role for new users is set to %s successfully"
|
538 |
-
msgstr "Standard-Rolle für neue Benutzer erfolgreich auf %s gesetzt"
|
539 |
-
|
540 |
-
# @ ure
|
541 |
-
#: ../includes/class-ure-lib.php:2180
|
542 |
-
msgid "Editor"
|
543 |
-
msgstr "Redakteur"
|
544 |
-
|
545 |
-
# @ ure
|
546 |
-
#: ../includes/class-ure-lib.php:2181
|
547 |
-
msgid "Author"
|
548 |
-
msgstr "Autor"
|
549 |
-
|
550 |
-
# @ ure
|
551 |
-
#: ../includes/class-ure-lib.php:2182
|
552 |
-
msgid "Contributor"
|
553 |
-
msgstr "Mitarbeiter"
|
554 |
-
|
555 |
-
# @ ure
|
556 |
-
#: ../includes/class-ure-lib.php:2183
|
557 |
-
msgid "Subscriber"
|
558 |
-
msgstr "Abonnent"
|
559 |
-
|
560 |
-
# @ ure
|
561 |
-
#: ../includes/class-ure-lib.php:2185
|
562 |
-
msgid "Switch themes"
|
563 |
-
msgstr "Design auswählen"
|
564 |
-
|
565 |
-
# @ ure
|
566 |
-
#: ../includes/class-ure-lib.php:2186
|
567 |
-
msgid "Edit themes"
|
568 |
-
msgstr "Design bearbeiten"
|
569 |
-
|
570 |
-
# @ ure
|
571 |
-
#: ../includes/class-ure-lib.php:2187
|
572 |
msgid "Activate plugins"
|
573 |
msgstr "Plugins aktivieren"
|
574 |
|
575 |
# @ ure
|
576 |
-
#: ../includes/class-ure-lib.php:
|
577 |
msgid "Edit plugins"
|
578 |
msgstr "Plugins bearbeiten"
|
579 |
|
580 |
# @ ure
|
581 |
-
#: ../includes/class-ure-lib.php:
|
582 |
msgid "Edit users"
|
583 |
msgstr "Benutzer bearbeiten"
|
584 |
|
585 |
# @ ure
|
586 |
-
#: ../includes/class-ure-lib.php:
|
587 |
msgid "Edit files"
|
588 |
msgstr "Dateien bearbeiten"
|
589 |
|
590 |
# @ ure
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Manage options"
|
593 |
msgstr "Eigenschaften verwalten"
|
594 |
|
595 |
# @ ure
|
596 |
-
#: ../includes/class-ure-lib.php:
|
597 |
msgid "Moderate comments"
|
598 |
msgstr "Kommentare moderieren"
|
599 |
|
600 |
# @ ure
|
601 |
-
#: ../includes/class-ure-lib.php:
|
602 |
msgid "Manage categories"
|
603 |
msgstr "Kategorien verwalten"
|
604 |
|
605 |
# @ ure
|
606 |
-
#: ../includes/class-ure-lib.php:
|
607 |
msgid "Manage links"
|
608 |
msgstr "Links verwalten"
|
609 |
|
610 |
# @ ure
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Upload files"
|
613 |
msgstr "Dateien hochladen"
|
614 |
|
615 |
# @ ure
|
616 |
-
#: ../includes/class-ure-lib.php:
|
617 |
msgid "Import"
|
618 |
msgstr "Import"
|
619 |
|
620 |
# @ ure
|
621 |
-
#: ../includes/class-ure-lib.php:
|
622 |
msgid "Unfiltered html"
|
623 |
msgstr "Ungefiltertes Html"
|
624 |
|
625 |
# @ ure
|
626 |
-
#: ../includes/class-ure-lib.php:
|
627 |
msgid "Edit posts"
|
628 |
msgstr "Artikel verwalten"
|
629 |
|
630 |
# @ ure
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Edit others posts"
|
633 |
msgstr "Artikel anderer Benutzer verwalten"
|
634 |
|
635 |
# @ ure
|
636 |
-
#: ../includes/class-ure-lib.php:
|
637 |
msgid "Edit published posts"
|
638 |
msgstr "Veröffentlichte Artikel bearbeiten"
|
639 |
|
640 |
# @ ure
|
641 |
-
#: ../includes/class-ure-lib.php:
|
642 |
msgid "Publish posts"
|
643 |
msgstr "Artikel veröffentlichen"
|
644 |
|
645 |
# @ ure
|
646 |
-
#: ../includes/class-ure-lib.php:
|
647 |
msgid "Edit pages"
|
648 |
msgstr "Seiten bearbeiten"
|
649 |
|
650 |
# @ ure
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Read"
|
653 |
msgstr "Lesen"
|
654 |
|
655 |
# @ ure
|
656 |
-
#: ../includes/class-ure-lib.php:
|
657 |
msgid "Level 10"
|
658 |
msgstr ""
|
659 |
|
660 |
# @ ure
|
661 |
-
#: ../includes/class-ure-lib.php:
|
662 |
msgid "Level 9"
|
663 |
msgstr ""
|
664 |
|
665 |
# @ ure
|
666 |
-
#: ../includes/class-ure-lib.php:
|
667 |
msgid "Level 8"
|
668 |
msgstr ""
|
669 |
|
670 |
# @ ure
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Level 7"
|
673 |
msgstr ""
|
674 |
|
675 |
# @ ure
|
676 |
-
#: ../includes/class-ure-lib.php:
|
677 |
msgid "Level 6"
|
678 |
msgstr ""
|
679 |
|
680 |
# @ ure
|
681 |
-
#: ../includes/class-ure-lib.php:
|
682 |
msgid "Level 5"
|
683 |
msgstr ""
|
684 |
|
685 |
# @ ure
|
686 |
-
#: ../includes/class-ure-lib.php:
|
687 |
msgid "Level 4"
|
688 |
msgstr ""
|
689 |
|
690 |
# @ ure
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Level 3"
|
693 |
msgstr ""
|
694 |
|
695 |
# @ ure
|
696 |
-
#: ../includes/class-ure-lib.php:
|
697 |
msgid "Level 2"
|
698 |
msgstr ""
|
699 |
|
700 |
# @ ure
|
701 |
-
#: ../includes/class-ure-lib.php:
|
702 |
msgid "Level 1"
|
703 |
msgstr ""
|
704 |
|
705 |
# @ ure
|
706 |
-
#: ../includes/class-ure-lib.php:
|
707 |
msgid "Level 0"
|
708 |
msgstr ""
|
709 |
|
710 |
# @ ure
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Edit others pages"
|
713 |
msgstr "Seiten anderer Benutzer bearbeiten"
|
714 |
|
715 |
# @ ure
|
716 |
-
#: ../includes/class-ure-lib.php:
|
717 |
msgid "Edit published pages"
|
718 |
msgstr "Veröffentlichte Seiten bearbeiten"
|
719 |
|
720 |
# @ ure
|
721 |
-
#: ../includes/class-ure-lib.php:
|
722 |
msgid "Publish pages"
|
723 |
msgstr "Seiten veröffentlichen"
|
724 |
|
725 |
# @ ure
|
726 |
-
#: ../includes/class-ure-lib.php:
|
727 |
msgid "Delete pages"
|
728 |
msgstr "Seiten löschen"
|
729 |
|
730 |
# @ ure
|
731 |
-
#: ../includes/class-ure-lib.php:
|
732 |
msgid "Delete others pages"
|
733 |
msgstr "Seiten anderer Benutzer löschen"
|
734 |
|
735 |
# @ ure
|
736 |
-
#: ../includes/class-ure-lib.php:
|
737 |
msgid "Delete published pages"
|
738 |
msgstr "Veröffentlichte Seiten löschen"
|
739 |
|
740 |
# @ ure
|
741 |
-
#: ../includes/class-ure-lib.php:
|
742 |
msgid "Delete posts"
|
743 |
msgstr "Artikel löschen"
|
744 |
|
745 |
# @ ure
|
746 |
-
#: ../includes/class-ure-lib.php:
|
747 |
msgid "Delete others posts"
|
748 |
msgstr "Artikel anderer Benutzer löschen"
|
749 |
|
750 |
# @ ure
|
751 |
-
#: ../includes/class-ure-lib.php:
|
752 |
msgid "Delete published posts"
|
753 |
msgstr "Veröffentlichte Artikel löschen"
|
754 |
|
755 |
# @ ure
|
756 |
-
#: ../includes/class-ure-lib.php:
|
757 |
msgid "Delete private posts"
|
758 |
msgstr "Private Artikel löschen"
|
759 |
|
760 |
# @ ure
|
761 |
-
#: ../includes/class-ure-lib.php:
|
762 |
msgid "Edit private posts"
|
763 |
msgstr "Private Artikel bearbeiten"
|
764 |
|
765 |
# @ ure
|
766 |
-
#: ../includes/class-ure-lib.php:
|
767 |
msgid "Read private posts"
|
768 |
msgstr "Private Artikel lesen"
|
769 |
|
770 |
# @ ure
|
771 |
-
#: ../includes/class-ure-lib.php:
|
772 |
msgid "Delete private pages"
|
773 |
msgstr "Private Artikel löschen"
|
774 |
|
775 |
# @ ure
|
776 |
-
#: ../includes/class-ure-lib.php:
|
777 |
msgid "Edit private pages"
|
778 |
msgstr "Private Seiten bearbeiten"
|
779 |
|
780 |
# @ ure
|
781 |
-
#: ../includes/class-ure-lib.php:
|
782 |
msgid "Read private pages"
|
783 |
msgstr "Private Seiten lesen"
|
784 |
|
785 |
# @ ure
|
786 |
-
#: ../includes/class-ure-lib.php:
|
787 |
msgid "Delete users"
|
788 |
msgstr "Benutzer löschen"
|
789 |
|
790 |
# @ ure
|
791 |
-
#: ../includes/class-ure-lib.php:
|
792 |
msgid "Create users"
|
793 |
msgstr "Benutzer erstellen"
|
794 |
|
795 |
# @ ure
|
796 |
-
#: ../includes/class-ure-lib.php:
|
797 |
msgid "Unfiltered upload"
|
798 |
msgstr "Ungefiltertes Hochladen"
|
799 |
|
800 |
# @ ure
|
801 |
-
#: ../includes/class-ure-lib.php:
|
802 |
msgid "Edit dashboard"
|
803 |
msgstr "Dashboard bearbeiten"
|
804 |
|
805 |
# @ ure
|
806 |
-
#: ../includes/class-ure-lib.php:
|
807 |
msgid "Update plugins"
|
808 |
msgstr "Plugins aktualisieren"
|
809 |
|
810 |
# @ ure
|
811 |
-
#: ../includes/class-ure-lib.php:
|
812 |
msgid "Delete plugins"
|
813 |
msgstr "Plugins löschen"
|
814 |
|
815 |
# @ ure
|
816 |
-
#: ../includes/class-ure-lib.php:
|
817 |
msgid "Install plugins"
|
818 |
msgstr "Plugins installieren"
|
819 |
|
820 |
# @ ure
|
821 |
-
#: ../includes/class-ure-lib.php:
|
822 |
msgid "Update themes"
|
823 |
msgstr "Designs aktualisieren"
|
824 |
|
825 |
# @ ure
|
826 |
-
#: ../includes/class-ure-lib.php:
|
827 |
msgid "Install themes"
|
828 |
msgstr "Designs installieren"
|
829 |
|
830 |
# @ ure
|
831 |
-
#: ../includes/class-ure-lib.php:
|
832 |
msgid "Update core"
|
833 |
msgstr "Wordpress aktualisieren"
|
834 |
|
835 |
# @ ure
|
836 |
-
#: ../includes/class-ure-lib.php:
|
837 |
msgid "List users"
|
838 |
msgstr "Benutzer auflisten"
|
839 |
|
840 |
# @ ure
|
841 |
-
#: ../includes/class-ure-lib.php:
|
842 |
msgid "Remove users"
|
843 |
msgstr "Benutzer entfernen"
|
844 |
|
845 |
# @ ure
|
846 |
-
#: ../includes/class-ure-lib.php:
|
847 |
msgid "Add users"
|
848 |
msgstr "Benutzer hinzufügen"
|
849 |
|
850 |
# @ ure
|
851 |
-
#: ../includes/class-ure-lib.php:
|
852 |
msgid "Promote users"
|
853 |
msgstr "Benutzer vorschlagen"
|
854 |
|
855 |
# @ ure
|
856 |
-
#: ../includes/class-ure-lib.php:
|
857 |
msgid "Edit theme options"
|
858 |
msgstr "Design-Eigenschaften bearbeiten"
|
859 |
|
860 |
# @ ure
|
861 |
-
#: ../includes/class-ure-lib.php:
|
862 |
msgid "Delete themes"
|
863 |
msgstr "Designs löschen"
|
864 |
|
865 |
# @ ure
|
866 |
-
#: ../includes/class-ure-lib.php:
|
867 |
msgid "Export"
|
868 |
msgstr "Export"
|
869 |
|
870 |
# @ ure
|
871 |
-
#: ../includes/class-ure-lib.php:
|
872 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
873 |
msgstr "Fehler: Der Name des Rechts darf nur Buchstaben und Ziffern enthalten!"
|
874 |
|
875 |
# @ ure
|
876 |
-
#: ../includes/class-ure-lib.php:
|
877 |
#, php-format
|
878 |
msgid "Capability %s is added successfully"
|
879 |
msgstr "Recht %s wurde erfolgreich hinzugefügt"
|
880 |
|
881 |
-
#: ../includes/class-ure-lib.php:
|
882 |
#, php-format
|
883 |
msgid "Capability %s exists already"
|
884 |
msgstr "Recht %s existiert bereits"
|
885 |
|
886 |
-
#: ../includes/class-ure-lib.php:
|
887 |
#, php-format
|
888 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
889 |
msgstr "Fehler: Sie haben nicht die Erlaubnis, dieses Recht zu löschen: %s!"
|
890 |
|
891 |
# @ ure
|
892 |
-
#: ../includes/class-ure-lib.php:
|
893 |
-
#, php-format
|
894 |
-
msgid "Capability %s
|
895 |
msgstr "Das Recht %s wurde erfogreich entfernt"
|
896 |
|
897 |
-
#: ../includes/class-ure-lib.php:
|
898 |
msgid "Version:"
|
899 |
msgstr ""
|
900 |
|
901 |
# @ ure
|
902 |
-
#: ../includes/class-ure-lib.php:
|
903 |
msgid "Author's website"
|
904 |
msgstr "Webseite des Autors"
|
905 |
|
906 |
# @ ure
|
907 |
-
#: ../includes/class-ure-lib.php:
|
908 |
msgid "Plugin webpage"
|
909 |
msgstr "Webseite des Plugins"
|
910 |
|
911 |
# @ ure
|
912 |
-
#: ../includes/class-ure-lib.php:
|
913 |
#, fuzzy
|
914 |
msgid "Plugin download"
|
915 |
msgstr "Webseite des Plugins"
|
916 |
|
917 |
# @ ure
|
918 |
-
#: ../includes/class-ure-lib.php:
|
919 |
-
|
920 |
-
|
|
|
921 |
|
922 |
# @ ure
|
923 |
-
#: ../includes/class-ure-lib.php:
|
924 |
-
msgid "
|
925 |
-
msgstr "
|
926 |
|
927 |
# @ ure
|
928 |
-
#: ../includes/class-ure-lib.php:
|
929 |
#, fuzzy
|
930 |
msgid "Delete All Unused Roles"
|
931 |
msgstr "Löschen der Benutzer-Rolle"
|
932 |
|
933 |
-
|
|
|
|
|
|
|
|
|
|
|
934 |
msgid "— No role for this site —"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: ../includes/ure-
|
938 |
-
|
|
|
939 |
msgstr ""
|
940 |
|
941 |
-
|
942 |
-
|
943 |
-
|
|
|
|
|
944 |
|
945 |
-
|
946 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: ../includes/ure-user-edit.php:
|
950 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
951 |
msgstr ""
|
952 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
953 |
# @ ure
|
954 |
-
#: ../includes/
|
955 |
#, fuzzy
|
956 |
-
msgid "
|
957 |
-
msgstr "
|
958 |
|
959 |
# @ ure
|
960 |
#: ../includes/class-ure-screen-help.php:12
|
@@ -965,6 +699,11 @@ msgstr "Löschen der Rolle"
|
|
965 |
msgid "User Role Editor Options page help"
|
966 |
msgstr "User Role Editor"
|
967 |
|
|
|
|
|
|
|
|
|
|
|
968 |
#: ../includes/class-ure-screen-help.php:16
|
969 |
msgid ""
|
970 |
"turn this option on in order to make the \"Administrator\" role available at "
|
@@ -972,6 +711,13 @@ msgid ""
|
|
972 |
"for security reasons."
|
973 |
msgstr ""
|
974 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
975 |
#: ../includes/class-ure-screen-help.php:19
|
976 |
msgid ""
|
977 |
"automatically converts capability names from the technical form for internal "
|
@@ -987,6 +733,12 @@ msgid ""
|
|
987 |
"deprecated capabilities."
|
988 |
msgstr ""
|
989 |
|
|
|
|
|
|
|
|
|
|
|
|
|
990 |
#: ../includes/class-ure-screen-help.php:26
|
991 |
msgid ""
|
992 |
"If turned off - capabilities section of selected user is shown in readonly "
|
@@ -994,6 +746,11 @@ msgid ""
|
|
994 |
"should make it using roles only."
|
995 |
msgstr ""
|
996 |
|
|
|
|
|
|
|
|
|
|
|
997 |
#: ../includes/class-ure-screen-help.php:46
|
998 |
msgid ""
|
999 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
@@ -1026,6 +783,274 @@ msgid ""
|
|
1026 |
"limitation."
|
1027 |
msgstr ""
|
1028 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1029 |
# @ ure
|
1030 |
#, fuzzy
|
1031 |
#~ msgid "User Role Editor requires PHP %s or newer."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v. 3.7.5\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-11 21:06+0100\n"
|
6 |
+
"PO-Revision-Date: 2015-09-11 21:10+0100\n"
|
7 |
+
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: Peter Becker-Heidmann <peter@becker-heidmann.de>\n"
|
9 |
"Language: de_DE\n"
|
10 |
"MIME-Version: 1.0\n"
|
19 |
"X-Generator: Poedit 1.5.4\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
+
#: ../includes/class-ure-lib.php:247
|
23 |
+
msgid "Error: wrong request"
|
24 |
+
msgstr ""
|
|
|
|
|
25 |
|
26 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
27 |
+
msgid "Role name (ID): "
|
|
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
|
31 |
+
msgid "Display Role Name: "
|
|
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: ../includes/class-ure-lib.php:284
|
35 |
+
msgid "Make copy of: "
|
36 |
+
msgstr "Erstelle Kopie von:"
|
37 |
+
|
38 |
# @ ure
|
39 |
+
#: ../includes/class-ure-lib.php:300
|
40 |
+
msgid "Select Role:"
|
41 |
+
msgstr "Eine Rolle auswählen:"
|
42 |
+
|
43 |
+
# @ ure
|
44 |
+
#: ../includes/class-ure-lib.php:315
|
45 |
#, fuzzy
|
46 |
+
msgid "Delete:"
|
47 |
+
msgstr "Löschen"
|
48 |
|
49 |
+
#: ../includes/class-ure-lib.php:322
|
50 |
+
msgid "Capability name (ID): "
|
|
|
51 |
msgstr ""
|
52 |
|
53 |
+
# @ ure
|
54 |
+
#: ../includes/class-ure-lib.php:339
|
55 |
+
#: ../includes/class-user-role-editor.php:596
|
56 |
+
#: ../includes/class-user-role-editor.php:625
|
57 |
+
msgid "User Role Editor"
|
58 |
+
msgstr "User Role Editor"
|
59 |
|
60 |
+
#: ../includes/class-ure-lib.php:436
|
61 |
+
msgid "Error: "
|
62 |
+
msgstr "Fehler:"
|
|
|
63 |
|
64 |
# @ ure
|
65 |
+
#: ../includes/class-ure-lib.php:436
|
66 |
+
msgid "Role"
|
67 |
+
msgstr "Rolle"
|
|
|
|
|
68 |
|
69 |
+
#: ../includes/class-ure-lib.php:437
|
70 |
+
msgid "does not exist"
|
71 |
+
msgstr "existiert nicht"
|
|
|
72 |
|
73 |
+
# @ ure
|
74 |
+
#: ../includes/class-ure-lib.php:480
|
75 |
#, fuzzy
|
76 |
+
msgid "Role is updated successfully"
|
77 |
+
msgstr "wurde erfolgreich aktualisiert"
|
78 |
|
79 |
+
#: ../includes/class-ure-lib.php:482
|
80 |
+
msgid "Roles are updated for all network"
|
|
|
81 |
msgstr ""
|
82 |
|
83 |
+
# @ ure
|
84 |
+
#: ../includes/class-ure-lib.php:488
|
85 |
+
#, fuzzy
|
86 |
+
msgid "Error occured during role(s) update"
|
87 |
+
msgstr "Ein Fehler ist während des Löschvorgangs der Rolle aufgetreten"
|
88 |
|
89 |
+
# @ ure
|
90 |
+
#: ../includes/class-ure-lib.php:495
|
91 |
+
#, fuzzy
|
92 |
+
msgid "User capabilities are updated successfully"
|
93 |
+
msgstr "Rechte wurden erfolgreich aktualisiert"
|
94 |
|
95 |
# @ ure
|
96 |
+
#: ../includes/class-ure-lib.php:500
|
97 |
#, fuzzy
|
98 |
+
msgid "Error occured during user update"
|
99 |
+
msgstr "Ein Fehler ist während des Löschvorgangs der Rolle aufgetreten"
|
100 |
|
101 |
+
# @ ure
|
102 |
+
#: ../includes/class-ure-lib.php:558
|
103 |
+
#, fuzzy
|
104 |
+
msgid "User Roles are restored to WordPress default values. "
|
105 |
+
msgstr "Rollenbefugnisse werden von der Sicherheitskopie wiederhergestellt."
|
|
|
106 |
|
107 |
+
#: ../includes/class-ure-lib.php:1436
|
108 |
+
msgid "read about"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: ../includes/class-ure-lib.php:1437
|
112 |
+
#, fuzzy
|
113 |
+
msgid "user capability"
|
114 |
+
msgstr "Entferne Benutzerrecht"
|
115 |
|
116 |
+
#: ../includes/class-ure-lib.php:1438
|
117 |
+
msgid "Help"
|
118 |
+
msgstr "Hilfe"
|
119 |
|
120 |
+
#: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
|
121 |
+
#: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
|
122 |
+
#: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
|
123 |
+
#: ../includes/class-user-role-editor.php:828
|
124 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
125 |
msgstr ""
|
126 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
# @ ure
|
128 |
+
#: ../includes/class-ure-lib.php:1909
|
129 |
+
msgid "Error is occur. Please check the log file."
|
130 |
+
msgstr "Ein Fehler ist aufgetreten. Bitte überprüfen Sie die Log-Datei."
|
131 |
|
132 |
# @ ure
|
133 |
+
#: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
|
134 |
+
#, fuzzy
|
135 |
+
msgid ""
|
136 |
+
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
137 |
+
"only!"
|
138 |
+
msgstr "Fehler: Der Rollen-Name darf nur Buchstaben und Ziffern enthalten!"
|
139 |
+
|
140 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
141 |
+
msgid ""
|
142 |
+
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
143 |
+
"characters to it."
|
144 |
+
msgstr ""
|
145 |
|
146 |
# @ ure
|
147 |
+
#: ../includes/class-ure-lib.php:1974
|
148 |
+
#, php-format
|
149 |
+
msgid "Role %s exists already"
|
150 |
+
msgstr "Rolle %s existiert bereits"
|
|
|
|
|
151 |
|
152 |
# @ ure
|
153 |
+
#: ../includes/class-ure-lib.php:1989
|
154 |
+
msgid "Error is encountered during new role create operation"
|
155 |
+
msgstr "Ein Fehler ist beim Erstellen der neuen Rolle aufgetreten"
|
|
|
|
|
|
|
156 |
|
157 |
# @ ure
|
158 |
+
#: ../includes/class-ure-lib.php:1991
|
159 |
+
#, php-format
|
160 |
+
msgid "Role %s is created successfully"
|
161 |
+
msgstr "Rolle %s wurde erfolgreich erstellt"
|
162 |
|
163 |
+
#: ../includes/class-ure-lib.php:2015
|
164 |
+
msgid "Error: Role ID is empty!"
|
|
|
|
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: ../includes/class-ure-lib.php:2033
|
168 |
+
msgid "Error: Empty role display name is not allowed."
|
|
|
|
|
|
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: ../includes/class-ure-lib.php:2040
|
172 |
+
#, fuzzy, php-format
|
173 |
+
msgid "Role %s does not exists"
|
174 |
+
msgstr "existiert nicht"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
|
176 |
# @ ure
|
177 |
+
#: ../includes/class-ure-lib.php:2048
|
178 |
+
#, fuzzy, php-format
|
179 |
+
msgid "Role %s is renamed to %s successfully"
|
180 |
+
msgstr "Rolle %s wurde erfolgreich erstellt"
|
181 |
|
182 |
# @ ure
|
183 |
+
#: ../includes/class-ure-lib.php:2121
|
184 |
+
msgid "Error encountered during role delete operation"
|
185 |
+
msgstr "Ein Fehler ist während des Löschvorgangs der Rolle aufgetreten"
|
|
|
186 |
|
187 |
# @ ure
|
188 |
+
#: ../includes/class-ure-lib.php:2123
|
189 |
+
#, fuzzy
|
190 |
+
msgid "Unused roles are deleted successfully"
|
191 |
+
msgstr "Rolle %s wurde erfolgreich gelöscht"
|
192 |
|
193 |
# @ ure
|
194 |
+
#: ../includes/class-ure-lib.php:2125
|
195 |
+
#, php-format
|
196 |
+
msgid "Role %s is deleted successfully"
|
197 |
+
msgstr "Rolle %s wurde erfolgreich gelöscht"
|
|
|
198 |
|
199 |
# @ ure
|
200 |
+
#: ../includes/class-ure-lib.php:2153
|
201 |
+
msgid "Error encountered during default role change operation"
|
202 |
+
msgstr "Ein Fehler ist während Änderung der Standard-Rolle aufgetreten"
|
|
|
203 |
|
204 |
# @ ure
|
205 |
+
#: ../includes/class-ure-lib.php:2156
|
206 |
+
#, php-format
|
207 |
+
msgid "Default role for new users is set to %s successfully"
|
208 |
+
msgstr "Standard-Rolle für neue Benutzer erfolgreich auf %s gesetzt"
|
|
|
|
|
209 |
|
210 |
+
#: ../includes/class-ure-lib.php:2159
|
211 |
+
msgid "Can not set Administrator role as a default one"
|
|
|
|
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../includes/class-ure-lib.php:2161
|
|
|
215 |
#, fuzzy
|
216 |
+
msgid "This role does not exist - "
|
217 |
+
msgstr "existiert nicht"
|
218 |
|
219 |
# @ ure
|
220 |
+
#: ../includes/class-ure-lib.php:2177
|
221 |
+
msgid "Editor"
|
222 |
+
msgstr "Redakteur"
|
223 |
|
224 |
# @ ure
|
225 |
+
#: ../includes/class-ure-lib.php:2178
|
226 |
+
msgid "Author"
|
227 |
+
msgstr "Autor"
|
228 |
|
229 |
# @ ure
|
230 |
+
#: ../includes/class-ure-lib.php:2179
|
231 |
+
msgid "Contributor"
|
232 |
+
msgstr "Mitarbeiter"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
|
234 |
# @ ure
|
235 |
+
#: ../includes/class-ure-lib.php:2180
|
236 |
+
msgid "Subscriber"
|
237 |
+
msgstr "Abonnent"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
|
239 |
# @ ure
|
240 |
+
#: ../includes/class-ure-lib.php:2182
|
241 |
+
msgid "Switch themes"
|
242 |
+
msgstr "Design auswählen"
|
|
|
243 |
|
244 |
# @ ure
|
245 |
+
#: ../includes/class-ure-lib.php:2183
|
246 |
+
msgid "Edit themes"
|
247 |
+
msgstr "Design bearbeiten"
|
|
|
248 |
|
249 |
# @ ure
|
250 |
+
#: ../includes/class-ure-lib.php:2184
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
msgid "Activate plugins"
|
252 |
msgstr "Plugins aktivieren"
|
253 |
|
254 |
# @ ure
|
255 |
+
#: ../includes/class-ure-lib.php:2185
|
256 |
msgid "Edit plugins"
|
257 |
msgstr "Plugins bearbeiten"
|
258 |
|
259 |
# @ ure
|
260 |
+
#: ../includes/class-ure-lib.php:2186
|
261 |
msgid "Edit users"
|
262 |
msgstr "Benutzer bearbeiten"
|
263 |
|
264 |
# @ ure
|
265 |
+
#: ../includes/class-ure-lib.php:2187
|
266 |
msgid "Edit files"
|
267 |
msgstr "Dateien bearbeiten"
|
268 |
|
269 |
# @ ure
|
270 |
+
#: ../includes/class-ure-lib.php:2188
|
271 |
msgid "Manage options"
|
272 |
msgstr "Eigenschaften verwalten"
|
273 |
|
274 |
# @ ure
|
275 |
+
#: ../includes/class-ure-lib.php:2189
|
276 |
msgid "Moderate comments"
|
277 |
msgstr "Kommentare moderieren"
|
278 |
|
279 |
# @ ure
|
280 |
+
#: ../includes/class-ure-lib.php:2190
|
281 |
msgid "Manage categories"
|
282 |
msgstr "Kategorien verwalten"
|
283 |
|
284 |
# @ ure
|
285 |
+
#: ../includes/class-ure-lib.php:2191
|
286 |
msgid "Manage links"
|
287 |
msgstr "Links verwalten"
|
288 |
|
289 |
# @ ure
|
290 |
+
#: ../includes/class-ure-lib.php:2192
|
291 |
msgid "Upload files"
|
292 |
msgstr "Dateien hochladen"
|
293 |
|
294 |
# @ ure
|
295 |
+
#: ../includes/class-ure-lib.php:2193
|
296 |
msgid "Import"
|
297 |
msgstr "Import"
|
298 |
|
299 |
# @ ure
|
300 |
+
#: ../includes/class-ure-lib.php:2194
|
301 |
msgid "Unfiltered html"
|
302 |
msgstr "Ungefiltertes Html"
|
303 |
|
304 |
# @ ure
|
305 |
+
#: ../includes/class-ure-lib.php:2195
|
306 |
msgid "Edit posts"
|
307 |
msgstr "Artikel verwalten"
|
308 |
|
309 |
# @ ure
|
310 |
+
#: ../includes/class-ure-lib.php:2196
|
311 |
msgid "Edit others posts"
|
312 |
msgstr "Artikel anderer Benutzer verwalten"
|
313 |
|
314 |
# @ ure
|
315 |
+
#: ../includes/class-ure-lib.php:2197
|
316 |
msgid "Edit published posts"
|
317 |
msgstr "Veröffentlichte Artikel bearbeiten"
|
318 |
|
319 |
# @ ure
|
320 |
+
#: ../includes/class-ure-lib.php:2198
|
321 |
msgid "Publish posts"
|
322 |
msgstr "Artikel veröffentlichen"
|
323 |
|
324 |
# @ ure
|
325 |
+
#: ../includes/class-ure-lib.php:2199
|
326 |
msgid "Edit pages"
|
327 |
msgstr "Seiten bearbeiten"
|
328 |
|
329 |
# @ ure
|
330 |
+
#: ../includes/class-ure-lib.php:2200
|
331 |
msgid "Read"
|
332 |
msgstr "Lesen"
|
333 |
|
334 |
# @ ure
|
335 |
+
#: ../includes/class-ure-lib.php:2201
|
336 |
msgid "Level 10"
|
337 |
msgstr ""
|
338 |
|
339 |
# @ ure
|
340 |
+
#: ../includes/class-ure-lib.php:2202
|
341 |
msgid "Level 9"
|
342 |
msgstr ""
|
343 |
|
344 |
# @ ure
|
345 |
+
#: ../includes/class-ure-lib.php:2203
|
346 |
msgid "Level 8"
|
347 |
msgstr ""
|
348 |
|
349 |
# @ ure
|
350 |
+
#: ../includes/class-ure-lib.php:2204
|
351 |
msgid "Level 7"
|
352 |
msgstr ""
|
353 |
|
354 |
# @ ure
|
355 |
+
#: ../includes/class-ure-lib.php:2205
|
356 |
msgid "Level 6"
|
357 |
msgstr ""
|
358 |
|
359 |
# @ ure
|
360 |
+
#: ../includes/class-ure-lib.php:2206
|
361 |
msgid "Level 5"
|
362 |
msgstr ""
|
363 |
|
364 |
# @ ure
|
365 |
+
#: ../includes/class-ure-lib.php:2207
|
366 |
msgid "Level 4"
|
367 |
msgstr ""
|
368 |
|
369 |
# @ ure
|
370 |
+
#: ../includes/class-ure-lib.php:2208
|
371 |
msgid "Level 3"
|
372 |
msgstr ""
|
373 |
|
374 |
# @ ure
|
375 |
+
#: ../includes/class-ure-lib.php:2209
|
376 |
msgid "Level 2"
|
377 |
msgstr ""
|
378 |
|
379 |
# @ ure
|
380 |
+
#: ../includes/class-ure-lib.php:2210
|
381 |
msgid "Level 1"
|
382 |
msgstr ""
|
383 |
|
384 |
# @ ure
|
385 |
+
#: ../includes/class-ure-lib.php:2211
|
386 |
msgid "Level 0"
|
387 |
msgstr ""
|
388 |
|
389 |
# @ ure
|
390 |
+
#: ../includes/class-ure-lib.php:2212
|
391 |
msgid "Edit others pages"
|
392 |
msgstr "Seiten anderer Benutzer bearbeiten"
|
393 |
|
394 |
# @ ure
|
395 |
+
#: ../includes/class-ure-lib.php:2213
|
396 |
msgid "Edit published pages"
|
397 |
msgstr "Veröffentlichte Seiten bearbeiten"
|
398 |
|
399 |
# @ ure
|
400 |
+
#: ../includes/class-ure-lib.php:2214
|
401 |
msgid "Publish pages"
|
402 |
msgstr "Seiten veröffentlichen"
|
403 |
|
404 |
# @ ure
|
405 |
+
#: ../includes/class-ure-lib.php:2215
|
406 |
msgid "Delete pages"
|
407 |
msgstr "Seiten löschen"
|
408 |
|
409 |
# @ ure
|
410 |
+
#: ../includes/class-ure-lib.php:2216
|
411 |
msgid "Delete others pages"
|
412 |
msgstr "Seiten anderer Benutzer löschen"
|
413 |
|
414 |
# @ ure
|
415 |
+
#: ../includes/class-ure-lib.php:2217
|
416 |
msgid "Delete published pages"
|
417 |
msgstr "Veröffentlichte Seiten löschen"
|
418 |
|
419 |
# @ ure
|
420 |
+
#: ../includes/class-ure-lib.php:2218
|
421 |
msgid "Delete posts"
|
422 |
msgstr "Artikel löschen"
|
423 |
|
424 |
# @ ure
|
425 |
+
#: ../includes/class-ure-lib.php:2219
|
426 |
msgid "Delete others posts"
|
427 |
msgstr "Artikel anderer Benutzer löschen"
|
428 |
|
429 |
# @ ure
|
430 |
+
#: ../includes/class-ure-lib.php:2220
|
431 |
msgid "Delete published posts"
|
432 |
msgstr "Veröffentlichte Artikel löschen"
|
433 |
|
434 |
# @ ure
|
435 |
+
#: ../includes/class-ure-lib.php:2221
|
436 |
msgid "Delete private posts"
|
437 |
msgstr "Private Artikel löschen"
|
438 |
|
439 |
# @ ure
|
440 |
+
#: ../includes/class-ure-lib.php:2222
|
441 |
msgid "Edit private posts"
|
442 |
msgstr "Private Artikel bearbeiten"
|
443 |
|
444 |
# @ ure
|
445 |
+
#: ../includes/class-ure-lib.php:2223
|
446 |
msgid "Read private posts"
|
447 |
msgstr "Private Artikel lesen"
|
448 |
|
449 |
# @ ure
|
450 |
+
#: ../includes/class-ure-lib.php:2224
|
451 |
msgid "Delete private pages"
|
452 |
msgstr "Private Artikel löschen"
|
453 |
|
454 |
# @ ure
|
455 |
+
#: ../includes/class-ure-lib.php:2225
|
456 |
msgid "Edit private pages"
|
457 |
msgstr "Private Seiten bearbeiten"
|
458 |
|
459 |
# @ ure
|
460 |
+
#: ../includes/class-ure-lib.php:2226
|
461 |
msgid "Read private pages"
|
462 |
msgstr "Private Seiten lesen"
|
463 |
|
464 |
# @ ure
|
465 |
+
#: ../includes/class-ure-lib.php:2227
|
466 |
msgid "Delete users"
|
467 |
msgstr "Benutzer löschen"
|
468 |
|
469 |
# @ ure
|
470 |
+
#: ../includes/class-ure-lib.php:2228
|
471 |
msgid "Create users"
|
472 |
msgstr "Benutzer erstellen"
|
473 |
|
474 |
# @ ure
|
475 |
+
#: ../includes/class-ure-lib.php:2229
|
476 |
msgid "Unfiltered upload"
|
477 |
msgstr "Ungefiltertes Hochladen"
|
478 |
|
479 |
# @ ure
|
480 |
+
#: ../includes/class-ure-lib.php:2230
|
481 |
msgid "Edit dashboard"
|
482 |
msgstr "Dashboard bearbeiten"
|
483 |
|
484 |
# @ ure
|
485 |
+
#: ../includes/class-ure-lib.php:2231
|
486 |
msgid "Update plugins"
|
487 |
msgstr "Plugins aktualisieren"
|
488 |
|
489 |
# @ ure
|
490 |
+
#: ../includes/class-ure-lib.php:2232
|
491 |
msgid "Delete plugins"
|
492 |
msgstr "Plugins löschen"
|
493 |
|
494 |
# @ ure
|
495 |
+
#: ../includes/class-ure-lib.php:2233
|
496 |
msgid "Install plugins"
|
497 |
msgstr "Plugins installieren"
|
498 |
|
499 |
# @ ure
|
500 |
+
#: ../includes/class-ure-lib.php:2234
|
501 |
msgid "Update themes"
|
502 |
msgstr "Designs aktualisieren"
|
503 |
|
504 |
# @ ure
|
505 |
+
#: ../includes/class-ure-lib.php:2235
|
506 |
msgid "Install themes"
|
507 |
msgstr "Designs installieren"
|
508 |
|
509 |
# @ ure
|
510 |
+
#: ../includes/class-ure-lib.php:2236
|
511 |
msgid "Update core"
|
512 |
msgstr "Wordpress aktualisieren"
|
513 |
|
514 |
# @ ure
|
515 |
+
#: ../includes/class-ure-lib.php:2237
|
516 |
msgid "List users"
|
517 |
msgstr "Benutzer auflisten"
|
518 |
|
519 |
# @ ure
|
520 |
+
#: ../includes/class-ure-lib.php:2238
|
521 |
msgid "Remove users"
|
522 |
msgstr "Benutzer entfernen"
|
523 |
|
524 |
# @ ure
|
525 |
+
#: ../includes/class-ure-lib.php:2239
|
526 |
msgid "Add users"
|
527 |
msgstr "Benutzer hinzufügen"
|
528 |
|
529 |
# @ ure
|
530 |
+
#: ../includes/class-ure-lib.php:2240
|
531 |
msgid "Promote users"
|
532 |
msgstr "Benutzer vorschlagen"
|
533 |
|
534 |
# @ ure
|
535 |
+
#: ../includes/class-ure-lib.php:2241
|
536 |
msgid "Edit theme options"
|
537 |
msgstr "Design-Eigenschaften bearbeiten"
|
538 |
|
539 |
# @ ure
|
540 |
+
#: ../includes/class-ure-lib.php:2242
|
541 |
msgid "Delete themes"
|
542 |
msgstr "Designs löschen"
|
543 |
|
544 |
# @ ure
|
545 |
+
#: ../includes/class-ure-lib.php:2243
|
546 |
msgid "Export"
|
547 |
msgstr "Export"
|
548 |
|
549 |
# @ ure
|
550 |
+
#: ../includes/class-ure-lib.php:2366
|
551 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
552 |
msgstr "Fehler: Der Name des Rechts darf nur Buchstaben und Ziffern enthalten!"
|
553 |
|
554 |
# @ ure
|
555 |
+
#: ../includes/class-ure-lib.php:2379
|
556 |
#, php-format
|
557 |
msgid "Capability %s is added successfully"
|
558 |
msgstr "Recht %s wurde erfolgreich hinzugefügt"
|
559 |
|
560 |
+
#: ../includes/class-ure-lib.php:2381
|
561 |
#, php-format
|
562 |
msgid "Capability %s exists already"
|
563 |
msgstr "Recht %s existiert bereits"
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:2410
|
566 |
#, php-format
|
567 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
568 |
msgstr "Fehler: Sie haben nicht die Erlaubnis, dieses Recht zu löschen: %s!"
|
569 |
|
570 |
# @ ure
|
571 |
+
#: ../includes/class-ure-lib.php:2429
|
572 |
+
#, fuzzy, php-format
|
573 |
+
msgid "Capability %s was removed successfully"
|
574 |
msgstr "Das Recht %s wurde erfogreich entfernt"
|
575 |
|
576 |
+
#: ../includes/class-ure-lib.php:2497
|
577 |
msgid "Version:"
|
578 |
msgstr ""
|
579 |
|
580 |
# @ ure
|
581 |
+
#: ../includes/class-ure-lib.php:2498
|
582 |
msgid "Author's website"
|
583 |
msgstr "Webseite des Autors"
|
584 |
|
585 |
# @ ure
|
586 |
+
#: ../includes/class-ure-lib.php:2499
|
587 |
msgid "Plugin webpage"
|
588 |
msgstr "Webseite des Plugins"
|
589 |
|
590 |
# @ ure
|
591 |
+
#: ../includes/class-ure-lib.php:2500
|
592 |
#, fuzzy
|
593 |
msgid "Plugin download"
|
594 |
msgstr "Webseite des Plugins"
|
595 |
|
596 |
# @ ure
|
597 |
+
#: ../includes/class-ure-lib.php:2501
|
598 |
+
#: ../includes/class-user-role-editor.php:546
|
599 |
+
msgid "Changelog"
|
600 |
+
msgstr "Änderungen"
|
601 |
|
602 |
# @ ure
|
603 |
+
#: ../includes/class-ure-lib.php:2502
|
604 |
+
msgid "FAQ"
|
605 |
+
msgstr "FAQ"
|
606 |
|
607 |
# @ ure
|
608 |
+
#: ../includes/class-ure-lib.php:2575
|
609 |
#, fuzzy
|
610 |
msgid "Delete All Unused Roles"
|
611 |
msgstr "Löschen der Benutzer-Rolle"
|
612 |
|
613 |
+
# @ ure
|
614 |
+
#: ../includes/class-ure-lib.php:2588
|
615 |
+
msgid "None"
|
616 |
+
msgstr "Nichts"
|
617 |
+
|
618 |
+
#: ../includes/class-ure-lib.php:2632
|
619 |
msgid "— No role for this site —"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: ../includes/class-ure-lib.php:2747
|
623 |
+
#, php-format
|
624 |
+
msgid "Denied: %s"
|
625 |
msgstr ""
|
626 |
|
627 |
+
# @ ure
|
628 |
+
#: ../includes/ure-role-edit.php:17
|
629 |
+
#, fuzzy
|
630 |
+
msgid "Select Role and change its capabilities:"
|
631 |
+
msgstr "Eine Rolle auswählen und ihre Rechte ändern"
|
632 |
|
633 |
+
# @ ure
|
634 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
635 |
+
msgid "Show capabilities in human readable form"
|
636 |
+
msgstr "Anzeige der Rechte in allgemeinverständlicher Form"
|
637 |
+
|
638 |
+
#: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
|
639 |
+
#: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
|
640 |
+
msgid "Show deprecated capabilities"
|
641 |
+
msgstr "Zeige herabgesetzte Rechte"
|
642 |
+
|
643 |
+
#: ../includes/ure-role-edit.php:44
|
644 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
645 |
+
msgstr "Fall aktiviert, wende die Aktion auf ALLE Webpräsenzen"
|
646 |
+
|
647 |
+
#: ../includes/ure-role-edit.php:56
|
648 |
+
msgid "Apply to All Sites"
|
649 |
+
msgstr "Wende auf alle Webpräsenzen an"
|
650 |
+
|
651 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
652 |
+
msgid "Core capabilities:"
|
653 |
+
msgstr "Rechte WordPress:"
|
654 |
+
|
655 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
656 |
+
msgid "Quick filter:"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
660 |
+
#, fuzzy
|
661 |
+
msgid "Custom capabilities:"
|
662 |
+
msgstr "Rechte:"
|
663 |
+
|
664 |
+
# @ ure
|
665 |
+
#: ../includes/class-user-other-roles.php:82
|
666 |
+
#: ../includes/class-user-other-roles.php:183
|
667 |
+
#: ../includes/class-user-other-roles.php:243
|
668 |
+
#, fuzzy
|
669 |
+
msgid "Other Roles"
|
670 |
+
msgstr "Löschen der Rolle"
|
671 |
+
|
672 |
+
#: ../includes/class-user-other-roles.php:83
|
673 |
+
msgid "Select additional roles for this user"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: ../includes/class-user-other-roles.php:162
|
677 |
+
#: ../includes/class-user-role-editor.php:438
|
678 |
+
msgid "Capabilities"
|
679 |
+
msgstr "Rechte"
|
680 |
+
|
681 |
+
# @ ure
|
682 |
+
#: ../includes/class-user-other-roles.php:169
|
683 |
+
#, fuzzy
|
684 |
+
msgid "Edit"
|
685 |
+
msgstr "Redakteur"
|
686 |
+
|
687 |
# @ ure
|
688 |
+
#: ../includes/class-user-other-roles.php:215
|
689 |
#, fuzzy
|
690 |
+
msgid "Additional Capabilities"
|
691 |
+
msgstr "Füge neues Recht hinzu"
|
692 |
|
693 |
# @ ure
|
694 |
#: ../includes/class-ure-screen-help.php:12
|
699 |
msgid "User Role Editor Options page help"
|
700 |
msgstr "User Role Editor"
|
701 |
|
702 |
+
#: ../includes/class-ure-screen-help.php:15
|
703 |
+
#: ../includes/settings-template.php:53
|
704 |
+
msgid "Show Administrator role at User Role Editor"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
#: ../includes/class-ure-screen-help.php:16
|
708 |
msgid ""
|
709 |
"turn this option on in order to make the \"Administrator\" role available at "
|
711 |
"for security reasons."
|
712 |
msgstr ""
|
713 |
|
714 |
+
# @ ure
|
715 |
+
#: ../includes/class-ure-screen-help.php:18
|
716 |
+
#: ../includes/settings-template.php:61
|
717 |
+
#, fuzzy
|
718 |
+
msgid "Show capabilities in the human readable form"
|
719 |
+
msgstr "Anzeige der Rechte in allgemeinverständlicher Form"
|
720 |
+
|
721 |
#: ../includes/class-ure-screen-help.php:19
|
722 |
msgid ""
|
723 |
"automatically converts capability names from the technical form for internal "
|
733 |
"deprecated capabilities."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: ../includes/class-ure-screen-help.php:25
|
737 |
+
#: ../includes/settings-template.php:77
|
738 |
+
#, fuzzy
|
739 |
+
msgid "Edit user capabilities"
|
740 |
+
msgstr "Rechte:"
|
741 |
+
|
742 |
#: ../includes/class-ure-screen-help.php:26
|
743 |
msgid ""
|
744 |
"If turned off - capabilities section of selected user is shown in readonly "
|
746 |
"should make it using roles only."
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: ../includes/class-ure-screen-help.php:45
|
750 |
+
#: ../includes/settings-template.php:111
|
751 |
+
msgid "Count users without role"
|
752 |
+
msgstr ""
|
753 |
+
|
754 |
#: ../includes/class-ure-screen-help.php:46
|
755 |
msgid ""
|
756 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
783 |
"limitation."
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: ../includes/class-user-role-editor.php:233
|
787 |
+
msgid "Change role for users without role"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: ../includes/class-user-role-editor.php:234
|
791 |
+
msgid "No rights"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: ../includes/class-user-role-editor.php:235
|
795 |
+
msgid "Provide new role"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: ../includes/class-user-role-editor.php:298
|
799 |
+
#: ../includes/class-user-role-editor.php:300
|
800 |
+
#, fuzzy
|
801 |
+
msgid "You do not have permission to edit this user."
|
802 |
+
msgstr "Fehler: Sie haben nicht die Erlaubnis, dieses Recht zu löschen: %s!"
|
803 |
+
|
804 |
+
# @ ure
|
805 |
+
#: ../includes/class-user-role-editor.php:535
|
806 |
+
msgid "Settings"
|
807 |
+
msgstr "Einstellungen"
|
808 |
+
|
809 |
+
#: ../includes/class-user-role-editor.php:568
|
810 |
+
#: ../includes/settings-template.php:21
|
811 |
+
msgid "General"
|
812 |
+
msgstr ""
|
813 |
+
|
814 |
+
#: ../includes/class-user-role-editor.php:574
|
815 |
+
#: ../includes/settings-template.php:26
|
816 |
+
msgid "Additional Modules"
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
# @ ure
|
820 |
+
#: ../includes/class-user-role-editor.php:580
|
821 |
+
#: ../includes/settings-template.php:30
|
822 |
+
#, fuzzy
|
823 |
+
msgid "Default Roles"
|
824 |
+
msgstr "Löschen der Rolle"
|
825 |
+
|
826 |
+
#: ../includes/class-user-role-editor.php:586
|
827 |
+
#: ../includes/settings-template.php:34
|
828 |
+
msgid "Multisite"
|
829 |
+
msgstr ""
|
830 |
+
|
831 |
+
# @ ure
|
832 |
+
#: ../includes/class-user-role-editor.php:685
|
833 |
+
#: ../includes/class-user-role-editor.php:703
|
834 |
+
#: ../includes/class-user-role-editor.php:747
|
835 |
+
#, fuzzy
|
836 |
+
msgid "User Role Editor options are updated"
|
837 |
+
msgstr "User Role Editor"
|
838 |
+
|
839 |
+
# @ ure
|
840 |
+
#: ../includes/class-user-role-editor.php:731
|
841 |
+
#, fuzzy
|
842 |
+
msgid "Default Roles are updated"
|
843 |
+
msgstr "Standard-Rolle für neuen Benutzer"
|
844 |
+
|
845 |
+
#: ../includes/class-user-role-editor.php:756
|
846 |
+
msgid ""
|
847 |
+
"You do not have sufficient permissions to manage options for User Role "
|
848 |
+
"Editor."
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
# @ ure
|
852 |
+
#: ../includes/class-user-role-editor.php:885
|
853 |
+
msgid "Select All"
|
854 |
+
msgstr "Wähle alle aus"
|
855 |
+
|
856 |
+
#: ../includes/class-user-role-editor.php:886
|
857 |
+
msgid "Unselect All"
|
858 |
+
msgstr "Wähle alle ab"
|
859 |
+
|
860 |
+
#: ../includes/class-user-role-editor.php:887
|
861 |
+
msgid "Reverse"
|
862 |
+
msgstr "Rückgängig"
|
863 |
+
|
864 |
+
# @ ure
|
865 |
+
#: ../includes/class-user-role-editor.php:888
|
866 |
+
msgid "Update"
|
867 |
+
msgstr "Aktualisieren"
|
868 |
+
|
869 |
+
# @ ure
|
870 |
+
#: ../includes/class-user-role-editor.php:889
|
871 |
+
#, fuzzy
|
872 |
+
msgid "Please confirm permissions update"
|
873 |
+
msgstr "Bestätigen Sie bitte, um fortzufahren"
|
874 |
+
|
875 |
+
# @ ure
|
876 |
+
#: ../includes/class-user-role-editor.php:890
|
877 |
+
msgid "Add New Role"
|
878 |
+
msgstr "Neue Rolle hinzufügen"
|
879 |
+
|
880 |
+
# @ ure
|
881 |
+
#: ../includes/class-user-role-editor.php:891
|
882 |
+
#: ../includes/class-user-role-editor.php:896
|
883 |
+
#, fuzzy
|
884 |
+
msgid "Rename Role"
|
885 |
+
msgstr "Löschen der Rolle"
|
886 |
+
|
887 |
+
# @ ure
|
888 |
+
#: ../includes/class-user-role-editor.php:892
|
889 |
+
#, fuzzy
|
890 |
+
msgid " Role name (ID) can not be empty!"
|
891 |
+
msgstr "Name darf nicht leer sein!"
|
892 |
+
|
893 |
+
# @ ure
|
894 |
+
#: ../includes/class-user-role-editor.php:893
|
895 |
+
#, fuzzy
|
896 |
+
msgid ""
|
897 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
898 |
+
"only!"
|
899 |
+
msgstr "Fehler: Der Rollen-Name darf nur Buchstaben und Ziffern enthalten!"
|
900 |
+
|
901 |
+
#: ../includes/class-user-role-editor.php:894
|
902 |
+
msgid ""
|
903 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
904 |
+
"it."
|
905 |
+
msgstr ""
|
906 |
+
|
907 |
+
# @ ure
|
908 |
+
#: ../includes/class-user-role-editor.php:895
|
909 |
+
#, fuzzy
|
910 |
+
msgid "Add Role"
|
911 |
+
msgstr "Neue Rolle hinzufügen"
|
912 |
+
|
913 |
+
# @ ure
|
914 |
+
#: ../includes/class-user-role-editor.php:897
|
915 |
+
msgid "Delete Role"
|
916 |
+
msgstr "Löschen der Rolle"
|
917 |
+
|
918 |
+
# @ ure
|
919 |
+
#: ../includes/class-user-role-editor.php:898
|
920 |
+
msgid "Cancel"
|
921 |
+
msgstr "Abbrechen"
|
922 |
+
|
923 |
+
# @ ure
|
924 |
+
#: ../includes/class-user-role-editor.php:899
|
925 |
+
#, fuzzy
|
926 |
+
msgid "Add Capability"
|
927 |
+
msgstr "Füge neues Recht hinzu"
|
928 |
+
|
929 |
+
#: ../includes/class-user-role-editor.php:900
|
930 |
+
#: ../includes/class-user-role-editor.php:909
|
931 |
+
#, fuzzy
|
932 |
+
msgid "Delete Capability"
|
933 |
+
msgstr "Entferne Recht"
|
934 |
+
|
935 |
+
# @ ure
|
936 |
+
#: ../includes/class-user-role-editor.php:901
|
937 |
+
msgid "Reset"
|
938 |
+
msgstr "Zurücksetzen"
|
939 |
+
|
940 |
+
#: ../includes/class-user-role-editor.php:902
|
941 |
+
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
942 |
+
msgstr ""
|
943 |
+
|
944 |
+
#: ../includes/class-user-role-editor.php:903
|
945 |
+
msgid ""
|
946 |
+
"If any plugins have changed capabilities in any way upon installation (such "
|
947 |
+
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
948 |
+
msgstr ""
|
949 |
+
|
950 |
+
#: ../includes/class-user-role-editor.php:904
|
951 |
+
msgid ""
|
952 |
+
"For more information on how to undo changes and restore plugin capabilities "
|
953 |
+
"go to"
|
954 |
+
msgstr ""
|
955 |
+
|
956 |
+
# @ ure
|
957 |
+
#: ../includes/class-user-role-editor.php:906
|
958 |
+
#, fuzzy
|
959 |
+
msgid "Continue?"
|
960 |
+
msgstr "Mitarbeiter"
|
961 |
+
|
962 |
+
# @ ure
|
963 |
+
#: ../includes/class-user-role-editor.php:907
|
964 |
+
#, fuzzy
|
965 |
+
msgid "Default Role"
|
966 |
+
msgstr "Löschen der Rolle"
|
967 |
+
|
968 |
+
# @ ure
|
969 |
+
#: ../includes/class-user-role-editor.php:908
|
970 |
+
#, fuzzy
|
971 |
+
msgid "Set New Default Role"
|
972 |
+
msgstr "Als Standard-Benutzer-Rolle setzen"
|
973 |
+
|
974 |
+
#: ../includes/class-user-role-editor.php:910
|
975 |
+
msgid ""
|
976 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
977 |
+
"or other custom code"
|
978 |
+
msgstr ""
|
979 |
+
"Achtung! Seien Sie vorsichtig - das Löschen kritischer Rechte könnte Plugin- "
|
980 |
+
"oder angepassten Code zerstören."
|
981 |
+
|
982 |
+
# @ ure
|
983 |
+
#: ../includes/class-user-role-editor.php:911
|
984 |
+
#, fuzzy
|
985 |
+
msgid " Capability name (ID) can not be empty!"
|
986 |
+
msgstr "Name darf nicht leer sein!"
|
987 |
+
|
988 |
+
# @ ure
|
989 |
+
#: ../includes/class-user-role-editor.php:912
|
990 |
+
#, fuzzy
|
991 |
+
msgid ""
|
992 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
993 |
+
"underscore only!"
|
994 |
+
msgstr "Fehler: Der Name des Rechts darf nur Buchstaben und Ziffern enthalten!"
|
995 |
+
|
996 |
+
# @ ure
|
997 |
+
#: ../includes/settings-template.php:17
|
998 |
+
#, fuzzy
|
999 |
+
msgid "User Role Editor - Options"
|
1000 |
+
msgstr "User Role Editor"
|
1001 |
+
|
1002 |
+
#: ../includes/settings-template.php:39
|
1003 |
+
msgid "About"
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
1007 |
+
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
1008 |
+
msgid "Save"
|
1009 |
+
msgstr ""
|
1010 |
+
|
1011 |
+
#: ../includes/settings-template.php:138
|
1012 |
+
msgid "Primary default role: "
|
1013 |
+
msgstr ""
|
1014 |
+
|
1015 |
+
# @ ure
|
1016 |
+
#: ../includes/settings-template.php:145
|
1017 |
+
#, fuzzy
|
1018 |
+
msgid "Other default roles for new registered user: "
|
1019 |
+
msgstr "Standard-Rolle für neuen Benutzer"
|
1020 |
+
|
1021 |
+
#: ../includes/settings-template.php:151
|
1022 |
+
msgid ""
|
1023 |
+
"Note for multisite environment: take into account that other default roles "
|
1024 |
+
"should exist at the site, in order to be assigned to the new registered "
|
1025 |
+
"users."
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: ../includes/settings-template.php:177
|
1029 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: ../includes/ure-user-edit.php:32
|
1033 |
+
msgid "Network Super Admin"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: ../includes/ure-user-edit.php:35
|
1037 |
+
msgid "Change capabilities for user"
|
1038 |
+
msgstr "Ändere Rechte für Benutzer"
|
1039 |
+
|
1040 |
+
#: ../includes/ure-user-edit.php:72
|
1041 |
+
msgid "Primary Role:"
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: ../includes/ure-user-edit.php:82
|
1045 |
+
msgid "bbPress Role:"
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
# @ ure
|
1049 |
+
#: ../includes/ure-user-edit.php:92
|
1050 |
+
#, fuzzy
|
1051 |
+
msgid "Other Roles:"
|
1052 |
+
msgstr "Löschen der Rolle"
|
1053 |
+
|
1054 |
# @ ure
|
1055 |
#, fuzzy
|
1056 |
#~ msgid "User Role Editor requires PHP %s or newer."
|
lang/user-role-editor-es_ES.mo
ADDED
Binary file
|
lang/{ure-es_ES.po → user-role-editor-es_ES.po}
RENAMED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
"Language: es_ES\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -16,392 +16,102 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../includes/
|
20 |
-
#, fuzzy
|
21 |
-
msgid "User Role Editor - Options"
|
22 |
-
msgstr "Editor de Roles"
|
23 |
-
|
24 |
-
#: ../includes/settings-template.php:21
|
25 |
-
#: ../includes/class-user-role-editor.php:591
|
26 |
-
msgid "General"
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: ../includes/settings-template.php:26
|
30 |
-
#: ../includes/class-user-role-editor.php:597
|
31 |
-
msgid "Additional Modules"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: ../includes/settings-template.php:30
|
35 |
-
#: ../includes/class-user-role-editor.php:603
|
36 |
-
#, fuzzy
|
37 |
-
msgid "Default Roles"
|
38 |
-
msgstr "Rol Predeterminado"
|
39 |
-
|
40 |
-
#: ../includes/settings-template.php:34
|
41 |
-
#: ../includes/class-user-role-editor.php:609
|
42 |
-
msgid "Multisite"
|
43 |
-
msgstr ""
|
44 |
-
|
45 |
-
#: ../includes/settings-template.php:39
|
46 |
-
msgid "About"
|
47 |
-
msgstr ""
|
48 |
-
|
49 |
-
#: ../includes/settings-template.php:53
|
50 |
-
#: ../includes/class-ure-screen-help.php:15
|
51 |
-
msgid "Show Administrator role at User Role Editor"
|
52 |
-
msgstr ""
|
53 |
-
|
54 |
-
#: ../includes/settings-template.php:61
|
55 |
-
#: ../includes/class-ure-screen-help.php:18
|
56 |
-
#, fuzzy
|
57 |
-
msgid "Show capabilities in the human readable form"
|
58 |
-
msgstr "Mostrar Capacidades de forma legible"
|
59 |
-
|
60 |
-
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
61 |
-
#: ../includes/ure-user-edit.php:64 ../includes/class-ure-screen-help.php:21
|
62 |
-
msgid "Show deprecated capabilities"
|
63 |
-
msgstr "Mostrar Capacidades obsoletas"
|
64 |
-
|
65 |
-
#: ../includes/settings-template.php:77
|
66 |
-
#: ../includes/class-ure-screen-help.php:25
|
67 |
-
#, fuzzy
|
68 |
-
msgid "Edit user capabilities"
|
69 |
-
msgstr "Capacidades personalizadas:"
|
70 |
-
|
71 |
-
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
72 |
-
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
73 |
-
msgid "Save"
|
74 |
-
msgstr "Guardar"
|
75 |
-
|
76 |
-
#: ../includes/settings-template.php:111
|
77 |
-
#: ../includes/class-ure-screen-help.php:45
|
78 |
-
msgid "Count users without role"
|
79 |
-
msgstr ""
|
80 |
-
|
81 |
-
#: ../includes/settings-template.php:138
|
82 |
-
#, fuzzy
|
83 |
-
msgid "Primary default role: "
|
84 |
-
msgstr "Rol Primario:"
|
85 |
-
|
86 |
-
#: ../includes/settings-template.php:145
|
87 |
-
msgid "Other default roles for new registered user: "
|
88 |
-
msgstr ""
|
89 |
-
|
90 |
-
#: ../includes/settings-template.php:151
|
91 |
-
msgid ""
|
92 |
-
"Note for multisite environment: take into account that other default roles "
|
93 |
-
"should exist at the site, in order to be assigned to the new registered "
|
94 |
-
"users."
|
95 |
-
msgstr ""
|
96 |
-
|
97 |
-
#: ../includes/settings-template.php:177
|
98 |
-
msgid "Allow non super administrators to create, edit, and delete users"
|
99 |
-
msgstr ""
|
100 |
-
|
101 |
-
#: ../includes/class-user-role-editor.php:234
|
102 |
-
msgid "Change role for users without role"
|
103 |
-
msgstr ""
|
104 |
-
|
105 |
-
#: ../includes/class-user-role-editor.php:235
|
106 |
-
msgid "No rights"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: ../includes/class-user-role-editor.php:236
|
110 |
-
msgid "Provide new role"
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: ../includes/class-user-role-editor.php:320
|
114 |
-
#: ../includes/class-user-role-editor.php:322
|
115 |
-
msgid "You do not have permission to edit this user."
|
116 |
-
msgstr "No tienes los suficientes permisos para editar este usuario"
|
117 |
-
|
118 |
-
#: ../includes/class-user-role-editor.php:460
|
119 |
-
msgid "Capabilities"
|
120 |
-
msgstr "Capacidades"
|
121 |
-
|
122 |
-
#: ../includes/class-user-role-editor.php:558
|
123 |
-
msgid "Settings"
|
124 |
-
msgstr "Configuración"
|
125 |
-
|
126 |
-
#: ../includes/class-user-role-editor.php:569
|
127 |
-
#: ../includes/class-ure-lib.php:2540
|
128 |
-
msgid "Changelog"
|
129 |
-
msgstr "Registro de cambios"
|
130 |
-
|
131 |
-
#: ../includes/class-user-role-editor.php:619
|
132 |
-
#: ../includes/class-user-role-editor.php:648
|
133 |
-
#: ../includes/class-user-role-editor.php:1030
|
134 |
-
#: ../includes/class-ure-lib.php:337
|
135 |
-
msgid "User Role Editor"
|
136 |
-
msgstr "Editor de Roles"
|
137 |
-
|
138 |
-
#: ../includes/class-user-role-editor.php:708
|
139 |
-
#: ../includes/class-user-role-editor.php:726
|
140 |
-
#: ../includes/class-user-role-editor.php:770
|
141 |
-
msgid "User Role Editor options are updated"
|
142 |
-
msgstr "Opciones actualizadas"
|
143 |
-
|
144 |
-
#: ../includes/class-user-role-editor.php:754
|
145 |
-
#, fuzzy
|
146 |
-
msgid "Default Roles are updated"
|
147 |
-
msgstr "Rol Predeterminado"
|
148 |
-
|
149 |
-
#: ../includes/class-user-role-editor.php:779
|
150 |
-
msgid ""
|
151 |
-
"You do not have sufficient permissions to manage options for User Role "
|
152 |
-
"Editor."
|
153 |
-
msgstr "Permisos insuficientes para trabajar"
|
154 |
-
|
155 |
-
#: ../includes/class-user-role-editor.php:851
|
156 |
-
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
157 |
-
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
158 |
-
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
159 |
-
msgid "Insufficient permissions to work with User Role Editor"
|
160 |
-
msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
|
161 |
-
|
162 |
-
#: ../includes/class-user-role-editor.php:977
|
163 |
-
msgid "Select All"
|
164 |
-
msgstr "Seleccionar todo"
|
165 |
-
|
166 |
-
#: ../includes/class-user-role-editor.php:978
|
167 |
-
msgid "Unselect All"
|
168 |
-
msgstr "Deseleccionar todo"
|
169 |
-
|
170 |
-
#: ../includes/class-user-role-editor.php:979
|
171 |
-
msgid "Reverse"
|
172 |
-
msgstr "Revertir"
|
173 |
-
|
174 |
-
#: ../includes/class-user-role-editor.php:980
|
175 |
-
msgid "Update"
|
176 |
-
msgstr "Actualizar"
|
177 |
-
|
178 |
-
#: ../includes/class-user-role-editor.php:981
|
179 |
-
msgid "Please confirm permissions update"
|
180 |
-
msgstr "Por favor confirma las actualizaciones de permisos"
|
181 |
-
|
182 |
-
#: ../includes/class-user-role-editor.php:982
|
183 |
-
msgid "Add New Role"
|
184 |
-
msgstr "Agregar nuevo Rol"
|
185 |
-
|
186 |
-
#: ../includes/class-user-role-editor.php:983
|
187 |
-
#: ../includes/class-user-role-editor.php:988
|
188 |
-
#, fuzzy
|
189 |
-
msgid "Rename Role"
|
190 |
-
msgstr "Eliminar Rol"
|
191 |
-
|
192 |
-
#: ../includes/class-user-role-editor.php:984
|
193 |
-
msgid " Role name (ID) can not be empty!"
|
194 |
-
msgstr "¡El nombre del Rol (ID) no puede estar vacío!"
|
195 |
-
|
196 |
-
#: ../includes/class-user-role-editor.php:985
|
197 |
-
msgid ""
|
198 |
-
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
199 |
-
"only!"
|
200 |
-
msgstr ""
|
201 |
-
"¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
|
202 |
-
"altos o bajos!"
|
203 |
-
|
204 |
-
#: ../includes/class-user-role-editor.php:986
|
205 |
-
msgid ""
|
206 |
-
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
207 |
-
"it."
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#: ../includes/class-user-role-editor.php:987
|
211 |
-
msgid "Add Role"
|
212 |
-
msgstr "Agregar Rol"
|
213 |
-
|
214 |
-
#: ../includes/class-user-role-editor.php:989
|
215 |
-
msgid "Delete Role"
|
216 |
-
msgstr "Eliminar Rol"
|
217 |
-
|
218 |
-
#: ../includes/class-user-role-editor.php:990
|
219 |
-
msgid "Cancel"
|
220 |
-
msgstr "Cancelar"
|
221 |
-
|
222 |
-
#: ../includes/class-user-role-editor.php:991
|
223 |
-
msgid "Add Capability"
|
224 |
-
msgstr "Agregar Capacidad"
|
225 |
-
|
226 |
-
#: ../includes/class-user-role-editor.php:992
|
227 |
-
#: ../includes/class-user-role-editor.php:1001
|
228 |
-
msgid "Delete Capability"
|
229 |
-
msgstr "Eliminar Capacidades"
|
230 |
-
|
231 |
-
#: ../includes/class-user-role-editor.php:993
|
232 |
-
msgid "Reset"
|
233 |
-
msgstr "Reiniciar"
|
234 |
-
|
235 |
-
#: ../includes/class-user-role-editor.php:994
|
236 |
-
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
237 |
-
msgstr ""
|
238 |
-
|
239 |
-
#: ../includes/class-user-role-editor.php:995
|
240 |
-
msgid ""
|
241 |
-
"If any plugins have changed capabilities in any way upon installation (such "
|
242 |
-
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
243 |
-
msgstr ""
|
244 |
-
|
245 |
-
#: ../includes/class-user-role-editor.php:996
|
246 |
-
msgid ""
|
247 |
-
"For more information on how to undo changes and restore plugin capabilities "
|
248 |
-
"go to"
|
249 |
-
msgstr ""
|
250 |
-
|
251 |
-
#: ../includes/class-user-role-editor.php:998
|
252 |
-
msgid "Continue?"
|
253 |
-
msgstr ""
|
254 |
-
|
255 |
-
#: ../includes/class-user-role-editor.php:999
|
256 |
-
msgid "Default Role"
|
257 |
-
msgstr "Rol Predeterminado"
|
258 |
-
|
259 |
-
#: ../includes/class-user-role-editor.php:1000
|
260 |
-
msgid "Set New Default Role"
|
261 |
-
msgstr "Establecer nuevo Rol"
|
262 |
-
|
263 |
-
#: ../includes/class-user-role-editor.php:1002
|
264 |
-
msgid ""
|
265 |
-
"Warning! Be careful - removing critical capability could crash some plugin "
|
266 |
-
"or other custom code"
|
267 |
-
msgstr ""
|
268 |
-
"¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
|
269 |
-
"algún plugin o código personalizado"
|
270 |
-
|
271 |
-
#: ../includes/class-user-role-editor.php:1003
|
272 |
-
msgid " Capability name (ID) can not be empty!"
|
273 |
-
msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
|
274 |
-
|
275 |
-
#: ../includes/class-user-role-editor.php:1004
|
276 |
-
msgid ""
|
277 |
-
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
278 |
-
"underscore only!"
|
279 |
-
msgstr ""
|
280 |
-
"¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
|
281 |
-
"guiones altos o bajos!"
|
282 |
-
|
283 |
-
#: ../includes/class-user-role-editor.php:1033
|
284 |
-
#: ../includes/class-user-role-editor.php:1066
|
285 |
-
msgid "Other Roles"
|
286 |
-
msgstr "Otros Roles"
|
287 |
-
|
288 |
-
#: ../includes/class-user-role-editor.php:1047
|
289 |
-
msgid "Edit"
|
290 |
-
msgstr "Editar"
|
291 |
-
|
292 |
-
#: ../includes/ure-role-edit.php:17
|
293 |
-
#, fuzzy
|
294 |
-
msgid "Select Role and change its capabilities:"
|
295 |
-
msgstr "Selecciona un rol y modifica su lista de Capacidades"
|
296 |
-
|
297 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
298 |
-
#, fuzzy
|
299 |
-
msgid "Show capabilities in human readable form"
|
300 |
-
msgstr "Mostrar Capacidades de forma legible"
|
301 |
-
|
302 |
-
#: ../includes/ure-role-edit.php:44
|
303 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
304 |
-
msgstr "Si está marcado, se aplicará la acción a TODOS los sitios de la Red"
|
305 |
-
|
306 |
-
#: ../includes/ure-role-edit.php:56
|
307 |
-
msgid "Apply to All Sites"
|
308 |
-
msgstr "Aplicar a todos los Sitios"
|
309 |
-
|
310 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
311 |
-
msgid "Core capabilities:"
|
312 |
-
msgstr "Capacidades del núcleo del sistema:"
|
313 |
-
|
314 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
315 |
-
msgid "Quick filter:"
|
316 |
-
msgstr "Filtro rápido:"
|
317 |
-
|
318 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
319 |
-
msgid "Custom capabilities:"
|
320 |
-
msgstr "Capacidades personalizadas:"
|
321 |
-
|
322 |
-
#: ../includes/class-ure-lib.php:245
|
323 |
msgid "Error: wrong request"
|
324 |
msgstr "Error: Petición inválida"
|
325 |
|
326 |
-
#: ../includes/class-ure-lib.php:
|
327 |
msgid "Role name (ID): "
|
328 |
msgstr "Nombre del Rol (ID):"
|
329 |
|
330 |
-
#: ../includes/class-ure-lib.php:
|
331 |
msgid "Display Role Name: "
|
332 |
msgstr "Mostrar nombre del Rol:"
|
333 |
|
334 |
-
#: ../includes/class-ure-lib.php:
|
335 |
msgid "Make copy of: "
|
336 |
msgstr "Hacer copia de:"
|
337 |
|
338 |
-
#: ../includes/class-ure-lib.php:
|
339 |
msgid "Select Role:"
|
340 |
msgstr "Seleccionar Rol:"
|
341 |
|
342 |
-
#: ../includes/class-ure-lib.php:
|
343 |
msgid "Delete:"
|
344 |
msgstr "Eliminar:"
|
345 |
|
346 |
-
#: ../includes/class-ure-lib.php:
|
347 |
msgid "Capability name (ID): "
|
348 |
msgstr "Nombre de la Capacidad (ID):"
|
349 |
|
350 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
351 |
msgid "Error: "
|
352 |
msgstr "Error:"
|
353 |
|
354 |
-
#: ../includes/class-ure-lib.php:
|
355 |
msgid "Role"
|
356 |
msgstr "Rol"
|
357 |
|
358 |
-
#: ../includes/class-ure-lib.php:
|
359 |
msgid "does not exist"
|
360 |
msgstr "no existe"
|
361 |
|
362 |
-
#: ../includes/class-ure-lib.php:
|
363 |
msgid "Role is updated successfully"
|
364 |
msgstr "El Rol fue exitosamente actualizado"
|
365 |
|
366 |
-
#: ../includes/class-ure-lib.php:
|
367 |
msgid "Roles are updated for all network"
|
368 |
msgstr "Roles actualizados en toda la Red"
|
369 |
|
370 |
-
#: ../includes/class-ure-lib.php:
|
371 |
msgid "Error occured during role(s) update"
|
372 |
msgstr "Ocurrió un error durante la actualización del Rol"
|
373 |
|
374 |
-
#: ../includes/class-ure-lib.php:
|
375 |
msgid "User capabilities are updated successfully"
|
376 |
msgstr "Las Capacidades de Usuario fueron actualizadas exitosamente"
|
377 |
|
378 |
-
#: ../includes/class-ure-lib.php:
|
379 |
msgid "Error occured during user update"
|
380 |
msgstr "Ocurrió un error durante la actualización del Usuario"
|
381 |
|
382 |
-
#: ../includes/class-ure-lib.php:
|
383 |
msgid "User Roles are restored to WordPress default values. "
|
384 |
msgstr ""
|
385 |
"Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
|
386 |
|
387 |
-
#: ../includes/class-ure-lib.php:
|
388 |
msgid "read about"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: ../includes/class-ure-lib.php:
|
392 |
#, fuzzy
|
393 |
msgid "user capability"
|
394 |
msgstr "Capacidades personalizadas:"
|
395 |
|
396 |
-
#: ../includes/class-ure-lib.php:
|
397 |
msgid "Help"
|
398 |
msgstr "Ayuda"
|
399 |
|
400 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
msgid "Error is occur. Please check the log file."
|
402 |
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
|
403 |
|
404 |
-
#: ../includes/class-ure-lib.php:
|
405 |
msgid ""
|
406 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
407 |
"only!"
|
@@ -409,408 +119,466 @@ msgstr ""
|
|
409 |
"Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
|
410 |
"altos o bajos!"
|
411 |
|
412 |
-
#: ../includes/class-ure-lib.php:
|
413 |
msgid ""
|
414 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
415 |
"characters to it."
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
#, php-format
|
420 |
msgid "Role %s exists already"
|
421 |
msgstr "El Rol %s ya existe"
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Error is encountered during new role create operation"
|
425 |
msgstr "Un error fue encontrado durante la creación del nuevo Rol"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
#, php-format
|
429 |
msgid "Role %s is created successfully"
|
430 |
msgstr "El Rol %s fue creado exitosamente"
|
431 |
|
432 |
-
#: ../includes/class-ure-lib.php:
|
433 |
msgid "Error: Role ID is empty!"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: ../includes/class-ure-lib.php:
|
437 |
msgid "Error: Empty role display name is not allowed."
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ../includes/class-ure-lib.php:
|
441 |
#, fuzzy, php-format
|
442 |
msgid "Role %s does not exists"
|
443 |
msgstr "no existe"
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
#, fuzzy, php-format
|
447 |
msgid "Role %s is renamed to %s successfully"
|
448 |
msgstr "El Rol %s fue creado exitosamente"
|
449 |
|
450 |
-
#: ../includes/class-ure-lib.php:
|
451 |
msgid "Error encountered during role delete operation"
|
452 |
msgstr "Un error fue encontrado durante la eliminación del Rol"
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
msgid "Unused roles are deleted successfully"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
#, php-format
|
460 |
msgid "Role %s is deleted successfully"
|
461 |
msgstr "El Rol %s fue eliminado exitosamente"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Error encountered during default role change operation"
|
465 |
msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
#, php-format
|
469 |
msgid "Default role for new users is set to %s successfully"
|
470 |
msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
|
471 |
|
472 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
473 |
msgid "Editor"
|
474 |
msgstr "Editor"
|
475 |
|
476 |
-
#: ../includes/class-ure-lib.php:
|
477 |
msgid "Author"
|
478 |
msgstr "Autor"
|
479 |
|
480 |
-
#: ../includes/class-ure-lib.php:
|
481 |
msgid "Contributor"
|
482 |
msgstr "Contribuyente"
|
483 |
|
484 |
-
#: ../includes/class-ure-lib.php:
|
485 |
msgid "Subscriber"
|
486 |
msgstr "Suscriptor"
|
487 |
|
488 |
-
#: ../includes/class-ure-lib.php:
|
489 |
msgid "Switch themes"
|
490 |
msgstr "Cambiar temas (plantillas)"
|
491 |
|
492 |
-
#: ../includes/class-ure-lib.php:
|
493 |
msgid "Edit themes"
|
494 |
msgstr "Editar temas (plantillas)"
|
495 |
|
496 |
-
#: ../includes/class-ure-lib.php:
|
497 |
msgid "Activate plugins"
|
498 |
msgstr "Activar plugins"
|
499 |
|
500 |
-
#: ../includes/class-ure-lib.php:
|
501 |
msgid "Edit plugins"
|
502 |
msgstr "Editar plugins"
|
503 |
|
504 |
-
#: ../includes/class-ure-lib.php:
|
505 |
msgid "Edit users"
|
506 |
msgstr "Editar usuarios"
|
507 |
|
508 |
-
#: ../includes/class-ure-lib.php:
|
509 |
msgid "Edit files"
|
510 |
msgstr "Editar archivos"
|
511 |
|
512 |
-
#: ../includes/class-ure-lib.php:
|
513 |
msgid "Manage options"
|
514 |
msgstr "Administrar opciones"
|
515 |
|
516 |
-
#: ../includes/class-ure-lib.php:
|
517 |
msgid "Moderate comments"
|
518 |
msgstr "Moderar comentarios"
|
519 |
|
520 |
-
#: ../includes/class-ure-lib.php:
|
521 |
msgid "Manage categories"
|
522 |
msgstr "Administrar categorías"
|
523 |
|
524 |
-
#: ../includes/class-ure-lib.php:
|
525 |
msgid "Manage links"
|
526 |
msgstr "Administrar enlaces"
|
527 |
|
528 |
-
#: ../includes/class-ure-lib.php:
|
529 |
msgid "Upload files"
|
530 |
msgstr "Subir archivos"
|
531 |
|
532 |
-
#: ../includes/class-ure-lib.php:
|
533 |
msgid "Import"
|
534 |
msgstr "Importar"
|
535 |
|
536 |
-
#: ../includes/class-ure-lib.php:
|
537 |
msgid "Unfiltered html"
|
538 |
msgstr "HTML sin filtrar"
|
539 |
|
540 |
-
#: ../includes/class-ure-lib.php:
|
541 |
msgid "Edit posts"
|
542 |
msgstr "Editar entradas"
|
543 |
|
544 |
-
#: ../includes/class-ure-lib.php:
|
545 |
msgid "Edit others posts"
|
546 |
msgstr "Editar entradas ajenas"
|
547 |
|
548 |
-
#: ../includes/class-ure-lib.php:
|
549 |
msgid "Edit published posts"
|
550 |
msgstr "Editar entradas publicadas"
|
551 |
|
552 |
-
#: ../includes/class-ure-lib.php:
|
553 |
msgid "Publish posts"
|
554 |
msgstr "Publicar entradas"
|
555 |
|
556 |
-
#: ../includes/class-ure-lib.php:
|
557 |
msgid "Edit pages"
|
558 |
msgstr "Editar páginas"
|
559 |
|
560 |
-
#: ../includes/class-ure-lib.php:
|
561 |
msgid "Read"
|
562 |
msgstr "Leer"
|
563 |
|
564 |
-
#: ../includes/class-ure-lib.php:
|
565 |
msgid "Level 10"
|
566 |
msgstr "Nivel 10"
|
567 |
|
568 |
-
#: ../includes/class-ure-lib.php:
|
569 |
msgid "Level 9"
|
570 |
msgstr "Nivel 9"
|
571 |
|
572 |
-
#: ../includes/class-ure-lib.php:
|
573 |
msgid "Level 8"
|
574 |
msgstr "Nivel 8"
|
575 |
|
576 |
-
#: ../includes/class-ure-lib.php:
|
577 |
msgid "Level 7"
|
578 |
msgstr "Nivel 7"
|
579 |
|
580 |
-
#: ../includes/class-ure-lib.php:
|
581 |
msgid "Level 6"
|
582 |
msgstr "Nivel 6"
|
583 |
|
584 |
-
#: ../includes/class-ure-lib.php:
|
585 |
msgid "Level 5"
|
586 |
msgstr "Nivel 5"
|
587 |
|
588 |
-
#: ../includes/class-ure-lib.php:
|
589 |
msgid "Level 4"
|
590 |
msgstr "Nivel 4"
|
591 |
|
592 |
-
#: ../includes/class-ure-lib.php:
|
593 |
msgid "Level 3"
|
594 |
msgstr "Nivel 3"
|
595 |
|
596 |
-
#: ../includes/class-ure-lib.php:
|
597 |
msgid "Level 2"
|
598 |
msgstr "Nivel 2"
|
599 |
|
600 |
-
#: ../includes/class-ure-lib.php:
|
601 |
msgid "Level 1"
|
602 |
msgstr "Nivel 1"
|
603 |
|
604 |
-
#: ../includes/class-ure-lib.php:
|
605 |
msgid "Level 0"
|
606 |
msgstr "Nivel 0"
|
607 |
|
608 |
-
#: ../includes/class-ure-lib.php:
|
609 |
msgid "Edit others pages"
|
610 |
msgstr "Editar páginas ajenas"
|
611 |
|
612 |
-
#: ../includes/class-ure-lib.php:
|
613 |
msgid "Edit published pages"
|
614 |
msgstr "Editar páginas publicadas"
|
615 |
|
616 |
-
#: ../includes/class-ure-lib.php:
|
617 |
msgid "Publish pages"
|
618 |
msgstr "Publicar páginas"
|
619 |
|
620 |
-
#: ../includes/class-ure-lib.php:
|
621 |
msgid "Delete pages"
|
622 |
msgstr "Eliminar páginas"
|
623 |
|
624 |
-
#: ../includes/class-ure-lib.php:
|
625 |
msgid "Delete others pages"
|
626 |
msgstr "Eliminar páginas ajenas"
|
627 |
|
628 |
-
#: ../includes/class-ure-lib.php:
|
629 |
msgid "Delete published pages"
|
630 |
msgstr "Eliminar páginas publicadas"
|
631 |
|
632 |
-
#: ../includes/class-ure-lib.php:
|
633 |
msgid "Delete posts"
|
634 |
msgstr "Eliminar entradas"
|
635 |
|
636 |
-
#: ../includes/class-ure-lib.php:
|
637 |
msgid "Delete others posts"
|
638 |
msgstr "Eliminar entradas ajenas"
|
639 |
|
640 |
-
#: ../includes/class-ure-lib.php:
|
641 |
msgid "Delete published posts"
|
642 |
msgstr "Eliminar entradas publicadas"
|
643 |
|
644 |
-
#: ../includes/class-ure-lib.php:
|
645 |
msgid "Delete private posts"
|
646 |
msgstr "Eliminar entradas privadas"
|
647 |
|
648 |
-
#: ../includes/class-ure-lib.php:
|
649 |
msgid "Edit private posts"
|
650 |
msgstr "Editar entradas privadas"
|
651 |
|
652 |
-
#: ../includes/class-ure-lib.php:
|
653 |
msgid "Read private posts"
|
654 |
msgstr "Leer entradas privadas"
|
655 |
|
656 |
-
#: ../includes/class-ure-lib.php:
|
657 |
msgid "Delete private pages"
|
658 |
msgstr "Eliminar páginas privadas"
|
659 |
|
660 |
-
#: ../includes/class-ure-lib.php:
|
661 |
msgid "Edit private pages"
|
662 |
msgstr "Editar páginas privadas"
|
663 |
|
664 |
-
#: ../includes/class-ure-lib.php:
|
665 |
msgid "Read private pages"
|
666 |
msgstr "Leer páginas privadas"
|
667 |
|
668 |
-
#: ../includes/class-ure-lib.php:
|
669 |
msgid "Delete users"
|
670 |
msgstr "Eliminar usuarios"
|
671 |
|
672 |
-
#: ../includes/class-ure-lib.php:
|
673 |
msgid "Create users"
|
674 |
msgstr "Crear usuarios"
|
675 |
|
676 |
-
#: ../includes/class-ure-lib.php:
|
677 |
msgid "Unfiltered upload"
|
678 |
msgstr "Subir sin filtrado"
|
679 |
|
680 |
-
#: ../includes/class-ure-lib.php:
|
681 |
msgid "Edit dashboard"
|
682 |
msgstr "Editar escritorio"
|
683 |
|
684 |
-
#: ../includes/class-ure-lib.php:
|
685 |
msgid "Update plugins"
|
686 |
msgstr "Actualizar plugins"
|
687 |
|
688 |
-
#: ../includes/class-ure-lib.php:
|
689 |
msgid "Delete plugins"
|
690 |
msgstr "Eliminar plugins"
|
691 |
|
692 |
-
#: ../includes/class-ure-lib.php:
|
693 |
msgid "Install plugins"
|
694 |
msgstr "Instalar plugins"
|
695 |
|
696 |
-
#: ../includes/class-ure-lib.php:
|
697 |
msgid "Update themes"
|
698 |
msgstr "Actualizar temas (plantillas)"
|
699 |
|
700 |
-
#: ../includes/class-ure-lib.php:
|
701 |
msgid "Install themes"
|
702 |
msgstr "Instalar temas (plantillas)"
|
703 |
|
704 |
-
#: ../includes/class-ure-lib.php:
|
705 |
msgid "Update core"
|
706 |
msgstr "Actualizar núcleo"
|
707 |
|
708 |
-
#: ../includes/class-ure-lib.php:
|
709 |
msgid "List users"
|
710 |
msgstr "Listar usuarios"
|
711 |
|
712 |
-
#: ../includes/class-ure-lib.php:
|
713 |
msgid "Remove users"
|
714 |
msgstr "Eliminar usuarios"
|
715 |
|
716 |
-
#: ../includes/class-ure-lib.php:
|
717 |
msgid "Add users"
|
718 |
msgstr "Agregar usuarios"
|
719 |
|
720 |
-
#: ../includes/class-ure-lib.php:
|
721 |
msgid "Promote users"
|
722 |
msgstr "Promover usuarios"
|
723 |
|
724 |
-
#: ../includes/class-ure-lib.php:
|
725 |
msgid "Edit theme options"
|
726 |
msgstr "Editar opciones del tema (plantilla)"
|
727 |
|
728 |
-
#: ../includes/class-ure-lib.php:
|
729 |
msgid "Delete themes"
|
730 |
msgstr "Eliminar temas (plantillas)"
|
731 |
|
732 |
-
#: ../includes/class-ure-lib.php:
|
733 |
msgid "Export"
|
734 |
msgstr "Exportar"
|
735 |
|
736 |
-
#: ../includes/class-ure-lib.php:
|
737 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
738 |
msgstr ""
|
739 |
"Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
|
740 |
|
741 |
-
#: ../includes/class-ure-lib.php:
|
742 |
#, php-format
|
743 |
msgid "Capability %s is added successfully"
|
744 |
msgstr "La Capacidad %s fue agregada exitosamente"
|
745 |
|
746 |
-
#: ../includes/class-ure-lib.php:
|
747 |
#, php-format
|
748 |
msgid "Capability %s exists already"
|
749 |
msgstr "La Capacidad %s ya existe"
|
750 |
|
751 |
-
#: ../includes/class-ure-lib.php:
|
752 |
#, php-format
|
753 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
754 |
msgstr ""
|
755 |
"¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
|
756 |
|
757 |
-
#: ../includes/class-ure-lib.php:
|
758 |
-
#, php-format
|
759 |
-
msgid "Capability %s
|
760 |
msgstr "La Capacidad %s fue eliminada exitosamente"
|
761 |
|
762 |
-
#: ../includes/class-ure-lib.php:
|
763 |
msgid "Version:"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: ../includes/class-ure-lib.php:
|
767 |
msgid "Author's website"
|
768 |
msgstr "Sitio web del Autor"
|
769 |
|
770 |
-
#: ../includes/class-ure-lib.php:
|
771 |
msgid "Plugin webpage"
|
772 |
msgstr "Página web del Plugin"
|
773 |
|
774 |
-
#: ../includes/class-ure-lib.php:
|
775 |
#, fuzzy
|
776 |
msgid "Plugin download"
|
777 |
msgstr "Página web del Plugin"
|
778 |
|
779 |
-
#: ../includes/class-ure-lib.php:
|
780 |
-
|
781 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
782 |
|
783 |
-
#: ../includes/
|
784 |
-
msgid "
|
785 |
-
msgstr "
|
786 |
|
787 |
-
#: ../includes/
|
788 |
-
msgid "
|
789 |
-
msgstr ""
|
790 |
|
791 |
-
#: ../includes/class-
|
792 |
-
|
793 |
-
|
|
|
|
|
794 |
|
795 |
-
#: ../includes/
|
796 |
-
msgid "
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../includes/
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
#: ../includes/ure-user-edit.php:72
|
804 |
-
msgid "Primary Role:"
|
805 |
-
msgstr "Rol Primario:"
|
806 |
|
807 |
-
#: ../includes/
|
808 |
-
msgid "
|
809 |
-
msgstr "
|
810 |
|
811 |
-
#: ../includes/
|
812 |
-
|
813 |
-
|
|
|
814 |
|
815 |
#: ../includes/class-ure-screen-help.php:12
|
816 |
#: ../includes/class-ure-screen-help.php:41
|
@@ -820,6 +588,11 @@ msgstr "Otros Roles:"
|
|
820 |
msgid "User Role Editor Options page help"
|
821 |
msgstr "Editor de Roles"
|
822 |
|
|
|
|
|
|
|
|
|
|
|
823 |
#: ../includes/class-ure-screen-help.php:16
|
824 |
msgid ""
|
825 |
"turn this option on in order to make the \"Administrator\" role available at "
|
@@ -827,6 +600,12 @@ msgid ""
|
|
827 |
"for security reasons."
|
828 |
msgstr ""
|
829 |
|
|
|
|
|
|
|
|
|
|
|
|
|
830 |
#: ../includes/class-ure-screen-help.php:19
|
831 |
msgid ""
|
832 |
"automatically converts capability names from the technical form for internal "
|
@@ -842,6 +621,12 @@ msgid ""
|
|
842 |
"deprecated capabilities."
|
843 |
msgstr ""
|
844 |
|
|
|
|
|
|
|
|
|
|
|
|
|
845 |
#: ../includes/class-ure-screen-help.php:26
|
846 |
msgid ""
|
847 |
"If turned off - capabilities section of selected user is shown in readonly "
|
@@ -849,6 +634,11 @@ msgid ""
|
|
849 |
"should make it using roles only."
|
850 |
msgstr ""
|
851 |
|
|
|
|
|
|
|
|
|
|
|
852 |
#: ../includes/class-ure-screen-help.php:46
|
853 |
msgid ""
|
854 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
@@ -879,6 +669,240 @@ msgid ""
|
|
879 |
"limitation."
|
880 |
msgstr ""
|
881 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
882 |
#, fuzzy
|
883 |
#~ msgid "select roles below"
|
884 |
#~ msgstr "Deseleccionar todo"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-11 21:06+0100\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_ES\n"
|
10 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/class-ure-lib.php:247
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "Error: wrong request"
|
21 |
msgstr "Error: Petición inválida"
|
22 |
|
23 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
24 |
msgid "Role name (ID): "
|
25 |
msgstr "Nombre del Rol (ID):"
|
26 |
|
27 |
+
#: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
|
28 |
msgid "Display Role Name: "
|
29 |
msgstr "Mostrar nombre del Rol:"
|
30 |
|
31 |
+
#: ../includes/class-ure-lib.php:284
|
32 |
msgid "Make copy of: "
|
33 |
msgstr "Hacer copia de:"
|
34 |
|
35 |
+
#: ../includes/class-ure-lib.php:300
|
36 |
msgid "Select Role:"
|
37 |
msgstr "Seleccionar Rol:"
|
38 |
|
39 |
+
#: ../includes/class-ure-lib.php:315
|
40 |
msgid "Delete:"
|
41 |
msgstr "Eliminar:"
|
42 |
|
43 |
+
#: ../includes/class-ure-lib.php:322
|
44 |
msgid "Capability name (ID): "
|
45 |
msgstr "Nombre de la Capacidad (ID):"
|
46 |
|
47 |
+
#: ../includes/class-ure-lib.php:339
|
48 |
+
#: ../includes/class-user-role-editor.php:596
|
49 |
+
#: ../includes/class-user-role-editor.php:625
|
50 |
+
msgid "User Role Editor"
|
51 |
+
msgstr "Editor de Roles"
|
52 |
+
|
53 |
+
#: ../includes/class-ure-lib.php:436
|
54 |
msgid "Error: "
|
55 |
msgstr "Error:"
|
56 |
|
57 |
+
#: ../includes/class-ure-lib.php:436
|
58 |
msgid "Role"
|
59 |
msgstr "Rol"
|
60 |
|
61 |
+
#: ../includes/class-ure-lib.php:437
|
62 |
msgid "does not exist"
|
63 |
msgstr "no existe"
|
64 |
|
65 |
+
#: ../includes/class-ure-lib.php:480
|
66 |
msgid "Role is updated successfully"
|
67 |
msgstr "El Rol fue exitosamente actualizado"
|
68 |
|
69 |
+
#: ../includes/class-ure-lib.php:482
|
70 |
msgid "Roles are updated for all network"
|
71 |
msgstr "Roles actualizados en toda la Red"
|
72 |
|
73 |
+
#: ../includes/class-ure-lib.php:488
|
74 |
msgid "Error occured during role(s) update"
|
75 |
msgstr "Ocurrió un error durante la actualización del Rol"
|
76 |
|
77 |
+
#: ../includes/class-ure-lib.php:495
|
78 |
msgid "User capabilities are updated successfully"
|
79 |
msgstr "Las Capacidades de Usuario fueron actualizadas exitosamente"
|
80 |
|
81 |
+
#: ../includes/class-ure-lib.php:500
|
82 |
msgid "Error occured during user update"
|
83 |
msgstr "Ocurrió un error durante la actualización del Usuario"
|
84 |
|
85 |
+
#: ../includes/class-ure-lib.php:558
|
86 |
msgid "User Roles are restored to WordPress default values. "
|
87 |
msgstr ""
|
88 |
"Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
|
89 |
|
90 |
+
#: ../includes/class-ure-lib.php:1436
|
91 |
msgid "read about"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: ../includes/class-ure-lib.php:1437
|
95 |
#, fuzzy
|
96 |
msgid "user capability"
|
97 |
msgstr "Capacidades personalizadas:"
|
98 |
|
99 |
+
#: ../includes/class-ure-lib.php:1438
|
100 |
msgid "Help"
|
101 |
msgstr "Ayuda"
|
102 |
|
103 |
+
#: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
|
104 |
+
#: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
|
105 |
+
#: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
|
106 |
+
#: ../includes/class-user-role-editor.php:828
|
107 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
108 |
+
msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
|
109 |
+
|
110 |
+
#: ../includes/class-ure-lib.php:1909
|
111 |
msgid "Error is occur. Please check the log file."
|
112 |
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
|
113 |
|
114 |
+
#: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
|
115 |
msgid ""
|
116 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
117 |
"only!"
|
119 |
"Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
|
120 |
"altos o bajos!"
|
121 |
|
122 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
123 |
msgid ""
|
124 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
125 |
"characters to it."
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: ../includes/class-ure-lib.php:1974
|
129 |
#, php-format
|
130 |
msgid "Role %s exists already"
|
131 |
msgstr "El Rol %s ya existe"
|
132 |
|
133 |
+
#: ../includes/class-ure-lib.php:1989
|
134 |
msgid "Error is encountered during new role create operation"
|
135 |
msgstr "Un error fue encontrado durante la creación del nuevo Rol"
|
136 |
|
137 |
+
#: ../includes/class-ure-lib.php:1991
|
138 |
#, php-format
|
139 |
msgid "Role %s is created successfully"
|
140 |
msgstr "El Rol %s fue creado exitosamente"
|
141 |
|
142 |
+
#: ../includes/class-ure-lib.php:2015
|
143 |
msgid "Error: Role ID is empty!"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: ../includes/class-ure-lib.php:2033
|
147 |
msgid "Error: Empty role display name is not allowed."
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: ../includes/class-ure-lib.php:2040
|
151 |
#, fuzzy, php-format
|
152 |
msgid "Role %s does not exists"
|
153 |
msgstr "no existe"
|
154 |
|
155 |
+
#: ../includes/class-ure-lib.php:2048
|
156 |
#, fuzzy, php-format
|
157 |
msgid "Role %s is renamed to %s successfully"
|
158 |
msgstr "El Rol %s fue creado exitosamente"
|
159 |
|
160 |
+
#: ../includes/class-ure-lib.php:2121
|
161 |
msgid "Error encountered during role delete operation"
|
162 |
msgstr "Un error fue encontrado durante la eliminación del Rol"
|
163 |
|
164 |
+
#: ../includes/class-ure-lib.php:2123
|
165 |
msgid "Unused roles are deleted successfully"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: ../includes/class-ure-lib.php:2125
|
169 |
#, php-format
|
170 |
msgid "Role %s is deleted successfully"
|
171 |
msgstr "El Rol %s fue eliminado exitosamente"
|
172 |
|
173 |
+
#: ../includes/class-ure-lib.php:2153
|
174 |
msgid "Error encountered during default role change operation"
|
175 |
msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
|
176 |
|
177 |
+
#: ../includes/class-ure-lib.php:2156
|
178 |
#, php-format
|
179 |
msgid "Default role for new users is set to %s successfully"
|
180 |
msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
|
181 |
|
182 |
+
#: ../includes/class-ure-lib.php:2159
|
183 |
+
msgid "Can not set Administrator role as a default one"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: ../includes/class-ure-lib.php:2161
|
187 |
+
#, fuzzy
|
188 |
+
msgid "This role does not exist - "
|
189 |
+
msgstr "no existe"
|
190 |
+
|
191 |
+
#: ../includes/class-ure-lib.php:2177
|
192 |
msgid "Editor"
|
193 |
msgstr "Editor"
|
194 |
|
195 |
+
#: ../includes/class-ure-lib.php:2178
|
196 |
msgid "Author"
|
197 |
msgstr "Autor"
|
198 |
|
199 |
+
#: ../includes/class-ure-lib.php:2179
|
200 |
msgid "Contributor"
|
201 |
msgstr "Contribuyente"
|
202 |
|
203 |
+
#: ../includes/class-ure-lib.php:2180
|
204 |
msgid "Subscriber"
|
205 |
msgstr "Suscriptor"
|
206 |
|
207 |
+
#: ../includes/class-ure-lib.php:2182
|
208 |
msgid "Switch themes"
|
209 |
msgstr "Cambiar temas (plantillas)"
|
210 |
|
211 |
+
#: ../includes/class-ure-lib.php:2183
|
212 |
msgid "Edit themes"
|
213 |
msgstr "Editar temas (plantillas)"
|
214 |
|
215 |
+
#: ../includes/class-ure-lib.php:2184
|
216 |
msgid "Activate plugins"
|
217 |
msgstr "Activar plugins"
|
218 |
|
219 |
+
#: ../includes/class-ure-lib.php:2185
|
220 |
msgid "Edit plugins"
|
221 |
msgstr "Editar plugins"
|
222 |
|
223 |
+
#: ../includes/class-ure-lib.php:2186
|
224 |
msgid "Edit users"
|
225 |
msgstr "Editar usuarios"
|
226 |
|
227 |
+
#: ../includes/class-ure-lib.php:2187
|
228 |
msgid "Edit files"
|
229 |
msgstr "Editar archivos"
|
230 |
|
231 |
+
#: ../includes/class-ure-lib.php:2188
|
232 |
msgid "Manage options"
|
233 |
msgstr "Administrar opciones"
|
234 |
|
235 |
+
#: ../includes/class-ure-lib.php:2189
|
236 |
msgid "Moderate comments"
|
237 |
msgstr "Moderar comentarios"
|
238 |
|
239 |
+
#: ../includes/class-ure-lib.php:2190
|
240 |
msgid "Manage categories"
|
241 |
msgstr "Administrar categorías"
|
242 |
|
243 |
+
#: ../includes/class-ure-lib.php:2191
|
244 |
msgid "Manage links"
|
245 |
msgstr "Administrar enlaces"
|
246 |
|
247 |
+
#: ../includes/class-ure-lib.php:2192
|
248 |
msgid "Upload files"
|
249 |
msgstr "Subir archivos"
|
250 |
|
251 |
+
#: ../includes/class-ure-lib.php:2193
|
252 |
msgid "Import"
|
253 |
msgstr "Importar"
|
254 |
|
255 |
+
#: ../includes/class-ure-lib.php:2194
|
256 |
msgid "Unfiltered html"
|
257 |
msgstr "HTML sin filtrar"
|
258 |
|
259 |
+
#: ../includes/class-ure-lib.php:2195
|
260 |
msgid "Edit posts"
|
261 |
msgstr "Editar entradas"
|
262 |
|
263 |
+
#: ../includes/class-ure-lib.php:2196
|
264 |
msgid "Edit others posts"
|
265 |
msgstr "Editar entradas ajenas"
|
266 |
|
267 |
+
#: ../includes/class-ure-lib.php:2197
|
268 |
msgid "Edit published posts"
|
269 |
msgstr "Editar entradas publicadas"
|
270 |
|
271 |
+
#: ../includes/class-ure-lib.php:2198
|
272 |
msgid "Publish posts"
|
273 |
msgstr "Publicar entradas"
|
274 |
|
275 |
+
#: ../includes/class-ure-lib.php:2199
|
276 |
msgid "Edit pages"
|
277 |
msgstr "Editar páginas"
|
278 |
|
279 |
+
#: ../includes/class-ure-lib.php:2200
|
280 |
msgid "Read"
|
281 |
msgstr "Leer"
|
282 |
|
283 |
+
#: ../includes/class-ure-lib.php:2201
|
284 |
msgid "Level 10"
|
285 |
msgstr "Nivel 10"
|
286 |
|
287 |
+
#: ../includes/class-ure-lib.php:2202
|
288 |
msgid "Level 9"
|
289 |
msgstr "Nivel 9"
|
290 |
|
291 |
+
#: ../includes/class-ure-lib.php:2203
|
292 |
msgid "Level 8"
|
293 |
msgstr "Nivel 8"
|
294 |
|
295 |
+
#: ../includes/class-ure-lib.php:2204
|
296 |
msgid "Level 7"
|
297 |
msgstr "Nivel 7"
|
298 |
|
299 |
+
#: ../includes/class-ure-lib.php:2205
|
300 |
msgid "Level 6"
|
301 |
msgstr "Nivel 6"
|
302 |
|
303 |
+
#: ../includes/class-ure-lib.php:2206
|
304 |
msgid "Level 5"
|
305 |
msgstr "Nivel 5"
|
306 |
|
307 |
+
#: ../includes/class-ure-lib.php:2207
|
308 |
msgid "Level 4"
|
309 |
msgstr "Nivel 4"
|
310 |
|
311 |
+
#: ../includes/class-ure-lib.php:2208
|
312 |
msgid "Level 3"
|
313 |
msgstr "Nivel 3"
|
314 |
|
315 |
+
#: ../includes/class-ure-lib.php:2209
|
316 |
msgid "Level 2"
|
317 |
msgstr "Nivel 2"
|
318 |
|
319 |
+
#: ../includes/class-ure-lib.php:2210
|
320 |
msgid "Level 1"
|
321 |
msgstr "Nivel 1"
|
322 |
|
323 |
+
#: ../includes/class-ure-lib.php:2211
|
324 |
msgid "Level 0"
|
325 |
msgstr "Nivel 0"
|
326 |
|
327 |
+
#: ../includes/class-ure-lib.php:2212
|
328 |
msgid "Edit others pages"
|
329 |
msgstr "Editar páginas ajenas"
|
330 |
|
331 |
+
#: ../includes/class-ure-lib.php:2213
|
332 |
msgid "Edit published pages"
|
333 |
msgstr "Editar páginas publicadas"
|
334 |
|
335 |
+
#: ../includes/class-ure-lib.php:2214
|
336 |
msgid "Publish pages"
|
337 |
msgstr "Publicar páginas"
|
338 |
|
339 |
+
#: ../includes/class-ure-lib.php:2215
|
340 |
msgid "Delete pages"
|
341 |
msgstr "Eliminar páginas"
|
342 |
|
343 |
+
#: ../includes/class-ure-lib.php:2216
|
344 |
msgid "Delete others pages"
|
345 |
msgstr "Eliminar páginas ajenas"
|
346 |
|
347 |
+
#: ../includes/class-ure-lib.php:2217
|
348 |
msgid "Delete published pages"
|
349 |
msgstr "Eliminar páginas publicadas"
|
350 |
|
351 |
+
#: ../includes/class-ure-lib.php:2218
|
352 |
msgid "Delete posts"
|
353 |
msgstr "Eliminar entradas"
|
354 |
|
355 |
+
#: ../includes/class-ure-lib.php:2219
|
356 |
msgid "Delete others posts"
|
357 |
msgstr "Eliminar entradas ajenas"
|
358 |
|
359 |
+
#: ../includes/class-ure-lib.php:2220
|
360 |
msgid "Delete published posts"
|
361 |
msgstr "Eliminar entradas publicadas"
|
362 |
|
363 |
+
#: ../includes/class-ure-lib.php:2221
|
364 |
msgid "Delete private posts"
|
365 |
msgstr "Eliminar entradas privadas"
|
366 |
|
367 |
+
#: ../includes/class-ure-lib.php:2222
|
368 |
msgid "Edit private posts"
|
369 |
msgstr "Editar entradas privadas"
|
370 |
|
371 |
+
#: ../includes/class-ure-lib.php:2223
|
372 |
msgid "Read private posts"
|
373 |
msgstr "Leer entradas privadas"
|
374 |
|
375 |
+
#: ../includes/class-ure-lib.php:2224
|
376 |
msgid "Delete private pages"
|
377 |
msgstr "Eliminar páginas privadas"
|
378 |
|
379 |
+
#: ../includes/class-ure-lib.php:2225
|
380 |
msgid "Edit private pages"
|
381 |
msgstr "Editar páginas privadas"
|
382 |
|
383 |
+
#: ../includes/class-ure-lib.php:2226
|
384 |
msgid "Read private pages"
|
385 |
msgstr "Leer páginas privadas"
|
386 |
|
387 |
+
#: ../includes/class-ure-lib.php:2227
|
388 |
msgid "Delete users"
|
389 |
msgstr "Eliminar usuarios"
|
390 |
|
391 |
+
#: ../includes/class-ure-lib.php:2228
|
392 |
msgid "Create users"
|
393 |
msgstr "Crear usuarios"
|
394 |
|
395 |
+
#: ../includes/class-ure-lib.php:2229
|
396 |
msgid "Unfiltered upload"
|
397 |
msgstr "Subir sin filtrado"
|
398 |
|
399 |
+
#: ../includes/class-ure-lib.php:2230
|
400 |
msgid "Edit dashboard"
|
401 |
msgstr "Editar escritorio"
|
402 |
|
403 |
+
#: ../includes/class-ure-lib.php:2231
|
404 |
msgid "Update plugins"
|
405 |
msgstr "Actualizar plugins"
|
406 |
|
407 |
+
#: ../includes/class-ure-lib.php:2232
|
408 |
msgid "Delete plugins"
|
409 |
msgstr "Eliminar plugins"
|
410 |
|
411 |
+
#: ../includes/class-ure-lib.php:2233
|
412 |
msgid "Install plugins"
|
413 |
msgstr "Instalar plugins"
|
414 |
|
415 |
+
#: ../includes/class-ure-lib.php:2234
|
416 |
msgid "Update themes"
|
417 |
msgstr "Actualizar temas (plantillas)"
|
418 |
|
419 |
+
#: ../includes/class-ure-lib.php:2235
|
420 |
msgid "Install themes"
|
421 |
msgstr "Instalar temas (plantillas)"
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:2236
|
424 |
msgid "Update core"
|
425 |
msgstr "Actualizar núcleo"
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:2237
|
428 |
msgid "List users"
|
429 |
msgstr "Listar usuarios"
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:2238
|
432 |
msgid "Remove users"
|
433 |
msgstr "Eliminar usuarios"
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:2239
|
436 |
msgid "Add users"
|
437 |
msgstr "Agregar usuarios"
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:2240
|
440 |
msgid "Promote users"
|
441 |
msgstr "Promover usuarios"
|
442 |
|
443 |
+
#: ../includes/class-ure-lib.php:2241
|
444 |
msgid "Edit theme options"
|
445 |
msgstr "Editar opciones del tema (plantilla)"
|
446 |
|
447 |
+
#: ../includes/class-ure-lib.php:2242
|
448 |
msgid "Delete themes"
|
449 |
msgstr "Eliminar temas (plantillas)"
|
450 |
|
451 |
+
#: ../includes/class-ure-lib.php:2243
|
452 |
msgid "Export"
|
453 |
msgstr "Exportar"
|
454 |
|
455 |
+
#: ../includes/class-ure-lib.php:2366
|
456 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
457 |
msgstr ""
|
458 |
"Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
|
459 |
|
460 |
+
#: ../includes/class-ure-lib.php:2379
|
461 |
#, php-format
|
462 |
msgid "Capability %s is added successfully"
|
463 |
msgstr "La Capacidad %s fue agregada exitosamente"
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:2381
|
466 |
#, php-format
|
467 |
msgid "Capability %s exists already"
|
468 |
msgstr "La Capacidad %s ya existe"
|
469 |
|
470 |
+
#: ../includes/class-ure-lib.php:2410
|
471 |
#, php-format
|
472 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
473 |
msgstr ""
|
474 |
"¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
|
475 |
|
476 |
+
#: ../includes/class-ure-lib.php:2429
|
477 |
+
#, fuzzy, php-format
|
478 |
+
msgid "Capability %s was removed successfully"
|
479 |
msgstr "La Capacidad %s fue eliminada exitosamente"
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:2497
|
482 |
msgid "Version:"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:2498
|
486 |
msgid "Author's website"
|
487 |
msgstr "Sitio web del Autor"
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:2499
|
490 |
msgid "Plugin webpage"
|
491 |
msgstr "Página web del Plugin"
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:2500
|
494 |
#, fuzzy
|
495 |
msgid "Plugin download"
|
496 |
msgstr "Página web del Plugin"
|
497 |
|
498 |
+
#: ../includes/class-ure-lib.php:2501
|
499 |
+
#: ../includes/class-user-role-editor.php:546
|
500 |
+
msgid "Changelog"
|
501 |
+
msgstr "Registro de cambios"
|
502 |
+
|
503 |
+
#: ../includes/class-ure-lib.php:2502
|
504 |
+
msgid "FAQ"
|
505 |
+
msgstr "FAQ"
|
506 |
+
|
507 |
+
#: ../includes/class-ure-lib.php:2575
|
508 |
+
msgid "Delete All Unused Roles"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: ../includes/class-ure-lib.php:2588
|
512 |
+
msgid "None"
|
513 |
+
msgstr "Ninguno"
|
514 |
+
|
515 |
+
#: ../includes/class-ure-lib.php:2632
|
516 |
+
msgid "— No role for this site —"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: ../includes/class-ure-lib.php:2747
|
520 |
+
#, php-format
|
521 |
+
msgid "Denied: %s"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: ../includes/ure-role-edit.php:17
|
525 |
+
#, fuzzy
|
526 |
+
msgid "Select Role and change its capabilities:"
|
527 |
+
msgstr "Selecciona un rol y modifica su lista de Capacidades"
|
528 |
+
|
529 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
530 |
+
#, fuzzy
|
531 |
+
msgid "Show capabilities in human readable form"
|
532 |
+
msgstr "Mostrar Capacidades de forma legible"
|
533 |
+
|
534 |
+
#: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
|
535 |
+
#: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
|
536 |
+
msgid "Show deprecated capabilities"
|
537 |
+
msgstr "Mostrar Capacidades obsoletas"
|
538 |
+
|
539 |
+
#: ../includes/ure-role-edit.php:44
|
540 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
541 |
+
msgstr "Si está marcado, se aplicará la acción a TODOS los sitios de la Red"
|
542 |
+
|
543 |
+
#: ../includes/ure-role-edit.php:56
|
544 |
+
msgid "Apply to All Sites"
|
545 |
+
msgstr "Aplicar a todos los Sitios"
|
546 |
+
|
547 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
548 |
+
msgid "Core capabilities:"
|
549 |
+
msgstr "Capacidades del núcleo del sistema:"
|
550 |
|
551 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
552 |
+
msgid "Quick filter:"
|
553 |
+
msgstr "Filtro rápido:"
|
554 |
|
555 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
556 |
+
msgid "Custom capabilities:"
|
557 |
+
msgstr "Capacidades personalizadas:"
|
558 |
|
559 |
+
#: ../includes/class-user-other-roles.php:82
|
560 |
+
#: ../includes/class-user-other-roles.php:183
|
561 |
+
#: ../includes/class-user-other-roles.php:243
|
562 |
+
msgid "Other Roles"
|
563 |
+
msgstr "Otros Roles"
|
564 |
|
565 |
+
#: ../includes/class-user-other-roles.php:83
|
566 |
+
msgid "Select additional roles for this user"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: ../includes/class-user-other-roles.php:162
|
570 |
+
#: ../includes/class-user-role-editor.php:438
|
571 |
+
msgid "Capabilities"
|
572 |
+
msgstr "Capacidades"
|
|
|
|
|
|
|
573 |
|
574 |
+
#: ../includes/class-user-other-roles.php:169
|
575 |
+
msgid "Edit"
|
576 |
+
msgstr "Editar"
|
577 |
|
578 |
+
#: ../includes/class-user-other-roles.php:215
|
579 |
+
#, fuzzy
|
580 |
+
msgid "Additional Capabilities"
|
581 |
+
msgstr "Agregar Capacidad"
|
582 |
|
583 |
#: ../includes/class-ure-screen-help.php:12
|
584 |
#: ../includes/class-ure-screen-help.php:41
|
588 |
msgid "User Role Editor Options page help"
|
589 |
msgstr "Editor de Roles"
|
590 |
|
591 |
+
#: ../includes/class-ure-screen-help.php:15
|
592 |
+
#: ../includes/settings-template.php:53
|
593 |
+
msgid "Show Administrator role at User Role Editor"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
#: ../includes/class-ure-screen-help.php:16
|
597 |
msgid ""
|
598 |
"turn this option on in order to make the \"Administrator\" role available at "
|
600 |
"for security reasons."
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: ../includes/class-ure-screen-help.php:18
|
604 |
+
#: ../includes/settings-template.php:61
|
605 |
+
#, fuzzy
|
606 |
+
msgid "Show capabilities in the human readable form"
|
607 |
+
msgstr "Mostrar Capacidades de forma legible"
|
608 |
+
|
609 |
#: ../includes/class-ure-screen-help.php:19
|
610 |
msgid ""
|
611 |
"automatically converts capability names from the technical form for internal "
|
621 |
"deprecated capabilities."
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../includes/class-ure-screen-help.php:25
|
625 |
+
#: ../includes/settings-template.php:77
|
626 |
+
#, fuzzy
|
627 |
+
msgid "Edit user capabilities"
|
628 |
+
msgstr "Capacidades personalizadas:"
|
629 |
+
|
630 |
#: ../includes/class-ure-screen-help.php:26
|
631 |
msgid ""
|
632 |
"If turned off - capabilities section of selected user is shown in readonly "
|
634 |
"should make it using roles only."
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: ../includes/class-ure-screen-help.php:45
|
638 |
+
#: ../includes/settings-template.php:111
|
639 |
+
msgid "Count users without role"
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
#: ../includes/class-ure-screen-help.php:46
|
643 |
msgid ""
|
644 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
669 |
"limitation."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: ../includes/class-user-role-editor.php:233
|
673 |
+
msgid "Change role for users without role"
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
#: ../includes/class-user-role-editor.php:234
|
677 |
+
msgid "No rights"
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: ../includes/class-user-role-editor.php:235
|
681 |
+
msgid "Provide new role"
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: ../includes/class-user-role-editor.php:298
|
685 |
+
#: ../includes/class-user-role-editor.php:300
|
686 |
+
msgid "You do not have permission to edit this user."
|
687 |
+
msgstr "No tienes los suficientes permisos para editar este usuario"
|
688 |
+
|
689 |
+
#: ../includes/class-user-role-editor.php:535
|
690 |
+
msgid "Settings"
|
691 |
+
msgstr "Configuración"
|
692 |
+
|
693 |
+
#: ../includes/class-user-role-editor.php:568
|
694 |
+
#: ../includes/settings-template.php:21
|
695 |
+
msgid "General"
|
696 |
+
msgstr ""
|
697 |
+
|
698 |
+
#: ../includes/class-user-role-editor.php:574
|
699 |
+
#: ../includes/settings-template.php:26
|
700 |
+
msgid "Additional Modules"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: ../includes/class-user-role-editor.php:580
|
704 |
+
#: ../includes/settings-template.php:30
|
705 |
+
#, fuzzy
|
706 |
+
msgid "Default Roles"
|
707 |
+
msgstr "Rol Predeterminado"
|
708 |
+
|
709 |
+
#: ../includes/class-user-role-editor.php:586
|
710 |
+
#: ../includes/settings-template.php:34
|
711 |
+
msgid "Multisite"
|
712 |
+
msgstr ""
|
713 |
+
|
714 |
+
#: ../includes/class-user-role-editor.php:685
|
715 |
+
#: ../includes/class-user-role-editor.php:703
|
716 |
+
#: ../includes/class-user-role-editor.php:747
|
717 |
+
msgid "User Role Editor options are updated"
|
718 |
+
msgstr "Opciones actualizadas"
|
719 |
+
|
720 |
+
#: ../includes/class-user-role-editor.php:731
|
721 |
+
#, fuzzy
|
722 |
+
msgid "Default Roles are updated"
|
723 |
+
msgstr "Rol Predeterminado"
|
724 |
+
|
725 |
+
#: ../includes/class-user-role-editor.php:756
|
726 |
+
msgid ""
|
727 |
+
"You do not have sufficient permissions to manage options for User Role "
|
728 |
+
"Editor."
|
729 |
+
msgstr "Permisos insuficientes para trabajar"
|
730 |
+
|
731 |
+
#: ../includes/class-user-role-editor.php:885
|
732 |
+
msgid "Select All"
|
733 |
+
msgstr "Seleccionar todo"
|
734 |
+
|
735 |
+
#: ../includes/class-user-role-editor.php:886
|
736 |
+
msgid "Unselect All"
|
737 |
+
msgstr "Deseleccionar todo"
|
738 |
+
|
739 |
+
#: ../includes/class-user-role-editor.php:887
|
740 |
+
msgid "Reverse"
|
741 |
+
msgstr "Revertir"
|
742 |
+
|
743 |
+
#: ../includes/class-user-role-editor.php:888
|
744 |
+
msgid "Update"
|
745 |
+
msgstr "Actualizar"
|
746 |
+
|
747 |
+
#: ../includes/class-user-role-editor.php:889
|
748 |
+
msgid "Please confirm permissions update"
|
749 |
+
msgstr "Por favor confirma las actualizaciones de permisos"
|
750 |
+
|
751 |
+
#: ../includes/class-user-role-editor.php:890
|
752 |
+
msgid "Add New Role"
|
753 |
+
msgstr "Agregar nuevo Rol"
|
754 |
+
|
755 |
+
#: ../includes/class-user-role-editor.php:891
|
756 |
+
#: ../includes/class-user-role-editor.php:896
|
757 |
+
#, fuzzy
|
758 |
+
msgid "Rename Role"
|
759 |
+
msgstr "Eliminar Rol"
|
760 |
+
|
761 |
+
#: ../includes/class-user-role-editor.php:892
|
762 |
+
msgid " Role name (ID) can not be empty!"
|
763 |
+
msgstr "¡El nombre del Rol (ID) no puede estar vacío!"
|
764 |
+
|
765 |
+
#: ../includes/class-user-role-editor.php:893
|
766 |
+
msgid ""
|
767 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
768 |
+
"only!"
|
769 |
+
msgstr ""
|
770 |
+
"¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
|
771 |
+
"altos o bajos!"
|
772 |
+
|
773 |
+
#: ../includes/class-user-role-editor.php:894
|
774 |
+
msgid ""
|
775 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
776 |
+
"it."
|
777 |
+
msgstr ""
|
778 |
+
|
779 |
+
#: ../includes/class-user-role-editor.php:895
|
780 |
+
msgid "Add Role"
|
781 |
+
msgstr "Agregar Rol"
|
782 |
+
|
783 |
+
#: ../includes/class-user-role-editor.php:897
|
784 |
+
msgid "Delete Role"
|
785 |
+
msgstr "Eliminar Rol"
|
786 |
+
|
787 |
+
#: ../includes/class-user-role-editor.php:898
|
788 |
+
msgid "Cancel"
|
789 |
+
msgstr "Cancelar"
|
790 |
+
|
791 |
+
#: ../includes/class-user-role-editor.php:899
|
792 |
+
msgid "Add Capability"
|
793 |
+
msgstr "Agregar Capacidad"
|
794 |
+
|
795 |
+
#: ../includes/class-user-role-editor.php:900
|
796 |
+
#: ../includes/class-user-role-editor.php:909
|
797 |
+
msgid "Delete Capability"
|
798 |
+
msgstr "Eliminar Capacidades"
|
799 |
+
|
800 |
+
#: ../includes/class-user-role-editor.php:901
|
801 |
+
msgid "Reset"
|
802 |
+
msgstr "Reiniciar"
|
803 |
+
|
804 |
+
#: ../includes/class-user-role-editor.php:902
|
805 |
+
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
806 |
+
msgstr ""
|
807 |
+
|
808 |
+
#: ../includes/class-user-role-editor.php:903
|
809 |
+
msgid ""
|
810 |
+
"If any plugins have changed capabilities in any way upon installation (such "
|
811 |
+
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
812 |
+
msgstr ""
|
813 |
+
|
814 |
+
#: ../includes/class-user-role-editor.php:904
|
815 |
+
msgid ""
|
816 |
+
"For more information on how to undo changes and restore plugin capabilities "
|
817 |
+
"go to"
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: ../includes/class-user-role-editor.php:906
|
821 |
+
msgid "Continue?"
|
822 |
+
msgstr ""
|
823 |
+
|
824 |
+
#: ../includes/class-user-role-editor.php:907
|
825 |
+
msgid "Default Role"
|
826 |
+
msgstr "Rol Predeterminado"
|
827 |
+
|
828 |
+
#: ../includes/class-user-role-editor.php:908
|
829 |
+
msgid "Set New Default Role"
|
830 |
+
msgstr "Establecer nuevo Rol"
|
831 |
+
|
832 |
+
#: ../includes/class-user-role-editor.php:910
|
833 |
+
msgid ""
|
834 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
835 |
+
"or other custom code"
|
836 |
+
msgstr ""
|
837 |
+
"¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
|
838 |
+
"algún plugin o código personalizado"
|
839 |
+
|
840 |
+
#: ../includes/class-user-role-editor.php:911
|
841 |
+
msgid " Capability name (ID) can not be empty!"
|
842 |
+
msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
|
843 |
+
|
844 |
+
#: ../includes/class-user-role-editor.php:912
|
845 |
+
msgid ""
|
846 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
847 |
+
"underscore only!"
|
848 |
+
msgstr ""
|
849 |
+
"¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
|
850 |
+
"guiones altos o bajos!"
|
851 |
+
|
852 |
+
#: ../includes/settings-template.php:17
|
853 |
+
#, fuzzy
|
854 |
+
msgid "User Role Editor - Options"
|
855 |
+
msgstr "Editor de Roles"
|
856 |
+
|
857 |
+
#: ../includes/settings-template.php:39
|
858 |
+
msgid "About"
|
859 |
+
msgstr ""
|
860 |
+
|
861 |
+
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
862 |
+
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
863 |
+
msgid "Save"
|
864 |
+
msgstr "Guardar"
|
865 |
+
|
866 |
+
#: ../includes/settings-template.php:138
|
867 |
+
#, fuzzy
|
868 |
+
msgid "Primary default role: "
|
869 |
+
msgstr "Rol Primario:"
|
870 |
+
|
871 |
+
#: ../includes/settings-template.php:145
|
872 |
+
msgid "Other default roles for new registered user: "
|
873 |
+
msgstr ""
|
874 |
+
|
875 |
+
#: ../includes/settings-template.php:151
|
876 |
+
msgid ""
|
877 |
+
"Note for multisite environment: take into account that other default roles "
|
878 |
+
"should exist at the site, in order to be assigned to the new registered "
|
879 |
+
"users."
|
880 |
+
msgstr ""
|
881 |
+
|
882 |
+
#: ../includes/settings-template.php:177
|
883 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
884 |
+
msgstr ""
|
885 |
+
|
886 |
+
#: ../includes/ure-user-edit.php:32
|
887 |
+
msgid "Network Super Admin"
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#: ../includes/ure-user-edit.php:35
|
891 |
+
msgid "Change capabilities for user"
|
892 |
+
msgstr "Cambiar Capacidades para el usuario"
|
893 |
+
|
894 |
+
#: ../includes/ure-user-edit.php:72
|
895 |
+
msgid "Primary Role:"
|
896 |
+
msgstr "Rol Primario:"
|
897 |
+
|
898 |
+
#: ../includes/ure-user-edit.php:82
|
899 |
+
msgid "bbPress Role:"
|
900 |
+
msgstr "Rol de bbPress:"
|
901 |
+
|
902 |
+
#: ../includes/ure-user-edit.php:92
|
903 |
+
msgid "Other Roles:"
|
904 |
+
msgstr "Otros Roles:"
|
905 |
+
|
906 |
#, fuzzy
|
907 |
#~ msgid "select roles below"
|
908 |
#~ msgstr "Deseleccionar todo"
|
lang/user-role-editor-fa_IR.mo
ADDED
Binary file
|
lang/{ure-fa_IR.po → user-role-editor-fa_IR.po}
RENAMED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <
|
8 |
"Language-Team: Morteza Gholami <Morteza.Gholami@Yahoo.Com>\n"
|
9 |
"Language: fa_IR\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -18,393 +18,107 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
"X-Poedit-SearchPath-1: ..\n"
|
20 |
|
21 |
-
#: ../includes/
|
22 |
-
msgid "User Role Editor - Options"
|
23 |
-
msgstr "ویرایشگر نقش کاربر - تنظیمات"
|
24 |
-
|
25 |
-
#: ../includes/settings-template.php:21
|
26 |
-
#: ../includes/class-user-role-editor.php:591
|
27 |
-
msgid "General"
|
28 |
-
msgstr "عمومی"
|
29 |
-
|
30 |
-
#: ../includes/settings-template.php:26
|
31 |
-
#: ../includes/class-user-role-editor.php:597
|
32 |
-
msgid "Additional Modules"
|
33 |
-
msgstr "ماژولهای اضافی"
|
34 |
-
|
35 |
-
#: ../includes/settings-template.php:30
|
36 |
-
#: ../includes/class-user-role-editor.php:603
|
37 |
-
msgid "Default Roles"
|
38 |
-
msgstr "نقشهای پیشفرض"
|
39 |
-
|
40 |
-
#: ../includes/settings-template.php:34
|
41 |
-
#: ../includes/class-user-role-editor.php:609
|
42 |
-
msgid "Multisite"
|
43 |
-
msgstr "چندسایتی"
|
44 |
-
|
45 |
-
#: ../includes/settings-template.php:39
|
46 |
-
msgid "About"
|
47 |
-
msgstr "درباره"
|
48 |
-
|
49 |
-
#: ../includes/settings-template.php:53
|
50 |
-
#: ../includes/class-ure-screen-help.php:15
|
51 |
-
msgid "Show Administrator role at User Role Editor"
|
52 |
-
msgstr "نمایش نقش مدیر در ویرایشگر نقش کاربر"
|
53 |
-
|
54 |
-
#: ../includes/settings-template.php:61
|
55 |
-
#: ../includes/class-ure-screen-help.php:18
|
56 |
-
msgid "Show capabilities in the human readable form"
|
57 |
-
msgstr "نمایش قابلیتها در حالت قابل خواندن برای انسان"
|
58 |
-
|
59 |
-
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
60 |
-
#: ../includes/ure-user-edit.php:64 ../includes/class-ure-screen-help.php:21
|
61 |
-
msgid "Show deprecated capabilities"
|
62 |
-
msgstr "نمایش قابلیتهای بد دانسته شده"
|
63 |
-
|
64 |
-
#: ../includes/settings-template.php:77
|
65 |
-
#: ../includes/class-ure-screen-help.php:25
|
66 |
-
msgid "Edit user capabilities"
|
67 |
-
msgstr "ویرایش قابلیتهای کاربر"
|
68 |
-
|
69 |
-
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
70 |
-
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
71 |
-
msgid "Save"
|
72 |
-
msgstr "ذخیره"
|
73 |
-
|
74 |
-
#: ../includes/settings-template.php:111
|
75 |
-
#: ../includes/class-ure-screen-help.php:45
|
76 |
-
msgid "Count users without role"
|
77 |
-
msgstr "شمارش کاربران بدون نقش"
|
78 |
-
|
79 |
-
#: ../includes/settings-template.php:138
|
80 |
-
msgid "Primary default role: "
|
81 |
-
msgstr "نقش پیشفرض اولیه: "
|
82 |
-
|
83 |
-
#: ../includes/settings-template.php:145
|
84 |
-
msgid "Other default roles for new registered user: "
|
85 |
-
msgstr "دیگر نقشهای پیشفرض برای کاربران تازه ثبتنام شده: "
|
86 |
-
|
87 |
-
#: ../includes/settings-template.php:151
|
88 |
-
msgid ""
|
89 |
-
"Note for multisite environment: take into account that other default roles "
|
90 |
-
"should exist at the site, in order to be assigned to the new registered "
|
91 |
-
"users."
|
92 |
-
msgstr ""
|
93 |
-
"قابل توجه محیط چند سایتی: به منظور اختصاصدادن نقشها به کاربران تازه ثبتنام "
|
94 |
-
"شده، به حسابی بروید که نقشهای پیشفرض دیگر میبایست در سایت موجود باشد."
|
95 |
-
|
96 |
-
#: ../includes/settings-template.php:177
|
97 |
-
msgid "Allow non super administrators to create, edit, and delete users"
|
98 |
-
msgstr "اجازه به مدیران غیر اصلی برای ایجاد، ویرایش و حذف کاربران"
|
99 |
-
|
100 |
-
#: ../includes/class-user-role-editor.php:234
|
101 |
-
msgid "Change role for users without role"
|
102 |
-
msgstr "تغییر نقش برای کاربران بدون نقش"
|
103 |
-
|
104 |
-
#: ../includes/class-user-role-editor.php:235
|
105 |
-
msgid "No rights"
|
106 |
-
msgstr "بدون هیچ حقی"
|
107 |
-
|
108 |
-
#: ../includes/class-user-role-editor.php:236
|
109 |
-
msgid "Provide new role"
|
110 |
-
msgstr "ارائهی نقش جدید"
|
111 |
-
|
112 |
-
#: ../includes/class-user-role-editor.php:320
|
113 |
-
#: ../includes/class-user-role-editor.php:322
|
114 |
-
msgid "You do not have permission to edit this user."
|
115 |
-
msgstr "شما اجازهی ویرایش این کاربر را ندارید."
|
116 |
-
|
117 |
-
#: ../includes/class-user-role-editor.php:460
|
118 |
-
msgid "Capabilities"
|
119 |
-
msgstr "قابلیتها"
|
120 |
-
|
121 |
-
#: ../includes/class-user-role-editor.php:558
|
122 |
-
msgid "Settings"
|
123 |
-
msgstr "تنظیمات"
|
124 |
-
|
125 |
-
#: ../includes/class-user-role-editor.php:569
|
126 |
-
#: ../includes/class-ure-lib.php:2540
|
127 |
-
msgid "Changelog"
|
128 |
-
msgstr "گزارش تغییرات"
|
129 |
-
|
130 |
-
#: ../includes/class-user-role-editor.php:619
|
131 |
-
#: ../includes/class-user-role-editor.php:648
|
132 |
-
#: ../includes/class-user-role-editor.php:1030
|
133 |
-
#: ../includes/class-ure-lib.php:337
|
134 |
-
msgid "User Role Editor"
|
135 |
-
msgstr "ویرایشگر نقش کاربر"
|
136 |
-
|
137 |
-
#: ../includes/class-user-role-editor.php:708
|
138 |
-
#: ../includes/class-user-role-editor.php:726
|
139 |
-
#: ../includes/class-user-role-editor.php:770
|
140 |
-
msgid "User Role Editor options are updated"
|
141 |
-
msgstr "تنظیمات ویرایشگر نقش کاربر بروز شد"
|
142 |
-
|
143 |
-
#: ../includes/class-user-role-editor.php:754
|
144 |
-
msgid "Default Roles are updated"
|
145 |
-
msgstr "نقشهای پیش فرض بروز شدند"
|
146 |
-
|
147 |
-
#: ../includes/class-user-role-editor.php:779
|
148 |
-
msgid ""
|
149 |
-
"You do not have sufficient permissions to manage options for User Role "
|
150 |
-
"Editor."
|
151 |
-
msgstr "شما مجوز کافی برای مدیریت تنظیمات ویرایشگر نقش کاربر را ندارید."
|
152 |
-
|
153 |
-
#: ../includes/class-user-role-editor.php:851
|
154 |
-
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
155 |
-
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
156 |
-
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
157 |
-
msgid "Insufficient permissions to work with User Role Editor"
|
158 |
-
msgstr "مجوز ناکافی برای کار با ویرایشگر نقش کاربر"
|
159 |
-
|
160 |
-
#: ../includes/class-user-role-editor.php:977
|
161 |
-
msgid "Select All"
|
162 |
-
msgstr "انتخاب همه"
|
163 |
-
|
164 |
-
#: ../includes/class-user-role-editor.php:978
|
165 |
-
msgid "Unselect All"
|
166 |
-
msgstr "عدمانتخاب همه"
|
167 |
-
|
168 |
-
#: ../includes/class-user-role-editor.php:979
|
169 |
-
msgid "Reverse"
|
170 |
-
msgstr "وارونه"
|
171 |
-
|
172 |
-
#: ../includes/class-user-role-editor.php:980
|
173 |
-
msgid "Update"
|
174 |
-
msgstr "بروزرسانی"
|
175 |
-
|
176 |
-
#: ../includes/class-user-role-editor.php:981
|
177 |
-
msgid "Please confirm permissions update"
|
178 |
-
msgstr "لطفا مجوز بروزرسانی را تایید کنید"
|
179 |
-
|
180 |
-
#: ../includes/class-user-role-editor.php:982
|
181 |
-
msgid "Add New Role"
|
182 |
-
msgstr "افزودن نقش جدید"
|
183 |
-
|
184 |
-
#: ../includes/class-user-role-editor.php:983
|
185 |
-
#: ../includes/class-user-role-editor.php:988
|
186 |
-
msgid "Rename Role"
|
187 |
-
msgstr "تغییرنام نقش"
|
188 |
-
|
189 |
-
#: ../includes/class-user-role-editor.php:984
|
190 |
-
msgid " Role name (ID) can not be empty!"
|
191 |
-
msgstr " نام نقش (شناسه) نمی تواند خالی باشد!"
|
192 |
-
|
193 |
-
#: ../includes/class-user-role-editor.php:985
|
194 |
-
msgid ""
|
195 |
-
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
196 |
-
"only!"
|
197 |
-
msgstr ""
|
198 |
-
" نام نقش (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
199 |
-
|
200 |
-
#: ../includes/class-user-role-editor.php:986
|
201 |
-
msgid ""
|
202 |
-
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
203 |
-
"it."
|
204 |
-
msgstr ""
|
205 |
-
" وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه کنید."
|
206 |
-
|
207 |
-
#: ../includes/class-user-role-editor.php:987
|
208 |
-
msgid "Add Role"
|
209 |
-
msgstr "افزودن نقش"
|
210 |
-
|
211 |
-
#: ../includes/class-user-role-editor.php:989
|
212 |
-
msgid "Delete Role"
|
213 |
-
msgstr "حذف نقش"
|
214 |
-
|
215 |
-
#: ../includes/class-user-role-editor.php:990
|
216 |
-
msgid "Cancel"
|
217 |
-
msgstr "لغو"
|
218 |
-
|
219 |
-
#: ../includes/class-user-role-editor.php:991
|
220 |
-
msgid "Add Capability"
|
221 |
-
msgstr "افزودن قابلیت"
|
222 |
-
|
223 |
-
#: ../includes/class-user-role-editor.php:992
|
224 |
-
#: ../includes/class-user-role-editor.php:1001
|
225 |
-
msgid "Delete Capability"
|
226 |
-
msgstr "حذف قابلیت"
|
227 |
-
|
228 |
-
#: ../includes/class-user-role-editor.php:993
|
229 |
-
msgid "Reset"
|
230 |
-
msgstr "بازنشانی"
|
231 |
-
|
232 |
-
#: ../includes/class-user-role-editor.php:994
|
233 |
-
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
234 |
-
msgstr "خطر! بازنشانی، تنظیمات پیشفرض را از هستهی وردپرس بازمیگرداند."
|
235 |
-
|
236 |
-
#: ../includes/class-user-role-editor.php:995
|
237 |
-
msgid ""
|
238 |
-
"If any plugins have changed capabilities in any way upon installation (such "
|
239 |
-
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
240 |
-
msgstr ""
|
241 |
-
"اگر هریک از افزونهها پس از نصب به هر نحو قابلیتها را تغییر دهند (مانند "
|
242 |
-
"S2Member ، WooCommerce و بسیاری دیگر) آن قابلیتها حذف خواهند شد!"
|
243 |
-
|
244 |
-
#: ../includes/class-user-role-editor.php:996
|
245 |
-
msgid ""
|
246 |
-
"For more information on how to undo changes and restore plugin capabilities "
|
247 |
-
"go to"
|
248 |
-
msgstr ""
|
249 |
-
"برای کسب اطلاعات بیشتر درباره چگونگی خنثیسازی تغییرات و ترمیمکردن قابلیتها "
|
250 |
-
"مراجعه کنید به"
|
251 |
-
|
252 |
-
#: ../includes/class-user-role-editor.php:998
|
253 |
-
msgid "Continue?"
|
254 |
-
msgstr "ادامه میدهید؟"
|
255 |
-
|
256 |
-
#: ../includes/class-user-role-editor.php:999
|
257 |
-
msgid "Default Role"
|
258 |
-
msgstr "نقش پیشفرض"
|
259 |
-
|
260 |
-
#: ../includes/class-user-role-editor.php:1000
|
261 |
-
msgid "Set New Default Role"
|
262 |
-
msgstr "نشاندن نقش پیشفرض جدید"
|
263 |
-
|
264 |
-
#: ../includes/class-user-role-editor.php:1002
|
265 |
-
msgid ""
|
266 |
-
"Warning! Be careful - removing critical capability could crash some plugin "
|
267 |
-
"or other custom code"
|
268 |
-
msgstr ""
|
269 |
-
"اخطار! مراقب باشید - حذف قابلیت مهم میتواند برخی از افزونهها یا دیگر کدهای "
|
270 |
-
"سفارشی را دچار اشکال کند"
|
271 |
-
|
272 |
-
#: ../includes/class-user-role-editor.php:1003
|
273 |
-
msgid " Capability name (ID) can not be empty!"
|
274 |
-
msgstr " نام قابلیت (شناسه) نمی تواند خالی باشد!"
|
275 |
-
|
276 |
-
#: ../includes/class-user-role-editor.php:1004
|
277 |
-
msgid ""
|
278 |
-
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
279 |
-
"underscore only!"
|
280 |
-
msgstr ""
|
281 |
-
" نام قابلیت (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
282 |
-
|
283 |
-
#: ../includes/class-user-role-editor.php:1033
|
284 |
-
#: ../includes/class-user-role-editor.php:1066
|
285 |
-
msgid "Other Roles"
|
286 |
-
msgstr "دیگر نقشها"
|
287 |
-
|
288 |
-
#: ../includes/class-user-role-editor.php:1047
|
289 |
-
msgid "Edit"
|
290 |
-
msgstr "ویرایش"
|
291 |
-
|
292 |
-
#: ../includes/ure-role-edit.php:17
|
293 |
-
msgid "Select Role and change its capabilities:"
|
294 |
-
msgstr "انتخاب نقش و تغییر قابلیتهای آن:"
|
295 |
-
|
296 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
297 |
-
msgid "Show capabilities in human readable form"
|
298 |
-
msgstr "نمایش قابلیتها در حالت قابل خواندن برای انسان"
|
299 |
-
|
300 |
-
#: ../includes/ure-role-edit.php:44
|
301 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
302 |
-
msgstr "در صورت انتخاب، این عمل به تمامی سایتهای شبکه اعمال میشود"
|
303 |
-
|
304 |
-
#: ../includes/ure-role-edit.php:56
|
305 |
-
msgid "Apply to All Sites"
|
306 |
-
msgstr "اعمال به تمامی سایتها"
|
307 |
-
|
308 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
309 |
-
msgid "Core capabilities:"
|
310 |
-
msgstr "قابلیتهای هسته:"
|
311 |
-
|
312 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
313 |
-
msgid "Quick filter:"
|
314 |
-
msgstr "فیلتر سریع:"
|
315 |
-
|
316 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
317 |
-
msgid "Custom capabilities:"
|
318 |
-
msgstr "قابلیتهای سفارشی:"
|
319 |
-
|
320 |
-
#: ../includes/class-ure-lib.php:245
|
321 |
msgid "Error: wrong request"
|
322 |
msgstr "خطا: درخواست اشتباه"
|
323 |
|
324 |
-
#: ../includes/class-ure-lib.php:
|
325 |
msgid "Role name (ID): "
|
326 |
msgstr "نام نقش (شناسه): "
|
327 |
|
328 |
-
#: ../includes/class-ure-lib.php:
|
329 |
msgid "Display Role Name: "
|
330 |
msgstr "نام نمایشی نقش:"
|
331 |
|
332 |
-
#: ../includes/class-ure-lib.php:
|
333 |
msgid "Make copy of: "
|
334 |
msgstr "ایجاد رونوشت از: "
|
335 |
|
336 |
-
#: ../includes/class-ure-lib.php:
|
337 |
msgid "Select Role:"
|
338 |
msgstr "انتخاب نقش:"
|
339 |
|
340 |
-
#: ../includes/class-ure-lib.php:
|
341 |
msgid "Delete:"
|
342 |
msgstr "حذف:"
|
343 |
|
344 |
-
#: ../includes/class-ure-lib.php:
|
345 |
msgid "Capability name (ID): "
|
346 |
msgstr "نام قابلیت (شناسه): "
|
347 |
|
348 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
349 |
msgid "Error: "
|
350 |
msgstr "خطا: "
|
351 |
|
352 |
-
#: ../includes/class-ure-lib.php:
|
353 |
msgid "Role"
|
354 |
msgstr "نقش"
|
355 |
|
356 |
-
#: ../includes/class-ure-lib.php:
|
357 |
msgid "does not exist"
|
358 |
msgstr "موجود نمیباشد"
|
359 |
|
360 |
-
#: ../includes/class-ure-lib.php:
|
361 |
msgid "Role is updated successfully"
|
362 |
msgstr "نقش با موفقیت بروز شد"
|
363 |
|
364 |
-
#: ../includes/class-ure-lib.php:
|
365 |
msgid "Roles are updated for all network"
|
366 |
msgstr "نقشها برای تمامی شبکه بروز شد"
|
367 |
|
368 |
-
#: ../includes/class-ure-lib.php:
|
369 |
msgid "Error occured during role(s) update"
|
370 |
msgstr "خطایی در هنگام بروزسانی نقش(ها) رخ داد"
|
371 |
|
372 |
-
#: ../includes/class-ure-lib.php:
|
373 |
msgid "User capabilities are updated successfully"
|
374 |
msgstr "قابلیتهای کاربر با موفقیت بروز شدند"
|
375 |
|
376 |
-
#: ../includes/class-ure-lib.php:
|
377 |
msgid "Error occured during user update"
|
378 |
msgstr "خطایی در هنگام بروزرسانی کاربر رخ داد"
|
379 |
|
380 |
-
#: ../includes/class-ure-lib.php:
|
381 |
msgid "User Roles are restored to WordPress default values. "
|
382 |
msgstr "نقشهای کاربر به مقدار پیشفرض وردپرس ترمیم شد."
|
383 |
|
384 |
-
#: ../includes/class-ure-lib.php:
|
385 |
msgid "read about"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: ../includes/class-ure-lib.php:
|
389 |
msgid "user capability"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: ../includes/class-ure-lib.php:
|
393 |
msgid "Help"
|
394 |
msgstr "راهنما"
|
395 |
|
396 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
397 |
msgid "Error is occur. Please check the log file."
|
398 |
msgstr "خطایی رخ داده است. لطفا فایل گزارش را چک کنید."
|
399 |
|
400 |
-
#: ../includes/class-ure-lib.php:
|
401 |
msgid ""
|
402 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
403 |
"only!"
|
404 |
msgstr ""
|
405 |
"خطا: شناسهی نقش باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
406 |
|
407 |
-
#: ../includes/class-ure-lib.php:
|
408 |
msgid ""
|
409 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
410 |
"characters to it."
|
@@ -412,399 +126,456 @@ msgstr ""
|
|
412 |
"خطا: وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه "
|
413 |
"کنید."
|
414 |
|
415 |
-
#: ../includes/class-ure-lib.php:
|
416 |
#, php-format
|
417 |
msgid "Role %s exists already"
|
418 |
msgstr "نقش %s از پیش موجود است"
|
419 |
|
420 |
-
#: ../includes/class-ure-lib.php:
|
421 |
msgid "Error is encountered during new role create operation"
|
422 |
msgstr "با خطایی در هنگام عملیات ساخت نقش جدید روبرو شدیم"
|
423 |
|
424 |
-
#: ../includes/class-ure-lib.php:
|
425 |
#, php-format
|
426 |
msgid "Role %s is created successfully"
|
427 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
428 |
|
429 |
-
#: ../includes/class-ure-lib.php:
|
430 |
msgid "Error: Role ID is empty!"
|
431 |
msgstr "خطا: شناسهی نقش خالی است!"
|
432 |
|
433 |
-
#: ../includes/class-ure-lib.php:
|
434 |
msgid "Error: Empty role display name is not allowed."
|
435 |
msgstr "خطا: خالی بودن نام نمایشی نقش مجاز نیست."
|
436 |
|
437 |
-
#: ../includes/class-ure-lib.php:
|
438 |
#, php-format
|
439 |
msgid "Role %s does not exists"
|
440 |
msgstr "نقش %s موجود نیست"
|
441 |
|
442 |
-
#: ../includes/class-ure-lib.php:
|
443 |
#, php-format
|
444 |
msgid "Role %s is renamed to %s successfully"
|
445 |
msgstr "نقش %s با موفقیت به %s تغییرنام داده شد"
|
446 |
|
447 |
-
#: ../includes/class-ure-lib.php:
|
448 |
msgid "Error encountered during role delete operation"
|
449 |
msgstr "با خطایی در هنگام عملیات حذف نقش روبرو شدیم"
|
450 |
|
451 |
-
#: ../includes/class-ure-lib.php:
|
452 |
msgid "Unused roles are deleted successfully"
|
453 |
msgstr "نقشهای استفاده نشده با موفقیت حذف شدند"
|
454 |
|
455 |
-
#: ../includes/class-ure-lib.php:
|
456 |
#, php-format
|
457 |
msgid "Role %s is deleted successfully"
|
458 |
msgstr "نقش %s با موفقیت حذف شد"
|
459 |
|
460 |
-
#: ../includes/class-ure-lib.php:
|
461 |
msgid "Error encountered during default role change operation"
|
462 |
msgstr "با خطایی در هنگام عملیات تغییر نقش پیشفرض روبرو شدیم"
|
463 |
|
464 |
-
#: ../includes/class-ure-lib.php:
|
465 |
#, php-format
|
466 |
msgid "Default role for new users is set to %s successfully"
|
467 |
msgstr "نقش پیشفرض برای کاربران جدید با موفقیت روی %s تنظیم شد"
|
468 |
|
469 |
-
#: ../includes/class-ure-lib.php:
|
470 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
471 |
msgstr "ویرایشگر"
|
472 |
|
473 |
-
#: ../includes/class-ure-lib.php:
|
474 |
msgid "Author"
|
475 |
msgstr "نویسنده"
|
476 |
|
477 |
-
#: ../includes/class-ure-lib.php:
|
478 |
msgid "Contributor"
|
479 |
msgstr "مشارکتکننده"
|
480 |
|
481 |
-
#: ../includes/class-ure-lib.php:
|
482 |
msgid "Subscriber"
|
483 |
msgstr "مشترک"
|
484 |
|
485 |
-
#: ../includes/class-ure-lib.php:
|
486 |
msgid "Switch themes"
|
487 |
msgstr "تغییر پوستهها"
|
488 |
|
489 |
-
#: ../includes/class-ure-lib.php:
|
490 |
msgid "Edit themes"
|
491 |
msgstr "ویرایش پوستهها"
|
492 |
|
493 |
-
#: ../includes/class-ure-lib.php:
|
494 |
msgid "Activate plugins"
|
495 |
msgstr "فعالسازی افزونهها"
|
496 |
|
497 |
-
#: ../includes/class-ure-lib.php:
|
498 |
msgid "Edit plugins"
|
499 |
msgstr "ویرایش افزونهها"
|
500 |
|
501 |
-
#: ../includes/class-ure-lib.php:
|
502 |
msgid "Edit users"
|
503 |
msgstr "ویرایش کاربران"
|
504 |
|
505 |
-
#: ../includes/class-ure-lib.php:
|
506 |
msgid "Edit files"
|
507 |
msgstr "ویرایش فایلها"
|
508 |
|
509 |
-
#: ../includes/class-ure-lib.php:
|
510 |
msgid "Manage options"
|
511 |
msgstr "مدیریت تنظیمات"
|
512 |
|
513 |
-
#: ../includes/class-ure-lib.php:
|
514 |
msgid "Moderate comments"
|
515 |
msgstr "مدیریت دیدگاهها"
|
516 |
|
517 |
-
#: ../includes/class-ure-lib.php:
|
518 |
msgid "Manage categories"
|
519 |
msgstr "مدیریت دستهها"
|
520 |
|
521 |
-
#: ../includes/class-ure-lib.php:
|
522 |
msgid "Manage links"
|
523 |
msgstr "مدیریت پیوندها"
|
524 |
|
525 |
-
#: ../includes/class-ure-lib.php:
|
526 |
msgid "Upload files"
|
527 |
msgstr "بارگذاری فایلها"
|
528 |
|
529 |
-
#: ../includes/class-ure-lib.php:
|
530 |
msgid "Import"
|
531 |
msgstr "درونریزی"
|
532 |
|
533 |
-
#: ../includes/class-ure-lib.php:
|
534 |
msgid "Unfiltered html"
|
535 |
msgstr "اچتیامال فیلترنشده"
|
536 |
|
537 |
-
#: ../includes/class-ure-lib.php:
|
538 |
msgid "Edit posts"
|
539 |
msgstr "ویرایش نوشتهها"
|
540 |
|
541 |
-
#: ../includes/class-ure-lib.php:
|
542 |
msgid "Edit others posts"
|
543 |
msgstr "ویرایش نوشتهی دیگران"
|
544 |
|
545 |
-
#: ../includes/class-ure-lib.php:
|
546 |
msgid "Edit published posts"
|
547 |
msgstr "ویرایش نوشتههای منتشرشده"
|
548 |
|
549 |
-
#: ../includes/class-ure-lib.php:
|
550 |
msgid "Publish posts"
|
551 |
msgstr "انتشار نوشتهها"
|
552 |
|
553 |
-
#: ../includes/class-ure-lib.php:
|
554 |
msgid "Edit pages"
|
555 |
msgstr "ویرایش صفحات"
|
556 |
|
557 |
-
#: ../includes/class-ure-lib.php:
|
558 |
msgid "Read"
|
559 |
msgstr "خواندن"
|
560 |
|
561 |
-
#: ../includes/class-ure-lib.php:
|
562 |
msgid "Level 10"
|
563 |
msgstr "سطح ۱۰"
|
564 |
|
565 |
-
#: ../includes/class-ure-lib.php:
|
566 |
msgid "Level 9"
|
567 |
msgstr "سطح ۹"
|
568 |
|
569 |
-
#: ../includes/class-ure-lib.php:
|
570 |
msgid "Level 8"
|
571 |
msgstr "سطح ۸"
|
572 |
|
573 |
-
#: ../includes/class-ure-lib.php:
|
574 |
msgid "Level 7"
|
575 |
msgstr "سطح ۷"
|
576 |
|
577 |
-
#: ../includes/class-ure-lib.php:
|
578 |
msgid "Level 6"
|
579 |
msgstr "سطح ۶"
|
580 |
|
581 |
-
#: ../includes/class-ure-lib.php:
|
582 |
msgid "Level 5"
|
583 |
msgstr "سطح ۵"
|
584 |
|
585 |
-
#: ../includes/class-ure-lib.php:
|
586 |
msgid "Level 4"
|
587 |
msgstr "سطح ۴"
|
588 |
|
589 |
-
#: ../includes/class-ure-lib.php:
|
590 |
msgid "Level 3"
|
591 |
msgstr "سطح ۳"
|
592 |
|
593 |
-
#: ../includes/class-ure-lib.php:
|
594 |
msgid "Level 2"
|
595 |
msgstr "سطح ۲"
|
596 |
|
597 |
-
#: ../includes/class-ure-lib.php:
|
598 |
msgid "Level 1"
|
599 |
msgstr "سطح ۱"
|
600 |
|
601 |
-
#: ../includes/class-ure-lib.php:
|
602 |
msgid "Level 0"
|
603 |
msgstr "سطح ۰"
|
604 |
|
605 |
-
#: ../includes/class-ure-lib.php:
|
606 |
msgid "Edit others pages"
|
607 |
msgstr "ویرایش برگههای دیگران"
|
608 |
|
609 |
-
#: ../includes/class-ure-lib.php:
|
610 |
msgid "Edit published pages"
|
611 |
msgstr "ویرایش برگههای منتشرشده"
|
612 |
|
613 |
-
#: ../includes/class-ure-lib.php:
|
614 |
msgid "Publish pages"
|
615 |
msgstr "انتشار برگهها"
|
616 |
|
617 |
-
#: ../includes/class-ure-lib.php:
|
618 |
msgid "Delete pages"
|
619 |
msgstr "حذف برگهها"
|
620 |
|
621 |
-
#: ../includes/class-ure-lib.php:
|
622 |
msgid "Delete others pages"
|
623 |
msgstr "حذف برگههای دیگران"
|
624 |
|
625 |
-
#: ../includes/class-ure-lib.php:
|
626 |
msgid "Delete published pages"
|
627 |
msgstr "حذف برگههای منتشرشده"
|
628 |
|
629 |
-
#: ../includes/class-ure-lib.php:
|
630 |
msgid "Delete posts"
|
631 |
msgstr "حذف برگهها"
|
632 |
|
633 |
-
#: ../includes/class-ure-lib.php:
|
634 |
msgid "Delete others posts"
|
635 |
msgstr "حذف نوشتههای دیگران"
|
636 |
|
637 |
-
#: ../includes/class-ure-lib.php:
|
638 |
msgid "Delete published posts"
|
639 |
msgstr "حذف نوشتههای منتشرشده"
|
640 |
|
641 |
-
#: ../includes/class-ure-lib.php:
|
642 |
msgid "Delete private posts"
|
643 |
msgstr "حذف نوشتههای خصوصی"
|
644 |
|
645 |
-
#: ../includes/class-ure-lib.php:
|
646 |
msgid "Edit private posts"
|
647 |
msgstr "ویرایش نوشتههای خصوصی"
|
648 |
|
649 |
-
#: ../includes/class-ure-lib.php:
|
650 |
msgid "Read private posts"
|
651 |
msgstr "خواندن نوشتههای خصوصی"
|
652 |
|
653 |
-
#: ../includes/class-ure-lib.php:
|
654 |
msgid "Delete private pages"
|
655 |
msgstr "حذف برگههای خصوصی"
|
656 |
|
657 |
-
#: ../includes/class-ure-lib.php:
|
658 |
msgid "Edit private pages"
|
659 |
msgstr "ویرایش برگههای خصوصی"
|
660 |
|
661 |
-
#: ../includes/class-ure-lib.php:
|
662 |
msgid "Read private pages"
|
663 |
msgstr "خواندن برگههای خصوصی"
|
664 |
|
665 |
-
#: ../includes/class-ure-lib.php:
|
666 |
msgid "Delete users"
|
667 |
msgstr "حذف کاربران"
|
668 |
|
669 |
-
#: ../includes/class-ure-lib.php:
|
670 |
msgid "Create users"
|
671 |
msgstr "ایجاد کاربران"
|
672 |
|
673 |
-
#: ../includes/class-ure-lib.php:
|
674 |
msgid "Unfiltered upload"
|
675 |
msgstr "بارگذاری فیلترشده"
|
676 |
|
677 |
-
#: ../includes/class-ure-lib.php:
|
678 |
msgid "Edit dashboard"
|
679 |
msgstr "ویرایش پیشخوان"
|
680 |
|
681 |
-
#: ../includes/class-ure-lib.php:
|
682 |
msgid "Update plugins"
|
683 |
msgstr "بروزرسانی افزونهها"
|
684 |
|
685 |
-
#: ../includes/class-ure-lib.php:
|
686 |
msgid "Delete plugins"
|
687 |
msgstr "حذف افزونهها"
|
688 |
|
689 |
-
#: ../includes/class-ure-lib.php:
|
690 |
msgid "Install plugins"
|
691 |
msgstr "نصب افزونهها"
|
692 |
|
693 |
-
#: ../includes/class-ure-lib.php:
|
694 |
msgid "Update themes"
|
695 |
msgstr "بروزرسانی پوستهها"
|
696 |
|
697 |
-
#: ../includes/class-ure-lib.php:
|
698 |
msgid "Install themes"
|
699 |
msgstr "نصب پوستهها"
|
700 |
|
701 |
-
#: ../includes/class-ure-lib.php:
|
702 |
msgid "Update core"
|
703 |
msgstr "بروزرسانی هسته"
|
704 |
|
705 |
-
#: ../includes/class-ure-lib.php:
|
706 |
msgid "List users"
|
707 |
msgstr "فهرست کاربران"
|
708 |
|
709 |
-
#: ../includes/class-ure-lib.php:
|
710 |
msgid "Remove users"
|
711 |
msgstr "حذف کابران"
|
712 |
|
713 |
-
#: ../includes/class-ure-lib.php:
|
714 |
msgid "Add users"
|
715 |
msgstr "افزودن کاربران"
|
716 |
|
717 |
-
#: ../includes/class-ure-lib.php:
|
718 |
msgid "Promote users"
|
719 |
msgstr "ارتقاء کاربران"
|
720 |
|
721 |
-
#: ../includes/class-ure-lib.php:
|
722 |
msgid "Edit theme options"
|
723 |
msgstr "ویرایش تنظیمات پوسته"
|
724 |
|
725 |
-
#: ../includes/class-ure-lib.php:
|
726 |
msgid "Delete themes"
|
727 |
msgstr "حذف پوستهها"
|
728 |
|
729 |
-
#: ../includes/class-ure-lib.php:
|
730 |
msgid "Export"
|
731 |
msgstr "برونریزی"
|
732 |
|
733 |
-
#: ../includes/class-ure-lib.php:
|
734 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
735 |
msgstr "خطا: نام قابلیت باید فقط شامل حروف لاتین و اعداد باشد!"
|
736 |
|
737 |
-
#: ../includes/class-ure-lib.php:
|
738 |
#, php-format
|
739 |
msgid "Capability %s is added successfully"
|
740 |
msgstr "قابلیت %s با موفقیت افزوده شد"
|
741 |
|
742 |
-
#: ../includes/class-ure-lib.php:
|
743 |
#, php-format
|
744 |
msgid "Capability %s exists already"
|
745 |
msgstr "قابلیت %s از پیش موجود است"
|
746 |
|
747 |
-
#: ../includes/class-ure-lib.php:
|
748 |
#, php-format
|
749 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
750 |
msgstr "خطا! شما اجازهی حذف این قابلیت را ندارید: %s!"
|
751 |
|
752 |
-
#: ../includes/class-ure-lib.php:
|
753 |
-
#, php-format
|
754 |
-
msgid "Capability %s
|
755 |
msgstr "قابلیت %s با موفقیت حذف شد"
|
756 |
|
757 |
-
#: ../includes/class-ure-lib.php:
|
758 |
msgid "Version:"
|
759 |
msgstr "نسخه:"
|
760 |
|
761 |
-
#: ../includes/class-ure-lib.php:
|
762 |
msgid "Author's website"
|
763 |
msgstr "وبگاه نویسنده"
|
764 |
|
765 |
-
#: ../includes/class-ure-lib.php:
|
766 |
msgid "Plugin webpage"
|
767 |
msgstr "برگهی افزونه"
|
768 |
|
769 |
-
#: ../includes/class-ure-lib.php:
|
770 |
msgid "Plugin download"
|
771 |
msgstr "بارگیری افزونه"
|
772 |
|
773 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
774 |
msgid "FAQ"
|
775 |
msgstr "سوالات مکرر"
|
776 |
|
777 |
-
#: ../includes/class-ure-lib.php:
|
778 |
-
msgid "None"
|
779 |
-
msgstr "هیچکدام"
|
780 |
-
|
781 |
-
#: ../includes/class-ure-lib.php:2616
|
782 |
msgid "Delete All Unused Roles"
|
783 |
msgstr "حذف همهی نقشهای استفادهنشده"
|
784 |
|
785 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
786 |
msgid "— No role for this site —"
|
787 |
msgstr "— هیچ نقشی برای این سایت —"
|
788 |
|
789 |
-
#: ../includes/ure-
|
790 |
-
|
791 |
-
|
|
|
792 |
|
793 |
-
#: ../includes/ure-
|
794 |
-
msgid "
|
795 |
-
msgstr "تغییر
|
796 |
|
797 |
-
#: ../includes/ure-user-edit.php:
|
798 |
-
msgid "
|
799 |
-
msgstr "
|
800 |
|
801 |
-
#: ../includes/ure-
|
802 |
-
|
803 |
-
|
|
|
804 |
|
805 |
-
#: ../includes/ure-
|
806 |
-
msgid "
|
807 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
808 |
|
809 |
#: ../includes/class-ure-screen-help.php:12
|
810 |
#: ../includes/class-ure-screen-help.php:41
|
@@ -813,6 +584,11 @@ msgstr "دیگر نقشها:"
|
|
813 |
msgid "User Role Editor Options page help"
|
814 |
msgstr ""
|
815 |
|
|
|
|
|
|
|
|
|
|
|
816 |
#: ../includes/class-ure-screen-help.php:16
|
817 |
msgid ""
|
818 |
"turn this option on in order to make the \"Administrator\" role available at "
|
@@ -822,6 +598,11 @@ msgstr ""
|
|
822 |
"به منظور قابل دسترس شدن نقش «مدیر» در فهرست کشویی ویرایشگر نقش کاربر این "
|
823 |
"گزینه را روشن کنید. این امکان به دلیل مسائل امنیتی بهطور پیشفرض مخفی است."
|
824 |
|
|
|
|
|
|
|
|
|
|
|
825 |
#: ../includes/class-ure-screen-help.php:19
|
826 |
msgid ""
|
827 |
"automatically converts capability names from the technical form for internal "
|
@@ -844,6 +625,11 @@ msgstr ""
|
|
844 |
"کد افزونهها باقی گذاشته شدهاند. روشن کردن این گزینه، آن قابلیتهای بد دانسته "
|
845 |
"شده را نمایش میدهد."
|
846 |
|
|
|
|
|
|
|
|
|
|
|
847 |
#: ../includes/class-ure-screen-help.php:26
|
848 |
msgid ""
|
849 |
"If turned off - capabilities section of selected user is shown in readonly "
|
@@ -854,6 +640,11 @@ msgstr ""
|
|
854 |
"داده میشود. مدیران به طور مستقیم نمیتوانند به کاربر قابلیتی اختصاص دهند. او "
|
855 |
"باید تنها از نقشها استفاده کند."
|
856 |
|
|
|
|
|
|
|
|
|
|
|
857 |
#: ../includes/class-ure-screen-help.php:46
|
858 |
msgid ""
|
859 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
@@ -889,6 +680,240 @@ msgstr ""
|
|
889 |
"در وردپرس چندسایتی به طور پیشفرض تنها مدیر اصلی اجازهی ایجاد، ویرایش و حذف "
|
890 |
"کاربران را دارد. برای حذف این محدودیت این گزینه را روشن کنید."
|
891 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
892 |
#, fuzzy
|
893 |
#~ msgid "select roles below"
|
894 |
#~ msgstr "عدمانتخاب همه"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-11 21:06+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: Morteza Gholami <Morteza.Gholami@Yahoo.Com>\n"
|
9 |
"Language: fa_IR\n"
|
10 |
"MIME-Version: 1.0\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
"X-Poedit-SearchPath-1: ..\n"
|
20 |
|
21 |
+
#: ../includes/class-ure-lib.php:247
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
msgid "Error: wrong request"
|
23 |
msgstr "خطا: درخواست اشتباه"
|
24 |
|
25 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
26 |
msgid "Role name (ID): "
|
27 |
msgstr "نام نقش (شناسه): "
|
28 |
|
29 |
+
#: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
|
30 |
msgid "Display Role Name: "
|
31 |
msgstr "نام نمایشی نقش:"
|
32 |
|
33 |
+
#: ../includes/class-ure-lib.php:284
|
34 |
msgid "Make copy of: "
|
35 |
msgstr "ایجاد رونوشت از: "
|
36 |
|
37 |
+
#: ../includes/class-ure-lib.php:300
|
38 |
msgid "Select Role:"
|
39 |
msgstr "انتخاب نقش:"
|
40 |
|
41 |
+
#: ../includes/class-ure-lib.php:315
|
42 |
msgid "Delete:"
|
43 |
msgstr "حذف:"
|
44 |
|
45 |
+
#: ../includes/class-ure-lib.php:322
|
46 |
msgid "Capability name (ID): "
|
47 |
msgstr "نام قابلیت (شناسه): "
|
48 |
|
49 |
+
#: ../includes/class-ure-lib.php:339
|
50 |
+
#: ../includes/class-user-role-editor.php:596
|
51 |
+
#: ../includes/class-user-role-editor.php:625
|
52 |
+
msgid "User Role Editor"
|
53 |
+
msgstr "ویرایشگر نقش کاربر"
|
54 |
+
|
55 |
+
#: ../includes/class-ure-lib.php:436
|
56 |
msgid "Error: "
|
57 |
msgstr "خطا: "
|
58 |
|
59 |
+
#: ../includes/class-ure-lib.php:436
|
60 |
msgid "Role"
|
61 |
msgstr "نقش"
|
62 |
|
63 |
+
#: ../includes/class-ure-lib.php:437
|
64 |
msgid "does not exist"
|
65 |
msgstr "موجود نمیباشد"
|
66 |
|
67 |
+
#: ../includes/class-ure-lib.php:480
|
68 |
msgid "Role is updated successfully"
|
69 |
msgstr "نقش با موفقیت بروز شد"
|
70 |
|
71 |
+
#: ../includes/class-ure-lib.php:482
|
72 |
msgid "Roles are updated for all network"
|
73 |
msgstr "نقشها برای تمامی شبکه بروز شد"
|
74 |
|
75 |
+
#: ../includes/class-ure-lib.php:488
|
76 |
msgid "Error occured during role(s) update"
|
77 |
msgstr "خطایی در هنگام بروزسانی نقش(ها) رخ داد"
|
78 |
|
79 |
+
#: ../includes/class-ure-lib.php:495
|
80 |
msgid "User capabilities are updated successfully"
|
81 |
msgstr "قابلیتهای کاربر با موفقیت بروز شدند"
|
82 |
|
83 |
+
#: ../includes/class-ure-lib.php:500
|
84 |
msgid "Error occured during user update"
|
85 |
msgstr "خطایی در هنگام بروزرسانی کاربر رخ داد"
|
86 |
|
87 |
+
#: ../includes/class-ure-lib.php:558
|
88 |
msgid "User Roles are restored to WordPress default values. "
|
89 |
msgstr "نقشهای کاربر به مقدار پیشفرض وردپرس ترمیم شد."
|
90 |
|
91 |
+
#: ../includes/class-ure-lib.php:1436
|
92 |
msgid "read about"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: ../includes/class-ure-lib.php:1437
|
96 |
msgid "user capability"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: ../includes/class-ure-lib.php:1438
|
100 |
msgid "Help"
|
101 |
msgstr "راهنما"
|
102 |
|
103 |
+
#: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
|
104 |
+
#: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
|
105 |
+
#: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
|
106 |
+
#: ../includes/class-user-role-editor.php:828
|
107 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
108 |
+
msgstr "مجوز ناکافی برای کار با ویرایشگر نقش کاربر"
|
109 |
+
|
110 |
+
#: ../includes/class-ure-lib.php:1909
|
111 |
msgid "Error is occur. Please check the log file."
|
112 |
msgstr "خطایی رخ داده است. لطفا فایل گزارش را چک کنید."
|
113 |
|
114 |
+
#: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
|
115 |
msgid ""
|
116 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
117 |
"only!"
|
118 |
msgstr ""
|
119 |
"خطا: شناسهی نقش باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
120 |
|
121 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
122 |
msgid ""
|
123 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
124 |
"characters to it."
|
126 |
"خطا: وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه "
|
127 |
"کنید."
|
128 |
|
129 |
+
#: ../includes/class-ure-lib.php:1974
|
130 |
#, php-format
|
131 |
msgid "Role %s exists already"
|
132 |
msgstr "نقش %s از پیش موجود است"
|
133 |
|
134 |
+
#: ../includes/class-ure-lib.php:1989
|
135 |
msgid "Error is encountered during new role create operation"
|
136 |
msgstr "با خطایی در هنگام عملیات ساخت نقش جدید روبرو شدیم"
|
137 |
|
138 |
+
#: ../includes/class-ure-lib.php:1991
|
139 |
#, php-format
|
140 |
msgid "Role %s is created successfully"
|
141 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
142 |
|
143 |
+
#: ../includes/class-ure-lib.php:2015
|
144 |
msgid "Error: Role ID is empty!"
|
145 |
msgstr "خطا: شناسهی نقش خالی است!"
|
146 |
|
147 |
+
#: ../includes/class-ure-lib.php:2033
|
148 |
msgid "Error: Empty role display name is not allowed."
|
149 |
msgstr "خطا: خالی بودن نام نمایشی نقش مجاز نیست."
|
150 |
|
151 |
+
#: ../includes/class-ure-lib.php:2040
|
152 |
#, php-format
|
153 |
msgid "Role %s does not exists"
|
154 |
msgstr "نقش %s موجود نیست"
|
155 |
|
156 |
+
#: ../includes/class-ure-lib.php:2048
|
157 |
#, php-format
|
158 |
msgid "Role %s is renamed to %s successfully"
|
159 |
msgstr "نقش %s با موفقیت به %s تغییرنام داده شد"
|
160 |
|
161 |
+
#: ../includes/class-ure-lib.php:2121
|
162 |
msgid "Error encountered during role delete operation"
|
163 |
msgstr "با خطایی در هنگام عملیات حذف نقش روبرو شدیم"
|
164 |
|
165 |
+
#: ../includes/class-ure-lib.php:2123
|
166 |
msgid "Unused roles are deleted successfully"
|
167 |
msgstr "نقشهای استفاده نشده با موفقیت حذف شدند"
|
168 |
|
169 |
+
#: ../includes/class-ure-lib.php:2125
|
170 |
#, php-format
|
171 |
msgid "Role %s is deleted successfully"
|
172 |
msgstr "نقش %s با موفقیت حذف شد"
|
173 |
|
174 |
+
#: ../includes/class-ure-lib.php:2153
|
175 |
msgid "Error encountered during default role change operation"
|
176 |
msgstr "با خطایی در هنگام عملیات تغییر نقش پیشفرض روبرو شدیم"
|
177 |
|
178 |
+
#: ../includes/class-ure-lib.php:2156
|
179 |
#, php-format
|
180 |
msgid "Default role for new users is set to %s successfully"
|
181 |
msgstr "نقش پیشفرض برای کاربران جدید با موفقیت روی %s تنظیم شد"
|
182 |
|
183 |
+
#: ../includes/class-ure-lib.php:2159
|
184 |
+
#, fuzzy
|
185 |
+
msgid "Can not set Administrator role as a default one"
|
186 |
+
msgstr "نمایش نقش مدیر در ویرایشگر نقش کاربر"
|
187 |
+
|
188 |
+
#: ../includes/class-ure-lib.php:2161
|
189 |
+
#, fuzzy
|
190 |
+
msgid "This role does not exist - "
|
191 |
+
msgstr "نقش %s موجود نیست"
|
192 |
+
|
193 |
+
#: ../includes/class-ure-lib.php:2177
|
194 |
+
msgid "Editor"
|
195 |
msgstr "ویرایشگر"
|
196 |
|
197 |
+
#: ../includes/class-ure-lib.php:2178
|
198 |
msgid "Author"
|
199 |
msgstr "نویسنده"
|
200 |
|
201 |
+
#: ../includes/class-ure-lib.php:2179
|
202 |
msgid "Contributor"
|
203 |
msgstr "مشارکتکننده"
|
204 |
|
205 |
+
#: ../includes/class-ure-lib.php:2180
|
206 |
msgid "Subscriber"
|
207 |
msgstr "مشترک"
|
208 |
|
209 |
+
#: ../includes/class-ure-lib.php:2182
|
210 |
msgid "Switch themes"
|
211 |
msgstr "تغییر پوستهها"
|
212 |
|
213 |
+
#: ../includes/class-ure-lib.php:2183
|
214 |
msgid "Edit themes"
|
215 |
msgstr "ویرایش پوستهها"
|
216 |
|
217 |
+
#: ../includes/class-ure-lib.php:2184
|
218 |
msgid "Activate plugins"
|
219 |
msgstr "فعالسازی افزونهها"
|
220 |
|
221 |
+
#: ../includes/class-ure-lib.php:2185
|
222 |
msgid "Edit plugins"
|
223 |
msgstr "ویرایش افزونهها"
|
224 |
|
225 |
+
#: ../includes/class-ure-lib.php:2186
|
226 |
msgid "Edit users"
|
227 |
msgstr "ویرایش کاربران"
|
228 |
|
229 |
+
#: ../includes/class-ure-lib.php:2187
|
230 |
msgid "Edit files"
|
231 |
msgstr "ویرایش فایلها"
|
232 |
|
233 |
+
#: ../includes/class-ure-lib.php:2188
|
234 |
msgid "Manage options"
|
235 |
msgstr "مدیریت تنظیمات"
|
236 |
|
237 |
+
#: ../includes/class-ure-lib.php:2189
|
238 |
msgid "Moderate comments"
|
239 |
msgstr "مدیریت دیدگاهها"
|
240 |
|
241 |
+
#: ../includes/class-ure-lib.php:2190
|
242 |
msgid "Manage categories"
|
243 |
msgstr "مدیریت دستهها"
|
244 |
|
245 |
+
#: ../includes/class-ure-lib.php:2191
|
246 |
msgid "Manage links"
|
247 |
msgstr "مدیریت پیوندها"
|
248 |
|
249 |
+
#: ../includes/class-ure-lib.php:2192
|
250 |
msgid "Upload files"
|
251 |
msgstr "بارگذاری فایلها"
|
252 |
|
253 |
+
#: ../includes/class-ure-lib.php:2193
|
254 |
msgid "Import"
|
255 |
msgstr "درونریزی"
|
256 |
|
257 |
+
#: ../includes/class-ure-lib.php:2194
|
258 |
msgid "Unfiltered html"
|
259 |
msgstr "اچتیامال فیلترنشده"
|
260 |
|
261 |
+
#: ../includes/class-ure-lib.php:2195
|
262 |
msgid "Edit posts"
|
263 |
msgstr "ویرایش نوشتهها"
|
264 |
|
265 |
+
#: ../includes/class-ure-lib.php:2196
|
266 |
msgid "Edit others posts"
|
267 |
msgstr "ویرایش نوشتهی دیگران"
|
268 |
|
269 |
+
#: ../includes/class-ure-lib.php:2197
|
270 |
msgid "Edit published posts"
|
271 |
msgstr "ویرایش نوشتههای منتشرشده"
|
272 |
|
273 |
+
#: ../includes/class-ure-lib.php:2198
|
274 |
msgid "Publish posts"
|
275 |
msgstr "انتشار نوشتهها"
|
276 |
|
277 |
+
#: ../includes/class-ure-lib.php:2199
|
278 |
msgid "Edit pages"
|
279 |
msgstr "ویرایش صفحات"
|
280 |
|
281 |
+
#: ../includes/class-ure-lib.php:2200
|
282 |
msgid "Read"
|
283 |
msgstr "خواندن"
|
284 |
|
285 |
+
#: ../includes/class-ure-lib.php:2201
|
286 |
msgid "Level 10"
|
287 |
msgstr "سطح ۱۰"
|
288 |
|
289 |
+
#: ../includes/class-ure-lib.php:2202
|
290 |
msgid "Level 9"
|
291 |
msgstr "سطح ۹"
|
292 |
|
293 |
+
#: ../includes/class-ure-lib.php:2203
|
294 |
msgid "Level 8"
|
295 |
msgstr "سطح ۸"
|
296 |
|
297 |
+
#: ../includes/class-ure-lib.php:2204
|
298 |
msgid "Level 7"
|
299 |
msgstr "سطح ۷"
|
300 |
|
301 |
+
#: ../includes/class-ure-lib.php:2205
|
302 |
msgid "Level 6"
|
303 |
msgstr "سطح ۶"
|
304 |
|
305 |
+
#: ../includes/class-ure-lib.php:2206
|
306 |
msgid "Level 5"
|
307 |
msgstr "سطح ۵"
|
308 |
|
309 |
+
#: ../includes/class-ure-lib.php:2207
|
310 |
msgid "Level 4"
|
311 |
msgstr "سطح ۴"
|
312 |
|
313 |
+
#: ../includes/class-ure-lib.php:2208
|
314 |
msgid "Level 3"
|
315 |
msgstr "سطح ۳"
|
316 |
|
317 |
+
#: ../includes/class-ure-lib.php:2209
|
318 |
msgid "Level 2"
|
319 |
msgstr "سطح ۲"
|
320 |
|
321 |
+
#: ../includes/class-ure-lib.php:2210
|
322 |
msgid "Level 1"
|
323 |
msgstr "سطح ۱"
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:2211
|
326 |
msgid "Level 0"
|
327 |
msgstr "سطح ۰"
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:2212
|
330 |
msgid "Edit others pages"
|
331 |
msgstr "ویرایش برگههای دیگران"
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:2213
|
334 |
msgid "Edit published pages"
|
335 |
msgstr "ویرایش برگههای منتشرشده"
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:2214
|
338 |
msgid "Publish pages"
|
339 |
msgstr "انتشار برگهها"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:2215
|
342 |
msgid "Delete pages"
|
343 |
msgstr "حذف برگهها"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:2216
|
346 |
msgid "Delete others pages"
|
347 |
msgstr "حذف برگههای دیگران"
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:2217
|
350 |
msgid "Delete published pages"
|
351 |
msgstr "حذف برگههای منتشرشده"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:2218
|
354 |
msgid "Delete posts"
|
355 |
msgstr "حذف برگهها"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:2219
|
358 |
msgid "Delete others posts"
|
359 |
msgstr "حذف نوشتههای دیگران"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:2220
|
362 |
msgid "Delete published posts"
|
363 |
msgstr "حذف نوشتههای منتشرشده"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:2221
|
366 |
msgid "Delete private posts"
|
367 |
msgstr "حذف نوشتههای خصوصی"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:2222
|
370 |
msgid "Edit private posts"
|
371 |
msgstr "ویرایش نوشتههای خصوصی"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:2223
|
374 |
msgid "Read private posts"
|
375 |
msgstr "خواندن نوشتههای خصوصی"
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:2224
|
378 |
msgid "Delete private pages"
|
379 |
msgstr "حذف برگههای خصوصی"
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:2225
|
382 |
msgid "Edit private pages"
|
383 |
msgstr "ویرایش برگههای خصوصی"
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:2226
|
386 |
msgid "Read private pages"
|
387 |
msgstr "خواندن برگههای خصوصی"
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:2227
|
390 |
msgid "Delete users"
|
391 |
msgstr "حذف کاربران"
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:2228
|
394 |
msgid "Create users"
|
395 |
msgstr "ایجاد کاربران"
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:2229
|
398 |
msgid "Unfiltered upload"
|
399 |
msgstr "بارگذاری فیلترشده"
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:2230
|
402 |
msgid "Edit dashboard"
|
403 |
msgstr "ویرایش پیشخوان"
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:2231
|
406 |
msgid "Update plugins"
|
407 |
msgstr "بروزرسانی افزونهها"
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:2232
|
410 |
msgid "Delete plugins"
|
411 |
msgstr "حذف افزونهها"
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:2233
|
414 |
msgid "Install plugins"
|
415 |
msgstr "نصب افزونهها"
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:2234
|
418 |
msgid "Update themes"
|
419 |
msgstr "بروزرسانی پوستهها"
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:2235
|
422 |
msgid "Install themes"
|
423 |
msgstr "نصب پوستهها"
|
424 |
|
425 |
+
#: ../includes/class-ure-lib.php:2236
|
426 |
msgid "Update core"
|
427 |
msgstr "بروزرسانی هسته"
|
428 |
|
429 |
+
#: ../includes/class-ure-lib.php:2237
|
430 |
msgid "List users"
|
431 |
msgstr "فهرست کاربران"
|
432 |
|
433 |
+
#: ../includes/class-ure-lib.php:2238
|
434 |
msgid "Remove users"
|
435 |
msgstr "حذف کابران"
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:2239
|
438 |
msgid "Add users"
|
439 |
msgstr "افزودن کاربران"
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:2240
|
442 |
msgid "Promote users"
|
443 |
msgstr "ارتقاء کاربران"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:2241
|
446 |
msgid "Edit theme options"
|
447 |
msgstr "ویرایش تنظیمات پوسته"
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:2242
|
450 |
msgid "Delete themes"
|
451 |
msgstr "حذف پوستهها"
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:2243
|
454 |
msgid "Export"
|
455 |
msgstr "برونریزی"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:2366
|
458 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
459 |
msgstr "خطا: نام قابلیت باید فقط شامل حروف لاتین و اعداد باشد!"
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:2379
|
462 |
#, php-format
|
463 |
msgid "Capability %s is added successfully"
|
464 |
msgstr "قابلیت %s با موفقیت افزوده شد"
|
465 |
|
466 |
+
#: ../includes/class-ure-lib.php:2381
|
467 |
#, php-format
|
468 |
msgid "Capability %s exists already"
|
469 |
msgstr "قابلیت %s از پیش موجود است"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:2410
|
472 |
#, php-format
|
473 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
474 |
msgstr "خطا! شما اجازهی حذف این قابلیت را ندارید: %s!"
|
475 |
|
476 |
+
#: ../includes/class-ure-lib.php:2429
|
477 |
+
#, fuzzy, php-format
|
478 |
+
msgid "Capability %s was removed successfully"
|
479 |
msgstr "قابلیت %s با موفقیت حذف شد"
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:2497
|
482 |
msgid "Version:"
|
483 |
msgstr "نسخه:"
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:2498
|
486 |
msgid "Author's website"
|
487 |
msgstr "وبگاه نویسنده"
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:2499
|
490 |
msgid "Plugin webpage"
|
491 |
msgstr "برگهی افزونه"
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:2500
|
494 |
msgid "Plugin download"
|
495 |
msgstr "بارگیری افزونه"
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:2501
|
498 |
+
#: ../includes/class-user-role-editor.php:546
|
499 |
+
msgid "Changelog"
|
500 |
+
msgstr "گزارش تغییرات"
|
501 |
+
|
502 |
+
#: ../includes/class-ure-lib.php:2502
|
503 |
msgid "FAQ"
|
504 |
msgstr "سوالات مکرر"
|
505 |
|
506 |
+
#: ../includes/class-ure-lib.php:2575
|
|
|
|
|
|
|
|
|
507 |
msgid "Delete All Unused Roles"
|
508 |
msgstr "حذف همهی نقشهای استفادهنشده"
|
509 |
|
510 |
+
#: ../includes/class-ure-lib.php:2588
|
511 |
+
msgid "None"
|
512 |
+
msgstr "هیچکدام"
|
513 |
+
|
514 |
+
#: ../includes/class-ure-lib.php:2632
|
515 |
msgid "— No role for this site —"
|
516 |
msgstr "— هیچ نقشی برای این سایت —"
|
517 |
|
518 |
+
#: ../includes/class-ure-lib.php:2747
|
519 |
+
#, php-format
|
520 |
+
msgid "Denied: %s"
|
521 |
+
msgstr ""
|
522 |
|
523 |
+
#: ../includes/ure-role-edit.php:17
|
524 |
+
msgid "Select Role and change its capabilities:"
|
525 |
+
msgstr "انتخاب نقش و تغییر قابلیتهای آن:"
|
526 |
|
527 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
528 |
+
msgid "Show capabilities in human readable form"
|
529 |
+
msgstr "نمایش قابلیتها در حالت قابل خواندن برای انسان"
|
530 |
|
531 |
+
#: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
|
532 |
+
#: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
|
533 |
+
msgid "Show deprecated capabilities"
|
534 |
+
msgstr "نمایش قابلیتهای بد دانسته شده"
|
535 |
|
536 |
+
#: ../includes/ure-role-edit.php:44
|
537 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
538 |
+
msgstr "در صورت انتخاب، این عمل به تمامی سایتهای شبکه اعمال میشود"
|
539 |
+
|
540 |
+
#: ../includes/ure-role-edit.php:56
|
541 |
+
msgid "Apply to All Sites"
|
542 |
+
msgstr "اعمال به تمامی سایتها"
|
543 |
+
|
544 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
545 |
+
msgid "Core capabilities:"
|
546 |
+
msgstr "قابلیتهای هسته:"
|
547 |
+
|
548 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
549 |
+
msgid "Quick filter:"
|
550 |
+
msgstr "فیلتر سریع:"
|
551 |
+
|
552 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
553 |
+
msgid "Custom capabilities:"
|
554 |
+
msgstr "قابلیتهای سفارشی:"
|
555 |
+
|
556 |
+
#: ../includes/class-user-other-roles.php:82
|
557 |
+
#: ../includes/class-user-other-roles.php:183
|
558 |
+
#: ../includes/class-user-other-roles.php:243
|
559 |
+
msgid "Other Roles"
|
560 |
+
msgstr "دیگر نقشها"
|
561 |
+
|
562 |
+
#: ../includes/class-user-other-roles.php:83
|
563 |
+
msgid "Select additional roles for this user"
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: ../includes/class-user-other-roles.php:162
|
567 |
+
#: ../includes/class-user-role-editor.php:438
|
568 |
+
msgid "Capabilities"
|
569 |
+
msgstr "قابلیتها"
|
570 |
+
|
571 |
+
#: ../includes/class-user-other-roles.php:169
|
572 |
+
msgid "Edit"
|
573 |
+
msgstr "ویرایش"
|
574 |
+
|
575 |
+
#: ../includes/class-user-other-roles.php:215
|
576 |
+
#, fuzzy
|
577 |
+
msgid "Additional Capabilities"
|
578 |
+
msgstr "افزودن قابلیت"
|
579 |
|
580 |
#: ../includes/class-ure-screen-help.php:12
|
581 |
#: ../includes/class-ure-screen-help.php:41
|
584 |
msgid "User Role Editor Options page help"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: ../includes/class-ure-screen-help.php:15
|
588 |
+
#: ../includes/settings-template.php:53
|
589 |
+
msgid "Show Administrator role at User Role Editor"
|
590 |
+
msgstr "نمایش نقش مدیر در ویرایشگر نقش کاربر"
|
591 |
+
|
592 |
#: ../includes/class-ure-screen-help.php:16
|
593 |
msgid ""
|
594 |
"turn this option on in order to make the \"Administrator\" role available at "
|
598 |
"به منظور قابل دسترس شدن نقش «مدیر» در فهرست کشویی ویرایشگر نقش کاربر این "
|
599 |
"گزینه را روشن کنید. این امکان به دلیل مسائل امنیتی بهطور پیشفرض مخفی است."
|
600 |
|
601 |
+
#: ../includes/class-ure-screen-help.php:18
|
602 |
+
#: ../includes/settings-template.php:61
|
603 |
+
msgid "Show capabilities in the human readable form"
|
604 |
+
msgstr "نمایش قابلیتها در حالت قابل خواندن برای انسان"
|
605 |
+
|
606 |
#: ../includes/class-ure-screen-help.php:19
|
607 |
msgid ""
|
608 |
"automatically converts capability names from the technical form for internal "
|
625 |
"کد افزونهها باقی گذاشته شدهاند. روشن کردن این گزینه، آن قابلیتهای بد دانسته "
|
626 |
"شده را نمایش میدهد."
|
627 |
|
628 |
+
#: ../includes/class-ure-screen-help.php:25
|
629 |
+
#: ../includes/settings-template.php:77
|
630 |
+
msgid "Edit user capabilities"
|
631 |
+
msgstr "ویرایش قابلیتهای کاربر"
|
632 |
+
|
633 |
#: ../includes/class-ure-screen-help.php:26
|
634 |
msgid ""
|
635 |
"If turned off - capabilities section of selected user is shown in readonly "
|
640 |
"داده میشود. مدیران به طور مستقیم نمیتوانند به کاربر قابلیتی اختصاص دهند. او "
|
641 |
"باید تنها از نقشها استفاده کند."
|
642 |
|
643 |
+
#: ../includes/class-ure-screen-help.php:45
|
644 |
+
#: ../includes/settings-template.php:111
|
645 |
+
msgid "Count users without role"
|
646 |
+
msgstr "شمارش کاربران بدون نقش"
|
647 |
+
|
648 |
#: ../includes/class-ure-screen-help.php:46
|
649 |
msgid ""
|
650 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
680 |
"در وردپرس چندسایتی به طور پیشفرض تنها مدیر اصلی اجازهی ایجاد، ویرایش و حذف "
|
681 |
"کاربران را دارد. برای حذف این محدودیت این گزینه را روشن کنید."
|
682 |
|
683 |
+
#: ../includes/class-user-role-editor.php:233
|
684 |
+
msgid "Change role for users without role"
|
685 |
+
msgstr "تغییر نقش برای کاربران بدون نقش"
|
686 |
+
|
687 |
+
#: ../includes/class-user-role-editor.php:234
|
688 |
+
msgid "No rights"
|
689 |
+
msgstr "بدون هیچ حقی"
|
690 |
+
|
691 |
+
#: ../includes/class-user-role-editor.php:235
|
692 |
+
msgid "Provide new role"
|
693 |
+
msgstr "ارائهی نقش جدید"
|
694 |
+
|
695 |
+
#: ../includes/class-user-role-editor.php:298
|
696 |
+
#: ../includes/class-user-role-editor.php:300
|
697 |
+
msgid "You do not have permission to edit this user."
|
698 |
+
msgstr "شما اجازهی ویرایش این کاربر را ندارید."
|
699 |
+
|
700 |
+
#: ../includes/class-user-role-editor.php:535
|
701 |
+
msgid "Settings"
|
702 |
+
msgstr "تنظیمات"
|
703 |
+
|
704 |
+
#: ../includes/class-user-role-editor.php:568
|
705 |
+
#: ../includes/settings-template.php:21
|
706 |
+
msgid "General"
|
707 |
+
msgstr "عمومی"
|
708 |
+
|
709 |
+
#: ../includes/class-user-role-editor.php:574
|
710 |
+
#: ../includes/settings-template.php:26
|
711 |
+
msgid "Additional Modules"
|
712 |
+
msgstr "ماژولهای اضافی"
|
713 |
+
|
714 |
+
#: ../includes/class-user-role-editor.php:580
|
715 |
+
#: ../includes/settings-template.php:30
|
716 |
+
msgid "Default Roles"
|
717 |
+
msgstr "نقشهای پیشفرض"
|
718 |
+
|
719 |
+
#: ../includes/class-user-role-editor.php:586
|
720 |
+
#: ../includes/settings-template.php:34
|
721 |
+
msgid "Multisite"
|
722 |
+
msgstr "چندسایتی"
|
723 |
+
|
724 |
+
#: ../includes/class-user-role-editor.php:685
|
725 |
+
#: ../includes/class-user-role-editor.php:703
|
726 |
+
#: ../includes/class-user-role-editor.php:747
|
727 |
+
msgid "User Role Editor options are updated"
|
728 |
+
msgstr "تنظیمات ویرایشگر نقش کاربر بروز شد"
|
729 |
+
|
730 |
+
#: ../includes/class-user-role-editor.php:731
|
731 |
+
msgid "Default Roles are updated"
|
732 |
+
msgstr "نقشهای پیش فرض بروز شدند"
|
733 |
+
|
734 |
+
#: ../includes/class-user-role-editor.php:756
|
735 |
+
msgid ""
|
736 |
+
"You do not have sufficient permissions to manage options for User Role "
|
737 |
+
"Editor."
|
738 |
+
msgstr "شما مجوز کافی برای مدیریت تنظیمات ویرایشگر نقش کاربر را ندارید."
|
739 |
+
|
740 |
+
#: ../includes/class-user-role-editor.php:885
|
741 |
+
msgid "Select All"
|
742 |
+
msgstr "انتخاب همه"
|
743 |
+
|
744 |
+
#: ../includes/class-user-role-editor.php:886
|
745 |
+
msgid "Unselect All"
|
746 |
+
msgstr "عدمانتخاب همه"
|
747 |
+
|
748 |
+
#: ../includes/class-user-role-editor.php:887
|
749 |
+
msgid "Reverse"
|
750 |
+
msgstr "وارونه"
|
751 |
+
|
752 |
+
#: ../includes/class-user-role-editor.php:888
|
753 |
+
msgid "Update"
|
754 |
+
msgstr "بروزرسانی"
|
755 |
+
|
756 |
+
#: ../includes/class-user-role-editor.php:889
|
757 |
+
msgid "Please confirm permissions update"
|
758 |
+
msgstr "لطفا مجوز بروزرسانی را تایید کنید"
|
759 |
+
|
760 |
+
#: ../includes/class-user-role-editor.php:890
|
761 |
+
msgid "Add New Role"
|
762 |
+
msgstr "افزودن نقش جدید"
|
763 |
+
|
764 |
+
#: ../includes/class-user-role-editor.php:891
|
765 |
+
#: ../includes/class-user-role-editor.php:896
|
766 |
+
msgid "Rename Role"
|
767 |
+
msgstr "تغییرنام نقش"
|
768 |
+
|
769 |
+
#: ../includes/class-user-role-editor.php:892
|
770 |
+
msgid " Role name (ID) can not be empty!"
|
771 |
+
msgstr " نام نقش (شناسه) نمی تواند خالی باشد!"
|
772 |
+
|
773 |
+
#: ../includes/class-user-role-editor.php:893
|
774 |
+
msgid ""
|
775 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
776 |
+
"only!"
|
777 |
+
msgstr ""
|
778 |
+
" نام نقش (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
779 |
+
|
780 |
+
#: ../includes/class-user-role-editor.php:894
|
781 |
+
msgid ""
|
782 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
783 |
+
"it."
|
784 |
+
msgstr ""
|
785 |
+
" وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه کنید."
|
786 |
+
|
787 |
+
#: ../includes/class-user-role-editor.php:895
|
788 |
+
msgid "Add Role"
|
789 |
+
msgstr "افزودن نقش"
|
790 |
+
|
791 |
+
#: ../includes/class-user-role-editor.php:897
|
792 |
+
msgid "Delete Role"
|
793 |
+
msgstr "حذف نقش"
|
794 |
+
|
795 |
+
#: ../includes/class-user-role-editor.php:898
|
796 |
+
msgid "Cancel"
|
797 |
+
msgstr "لغو"
|
798 |
+
|
799 |
+
#: ../includes/class-user-role-editor.php:899
|
800 |
+
msgid "Add Capability"
|
801 |
+
msgstr "افزودن قابلیت"
|
802 |
+
|
803 |
+
#: ../includes/class-user-role-editor.php:900
|
804 |
+
#: ../includes/class-user-role-editor.php:909
|
805 |
+
msgid "Delete Capability"
|
806 |
+
msgstr "حذف قابلیت"
|
807 |
+
|
808 |
+
#: ../includes/class-user-role-editor.php:901
|
809 |
+
msgid "Reset"
|
810 |
+
msgstr "بازنشانی"
|
811 |
+
|
812 |
+
#: ../includes/class-user-role-editor.php:902
|
813 |
+
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
814 |
+
msgstr "خطر! بازنشانی، تنظیمات پیشفرض را از هستهی وردپرس بازمیگرداند."
|
815 |
+
|
816 |
+
#: ../includes/class-user-role-editor.php:903
|
817 |
+
msgid ""
|
818 |
+
"If any plugins have changed capabilities in any way upon installation (such "
|
819 |
+
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
820 |
+
msgstr ""
|
821 |
+
"اگر هریک از افزونهها پس از نصب به هر نحو قابلیتها را تغییر دهند (مانند "
|
822 |
+
"S2Member ، WooCommerce و بسیاری دیگر) آن قابلیتها حذف خواهند شد!"
|
823 |
+
|
824 |
+
#: ../includes/class-user-role-editor.php:904
|
825 |
+
msgid ""
|
826 |
+
"For more information on how to undo changes and restore plugin capabilities "
|
827 |
+
"go to"
|
828 |
+
msgstr ""
|
829 |
+
"برای کسب اطلاعات بیشتر درباره چگونگی خنثیسازی تغییرات و ترمیمکردن قابلیتها "
|
830 |
+
"مراجعه کنید به"
|
831 |
+
|
832 |
+
#: ../includes/class-user-role-editor.php:906
|
833 |
+
msgid "Continue?"
|
834 |
+
msgstr "ادامه میدهید؟"
|
835 |
+
|
836 |
+
#: ../includes/class-user-role-editor.php:907
|
837 |
+
msgid "Default Role"
|
838 |
+
msgstr "نقش پیشفرض"
|
839 |
+
|
840 |
+
#: ../includes/class-user-role-editor.php:908
|
841 |
+
msgid "Set New Default Role"
|
842 |
+
msgstr "نشاندن نقش پیشفرض جدید"
|
843 |
+
|
844 |
+
#: ../includes/class-user-role-editor.php:910
|
845 |
+
msgid ""
|
846 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
847 |
+
"or other custom code"
|
848 |
+
msgstr ""
|
849 |
+
"اخطار! مراقب باشید - حذف قابلیت مهم میتواند برخی از افزونهها یا دیگر کدهای "
|
850 |
+
"سفارشی را دچار اشکال کند"
|
851 |
+
|
852 |
+
#: ../includes/class-user-role-editor.php:911
|
853 |
+
msgid " Capability name (ID) can not be empty!"
|
854 |
+
msgstr " نام قابلیت (شناسه) نمی تواند خالی باشد!"
|
855 |
+
|
856 |
+
#: ../includes/class-user-role-editor.php:912
|
857 |
+
msgid ""
|
858 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
859 |
+
"underscore only!"
|
860 |
+
msgstr ""
|
861 |
+
" نام قابلیت (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
862 |
+
|
863 |
+
#: ../includes/settings-template.php:17
|
864 |
+
msgid "User Role Editor - Options"
|
865 |
+
msgstr "ویرایشگر نقش کاربر - تنظیمات"
|
866 |
+
|
867 |
+
#: ../includes/settings-template.php:39
|
868 |
+
msgid "About"
|
869 |
+
msgstr "درباره"
|
870 |
+
|
871 |
+
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
872 |
+
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
873 |
+
msgid "Save"
|
874 |
+
msgstr "ذخیره"
|
875 |
+
|
876 |
+
#: ../includes/settings-template.php:138
|
877 |
+
msgid "Primary default role: "
|
878 |
+
msgstr "نقش پیشفرض اولیه: "
|
879 |
+
|
880 |
+
#: ../includes/settings-template.php:145
|
881 |
+
msgid "Other default roles for new registered user: "
|
882 |
+
msgstr "دیگر نقشهای پیشفرض برای کاربران تازه ثبتنام شده: "
|
883 |
+
|
884 |
+
#: ../includes/settings-template.php:151
|
885 |
+
msgid ""
|
886 |
+
"Note for multisite environment: take into account that other default roles "
|
887 |
+
"should exist at the site, in order to be assigned to the new registered "
|
888 |
+
"users."
|
889 |
+
msgstr ""
|
890 |
+
"قابل توجه محیط چند سایتی: به منظور اختصاصدادن نقشها به کاربران تازه ثبتنام "
|
891 |
+
"شده، به حسابی بروید که نقشهای پیشفرض دیگر میبایست در سایت موجود باشد."
|
892 |
+
|
893 |
+
#: ../includes/settings-template.php:177
|
894 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
895 |
+
msgstr "اجازه به مدیران غیر اصلی برای ایجاد، ویرایش و حذف کاربران"
|
896 |
+
|
897 |
+
#: ../includes/ure-user-edit.php:32
|
898 |
+
msgid "Network Super Admin"
|
899 |
+
msgstr "مدیر اصلی شبکه"
|
900 |
+
|
901 |
+
#: ../includes/ure-user-edit.php:35
|
902 |
+
msgid "Change capabilities for user"
|
903 |
+
msgstr "تغییر قابلیتها برای کاربر"
|
904 |
+
|
905 |
+
#: ../includes/ure-user-edit.php:72
|
906 |
+
msgid "Primary Role:"
|
907 |
+
msgstr "نقش اولیه:"
|
908 |
+
|
909 |
+
#: ../includes/ure-user-edit.php:82
|
910 |
+
msgid "bbPress Role:"
|
911 |
+
msgstr "نقش بیبیپرس:"
|
912 |
+
|
913 |
+
#: ../includes/ure-user-edit.php:92
|
914 |
+
msgid "Other Roles:"
|
915 |
+
msgstr "دیگر نقشها:"
|
916 |
+
|
917 |
#, fuzzy
|
918 |
#~ msgid "select roles below"
|
919 |
#~ msgstr "عدمانتخاب همه"
|
lang/user-role-editor-fr_FR.mo
ADDED
Binary file
|
lang/{ure-fr_FR.po → user-role-editor-fr_FR.po}
RENAMED
@@ -6,9 +6,9 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: User Role Editor\n"
|
8 |
"Report-Msgid-Bugs-To: \n"
|
9 |
-
"POT-Creation-Date: 2015-
|
10 |
-
"PO-Revision-Date: 2015-
|
11 |
-
"Last-Translator: Vladimir Garagulya <
|
12 |
"Language-Team: French (France) (http://www.transifex.com/projects/p/user-"
|
13 |
"role-editor/language/fr_FR/)\n"
|
14 |
"Language: fr_FR\n"
|
@@ -22,400 +22,102 @@ msgstr ""
|
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
24 |
|
25 |
-
#: ../includes/
|
26 |
-
msgid "User Role Editor - Options"
|
27 |
-
msgstr "User Role Editor - Options"
|
28 |
-
|
29 |
-
#: ../includes/settings-template.php:21
|
30 |
-
#: ../includes/class-user-role-editor.php:591
|
31 |
-
msgid "General"
|
32 |
-
msgstr "Général"
|
33 |
-
|
34 |
-
#: ../includes/settings-template.php:26
|
35 |
-
#: ../includes/class-user-role-editor.php:597
|
36 |
-
msgid "Additional Modules"
|
37 |
-
msgstr "Modules complémentaires"
|
38 |
-
|
39 |
-
#: ../includes/settings-template.php:30
|
40 |
-
#: ../includes/class-user-role-editor.php:603
|
41 |
-
msgid "Default Roles"
|
42 |
-
msgstr " Rôles par défaut"
|
43 |
-
|
44 |
-
#: ../includes/settings-template.php:34
|
45 |
-
#: ../includes/class-user-role-editor.php:609
|
46 |
-
msgid "Multisite"
|
47 |
-
msgstr "Multisite"
|
48 |
-
|
49 |
-
#: ../includes/settings-template.php:39
|
50 |
-
msgid "About"
|
51 |
-
msgstr "À propos"
|
52 |
-
|
53 |
-
#: ../includes/settings-template.php:53
|
54 |
-
#: ../includes/class-ure-screen-help.php:15
|
55 |
-
msgid "Show Administrator role at User Role Editor"
|
56 |
-
msgstr "Montrer le rôle Administrateur dans User Role Editor"
|
57 |
-
|
58 |
-
#: ../includes/settings-template.php:61
|
59 |
-
#: ../includes/class-ure-screen-help.php:18
|
60 |
-
msgid "Show capabilities in the human readable form"
|
61 |
-
msgstr "Montrer les capacités dans une forme lisible par l'homme"
|
62 |
-
|
63 |
-
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
64 |
-
#: ../includes/ure-user-edit.php:64 ../includes/class-ure-screen-help.php:21
|
65 |
-
msgid "Show deprecated capabilities"
|
66 |
-
msgstr "Voir les capacités obsolètes"
|
67 |
-
|
68 |
-
#: ../includes/settings-template.php:77
|
69 |
-
#: ../includes/class-ure-screen-help.php:25
|
70 |
-
msgid "Edit user capabilities"
|
71 |
-
msgstr "Modifier capacités personnalisées"
|
72 |
-
|
73 |
-
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
74 |
-
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
75 |
-
msgid "Save"
|
76 |
-
msgstr "Sauvegarder"
|
77 |
-
|
78 |
-
#: ../includes/settings-template.php:111
|
79 |
-
#: ../includes/class-ure-screen-help.php:45
|
80 |
-
msgid "Count users without role"
|
81 |
-
msgstr "Compter les utilisateurs sans rôle"
|
82 |
-
|
83 |
-
#: ../includes/settings-template.php:138
|
84 |
-
msgid "Primary default role: "
|
85 |
-
msgstr "Rôle primaire par défaut : "
|
86 |
-
|
87 |
-
#: ../includes/settings-template.php:145
|
88 |
-
msgid "Other default roles for new registered user: "
|
89 |
-
msgstr "Autres rôles par défaut pour les nouveaux utilisateurs enregistrés : "
|
90 |
-
|
91 |
-
#: ../includes/settings-template.php:151
|
92 |
-
msgid ""
|
93 |
-
"Note for multisite environment: take into account that other default roles "
|
94 |
-
"should exist at the site, in order to be assigned to the new registered "
|
95 |
-
"users."
|
96 |
-
msgstr ""
|
97 |
-
"Note pour les environnements multisite : Prenez en considération que "
|
98 |
-
"d'autres rôles par défauts doivent exister sur le site, afin qu'ils soient "
|
99 |
-
"assignés aux nouveaux utilisateurs enregistrés."
|
100 |
-
|
101 |
-
#: ../includes/settings-template.php:177
|
102 |
-
msgid "Allow non super administrators to create, edit, and delete users"
|
103 |
-
msgstr ""
|
104 |
-
"Autoriser les utilisateurs qui ne sont pas super-administrateurs à créer, "
|
105 |
-
"modifier ou supprimer des utilisateurs"
|
106 |
-
|
107 |
-
#: ../includes/class-user-role-editor.php:234
|
108 |
-
msgid "Change role for users without role"
|
109 |
-
msgstr "Changer le rôle pour les utilisateurs sans rôle"
|
110 |
-
|
111 |
-
#: ../includes/class-user-role-editor.php:235
|
112 |
-
msgid "No rights"
|
113 |
-
msgstr "Aucun droit"
|
114 |
-
|
115 |
-
#: ../includes/class-user-role-editor.php:236
|
116 |
-
msgid "Provide new role"
|
117 |
-
msgstr "Fournir un nouveau rôle"
|
118 |
-
|
119 |
-
#: ../includes/class-user-role-editor.php:320
|
120 |
-
#: ../includes/class-user-role-editor.php:322
|
121 |
-
msgid "You do not have permission to edit this user."
|
122 |
-
msgstr ""
|
123 |
-
"Vous n’avez pas l’autorisation de modifier cet utilisateur."
|
124 |
-
|
125 |
-
#: ../includes/class-user-role-editor.php:460
|
126 |
-
msgid "Capabilities"
|
127 |
-
msgstr "Capacités"
|
128 |
-
|
129 |
-
#: ../includes/class-user-role-editor.php:558
|
130 |
-
msgid "Settings"
|
131 |
-
msgstr "Paramètres"
|
132 |
-
|
133 |
-
#: ../includes/class-user-role-editor.php:569
|
134 |
-
#: ../includes/class-ure-lib.php:2540
|
135 |
-
msgid "Changelog"
|
136 |
-
msgstr "Journal des modifications"
|
137 |
-
|
138 |
-
#: ../includes/class-user-role-editor.php:619
|
139 |
-
#: ../includes/class-user-role-editor.php:648
|
140 |
-
#: ../includes/class-user-role-editor.php:1030
|
141 |
-
#: ../includes/class-ure-lib.php:337
|
142 |
-
msgid "User Role Editor"
|
143 |
-
msgstr "User Role Editor"
|
144 |
-
|
145 |
-
#: ../includes/class-user-role-editor.php:708
|
146 |
-
#: ../includes/class-user-role-editor.php:726
|
147 |
-
#: ../includes/class-user-role-editor.php:770
|
148 |
-
msgid "User Role Editor options are updated"
|
149 |
-
msgstr "Les options de User Role Editor ont été mises à jour"
|
150 |
-
|
151 |
-
#: ../includes/class-user-role-editor.php:754
|
152 |
-
msgid "Default Roles are updated"
|
153 |
-
msgstr "Les rôles par défauts ont été mis à jour"
|
154 |
-
|
155 |
-
#: ../includes/class-user-role-editor.php:779
|
156 |
-
msgid ""
|
157 |
-
"You do not have sufficient permissions to manage options for User Role "
|
158 |
-
"Editor."
|
159 |
-
msgstr ""
|
160 |
-
"Vous n'avez pas les permissions suffisantes pour gérer les options de User "
|
161 |
-
"Role Editor."
|
162 |
-
|
163 |
-
#: ../includes/class-user-role-editor.php:851
|
164 |
-
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
165 |
-
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
166 |
-
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
167 |
-
msgid "Insufficient permissions to work with User Role Editor"
|
168 |
-
msgstr "Permissions insuffisantes pour travailler avec User Role Editor"
|
169 |
-
|
170 |
-
#: ../includes/class-user-role-editor.php:977
|
171 |
-
msgid "Select All"
|
172 |
-
msgstr "Tout sélectionner"
|
173 |
-
|
174 |
-
#: ../includes/class-user-role-editor.php:978
|
175 |
-
msgid "Unselect All"
|
176 |
-
msgstr "Tout déselectionner"
|
177 |
-
|
178 |
-
#: ../includes/class-user-role-editor.php:979
|
179 |
-
msgid "Reverse"
|
180 |
-
msgstr "Inverser"
|
181 |
-
|
182 |
-
#: ../includes/class-user-role-editor.php:980
|
183 |
-
msgid "Update"
|
184 |
-
msgstr "Mettre à jour"
|
185 |
-
|
186 |
-
#: ../includes/class-user-role-editor.php:981
|
187 |
-
msgid "Please confirm permissions update"
|
188 |
-
msgstr "Merci de confirmer la mise à jour des permissions"
|
189 |
-
|
190 |
-
#: ../includes/class-user-role-editor.php:982
|
191 |
-
msgid "Add New Role"
|
192 |
-
msgstr "Ajouter un nouveau rôle"
|
193 |
-
|
194 |
-
#: ../includes/class-user-role-editor.php:983
|
195 |
-
#: ../includes/class-user-role-editor.php:988
|
196 |
-
msgid "Rename Role"
|
197 |
-
msgstr "Renommer le Rôle"
|
198 |
-
|
199 |
-
#: ../includes/class-user-role-editor.php:984
|
200 |
-
msgid " Role name (ID) can not be empty!"
|
201 |
-
msgstr "Le nom du rôle (ID) ne peut pas être vide !"
|
202 |
-
|
203 |
-
#: ../includes/class-user-role-editor.php:985
|
204 |
-
msgid ""
|
205 |
-
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
206 |
-
"only!"
|
207 |
-
msgstr ""
|
208 |
-
"Le nom du rôle (ID) peut contenir seulement des caractères latin, des "
|
209 |
-
"chiffres, des traits d'union ou des caractères de soulignement !"
|
210 |
-
|
211 |
-
#: ../includes/class-user-role-editor.php:986
|
212 |
-
msgid ""
|
213 |
-
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
214 |
-
"it."
|
215 |
-
msgstr ""
|
216 |
-
"WordPress ne supporte pas les noms de rôle (ID) alphanumériques. Ajouter des "
|
217 |
-
"caractères latin à celui-ci."
|
218 |
-
|
219 |
-
#: ../includes/class-user-role-editor.php:987
|
220 |
-
msgid "Add Role"
|
221 |
-
msgstr "Ajouter un rôle"
|
222 |
-
|
223 |
-
#: ../includes/class-user-role-editor.php:989
|
224 |
-
msgid "Delete Role"
|
225 |
-
msgstr "Supprimer un rôle"
|
226 |
-
|
227 |
-
#: ../includes/class-user-role-editor.php:990
|
228 |
-
msgid "Cancel"
|
229 |
-
msgstr "Annuler"
|
230 |
-
|
231 |
-
#: ../includes/class-user-role-editor.php:991
|
232 |
-
msgid "Add Capability"
|
233 |
-
msgstr "Ajouter la capacité"
|
234 |
-
|
235 |
-
#: ../includes/class-user-role-editor.php:992
|
236 |
-
#: ../includes/class-user-role-editor.php:1001
|
237 |
-
msgid "Delete Capability"
|
238 |
-
msgstr "Supprimer la capacité"
|
239 |
-
|
240 |
-
#: ../includes/class-user-role-editor.php:993
|
241 |
-
msgid "Reset"
|
242 |
-
msgstr "Réinitialiser"
|
243 |
-
|
244 |
-
#: ../includes/class-user-role-editor.php:994
|
245 |
-
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
246 |
-
msgstr ""
|
247 |
-
"DANGER ! La réinitialisation va restaurer les paramètres par défaut du cœur "
|
248 |
-
"de WordPress."
|
249 |
-
|
250 |
-
#: ../includes/class-user-role-editor.php:995
|
251 |
-
msgid ""
|
252 |
-
"If any plugins have changed capabilities in any way upon installation (such "
|
253 |
-
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
254 |
-
msgstr ""
|
255 |
-
"Si aucune extension n'a modifié les capacités (comme S2Member ou WooCommerce "
|
256 |
-
"et bien d'autres), ces capacités seront SUPPRIMÉES ! "
|
257 |
-
|
258 |
-
#: ../includes/class-user-role-editor.php:996
|
259 |
-
msgid ""
|
260 |
-
"For more information on how to undo changes and restore plugin capabilities "
|
261 |
-
"go to"
|
262 |
-
msgstr ""
|
263 |
-
"Pour de plus amples informations sur la façon d'annuler les modifications et "
|
264 |
-
"rétablir les fonctions de l'extension, aller sur "
|
265 |
-
|
266 |
-
#: ../includes/class-user-role-editor.php:998
|
267 |
-
msgid "Continue?"
|
268 |
-
msgstr "Continuer ?"
|
269 |
-
|
270 |
-
#: ../includes/class-user-role-editor.php:999
|
271 |
-
msgid "Default Role"
|
272 |
-
msgstr " Rôle par défaut"
|
273 |
-
|
274 |
-
#: ../includes/class-user-role-editor.php:1000
|
275 |
-
msgid "Set New Default Role"
|
276 |
-
msgstr "Régler le nouveau rôle par défaut"
|
277 |
-
|
278 |
-
#: ../includes/class-user-role-editor.php:1002
|
279 |
-
msgid ""
|
280 |
-
"Warning! Be careful - removing critical capability could crash some plugin "
|
281 |
-
"or other custom code"
|
282 |
-
msgstr ""
|
283 |
-
"Attention ! Enlever des capacités critiques pourrait faire planter certaines "
|
284 |
-
"extension ou autres codes personnalisés"
|
285 |
-
|
286 |
-
#: ../includes/class-user-role-editor.php:1003
|
287 |
-
msgid " Capability name (ID) can not be empty!"
|
288 |
-
msgstr "Le nom de la capacité (ID) ne peut pas être vide !"
|
289 |
-
|
290 |
-
#: ../includes/class-user-role-editor.php:1004
|
291 |
-
msgid ""
|
292 |
-
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
293 |
-
"underscore only!"
|
294 |
-
msgstr ""
|
295 |
-
"Le nom de la capacité (ID) doit contenir seulement des caractères latins, "
|
296 |
-
"des chiffres, des traits d'union ou des caractères de soulignement !"
|
297 |
-
|
298 |
-
#: ../includes/class-user-role-editor.php:1033
|
299 |
-
#: ../includes/class-user-role-editor.php:1066
|
300 |
-
msgid "Other Roles"
|
301 |
-
msgstr "Autres rôles"
|
302 |
-
|
303 |
-
#: ../includes/class-user-role-editor.php:1047
|
304 |
-
msgid "Edit"
|
305 |
-
msgstr "Modifier"
|
306 |
-
|
307 |
-
#: ../includes/ure-role-edit.php:17
|
308 |
-
msgid "Select Role and change its capabilities:"
|
309 |
-
msgstr "Sélectionner un rôle et changer ses capacités : "
|
310 |
-
|
311 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
312 |
-
msgid "Show capabilities in human readable form"
|
313 |
-
msgstr "Montrer les capacités dans une forme lisible par l'homme"
|
314 |
-
|
315 |
-
#: ../includes/ure-role-edit.php:44
|
316 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
317 |
-
msgstr ""
|
318 |
-
"Si coché, alors appliquer toutes les actions à tous les sites du réseau"
|
319 |
-
|
320 |
-
#: ../includes/ure-role-edit.php:56
|
321 |
-
msgid "Apply to All Sites"
|
322 |
-
msgstr "Appliquer à tous les sites"
|
323 |
-
|
324 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
325 |
-
msgid "Core capabilities:"
|
326 |
-
msgstr "Capacités du core :"
|
327 |
-
|
328 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
329 |
-
msgid "Quick filter:"
|
330 |
-
msgstr "Filtre rapide : "
|
331 |
-
|
332 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
333 |
-
msgid "Custom capabilities:"
|
334 |
-
msgstr "Capacités personnalisées :"
|
335 |
-
|
336 |
-
#: ../includes/class-ure-lib.php:245
|
337 |
msgid "Error: wrong request"
|
338 |
msgstr "Erreur : mauvaise requête"
|
339 |
|
340 |
-
#: ../includes/class-ure-lib.php:
|
341 |
msgid "Role name (ID): "
|
342 |
msgstr "Nom du rôle (ID) :"
|
343 |
|
344 |
-
#: ../includes/class-ure-lib.php:
|
345 |
msgid "Display Role Name: "
|
346 |
msgstr "Afficher le nom du rôle : "
|
347 |
|
348 |
-
#: ../includes/class-ure-lib.php:
|
349 |
msgid "Make copy of: "
|
350 |
msgstr "Faire une copie de : "
|
351 |
|
352 |
-
#: ../includes/class-ure-lib.php:
|
353 |
msgid "Select Role:"
|
354 |
msgstr "Sélectionner le rôle :"
|
355 |
|
356 |
-
#: ../includes/class-ure-lib.php:
|
357 |
msgid "Delete:"
|
358 |
msgstr "Supprimer :"
|
359 |
|
360 |
-
#: ../includes/class-ure-lib.php:
|
361 |
msgid "Capability name (ID): "
|
362 |
msgstr "Nom de la capacité (ID) : "
|
363 |
|
364 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
msgid "Error: "
|
366 |
msgstr "Erreur : "
|
367 |
|
368 |
-
#: ../includes/class-ure-lib.php:
|
369 |
msgid "Role"
|
370 |
msgstr "Rôle"
|
371 |
|
372 |
-
#: ../includes/class-ure-lib.php:
|
373 |
msgid "does not exist"
|
374 |
msgstr "N'existe pas"
|
375 |
|
376 |
-
#: ../includes/class-ure-lib.php:
|
377 |
msgid "Role is updated successfully"
|
378 |
msgstr "Le rôle à été bien été mis à jour"
|
379 |
|
380 |
-
#: ../includes/class-ure-lib.php:
|
381 |
msgid "Roles are updated for all network"
|
382 |
msgstr "Les rôles ont été mis à jour sur tous les réseaux"
|
383 |
|
384 |
-
#: ../includes/class-ure-lib.php:
|
385 |
msgid "Error occured during role(s) update"
|
386 |
msgstr "Une erreur est survenue pendant la mise à jour du (des) rôle(s)"
|
387 |
|
388 |
-
#: ../includes/class-ure-lib.php:
|
389 |
msgid "User capabilities are updated successfully"
|
390 |
msgstr "Les capacités de l'utilisateur ont bien été mises à jour"
|
391 |
|
392 |
-
#: ../includes/class-ure-lib.php:
|
393 |
msgid "Error occured during user update"
|
394 |
msgstr "Une erreur est survenue pendant le mise à jour de l'utilisateur"
|
395 |
|
396 |
-
#: ../includes/class-ure-lib.php:
|
397 |
msgid "User Roles are restored to WordPress default values. "
|
398 |
msgstr ""
|
399 |
"Les rôles utilisateurs ont été restaurées selon les valeurs par défauts de "
|
400 |
"WordPress."
|
401 |
|
402 |
-
#: ../includes/class-ure-lib.php:
|
403 |
msgid "read about"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: ../includes/class-ure-lib.php:
|
407 |
msgid "user capability"
|
408 |
msgstr "capacité personnalisées"
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
msgid "Help"
|
412 |
msgstr "Aide"
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
415 |
msgid "Error is occur. Please check the log file."
|
416 |
msgstr "Une erreur s'est produite. Merci de vérifier les journaux."
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
msgid ""
|
420 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
421 |
"only!"
|
@@ -423,7 +125,7 @@ msgstr ""
|
|
423 |
"Erreur : L'ID du rôle doit contenir des caractères latins, des chiffres, des "
|
424 |
"traits d'union ou des caractères de soulignement seulement !"
|
425 |
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
msgid ""
|
428 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
429 |
"characters to it."
|
@@ -431,404 +133,462 @@ msgstr ""
|
|
431 |
"Erreur : WordPress ne supporte pas les noms de rôles (ID) numérique. Ajouter "
|
432 |
"des caractères latins à celui-ci."
|
433 |
|
434 |
-
#: ../includes/class-ure-lib.php:
|
435 |
#, php-format
|
436 |
msgid "Role %s exists already"
|
437 |
msgstr "Le rôle %s existe déjà"
|
438 |
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
msgid "Error is encountered during new role create operation"
|
441 |
msgstr ""
|
442 |
"Une erreur est survenue pendant l'opération de création du nouveau rôle"
|
443 |
|
444 |
-
#: ../includes/class-ure-lib.php:
|
445 |
#, php-format
|
446 |
msgid "Role %s is created successfully"
|
447 |
msgstr "Le rôle %s à bien été créé "
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
msgid "Error: Role ID is empty!"
|
451 |
msgstr "Erreur : L'ID du rôle est vide !"
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
msgid "Error: Empty role display name is not allowed."
|
455 |
msgstr "Erreur : Un nom d'affichage de rôle vide n'est pas autorisé."
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
#, php-format
|
459 |
msgid "Role %s does not exists"
|
460 |
msgstr "Le rôle %s n’existe pas."
|
461 |
|
462 |
-
#: ../includes/class-ure-lib.php:
|
463 |
#, php-format
|
464 |
msgid "Role %s is renamed to %s successfully"
|
465 |
msgstr "Le rôle %s à bien été renommé en %s. "
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
msgid "Error encountered during role delete operation"
|
469 |
msgstr "Une erreur est survenue pendant l'opération de suppression du rôle"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Unused roles are deleted successfully"
|
473 |
msgstr "Les rôles inutilisés ont bien été supprimés"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
#, php-format
|
477 |
msgid "Role %s is deleted successfully"
|
478 |
msgstr "Le rôle %s à bien été supprimé"
|
479 |
|
480 |
-
#: ../includes/class-ure-lib.php:
|
481 |
msgid "Error encountered during default role change operation"
|
482 |
msgstr ""
|
483 |
"Une erreur est survenue pendant l'opération de changement du rôle par défaut"
|
484 |
|
485 |
-
#: ../includes/class-ure-lib.php:
|
486 |
#, php-format
|
487 |
msgid "Default role for new users is set to %s successfully"
|
488 |
msgstr "Le rôle par défaut pour les nouveaux utilisateur à bien été mis à %s"
|
489 |
|
490 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
491 |
msgid "Editor"
|
492 |
msgstr "Éditeur"
|
493 |
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
msgid "Author"
|
496 |
msgstr "Auteur"
|
497 |
|
498 |
-
#: ../includes/class-ure-lib.php:
|
499 |
msgid "Contributor"
|
500 |
msgstr "Contributeur"
|
501 |
|
502 |
-
#: ../includes/class-ure-lib.php:
|
503 |
msgid "Subscriber"
|
504 |
msgstr "Abonné"
|
505 |
|
506 |
-
#: ../includes/class-ure-lib.php:
|
507 |
msgid "Switch themes"
|
508 |
msgstr "Changer de thèmes"
|
509 |
|
510 |
-
#: ../includes/class-ure-lib.php:
|
511 |
msgid "Edit themes"
|
512 |
msgstr "Modifier les thèmes"
|
513 |
|
514 |
-
#: ../includes/class-ure-lib.php:
|
515 |
msgid "Activate plugins"
|
516 |
msgstr "Activer les extensions"
|
517 |
|
518 |
-
#: ../includes/class-ure-lib.php:
|
519 |
msgid "Edit plugins"
|
520 |
msgstr "Modifier les extensions"
|
521 |
|
522 |
-
#: ../includes/class-ure-lib.php:
|
523 |
msgid "Edit users"
|
524 |
msgstr "Modifier les utilisateurs"
|
525 |
|
526 |
-
#: ../includes/class-ure-lib.php:
|
527 |
msgid "Edit files"
|
528 |
msgstr "Modifier les fichiers"
|
529 |
|
530 |
-
#: ../includes/class-ure-lib.php:
|
531 |
msgid "Manage options"
|
532 |
msgstr "Gérer les options"
|
533 |
|
534 |
-
#: ../includes/class-ure-lib.php:
|
535 |
msgid "Moderate comments"
|
536 |
msgstr "Modérer les commentaires"
|
537 |
|
538 |
-
#: ../includes/class-ure-lib.php:
|
539 |
msgid "Manage categories"
|
540 |
msgstr "Gérer les catégories"
|
541 |
|
542 |
-
#: ../includes/class-ure-lib.php:
|
543 |
msgid "Manage links"
|
544 |
msgstr "Gérer les liens"
|
545 |
|
546 |
-
#: ../includes/class-ure-lib.php:
|
547 |
msgid "Upload files"
|
548 |
msgstr "Mettre en ligne des fichiers"
|
549 |
|
550 |
-
#: ../includes/class-ure-lib.php:
|
551 |
msgid "Import"
|
552 |
msgstr "Importer"
|
553 |
|
554 |
-
#: ../includes/class-ure-lib.php:
|
555 |
msgid "Unfiltered html"
|
556 |
msgstr "HTML non filtré"
|
557 |
|
558 |
-
#: ../includes/class-ure-lib.php:
|
559 |
msgid "Edit posts"
|
560 |
msgstr "Modifier les articles"
|
561 |
|
562 |
-
#: ../includes/class-ure-lib.php:
|
563 |
msgid "Edit others posts"
|
564 |
msgstr "Modifier les autres billets"
|
565 |
|
566 |
-
#: ../includes/class-ure-lib.php:
|
567 |
msgid "Edit published posts"
|
568 |
msgstr "Modifier les billets publiés "
|
569 |
|
570 |
-
#: ../includes/class-ure-lib.php:
|
571 |
msgid "Publish posts"
|
572 |
msgstr "Publier des articles"
|
573 |
|
574 |
-
#: ../includes/class-ure-lib.php:
|
575 |
msgid "Edit pages"
|
576 |
msgstr "Modifier des pages"
|
577 |
|
578 |
-
#: ../includes/class-ure-lib.php:
|
579 |
msgid "Read"
|
580 |
msgstr "Lire"
|
581 |
|
582 |
-
#: ../includes/class-ure-lib.php:
|
583 |
msgid "Level 10"
|
584 |
msgstr "Niveau 10"
|
585 |
|
586 |
-
#: ../includes/class-ure-lib.php:
|
587 |
msgid "Level 9"
|
588 |
msgstr "Niveau 9"
|
589 |
|
590 |
-
#: ../includes/class-ure-lib.php:
|
591 |
msgid "Level 8"
|
592 |
msgstr "Niveau 8"
|
593 |
|
594 |
-
#: ../includes/class-ure-lib.php:
|
595 |
msgid "Level 7"
|
596 |
msgstr "Niveau 7"
|
597 |
|
598 |
-
#: ../includes/class-ure-lib.php:
|
599 |
msgid "Level 6"
|
600 |
msgstr "Niveau 6"
|
601 |
|
602 |
-
#: ../includes/class-ure-lib.php:
|
603 |
msgid "Level 5"
|
604 |
msgstr "Niveau 5"
|
605 |
|
606 |
-
#: ../includes/class-ure-lib.php:
|
607 |
msgid "Level 4"
|
608 |
msgstr "Niveau 4"
|
609 |
|
610 |
-
#: ../includes/class-ure-lib.php:
|
611 |
msgid "Level 3"
|
612 |
msgstr "Niveau 3"
|
613 |
|
614 |
-
#: ../includes/class-ure-lib.php:
|
615 |
msgid "Level 2"
|
616 |
msgstr "Niveau 2"
|
617 |
|
618 |
-
#: ../includes/class-ure-lib.php:
|
619 |
msgid "Level 1"
|
620 |
msgstr "Niveau 1"
|
621 |
|
622 |
-
#: ../includes/class-ure-lib.php:
|
623 |
msgid "Level 0"
|
624 |
msgstr "Niveau 0"
|
625 |
|
626 |
-
#: ../includes/class-ure-lib.php:
|
627 |
msgid "Edit others pages"
|
628 |
msgstr "Modifier les autres pages"
|
629 |
|
630 |
-
#: ../includes/class-ure-lib.php:
|
631 |
msgid "Edit published pages"
|
632 |
msgstr "Modifier les pages publiées "
|
633 |
|
634 |
-
#: ../includes/class-ure-lib.php:
|
635 |
msgid "Publish pages"
|
636 |
msgstr "Publier les pages"
|
637 |
|
638 |
-
#: ../includes/class-ure-lib.php:
|
639 |
msgid "Delete pages"
|
640 |
msgstr "Supprimer les pages"
|
641 |
|
642 |
-
#: ../includes/class-ure-lib.php:
|
643 |
msgid "Delete others pages"
|
644 |
msgstr "Supprimer les autres pages"
|
645 |
|
646 |
-
#: ../includes/class-ure-lib.php:
|
647 |
msgid "Delete published pages"
|
648 |
msgstr "Supprimer les pages publiées"
|
649 |
|
650 |
-
#: ../includes/class-ure-lib.php:
|
651 |
msgid "Delete posts"
|
652 |
msgstr "Supprimer les articles"
|
653 |
|
654 |
-
#: ../includes/class-ure-lib.php:
|
655 |
msgid "Delete others posts"
|
656 |
msgstr "Supprimer les autres billets"
|
657 |
|
658 |
-
#: ../includes/class-ure-lib.php:
|
659 |
msgid "Delete published posts"
|
660 |
msgstr "Supprimer les billets publiés"
|
661 |
|
662 |
-
#: ../includes/class-ure-lib.php:
|
663 |
msgid "Delete private posts"
|
664 |
msgstr "Supprimer les billets privés"
|
665 |
|
666 |
-
#: ../includes/class-ure-lib.php:
|
667 |
msgid "Edit private posts"
|
668 |
msgstr "Modifier les billets privés"
|
669 |
|
670 |
-
#: ../includes/class-ure-lib.php:
|
671 |
msgid "Read private posts"
|
672 |
msgstr "Lire les billets privés"
|
673 |
|
674 |
-
#: ../includes/class-ure-lib.php:
|
675 |
msgid "Delete private pages"
|
676 |
msgstr "Supprimer les pages privées "
|
677 |
|
678 |
-
#: ../includes/class-ure-lib.php:
|
679 |
msgid "Edit private pages"
|
680 |
msgstr "Modifier les pages privées"
|
681 |
|
682 |
-
#: ../includes/class-ure-lib.php:
|
683 |
msgid "Read private pages"
|
684 |
msgstr "Lire les pages privées"
|
685 |
|
686 |
-
#: ../includes/class-ure-lib.php:
|
687 |
msgid "Delete users"
|
688 |
msgstr "Supprimer les utilisateurs"
|
689 |
|
690 |
-
#: ../includes/class-ure-lib.php:
|
691 |
msgid "Create users"
|
692 |
msgstr "Créer des utilisateurs"
|
693 |
|
694 |
-
#: ../includes/class-ure-lib.php:
|
695 |
msgid "Unfiltered upload"
|
696 |
msgstr "Téléchargement non filtré"
|
697 |
|
698 |
-
#: ../includes/class-ure-lib.php:
|
699 |
msgid "Edit dashboard"
|
700 |
msgstr "Modifier le tableau de bord"
|
701 |
|
702 |
-
#: ../includes/class-ure-lib.php:
|
703 |
msgid "Update plugins"
|
704 |
msgstr "Mettre à jour les extensions"
|
705 |
|
706 |
-
#: ../includes/class-ure-lib.php:
|
707 |
msgid "Delete plugins"
|
708 |
msgstr "Supprimer les extensions"
|
709 |
|
710 |
-
#: ../includes/class-ure-lib.php:
|
711 |
msgid "Install plugins"
|
712 |
msgstr "Installer les extensions"
|
713 |
|
714 |
-
#: ../includes/class-ure-lib.php:
|
715 |
msgid "Update themes"
|
716 |
msgstr "Mettre à jour les thèmes"
|
717 |
|
718 |
-
#: ../includes/class-ure-lib.php:
|
719 |
msgid "Install themes"
|
720 |
msgstr "Installer des thèmes"
|
721 |
|
722 |
-
#: ../includes/class-ure-lib.php:
|
723 |
msgid "Update core"
|
724 |
msgstr "Mettre à jour le cœur"
|
725 |
|
726 |
-
#: ../includes/class-ure-lib.php:
|
727 |
msgid "List users"
|
728 |
msgstr "Lister les utilisateurs"
|
729 |
|
730 |
-
#: ../includes/class-ure-lib.php:
|
731 |
msgid "Remove users"
|
732 |
msgstr "Supprimer des utilisateurs"
|
733 |
|
734 |
-
#: ../includes/class-ure-lib.php:
|
735 |
msgid "Add users"
|
736 |
msgstr "Ajouter les utilisateurs"
|
737 |
|
738 |
-
#: ../includes/class-ure-lib.php:
|
739 |
msgid "Promote users"
|
740 |
msgstr "Promouvoir des utilisateurs"
|
741 |
|
742 |
-
#: ../includes/class-ure-lib.php:
|
743 |
msgid "Edit theme options"
|
744 |
msgstr "Modifier les options du thème"
|
745 |
|
746 |
-
#: ../includes/class-ure-lib.php:
|
747 |
msgid "Delete themes"
|
748 |
msgstr "Supprimer des thèmes"
|
749 |
|
750 |
-
#: ../includes/class-ure-lib.php:
|
751 |
msgid "Export"
|
752 |
msgstr "Exporter"
|
753 |
|
754 |
-
#: ../includes/class-ure-lib.php:
|
755 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
756 |
msgstr ""
|
757 |
"Erreur : Le nom de la capacité doit seulement contenir des caractères latins "
|
758 |
"et des chiffres !"
|
759 |
|
760 |
-
#: ../includes/class-ure-lib.php:
|
761 |
#, php-format
|
762 |
msgid "Capability %s is added successfully"
|
763 |
msgstr "La capacité %s à bien été ajoutée "
|
764 |
|
765 |
-
#: ../includes/class-ure-lib.php:
|
766 |
#, php-format
|
767 |
msgid "Capability %s exists already"
|
768 |
msgstr "La capacité %s existe déjà"
|
769 |
|
770 |
-
#: ../includes/class-ure-lib.php:
|
771 |
#, php-format
|
772 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
773 |
msgstr ""
|
774 |
"Erreur ! Vous n'avez pas la permission de supprimer cette capacité. %s !"
|
775 |
|
776 |
-
#: ../includes/class-ure-lib.php:
|
777 |
-
#, php-format
|
778 |
-
msgid "Capability %s
|
779 |
msgstr "La capacité %s à bien été supprimée "
|
780 |
|
781 |
-
#: ../includes/class-ure-lib.php:
|
782 |
msgid "Version:"
|
783 |
msgstr "Version :"
|
784 |
|
785 |
-
#: ../includes/class-ure-lib.php:
|
786 |
msgid "Author's website"
|
787 |
msgstr "Site internet de l'auteur"
|
788 |
|
789 |
-
#: ../includes/class-ure-lib.php:
|
790 |
msgid "Plugin webpage"
|
791 |
msgstr "Page web de l'extension"
|
792 |
|
793 |
-
#: ../includes/class-ure-lib.php:
|
794 |
msgid "Plugin download"
|
795 |
msgstr "Téléchargement de l'extension"
|
796 |
|
797 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
798 |
msgid "FAQ"
|
799 |
msgstr "FAQ"
|
800 |
|
801 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
802 |
msgid "None"
|
803 |
msgstr "Aucun"
|
804 |
|
805 |
-
#: ../includes/class-ure-lib.php:
|
806 |
-
msgid "
|
807 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
808 |
|
809 |
-
#: ../includes/
|
810 |
-
msgid "
|
811 |
-
msgstr "
|
812 |
|
813 |
-
#: ../includes/
|
814 |
-
|
815 |
-
|
|
|
|
|
816 |
|
817 |
-
#: ../includes/
|
818 |
-
msgid "
|
819 |
-
msgstr "
|
820 |
|
821 |
-
#: ../includes/
|
822 |
-
|
823 |
-
|
|
|
824 |
|
825 |
-
#: ../includes/
|
826 |
-
msgid "
|
827 |
-
msgstr "
|
828 |
|
829 |
-
#: ../includes/
|
830 |
-
|
831 |
-
|
|
|
832 |
|
833 |
#: ../includes/class-ure-screen-help.php:12
|
834 |
#: ../includes/class-ure-screen-help.php:41
|
@@ -837,6 +597,11 @@ msgstr "Autres rôles :"
|
|
837 |
msgid "User Role Editor Options page help"
|
838 |
msgstr ""
|
839 |
|
|
|
|
|
|
|
|
|
|
|
840 |
#: ../includes/class-ure-screen-help.php:16
|
841 |
msgid ""
|
842 |
"turn this option on in order to make the \"Administrator\" role available at "
|
@@ -847,6 +612,11 @@ msgstr ""
|
|
847 |
"la liste de sélection de User Role Editor. Cela est caché par défaut pour "
|
848 |
"des raisons de sécurité."
|
849 |
|
|
|
|
|
|
|
|
|
|
|
850 |
#: ../includes/class-ure-screen-help.php:19
|
851 |
msgid ""
|
852 |
"automatically converts capability names from the technical form for internal "
|
@@ -869,6 +639,11 @@ msgstr ""
|
|
869 |
"raisons de compatibilité avec les anciens thèmes et extensions. Activer "
|
870 |
"cette option affichera ces capacités dépréciées."
|
871 |
|
|
|
|
|
|
|
|
|
|
|
872 |
#: ../includes/class-ure-screen-help.php:26
|
873 |
msgid ""
|
874 |
"If turned off - capabilities section of selected user is shown in readonly "
|
@@ -876,6 +651,11 @@ msgid ""
|
|
876 |
"should make it using roles only."
|
877 |
msgstr ""
|
878 |
|
|
|
|
|
|
|
|
|
|
|
879 |
#: ../includes/class-ure-screen-help.php:46
|
880 |
msgid ""
|
881 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
@@ -918,3 +698,248 @@ msgstr ""
|
|
918 |
"Seul le Super Administrateur peut créer, modifier ou supprimer des "
|
919 |
"utilisateurs sur des installations WordPress multisite par défaut. Activer "
|
920 |
"cette option pour supprimer cette limitation."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: User Role Editor\n"
|
8 |
"Report-Msgid-Bugs-To: \n"
|
9 |
+
"POT-Creation-Date: 2015-09-11 21:06+0100\n"
|
10 |
+
"PO-Revision-Date: 2015-09-11 21:12+0100\n"
|
11 |
+
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
12 |
"Language-Team: French (France) (http://www.transifex.com/projects/p/user-"
|
13 |
"role-editor/language/fr_FR/)\n"
|
14 |
"Language: fr_FR\n"
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
24 |
|
25 |
+
#: ../includes/class-ure-lib.php:247
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgid "Error: wrong request"
|
27 |
msgstr "Erreur : mauvaise requête"
|
28 |
|
29 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
30 |
msgid "Role name (ID): "
|
31 |
msgstr "Nom du rôle (ID) :"
|
32 |
|
33 |
+
#: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
|
34 |
msgid "Display Role Name: "
|
35 |
msgstr "Afficher le nom du rôle : "
|
36 |
|
37 |
+
#: ../includes/class-ure-lib.php:284
|
38 |
msgid "Make copy of: "
|
39 |
msgstr "Faire une copie de : "
|
40 |
|
41 |
+
#: ../includes/class-ure-lib.php:300
|
42 |
msgid "Select Role:"
|
43 |
msgstr "Sélectionner le rôle :"
|
44 |
|
45 |
+
#: ../includes/class-ure-lib.php:315
|
46 |
msgid "Delete:"
|
47 |
msgstr "Supprimer :"
|
48 |
|
49 |
+
#: ../includes/class-ure-lib.php:322
|
50 |
msgid "Capability name (ID): "
|
51 |
msgstr "Nom de la capacité (ID) : "
|
52 |
|
53 |
+
#: ../includes/class-ure-lib.php:339
|
54 |
+
#: ../includes/class-user-role-editor.php:596
|
55 |
+
#: ../includes/class-user-role-editor.php:625
|
56 |
+
msgid "User Role Editor"
|
57 |
+
msgstr "User Role Editor"
|
58 |
+
|
59 |
+
#: ../includes/class-ure-lib.php:436
|
60 |
msgid "Error: "
|
61 |
msgstr "Erreur : "
|
62 |
|
63 |
+
#: ../includes/class-ure-lib.php:436
|
64 |
msgid "Role"
|
65 |
msgstr "Rôle"
|
66 |
|
67 |
+
#: ../includes/class-ure-lib.php:437
|
68 |
msgid "does not exist"
|
69 |
msgstr "N'existe pas"
|
70 |
|
71 |
+
#: ../includes/class-ure-lib.php:480
|
72 |
msgid "Role is updated successfully"
|
73 |
msgstr "Le rôle à été bien été mis à jour"
|
74 |
|
75 |
+
#: ../includes/class-ure-lib.php:482
|
76 |
msgid "Roles are updated for all network"
|
77 |
msgstr "Les rôles ont été mis à jour sur tous les réseaux"
|
78 |
|
79 |
+
#: ../includes/class-ure-lib.php:488
|
80 |
msgid "Error occured during role(s) update"
|
81 |
msgstr "Une erreur est survenue pendant la mise à jour du (des) rôle(s)"
|
82 |
|
83 |
+
#: ../includes/class-ure-lib.php:495
|
84 |
msgid "User capabilities are updated successfully"
|
85 |
msgstr "Les capacités de l'utilisateur ont bien été mises à jour"
|
86 |
|
87 |
+
#: ../includes/class-ure-lib.php:500
|
88 |
msgid "Error occured during user update"
|
89 |
msgstr "Une erreur est survenue pendant le mise à jour de l'utilisateur"
|
90 |
|
91 |
+
#: ../includes/class-ure-lib.php:558
|
92 |
msgid "User Roles are restored to WordPress default values. "
|
93 |
msgstr ""
|
94 |
"Les rôles utilisateurs ont été restaurées selon les valeurs par défauts de "
|
95 |
"WordPress."
|
96 |
|
97 |
+
#: ../includes/class-ure-lib.php:1436
|
98 |
msgid "read about"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: ../includes/class-ure-lib.php:1437
|
102 |
msgid "user capability"
|
103 |
msgstr "capacité personnalisées"
|
104 |
|
105 |
+
#: ../includes/class-ure-lib.php:1438
|
106 |
msgid "Help"
|
107 |
msgstr "Aide"
|
108 |
|
109 |
+
#: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
|
110 |
+
#: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
|
111 |
+
#: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
|
112 |
+
#: ../includes/class-user-role-editor.php:828
|
113 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
114 |
+
msgstr "Permissions insuffisantes pour travailler avec User Role Editor"
|
115 |
+
|
116 |
+
#: ../includes/class-ure-lib.php:1909
|
117 |
msgid "Error is occur. Please check the log file."
|
118 |
msgstr "Une erreur s'est produite. Merci de vérifier les journaux."
|
119 |
|
120 |
+
#: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
|
121 |
msgid ""
|
122 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
123 |
"only!"
|
125 |
"Erreur : L'ID du rôle doit contenir des caractères latins, des chiffres, des "
|
126 |
"traits d'union ou des caractères de soulignement seulement !"
|
127 |
|
128 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
129 |
msgid ""
|
130 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
131 |
"characters to it."
|
133 |
"Erreur : WordPress ne supporte pas les noms de rôles (ID) numérique. Ajouter "
|
134 |
"des caractères latins à celui-ci."
|
135 |
|
136 |
+
#: ../includes/class-ure-lib.php:1974
|
137 |
#, php-format
|
138 |
msgid "Role %s exists already"
|
139 |
msgstr "Le rôle %s existe déjà"
|
140 |
|
141 |
+
#: ../includes/class-ure-lib.php:1989
|
142 |
msgid "Error is encountered during new role create operation"
|
143 |
msgstr ""
|
144 |
"Une erreur est survenue pendant l'opération de création du nouveau rôle"
|
145 |
|
146 |
+
#: ../includes/class-ure-lib.php:1991
|
147 |
#, php-format
|
148 |
msgid "Role %s is created successfully"
|
149 |
msgstr "Le rôle %s à bien été créé "
|
150 |
|
151 |
+
#: ../includes/class-ure-lib.php:2015
|
152 |
msgid "Error: Role ID is empty!"
|
153 |
msgstr "Erreur : L'ID du rôle est vide !"
|
154 |
|
155 |
+
#: ../includes/class-ure-lib.php:2033
|
156 |
msgid "Error: Empty role display name is not allowed."
|
157 |
msgstr "Erreur : Un nom d'affichage de rôle vide n'est pas autorisé."
|
158 |
|
159 |
+
#: ../includes/class-ure-lib.php:2040
|
160 |
#, php-format
|
161 |
msgid "Role %s does not exists"
|
162 |
msgstr "Le rôle %s n’existe pas."
|
163 |
|
164 |
+
#: ../includes/class-ure-lib.php:2048
|
165 |
#, php-format
|
166 |
msgid "Role %s is renamed to %s successfully"
|
167 |
msgstr "Le rôle %s à bien été renommé en %s. "
|
168 |
|
169 |
+
#: ../includes/class-ure-lib.php:2121
|
170 |
msgid "Error encountered during role delete operation"
|
171 |
msgstr "Une erreur est survenue pendant l'opération de suppression du rôle"
|
172 |
|
173 |
+
#: ../includes/class-ure-lib.php:2123
|
174 |
msgid "Unused roles are deleted successfully"
|
175 |
msgstr "Les rôles inutilisés ont bien été supprimés"
|
176 |
|
177 |
+
#: ../includes/class-ure-lib.php:2125
|
178 |
#, php-format
|
179 |
msgid "Role %s is deleted successfully"
|
180 |
msgstr "Le rôle %s à bien été supprimé"
|
181 |
|
182 |
+
#: ../includes/class-ure-lib.php:2153
|
183 |
msgid "Error encountered during default role change operation"
|
184 |
msgstr ""
|
185 |
"Une erreur est survenue pendant l'opération de changement du rôle par défaut"
|
186 |
|
187 |
+
#: ../includes/class-ure-lib.php:2156
|
188 |
#, php-format
|
189 |
msgid "Default role for new users is set to %s successfully"
|
190 |
msgstr "Le rôle par défaut pour les nouveaux utilisateur à bien été mis à %s"
|
191 |
|
192 |
+
#: ../includes/class-ure-lib.php:2159
|
193 |
+
#, fuzzy
|
194 |
+
msgid "Can not set Administrator role as a default one"
|
195 |
+
msgstr "Montrer le rôle Administrateur dans User Role Editor"
|
196 |
+
|
197 |
+
#: ../includes/class-ure-lib.php:2161
|
198 |
+
#, fuzzy
|
199 |
+
msgid "This role does not exist - "
|
200 |
+
msgstr "Le rôle %s n’existe pas."
|
201 |
+
|
202 |
+
#: ../includes/class-ure-lib.php:2177
|
203 |
msgid "Editor"
|
204 |
msgstr "Éditeur"
|
205 |
|
206 |
+
#: ../includes/class-ure-lib.php:2178
|
207 |
msgid "Author"
|
208 |
msgstr "Auteur"
|
209 |
|
210 |
+
#: ../includes/class-ure-lib.php:2179
|
211 |
msgid "Contributor"
|
212 |
msgstr "Contributeur"
|
213 |
|
214 |
+
#: ../includes/class-ure-lib.php:2180
|
215 |
msgid "Subscriber"
|
216 |
msgstr "Abonné"
|
217 |
|
218 |
+
#: ../includes/class-ure-lib.php:2182
|
219 |
msgid "Switch themes"
|
220 |
msgstr "Changer de thèmes"
|
221 |
|
222 |
+
#: ../includes/class-ure-lib.php:2183
|
223 |
msgid "Edit themes"
|
224 |
msgstr "Modifier les thèmes"
|
225 |
|
226 |
+
#: ../includes/class-ure-lib.php:2184
|
227 |
msgid "Activate plugins"
|
228 |
msgstr "Activer les extensions"
|
229 |
|
230 |
+
#: ../includes/class-ure-lib.php:2185
|
231 |
msgid "Edit plugins"
|
232 |
msgstr "Modifier les extensions"
|
233 |
|
234 |
+
#: ../includes/class-ure-lib.php:2186
|
235 |
msgid "Edit users"
|
236 |
msgstr "Modifier les utilisateurs"
|
237 |
|
238 |
+
#: ../includes/class-ure-lib.php:2187
|
239 |
msgid "Edit files"
|
240 |
msgstr "Modifier les fichiers"
|
241 |
|
242 |
+
#: ../includes/class-ure-lib.php:2188
|
243 |
msgid "Manage options"
|
244 |
msgstr "Gérer les options"
|
245 |
|
246 |
+
#: ../includes/class-ure-lib.php:2189
|
247 |
msgid "Moderate comments"
|
248 |
msgstr "Modérer les commentaires"
|
249 |
|
250 |
+
#: ../includes/class-ure-lib.php:2190
|
251 |
msgid "Manage categories"
|
252 |
msgstr "Gérer les catégories"
|
253 |
|
254 |
+
#: ../includes/class-ure-lib.php:2191
|
255 |
msgid "Manage links"
|
256 |
msgstr "Gérer les liens"
|
257 |
|
258 |
+
#: ../includes/class-ure-lib.php:2192
|
259 |
msgid "Upload files"
|
260 |
msgstr "Mettre en ligne des fichiers"
|
261 |
|
262 |
+
#: ../includes/class-ure-lib.php:2193
|
263 |
msgid "Import"
|
264 |
msgstr "Importer"
|
265 |
|
266 |
+
#: ../includes/class-ure-lib.php:2194
|
267 |
msgid "Unfiltered html"
|
268 |
msgstr "HTML non filtré"
|
269 |
|
270 |
+
#: ../includes/class-ure-lib.php:2195
|
271 |
msgid "Edit posts"
|
272 |
msgstr "Modifier les articles"
|
273 |
|
274 |
+
#: ../includes/class-ure-lib.php:2196
|
275 |
msgid "Edit others posts"
|
276 |
msgstr "Modifier les autres billets"
|
277 |
|
278 |
+
#: ../includes/class-ure-lib.php:2197
|
279 |
msgid "Edit published posts"
|
280 |
msgstr "Modifier les billets publiés "
|
281 |
|
282 |
+
#: ../includes/class-ure-lib.php:2198
|
283 |
msgid "Publish posts"
|
284 |
msgstr "Publier des articles"
|
285 |
|
286 |
+
#: ../includes/class-ure-lib.php:2199
|
287 |
msgid "Edit pages"
|
288 |
msgstr "Modifier des pages"
|
289 |
|
290 |
+
#: ../includes/class-ure-lib.php:2200
|
291 |
msgid "Read"
|
292 |
msgstr "Lire"
|
293 |
|
294 |
+
#: ../includes/class-ure-lib.php:2201
|
295 |
msgid "Level 10"
|
296 |
msgstr "Niveau 10"
|
297 |
|
298 |
+
#: ../includes/class-ure-lib.php:2202
|
299 |
msgid "Level 9"
|
300 |
msgstr "Niveau 9"
|
301 |
|
302 |
+
#: ../includes/class-ure-lib.php:2203
|
303 |
msgid "Level 8"
|
304 |
msgstr "Niveau 8"
|
305 |
|
306 |
+
#: ../includes/class-ure-lib.php:2204
|
307 |
msgid "Level 7"
|
308 |
msgstr "Niveau 7"
|
309 |
|
310 |
+
#: ../includes/class-ure-lib.php:2205
|
311 |
msgid "Level 6"
|
312 |
msgstr "Niveau 6"
|
313 |
|
314 |
+
#: ../includes/class-ure-lib.php:2206
|
315 |
msgid "Level 5"
|
316 |
msgstr "Niveau 5"
|
317 |
|
318 |
+
#: ../includes/class-ure-lib.php:2207
|
319 |
msgid "Level 4"
|
320 |
msgstr "Niveau 4"
|
321 |
|
322 |
+
#: ../includes/class-ure-lib.php:2208
|
323 |
msgid "Level 3"
|
324 |
msgstr "Niveau 3"
|
325 |
|
326 |
+
#: ../includes/class-ure-lib.php:2209
|
327 |
msgid "Level 2"
|
328 |
msgstr "Niveau 2"
|
329 |
|
330 |
+
#: ../includes/class-ure-lib.php:2210
|
331 |
msgid "Level 1"
|
332 |
msgstr "Niveau 1"
|
333 |
|
334 |
+
#: ../includes/class-ure-lib.php:2211
|
335 |
msgid "Level 0"
|
336 |
msgstr "Niveau 0"
|
337 |
|
338 |
+
#: ../includes/class-ure-lib.php:2212
|
339 |
msgid "Edit others pages"
|
340 |
msgstr "Modifier les autres pages"
|
341 |
|
342 |
+
#: ../includes/class-ure-lib.php:2213
|
343 |
msgid "Edit published pages"
|
344 |
msgstr "Modifier les pages publiées "
|
345 |
|
346 |
+
#: ../includes/class-ure-lib.php:2214
|
347 |
msgid "Publish pages"
|
348 |
msgstr "Publier les pages"
|
349 |
|
350 |
+
#: ../includes/class-ure-lib.php:2215
|
351 |
msgid "Delete pages"
|
352 |
msgstr "Supprimer les pages"
|
353 |
|
354 |
+
#: ../includes/class-ure-lib.php:2216
|
355 |
msgid "Delete others pages"
|
356 |
msgstr "Supprimer les autres pages"
|
357 |
|
358 |
+
#: ../includes/class-ure-lib.php:2217
|
359 |
msgid "Delete published pages"
|
360 |
msgstr "Supprimer les pages publiées"
|
361 |
|
362 |
+
#: ../includes/class-ure-lib.php:2218
|
363 |
msgid "Delete posts"
|
364 |
msgstr "Supprimer les articles"
|
365 |
|
366 |
+
#: ../includes/class-ure-lib.php:2219
|
367 |
msgid "Delete others posts"
|
368 |
msgstr "Supprimer les autres billets"
|
369 |
|
370 |
+
#: ../includes/class-ure-lib.php:2220
|
371 |
msgid "Delete published posts"
|
372 |
msgstr "Supprimer les billets publiés"
|
373 |
|
374 |
+
#: ../includes/class-ure-lib.php:2221
|
375 |
msgid "Delete private posts"
|
376 |
msgstr "Supprimer les billets privés"
|
377 |
|
378 |
+
#: ../includes/class-ure-lib.php:2222
|
379 |
msgid "Edit private posts"
|
380 |
msgstr "Modifier les billets privés"
|
381 |
|
382 |
+
#: ../includes/class-ure-lib.php:2223
|
383 |
msgid "Read private posts"
|
384 |
msgstr "Lire les billets privés"
|
385 |
|
386 |
+
#: ../includes/class-ure-lib.php:2224
|
387 |
msgid "Delete private pages"
|
388 |
msgstr "Supprimer les pages privées "
|
389 |
|
390 |
+
#: ../includes/class-ure-lib.php:2225
|
391 |
msgid "Edit private pages"
|
392 |
msgstr "Modifier les pages privées"
|
393 |
|
394 |
+
#: ../includes/class-ure-lib.php:2226
|
395 |
msgid "Read private pages"
|
396 |
msgstr "Lire les pages privées"
|
397 |
|
398 |
+
#: ../includes/class-ure-lib.php:2227
|
399 |
msgid "Delete users"
|
400 |
msgstr "Supprimer les utilisateurs"
|
401 |
|
402 |
+
#: ../includes/class-ure-lib.php:2228
|
403 |
msgid "Create users"
|
404 |
msgstr "Créer des utilisateurs"
|
405 |
|
406 |
+
#: ../includes/class-ure-lib.php:2229
|
407 |
msgid "Unfiltered upload"
|
408 |
msgstr "Téléchargement non filtré"
|
409 |
|
410 |
+
#: ../includes/class-ure-lib.php:2230
|
411 |
msgid "Edit dashboard"
|
412 |
msgstr "Modifier le tableau de bord"
|
413 |
|
414 |
+
#: ../includes/class-ure-lib.php:2231
|
415 |
msgid "Update plugins"
|
416 |
msgstr "Mettre à jour les extensions"
|
417 |
|
418 |
+
#: ../includes/class-ure-lib.php:2232
|
419 |
msgid "Delete plugins"
|
420 |
msgstr "Supprimer les extensions"
|
421 |
|
422 |
+
#: ../includes/class-ure-lib.php:2233
|
423 |
msgid "Install plugins"
|
424 |
msgstr "Installer les extensions"
|
425 |
|
426 |
+
#: ../includes/class-ure-lib.php:2234
|
427 |
msgid "Update themes"
|
428 |
msgstr "Mettre à jour les thèmes"
|
429 |
|
430 |
+
#: ../includes/class-ure-lib.php:2235
|
431 |
msgid "Install themes"
|
432 |
msgstr "Installer des thèmes"
|
433 |
|
434 |
+
#: ../includes/class-ure-lib.php:2236
|
435 |
msgid "Update core"
|
436 |
msgstr "Mettre à jour le cœur"
|
437 |
|
438 |
+
#: ../includes/class-ure-lib.php:2237
|
439 |
msgid "List users"
|
440 |
msgstr "Lister les utilisateurs"
|
441 |
|
442 |
+
#: ../includes/class-ure-lib.php:2238
|
443 |
msgid "Remove users"
|
444 |
msgstr "Supprimer des utilisateurs"
|
445 |
|
446 |
+
#: ../includes/class-ure-lib.php:2239
|
447 |
msgid "Add users"
|
448 |
msgstr "Ajouter les utilisateurs"
|
449 |
|
450 |
+
#: ../includes/class-ure-lib.php:2240
|
451 |
msgid "Promote users"
|
452 |
msgstr "Promouvoir des utilisateurs"
|
453 |
|
454 |
+
#: ../includes/class-ure-lib.php:2241
|
455 |
msgid "Edit theme options"
|
456 |
msgstr "Modifier les options du thème"
|
457 |
|
458 |
+
#: ../includes/class-ure-lib.php:2242
|
459 |
msgid "Delete themes"
|
460 |
msgstr "Supprimer des thèmes"
|
461 |
|
462 |
+
#: ../includes/class-ure-lib.php:2243
|
463 |
msgid "Export"
|
464 |
msgstr "Exporter"
|
465 |
|
466 |
+
#: ../includes/class-ure-lib.php:2366
|
467 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
468 |
msgstr ""
|
469 |
"Erreur : Le nom de la capacité doit seulement contenir des caractères latins "
|
470 |
"et des chiffres !"
|
471 |
|
472 |
+
#: ../includes/class-ure-lib.php:2379
|
473 |
#, php-format
|
474 |
msgid "Capability %s is added successfully"
|
475 |
msgstr "La capacité %s à bien été ajoutée "
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:2381
|
478 |
#, php-format
|
479 |
msgid "Capability %s exists already"
|
480 |
msgstr "La capacité %s existe déjà"
|
481 |
|
482 |
+
#: ../includes/class-ure-lib.php:2410
|
483 |
#, php-format
|
484 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
485 |
msgstr ""
|
486 |
"Erreur ! Vous n'avez pas la permission de supprimer cette capacité. %s !"
|
487 |
|
488 |
+
#: ../includes/class-ure-lib.php:2429
|
489 |
+
#, fuzzy, php-format
|
490 |
+
msgid "Capability %s was removed successfully"
|
491 |
msgstr "La capacité %s à bien été supprimée "
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:2497
|
494 |
msgid "Version:"
|
495 |
msgstr "Version :"
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:2498
|
498 |
msgid "Author's website"
|
499 |
msgstr "Site internet de l'auteur"
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:2499
|
502 |
msgid "Plugin webpage"
|
503 |
msgstr "Page web de l'extension"
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:2500
|
506 |
msgid "Plugin download"
|
507 |
msgstr "Téléchargement de l'extension"
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:2501
|
510 |
+
#: ../includes/class-user-role-editor.php:546
|
511 |
+
msgid "Changelog"
|
512 |
+
msgstr "Journal des modifications"
|
513 |
+
|
514 |
+
#: ../includes/class-ure-lib.php:2502
|
515 |
msgid "FAQ"
|
516 |
msgstr "FAQ"
|
517 |
|
518 |
+
#: ../includes/class-ure-lib.php:2575
|
519 |
+
msgid "Delete All Unused Roles"
|
520 |
+
msgstr "Supprimer tous les rôles inutilisés "
|
521 |
+
|
522 |
+
#: ../includes/class-ure-lib.php:2588
|
523 |
msgid "None"
|
524 |
msgstr "Aucun"
|
525 |
|
526 |
+
#: ../includes/class-ure-lib.php:2632
|
527 |
+
msgid "— No role for this site —"
|
528 |
+
msgstr "— Pas de rôle sur ce site —"
|
529 |
+
|
530 |
+
#: ../includes/class-ure-lib.php:2747
|
531 |
+
#, php-format
|
532 |
+
msgid "Denied: %s"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: ../includes/ure-role-edit.php:17
|
536 |
+
msgid "Select Role and change its capabilities:"
|
537 |
+
msgstr "Sélectionner un rôle et changer ses capacités : "
|
538 |
+
|
539 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
540 |
+
msgid "Show capabilities in human readable form"
|
541 |
+
msgstr "Montrer les capacités dans une forme lisible par l'homme"
|
542 |
+
|
543 |
+
#: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
|
544 |
+
#: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
|
545 |
+
msgid "Show deprecated capabilities"
|
546 |
+
msgstr "Voir les capacités obsolètes"
|
547 |
+
|
548 |
+
#: ../includes/ure-role-edit.php:44
|
549 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
550 |
+
msgstr ""
|
551 |
+
"Si coché, alors appliquer toutes les actions à tous les sites du réseau"
|
552 |
+
|
553 |
+
#: ../includes/ure-role-edit.php:56
|
554 |
+
msgid "Apply to All Sites"
|
555 |
+
msgstr "Appliquer à tous les sites"
|
556 |
+
|
557 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
558 |
+
msgid "Core capabilities:"
|
559 |
+
msgstr "Capacités du core :"
|
560 |
+
|
561 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
562 |
+
msgid "Quick filter:"
|
563 |
+
msgstr "Filtre rapide : "
|
564 |
|
565 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
566 |
+
msgid "Custom capabilities:"
|
567 |
+
msgstr "Capacités personnalisées :"
|
568 |
|
569 |
+
#: ../includes/class-user-other-roles.php:82
|
570 |
+
#: ../includes/class-user-other-roles.php:183
|
571 |
+
#: ../includes/class-user-other-roles.php:243
|
572 |
+
msgid "Other Roles"
|
573 |
+
msgstr "Autres rôles"
|
574 |
|
575 |
+
#: ../includes/class-user-other-roles.php:83
|
576 |
+
msgid "Select additional roles for this user"
|
577 |
+
msgstr ""
|
578 |
|
579 |
+
#: ../includes/class-user-other-roles.php:162
|
580 |
+
#: ../includes/class-user-role-editor.php:438
|
581 |
+
msgid "Capabilities"
|
582 |
+
msgstr "Capacités"
|
583 |
|
584 |
+
#: ../includes/class-user-other-roles.php:169
|
585 |
+
msgid "Edit"
|
586 |
+
msgstr "Modifier"
|
587 |
|
588 |
+
#: ../includes/class-user-other-roles.php:215
|
589 |
+
#, fuzzy
|
590 |
+
msgid "Additional Capabilities"
|
591 |
+
msgstr "Ajouter la capacité"
|
592 |
|
593 |
#: ../includes/class-ure-screen-help.php:12
|
594 |
#: ../includes/class-ure-screen-help.php:41
|
597 |
msgid "User Role Editor Options page help"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: ../includes/class-ure-screen-help.php:15
|
601 |
+
#: ../includes/settings-template.php:53
|
602 |
+
msgid "Show Administrator role at User Role Editor"
|
603 |
+
msgstr "Montrer le rôle Administrateur dans User Role Editor"
|
604 |
+
|
605 |
#: ../includes/class-ure-screen-help.php:16
|
606 |
msgid ""
|
607 |
"turn this option on in order to make the \"Administrator\" role available at "
|
612 |
"la liste de sélection de User Role Editor. Cela est caché par défaut pour "
|
613 |
"des raisons de sécurité."
|
614 |
|
615 |
+
#: ../includes/class-ure-screen-help.php:18
|
616 |
+
#: ../includes/settings-template.php:61
|
617 |
+
msgid "Show capabilities in the human readable form"
|
618 |
+
msgstr "Montrer les capacités dans une forme lisible par l'homme"
|
619 |
+
|
620 |
#: ../includes/class-ure-screen-help.php:19
|
621 |
msgid ""
|
622 |
"automatically converts capability names from the technical form for internal "
|
639 |
"raisons de compatibilité avec les anciens thèmes et extensions. Activer "
|
640 |
"cette option affichera ces capacités dépréciées."
|
641 |
|
642 |
+
#: ../includes/class-ure-screen-help.php:25
|
643 |
+
#: ../includes/settings-template.php:77
|
644 |
+
msgid "Edit user capabilities"
|
645 |
+
msgstr "Modifier capacités personnalisées"
|
646 |
+
|
647 |
#: ../includes/class-ure-screen-help.php:26
|
648 |
msgid ""
|
649 |
"If turned off - capabilities section of selected user is shown in readonly "
|
651 |
"should make it using roles only."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: ../includes/class-ure-screen-help.php:45
|
655 |
+
#: ../includes/settings-template.php:111
|
656 |
+
msgid "Count users without role"
|
657 |
+
msgstr "Compter les utilisateurs sans rôle"
|
658 |
+
|
659 |
#: ../includes/class-ure-screen-help.php:46
|
660 |
msgid ""
|
661 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
698 |
"Seul le Super Administrateur peut créer, modifier ou supprimer des "
|
699 |
"utilisateurs sur des installations WordPress multisite par défaut. Activer "
|
700 |
"cette option pour supprimer cette limitation."
|
701 |
+
|
702 |
+
#: ../includes/class-user-role-editor.php:233
|
703 |
+
msgid "Change role for users without role"
|
704 |
+
msgstr "Changer le rôle pour les utilisateurs sans rôle"
|
705 |
+
|
706 |
+
#: ../includes/class-user-role-editor.php:234
|
707 |
+
msgid "No rights"
|
708 |
+
msgstr "Aucun droit"
|
709 |
+
|
710 |
+
#: ../includes/class-user-role-editor.php:235
|
711 |
+
msgid "Provide new role"
|
712 |
+
msgstr "Fournir un nouveau rôle"
|
713 |
+
|
714 |
+
#: ../includes/class-user-role-editor.php:298
|
715 |
+
#: ../includes/class-user-role-editor.php:300
|
716 |
+
msgid "You do not have permission to edit this user."
|
717 |
+
msgstr ""
|
718 |
+
"Vous n’avez pas l’autorisation de modifier cet utilisateur."
|
719 |
+
|
720 |
+
#: ../includes/class-user-role-editor.php:535
|
721 |
+
msgid "Settings"
|
722 |
+
msgstr "Paramètres"
|
723 |
+
|
724 |
+
#: ../includes/class-user-role-editor.php:568
|
725 |
+
#: ../includes/settings-template.php:21
|
726 |
+
msgid "General"
|
727 |
+
msgstr "Général"
|
728 |
+
|
729 |
+
#: ../includes/class-user-role-editor.php:574
|
730 |
+
#: ../includes/settings-template.php:26
|
731 |
+
msgid "Additional Modules"
|
732 |
+
msgstr "Modules complémentaires"
|
733 |
+
|
734 |
+
#: ../includes/class-user-role-editor.php:580
|
735 |
+
#: ../includes/settings-template.php:30
|
736 |
+
msgid "Default Roles"
|
737 |
+
msgstr " Rôles par défaut"
|
738 |
+
|
739 |
+
#: ../includes/class-user-role-editor.php:586
|
740 |
+
#: ../includes/settings-template.php:34
|
741 |
+
msgid "Multisite"
|
742 |
+
msgstr "Multisite"
|
743 |
+
|
744 |
+
#: ../includes/class-user-role-editor.php:685
|
745 |
+
#: ../includes/class-user-role-editor.php:703
|
746 |
+
#: ../includes/class-user-role-editor.php:747
|
747 |
+
msgid "User Role Editor options are updated"
|
748 |
+
msgstr "Les options de User Role Editor ont été mises à jour"
|
749 |
+
|
750 |
+
#: ../includes/class-user-role-editor.php:731
|
751 |
+
msgid "Default Roles are updated"
|
752 |
+
msgstr "Les rôles par défauts ont été mis à jour"
|
753 |
+
|
754 |
+
#: ../includes/class-user-role-editor.php:756
|
755 |
+
msgid ""
|
756 |
+
"You do not have sufficient permissions to manage options for User Role "
|
757 |
+
"Editor."
|
758 |
+
msgstr ""
|
759 |
+
"Vous n'avez pas les permissions suffisantes pour gérer les options de User "
|
760 |
+
"Role Editor."
|
761 |
+
|
762 |
+
#: ../includes/class-user-role-editor.php:885
|
763 |
+
msgid "Select All"
|
764 |
+
msgstr "Tout sélectionner"
|
765 |
+
|
766 |
+
#: ../includes/class-user-role-editor.php:886
|
767 |
+
msgid "Unselect All"
|
768 |
+
msgstr "Tout déselectionner"
|
769 |
+
|
770 |
+
#: ../includes/class-user-role-editor.php:887
|
771 |
+
msgid "Reverse"
|
772 |
+
msgstr "Inverser"
|
773 |
+
|
774 |
+
#: ../includes/class-user-role-editor.php:888
|
775 |
+
msgid "Update"
|
776 |
+
msgstr "Mettre à jour"
|
777 |
+
|
778 |
+
#: ../includes/class-user-role-editor.php:889
|
779 |
+
msgid "Please confirm permissions update"
|
780 |
+
msgstr "Merci de confirmer la mise à jour des permissions"
|
781 |
+
|
782 |
+
#: ../includes/class-user-role-editor.php:890
|
783 |
+
msgid "Add New Role"
|
784 |
+
msgstr "Ajouter un nouveau rôle"
|
785 |
+
|
786 |
+
#: ../includes/class-user-role-editor.php:891
|
787 |
+
#: ../includes/class-user-role-editor.php:896
|
788 |
+
msgid "Rename Role"
|
789 |
+
msgstr "Renommer le Rôle"
|
790 |
+
|
791 |
+
#: ../includes/class-user-role-editor.php:892
|
792 |
+
msgid " Role name (ID) can not be empty!"
|
793 |
+
msgstr "Le nom du rôle (ID) ne peut pas être vide !"
|
794 |
+
|
795 |
+
#: ../includes/class-user-role-editor.php:893
|
796 |
+
msgid ""
|
797 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
798 |
+
"only!"
|
799 |
+
msgstr ""
|
800 |
+
"Le nom du rôle (ID) peut contenir seulement des caractères latin, des "
|
801 |
+
"chiffres, des traits d'union ou des caractères de soulignement !"
|
802 |
+
|
803 |
+
#: ../includes/class-user-role-editor.php:894
|
804 |
+
msgid ""
|
805 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
806 |
+
"it."
|
807 |
+
msgstr ""
|
808 |
+
"WordPress ne supporte pas les noms de rôle (ID) alphanumériques. Ajouter des "
|
809 |
+
"caractères latin à celui-ci."
|
810 |
+
|
811 |
+
#: ../includes/class-user-role-editor.php:895
|
812 |
+
msgid "Add Role"
|
813 |
+
msgstr "Ajouter un rôle"
|
814 |
+
|
815 |
+
#: ../includes/class-user-role-editor.php:897
|
816 |
+
msgid "Delete Role"
|
817 |
+
msgstr "Supprimer un rôle"
|
818 |
+
|
819 |
+
#: ../includes/class-user-role-editor.php:898
|
820 |
+
msgid "Cancel"
|
821 |
+
msgstr "Annuler"
|
822 |
+
|
823 |
+
#: ../includes/class-user-role-editor.php:899
|
824 |
+
msgid "Add Capability"
|
825 |
+
msgstr "Ajouter la capacité"
|
826 |
+
|
827 |
+
#: ../includes/class-user-role-editor.php:900
|
828 |
+
#: ../includes/class-user-role-editor.php:909
|
829 |
+
msgid "Delete Capability"
|
830 |
+
msgstr "Supprimer la capacité"
|
831 |
+
|
832 |
+
#: ../includes/class-user-role-editor.php:901
|
833 |
+
msgid "Reset"
|
834 |
+
msgstr "Réinitialiser"
|
835 |
+
|
836 |
+
#: ../includes/class-user-role-editor.php:902
|
837 |
+
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
838 |
+
msgstr ""
|
839 |
+
"DANGER ! La réinitialisation va restaurer les paramètres par défaut du cœur "
|
840 |
+
"de WordPress."
|
841 |
+
|
842 |
+
#: ../includes/class-user-role-editor.php:903
|
843 |
+
msgid ""
|
844 |
+
"If any plugins have changed capabilities in any way upon installation (such "
|
845 |
+
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
846 |
+
msgstr ""
|
847 |
+
"Si aucune extension n'a modifié les capacités (comme S2Member ou WooCommerce "
|
848 |
+
"et bien d'autres), ces capacités seront SUPPRIMÉES ! "
|
849 |
+
|
850 |
+
#: ../includes/class-user-role-editor.php:904
|
851 |
+
msgid ""
|
852 |
+
"For more information on how to undo changes and restore plugin capabilities "
|
853 |
+
"go to"
|
854 |
+
msgstr ""
|
855 |
+
"Pour de plus amples informations sur la façon d'annuler les modifications et "
|
856 |
+
"rétablir les fonctions de l'extension, aller sur "
|
857 |
+
|
858 |
+
#: ../includes/class-user-role-editor.php:906
|
859 |
+
msgid "Continue?"
|
860 |
+
msgstr "Continuer ?"
|
861 |
+
|
862 |
+
#: ../includes/class-user-role-editor.php:907
|
863 |
+
msgid "Default Role"
|
864 |
+
msgstr " Rôle par défaut"
|
865 |
+
|
866 |
+
#: ../includes/class-user-role-editor.php:908
|
867 |
+
msgid "Set New Default Role"
|
868 |
+
msgstr "Régler le nouveau rôle par défaut"
|
869 |
+
|
870 |
+
#: ../includes/class-user-role-editor.php:910
|
871 |
+
msgid ""
|
872 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
873 |
+
"or other custom code"
|
874 |
+
msgstr ""
|
875 |
+
"Attention ! Enlever des capacités critiques pourrait faire planter certaines "
|
876 |
+
"extension ou autres codes personnalisés"
|
877 |
+
|
878 |
+
#: ../includes/class-user-role-editor.php:911
|
879 |
+
msgid " Capability name (ID) can not be empty!"
|
880 |
+
msgstr "Le nom de la capacité (ID) ne peut pas être vide !"
|
881 |
+
|
882 |
+
#: ../includes/class-user-role-editor.php:912
|
883 |
+
msgid ""
|
884 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
885 |
+
"underscore only!"
|
886 |
+
msgstr ""
|
887 |
+
"Le nom de la capacité (ID) doit contenir seulement des caractères latins, "
|
888 |
+
"des chiffres, des traits d'union ou des caractères de soulignement !"
|
889 |
+
|
890 |
+
#: ../includes/settings-template.php:17
|
891 |
+
msgid "User Role Editor - Options"
|
892 |
+
msgstr "User Role Editor - Options"
|
893 |
+
|
894 |
+
#: ../includes/settings-template.php:39
|
895 |
+
msgid "About"
|
896 |
+
msgstr "À propos"
|
897 |
+
|
898 |
+
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
899 |
+
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
900 |
+
msgid "Save"
|
901 |
+
msgstr "Sauvegarder"
|
902 |
+
|
903 |
+
#: ../includes/settings-template.php:138
|
904 |
+
msgid "Primary default role: "
|
905 |
+
msgstr "Rôle primaire par défaut : "
|
906 |
+
|
907 |
+
#: ../includes/settings-template.php:145
|
908 |
+
msgid "Other default roles for new registered user: "
|
909 |
+
msgstr "Autres rôles par défaut pour les nouveaux utilisateurs enregistrés : "
|
910 |
+
|
911 |
+
#: ../includes/settings-template.php:151
|
912 |
+
msgid ""
|
913 |
+
"Note for multisite environment: take into account that other default roles "
|
914 |
+
"should exist at the site, in order to be assigned to the new registered "
|
915 |
+
"users."
|
916 |
+
msgstr ""
|
917 |
+
"Note pour les environnements multisite : Prenez en considération que "
|
918 |
+
"d'autres rôles par défauts doivent exister sur le site, afin qu'ils soient "
|
919 |
+
"assignés aux nouveaux utilisateurs enregistrés."
|
920 |
+
|
921 |
+
#: ../includes/settings-template.php:177
|
922 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
923 |
+
msgstr ""
|
924 |
+
"Autoriser les utilisateurs qui ne sont pas super-administrateurs à créer, "
|
925 |
+
"modifier ou supprimer des utilisateurs"
|
926 |
+
|
927 |
+
#: ../includes/ure-user-edit.php:32
|
928 |
+
msgid "Network Super Admin"
|
929 |
+
msgstr "Super Administrateur du réseau"
|
930 |
+
|
931 |
+
#: ../includes/ure-user-edit.php:35
|
932 |
+
msgid "Change capabilities for user"
|
933 |
+
msgstr "Changer les capacité pour l'utilisateur"
|
934 |
+
|
935 |
+
#: ../includes/ure-user-edit.php:72
|
936 |
+
msgid "Primary Role:"
|
937 |
+
msgstr "Rôle primaire : "
|
938 |
+
|
939 |
+
#: ../includes/ure-user-edit.php:82
|
940 |
+
msgid "bbPress Role:"
|
941 |
+
msgstr "Rôle bbPress : "
|
942 |
+
|
943 |
+
#: ../includes/ure-user-edit.php:92
|
944 |
+
msgid "Other Roles:"
|
945 |
+
msgstr "Autres rôles :"
|
lang/{ure-he_IL.mo → user-role-editor-he_IL.mo}
RENAMED
Binary file
|
lang/{ure-he_IL.po → user-role-editor-he_IL.po}
RENAMED
@@ -5,9 +5,9 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: user-role-editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
-
"POT-Creation-Date: 2015-
|
9 |
"PO-Revision-Date: \n"
|
10 |
-
"Last-Translator: Vladimir Garagulya <
|
11 |
"Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
|
12 |
"Language: he\n"
|
13 |
"MIME-Version: 1.0\n"
|
@@ -16,1099 +16,1203 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
|
19 |
-
# wpml-name:
|
20 |
-
#: ../includes/
|
21 |
#, fuzzy
|
22 |
-
msgid "
|
23 |
-
msgstr "
|
24 |
-
|
25 |
-
#: ../includes/settings-template.php:21
|
26 |
-
#: ../includes/class-user-role-editor.php:591
|
27 |
-
msgid "General"
|
28 |
-
msgstr ""
|
29 |
-
|
30 |
-
#: ../includes/settings-template.php:26
|
31 |
-
#: ../includes/class-user-role-editor.php:597
|
32 |
-
msgid "Additional Modules"
|
33 |
-
msgstr ""
|
34 |
|
35 |
-
# wpml-name:
|
36 |
-
#: ../includes/
|
37 |
-
#: ../includes/class-user-role-editor.php:603
|
38 |
#, fuzzy
|
39 |
-
msgid "
|
40 |
-
msgstr "
|
41 |
-
|
42 |
-
#: ../includes/settings-template.php:34
|
43 |
-
#: ../includes/class-user-role-editor.php:609
|
44 |
-
msgid "Multisite"
|
45 |
-
msgstr ""
|
46 |
|
47 |
-
# wpml-name:
|
48 |
-
#: ../includes/
|
49 |
#, fuzzy
|
50 |
-
msgid "
|
51 |
-
msgstr "
|
52 |
|
53 |
-
# wpml-name:
|
54 |
-
#: ../includes/
|
55 |
-
#: ../includes/class-ure-screen-help.php:15
|
56 |
#, fuzzy
|
57 |
-
msgid "
|
58 |
-
msgstr "
|
59 |
|
60 |
-
# wpml-name:
|
61 |
-
#: ../includes/
|
62 |
-
#: ../includes/class-ure-screen-help.php:18
|
63 |
#, fuzzy
|
64 |
-
msgid "
|
65 |
-
msgstr "
|
66 |
|
67 |
-
# wpml-name:
|
68 |
-
#: ../includes/
|
69 |
-
#: ../includes/ure-user-edit.php:64 ../includes/class-ure-screen-help.php:21
|
70 |
#, fuzzy
|
71 |
-
msgid "
|
72 |
-
msgstr "
|
73 |
|
74 |
-
# wpml-name:
|
75 |
-
#: ../includes/
|
76 |
-
#: ../includes/class-ure-screen-help.php:25
|
77 |
#, fuzzy
|
78 |
-
msgid "
|
79 |
-
msgstr "
|
80 |
|
81 |
-
# wpml-name:
|
82 |
-
#: ../includes/
|
83 |
-
#: ../includes/
|
|
|
84 |
#, fuzzy
|
85 |
-
msgid "
|
86 |
-
msgstr "
|
87 |
|
88 |
-
# wpml-name:
|
89 |
-
#: ../includes/
|
90 |
-
#: ../includes/class-ure-screen-help.php:45
|
91 |
#, fuzzy
|
92 |
-
msgid "
|
93 |
-
msgstr "
|
94 |
|
95 |
-
# wpml-name:
|
96 |
-
#: ../includes/
|
97 |
#, fuzzy
|
98 |
-
msgid "
|
99 |
-
msgstr "
|
100 |
|
101 |
-
# wpml-name:
|
102 |
-
#: ../includes/
|
103 |
#, fuzzy
|
104 |
-
msgid "
|
105 |
-
msgstr "
|
106 |
|
107 |
-
# wpml-name:
|
108 |
-
#: ../includes/
|
109 |
#, fuzzy
|
110 |
-
msgid ""
|
111 |
-
"
|
112 |
-
"should exist at the site, in order to be assigned to the new registered "
|
113 |
-
"users."
|
114 |
-
msgstr ""
|
115 |
-
"הערה לאתר רשת: נא לקחת בחשבון שתפקידי ברירת מחדל אחרים צריכים להיות קיימים "
|
116 |
-
"באתר, כדי להקצות למשתמשים נרשמים חדשים."
|
117 |
|
118 |
-
# wpml-name:
|
119 |
-
#: ../includes/
|
120 |
#, fuzzy
|
121 |
-
msgid "
|
122 |
-
msgstr "
|
123 |
|
124 |
-
# wpml-name:
|
125 |
-
#: ../includes/class-
|
126 |
#, fuzzy
|
127 |
-
msgid "
|
128 |
-
msgstr "
|
129 |
|
130 |
-
# wpml-name:
|
131 |
-
#: ../includes/class-
|
132 |
#, fuzzy
|
133 |
-
msgid "
|
134 |
-
msgstr "
|
135 |
|
136 |
-
# wpml-name:
|
137 |
-
#: ../includes/class-
|
138 |
#, fuzzy
|
139 |
-
msgid "
|
140 |
-
msgstr "
|
141 |
|
142 |
-
# wpml-name:
|
143 |
-
#: ../includes/class-
|
144 |
-
#: ../includes/class-user-role-editor.php:322
|
145 |
#, fuzzy
|
146 |
-
msgid "
|
147 |
-
msgstr "
|
148 |
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
msgid "Capabilities"
|
153 |
-
msgstr "יכולות"
|
154 |
|
155 |
-
# wpml-name:
|
156 |
-
#: ../includes/class-
|
157 |
#, fuzzy
|
158 |
-
msgid "
|
159 |
-
msgstr "
|
160 |
|
161 |
-
# wpml-name:
|
162 |
-
#: ../includes/class-
|
163 |
-
#: ../includes/class-ure-lib.php:2540
|
164 |
#, fuzzy
|
165 |
-
msgid "
|
166 |
-
msgstr "
|
167 |
|
168 |
-
# wpml-name:
|
169 |
-
#: ../includes/class-
|
170 |
-
#: ../includes/class-
|
171 |
-
#: ../includes/class-
|
172 |
-
#: ../includes/class-
|
173 |
#, fuzzy
|
174 |
-
msgid "User Role Editor"
|
175 |
-
msgstr "User Role Editor"
|
176 |
|
177 |
-
# wpml-name:
|
178 |
-
#: ../includes/class-
|
179 |
-
#: ../includes/class-user-role-editor.php:726
|
180 |
-
#: ../includes/class-user-role-editor.php:770
|
181 |
#, fuzzy
|
182 |
-
msgid "
|
183 |
-
msgstr "
|
184 |
|
185 |
-
# wpml-name:
|
186 |
-
#: ../includes/class-
|
187 |
#, fuzzy
|
188 |
-
msgid "
|
189 |
-
|
|
|
|
|
|
|
190 |
|
191 |
-
# wpml-name:
|
192 |
-
#: ../includes/class-
|
193 |
#, fuzzy
|
194 |
msgid ""
|
195 |
-
"
|
196 |
-
"
|
197 |
msgstr ""
|
198 |
-
"
|
199 |
|
200 |
-
# wpml-name:
|
201 |
-
#: ../includes/class-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
#, fuzzy
|
206 |
-
msgid "Insufficient permissions to work with User Role Editor"
|
207 |
-
msgstr "לא מספיק הרשאות להשתמש בעורך התפקידים User Role Editor"
|
208 |
|
209 |
-
# wpml-name:
|
210 |
-
#: ../includes/class-
|
211 |
#, fuzzy
|
212 |
-
msgid "
|
213 |
-
msgstr "
|
214 |
|
215 |
-
# wpml-name:
|
216 |
-
#: ../includes/class-
|
217 |
-
#, fuzzy
|
218 |
-
msgid "
|
219 |
-
msgstr "
|
220 |
|
221 |
-
# wpml-name:
|
222 |
-
#: ../includes/class-
|
223 |
#, fuzzy
|
224 |
-
msgid "
|
225 |
-
msgstr "
|
226 |
|
227 |
-
# wpml-name:
|
228 |
-
#: ../includes/class-
|
229 |
#, fuzzy
|
230 |
-
msgid "
|
231 |
-
msgstr "
|
232 |
|
233 |
-
# wpml-name:
|
234 |
-
#: ../includes/class-
|
235 |
-
#, fuzzy
|
236 |
-
msgid "
|
237 |
-
msgstr "
|
238 |
|
239 |
-
# wpml-name:
|
240 |
-
#: ../includes/class-
|
241 |
-
#, fuzzy
|
242 |
-
msgid "
|
243 |
-
msgstr "
|
244 |
|
245 |
-
# wpml-name:
|
246 |
-
#: ../includes/class-
|
247 |
-
#: ../includes/class-user-role-editor.php:988
|
248 |
#, fuzzy
|
249 |
-
msgid "
|
250 |
-
msgstr "
|
251 |
|
252 |
-
# wpml-name:
|
253 |
-
#: ../includes/class-
|
254 |
#, fuzzy
|
255 |
-
msgid "
|
256 |
-
msgstr "
|
257 |
|
258 |
-
# wpml-name:
|
259 |
-
#: ../includes/class-
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
#, fuzzy
|
261 |
-
msgid ""
|
262 |
-
"
|
263 |
-
"only!"
|
264 |
-
msgstr ""
|
265 |
-
" שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
266 |
|
267 |
-
# wpml-name:
|
268 |
-
#: ../includes/class-
|
269 |
-
#, fuzzy
|
270 |
-
msgid ""
|
271 |
-
"
|
272 |
-
"it."
|
273 |
-
msgstr ""
|
274 |
-
" וורדפרס אינו תומך בשמות תפקיד מספריים (ID). נא להוסיף לזה אותיות לטיניות."
|
275 |
|
276 |
-
# wpml-name:
|
277 |
-
#: ../includes/class-
|
278 |
#, fuzzy
|
279 |
-
msgid "
|
280 |
-
msgstr "
|
281 |
|
282 |
-
# wpml-name:
|
283 |
-
#: ../includes/class-
|
284 |
#, fuzzy
|
285 |
-
msgid "
|
286 |
-
msgstr "
|
287 |
|
288 |
-
# wpml-name:
|
289 |
-
#: ../includes/class-
|
290 |
#, fuzzy
|
291 |
-
msgid "
|
292 |
-
msgstr "
|
293 |
|
294 |
-
# wpml-name:
|
295 |
-
#: ../includes/class-
|
296 |
#, fuzzy
|
297 |
-
msgid "
|
298 |
-
msgstr "
|
299 |
|
300 |
-
# wpml-name:
|
301 |
-
#: ../includes/class-
|
302 |
-
#: ../includes/class-user-role-editor.php:1001
|
303 |
#, fuzzy
|
304 |
-
msgid "
|
305 |
-
msgstr "
|
306 |
|
307 |
-
# wpml-name:
|
308 |
-
#: ../includes/class-
|
309 |
#, fuzzy
|
310 |
-
msgid "
|
311 |
-
msgstr "
|
312 |
|
313 |
-
# wpml-name:
|
314 |
-
#: ../includes/class-
|
315 |
#, fuzzy
|
316 |
-
msgid "
|
317 |
-
msgstr "
|
318 |
|
319 |
-
# wpml-name:
|
320 |
-
#: ../includes/class-
|
321 |
#, fuzzy
|
322 |
-
msgid ""
|
323 |
-
"
|
324 |
-
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
325 |
-
msgstr ""
|
326 |
-
"אם תוסף כלשהו שינה יכולות בצורה כלשהי בהתקנתו (כמו למשל S2Member, "
|
327 |
-
"WooCommerce, ורבים אחרים), יכולות אלו יימחקו!"
|
328 |
|
329 |
-
# wpml-name:
|
330 |
-
#: ../includes/class-
|
331 |
#, fuzzy
|
332 |
-
msgid ""
|
333 |
-
"
|
334 |
-
"go to"
|
335 |
-
msgstr "למידע נוסף על כיצד לבטל שינויים ולשחזר את יכולות התוסף עבור אל"
|
336 |
|
337 |
-
# wpml-name:
|
338 |
-
#: ../includes/class-
|
339 |
#, fuzzy
|
340 |
-
msgid "
|
341 |
-
msgstr "
|
342 |
|
343 |
-
# wpml-name:
|
344 |
-
#: ../includes/class-
|
345 |
#, fuzzy
|
346 |
-
msgid "
|
347 |
-
msgstr "
|
348 |
|
349 |
-
# wpml-name:
|
350 |
-
#: ../includes/class-
|
351 |
#, fuzzy
|
352 |
-
msgid "
|
353 |
-
msgstr "
|
354 |
|
355 |
-
# wpml-name:
|
356 |
-
#: ../includes/class-
|
357 |
#, fuzzy
|
358 |
-
msgid ""
|
359 |
-
"
|
360 |
-
"or other custom code"
|
361 |
-
msgstr ""
|
362 |
-
"זהירות! הסרה של אפשרויות קריטיות עשוי לגרום לתוספים מסוים או קוד נסמך שלא "
|
363 |
-
"לעבוד כשורה"
|
364 |
|
365 |
-
# wpml-name:
|
366 |
-
#: ../includes/class-
|
367 |
#, fuzzy
|
368 |
-
msgid "
|
369 |
-
msgstr "
|
370 |
|
371 |
-
# wpml-name:
|
372 |
-
#: ../includes/class-
|
373 |
#, fuzzy
|
374 |
-
msgid ""
|
375 |
-
"
|
376 |
-
"underscore only!"
|
377 |
-
msgstr ""
|
378 |
-
" שם היכולת (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
379 |
|
380 |
-
# wpml-name:
|
381 |
-
#: ../includes/class-
|
382 |
-
#: ../includes/class-user-role-editor.php:1066
|
383 |
#, fuzzy
|
384 |
-
msgid "
|
385 |
-
msgstr "
|
386 |
|
387 |
-
# wpml-name:
|
388 |
-
#: ../includes/class-
|
389 |
#, fuzzy
|
390 |
-
msgid "
|
391 |
-
msgstr "
|
392 |
|
393 |
-
# wpml-name:
|
394 |
-
#: ../includes/ure-
|
395 |
#, fuzzy
|
396 |
-
msgid "
|
397 |
-
msgstr "
|
398 |
|
399 |
-
# wpml-name:
|
400 |
-
#: ../includes/
|
401 |
#, fuzzy
|
402 |
-
msgid "
|
403 |
-
msgstr "
|
404 |
-
|
405 |
-
#: ../includes/ure-role-edit.php:44
|
406 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
407 |
-
msgstr ""
|
408 |
|
409 |
-
# wpml-name:
|
410 |
-
#: ../includes/ure-
|
411 |
#, fuzzy
|
412 |
-
msgid "
|
413 |
-
msgstr "
|
414 |
|
415 |
-
# wpml-name:
|
416 |
-
#: ../includes/
|
417 |
#, fuzzy
|
418 |
-
msgid "
|
419 |
-
msgstr "
|
420 |
|
421 |
-
# wpml-name:
|
422 |
-
#: ../includes/
|
423 |
#, fuzzy
|
424 |
-
msgid "
|
425 |
-
msgstr "
|
426 |
|
427 |
-
# wpml-name:
|
428 |
-
#: ../includes/
|
429 |
#, fuzzy
|
430 |
-
msgid "
|
431 |
-
msgstr "
|
432 |
|
433 |
-
# wpml-name:
|
434 |
-
#: ../includes/class-ure-lib.php:
|
435 |
#, fuzzy
|
436 |
-
msgid "
|
437 |
-
msgstr "
|
438 |
|
439 |
-
# wpml-name:
|
440 |
-
#: ../includes/class-ure-lib.php:
|
441 |
#, fuzzy
|
442 |
-
msgid "
|
443 |
-
msgstr "
|
444 |
|
445 |
-
# wpml-name:
|
446 |
-
#: ../includes/class-ure-lib.php:
|
447 |
#, fuzzy
|
448 |
-
msgid "
|
449 |
-
msgstr "
|
450 |
|
451 |
-
# wpml-name:
|
452 |
-
#: ../includes/class-ure-lib.php:
|
453 |
#, fuzzy
|
454 |
-
msgid "
|
455 |
-
msgstr "
|
456 |
|
457 |
-
# wpml-name:
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
#, fuzzy
|
460 |
-
msgid "
|
461 |
-
msgstr "
|
462 |
|
463 |
-
# wpml-name:
|
464 |
-
#: ../includes/class-ure-lib.php:
|
465 |
#, fuzzy
|
466 |
-
msgid "
|
467 |
-
msgstr "
|
468 |
|
469 |
-
# wpml-name:
|
470 |
-
#: ../includes/class-ure-lib.php:
|
471 |
#, fuzzy
|
472 |
-
msgid "
|
473 |
-
msgstr "
|
474 |
|
475 |
-
# wpml-name:
|
476 |
-
#: ../includes/class-ure-lib.php:
|
477 |
#, fuzzy
|
478 |
-
msgid "
|
479 |
-
msgstr "
|
480 |
|
481 |
-
# wpml-name:
|
482 |
-
#: ../includes/class-ure-lib.php:
|
483 |
#, fuzzy
|
484 |
-
msgid "
|
485 |
-
msgstr "
|
486 |
|
487 |
-
# wpml-name:
|
488 |
-
#: ../includes/class-ure-lib.php:
|
489 |
#, fuzzy
|
490 |
-
msgid "
|
491 |
-
msgstr "
|
492 |
|
493 |
-
# wpml-name:
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
#, fuzzy
|
496 |
-
msgid "
|
497 |
-
msgstr "
|
498 |
|
499 |
-
# wpml-name:
|
500 |
-
#: ../includes/class-ure-lib.php:
|
501 |
#, fuzzy
|
502 |
-
msgid "
|
503 |
-
msgstr "
|
504 |
|
505 |
-
# wpml-name:
|
506 |
-
#: ../includes/class-ure-lib.php:
|
507 |
#, fuzzy
|
508 |
-
msgid "
|
509 |
-
msgstr "
|
510 |
|
511 |
-
# wpml-name:
|
512 |
-
#: ../includes/class-ure-lib.php:
|
513 |
#, fuzzy
|
514 |
-
msgid "
|
515 |
-
msgstr "
|
516 |
|
517 |
-
# wpml-name:
|
518 |
-
#: ../includes/class-ure-lib.php:
|
519 |
#, fuzzy
|
520 |
-
msgid "
|
521 |
-
msgstr "
|
522 |
|
523 |
-
# wpml-name:
|
524 |
-
#: ../includes/class-ure-lib.php:
|
525 |
#, fuzzy
|
526 |
-
msgid "
|
527 |
-
msgstr "
|
528 |
-
|
529 |
-
#: ../includes/class-ure-lib.php:1444
|
530 |
-
msgid "read about"
|
531 |
-
msgstr ""
|
532 |
|
533 |
-
# wpml-name:
|
534 |
-
#: ../includes/class-ure-lib.php:
|
535 |
#, fuzzy
|
536 |
-
msgid "
|
537 |
-
msgstr "
|
538 |
|
539 |
-
# wpml-name:
|
540 |
-
#: ../includes/class-ure-lib.php:
|
541 |
#, fuzzy
|
542 |
-
msgid "
|
543 |
-
msgstr "
|
544 |
|
545 |
-
# wpml-name:
|
546 |
-
#: ../includes/class-ure-lib.php:
|
547 |
#, fuzzy
|
548 |
-
msgid "
|
549 |
-
msgstr "
|
550 |
|
551 |
-
# wpml-name:
|
552 |
-
#: ../includes/class-ure-lib.php:
|
553 |
#, fuzzy
|
554 |
-
msgid ""
|
555 |
-
"
|
556 |
-
"only!"
|
557 |
-
msgstr ""
|
558 |
-
"שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
|
559 |
|
560 |
-
# wpml-name:
|
561 |
-
#: ../includes/class-ure-lib.php:
|
562 |
#, fuzzy
|
563 |
-
msgid ""
|
564 |
-
"
|
565 |
-
"characters to it."
|
566 |
-
msgstr ""
|
567 |
-
"שגיאה: וורדפרס אינו תומך בשמות תפקיד מספריים (ID). הוסף לזה אותיות לטיניות."
|
568 |
-
|
569 |
-
# wpml-name: 61b6d86154b5437be56e6565f2820391
|
570 |
-
#: ../includes/class-ure-lib.php:1979
|
571 |
-
#, fuzzy, php-format
|
572 |
-
msgid "Role %s exists already"
|
573 |
-
msgstr "סוג המשתמש %s כבר קיים"
|
574 |
|
575 |
-
# wpml-name:
|
576 |
-
#: ../includes/class-ure-lib.php:
|
577 |
#, fuzzy
|
578 |
-
msgid "
|
579 |
-
msgstr "
|
580 |
-
|
581 |
-
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
582 |
-
#: ../includes/class-ure-lib.php:1996
|
583 |
-
#, fuzzy, php-format
|
584 |
-
msgid "Role %s is created successfully"
|
585 |
-
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
586 |
|
587 |
-
# wpml-name:
|
588 |
-
#: ../includes/class-ure-lib.php:
|
589 |
#, fuzzy
|
590 |
-
msgid "
|
591 |
-
msgstr "
|
592 |
|
593 |
-
# wpml-name:
|
594 |
-
#: ../includes/class-ure-lib.php:
|
595 |
#, fuzzy
|
596 |
-
msgid "
|
597 |
-
msgstr "
|
598 |
-
|
599 |
-
# wpml-name: f093e6cb4b2e171efb2f25d19479fdd0
|
600 |
-
#: ../includes/class-ure-lib.php:2045
|
601 |
-
#, fuzzy, php-format
|
602 |
-
msgid "Role %s does not exists"
|
603 |
-
msgstr "התפקיד %s אינו קיים"
|
604 |
-
|
605 |
-
# wpml-name: b0125015a614e12676c361c966b6059b
|
606 |
-
#: ../includes/class-ure-lib.php:2053
|
607 |
-
#, fuzzy, php-format
|
608 |
-
msgid "Role %s is renamed to %s successfully"
|
609 |
-
msgstr "התפקיד %s iשינה את שמו ל %s בהצלחה"
|
610 |
|
611 |
-
# wpml-name:
|
612 |
-
#: ../includes/class-ure-lib.php:
|
613 |
#, fuzzy
|
614 |
-
msgid "
|
615 |
-
msgstr "
|
616 |
|
617 |
-
# wpml-name:
|
618 |
-
#: ../includes/class-ure-lib.php:
|
619 |
#, fuzzy
|
620 |
-
msgid "
|
621 |
-
msgstr "
|
622 |
-
|
623 |
-
# wpml-name: 53552ec95bc8303219e8c39375763370
|
624 |
-
#: ../includes/class-ure-lib.php:2130
|
625 |
-
#, fuzzy, php-format
|
626 |
-
msgid "Role %s is deleted successfully"
|
627 |
-
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
628 |
|
629 |
-
# wpml-name:
|
630 |
-
#: ../includes/class-ure-lib.php:
|
631 |
#, fuzzy
|
632 |
-
msgid "
|
633 |
-
msgstr "
|
634 |
-
|
635 |
-
# wpml-name: 94978d82edc73eba0f44bc7bceb299f4
|
636 |
-
#: ../includes/class-ure-lib.php:2161
|
637 |
-
#, fuzzy, php-format
|
638 |
-
msgid "Default role for new users is set to %s successfully"
|
639 |
-
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
640 |
|
641 |
-
# wpml-name:
|
642 |
-
#: ../includes/class-ure-lib.php:
|
643 |
#, fuzzy
|
644 |
-
msgid "
|
645 |
-
msgstr "
|
646 |
|
647 |
-
# wpml-name:
|
648 |
-
#: ../includes/class-ure-lib.php:
|
649 |
#, fuzzy
|
650 |
-
msgid "
|
651 |
-
msgstr "
|
652 |
|
653 |
-
# wpml-name:
|
654 |
-
#: ../includes/class-ure-lib.php:
|
655 |
#, fuzzy
|
656 |
-
msgid "
|
657 |
-
msgstr "
|
658 |
|
659 |
-
# wpml-name:
|
660 |
-
#: ../includes/class-ure-lib.php:
|
661 |
#, fuzzy
|
662 |
-
msgid "
|
663 |
-
msgstr "
|
664 |
|
665 |
-
# wpml-name:
|
666 |
-
#: ../includes/class-ure-lib.php:
|
667 |
#, fuzzy
|
668 |
-
msgid "
|
669 |
-
msgstr "
|
670 |
|
671 |
-
# wpml-name:
|
672 |
-
#: ../includes/class-ure-lib.php:
|
673 |
#, fuzzy
|
674 |
-
msgid "
|
675 |
-
msgstr "
|
676 |
|
677 |
-
# wpml-name:
|
678 |
-
#: ../includes/class-ure-lib.php:
|
679 |
#, fuzzy
|
680 |
-
msgid "
|
681 |
-
msgstr "
|
682 |
|
683 |
-
# wpml-name:
|
684 |
-
#: ../includes/class-ure-lib.php:
|
685 |
#, fuzzy
|
686 |
-
msgid "
|
687 |
-
msgstr "
|
688 |
|
689 |
-
# wpml-name:
|
690 |
-
#: ../includes/class-ure-lib.php:
|
691 |
#, fuzzy
|
692 |
-
msgid "
|
693 |
-
msgstr "
|
694 |
|
695 |
-
# wpml-name:
|
696 |
-
#: ../includes/class-ure-lib.php:
|
697 |
#, fuzzy
|
698 |
-
msgid "
|
699 |
-
msgstr "
|
700 |
|
701 |
-
# wpml-name:
|
702 |
-
#: ../includes/class-ure-lib.php:
|
703 |
#, fuzzy
|
704 |
-
msgid "
|
705 |
-
msgstr "
|
706 |
-
|
707 |
-
# wpml-name:
|
708 |
-
#: ../includes/class-ure-lib.php:
|
709 |
#, fuzzy
|
710 |
-
msgid "
|
711 |
-
msgstr "
|
712 |
|
713 |
-
# wpml-name:
|
714 |
-
#: ../includes/class-ure-lib.php:
|
715 |
#, fuzzy
|
716 |
-
msgid "
|
717 |
-
msgstr "
|
718 |
|
719 |
-
# wpml-name:
|
720 |
-
#: ../includes/class-ure-lib.php:
|
721 |
#, fuzzy
|
722 |
-
msgid "
|
723 |
-
msgstr "
|
724 |
|
725 |
-
# wpml-name:
|
726 |
-
#: ../includes/class-ure-lib.php:
|
727 |
#, fuzzy
|
728 |
-
msgid "
|
729 |
-
msgstr "
|
730 |
|
731 |
-
# wpml-name:
|
732 |
-
#: ../includes/class-ure-lib.php:
|
733 |
#, fuzzy
|
734 |
-
msgid "
|
735 |
-
msgstr "
|
736 |
|
737 |
-
# wpml-name:
|
738 |
-
#: ../includes/class-ure-lib.php:
|
739 |
#, fuzzy
|
740 |
-
msgid "
|
741 |
-
msgstr "
|
742 |
|
743 |
-
# wpml-name:
|
744 |
-
#: ../includes/class-ure-lib.php:
|
745 |
#, fuzzy
|
746 |
-
msgid "
|
747 |
-
msgstr "
|
748 |
|
749 |
-
# wpml-name:
|
750 |
-
#: ../includes/class-ure-lib.php:
|
751 |
#, fuzzy
|
752 |
-
msgid "
|
753 |
-
msgstr "
|
754 |
|
755 |
-
# wpml-name:
|
756 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
757 |
#, fuzzy
|
758 |
-
msgid "
|
759 |
-
msgstr "
|
760 |
|
761 |
-
# wpml-name:
|
762 |
-
#: ../includes/class-ure-lib.php:
|
763 |
#, fuzzy
|
764 |
-
msgid "
|
765 |
-
msgstr "
|
766 |
|
767 |
-
# wpml-name:
|
768 |
-
#: ../includes/class-ure-lib.php:
|
769 |
#, fuzzy
|
770 |
-
msgid "
|
771 |
-
msgstr "
|
772 |
|
773 |
-
# wpml-name:
|
774 |
-
#: ../includes/class-ure-lib.php:
|
775 |
#, fuzzy
|
776 |
-
msgid "
|
777 |
-
msgstr "
|
778 |
|
779 |
-
# wpml-name:
|
780 |
-
#: ../includes/class-ure-lib.php:
|
|
|
781 |
#, fuzzy
|
782 |
-
msgid "
|
783 |
-
msgstr "
|
784 |
|
785 |
-
# wpml-name:
|
786 |
-
#: ../includes/class-ure-lib.php:
|
787 |
#, fuzzy
|
788 |
-
msgid "
|
789 |
-
msgstr "
|
790 |
|
791 |
-
# wpml-name:
|
792 |
-
#: ../includes/class-ure-lib.php:
|
793 |
#, fuzzy
|
794 |
-
msgid "
|
795 |
-
msgstr "
|
796 |
|
797 |
-
# wpml-name:
|
798 |
-
#: ../includes/class-ure-lib.php:
|
799 |
#, fuzzy
|
800 |
-
msgid "
|
801 |
-
msgstr "
|
802 |
|
803 |
-
|
804 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
805 |
#, fuzzy
|
806 |
-
msgid "
|
807 |
-
msgstr "
|
808 |
|
809 |
-
# wpml-name:
|
810 |
-
#: ../includes/
|
811 |
#, fuzzy
|
812 |
-
msgid "
|
813 |
-
msgstr "
|
814 |
|
815 |
-
# wpml-name:
|
816 |
-
#: ../includes/class-ure-
|
|
|
817 |
#, fuzzy
|
818 |
-
msgid "
|
819 |
-
msgstr "
|
820 |
|
821 |
-
|
822 |
-
|
|
|
|
|
|
|
|
|
823 |
#, fuzzy
|
824 |
-
msgid "
|
825 |
-
msgstr "
|
826 |
|
827 |
-
# wpml-name:
|
828 |
-
#: ../includes/
|
829 |
#, fuzzy
|
830 |
-
msgid "
|
831 |
-
msgstr "
|
832 |
|
833 |
-
# wpml-name:
|
834 |
-
#: ../includes/
|
835 |
#, fuzzy
|
836 |
-
msgid "
|
837 |
-
msgstr "
|
838 |
|
839 |
-
# wpml-name:
|
840 |
-
#: ../includes/
|
841 |
#, fuzzy
|
842 |
-
msgid "
|
843 |
-
msgstr "
|
844 |
|
845 |
-
# wpml-name:
|
846 |
-
#: ../includes/class-
|
|
|
|
|
847 |
#, fuzzy
|
848 |
-
msgid "
|
849 |
-
msgstr "
|
850 |
|
851 |
-
|
852 |
-
|
|
|
|
|
|
|
|
|
|
|
853 |
#, fuzzy
|
854 |
-
msgid "
|
855 |
-
msgstr "
|
856 |
|
857 |
-
# wpml-name:
|
858 |
-
#: ../includes/class-
|
859 |
#, fuzzy
|
860 |
-
msgid "
|
861 |
-
msgstr "
|
862 |
|
863 |
-
# wpml-name:
|
864 |
-
#: ../includes/class-
|
865 |
#, fuzzy
|
866 |
-
msgid "
|
867 |
-
msgstr "
|
868 |
|
869 |
-
# wpml-name:
|
870 |
-
#: ../includes/class-ure-
|
|
|
|
|
|
|
871 |
#, fuzzy
|
872 |
-
msgid "
|
873 |
-
msgstr "
|
874 |
|
875 |
-
# wpml-name:
|
876 |
-
#: ../includes/class-ure-
|
|
|
877 |
#, fuzzy
|
878 |
-
msgid "
|
879 |
-
msgstr "
|
880 |
|
881 |
-
|
882 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
883 |
#, fuzzy
|
884 |
-
msgid "
|
885 |
-
msgstr "
|
886 |
|
887 |
-
|
888 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
889 |
#, fuzzy
|
890 |
-
msgid "
|
891 |
-
msgstr "
|
892 |
|
893 |
-
|
894 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
895 |
#, fuzzy
|
896 |
-
msgid "
|
897 |
-
msgstr "
|
898 |
|
899 |
-
|
900 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
901 |
#, fuzzy
|
902 |
-
msgid "
|
903 |
-
msgstr "
|
904 |
|
905 |
-
# wpml-name:
|
906 |
-
#: ../includes/class-ure-
|
907 |
#, fuzzy
|
908 |
-
msgid "
|
909 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
910 |
|
911 |
-
# wpml-name:
|
912 |
-
#: ../includes/class-ure-
|
913 |
#, fuzzy
|
914 |
-
msgid "
|
915 |
-
msgstr "
|
916 |
|
917 |
-
|
918 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
919 |
#, fuzzy
|
920 |
-
msgid "
|
921 |
-
msgstr "
|
922 |
|
923 |
-
# wpml-name:
|
924 |
-
#: ../includes/class-
|
925 |
#, fuzzy
|
926 |
-
msgid "
|
927 |
-
msgstr "
|
928 |
|
929 |
-
# wpml-name:
|
930 |
-
#: ../includes/class-
|
931 |
#, fuzzy
|
932 |
-
msgid "
|
933 |
-
msgstr "
|
934 |
|
935 |
-
# wpml-name:
|
936 |
-
#: ../includes/class-
|
|
|
937 |
#, fuzzy
|
938 |
-
msgid "
|
939 |
-
msgstr "
|
940 |
|
941 |
-
# wpml-name:
|
942 |
-
#: ../includes/class-
|
943 |
#, fuzzy
|
944 |
-
msgid "
|
945 |
-
msgstr "
|
946 |
|
947 |
-
|
948 |
-
#: ../includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
949 |
#, fuzzy
|
950 |
-
msgid "
|
951 |
-
msgstr "
|
952 |
|
953 |
-
|
954 |
-
#: ../includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
955 |
#, fuzzy
|
956 |
-
msgid "
|
957 |
-
msgstr "
|
958 |
|
959 |
-
# wpml-name:
|
960 |
-
#: ../includes/class-
|
961 |
#, fuzzy
|
962 |
-
msgid "
|
963 |
-
msgstr "
|
964 |
|
965 |
-
# wpml-name:
|
966 |
-
#: ../includes/class-
|
967 |
#, fuzzy
|
968 |
-
msgid "
|
969 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
970 |
|
971 |
-
# wpml-name:
|
972 |
-
#: ../includes/class-
|
973 |
#, fuzzy
|
974 |
-
msgid "
|
975 |
-
msgstr "
|
976 |
|
977 |
-
# wpml-name:
|
978 |
-
#: ../includes/class-
|
979 |
#, fuzzy
|
980 |
-
msgid "
|
981 |
-
msgstr "
|
982 |
|
983 |
-
# wpml-name:
|
984 |
-
#: ../includes/class-
|
985 |
#, fuzzy
|
986 |
-
msgid "
|
987 |
-
msgstr "
|
988 |
|
989 |
-
# wpml-name:
|
990 |
-
#: ../includes/class-
|
991 |
#, fuzzy
|
992 |
-
msgid "
|
993 |
-
msgstr "
|
994 |
|
995 |
-
# wpml-name:
|
996 |
-
#: ../includes/class-
|
|
|
997 |
#, fuzzy
|
998 |
-
msgid "
|
999 |
-
msgstr "
|
1000 |
|
1001 |
-
# wpml-name:
|
1002 |
-
#: ../includes/class-
|
1003 |
#, fuzzy
|
1004 |
-
msgid "
|
1005 |
-
msgstr "
|
1006 |
|
1007 |
-
# wpml-name:
|
1008 |
-
#: ../includes/class-
|
1009 |
#, fuzzy
|
1010 |
-
msgid "
|
1011 |
-
msgstr "
|
1012 |
|
1013 |
-
# wpml-name:
|
1014 |
-
#: ../includes/class-
|
1015 |
#, fuzzy
|
1016 |
-
msgid "
|
1017 |
-
|
|
|
|
|
|
|
|
|
1018 |
|
1019 |
-
# wpml-name:
|
1020 |
-
#: ../includes/class-
|
1021 |
#, fuzzy
|
1022 |
-
msgid "
|
1023 |
-
|
|
|
|
|
1024 |
|
1025 |
-
# wpml-name:
|
1026 |
-
#: ../includes/class-
|
1027 |
#, fuzzy
|
1028 |
-
msgid "
|
1029 |
-
msgstr "
|
1030 |
|
1031 |
-
# wpml-name:
|
1032 |
-
#: ../includes/class-
|
1033 |
#, fuzzy
|
1034 |
-
msgid "
|
1035 |
-
msgstr "
|
1036 |
|
1037 |
-
# wpml-name:
|
1038 |
-
#: ../includes/class-
|
1039 |
#, fuzzy
|
1040 |
-
msgid "
|
1041 |
-
msgstr "
|
1042 |
-
|
1043 |
-
# wpml-name: 6dcaae98207ba2673da987515b02fe31
|
1044 |
-
#: ../includes/class-ure-lib.php:2382
|
1045 |
-
#, fuzzy, php-format
|
1046 |
-
msgid "Capability %s is added successfully"
|
1047 |
-
msgstr "היכולת %s נוספה בהצלחה"
|
1048 |
-
|
1049 |
-
# wpml-name: d5c1ec0556aadfa88cadffb62266b83d
|
1050 |
-
#: ../includes/class-ure-lib.php:2384
|
1051 |
-
#, fuzzy, php-format
|
1052 |
-
msgid "Capability %s exists already"
|
1053 |
-
msgstr "כבר קיימת יכולת בשם %s"
|
1054 |
-
|
1055 |
-
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
1056 |
-
#: ../includes/class-ure-lib.php:2413
|
1057 |
-
#, fuzzy, php-format
|
1058 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
1059 |
-
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
1060 |
|
1061 |
-
# wpml-name:
|
1062 |
-
#: ../includes/class-
|
1063 |
-
#, fuzzy
|
1064 |
-
msgid "
|
1065 |
-
|
|
|
|
|
|
|
|
|
1066 |
|
1067 |
-
# wpml-name:
|
1068 |
-
#: ../includes/class-
|
1069 |
#, fuzzy
|
1070 |
-
msgid "
|
1071 |
-
msgstr "
|
1072 |
|
1073 |
-
# wpml-name:
|
1074 |
-
#: ../includes/class-
|
1075 |
#, fuzzy
|
1076 |
-
msgid "
|
1077 |
-
|
|
|
|
|
|
|
1078 |
|
1079 |
-
# wpml-name:
|
1080 |
-
#: ../includes/
|
1081 |
#, fuzzy
|
1082 |
-
msgid "
|
1083 |
-
msgstr "
|
1084 |
|
1085 |
-
# wpml-name:
|
1086 |
-
#: ../includes/
|
1087 |
#, fuzzy
|
1088 |
-
msgid "
|
1089 |
-
msgstr "
|
1090 |
|
1091 |
-
# wpml-name:
|
1092 |
-
#: ../includes/
|
|
|
1093 |
#, fuzzy
|
1094 |
-
msgid "
|
1095 |
-
msgstr "
|
1096 |
|
1097 |
-
# wpml-name:
|
1098 |
-
#: ../includes/
|
1099 |
#, fuzzy
|
1100 |
-
msgid "
|
1101 |
-
msgstr "
|
1102 |
|
1103 |
-
# wpml-name:
|
1104 |
-
#: ../includes/
|
1105 |
#, fuzzy
|
1106 |
-
msgid "
|
1107 |
-
msgstr "
|
1108 |
|
1109 |
-
|
1110 |
-
|
|
|
|
|
|
|
|
|
|
|
1111 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1112 |
|
1113 |
# wpml-name: 5213962fd38769a637909d6bc2a37197
|
1114 |
#: ../includes/ure-user-edit.php:32
|
@@ -1139,79 +1243,3 @@ msgstr "תפקיד bbPress:"
|
|
1139 |
#, fuzzy
|
1140 |
msgid "Other Roles:"
|
1141 |
msgstr "תפקידים אחרים:"
|
1142 |
-
|
1143 |
-
# wpml-name: ee7816d892f54d4aa67456e2486d8a09
|
1144 |
-
#: ../includes/class-ure-screen-help.php:12
|
1145 |
-
#: ../includes/class-ure-screen-help.php:41
|
1146 |
-
#: ../includes/class-ure-screen-help.php:60
|
1147 |
-
#: ../includes/class-ure-screen-help.php:79
|
1148 |
-
#, fuzzy
|
1149 |
-
msgid "User Role Editor Options page help"
|
1150 |
-
msgstr "אפשרויות User Role Editor"
|
1151 |
-
|
1152 |
-
#: ../includes/class-ure-screen-help.php:16
|
1153 |
-
msgid ""
|
1154 |
-
"turn this option on in order to make the \"Administrator\" role available at "
|
1155 |
-
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
1156 |
-
"for security reasons."
|
1157 |
-
msgstr ""
|
1158 |
-
|
1159 |
-
#: ../includes/class-ure-screen-help.php:19
|
1160 |
-
msgid ""
|
1161 |
-
"automatically converts capability names from the technical form for internal "
|
1162 |
-
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
1163 |
-
"others posts\"."
|
1164 |
-
msgstr ""
|
1165 |
-
|
1166 |
-
#: ../includes/class-ure-screen-help.php:22
|
1167 |
-
msgid ""
|
1168 |
-
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
1169 |
-
"by WordPress. They are left at the user roles for the compatibility purpose "
|
1170 |
-
"with the old themes and plugins code. Turning on this option will show those "
|
1171 |
-
"deprecated capabilities."
|
1172 |
-
msgstr ""
|
1173 |
-
|
1174 |
-
#: ../includes/class-ure-screen-help.php:26
|
1175 |
-
msgid ""
|
1176 |
-
"If turned off - capabilities section of selected user is shown in readonly "
|
1177 |
-
"mode. Administrator can not assign capabilities to the user directly. He "
|
1178 |
-
"should make it using roles only."
|
1179 |
-
msgstr ""
|
1180 |
-
|
1181 |
-
#: ../includes/class-ure-screen-help.php:46
|
1182 |
-
msgid ""
|
1183 |
-
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
1184 |
-
"assign all of them an empty role \"No rights\", in order to look on the "
|
1185 |
-
"users list with role \"No rights\" at the separate tab then."
|
1186 |
-
msgstr ""
|
1187 |
-
|
1188 |
-
# wpml-name: 31440ac9be0558c6142aaef5938adae9
|
1189 |
-
#: ../includes/class-ure-screen-help.php:63
|
1190 |
-
#, fuzzy
|
1191 |
-
msgid "Other default roles for new registered user"
|
1192 |
-
msgstr "תפקידי ברירת מחדל אחרים למשתמש רשום חדש"
|
1193 |
-
|
1194 |
-
# wpml-name: 41b92726cf0352610f9cab72914f101f
|
1195 |
-
#: ../includes/class-ure-screen-help.php:64
|
1196 |
-
#, fuzzy
|
1197 |
-
msgid ""
|
1198 |
-
"select roles below to assign them to the new user automatically as an "
|
1199 |
-
"addition to the primary role. Note for multisite environment: take into "
|
1200 |
-
"account that other default roles should exist at the site, in order to be "
|
1201 |
-
"assigned to the new registered users."
|
1202 |
-
msgstr ""
|
1203 |
-
"הערה לאתר רשת: נא לקחת בחשבון שתפקידי ברירת מחדל אחרים צריכים להיות קיימים "
|
1204 |
-
"באתר, כדי להקצות למשתמשים נרשמים חדשים."
|
1205 |
-
|
1206 |
-
# wpml-name: d6080c04e85946f0eace45b5d1be4672
|
1207 |
-
#: ../includes/class-ure-screen-help.php:82
|
1208 |
-
#, fuzzy
|
1209 |
-
msgid "Allow non super-admininstrators to create, edit and delete users"
|
1210 |
-
msgstr "אפשר ללמנהלי משנה ליצור, לערוך ולמחוק משתמשים"
|
1211 |
-
|
1212 |
-
#: ../includes/class-ure-screen-help.php:83
|
1213 |
-
msgid ""
|
1214 |
-
"Super administrator only may create, edit and delete users under WordPress "
|
1215 |
-
"multi-site by default. Turn this option on in order to remove this "
|
1216 |
-
"limitation."
|
1217 |
-
msgstr ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: user-role-editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2015-09-11 21:06+0100\n"
|
9 |
"PO-Revision-Date: \n"
|
10 |
+
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
11 |
"Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
|
12 |
"Language: he\n"
|
13 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
|
19 |
+
# wpml-name: a4b9ac7e09dc5996d763f6bae29fd31a
|
20 |
+
#: ../includes/class-ure-lib.php:247
|
21 |
#, fuzzy
|
22 |
+
msgid "Error: wrong request"
|
23 |
+
msgstr "שגיאה: בקשה מוטעית"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
+
# wpml-name: 37b0a122a7eb7b961dc33e61b8d5df10
|
26 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
|
|
27 |
#, fuzzy
|
28 |
+
msgid "Role name (ID): "
|
29 |
+
msgstr "שם התפקיד (ID): "
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
+
# wpml-name: 246c9066a0e20805752f69f87ffb66af
|
32 |
+
#: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
|
33 |
#, fuzzy
|
34 |
+
msgid "Display Role Name: "
|
35 |
+
msgstr "הצג שם תפקיד: "
|
36 |
|
37 |
+
# wpml-name: 1f2d970e46f567eb2fe77e1f8387f37a
|
38 |
+
#: ../includes/class-ure-lib.php:284
|
|
|
39 |
#, fuzzy
|
40 |
+
msgid "Make copy of: "
|
41 |
+
msgstr "צור העתק של: "
|
42 |
|
43 |
+
# wpml-name: 6ae3f08b992f68a1bf8924945d2c7c98
|
44 |
+
#: ../includes/class-ure-lib.php:300
|
|
|
45 |
#, fuzzy
|
46 |
+
msgid "Select Role:"
|
47 |
+
msgstr "בחירת תפקיד:"
|
48 |
|
49 |
+
# wpml-name: 62f0d909f4edb78b805e4cf6747a4c36
|
50 |
+
#: ../includes/class-ure-lib.php:315
|
|
|
51 |
#, fuzzy
|
52 |
+
msgid "Delete:"
|
53 |
+
msgstr "מחיקה:"
|
54 |
|
55 |
+
# wpml-name: 42eabb45e3d2920f6a763458c3c5fffe
|
56 |
+
#: ../includes/class-ure-lib.php:322
|
|
|
57 |
#, fuzzy
|
58 |
+
msgid "Capability name (ID): "
|
59 |
+
msgstr "שם היכולת (ID): "
|
60 |
|
61 |
+
# wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
|
62 |
+
#: ../includes/class-ure-lib.php:339
|
63 |
+
#: ../includes/class-user-role-editor.php:596
|
64 |
+
#: ../includes/class-user-role-editor.php:625
|
65 |
#, fuzzy
|
66 |
+
msgid "User Role Editor"
|
67 |
+
msgstr "User Role Editor"
|
68 |
|
69 |
+
# wpml-name: f97d2eb0a66987899d02bb180936afa3
|
70 |
+
#: ../includes/class-ure-lib.php:436
|
|
|
71 |
#, fuzzy
|
72 |
+
msgid "Error: "
|
73 |
+
msgstr "שגיאה:"
|
74 |
|
75 |
+
# wpml-name: bbbabdbe1b262f75d99d62880b953be1
|
76 |
+
#: ../includes/class-ure-lib.php:436
|
77 |
#, fuzzy
|
78 |
+
msgid "Role"
|
79 |
+
msgstr "סוג משתמש:"
|
80 |
|
81 |
+
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
82 |
+
#: ../includes/class-ure-lib.php:437
|
83 |
#, fuzzy
|
84 |
+
msgid "does not exist"
|
85 |
+
msgstr "לא נמצא"
|
86 |
|
87 |
+
# wpml-name: 9fd866f99b55510d60384b7efeb22018
|
88 |
+
#: ../includes/class-ure-lib.php:480
|
89 |
#, fuzzy
|
90 |
+
msgid "Role is updated successfully"
|
91 |
+
msgstr "התפקיד עודכן בהצלחה"
|
|
|
|
|
|
|
|
|
|
|
92 |
|
93 |
+
# wpml-name: f89c187756348dad944b0fcca790fde6
|
94 |
+
#: ../includes/class-ure-lib.php:482
|
95 |
#, fuzzy
|
96 |
+
msgid "Roles are updated for all network"
|
97 |
+
msgstr "התפקידים עודכנו עבור כל הרשת"
|
98 |
|
99 |
+
# wpml-name: 9f528ca4741155f636c4331b19f2b170
|
100 |
+
#: ../includes/class-ure-lib.php:488
|
101 |
#, fuzzy
|
102 |
+
msgid "Error occured during role(s) update"
|
103 |
+
msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
|
104 |
|
105 |
+
# wpml-name: ee37618edaa53156b3a18d543ec60412
|
106 |
+
#: ../includes/class-ure-lib.php:495
|
107 |
#, fuzzy
|
108 |
+
msgid "User capabilities are updated successfully"
|
109 |
+
msgstr "יכולות המשתמש עודכנו בהצלחה"
|
110 |
|
111 |
+
# wpml-name: f7283da5501e7e1cb13255d323859feb
|
112 |
+
#: ../includes/class-ure-lib.php:500
|
113 |
#, fuzzy
|
114 |
+
msgid "Error occured during user update"
|
115 |
+
msgstr "קרתה שגיאה בזמן עדכון המשתמש"
|
116 |
|
117 |
+
# wpml-name: 7182950b4f92d446844be24cfea6276a
|
118 |
+
#: ../includes/class-ure-lib.php:558
|
|
|
119 |
#, fuzzy
|
120 |
+
msgid "User Roles are restored to WordPress default values. "
|
121 |
+
msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל של וורדפרס."
|
122 |
|
123 |
+
#: ../includes/class-ure-lib.php:1436
|
124 |
+
msgid "read about"
|
125 |
+
msgstr ""
|
|
|
|
|
126 |
|
127 |
+
# wpml-name: e16363f33a765f63f2a76c656513a3c3
|
128 |
+
#: ../includes/class-ure-lib.php:1437
|
129 |
#, fuzzy
|
130 |
+
msgid "user capability"
|
131 |
+
msgstr "עריכת יכולות משתמש"
|
132 |
|
133 |
+
# wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
|
134 |
+
#: ../includes/class-ure-lib.php:1438
|
|
|
135 |
#, fuzzy
|
136 |
+
msgid "Help"
|
137 |
+
msgstr "עזרה"
|
138 |
|
139 |
+
# wpml-name: 077a0eb06e4c26b3d834fbe4180a1f8e
|
140 |
+
#: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
|
141 |
+
#: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
|
142 |
+
#: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
|
143 |
+
#: ../includes/class-user-role-editor.php:828
|
144 |
#, fuzzy
|
145 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
146 |
+
msgstr "לא מספיק הרשאות להשתמש בעורך התפקידים User Role Editor"
|
147 |
|
148 |
+
# wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
|
149 |
+
#: ../includes/class-ure-lib.php:1909
|
|
|
|
|
150 |
#, fuzzy
|
151 |
+
msgid "Error is occur. Please check the log file."
|
152 |
+
msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
153 |
|
154 |
+
# wpml-name: f9182094e24a9e2fbb7317b1724a69c9
|
155 |
+
#: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
|
156 |
#, fuzzy
|
157 |
+
msgid ""
|
158 |
+
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
159 |
+
"only!"
|
160 |
+
msgstr ""
|
161 |
+
"שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
|
162 |
|
163 |
+
# wpml-name: a03c6e9d8af7d3cf56f1a0be07b39345
|
164 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
165 |
#, fuzzy
|
166 |
msgid ""
|
167 |
+
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
168 |
+
"characters to it."
|
169 |
msgstr ""
|
170 |
+
"שגיאה: וורדפרס אינו תומך בשמות תפקיד מספריים (ID). הוסף לזה אותיות לטיניות."
|
171 |
|
172 |
+
# wpml-name: 61b6d86154b5437be56e6565f2820391
|
173 |
+
#: ../includes/class-ure-lib.php:1974
|
174 |
+
#, fuzzy, php-format
|
175 |
+
msgid "Role %s exists already"
|
176 |
+
msgstr "סוג המשתמש %s כבר קיים"
|
|
|
|
|
|
|
177 |
|
178 |
+
# wpml-name: e0618b1a4160611a46b1b95acab0821c
|
179 |
+
#: ../includes/class-ure-lib.php:1989
|
180 |
#, fuzzy
|
181 |
+
msgid "Error is encountered during new role create operation"
|
182 |
+
msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
183 |
|
184 |
+
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
185 |
+
#: ../includes/class-ure-lib.php:1991
|
186 |
+
#, fuzzy, php-format
|
187 |
+
msgid "Role %s is created successfully"
|
188 |
+
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
189 |
|
190 |
+
# wpml-name: dbf31b81647ce1a7605928da07bbc226
|
191 |
+
#: ../includes/class-ure-lib.php:2015
|
192 |
#, fuzzy
|
193 |
+
msgid "Error: Role ID is empty!"
|
194 |
+
msgstr "שגיאה: המזהה (ID) של התפקיד ריק!"
|
195 |
|
196 |
+
# wpml-name: 83403f9d7f4181a9e4ebbc259c8b2a6c
|
197 |
+
#: ../includes/class-ure-lib.php:2033
|
198 |
#, fuzzy
|
199 |
+
msgid "Error: Empty role display name is not allowed."
|
200 |
+
msgstr "שגיאה: אסור להשאיר את שם התצוגה של התפקיד ריק."
|
201 |
|
202 |
+
# wpml-name: f093e6cb4b2e171efb2f25d19479fdd0
|
203 |
+
#: ../includes/class-ure-lib.php:2040
|
204 |
+
#, fuzzy, php-format
|
205 |
+
msgid "Role %s does not exists"
|
206 |
+
msgstr "התפקיד %s אינו קיים"
|
207 |
|
208 |
+
# wpml-name: b0125015a614e12676c361c966b6059b
|
209 |
+
#: ../includes/class-ure-lib.php:2048
|
210 |
+
#, fuzzy, php-format
|
211 |
+
msgid "Role %s is renamed to %s successfully"
|
212 |
+
msgstr "התפקיד %s iשינה את שמו ל %s בהצלחה"
|
213 |
|
214 |
+
# wpml-name: 5ca27dda122445e597586a22e18088e6
|
215 |
+
#: ../includes/class-ure-lib.php:2121
|
|
|
216 |
#, fuzzy
|
217 |
+
msgid "Error encountered during role delete operation"
|
218 |
+
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
219 |
|
220 |
+
# wpml-name: 0eccd6e6cff8dd08f231a324a0c43d10
|
221 |
+
#: ../includes/class-ure-lib.php:2123
|
222 |
#, fuzzy
|
223 |
+
msgid "Unused roles are deleted successfully"
|
224 |
+
msgstr "התפקידים שאינם בשימוש נמחקו בהצלחה"
|
225 |
|
226 |
+
# wpml-name: 53552ec95bc8303219e8c39375763370
|
227 |
+
#: ../includes/class-ure-lib.php:2125
|
228 |
+
#, fuzzy, php-format
|
229 |
+
msgid "Role %s is deleted successfully"
|
230 |
+
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
231 |
+
|
232 |
+
# wpml-name: b64bfe4842bc0638b79a24687976394e
|
233 |
+
#: ../includes/class-ure-lib.php:2153
|
234 |
#, fuzzy
|
235 |
+
msgid "Error encountered during default role change operation"
|
236 |
+
msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
|
|
|
|
|
|
|
237 |
|
238 |
+
# wpml-name: 94978d82edc73eba0f44bc7bceb299f4
|
239 |
+
#: ../includes/class-ure-lib.php:2156
|
240 |
+
#, fuzzy, php-format
|
241 |
+
msgid "Default role for new users is set to %s successfully"
|
242 |
+
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
|
|
|
|
|
|
243 |
|
244 |
+
# wpml-name: 6a2b000934893502dc6bd0467b009610
|
245 |
+
#: ../includes/class-ure-lib.php:2159
|
246 |
#, fuzzy
|
247 |
+
msgid "Can not set Administrator role as a default one"
|
248 |
+
msgstr "הצג את תפקיד מנהל בעורך התפקידים"
|
249 |
|
250 |
+
# wpml-name: f093e6cb4b2e171efb2f25d19479fdd0
|
251 |
+
#: ../includes/class-ure-lib.php:2161
|
252 |
#, fuzzy
|
253 |
+
msgid "This role does not exist - "
|
254 |
+
msgstr "התפקיד %s אינו קיים"
|
255 |
|
256 |
+
# wpml-name: 344a7f427fb765610ef96eb7bce95257
|
257 |
+
#: ../includes/class-ure-lib.php:2177
|
258 |
#, fuzzy
|
259 |
+
msgid "Editor"
|
260 |
+
msgstr "עורך"
|
261 |
|
262 |
+
# wpml-name: a517747c3d12f99244ae598910d979c5
|
263 |
+
#: ../includes/class-ure-lib.php:2178
|
264 |
#, fuzzy
|
265 |
+
msgid "Author"
|
266 |
+
msgstr "כותב"
|
267 |
|
268 |
+
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
269 |
+
#: ../includes/class-ure-lib.php:2179
|
|
|
270 |
#, fuzzy
|
271 |
+
msgid "Contributor"
|
272 |
+
msgstr "תורם"
|
273 |
|
274 |
+
# wpml-name: 992c4a5b4628d8ebf671cf460254ee81
|
275 |
+
#: ../includes/class-ure-lib.php:2180
|
276 |
#, fuzzy
|
277 |
+
msgid "Subscriber"
|
278 |
+
msgstr "מנוי"
|
279 |
|
280 |
+
# wpml-name: 87d980c0c79638536655ce7fa0a4b85d
|
281 |
+
#: ../includes/class-ure-lib.php:2182
|
282 |
#, fuzzy
|
283 |
+
msgid "Switch themes"
|
284 |
+
msgstr "החלפת תבניות"
|
285 |
|
286 |
+
# wpml-name: 8395d1904c778ee1b2762e07a6a03878
|
287 |
+
#: ../includes/class-ure-lib.php:2183
|
288 |
#, fuzzy
|
289 |
+
msgid "Edit themes"
|
290 |
+
msgstr "עריכת תבניות"
|
|
|
|
|
|
|
|
|
291 |
|
292 |
+
# wpml-name: c38bc47406355ef06ad3e10a98505536
|
293 |
+
#: ../includes/class-ure-lib.php:2184
|
294 |
#, fuzzy
|
295 |
+
msgid "Activate plugins"
|
296 |
+
msgstr "הפעלת תוספים"
|
|
|
|
|
297 |
|
298 |
+
# wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
|
299 |
+
#: ../includes/class-ure-lib.php:2185
|
300 |
#, fuzzy
|
301 |
+
msgid "Edit plugins"
|
302 |
+
msgstr "עריכת תוספים"
|
303 |
|
304 |
+
# wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
|
305 |
+
#: ../includes/class-ure-lib.php:2186
|
306 |
#, fuzzy
|
307 |
+
msgid "Edit users"
|
308 |
+
msgstr "עריכת משתמשים"
|
309 |
|
310 |
+
# wpml-name: 91c6e7a54b91cdc161f71958c597ed11
|
311 |
+
#: ../includes/class-ure-lib.php:2187
|
312 |
#, fuzzy
|
313 |
+
msgid "Edit files"
|
314 |
+
msgstr "עריכת קבצים"
|
315 |
|
316 |
+
# wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
|
317 |
+
#: ../includes/class-ure-lib.php:2188
|
318 |
#, fuzzy
|
319 |
+
msgid "Manage options"
|
320 |
+
msgstr "ניהול אפשרויות אתר"
|
|
|
|
|
|
|
|
|
321 |
|
322 |
+
# wpml-name: abb293cb5d17f4acca429ea13d74c593
|
323 |
+
#: ../includes/class-ure-lib.php:2189
|
324 |
#, fuzzy
|
325 |
+
msgid "Moderate comments"
|
326 |
+
msgstr "ניהול תגובות"
|
327 |
|
328 |
+
# wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
|
329 |
+
#: ../includes/class-ure-lib.php:2190
|
330 |
#, fuzzy
|
331 |
+
msgid "Manage categories"
|
332 |
+
msgstr "ניהול קטגוריות"
|
|
|
|
|
|
|
333 |
|
334 |
+
# wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
|
335 |
+
#: ../includes/class-ure-lib.php:2191
|
|
|
336 |
#, fuzzy
|
337 |
+
msgid "Manage links"
|
338 |
+
msgstr "ניהול קישורים"
|
339 |
|
340 |
+
# wpml-name: c7de86f69db264c3950d8ae46ed2e33f
|
341 |
+
#: ../includes/class-ure-lib.php:2192
|
342 |
#, fuzzy
|
343 |
+
msgid "Upload files"
|
344 |
+
msgstr "העלאת קבצים"
|
345 |
|
346 |
+
# wpml-name: 72d6d7a1885885bb55a565fd1070581a
|
347 |
+
#: ../includes/class-ure-lib.php:2193
|
348 |
#, fuzzy
|
349 |
+
msgid "Import"
|
350 |
+
msgstr "יבוא"
|
351 |
|
352 |
+
# wpml-name: fdd95e5640d6d73230b7544ac261457a
|
353 |
+
#: ../includes/class-ure-lib.php:2194
|
354 |
#, fuzzy
|
355 |
+
msgid "Unfiltered html"
|
356 |
+
msgstr "עריכת HTML"
|
|
|
|
|
|
|
|
|
357 |
|
358 |
+
# wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
|
359 |
+
#: ../includes/class-ure-lib.php:2195
|
360 |
#, fuzzy
|
361 |
+
msgid "Edit posts"
|
362 |
+
msgstr "עריכת פוסטים"
|
363 |
|
364 |
+
# wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
|
365 |
+
#: ../includes/class-ure-lib.php:2196
|
366 |
#, fuzzy
|
367 |
+
msgid "Edit others posts"
|
368 |
+
msgstr "עריכת פוסטים של אחרים"
|
369 |
|
370 |
+
# wpml-name: d42efc04e7900de59ed3667c971e9e9d
|
371 |
+
#: ../includes/class-ure-lib.php:2197
|
372 |
#, fuzzy
|
373 |
+
msgid "Edit published posts"
|
374 |
+
msgstr "עריכת פוסטים שפורסמו"
|
375 |
|
376 |
+
# wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
|
377 |
+
#: ../includes/class-ure-lib.php:2198
|
378 |
#, fuzzy
|
379 |
+
msgid "Publish posts"
|
380 |
+
msgstr "פוסטים שפורסמו"
|
381 |
|
382 |
+
# wpml-name: e7a51430fa0fbb32587c083ffae4b525
|
383 |
+
#: ../includes/class-ure-lib.php:2199
|
384 |
#, fuzzy
|
385 |
+
msgid "Edit pages"
|
386 |
+
msgstr "עריכת עמודים"
|
387 |
|
388 |
+
# wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
|
389 |
+
#: ../includes/class-ure-lib.php:2200
|
390 |
#, fuzzy
|
391 |
+
msgid "Read"
|
392 |
+
msgstr "קורא"
|
393 |
|
394 |
+
# wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
|
395 |
+
#: ../includes/class-ure-lib.php:2201
|
396 |
#, fuzzy
|
397 |
+
msgid "Level 10"
|
398 |
+
msgstr "דרגה 10"
|
399 |
|
400 |
+
# wpml-name: d48252bc9cffec4bed5028a7c71d8196
|
401 |
+
#: ../includes/class-ure-lib.php:2202
|
402 |
#, fuzzy
|
403 |
+
msgid "Level 9"
|
404 |
+
msgstr "דרגה 9"
|
405 |
|
406 |
+
# wpml-name: 625fef0c34a92b3685266a47f16c85dd
|
407 |
+
#: ../includes/class-ure-lib.php:2203
|
408 |
#, fuzzy
|
409 |
+
msgid "Level 8"
|
410 |
+
msgstr "דרגה 8"
|
411 |
|
412 |
+
# wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
|
413 |
+
#: ../includes/class-ure-lib.php:2204
|
414 |
#, fuzzy
|
415 |
+
msgid "Level 7"
|
416 |
+
msgstr "דרגה 7"
|
417 |
|
418 |
+
# wpml-name: b30ce92fb9295725ef29254ba5ae17e1
|
419 |
+
#: ../includes/class-ure-lib.php:2205
|
420 |
#, fuzzy
|
421 |
+
msgid "Level 6"
|
422 |
+
msgstr "דרגה 6"
|
423 |
|
424 |
+
# wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
|
425 |
+
#: ../includes/class-ure-lib.php:2206
|
426 |
#, fuzzy
|
427 |
+
msgid "Level 5"
|
428 |
+
msgstr "דרגה 5"
|
429 |
|
430 |
+
# wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
|
431 |
+
#: ../includes/class-ure-lib.php:2207
|
432 |
#, fuzzy
|
433 |
+
msgid "Level 4"
|
434 |
+
msgstr "דרגה 4"
|
435 |
|
436 |
+
# wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
|
437 |
+
#: ../includes/class-ure-lib.php:2208
|
438 |
#, fuzzy
|
439 |
+
msgid "Level 3"
|
440 |
+
msgstr "דרגה 3"
|
441 |
|
442 |
+
# wpml-name: 228e9da47384bacde793a2b78d488bb0
|
443 |
+
#: ../includes/class-ure-lib.php:2209
|
444 |
#, fuzzy
|
445 |
+
msgid "Level 2"
|
446 |
+
msgstr "דרגה 2"
|
447 |
|
448 |
+
# wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
|
449 |
+
#: ../includes/class-ure-lib.php:2210
|
450 |
#, fuzzy
|
451 |
+
msgid "Level 1"
|
452 |
+
msgstr "דרגה 1"
|
453 |
|
454 |
+
# wpml-name: 057e95a59e032dbed970592dd1245092
|
455 |
+
#: ../includes/class-ure-lib.php:2211
|
456 |
#, fuzzy
|
457 |
+
msgid "Level 0"
|
458 |
+
msgstr "דרגה 0"
|
459 |
|
460 |
+
# wpml-name: b10af907824940fe6a5aa0a77c62be6f
|
461 |
+
#: ../includes/class-ure-lib.php:2212
|
462 |
#, fuzzy
|
463 |
+
msgid "Edit others pages"
|
464 |
+
msgstr "עריכת דפים של אחרים"
|
465 |
|
466 |
+
# wpml-name: c5bfc24b0b891c9465134b83b2c6c259
|
467 |
+
#: ../includes/class-ure-lib.php:2213
|
468 |
#, fuzzy
|
469 |
+
msgid "Edit published pages"
|
470 |
+
msgstr "עריכת דפים שפורסמו"
|
471 |
|
472 |
+
# wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
|
473 |
+
#: ../includes/class-ure-lib.php:2214
|
474 |
#, fuzzy
|
475 |
+
msgid "Publish pages"
|
476 |
+
msgstr "פרסום דפים"
|
|
|
|
|
|
|
|
|
477 |
|
478 |
+
# wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
|
479 |
+
#: ../includes/class-ure-lib.php:2215
|
480 |
#, fuzzy
|
481 |
+
msgid "Delete pages"
|
482 |
+
msgstr "מחיקת דפים"
|
483 |
|
484 |
+
# wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
|
485 |
+
#: ../includes/class-ure-lib.php:2216
|
486 |
#, fuzzy
|
487 |
+
msgid "Delete others pages"
|
488 |
+
msgstr "מחיקת דפים של אחרים"
|
489 |
|
490 |
+
# wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
|
491 |
+
#: ../includes/class-ure-lib.php:2217
|
492 |
#, fuzzy
|
493 |
+
msgid "Delete published pages"
|
494 |
+
msgstr "מחיקת דפים שפורסמו"
|
495 |
|
496 |
+
# wpml-name: 3dce6f688c85f06c63224b5c3be13919
|
497 |
+
#: ../includes/class-ure-lib.php:2218
|
498 |
#, fuzzy
|
499 |
+
msgid "Delete posts"
|
500 |
+
msgstr "מחיקת פוסטים"
|
|
|
|
|
|
|
501 |
|
502 |
+
# wpml-name: c0496287732814df690c8966027a58d6
|
503 |
+
#: ../includes/class-ure-lib.php:2219
|
504 |
#, fuzzy
|
505 |
+
msgid "Delete others posts"
|
506 |
+
msgstr "מחיקת פוסטים של אחרים"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
507 |
|
508 |
+
# wpml-name: b0a2d2039494d73f81f4e476bfda24da
|
509 |
+
#: ../includes/class-ure-lib.php:2220
|
510 |
#, fuzzy
|
511 |
+
msgid "Delete published posts"
|
512 |
+
msgstr "מחיקת פוסטים שפורסמו"
|
|
|
|
|
|
|
|
|
|
|
|
|
513 |
|
514 |
+
# wpml-name: dcd02c374764e49b36f0f959cc2917bb
|
515 |
+
#: ../includes/class-ure-lib.php:2221
|
516 |
#, fuzzy
|
517 |
+
msgid "Delete private posts"
|
518 |
+
msgstr "מחיקת פוסטים פרטיים"
|
519 |
|
520 |
+
# wpml-name: da9ee842794f7caf9fa32271073d5f7a
|
521 |
+
#: ../includes/class-ure-lib.php:2222
|
522 |
#, fuzzy
|
523 |
+
msgid "Edit private posts"
|
524 |
+
msgstr "עריכת פוסטים פרטיים"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
525 |
|
526 |
+
# wpml-name: eab0355307288f6480f8c53a0d953d79
|
527 |
+
#: ../includes/class-ure-lib.php:2223
|
528 |
#, fuzzy
|
529 |
+
msgid "Read private posts"
|
530 |
+
msgstr "קריאת פוסטים פרטיים"
|
531 |
|
532 |
+
# wpml-name: 2136c12e2beeadfe0da80a36ef967eca
|
533 |
+
#: ../includes/class-ure-lib.php:2224
|
534 |
#, fuzzy
|
535 |
+
msgid "Delete private pages"
|
536 |
+
msgstr "מחיקת עמודים פרטיים"
|
|
|
|
|
|
|
|
|
|
|
|
|
537 |
|
538 |
+
# wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
|
539 |
+
#: ../includes/class-ure-lib.php:2225
|
540 |
#, fuzzy
|
541 |
+
msgid "Edit private pages"
|
542 |
+
msgstr "מחיקת עמודים פרטיים"
|
|
|
|
|
|
|
|
|
|
|
|
|
543 |
|
544 |
+
# wpml-name: 5faa3f2e9585e107dc5f23748a825882
|
545 |
+
#: ../includes/class-ure-lib.php:2226
|
546 |
#, fuzzy
|
547 |
+
msgid "Read private pages"
|
548 |
+
msgstr "קריאת עמודים פרטיים"
|
549 |
|
550 |
+
# wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
|
551 |
+
#: ../includes/class-ure-lib.php:2227
|
552 |
#, fuzzy
|
553 |
+
msgid "Delete users"
|
554 |
+
msgstr "מחיקת משתמשים"
|
555 |
|
556 |
+
# wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
|
557 |
+
#: ../includes/class-ure-lib.php:2228
|
558 |
#, fuzzy
|
559 |
+
msgid "Create users"
|
560 |
+
msgstr "יצירת משתמשים"
|
561 |
|
562 |
+
# wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
|
563 |
+
#: ../includes/class-ure-lib.php:2229
|
564 |
#, fuzzy
|
565 |
+
msgid "Unfiltered upload"
|
566 |
+
msgstr "העלאת קבצים חופשית"
|
567 |
|
568 |
+
# wpml-name: b5577d27ebfdd60a3bda83ae726d574b
|
569 |
+
#: ../includes/class-ure-lib.php:2230
|
570 |
#, fuzzy
|
571 |
+
msgid "Edit dashboard"
|
572 |
+
msgstr "שינוי לוח הבקרה"
|
573 |
|
574 |
+
# wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
|
575 |
+
#: ../includes/class-ure-lib.php:2231
|
576 |
#, fuzzy
|
577 |
+
msgid "Update plugins"
|
578 |
+
msgstr "עדכון תוספים"
|
579 |
|
580 |
+
# wpml-name: f2a839940dae3934317d8d6a6f647ebd
|
581 |
+
#: ../includes/class-ure-lib.php:2232
|
582 |
#, fuzzy
|
583 |
+
msgid "Delete plugins"
|
584 |
+
msgstr "מחיקת תוספים"
|
585 |
|
586 |
+
# wpml-name: 9d06472988c53bfc768bc7b6a788b697
|
587 |
+
#: ../includes/class-ure-lib.php:2233
|
588 |
#, fuzzy
|
589 |
+
msgid "Install plugins"
|
590 |
+
msgstr "התקנת תוספים"
|
591 |
|
592 |
+
# wpml-name: 504ea4a27260ac1e8822c5877ffe526b
|
593 |
+
#: ../includes/class-ure-lib.php:2234
|
594 |
#, fuzzy
|
595 |
+
msgid "Update themes"
|
596 |
+
msgstr "עדכון תבניות"
|
597 |
|
598 |
+
# wpml-name: a7d67fb17876569a4590902d3566a6fd
|
599 |
+
#: ../includes/class-ure-lib.php:2235
|
600 |
#, fuzzy
|
601 |
+
msgid "Install themes"
|
602 |
+
msgstr "התקנת תבניות חדשות"
|
603 |
|
604 |
+
# wpml-name: e56e5b87db548cd42be7a8a0f916205d
|
605 |
+
#: ../includes/class-ure-lib.php:2236
|
606 |
#, fuzzy
|
607 |
+
msgid "Update core"
|
608 |
+
msgstr "עדכון וורדפרס"
|
609 |
+
|
610 |
+
# wpml-name: f923f903857a5387d3db70494e074632
|
611 |
+
#: ../includes/class-ure-lib.php:2237
|
612 |
#, fuzzy
|
613 |
+
msgid "List users"
|
614 |
+
msgstr "בצפייה במשתמשים"
|
615 |
|
616 |
+
# wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
|
617 |
+
#: ../includes/class-ure-lib.php:2238
|
618 |
#, fuzzy
|
619 |
+
msgid "Remove users"
|
620 |
+
msgstr "הסרת משתמשים"
|
621 |
|
622 |
+
# wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
|
623 |
+
#: ../includes/class-ure-lib.php:2239
|
624 |
#, fuzzy
|
625 |
+
msgid "Add users"
|
626 |
+
msgstr "הוספת משתמשים"
|
627 |
|
628 |
+
# wpml-name: 12f4ba95cdfd04b791820b9c20887913
|
629 |
+
#: ../includes/class-ure-lib.php:2240
|
630 |
#, fuzzy
|
631 |
+
msgid "Promote users"
|
632 |
+
msgstr "שינוי משתמשים"
|
633 |
|
634 |
+
# wpml-name: 8841974497684dad4d55beaf2b6c52ef
|
635 |
+
#: ../includes/class-ure-lib.php:2241
|
636 |
#, fuzzy
|
637 |
+
msgid "Edit theme options"
|
638 |
+
msgstr "עריכת אפשרויות התבנית"
|
639 |
|
640 |
+
# wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
|
641 |
+
#: ../includes/class-ure-lib.php:2242
|
642 |
#, fuzzy
|
643 |
+
msgid "Delete themes"
|
644 |
+
msgstr "מחיקת תבניות"
|
645 |
|
646 |
+
# wpml-name: 0095a9fa74d1713e43e370a7d7846224
|
647 |
+
#: ../includes/class-ure-lib.php:2243
|
648 |
#, fuzzy
|
649 |
+
msgid "Export"
|
650 |
+
msgstr "ייצוא תוכן"
|
651 |
|
652 |
+
# wpml-name: 03766b9586d3012af6fc788e85d39530
|
653 |
+
#: ../includes/class-ure-lib.php:2366
|
654 |
#, fuzzy
|
655 |
+
msgid "Error: Capability name must contain latin characters and digits only!"
|
656 |
+
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
657 |
|
658 |
+
# wpml-name: 6dcaae98207ba2673da987515b02fe31
|
659 |
+
#: ../includes/class-ure-lib.php:2379
|
660 |
+
#, fuzzy, php-format
|
661 |
+
msgid "Capability %s is added successfully"
|
662 |
+
msgstr "היכולת %s נוספה בהצלחה"
|
663 |
+
|
664 |
+
# wpml-name: d5c1ec0556aadfa88cadffb62266b83d
|
665 |
+
#: ../includes/class-ure-lib.php:2381
|
666 |
+
#, fuzzy, php-format
|
667 |
+
msgid "Capability %s exists already"
|
668 |
+
msgstr "כבר קיימת יכולת בשם %s"
|
669 |
+
|
670 |
+
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
671 |
+
#: ../includes/class-ure-lib.php:2410
|
672 |
+
#, fuzzy, php-format
|
673 |
+
msgid "Error! You do not have permission to delete this capability: %s!"
|
674 |
+
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
675 |
+
|
676 |
+
# wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
|
677 |
+
#: ../includes/class-ure-lib.php:2429
|
678 |
+
#, fuzzy, php-format
|
679 |
+
msgid "Capability %s was removed successfully"
|
680 |
+
msgstr "היכולת %s הוסרה בהצלחה"
|
681 |
+
|
682 |
+
# wpml-name: 9d290d3434589e33be3d2cad4f8323ec
|
683 |
+
#: ../includes/class-ure-lib.php:2497
|
684 |
#, fuzzy
|
685 |
+
msgid "Version:"
|
686 |
+
msgstr "גרסה:"
|
687 |
|
688 |
+
# wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
|
689 |
+
#: ../includes/class-ure-lib.php:2498
|
690 |
#, fuzzy
|
691 |
+
msgid "Author's website"
|
692 |
+
msgstr "אתר היוצר"
|
693 |
|
694 |
+
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
695 |
+
#: ../includes/class-ure-lib.php:2499
|
696 |
#, fuzzy
|
697 |
+
msgid "Plugin webpage"
|
698 |
+
msgstr "דף התוסף"
|
699 |
|
700 |
+
# wpml-name: accf3af923a079190cc20507285fd1e8
|
701 |
+
#: ../includes/class-ure-lib.php:2500
|
702 |
#, fuzzy
|
703 |
+
msgid "Plugin download"
|
704 |
+
msgstr "הורדת התוסף"
|
705 |
|
706 |
+
# wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
|
707 |
+
#: ../includes/class-ure-lib.php:2501
|
708 |
+
#: ../includes/class-user-role-editor.php:546
|
709 |
#, fuzzy
|
710 |
+
msgid "Changelog"
|
711 |
+
msgstr "יומן שינויים"
|
712 |
|
713 |
+
# wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
|
714 |
+
#: ../includes/class-ure-lib.php:2502
|
715 |
#, fuzzy
|
716 |
+
msgid "FAQ"
|
717 |
+
msgstr "שאלות נפוצות"
|
718 |
|
719 |
+
# wpml-name: fb7b42559c6eb7c5e84ae0ad63c315d2
|
720 |
+
#: ../includes/class-ure-lib.php:2575
|
721 |
#, fuzzy
|
722 |
+
msgid "Delete All Unused Roles"
|
723 |
+
msgstr "מחק את כל התפקידים שאינם בשימוש"
|
724 |
|
725 |
+
# wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
|
726 |
+
#: ../includes/class-ure-lib.php:2588
|
727 |
#, fuzzy
|
728 |
+
msgid "None"
|
729 |
+
msgstr "תרום"
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2632
|
732 |
+
msgid "— No role for this site —"
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: ../includes/class-ure-lib.php:2747
|
736 |
+
#, php-format
|
737 |
+
msgid "Denied: %s"
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
# wpml-name: cb110c375e91e41d17060cc8723f710b
|
741 |
+
#: ../includes/ure-role-edit.php:17
|
742 |
#, fuzzy
|
743 |
+
msgid "Select Role and change its capabilities:"
|
744 |
+
msgstr "בחר תפקיד ושנה את היכולות שלו:"
|
745 |
|
746 |
+
# wpml-name: 5e09edd7b2ed1864deffbd964073b27a
|
747 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
748 |
#, fuzzy
|
749 |
+
msgid "Show capabilities in human readable form"
|
750 |
+
msgstr "הצג יכולות באופן קריא לבני אדם"
|
751 |
|
752 |
+
# wpml-name: 130b09deaec4b13948be95555d546f25
|
753 |
+
#: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
|
754 |
+
#: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
|
755 |
#, fuzzy
|
756 |
+
msgid "Show deprecated capabilities"
|
757 |
+
msgstr "הצג הרשאות לפי מספר"
|
758 |
|
759 |
+
#: ../includes/ure-role-edit.php:44
|
760 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
761 |
+
msgstr ""
|
762 |
+
|
763 |
+
# wpml-name: 3c3416f05587ed480626948fab988eea
|
764 |
+
#: ../includes/ure-role-edit.php:56
|
765 |
#, fuzzy
|
766 |
+
msgid "Apply to All Sites"
|
767 |
+
msgstr "החל על כל האתרים"
|
768 |
|
769 |
+
# wpml-name: cca700a30d083e59a9879c24f255abe3
|
770 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
771 |
#, fuzzy
|
772 |
+
msgid "Core capabilities:"
|
773 |
+
msgstr "יכולות ליבה:"
|
774 |
|
775 |
+
# wpml-name: dfcd600fb9e5ccb12b8bb4d83f45d35a
|
776 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
777 |
#, fuzzy
|
778 |
+
msgid "Quick filter:"
|
779 |
+
msgstr "סינון מהיר:"
|
780 |
|
781 |
+
# wpml-name: 0e57c9d7615e130906e8fc6e10065ae1
|
782 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
783 |
#, fuzzy
|
784 |
+
msgid "Custom capabilities:"
|
785 |
+
msgstr "קביעת יכולות:"
|
786 |
|
787 |
+
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
788 |
+
#: ../includes/class-user-other-roles.php:82
|
789 |
+
#: ../includes/class-user-other-roles.php:183
|
790 |
+
#: ../includes/class-user-other-roles.php:243
|
791 |
#, fuzzy
|
792 |
+
msgid "Other Roles"
|
793 |
+
msgstr "תפקידים אחרים"
|
794 |
|
795 |
+
#: ../includes/class-user-other-roles.php:83
|
796 |
+
msgid "Select additional roles for this user"
|
797 |
+
msgstr ""
|
798 |
+
|
799 |
+
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
800 |
+
#: ../includes/class-user-other-roles.php:162
|
801 |
+
#: ../includes/class-user-role-editor.php:438
|
802 |
#, fuzzy
|
803 |
+
msgid "Capabilities"
|
804 |
+
msgstr "יכולות"
|
805 |
|
806 |
+
# wpml-name: 7dce122004969d56ae2e0245cb754d35
|
807 |
+
#: ../includes/class-user-other-roles.php:169
|
808 |
#, fuzzy
|
809 |
+
msgid "Edit"
|
810 |
+
msgstr "עריכה"
|
811 |
|
812 |
+
# wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
|
813 |
+
#: ../includes/class-user-other-roles.php:215
|
814 |
#, fuzzy
|
815 |
+
msgid "Additional Capabilities"
|
816 |
+
msgstr "הוספת יכולת"
|
817 |
|
818 |
+
# wpml-name: ee7816d892f54d4aa67456e2486d8a09
|
819 |
+
#: ../includes/class-ure-screen-help.php:12
|
820 |
+
#: ../includes/class-ure-screen-help.php:41
|
821 |
+
#: ../includes/class-ure-screen-help.php:60
|
822 |
+
#: ../includes/class-ure-screen-help.php:79
|
823 |
#, fuzzy
|
824 |
+
msgid "User Role Editor Options page help"
|
825 |
+
msgstr "אפשרויות User Role Editor"
|
826 |
|
827 |
+
# wpml-name: 6a2b000934893502dc6bd0467b009610
|
828 |
+
#: ../includes/class-ure-screen-help.php:15
|
829 |
+
#: ../includes/settings-template.php:53
|
830 |
#, fuzzy
|
831 |
+
msgid "Show Administrator role at User Role Editor"
|
832 |
+
msgstr "הצג את תפקיד מנהל בעורך התפקידים"
|
833 |
|
834 |
+
#: ../includes/class-ure-screen-help.php:16
|
835 |
+
msgid ""
|
836 |
+
"turn this option on in order to make the \"Administrator\" role available at "
|
837 |
+
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
838 |
+
"for security reasons."
|
839 |
+
msgstr ""
|
840 |
+
|
841 |
+
# wpml-name: 97bcfe1a3fd7f909008bffd0318bb09b
|
842 |
+
#: ../includes/class-ure-screen-help.php:18
|
843 |
+
#: ../includes/settings-template.php:61
|
844 |
#, fuzzy
|
845 |
+
msgid "Show capabilities in the human readable form"
|
846 |
+
msgstr "הצג יכולות באופן קריא לבני אדם"
|
847 |
|
848 |
+
#: ../includes/class-ure-screen-help.php:19
|
849 |
+
msgid ""
|
850 |
+
"automatically converts capability names from the technical form for internal "
|
851 |
+
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
852 |
+
"others posts\"."
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: ../includes/class-ure-screen-help.php:22
|
856 |
+
msgid ""
|
857 |
+
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
858 |
+
"by WordPress. They are left at the user roles for the compatibility purpose "
|
859 |
+
"with the old themes and plugins code. Turning on this option will show those "
|
860 |
+
"deprecated capabilities."
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
# wpml-name: e16363f33a765f63f2a76c656513a3c3
|
864 |
+
#: ../includes/class-ure-screen-help.php:25
|
865 |
+
#: ../includes/settings-template.php:77
|
866 |
#, fuzzy
|
867 |
+
msgid "Edit user capabilities"
|
868 |
+
msgstr "עריכת יכולות משתמש"
|
869 |
|
870 |
+
#: ../includes/class-ure-screen-help.php:26
|
871 |
+
msgid ""
|
872 |
+
"If turned off - capabilities section of selected user is shown in readonly "
|
873 |
+
"mode. Administrator can not assign capabilities to the user directly. He "
|
874 |
+
"should make it using roles only."
|
875 |
+
msgstr ""
|
876 |
+
|
877 |
+
# wpml-name: e3ab3ebfb2e41f752d1aa68baaed6a82
|
878 |
+
#: ../includes/class-ure-screen-help.php:45
|
879 |
+
#: ../includes/settings-template.php:111
|
880 |
#, fuzzy
|
881 |
+
msgid "Count users without role"
|
882 |
+
msgstr "ספור את המשתמשים ללא תפקיד"
|
883 |
|
884 |
+
#: ../includes/class-ure-screen-help.php:46
|
885 |
+
msgid ""
|
886 |
+
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
887 |
+
"assign all of them an empty role \"No rights\", in order to look on the "
|
888 |
+
"users list with role \"No rights\" at the separate tab then."
|
889 |
+
msgstr ""
|
890 |
+
|
891 |
+
# wpml-name: 31440ac9be0558c6142aaef5938adae9
|
892 |
+
#: ../includes/class-ure-screen-help.php:63
|
893 |
#, fuzzy
|
894 |
+
msgid "Other default roles for new registered user"
|
895 |
+
msgstr "תפקידי ברירת מחדל אחרים למשתמש רשום חדש"
|
896 |
|
897 |
+
# wpml-name: 41b92726cf0352610f9cab72914f101f
|
898 |
+
#: ../includes/class-ure-screen-help.php:64
|
899 |
#, fuzzy
|
900 |
+
msgid ""
|
901 |
+
"select roles below to assign them to the new user automatically as an "
|
902 |
+
"addition to the primary role. Note for multisite environment: take into "
|
903 |
+
"account that other default roles should exist at the site, in order to be "
|
904 |
+
"assigned to the new registered users."
|
905 |
+
msgstr ""
|
906 |
+
"הערה לאתר רשת: נא לקחת בחשבון שתפקידי ברירת מחדל אחרים צריכים להיות קיימים "
|
907 |
+
"באתר, כדי להקצות למשתמשים נרשמים חדשים."
|
908 |
|
909 |
+
# wpml-name: d6080c04e85946f0eace45b5d1be4672
|
910 |
+
#: ../includes/class-ure-screen-help.php:82
|
911 |
#, fuzzy
|
912 |
+
msgid "Allow non super-admininstrators to create, edit and delete users"
|
913 |
+
msgstr "אפשר ללמנהלי משנה ליצור, לערוך ולמחוק משתמשים"
|
914 |
|
915 |
+
#: ../includes/class-ure-screen-help.php:83
|
916 |
+
msgid ""
|
917 |
+
"Super administrator only may create, edit and delete users under WordPress "
|
918 |
+
"multi-site by default. Turn this option on in order to remove this "
|
919 |
+
"limitation."
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
# wpml-name: 811ee91f039ea705795ebf5e09bde9f5
|
923 |
+
#: ../includes/class-user-role-editor.php:233
|
924 |
#, fuzzy
|
925 |
+
msgid "Change role for users without role"
|
926 |
+
msgstr "שנה את התפקיד למשתמשים ללא תפקיד"
|
927 |
|
928 |
+
# wpml-name: a34b1d6b1c46e4b902372075a840c582
|
929 |
+
#: ../includes/class-user-role-editor.php:234
|
930 |
#, fuzzy
|
931 |
+
msgid "No rights"
|
932 |
+
msgstr "ללא זכויות"
|
933 |
|
934 |
+
# wpml-name: 84b4334025ddad442726d6d30fa30bb3
|
935 |
+
#: ../includes/class-user-role-editor.php:235
|
936 |
#, fuzzy
|
937 |
+
msgid "Provide new role"
|
938 |
+
msgstr "קבע תפקיד חדש"
|
939 |
|
940 |
+
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
941 |
+
#: ../includes/class-user-role-editor.php:298
|
942 |
+
#: ../includes/class-user-role-editor.php:300
|
943 |
#, fuzzy
|
944 |
+
msgid "You do not have permission to edit this user."
|
945 |
+
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
946 |
|
947 |
+
# wpml-name: f4f70727dc34561dfde1a3c529b6205c
|
948 |
+
#: ../includes/class-user-role-editor.php:535
|
949 |
#, fuzzy
|
950 |
+
msgid "Settings"
|
951 |
+
msgstr "הגדרות"
|
952 |
|
953 |
+
#: ../includes/class-user-role-editor.php:568
|
954 |
+
#: ../includes/settings-template.php:21
|
955 |
+
msgid "General"
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#: ../includes/class-user-role-editor.php:574
|
959 |
+
#: ../includes/settings-template.php:26
|
960 |
+
msgid "Additional Modules"
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
964 |
+
#: ../includes/class-user-role-editor.php:580
|
965 |
+
#: ../includes/settings-template.php:30
|
966 |
#, fuzzy
|
967 |
+
msgid "Default Roles"
|
968 |
+
msgstr "תפקיד ברירת מחדל"
|
969 |
|
970 |
+
#: ../includes/class-user-role-editor.php:586
|
971 |
+
#: ../includes/settings-template.php:34
|
972 |
+
msgid "Multisite"
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
# wpml-name: aef323fbbd25d577170fff17c15cf857
|
976 |
+
#: ../includes/class-user-role-editor.php:685
|
977 |
+
#: ../includes/class-user-role-editor.php:703
|
978 |
+
#: ../includes/class-user-role-editor.php:747
|
979 |
#, fuzzy
|
980 |
+
msgid "User Role Editor options are updated"
|
981 |
+
msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
982 |
|
983 |
+
# wpml-name: 34c0807eb711e6f3442056399143676d
|
984 |
+
#: ../includes/class-user-role-editor.php:731
|
985 |
#, fuzzy
|
986 |
+
msgid "Default Roles are updated"
|
987 |
+
msgstr "תפקידי ברירת המחדל עודכנו"
|
988 |
|
989 |
+
# wpml-name: cfa97a379b5b0e4a2b77f09b95ce202d
|
990 |
+
#: ../includes/class-user-role-editor.php:756
|
991 |
#, fuzzy
|
992 |
+
msgid ""
|
993 |
+
"You do not have sufficient permissions to manage options for User Role "
|
994 |
+
"Editor."
|
995 |
+
msgstr ""
|
996 |
+
"אין לך הרשאות מסספיקות לנהל את האפשרויות עבור עורך התפקידים User Role Editor."
|
997 |
+
|
998 |
+
# wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
|
999 |
+
#: ../includes/class-user-role-editor.php:885
|
1000 |
+
#, fuzzy
|
1001 |
+
msgid "Select All"
|
1002 |
+
msgstr "בחירת הכל"
|
1003 |
+
|
1004 |
+
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
1005 |
+
#: ../includes/class-user-role-editor.php:886
|
1006 |
+
#, fuzzy
|
1007 |
+
msgid "Unselect All"
|
1008 |
+
msgstr "לא לבחור שום דבר"
|
1009 |
+
|
1010 |
+
# wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
|
1011 |
+
#: ../includes/class-user-role-editor.php:887
|
1012 |
+
#, fuzzy
|
1013 |
+
msgid "Reverse"
|
1014 |
+
msgstr "להפוך"
|
1015 |
+
|
1016 |
+
# wpml-name: 06933067aafd48425d67bcb01bba5cb6
|
1017 |
+
#: ../includes/class-user-role-editor.php:888
|
1018 |
+
#, fuzzy
|
1019 |
+
msgid "Update"
|
1020 |
+
msgstr "עדכן"
|
1021 |
+
|
1022 |
+
# wpml-name: 85251872440cc94c6080a90451e018c4
|
1023 |
+
#: ../includes/class-user-role-editor.php:889
|
1024 |
+
#, fuzzy
|
1025 |
+
msgid "Please confirm permissions update"
|
1026 |
+
msgstr "נא לאשר את עדכון ההרשאות"
|
1027 |
+
|
1028 |
+
# wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
|
1029 |
+
#: ../includes/class-user-role-editor.php:890
|
1030 |
+
#, fuzzy
|
1031 |
+
msgid "Add New Role"
|
1032 |
+
msgstr "הוסף סוג משתמש חדש"
|
1033 |
+
|
1034 |
+
# wpml-name: f0962c89a8b10e2fd876ca0ccab540fe
|
1035 |
+
#: ../includes/class-user-role-editor.php:891
|
1036 |
+
#: ../includes/class-user-role-editor.php:896
|
1037 |
+
#, fuzzy
|
1038 |
+
msgid "Rename Role"
|
1039 |
+
msgstr "שנה שם תפקיד"
|
1040 |
+
|
1041 |
+
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
1042 |
+
#: ../includes/class-user-role-editor.php:892
|
1043 |
+
#, fuzzy
|
1044 |
+
msgid " Role name (ID) can not be empty!"
|
1045 |
+
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
1046 |
+
|
1047 |
+
# wpml-name: 7b94f04285f5efc287652bd40338e730
|
1048 |
+
#: ../includes/class-user-role-editor.php:893
|
1049 |
+
#, fuzzy
|
1050 |
+
msgid ""
|
1051 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
1052 |
+
"only!"
|
1053 |
+
msgstr ""
|
1054 |
+
" שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
1055 |
+
|
1056 |
+
# wpml-name: 9d3cb86c91470b14e11d0d1355936ffb
|
1057 |
+
#: ../includes/class-user-role-editor.php:894
|
1058 |
+
#, fuzzy
|
1059 |
+
msgid ""
|
1060 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
1061 |
+
"it."
|
1062 |
+
msgstr ""
|
1063 |
+
" וורדפרס אינו תומך בשמות תפקיד מספריים (ID). נא להוסיף לזה אותיות לטיניות."
|
1064 |
|
1065 |
+
# wpml-name: 1453b39dcc15a372640d960c6db7db25
|
1066 |
+
#: ../includes/class-user-role-editor.php:895
|
1067 |
#, fuzzy
|
1068 |
+
msgid "Add Role"
|
1069 |
+
msgstr "הוספת תפקיד"
|
1070 |
|
1071 |
+
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
1072 |
+
#: ../includes/class-user-role-editor.php:897
|
1073 |
#, fuzzy
|
1074 |
+
msgid "Delete Role"
|
1075 |
+
msgstr "מחיקת סוג משתמש"
|
1076 |
|
1077 |
+
# wpml-name: ea4788705e6873b424c65e91c2846b19
|
1078 |
+
#: ../includes/class-user-role-editor.php:898
|
1079 |
#, fuzzy
|
1080 |
+
msgid "Cancel"
|
1081 |
+
msgstr "ביטול"
|
1082 |
|
1083 |
+
# wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
|
1084 |
+
#: ../includes/class-user-role-editor.php:899
|
1085 |
#, fuzzy
|
1086 |
+
msgid "Add Capability"
|
1087 |
+
msgstr "הוספת יכולת"
|
1088 |
|
1089 |
+
# wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
|
1090 |
+
#: ../includes/class-user-role-editor.php:900
|
1091 |
+
#: ../includes/class-user-role-editor.php:909
|
1092 |
#, fuzzy
|
1093 |
+
msgid "Delete Capability"
|
1094 |
+
msgstr "מחיקת יכולת"
|
1095 |
|
1096 |
+
# wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
|
1097 |
+
#: ../includes/class-user-role-editor.php:901
|
1098 |
#, fuzzy
|
1099 |
+
msgid "Reset"
|
1100 |
+
msgstr "איפוס"
|
1101 |
|
1102 |
+
# wpml-name: d72422418711904043670940067cb2eb
|
1103 |
+
#: ../includes/class-user-role-editor.php:902
|
1104 |
#, fuzzy
|
1105 |
+
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
1106 |
+
msgstr "סכנה! איפוס ישחזר את ההגדרות לברירת המחדל של ליבת וורדפרס."
|
1107 |
|
1108 |
+
# wpml-name: b2e7f2d766ee66eaee3248fe09b3f822
|
1109 |
+
#: ../includes/class-user-role-editor.php:903
|
1110 |
#, fuzzy
|
1111 |
+
msgid ""
|
1112 |
+
"If any plugins have changed capabilities in any way upon installation (such "
|
1113 |
+
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
1114 |
+
msgstr ""
|
1115 |
+
"אם תוסף כלשהו שינה יכולות בצורה כלשהי בהתקנתו (כמו למשל S2Member, "
|
1116 |
+
"WooCommerce, ורבים אחרים), יכולות אלו יימחקו!"
|
1117 |
|
1118 |
+
# wpml-name: 832e2074e0e4c3a18713a810b77da6e3
|
1119 |
+
#: ../includes/class-user-role-editor.php:904
|
1120 |
#, fuzzy
|
1121 |
+
msgid ""
|
1122 |
+
"For more information on how to undo changes and restore plugin capabilities "
|
1123 |
+
"go to"
|
1124 |
+
msgstr "למידע נוסף על כיצד לבטל שינויים ולשחזר את יכולות התוסף עבור אל"
|
1125 |
|
1126 |
+
# wpml-name: 140e317e0077aece29910d4f129b2cdd
|
1127 |
+
#: ../includes/class-user-role-editor.php:906
|
1128 |
#, fuzzy
|
1129 |
+
msgid "Continue?"
|
1130 |
+
msgstr "להמשיך?"
|
1131 |
|
1132 |
+
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
1133 |
+
#: ../includes/class-user-role-editor.php:907
|
1134 |
#, fuzzy
|
1135 |
+
msgid "Default Role"
|
1136 |
+
msgstr "תפקיד ברירת מחדל"
|
1137 |
|
1138 |
+
# wpml-name: f28d52a1096a73cff427d1216dc578ad
|
1139 |
+
#: ../includes/class-user-role-editor.php:908
|
1140 |
#, fuzzy
|
1141 |
+
msgid "Set New Default Role"
|
1142 |
+
msgstr "הגדר תפקיד ברירת מחדל חדש"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1143 |
|
1144 |
+
# wpml-name: b8827a096ab461b8e26931adf82c8d85
|
1145 |
+
#: ../includes/class-user-role-editor.php:910
|
1146 |
+
#, fuzzy
|
1147 |
+
msgid ""
|
1148 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
1149 |
+
"or other custom code"
|
1150 |
+
msgstr ""
|
1151 |
+
"זהירות! הסרה של אפשרויות קריטיות עשוי לגרום לתוספים מסוים או קוד נסמך שלא "
|
1152 |
+
"לעבוד כשורה"
|
1153 |
|
1154 |
+
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
1155 |
+
#: ../includes/class-user-role-editor.php:911
|
1156 |
#, fuzzy
|
1157 |
+
msgid " Capability name (ID) can not be empty!"
|
1158 |
+
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
1159 |
|
1160 |
+
# wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
|
1161 |
+
#: ../includes/class-user-role-editor.php:912
|
1162 |
#, fuzzy
|
1163 |
+
msgid ""
|
1164 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
1165 |
+
"underscore only!"
|
1166 |
+
msgstr ""
|
1167 |
+
" שם היכולת (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
1168 |
|
1169 |
+
# wpml-name: ee7816d892f54d4aa67456e2486d8a09
|
1170 |
+
#: ../includes/settings-template.php:17
|
1171 |
#, fuzzy
|
1172 |
+
msgid "User Role Editor - Options"
|
1173 |
+
msgstr "אפשרויות User Role Editor"
|
1174 |
|
1175 |
+
# wpml-name: 8f7f4c1ce7a4f933663d10543562b096
|
1176 |
+
#: ../includes/settings-template.php:39
|
1177 |
#, fuzzy
|
1178 |
+
msgid "About"
|
1179 |
+
msgstr "אודות"
|
1180 |
|
1181 |
+
# wpml-name: c9cc8cce247e49bae79f15173ce97354
|
1182 |
+
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
1183 |
+
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
1184 |
#, fuzzy
|
1185 |
+
msgid "Save"
|
1186 |
+
msgstr "שמירה"
|
1187 |
|
1188 |
+
# wpml-name: c33a7c260a5f56bf1e00ec5b3fe9d2ea
|
1189 |
+
#: ../includes/settings-template.php:138
|
1190 |
#, fuzzy
|
1191 |
+
msgid "Primary default role: "
|
1192 |
+
msgstr "תפקיד ברירת מחדל ראשי: "
|
1193 |
|
1194 |
+
# wpml-name: 75fcf18acf2e8b995a2cf3e563d57e02
|
1195 |
+
#: ../includes/settings-template.php:145
|
1196 |
#, fuzzy
|
1197 |
+
msgid "Other default roles for new registered user: "
|
1198 |
+
msgstr "תפקידי ברירת מחדל אחרים למשתמש רשום חדש:"
|
1199 |
|
1200 |
+
# wpml-name: 41b92726cf0352610f9cab72914f101f
|
1201 |
+
#: ../includes/settings-template.php:151
|
1202 |
+
#, fuzzy
|
1203 |
+
msgid ""
|
1204 |
+
"Note for multisite environment: take into account that other default roles "
|
1205 |
+
"should exist at the site, in order to be assigned to the new registered "
|
1206 |
+
"users."
|
1207 |
msgstr ""
|
1208 |
+
"הערה לאתר רשת: נא לקחת בחשבון שתפקידי ברירת מחדל אחרים צריכים להיות קיימים "
|
1209 |
+
"באתר, כדי להקצות למשתמשים נרשמים חדשים."
|
1210 |
+
|
1211 |
+
# wpml-name: 4767dba7bf9ad16cdee8714563128ab1
|
1212 |
+
#: ../includes/settings-template.php:177
|
1213 |
+
#, fuzzy
|
1214 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
1215 |
+
msgstr "אפשר למנהלי משנה ליצור, לערוך ולמחוק משתמשים"
|
1216 |
|
1217 |
# wpml-name: 5213962fd38769a637909d6bc2a37197
|
1218 |
#: ../includes/ure-user-edit.php:32
|
1243 |
#, fuzzy
|
1244 |
msgid "Other Roles:"
|
1245 |
msgstr "תפקידים אחרים:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/user-role-editor-hu_HU.mo
ADDED
Binary file
|
lang/{ure-hu_HU.po → user-role-editor-hu_HU.po}
RENAMED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 4.16\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <
|
8 |
"Language-Team: \n"
|
9 |
"Language: hu_HU\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -17,396 +17,100 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: ..\n"
|
19 |
|
20 |
-
#: ../includes/
|
21 |
-
msgid "User Role Editor - Options"
|
22 |
-
msgstr "Szerepkör szerkesztő - Beállítások"
|
23 |
-
|
24 |
-
#: ../includes/settings-template.php:21
|
25 |
-
#: ../includes/class-user-role-editor.php:591
|
26 |
-
msgid "General"
|
27 |
-
msgstr "Általános"
|
28 |
-
|
29 |
-
#: ../includes/settings-template.php:26
|
30 |
-
#: ../includes/class-user-role-editor.php:597
|
31 |
-
msgid "Additional Modules"
|
32 |
-
msgstr "További modulok"
|
33 |
-
|
34 |
-
#: ../includes/settings-template.php:30
|
35 |
-
#: ../includes/class-user-role-editor.php:603
|
36 |
-
msgid "Default Roles"
|
37 |
-
msgstr "Alap szerepkörök"
|
38 |
-
|
39 |
-
#: ../includes/settings-template.php:34
|
40 |
-
#: ../includes/class-user-role-editor.php:609
|
41 |
-
msgid "Multisite"
|
42 |
-
msgstr "Multisite"
|
43 |
-
|
44 |
-
#: ../includes/settings-template.php:39
|
45 |
-
msgid "About"
|
46 |
-
msgstr "Névjegy"
|
47 |
-
|
48 |
-
#: ../includes/settings-template.php:53
|
49 |
-
#: ../includes/class-ure-screen-help.php:15
|
50 |
-
msgid "Show Administrator role at User Role Editor"
|
51 |
-
msgstr "Adminisztrátor szerepkör megjelenítése a Szerepkör szerkesztőben"
|
52 |
-
|
53 |
-
#: ../includes/settings-template.php:61
|
54 |
-
#: ../includes/class-ure-screen-help.php:18
|
55 |
-
msgid "Show capabilities in the human readable form"
|
56 |
-
msgstr "Képességek megjelenítése könnyen olvasható formában"
|
57 |
-
|
58 |
-
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
59 |
-
#: ../includes/ure-user-edit.php:64 ../includes/class-ure-screen-help.php:21
|
60 |
-
msgid "Show deprecated capabilities"
|
61 |
-
msgstr "Elavult képességek megjelenítése"
|
62 |
-
|
63 |
-
#: ../includes/settings-template.php:77
|
64 |
-
#: ../includes/class-ure-screen-help.php:25
|
65 |
-
msgid "Edit user capabilities"
|
66 |
-
msgstr ""
|
67 |
-
|
68 |
-
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
69 |
-
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
70 |
-
msgid "Save"
|
71 |
-
msgstr "Mentés"
|
72 |
-
|
73 |
-
#: ../includes/settings-template.php:111
|
74 |
-
#: ../includes/class-ure-screen-help.php:45
|
75 |
-
msgid "Count users without role"
|
76 |
-
msgstr "Szerepkör nélküli felhasználók számlálása"
|
77 |
-
|
78 |
-
#: ../includes/settings-template.php:138
|
79 |
-
msgid "Primary default role: "
|
80 |
-
msgstr "Elsődleges alap szerepkör:"
|
81 |
-
|
82 |
-
#: ../includes/settings-template.php:145
|
83 |
-
msgid "Other default roles for new registered user: "
|
84 |
-
msgstr "Egyéb alap szerepkörök újonnan regisztrált felhasználók számára:"
|
85 |
-
|
86 |
-
#: ../includes/settings-template.php:151
|
87 |
-
msgid ""
|
88 |
-
"Note for multisite environment: take into account that other default roles "
|
89 |
-
"should exist at the site, in order to be assigned to the new registered "
|
90 |
-
"users."
|
91 |
-
msgstr ""
|
92 |
-
"Megjegyzés a MultiSite környezethez: vegye figyelembe, hogy több alap "
|
93 |
-
"szerepkörnek is léteznie kell a weboldalon, az új felhasználók "
|
94 |
-
"létrehozásához."
|
95 |
-
|
96 |
-
#: ../includes/settings-template.php:177
|
97 |
-
msgid "Allow non super administrators to create, edit, and delete users"
|
98 |
-
msgstr ""
|
99 |
-
"Nem szuperadminok is hozhassanak létre, módosíthassanak és törölhessenek "
|
100 |
-
"felhasználókat"
|
101 |
-
|
102 |
-
#: ../includes/class-user-role-editor.php:234
|
103 |
-
msgid "Change role for users without role"
|
104 |
-
msgstr "Szerepkör nélküli felhasználók szerepkörének megadása"
|
105 |
-
|
106 |
-
#: ../includes/class-user-role-editor.php:235
|
107 |
-
msgid "No rights"
|
108 |
-
msgstr "Nincs jogosultság"
|
109 |
-
|
110 |
-
#: ../includes/class-user-role-editor.php:236
|
111 |
-
msgid "Provide new role"
|
112 |
-
msgstr "Új szerepkör megadása"
|
113 |
-
|
114 |
-
#: ../includes/class-user-role-editor.php:320
|
115 |
-
#: ../includes/class-user-role-editor.php:322
|
116 |
-
msgid "You do not have permission to edit this user."
|
117 |
-
msgstr "Nincs jogosultsága a felhasználó szerkesztéséhez."
|
118 |
-
|
119 |
-
#: ../includes/class-user-role-editor.php:460
|
120 |
-
msgid "Capabilities"
|
121 |
-
msgstr "Képességek"
|
122 |
-
|
123 |
-
#: ../includes/class-user-role-editor.php:558
|
124 |
-
msgid "Settings"
|
125 |
-
msgstr "Beállítások"
|
126 |
-
|
127 |
-
#: ../includes/class-user-role-editor.php:569
|
128 |
-
#: ../includes/class-ure-lib.php:2540
|
129 |
-
msgid "Changelog"
|
130 |
-
msgstr "Változások naplója"
|
131 |
-
|
132 |
-
#: ../includes/class-user-role-editor.php:619
|
133 |
-
#: ../includes/class-user-role-editor.php:648
|
134 |
-
#: ../includes/class-user-role-editor.php:1030
|
135 |
-
#: ../includes/class-ure-lib.php:337
|
136 |
-
msgid "User Role Editor"
|
137 |
-
msgstr "Szerepkör szerkesztő"
|
138 |
-
|
139 |
-
#: ../includes/class-user-role-editor.php:708
|
140 |
-
#: ../includes/class-user-role-editor.php:726
|
141 |
-
#: ../includes/class-user-role-editor.php:770
|
142 |
-
msgid "User Role Editor options are updated"
|
143 |
-
msgstr "Szerepkör szerkesztő beállításai frissítve"
|
144 |
-
|
145 |
-
#: ../includes/class-user-role-editor.php:754
|
146 |
-
msgid "Default Roles are updated"
|
147 |
-
msgstr "Alap szerepkörök frissítve"
|
148 |
-
|
149 |
-
#: ../includes/class-user-role-editor.php:779
|
150 |
-
msgid ""
|
151 |
-
"You do not have sufficient permissions to manage options for User Role "
|
152 |
-
"Editor."
|
153 |
-
msgstr ""
|
154 |
-
"Nincs elég jogosultsága a Szerepkör szerkesztő beállításainak kezeléséhez."
|
155 |
-
|
156 |
-
#: ../includes/class-user-role-editor.php:851
|
157 |
-
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
158 |
-
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
159 |
-
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
160 |
-
msgid "Insufficient permissions to work with User Role Editor"
|
161 |
-
msgstr "Nincs elég jogosultsága a Szerepkör szerkesztő használatához"
|
162 |
-
|
163 |
-
#: ../includes/class-user-role-editor.php:977
|
164 |
-
msgid "Select All"
|
165 |
-
msgstr "Összeset kijelöl"
|
166 |
-
|
167 |
-
#: ../includes/class-user-role-editor.php:978
|
168 |
-
msgid "Unselect All"
|
169 |
-
msgstr "Kijelölés megszünt."
|
170 |
-
|
171 |
-
#: ../includes/class-user-role-editor.php:979
|
172 |
-
msgid "Reverse"
|
173 |
-
msgstr "Fordított kijelölés"
|
174 |
-
|
175 |
-
#: ../includes/class-user-role-editor.php:980
|
176 |
-
msgid "Update"
|
177 |
-
msgstr "Frissítés"
|
178 |
-
|
179 |
-
#: ../includes/class-user-role-editor.php:981
|
180 |
-
msgid "Please confirm permissions update"
|
181 |
-
msgstr "Képességek frissítésének megersőítése"
|
182 |
-
|
183 |
-
#: ../includes/class-user-role-editor.php:982
|
184 |
-
msgid "Add New Role"
|
185 |
-
msgstr "Új szerepkör létrehozása"
|
186 |
-
|
187 |
-
#: ../includes/class-user-role-editor.php:983
|
188 |
-
#: ../includes/class-user-role-editor.php:988
|
189 |
-
msgid "Rename Role"
|
190 |
-
msgstr "Szerepkör átnevezés"
|
191 |
-
|
192 |
-
#: ../includes/class-user-role-editor.php:984
|
193 |
-
msgid " Role name (ID) can not be empty!"
|
194 |
-
msgstr "A szerepkör neve (azonosító) nem lehet üres!"
|
195 |
-
|
196 |
-
#: ../includes/class-user-role-editor.php:985
|
197 |
-
msgid ""
|
198 |
-
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
199 |
-
"only!"
|
200 |
-
msgstr ""
|
201 |
-
"A szerepkör neve (azonosítója) csak latin betűket, szűmokat, kötőjelet és "
|
202 |
-
"aláhúzást tartalmazhat."
|
203 |
-
|
204 |
-
#: ../includes/class-user-role-editor.php:986
|
205 |
-
msgid ""
|
206 |
-
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
207 |
-
"it."
|
208 |
-
msgstr ""
|
209 |
-
"A WordPress nem támoagtja a numeriks szerepkör neveket (azonosító). Kell "
|
210 |
-
"bele legalább egy latin betű."
|
211 |
-
|
212 |
-
#: ../includes/class-user-role-editor.php:987
|
213 |
-
msgid "Add Role"
|
214 |
-
msgstr "Új szerepkör"
|
215 |
-
|
216 |
-
#: ../includes/class-user-role-editor.php:989
|
217 |
-
msgid "Delete Role"
|
218 |
-
msgstr "Szerepkör törlése"
|
219 |
-
|
220 |
-
#: ../includes/class-user-role-editor.php:990
|
221 |
-
msgid "Cancel"
|
222 |
-
msgstr "Mégse"
|
223 |
-
|
224 |
-
#: ../includes/class-user-role-editor.php:991
|
225 |
-
msgid "Add Capability"
|
226 |
-
msgstr "Új képesség"
|
227 |
-
|
228 |
-
#: ../includes/class-user-role-editor.php:992
|
229 |
-
#: ../includes/class-user-role-editor.php:1001
|
230 |
-
msgid "Delete Capability"
|
231 |
-
msgstr "Képesség törlése"
|
232 |
-
|
233 |
-
#: ../includes/class-user-role-editor.php:993
|
234 |
-
msgid "Reset"
|
235 |
-
msgstr "Alaphelyzet"
|
236 |
-
|
237 |
-
#: ../includes/class-user-role-editor.php:994
|
238 |
-
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
239 |
-
msgstr ""
|
240 |
-
"VESZÉLY! Az alaphelyzetre állítás a WordPress mag beállításait állítja be "
|
241 |
-
"újra."
|
242 |
-
|
243 |
-
#: ../includes/class-user-role-editor.php:995
|
244 |
-
msgid ""
|
245 |
-
"If any plugins have changed capabilities in any way upon installation (such "
|
246 |
-
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
247 |
-
msgstr ""
|
248 |
-
"Ha bármilyen bővítmény módosított a képességeket bármilyen módon (pl.: "
|
249 |
-
"S2Member, WooCommerce, és sok másik), ezek a módosítások TÖRÖLVE lesznek!"
|
250 |
-
|
251 |
-
#: ../includes/class-user-role-editor.php:996
|
252 |
-
msgid ""
|
253 |
-
"For more information on how to undo changes and restore plugin capabilities "
|
254 |
-
"go to"
|
255 |
-
msgstr ""
|
256 |
-
"További információ a képességek módosításainak visszavonásáról és "
|
257 |
-
"helyreállításáról"
|
258 |
-
|
259 |
-
#: ../includes/class-user-role-editor.php:998
|
260 |
-
msgid "Continue?"
|
261 |
-
msgstr "Folytassuk?"
|
262 |
-
|
263 |
-
#: ../includes/class-user-role-editor.php:999
|
264 |
-
msgid "Default Role"
|
265 |
-
msgstr "Alap szerepkör"
|
266 |
-
|
267 |
-
#: ../includes/class-user-role-editor.php:1000
|
268 |
-
msgid "Set New Default Role"
|
269 |
-
msgstr "Új alap szerepkör beállítása"
|
270 |
-
|
271 |
-
#: ../includes/class-user-role-editor.php:1002
|
272 |
-
msgid ""
|
273 |
-
"Warning! Be careful - removing critical capability could crash some plugin "
|
274 |
-
"or other custom code"
|
275 |
-
msgstr ""
|
276 |
-
"Figyelem! Legyen óvatos - kritikus képesség törlésétől leállhat néhány "
|
277 |
-
"bővítmény vagy egyedi kód."
|
278 |
-
|
279 |
-
#: ../includes/class-user-role-editor.php:1003
|
280 |
-
msgid " Capability name (ID) can not be empty!"
|
281 |
-
msgstr "A képesség név (azonosító) nem lehet üres."
|
282 |
-
|
283 |
-
#: ../includes/class-user-role-editor.php:1004
|
284 |
-
msgid ""
|
285 |
-
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
286 |
-
"underscore only!"
|
287 |
-
msgstr ""
|
288 |
-
"A képesség név (azonosító) csak latin betűkből, számokból, kötőjelből és "
|
289 |
-
"aláhúzásból állhat."
|
290 |
-
|
291 |
-
#: ../includes/class-user-role-editor.php:1033
|
292 |
-
#: ../includes/class-user-role-editor.php:1066
|
293 |
-
msgid "Other Roles"
|
294 |
-
msgstr "Más szerepkörök"
|
295 |
-
|
296 |
-
#: ../includes/class-user-role-editor.php:1047
|
297 |
-
msgid "Edit"
|
298 |
-
msgstr "Szerkeszt"
|
299 |
-
|
300 |
-
#: ../includes/ure-role-edit.php:17
|
301 |
-
msgid "Select Role and change its capabilities:"
|
302 |
-
msgstr "Szerepkör kiválasztása a képességeinek módosításához:"
|
303 |
-
|
304 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
305 |
-
msgid "Show capabilities in human readable form"
|
306 |
-
msgstr "Képességek megjelenítése olvasható formában"
|
307 |
-
|
308 |
-
#: ../includes/ure-role-edit.php:44
|
309 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
310 |
-
msgstr ""
|
311 |
-
"Ha bejelölve, akkor a művelet a hálózat minden weboldalára érvényesülni fog"
|
312 |
-
|
313 |
-
#: ../includes/ure-role-edit.php:56
|
314 |
-
msgid "Apply to All Sites"
|
315 |
-
msgstr "Alkalmazás minden oldalra"
|
316 |
-
|
317 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
318 |
-
msgid "Core capabilities:"
|
319 |
-
msgstr "Gyári képességek:"
|
320 |
-
|
321 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
322 |
-
msgid "Quick filter:"
|
323 |
-
msgstr "Gyors szűrés:"
|
324 |
-
|
325 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
326 |
-
msgid "Custom capabilities:"
|
327 |
-
msgstr "Egyedi képességek:"
|
328 |
-
|
329 |
-
#: ../includes/class-ure-lib.php:245
|
330 |
msgid "Error: wrong request"
|
331 |
msgstr "Hiba: hibás kérés"
|
332 |
|
333 |
-
#: ../includes/class-ure-lib.php:
|
334 |
msgid "Role name (ID): "
|
335 |
msgstr "Szerepkör név (azonosító):"
|
336 |
|
337 |
-
#: ../includes/class-ure-lib.php:
|
338 |
msgid "Display Role Name: "
|
339 |
msgstr "Szerepkör megnevezése:"
|
340 |
|
341 |
-
#: ../includes/class-ure-lib.php:
|
342 |
msgid "Make copy of: "
|
343 |
msgstr "Ennek a másolata:"
|
344 |
|
345 |
-
#: ../includes/class-ure-lib.php:
|
346 |
msgid "Select Role:"
|
347 |
msgstr "Válasszon szerepkört:"
|
348 |
|
349 |
-
#: ../includes/class-ure-lib.php:
|
350 |
msgid "Delete:"
|
351 |
msgstr "Törlés:"
|
352 |
|
353 |
-
#: ../includes/class-ure-lib.php:
|
354 |
msgid "Capability name (ID): "
|
355 |
msgstr "Képesség név (azonosító):"
|
356 |
|
357 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
358 |
msgid "Error: "
|
359 |
msgstr "Hiba:"
|
360 |
|
361 |
-
#: ../includes/class-ure-lib.php:
|
362 |
msgid "Role"
|
363 |
msgstr "Szerepkör"
|
364 |
|
365 |
-
#: ../includes/class-ure-lib.php:
|
366 |
msgid "does not exist"
|
367 |
msgstr "nem létezik"
|
368 |
|
369 |
-
#: ../includes/class-ure-lib.php:
|
370 |
msgid "Role is updated successfully"
|
371 |
msgstr "Szerepkör sikeresen frissítve"
|
372 |
|
373 |
-
#: ../includes/class-ure-lib.php:
|
374 |
msgid "Roles are updated for all network"
|
375 |
msgstr "Szerepkörök frissítése a teljes hálózaton"
|
376 |
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
msgid "Error occured during role(s) update"
|
379 |
msgstr "Hiba történt a szerepkör(ök) frissítése során"
|
380 |
|
381 |
-
#: ../includes/class-ure-lib.php:
|
382 |
msgid "User capabilities are updated successfully"
|
383 |
msgstr "Felhasználó képességei sikeresen frissítve"
|
384 |
|
385 |
-
#: ../includes/class-ure-lib.php:
|
386 |
msgid "Error occured during user update"
|
387 |
msgstr "Hiba történt a felhasználó frissítése során"
|
388 |
|
389 |
-
#: ../includes/class-ure-lib.php:
|
390 |
msgid "User Roles are restored to WordPress default values. "
|
391 |
msgstr "Felhasználói szerepkörök visszaállítva a WordPress alaphelyzetébe."
|
392 |
|
393 |
-
#: ../includes/class-ure-lib.php:
|
394 |
msgid "read about"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: ../includes/class-ure-lib.php:
|
398 |
msgid "user capability"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
402 |
msgid "Help"
|
403 |
msgstr "Súgó"
|
404 |
|
405 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
406 |
msgid "Error is occur. Please check the log file."
|
407 |
msgstr "Hiba történt. Nézze meg a naplófájlt!"
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
msgid ""
|
411 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
412 |
"only!"
|
@@ -414,7 +118,7 @@ msgstr ""
|
|
414 |
"Hiba: a szerepkör azonosító csak latin betűkből, számokból, kötőjelből és "
|
415 |
"aláhúzásból állhat."
|
416 |
|
417 |
-
#: ../includes/class-ure-lib.php:
|
418 |
msgid ""
|
419 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
420 |
"characters to it."
|
@@ -422,399 +126,457 @@ msgstr ""
|
|
422 |
"Hiba: a WordPress nem támogatja a numerikus szerepkör neveket "
|
423 |
"(azonosítókat). Legyen benn legalább egy latin betű."
|
424 |
|
425 |
-
#: ../includes/class-ure-lib.php:
|
426 |
#, php-format
|
427 |
msgid "Role %s exists already"
|
428 |
msgstr "%s szerepkör már létezik"
|
429 |
|
430 |
-
#: ../includes/class-ure-lib.php:
|
431 |
msgid "Error is encountered during new role create operation"
|
432 |
msgstr "Hiba történt az új szerepkör létrehozása során."
|
433 |
|
434 |
-
#: ../includes/class-ure-lib.php:
|
435 |
#, php-format
|
436 |
msgid "Role %s is created successfully"
|
437 |
msgstr "%s szerepkör sikeresen létrehozva"
|
438 |
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
msgid "Error: Role ID is empty!"
|
441 |
msgstr "Hiba: a szerepkör azonosító üres!"
|
442 |
|
443 |
-
#: ../includes/class-ure-lib.php:
|
444 |
msgid "Error: Empty role display name is not allowed."
|
445 |
msgstr "Hiba: nem lehet üres a szerepkör megjelenítendő neve."
|
446 |
|
447 |
-
#: ../includes/class-ure-lib.php:
|
448 |
#, php-format
|
449 |
msgid "Role %s does not exists"
|
450 |
msgstr "%s szerepkör nem létezik"
|
451 |
|
452 |
-
#: ../includes/class-ure-lib.php:
|
453 |
#, php-format
|
454 |
msgid "Role %s is renamed to %s successfully"
|
455 |
msgstr "%s szerepkör sikeresen átnevezve erre: %s"
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
msgid "Error encountered during role delete operation"
|
459 |
msgstr "Hiba történt a szerepkör törlése során."
|
460 |
|
461 |
-
#: ../includes/class-ure-lib.php:
|
462 |
msgid "Unused roles are deleted successfully"
|
463 |
msgstr "A nem használt szerepkörök sikeresen törölve lettek."
|
464 |
|
465 |
-
#: ../includes/class-ure-lib.php:
|
466 |
#, php-format
|
467 |
msgid "Role %s is deleted successfully"
|
468 |
msgstr "%s szerepkör sikeresen törölve lett."
|
469 |
|
470 |
-
#: ../includes/class-ure-lib.php:
|
471 |
msgid "Error encountered during default role change operation"
|
472 |
msgstr "Hiba történt az alap szerepkör módosítása során."
|
473 |
|
474 |
-
#: ../includes/class-ure-lib.php:
|
475 |
#, php-format
|
476 |
msgid "Default role for new users is set to %s successfully"
|
477 |
msgstr "Az új felhasználók alap szerepköre sikeresen módosítva erre: %s"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
480 |
msgid "Editor"
|
481 |
msgstr "Szerkesztő"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Author"
|
485 |
msgstr "Szerző"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Contributor"
|
489 |
msgstr "Közreműködő"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Subscriber"
|
493 |
msgstr "Feliratkozó"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Switch themes"
|
497 |
msgstr "Sablon kiválasztása"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Edit themes"
|
501 |
msgstr "Sablonok szerkesztése"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Activate plugins"
|
505 |
msgstr "Bővítmény bekapcsolása"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Edit plugins"
|
509 |
msgstr "Bővítmények szerkesztése"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Edit users"
|
513 |
msgstr "Felhasználók szerkesztése"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Edit files"
|
517 |
msgstr "Fájlok szerkesztése"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Manage options"
|
521 |
msgstr "Beállítások kezelése"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Moderate comments"
|
525 |
msgstr "Hozzászólások moderálása"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Manage categories"
|
529 |
msgstr "Kategóriák kezelése"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Manage links"
|
533 |
msgstr "Hivatkozások kezelése"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Upload files"
|
537 |
msgstr "Fájlok feltöltése"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Import"
|
541 |
msgstr "Importálás"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Unfiltered html"
|
545 |
msgstr "Szűretlen HTML"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Edit posts"
|
549 |
msgstr "Bejegyzések szerkesztése"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Edit others posts"
|
553 |
msgstr "Mások bejegyzéseinek szerkeszése"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Edit published posts"
|
557 |
msgstr "Közzétett bejegyzések szerkesztése"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Publish posts"
|
561 |
msgstr "Bejegyzések közzététele"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Edit pages"
|
565 |
msgstr "Oldalak szerkesztése"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Read"
|
569 |
msgstr "Olvasás"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Level 10"
|
573 |
msgstr "10. szint"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Level 9"
|
577 |
msgstr "9. szint"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Level 8"
|
581 |
msgstr "8. szint"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Level 7"
|
585 |
msgstr "7. szint"
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Level 6"
|
589 |
msgstr "6. szint"
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Level 5"
|
593 |
msgstr "5. szint"
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Level 4"
|
597 |
msgstr "4. szint"
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Level 3"
|
601 |
msgstr "3. szint"
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
msgid "Level 2"
|
605 |
msgstr "2. szint"
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Level 1"
|
609 |
msgstr "1. szint"
|
610 |
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Level 0"
|
613 |
msgstr "0. szint"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Edit others pages"
|
617 |
msgstr "Mások oldalainak szerkesztése"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Edit published pages"
|
621 |
msgstr "Közzétett oldalak szerkesztése"
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Publish pages"
|
625 |
msgstr "Oldalak közzététele"
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Delete pages"
|
629 |
msgstr "Oldalak törlése"
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Delete others pages"
|
633 |
msgstr "Mások oldalainak törlése"
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Delete published pages"
|
637 |
msgstr "Közzétett oldalak törlése"
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Delete posts"
|
641 |
msgstr "Bejegyzések törlése"
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "Delete others posts"
|
645 |
msgstr "Mások bejegyzéseinek törlése"
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Delete published posts"
|
649 |
msgstr "Közzétett bejegyzések törlése"
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Delete private posts"
|
653 |
msgstr "Privát bejegyzések törlése"
|
654 |
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Edit private posts"
|
657 |
msgstr "Privát bejegyzések szerkesztése"
|
658 |
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
msgid "Read private posts"
|
661 |
msgstr "Privát bejegyzések olvasása"
|
662 |
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Delete private pages"
|
665 |
msgstr "Privát oldalak törlése"
|
666 |
|
667 |
-
#: ../includes/class-ure-lib.php:
|
668 |
msgid "Edit private pages"
|
669 |
msgstr "Privát oldalak szerkesztése"
|
670 |
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Read private pages"
|
673 |
msgstr "Privát oldalak olvasása"
|
674 |
|
675 |
-
#: ../includes/class-ure-lib.php:
|
676 |
msgid "Delete users"
|
677 |
msgstr "Felhasználók törlése"
|
678 |
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Create users"
|
681 |
msgstr "Felhasználók létrehozása"
|
682 |
|
683 |
-
#: ../includes/class-ure-lib.php:
|
684 |
msgid "Unfiltered upload"
|
685 |
msgstr "Szűretlen feltöltés"
|
686 |
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Edit dashboard"
|
689 |
msgstr "Vezérlőpult szerkesztése"
|
690 |
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Update plugins"
|
693 |
msgstr "Bővítmények frissítése"
|
694 |
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "Delete plugins"
|
697 |
msgstr "Bővítmények törlése"
|
698 |
|
699 |
-
#: ../includes/class-ure-lib.php:
|
700 |
msgid "Install plugins"
|
701 |
msgstr "Bővítmények telepítése"
|
702 |
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Update themes"
|
705 |
msgstr "Sablonok frissítése"
|
706 |
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
msgid "Install themes"
|
709 |
msgstr "Sablonok telepítése"
|
710 |
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Update core"
|
713 |
msgstr "Mag frissítése"
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
msgid "List users"
|
717 |
msgstr "Felhasználók listázása"
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Remove users"
|
721 |
msgstr "Felhasználók törlése"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
msgid "Add users"
|
725 |
msgstr "Felhasználók hozzáadása"
|
726 |
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
msgid "Promote users"
|
729 |
msgstr "Felhasználók előléptetése"
|
730 |
|
731 |
-
#: ../includes/class-ure-lib.php:
|
732 |
msgid "Edit theme options"
|
733 |
msgstr "Sablon beállítások módosítása"
|
734 |
|
735 |
-
#: ../includes/class-ure-lib.php:
|
736 |
msgid "Delete themes"
|
737 |
msgstr "Sablonok törlése"
|
738 |
|
739 |
-
#: ../includes/class-ure-lib.php:
|
740 |
msgid "Export"
|
741 |
msgstr "Exportálás"
|
742 |
|
743 |
-
#: ../includes/class-ure-lib.php:
|
744 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
745 |
msgstr "Hiba: a képesség neve csak latin betűkből és számokból állhat."
|
746 |
|
747 |
-
#: ../includes/class-ure-lib.php:
|
748 |
#, php-format
|
749 |
msgid "Capability %s is added successfully"
|
750 |
msgstr "%s képesség sikeresen hozzáadva"
|
751 |
|
752 |
-
#: ../includes/class-ure-lib.php:
|
753 |
#, php-format
|
754 |
msgid "Capability %s exists already"
|
755 |
msgstr "%s képesség már létezik"
|
756 |
|
757 |
-
#: ../includes/class-ure-lib.php:
|
758 |
#, php-format
|
759 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
760 |
msgstr "Hiba! Nincs jogosultsága a képesség (%s) törléséhez."
|
761 |
|
762 |
-
#: ../includes/class-ure-lib.php:
|
763 |
-
#, php-format
|
764 |
-
msgid "Capability %s
|
765 |
msgstr "%s képesség sikeresen törölve"
|
766 |
|
767 |
-
#: ../includes/class-ure-lib.php:
|
768 |
msgid "Version:"
|
769 |
msgstr "Verzió:"
|
770 |
|
771 |
-
#: ../includes/class-ure-lib.php:
|
772 |
msgid "Author's website"
|
773 |
msgstr "Szerző weboldala"
|
774 |
|
775 |
-
#: ../includes/class-ure-lib.php:
|
776 |
msgid "Plugin webpage"
|
777 |
msgstr "Bővítmény weboldala"
|
778 |
|
779 |
-
#: ../includes/class-ure-lib.php:
|
780 |
msgid "Plugin download"
|
781 |
msgstr "Bővítmény letöltése"
|
782 |
|
783 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
784 |
msgid "FAQ"
|
785 |
msgstr "GyIK"
|
786 |
|
787 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
788 |
msgid "None"
|
789 |
msgstr "Nincs"
|
790 |
|
791 |
-
#: ../includes/class-ure-lib.php:
|
792 |
-
msgid "
|
793 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
794 |
|
795 |
-
#: ../includes/
|
796 |
-
msgid "
|
797 |
-
msgstr "
|
798 |
|
799 |
-
#: ../includes/
|
800 |
-
|
801 |
-
|
|
|
|
|
802 |
|
803 |
-
#: ../includes/
|
804 |
-
msgid "
|
805 |
-
msgstr "
|
806 |
|
807 |
-
#: ../includes/
|
808 |
-
|
809 |
-
|
|
|
810 |
|
811 |
-
#: ../includes/
|
812 |
-
msgid "
|
813 |
-
msgstr "
|
814 |
|
815 |
-
#: ../includes/
|
816 |
-
|
817 |
-
|
|
|
818 |
|
819 |
#: ../includes/class-ure-screen-help.php:12
|
820 |
#: ../includes/class-ure-screen-help.php:41
|
@@ -823,6 +585,11 @@ msgstr "Más szerepkörök:"
|
|
823 |
msgid "User Role Editor Options page help"
|
824 |
msgstr ""
|
825 |
|
|
|
|
|
|
|
|
|
|
|
826 |
#: ../includes/class-ure-screen-help.php:16
|
827 |
msgid ""
|
828 |
"turn this option on in order to make the \"Administrator\" role available at "
|
@@ -833,6 +600,11 @@ msgstr ""
|
|
833 |
"legördülő listákban a Szerepkör szerkesztőben. Alapértelmezésként el van "
|
834 |
"rejtve biztonsági okok miatt."
|
835 |
|
|
|
|
|
|
|
|
|
|
|
836 |
#: ../includes/class-ure-screen-help.php:19
|
837 |
msgid ""
|
838 |
"automatically converts capability names from the technical form for internal "
|
@@ -853,6 +625,11 @@ msgstr ""
|
|
853 |
"használja. Csak a régi sablonokkal és bővítményekkel való kompatíbilitás "
|
854 |
"miatt maradtak meg. Ez az opció ezeket az elavult képességeket jeleníti meg."
|
855 |
|
|
|
|
|
|
|
|
|
|
|
856 |
#: ../includes/class-ure-screen-help.php:26
|
857 |
msgid ""
|
858 |
"If turned off - capabilities section of selected user is shown in readonly "
|
@@ -860,6 +637,11 @@ msgid ""
|
|
860 |
"should make it using roles only."
|
861 |
msgstr ""
|
862 |
|
|
|
|
|
|
|
|
|
|
|
863 |
#: ../includes/class-ure-screen-help.php:46
|
864 |
msgid ""
|
865 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
@@ -899,5 +681,248 @@ msgstr ""
|
|
899 |
"módosíthatnak és törölhetnek felhasználókat. Ezzel az opcióval ez a megkötés "
|
900 |
"feloldható."
|
901 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
902 |
#~ msgid "select roles below"
|
903 |
#~ msgstr "válasszon szerepköröket alább"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 4.16\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-11 21:06+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: hu_HU\n"
|
10 |
"MIME-Version: 1.0\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: ..\n"
|
19 |
|
20 |
+
#: ../includes/class-ure-lib.php:247
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
msgid "Error: wrong request"
|
22 |
msgstr "Hiba: hibás kérés"
|
23 |
|
24 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
25 |
msgid "Role name (ID): "
|
26 |
msgstr "Szerepkör név (azonosító):"
|
27 |
|
28 |
+
#: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
|
29 |
msgid "Display Role Name: "
|
30 |
msgstr "Szerepkör megnevezése:"
|
31 |
|
32 |
+
#: ../includes/class-ure-lib.php:284
|
33 |
msgid "Make copy of: "
|
34 |
msgstr "Ennek a másolata:"
|
35 |
|
36 |
+
#: ../includes/class-ure-lib.php:300
|
37 |
msgid "Select Role:"
|
38 |
msgstr "Válasszon szerepkört:"
|
39 |
|
40 |
+
#: ../includes/class-ure-lib.php:315
|
41 |
msgid "Delete:"
|
42 |
msgstr "Törlés:"
|
43 |
|
44 |
+
#: ../includes/class-ure-lib.php:322
|
45 |
msgid "Capability name (ID): "
|
46 |
msgstr "Képesség név (azonosító):"
|
47 |
|
48 |
+
#: ../includes/class-ure-lib.php:339
|
49 |
+
#: ../includes/class-user-role-editor.php:596
|
50 |
+
#: ../includes/class-user-role-editor.php:625
|
51 |
+
msgid "User Role Editor"
|
52 |
+
msgstr "Szerepkör szerkesztő"
|
53 |
+
|
54 |
+
#: ../includes/class-ure-lib.php:436
|
55 |
msgid "Error: "
|
56 |
msgstr "Hiba:"
|
57 |
|
58 |
+
#: ../includes/class-ure-lib.php:436
|
59 |
msgid "Role"
|
60 |
msgstr "Szerepkör"
|
61 |
|
62 |
+
#: ../includes/class-ure-lib.php:437
|
63 |
msgid "does not exist"
|
64 |
msgstr "nem létezik"
|
65 |
|
66 |
+
#: ../includes/class-ure-lib.php:480
|
67 |
msgid "Role is updated successfully"
|
68 |
msgstr "Szerepkör sikeresen frissítve"
|
69 |
|
70 |
+
#: ../includes/class-ure-lib.php:482
|
71 |
msgid "Roles are updated for all network"
|
72 |
msgstr "Szerepkörök frissítése a teljes hálózaton"
|
73 |
|
74 |
+
#: ../includes/class-ure-lib.php:488
|
75 |
msgid "Error occured during role(s) update"
|
76 |
msgstr "Hiba történt a szerepkör(ök) frissítése során"
|
77 |
|
78 |
+
#: ../includes/class-ure-lib.php:495
|
79 |
msgid "User capabilities are updated successfully"
|
80 |
msgstr "Felhasználó képességei sikeresen frissítve"
|
81 |
|
82 |
+
#: ../includes/class-ure-lib.php:500
|
83 |
msgid "Error occured during user update"
|
84 |
msgstr "Hiba történt a felhasználó frissítése során"
|
85 |
|
86 |
+
#: ../includes/class-ure-lib.php:558
|
87 |
msgid "User Roles are restored to WordPress default values. "
|
88 |
msgstr "Felhasználói szerepkörök visszaállítva a WordPress alaphelyzetébe."
|
89 |
|
90 |
+
#: ../includes/class-ure-lib.php:1436
|
91 |
msgid "read about"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: ../includes/class-ure-lib.php:1437
|
95 |
msgid "user capability"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: ../includes/class-ure-lib.php:1438
|
99 |
msgid "Help"
|
100 |
msgstr "Súgó"
|
101 |
|
102 |
+
#: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
|
103 |
+
#: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
|
104 |
+
#: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
|
105 |
+
#: ../includes/class-user-role-editor.php:828
|
106 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
107 |
+
msgstr "Nincs elég jogosultsága a Szerepkör szerkesztő használatához"
|
108 |
+
|
109 |
+
#: ../includes/class-ure-lib.php:1909
|
110 |
msgid "Error is occur. Please check the log file."
|
111 |
msgstr "Hiba történt. Nézze meg a naplófájlt!"
|
112 |
|
113 |
+
#: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
|
114 |
msgid ""
|
115 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
116 |
"only!"
|
118 |
"Hiba: a szerepkör azonosító csak latin betűkből, számokból, kötőjelből és "
|
119 |
"aláhúzásból állhat."
|
120 |
|
121 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
122 |
msgid ""
|
123 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
124 |
"characters to it."
|
126 |
"Hiba: a WordPress nem támogatja a numerikus szerepkör neveket "
|
127 |
"(azonosítókat). Legyen benn legalább egy latin betű."
|
128 |
|
129 |
+
#: ../includes/class-ure-lib.php:1974
|
130 |
#, php-format
|
131 |
msgid "Role %s exists already"
|
132 |
msgstr "%s szerepkör már létezik"
|
133 |
|
134 |
+
#: ../includes/class-ure-lib.php:1989
|
135 |
msgid "Error is encountered during new role create operation"
|
136 |
msgstr "Hiba történt az új szerepkör létrehozása során."
|
137 |
|
138 |
+
#: ../includes/class-ure-lib.php:1991
|
139 |
#, php-format
|
140 |
msgid "Role %s is created successfully"
|
141 |
msgstr "%s szerepkör sikeresen létrehozva"
|
142 |
|
143 |
+
#: ../includes/class-ure-lib.php:2015
|
144 |
msgid "Error: Role ID is empty!"
|
145 |
msgstr "Hiba: a szerepkör azonosító üres!"
|
146 |
|
147 |
+
#: ../includes/class-ure-lib.php:2033
|
148 |
msgid "Error: Empty role display name is not allowed."
|
149 |
msgstr "Hiba: nem lehet üres a szerepkör megjelenítendő neve."
|
150 |
|
151 |
+
#: ../includes/class-ure-lib.php:2040
|
152 |
#, php-format
|
153 |
msgid "Role %s does not exists"
|
154 |
msgstr "%s szerepkör nem létezik"
|
155 |
|
156 |
+
#: ../includes/class-ure-lib.php:2048
|
157 |
#, php-format
|
158 |
msgid "Role %s is renamed to %s successfully"
|
159 |
msgstr "%s szerepkör sikeresen átnevezve erre: %s"
|
160 |
|
161 |
+
#: ../includes/class-ure-lib.php:2121
|
162 |
msgid "Error encountered during role delete operation"
|
163 |
msgstr "Hiba történt a szerepkör törlése során."
|
164 |
|
165 |
+
#: ../includes/class-ure-lib.php:2123
|
166 |
msgid "Unused roles are deleted successfully"
|
167 |
msgstr "A nem használt szerepkörök sikeresen törölve lettek."
|
168 |
|
169 |
+
#: ../includes/class-ure-lib.php:2125
|
170 |
#, php-format
|
171 |
msgid "Role %s is deleted successfully"
|
172 |
msgstr "%s szerepkör sikeresen törölve lett."
|
173 |
|
174 |
+
#: ../includes/class-ure-lib.php:2153
|
175 |
msgid "Error encountered during default role change operation"
|
176 |
msgstr "Hiba történt az alap szerepkör módosítása során."
|
177 |
|
178 |
+
#: ../includes/class-ure-lib.php:2156
|
179 |
#, php-format
|
180 |
msgid "Default role for new users is set to %s successfully"
|
181 |
msgstr "Az új felhasználók alap szerepköre sikeresen módosítva erre: %s"
|
182 |
|
183 |
+
#: ../includes/class-ure-lib.php:2159
|
184 |
+
#, fuzzy
|
185 |
+
msgid "Can not set Administrator role as a default one"
|
186 |
+
msgstr "Adminisztrátor szerepkör megjelenítése a Szerepkör szerkesztőben"
|
187 |
+
|
188 |
+
#: ../includes/class-ure-lib.php:2161
|
189 |
+
#, fuzzy
|
190 |
+
msgid "This role does not exist - "
|
191 |
+
msgstr "%s szerepkör nem létezik"
|
192 |
+
|
193 |
+
#: ../includes/class-ure-lib.php:2177
|
194 |
msgid "Editor"
|
195 |
msgstr "Szerkesztő"
|
196 |
|
197 |
+
#: ../includes/class-ure-lib.php:2178
|
198 |
msgid "Author"
|
199 |
msgstr "Szerző"
|
200 |
|
201 |
+
#: ../includes/class-ure-lib.php:2179
|
202 |
msgid "Contributor"
|
203 |
msgstr "Közreműködő"
|
204 |
|
205 |
+
#: ../includes/class-ure-lib.php:2180
|
206 |
msgid "Subscriber"
|
207 |
msgstr "Feliratkozó"
|
208 |
|
209 |
+
#: ../includes/class-ure-lib.php:2182
|
210 |
msgid "Switch themes"
|
211 |
msgstr "Sablon kiválasztása"
|
212 |
|
213 |
+
#: ../includes/class-ure-lib.php:2183
|
214 |
msgid "Edit themes"
|
215 |
msgstr "Sablonok szerkesztése"
|
216 |
|
217 |
+
#: ../includes/class-ure-lib.php:2184
|
218 |
msgid "Activate plugins"
|
219 |
msgstr "Bővítmény bekapcsolása"
|
220 |
|
221 |
+
#: ../includes/class-ure-lib.php:2185
|
222 |
msgid "Edit plugins"
|
223 |
msgstr "Bővítmények szerkesztése"
|
224 |
|
225 |
+
#: ../includes/class-ure-lib.php:2186
|
226 |
msgid "Edit users"
|
227 |
msgstr "Felhasználók szerkesztése"
|
228 |
|
229 |
+
#: ../includes/class-ure-lib.php:2187
|
230 |
msgid "Edit files"
|
231 |
msgstr "Fájlok szerkesztése"
|
232 |
|
233 |
+
#: ../includes/class-ure-lib.php:2188
|
234 |
msgid "Manage options"
|
235 |
msgstr "Beállítások kezelése"
|
236 |
|
237 |
+
#: ../includes/class-ure-lib.php:2189
|
238 |
msgid "Moderate comments"
|
239 |
msgstr "Hozzászólások moderálása"
|
240 |
|
241 |
+
#: ../includes/class-ure-lib.php:2190
|
242 |
msgid "Manage categories"
|
243 |
msgstr "Kategóriák kezelése"
|
244 |
|
245 |
+
#: ../includes/class-ure-lib.php:2191
|
246 |
msgid "Manage links"
|
247 |
msgstr "Hivatkozások kezelése"
|
248 |
|
249 |
+
#: ../includes/class-ure-lib.php:2192
|
250 |
msgid "Upload files"
|
251 |
msgstr "Fájlok feltöltése"
|
252 |
|
253 |
+
#: ../includes/class-ure-lib.php:2193
|
254 |
msgid "Import"
|
255 |
msgstr "Importálás"
|
256 |
|
257 |
+
#: ../includes/class-ure-lib.php:2194
|
258 |
msgid "Unfiltered html"
|
259 |
msgstr "Szűretlen HTML"
|
260 |
|
261 |
+
#: ../includes/class-ure-lib.php:2195
|
262 |
msgid "Edit posts"
|
263 |
msgstr "Bejegyzések szerkesztése"
|
264 |
|
265 |
+
#: ../includes/class-ure-lib.php:2196
|
266 |
msgid "Edit others posts"
|
267 |
msgstr "Mások bejegyzéseinek szerkeszése"
|
268 |
|
269 |
+
#: ../includes/class-ure-lib.php:2197
|
270 |
msgid "Edit published posts"
|
271 |
msgstr "Közzétett bejegyzések szerkesztése"
|
272 |
|
273 |
+
#: ../includes/class-ure-lib.php:2198
|
274 |
msgid "Publish posts"
|
275 |
msgstr "Bejegyzések közzététele"
|
276 |
|
277 |
+
#: ../includes/class-ure-lib.php:2199
|
278 |
msgid "Edit pages"
|
279 |
msgstr "Oldalak szerkesztése"
|
280 |
|
281 |
+
#: ../includes/class-ure-lib.php:2200
|
282 |
msgid "Read"
|
283 |
msgstr "Olvasás"
|
284 |
|
285 |
+
#: ../includes/class-ure-lib.php:2201
|
286 |
msgid "Level 10"
|
287 |
msgstr "10. szint"
|
288 |
|
289 |
+
#: ../includes/class-ure-lib.php:2202
|
290 |
msgid "Level 9"
|
291 |
msgstr "9. szint"
|
292 |
|
293 |
+
#: ../includes/class-ure-lib.php:2203
|
294 |
msgid "Level 8"
|
295 |
msgstr "8. szint"
|
296 |
|
297 |
+
#: ../includes/class-ure-lib.php:2204
|
298 |
msgid "Level 7"
|
299 |
msgstr "7. szint"
|
300 |
|
301 |
+
#: ../includes/class-ure-lib.php:2205
|
302 |
msgid "Level 6"
|
303 |
msgstr "6. szint"
|
304 |
|
305 |
+
#: ../includes/class-ure-lib.php:2206
|
306 |
msgid "Level 5"
|
307 |
msgstr "5. szint"
|
308 |
|
309 |
+
#: ../includes/class-ure-lib.php:2207
|
310 |
msgid "Level 4"
|
311 |
msgstr "4. szint"
|
312 |
|
313 |
+
#: ../includes/class-ure-lib.php:2208
|
314 |
msgid "Level 3"
|
315 |
msgstr "3. szint"
|
316 |
|
317 |
+
#: ../includes/class-ure-lib.php:2209
|
318 |
msgid "Level 2"
|
319 |
msgstr "2. szint"
|
320 |
|
321 |
+
#: ../includes/class-ure-lib.php:2210
|
322 |
msgid "Level 1"
|
323 |
msgstr "1. szint"
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:2211
|
326 |
msgid "Level 0"
|
327 |
msgstr "0. szint"
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:2212
|
330 |
msgid "Edit others pages"
|
331 |
msgstr "Mások oldalainak szerkesztése"
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:2213
|
334 |
msgid "Edit published pages"
|
335 |
msgstr "Közzétett oldalak szerkesztése"
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:2214
|
338 |
msgid "Publish pages"
|
339 |
msgstr "Oldalak közzététele"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:2215
|
342 |
msgid "Delete pages"
|
343 |
msgstr "Oldalak törlése"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:2216
|
346 |
msgid "Delete others pages"
|
347 |
msgstr "Mások oldalainak törlése"
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:2217
|
350 |
msgid "Delete published pages"
|
351 |
msgstr "Közzétett oldalak törlése"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:2218
|
354 |
msgid "Delete posts"
|
355 |
msgstr "Bejegyzések törlése"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:2219
|
358 |
msgid "Delete others posts"
|
359 |
msgstr "Mások bejegyzéseinek törlése"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:2220
|
362 |
msgid "Delete published posts"
|
363 |
msgstr "Közzétett bejegyzések törlése"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:2221
|
366 |
msgid "Delete private posts"
|
367 |
msgstr "Privát bejegyzések törlése"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:2222
|
370 |
msgid "Edit private posts"
|
371 |
msgstr "Privát bejegyzések szerkesztése"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:2223
|
374 |
msgid "Read private posts"
|
375 |
msgstr "Privát bejegyzések olvasása"
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:2224
|
378 |
msgid "Delete private pages"
|
379 |
msgstr "Privát oldalak törlése"
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:2225
|
382 |
msgid "Edit private pages"
|
383 |
msgstr "Privát oldalak szerkesztése"
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:2226
|
386 |
msgid "Read private pages"
|
387 |
msgstr "Privát oldalak olvasása"
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:2227
|
390 |
msgid "Delete users"
|
391 |
msgstr "Felhasználók törlése"
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:2228
|
394 |
msgid "Create users"
|
395 |
msgstr "Felhasználók létrehozása"
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:2229
|
398 |
msgid "Unfiltered upload"
|
399 |
msgstr "Szűretlen feltöltés"
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:2230
|
402 |
msgid "Edit dashboard"
|
403 |
msgstr "Vezérlőpult szerkesztése"
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:2231
|
406 |
msgid "Update plugins"
|
407 |
msgstr "Bővítmények frissítése"
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:2232
|
410 |
msgid "Delete plugins"
|
411 |
msgstr "Bővítmények törlése"
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:2233
|
414 |
msgid "Install plugins"
|
415 |
msgstr "Bővítmények telepítése"
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:2234
|
418 |
msgid "Update themes"
|
419 |
msgstr "Sablonok frissítése"
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:2235
|
422 |
msgid "Install themes"
|
423 |
msgstr "Sablonok telepítése"
|
424 |
|
425 |
+
#: ../includes/class-ure-lib.php:2236
|
426 |
msgid "Update core"
|
427 |
msgstr "Mag frissítése"
|
428 |
|
429 |
+
#: ../includes/class-ure-lib.php:2237
|
430 |
msgid "List users"
|
431 |
msgstr "Felhasználók listázása"
|
432 |
|
433 |
+
#: ../includes/class-ure-lib.php:2238
|
434 |
msgid "Remove users"
|
435 |
msgstr "Felhasználók törlése"
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:2239
|
438 |
msgid "Add users"
|
439 |
msgstr "Felhasználók hozzáadása"
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:2240
|
442 |
msgid "Promote users"
|
443 |
msgstr "Felhasználók előléptetése"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:2241
|
446 |
msgid "Edit theme options"
|
447 |
msgstr "Sablon beállítások módosítása"
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:2242
|
450 |
msgid "Delete themes"
|
451 |
msgstr "Sablonok törlése"
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:2243
|
454 |
msgid "Export"
|
455 |
msgstr "Exportálás"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:2366
|
458 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
459 |
msgstr "Hiba: a képesség neve csak latin betűkből és számokból állhat."
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:2379
|
462 |
#, php-format
|
463 |
msgid "Capability %s is added successfully"
|
464 |
msgstr "%s képesség sikeresen hozzáadva"
|
465 |
|
466 |
+
#: ../includes/class-ure-lib.php:2381
|
467 |
#, php-format
|
468 |
msgid "Capability %s exists already"
|
469 |
msgstr "%s képesség már létezik"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:2410
|
472 |
#, php-format
|
473 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
474 |
msgstr "Hiba! Nincs jogosultsága a képesség (%s) törléséhez."
|
475 |
|
476 |
+
#: ../includes/class-ure-lib.php:2429
|
477 |
+
#, fuzzy, php-format
|
478 |
+
msgid "Capability %s was removed successfully"
|
479 |
msgstr "%s képesség sikeresen törölve"
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:2497
|
482 |
msgid "Version:"
|
483 |
msgstr "Verzió:"
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:2498
|
486 |
msgid "Author's website"
|
487 |
msgstr "Szerző weboldala"
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:2499
|
490 |
msgid "Plugin webpage"
|
491 |
msgstr "Bővítmény weboldala"
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:2500
|
494 |
msgid "Plugin download"
|
495 |
msgstr "Bővítmény letöltése"
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:2501
|
498 |
+
#: ../includes/class-user-role-editor.php:546
|
499 |
+
msgid "Changelog"
|
500 |
+
msgstr "Változások naplója"
|
501 |
+
|
502 |
+
#: ../includes/class-ure-lib.php:2502
|
503 |
msgid "FAQ"
|
504 |
msgstr "GyIK"
|
505 |
|
506 |
+
#: ../includes/class-ure-lib.php:2575
|
507 |
+
msgid "Delete All Unused Roles"
|
508 |
+
msgstr "Minden nem használt szerepkör törlése"
|
509 |
+
|
510 |
+
#: ../includes/class-ure-lib.php:2588
|
511 |
msgid "None"
|
512 |
msgstr "Nincs"
|
513 |
|
514 |
+
#: ../includes/class-ure-lib.php:2632
|
515 |
+
msgid "— No role for this site —"
|
516 |
+
msgstr "— Nincs szerepköre ezen az oldalon —"
|
517 |
+
|
518 |
+
#: ../includes/class-ure-lib.php:2747
|
519 |
+
#, php-format
|
520 |
+
msgid "Denied: %s"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: ../includes/ure-role-edit.php:17
|
524 |
+
msgid "Select Role and change its capabilities:"
|
525 |
+
msgstr "Szerepkör kiválasztása a képességeinek módosításához:"
|
526 |
+
|
527 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
528 |
+
msgid "Show capabilities in human readable form"
|
529 |
+
msgstr "Képességek megjelenítése olvasható formában"
|
530 |
+
|
531 |
+
#: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
|
532 |
+
#: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
|
533 |
+
msgid "Show deprecated capabilities"
|
534 |
+
msgstr "Elavult képességek megjelenítése"
|
535 |
+
|
536 |
+
#: ../includes/ure-role-edit.php:44
|
537 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
538 |
+
msgstr ""
|
539 |
+
"Ha bejelölve, akkor a művelet a hálózat minden weboldalára érvényesülni fog"
|
540 |
+
|
541 |
+
#: ../includes/ure-role-edit.php:56
|
542 |
+
msgid "Apply to All Sites"
|
543 |
+
msgstr "Alkalmazás minden oldalra"
|
544 |
+
|
545 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
546 |
+
msgid "Core capabilities:"
|
547 |
+
msgstr "Gyári képességek:"
|
548 |
+
|
549 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
550 |
+
msgid "Quick filter:"
|
551 |
+
msgstr "Gyors szűrés:"
|
552 |
|
553 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
554 |
+
msgid "Custom capabilities:"
|
555 |
+
msgstr "Egyedi képességek:"
|
556 |
|
557 |
+
#: ../includes/class-user-other-roles.php:82
|
558 |
+
#: ../includes/class-user-other-roles.php:183
|
559 |
+
#: ../includes/class-user-other-roles.php:243
|
560 |
+
msgid "Other Roles"
|
561 |
+
msgstr "Más szerepkörök"
|
562 |
|
563 |
+
#: ../includes/class-user-other-roles.php:83
|
564 |
+
msgid "Select additional roles for this user"
|
565 |
+
msgstr ""
|
566 |
|
567 |
+
#: ../includes/class-user-other-roles.php:162
|
568 |
+
#: ../includes/class-user-role-editor.php:438
|
569 |
+
msgid "Capabilities"
|
570 |
+
msgstr "Képességek"
|
571 |
|
572 |
+
#: ../includes/class-user-other-roles.php:169
|
573 |
+
msgid "Edit"
|
574 |
+
msgstr "Szerkeszt"
|
575 |
|
576 |
+
#: ../includes/class-user-other-roles.php:215
|
577 |
+
#, fuzzy
|
578 |
+
msgid "Additional Capabilities"
|
579 |
+
msgstr "Új képesség"
|
580 |
|
581 |
#: ../includes/class-ure-screen-help.php:12
|
582 |
#: ../includes/class-ure-screen-help.php:41
|
585 |
msgid "User Role Editor Options page help"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: ../includes/class-ure-screen-help.php:15
|
589 |
+
#: ../includes/settings-template.php:53
|
590 |
+
msgid "Show Administrator role at User Role Editor"
|
591 |
+
msgstr "Adminisztrátor szerepkör megjelenítése a Szerepkör szerkesztőben"
|
592 |
+
|
593 |
#: ../includes/class-ure-screen-help.php:16
|
594 |
msgid ""
|
595 |
"turn this option on in order to make the \"Administrator\" role available at "
|
600 |
"legördülő listákban a Szerepkör szerkesztőben. Alapértelmezésként el van "
|
601 |
"rejtve biztonsági okok miatt."
|
602 |
|
603 |
+
#: ../includes/class-ure-screen-help.php:18
|
604 |
+
#: ../includes/settings-template.php:61
|
605 |
+
msgid "Show capabilities in the human readable form"
|
606 |
+
msgstr "Képességek megjelenítése könnyen olvasható formában"
|
607 |
+
|
608 |
#: ../includes/class-ure-screen-help.php:19
|
609 |
msgid ""
|
610 |
"automatically converts capability names from the technical form for internal "
|
625 |
"használja. Csak a régi sablonokkal és bővítményekkel való kompatíbilitás "
|
626 |
"miatt maradtak meg. Ez az opció ezeket az elavult képességeket jeleníti meg."
|
627 |
|
628 |
+
#: ../includes/class-ure-screen-help.php:25
|
629 |
+
#: ../includes/settings-template.php:77
|
630 |
+
msgid "Edit user capabilities"
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
#: ../includes/class-ure-screen-help.php:26
|
634 |
msgid ""
|
635 |
"If turned off - capabilities section of selected user is shown in readonly "
|
637 |
"should make it using roles only."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: ../includes/class-ure-screen-help.php:45
|
641 |
+
#: ../includes/settings-template.php:111
|
642 |
+
msgid "Count users without role"
|
643 |
+
msgstr "Szerepkör nélküli felhasználók számlálása"
|
644 |
+
|
645 |
#: ../includes/class-ure-screen-help.php:46
|
646 |
msgid ""
|
647 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
681 |
"módosíthatnak és törölhetnek felhasználókat. Ezzel az opcióval ez a megkötés "
|
682 |
"feloldható."
|
683 |
|
684 |
+
#: ../includes/class-user-role-editor.php:233
|
685 |
+
msgid "Change role for users without role"
|
686 |
+
msgstr "Szerepkör nélküli felhasználók szerepkörének megadása"
|
687 |
+
|
688 |
+
#: ../includes/class-user-role-editor.php:234
|
689 |
+
msgid "No rights"
|
690 |
+
msgstr "Nincs jogosultság"
|
691 |
+
|
692 |
+
#: ../includes/class-user-role-editor.php:235
|
693 |
+
msgid "Provide new role"
|
694 |
+
msgstr "Új szerepkör megadása"
|
695 |
+
|
696 |
+
#: ../includes/class-user-role-editor.php:298
|
697 |
+
#: ../includes/class-user-role-editor.php:300
|
698 |
+
msgid "You do not have permission to edit this user."
|
699 |
+
msgstr "Nincs jogosultsága a felhasználó szerkesztéséhez."
|
700 |
+
|
701 |
+
#: ../includes/class-user-role-editor.php:535
|
702 |
+
msgid "Settings"
|
703 |
+
msgstr "Beállítások"
|
704 |
+
|
705 |
+
#: ../includes/class-user-role-editor.php:568
|
706 |
+
#: ../includes/settings-template.php:21
|
707 |
+
msgid "General"
|
708 |
+
msgstr "Általános"
|
709 |
+
|
710 |
+
#: ../includes/class-user-role-editor.php:574
|
711 |
+
#: ../includes/settings-template.php:26
|
712 |
+
msgid "Additional Modules"
|
713 |
+
msgstr "További modulok"
|
714 |
+
|
715 |
+
#: ../includes/class-user-role-editor.php:580
|
716 |
+
#: ../includes/settings-template.php:30
|
717 |
+
msgid "Default Roles"
|
718 |
+
msgstr "Alap szerepkörök"
|
719 |
+
|
720 |
+
#: ../includes/class-user-role-editor.php:586
|
721 |
+
#: ../includes/settings-template.php:34
|
722 |
+
msgid "Multisite"
|
723 |
+
msgstr "Multisite"
|
724 |
+
|
725 |
+
#: ../includes/class-user-role-editor.php:685
|
726 |
+
#: ../includes/class-user-role-editor.php:703
|
727 |
+
#: ../includes/class-user-role-editor.php:747
|
728 |
+
msgid "User Role Editor options are updated"
|
729 |
+
msgstr "Szerepkör szerkesztő beállításai frissítve"
|
730 |
+
|
731 |
+
#: ../includes/class-user-role-editor.php:731
|
732 |
+
msgid "Default Roles are updated"
|
733 |
+
msgstr "Alap szerepkörök frissítve"
|
734 |
+
|
735 |
+
#: ../includes/class-user-role-editor.php:756
|
736 |
+
msgid ""
|
737 |
+
"You do not have sufficient permissions to manage options for User Role "
|
738 |
+
"Editor."
|
739 |
+
msgstr ""
|
740 |
+
"Nincs elég jogosultsága a Szerepkör szerkesztő beállításainak kezeléséhez."
|
741 |
+
|
742 |
+
#: ../includes/class-user-role-editor.php:885
|
743 |
+
msgid "Select All"
|
744 |
+
msgstr "Összeset kijelöl"
|
745 |
+
|
746 |
+
#: ../includes/class-user-role-editor.php:886
|
747 |
+
msgid "Unselect All"
|
748 |
+
msgstr "Kijelölés megszünt."
|
749 |
+
|
750 |
+
#: ../includes/class-user-role-editor.php:887
|
751 |
+
msgid "Reverse"
|
752 |
+
msgstr "Fordított kijelölés"
|
753 |
+
|
754 |
+
#: ../includes/class-user-role-editor.php:888
|
755 |
+
msgid "Update"
|
756 |
+
msgstr "Frissítés"
|
757 |
+
|
758 |
+
#: ../includes/class-user-role-editor.php:889
|
759 |
+
msgid "Please confirm permissions update"
|
760 |
+
msgstr "Képességek frissítésének megersőítése"
|
761 |
+
|
762 |
+
#: ../includes/class-user-role-editor.php:890
|
763 |
+
msgid "Add New Role"
|
764 |
+
msgstr "Új szerepkör létrehozása"
|
765 |
+
|
766 |
+
#: ../includes/class-user-role-editor.php:891
|
767 |
+
#: ../includes/class-user-role-editor.php:896
|
768 |
+
msgid "Rename Role"
|
769 |
+
msgstr "Szerepkör átnevezés"
|
770 |
+
|
771 |
+
#: ../includes/class-user-role-editor.php:892
|
772 |
+
msgid " Role name (ID) can not be empty!"
|
773 |
+
msgstr "A szerepkör neve (azonosító) nem lehet üres!"
|
774 |
+
|
775 |
+
#: ../includes/class-user-role-editor.php:893
|
776 |
+
msgid ""
|
777 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
778 |
+
"only!"
|
779 |
+
msgstr ""
|
780 |
+
"A szerepkör neve (azonosítója) csak latin betűket, szűmokat, kötőjelet és "
|
781 |
+
"aláhúzást tartalmazhat."
|
782 |
+
|
783 |
+
#: ../includes/class-user-role-editor.php:894
|
784 |
+
msgid ""
|
785 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
786 |
+
"it."
|
787 |
+
msgstr ""
|
788 |
+
"A WordPress nem támoagtja a numeriks szerepkör neveket (azonosító). Kell "
|
789 |
+
"bele legalább egy latin betű."
|
790 |
+
|
791 |
+
#: ../includes/class-user-role-editor.php:895
|
792 |
+
msgid "Add Role"
|
793 |
+
msgstr "Új szerepkör"
|
794 |
+
|
795 |
+
#: ../includes/class-user-role-editor.php:897
|
796 |
+
msgid "Delete Role"
|
797 |
+
msgstr "Szerepkör törlése"
|
798 |
+
|
799 |
+
#: ../includes/class-user-role-editor.php:898
|
800 |
+
msgid "Cancel"
|
801 |
+
msgstr "Mégse"
|
802 |
+
|
803 |
+
#: ../includes/class-user-role-editor.php:899
|
804 |
+
msgid "Add Capability"
|
805 |
+
msgstr "Új képesség"
|
806 |
+
|
807 |
+
#: ../includes/class-user-role-editor.php:900
|
808 |
+
#: ../includes/class-user-role-editor.php:909
|
809 |
+
msgid "Delete Capability"
|
810 |
+
msgstr "Képesség törlése"
|
811 |
+
|
812 |
+
#: ../includes/class-user-role-editor.php:901
|
813 |
+
msgid "Reset"
|
814 |
+
msgstr "Alaphelyzet"
|
815 |
+
|
816 |
+
#: ../includes/class-user-role-editor.php:902
|
817 |
+
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
818 |
+
msgstr ""
|
819 |
+
"VESZÉLY! Az alaphelyzetre állítás a WordPress mag beállításait állítja be "
|
820 |
+
"újra."
|
821 |
+
|
822 |
+
#: ../includes/class-user-role-editor.php:903
|
823 |
+
msgid ""
|
824 |
+
"If any plugins have changed capabilities in any way upon installation (such "
|
825 |
+
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
826 |
+
msgstr ""
|
827 |
+
"Ha bármilyen bővítmény módosított a képességeket bármilyen módon (pl.: "
|
828 |
+
"S2Member, WooCommerce, és sok másik), ezek a módosítások TÖRÖLVE lesznek!"
|
829 |
+
|
830 |
+
#: ../includes/class-user-role-editor.php:904
|
831 |
+
msgid ""
|
832 |
+
"For more information on how to undo changes and restore plugin capabilities "
|
833 |
+
"go to"
|
834 |
+
msgstr ""
|
835 |
+
"További információ a képességek módosításainak visszavonásáról és "
|
836 |
+
"helyreállításáról"
|
837 |
+
|
838 |
+
#: ../includes/class-user-role-editor.php:906
|
839 |
+
msgid "Continue?"
|
840 |
+
msgstr "Folytassuk?"
|
841 |
+
|
842 |
+
#: ../includes/class-user-role-editor.php:907
|
843 |
+
msgid "Default Role"
|
844 |
+
msgstr "Alap szerepkör"
|
845 |
+
|
846 |
+
#: ../includes/class-user-role-editor.php:908
|
847 |
+
msgid "Set New Default Role"
|
848 |
+
msgstr "Új alap szerepkör beállítása"
|
849 |
+
|
850 |
+
#: ../includes/class-user-role-editor.php:910
|
851 |
+
msgid ""
|
852 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
853 |
+
"or other custom code"
|
854 |
+
msgstr ""
|
855 |
+
"Figyelem! Legyen óvatos - kritikus képesség törlésétől leállhat néhány "
|
856 |
+
"bővítmény vagy egyedi kód."
|
857 |
+
|
858 |
+
#: ../includes/class-user-role-editor.php:911
|
859 |
+
msgid " Capability name (ID) can not be empty!"
|
860 |
+
msgstr "A képesség név (azonosító) nem lehet üres."
|
861 |
+
|
862 |
+
#: ../includes/class-user-role-editor.php:912
|
863 |
+
msgid ""
|
864 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
865 |
+
"underscore only!"
|
866 |
+
msgstr ""
|
867 |
+
"A képesség név (azonosító) csak latin betűkből, számokból, kötőjelből és "
|
868 |
+
"aláhúzásból állhat."
|
869 |
+
|
870 |
+
#: ../includes/settings-template.php:17
|
871 |
+
msgid "User Role Editor - Options"
|
872 |
+
msgstr "Szerepkör szerkesztő - Beállítások"
|
873 |
+
|
874 |
+
#: ../includes/settings-template.php:39
|
875 |
+
msgid "About"
|
876 |
+
msgstr "Névjegy"
|
877 |
+
|
878 |
+
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
879 |
+
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
880 |
+
msgid "Save"
|
881 |
+
msgstr "Mentés"
|
882 |
+
|
883 |
+
#: ../includes/settings-template.php:138
|
884 |
+
msgid "Primary default role: "
|
885 |
+
msgstr "Elsődleges alap szerepkör:"
|
886 |
+
|
887 |
+
#: ../includes/settings-template.php:145
|
888 |
+
msgid "Other default roles for new registered user: "
|
889 |
+
msgstr "Egyéb alap szerepkörök újonnan regisztrált felhasználók számára:"
|
890 |
+
|
891 |
+
#: ../includes/settings-template.php:151
|
892 |
+
msgid ""
|
893 |
+
"Note for multisite environment: take into account that other default roles "
|
894 |
+
"should exist at the site, in order to be assigned to the new registered "
|
895 |
+
"users."
|
896 |
+
msgstr ""
|
897 |
+
"Megjegyzés a MultiSite környezethez: vegye figyelembe, hogy több alap "
|
898 |
+
"szerepkörnek is léteznie kell a weboldalon, az új felhasználók "
|
899 |
+
"létrehozásához."
|
900 |
+
|
901 |
+
#: ../includes/settings-template.php:177
|
902 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
903 |
+
msgstr ""
|
904 |
+
"Nem szuperadminok is hozhassanak létre, módosíthassanak és törölhessenek "
|
905 |
+
"felhasználókat"
|
906 |
+
|
907 |
+
#: ../includes/ure-user-edit.php:32
|
908 |
+
msgid "Network Super Admin"
|
909 |
+
msgstr "Multisite Szuperadmin"
|
910 |
+
|
911 |
+
#: ../includes/ure-user-edit.php:35
|
912 |
+
msgid "Change capabilities for user"
|
913 |
+
msgstr "Szerepkör módosítása -"
|
914 |
+
|
915 |
+
#: ../includes/ure-user-edit.php:72
|
916 |
+
msgid "Primary Role:"
|
917 |
+
msgstr "Elsődleges szerepkör:"
|
918 |
+
|
919 |
+
#: ../includes/ure-user-edit.php:82
|
920 |
+
msgid "bbPress Role:"
|
921 |
+
msgstr "bbPress szerepkör:"
|
922 |
+
|
923 |
+
#: ../includes/ure-user-edit.php:92
|
924 |
+
msgid "Other Roles:"
|
925 |
+
msgstr "Más szerepkörök:"
|
926 |
+
|
927 |
#~ msgid "select roles below"
|
928 |
#~ msgstr "válasszon szerepköröket alább"
|
lang/user-role-editor-id_ID.mo
ADDED
Binary file
|
lang/{ure-id_ID.po → user-role-editor-id_ID.po}
RENAMED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <
|
8 |
"Language-Team: http://al-badar.net <nasrulhaq81@gmail.com>\n"
|
9 |
"Language: id_ID\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -16,398 +16,101 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../includes/
|
20 |
-
#, fuzzy
|
21 |
-
msgid "User Role Editor - Options"
|
22 |
-
msgstr "User Role Editor"
|
23 |
-
|
24 |
-
#: ../includes/settings-template.php:21
|
25 |
-
#: ../includes/class-user-role-editor.php:591
|
26 |
-
msgid "General"
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: ../includes/settings-template.php:26
|
30 |
-
#: ../includes/class-user-role-editor.php:597
|
31 |
-
msgid "Additional Modules"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: ../includes/settings-template.php:30
|
35 |
-
#: ../includes/class-user-role-editor.php:603
|
36 |
-
#, fuzzy
|
37 |
-
msgid "Default Roles"
|
38 |
-
msgstr "Peran "
|
39 |
-
|
40 |
-
#: ../includes/settings-template.php:34
|
41 |
-
#: ../includes/class-user-role-editor.php:609
|
42 |
-
msgid "Multisite"
|
43 |
-
msgstr ""
|
44 |
-
|
45 |
-
#: ../includes/settings-template.php:39
|
46 |
-
msgid "About"
|
47 |
-
msgstr ""
|
48 |
-
|
49 |
-
#: ../includes/settings-template.php:53
|
50 |
-
#: ../includes/class-ure-screen-help.php:15
|
51 |
-
msgid "Show Administrator role at User Role Editor"
|
52 |
-
msgstr "Tampilkan peran Administrator di User Role Editor"
|
53 |
-
|
54 |
-
#: ../includes/settings-template.php:61
|
55 |
-
#: ../includes/class-ure-screen-help.php:18
|
56 |
-
msgid "Show capabilities in the human readable form"
|
57 |
-
msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
58 |
-
|
59 |
-
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
60 |
-
#: ../includes/ure-user-edit.php:64 ../includes/class-ure-screen-help.php:21
|
61 |
-
msgid "Show deprecated capabilities"
|
62 |
-
msgstr "Tampilkan kemampuan usang"
|
63 |
-
|
64 |
-
#: ../includes/settings-template.php:77
|
65 |
-
#: ../includes/class-ure-screen-help.php:25
|
66 |
-
#, fuzzy
|
67 |
-
msgid "Edit user capabilities"
|
68 |
-
msgstr "Kustom kemampuan:"
|
69 |
-
|
70 |
-
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
71 |
-
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
72 |
-
msgid "Save"
|
73 |
-
msgstr "Simpan"
|
74 |
-
|
75 |
-
#: ../includes/settings-template.php:111
|
76 |
-
#: ../includes/class-ure-screen-help.php:45
|
77 |
-
msgid "Count users without role"
|
78 |
-
msgstr ""
|
79 |
-
|
80 |
-
#: ../includes/settings-template.php:138
|
81 |
-
#, fuzzy
|
82 |
-
msgid "Primary default role: "
|
83 |
-
msgstr "Peran Utama:"
|
84 |
-
|
85 |
-
#: ../includes/settings-template.php:145
|
86 |
-
msgid "Other default roles for new registered user: "
|
87 |
-
msgstr ""
|
88 |
-
|
89 |
-
#: ../includes/settings-template.php:151
|
90 |
-
msgid ""
|
91 |
-
"Note for multisite environment: take into account that other default roles "
|
92 |
-
"should exist at the site, in order to be assigned to the new registered "
|
93 |
-
"users."
|
94 |
-
msgstr ""
|
95 |
-
|
96 |
-
#: ../includes/settings-template.php:177
|
97 |
-
msgid "Allow non super administrators to create, edit, and delete users"
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
#: ../includes/class-user-role-editor.php:234
|
101 |
-
msgid "Change role for users without role"
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
#: ../includes/class-user-role-editor.php:235
|
105 |
-
msgid "No rights"
|
106 |
-
msgstr ""
|
107 |
-
|
108 |
-
#: ../includes/class-user-role-editor.php:236
|
109 |
-
msgid "Provide new role"
|
110 |
-
msgstr ""
|
111 |
-
|
112 |
-
#: ../includes/class-user-role-editor.php:320
|
113 |
-
#: ../includes/class-user-role-editor.php:322
|
114 |
-
msgid "You do not have permission to edit this user."
|
115 |
-
msgstr "Anda tidak diizinkan untuk menyunting user ini. "
|
116 |
-
|
117 |
-
#: ../includes/class-user-role-editor.php:460
|
118 |
-
msgid "Capabilities"
|
119 |
-
msgstr "Kemampuan"
|
120 |
-
|
121 |
-
#: ../includes/class-user-role-editor.php:558
|
122 |
-
msgid "Settings"
|
123 |
-
msgstr "Pengaturan"
|
124 |
-
|
125 |
-
#: ../includes/class-user-role-editor.php:569
|
126 |
-
#: ../includes/class-ure-lib.php:2540
|
127 |
-
msgid "Changelog"
|
128 |
-
msgstr "log Perubahan"
|
129 |
-
|
130 |
-
#: ../includes/class-user-role-editor.php:619
|
131 |
-
#: ../includes/class-user-role-editor.php:648
|
132 |
-
#: ../includes/class-user-role-editor.php:1030
|
133 |
-
#: ../includes/class-ure-lib.php:337
|
134 |
-
msgid "User Role Editor"
|
135 |
-
msgstr "User Role Editor"
|
136 |
-
|
137 |
-
#: ../includes/class-user-role-editor.php:708
|
138 |
-
#: ../includes/class-user-role-editor.php:726
|
139 |
-
#: ../includes/class-user-role-editor.php:770
|
140 |
-
msgid "User Role Editor options are updated"
|
141 |
-
msgstr "Pilihan User Role Editor diperbarui"
|
142 |
-
|
143 |
-
#: ../includes/class-user-role-editor.php:754
|
144 |
-
#, fuzzy
|
145 |
-
msgid "Default Roles are updated"
|
146 |
-
msgstr "Peran "
|
147 |
-
|
148 |
-
#: ../includes/class-user-role-editor.php:779
|
149 |
-
msgid ""
|
150 |
-
"You do not have sufficient permissions to manage options for User Role "
|
151 |
-
"Editor."
|
152 |
-
msgstr ""
|
153 |
-
"Anda tidak memiliki izin yang memadai untuk mengelola pilihan User Role "
|
154 |
-
"Editor."
|
155 |
-
|
156 |
-
#: ../includes/class-user-role-editor.php:851
|
157 |
-
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
158 |
-
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
159 |
-
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
160 |
-
msgid "Insufficient permissions to work with User Role Editor"
|
161 |
-
msgstr "Izin yang tidak sesuai untuk bekerja dengan User Role Editor"
|
162 |
-
|
163 |
-
#: ../includes/class-user-role-editor.php:977
|
164 |
-
msgid "Select All"
|
165 |
-
msgstr "Pilih Semua"
|
166 |
-
|
167 |
-
#: ../includes/class-user-role-editor.php:978
|
168 |
-
msgid "Unselect All"
|
169 |
-
msgstr "Batalkan Semua"
|
170 |
-
|
171 |
-
#: ../includes/class-user-role-editor.php:979
|
172 |
-
msgid "Reverse"
|
173 |
-
msgstr "Memutar"
|
174 |
-
|
175 |
-
#: ../includes/class-user-role-editor.php:980
|
176 |
-
msgid "Update"
|
177 |
-
msgstr "Pembaruan"
|
178 |
-
|
179 |
-
#: ../includes/class-user-role-editor.php:981
|
180 |
-
msgid "Please confirm permissions update"
|
181 |
-
msgstr "Harap konfirmasi pembaruan izin"
|
182 |
-
|
183 |
-
#: ../includes/class-user-role-editor.php:982
|
184 |
-
msgid "Add New Role"
|
185 |
-
msgstr "Tambah Peran Baru"
|
186 |
-
|
187 |
-
#: ../includes/class-user-role-editor.php:983
|
188 |
-
#: ../includes/class-user-role-editor.php:988
|
189 |
-
#, fuzzy
|
190 |
-
msgid "Rename Role"
|
191 |
-
msgstr "Hapus Peran"
|
192 |
-
|
193 |
-
#: ../includes/class-user-role-editor.php:984
|
194 |
-
msgid " Role name (ID) can not be empty!"
|
195 |
-
msgstr "Nama peran (ID) tidak boleh kosong!"
|
196 |
-
|
197 |
-
#: ../includes/class-user-role-editor.php:985
|
198 |
-
msgid ""
|
199 |
-
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
200 |
-
"only!"
|
201 |
-
msgstr ""
|
202 |
-
"Nama peran (ID) harus berisi karakter latin, angka, tanda hubung atau garis "
|
203 |
-
"bawah saja!"
|
204 |
-
|
205 |
-
#: ../includes/class-user-role-editor.php:986
|
206 |
-
msgid ""
|
207 |
-
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
208 |
-
"it."
|
209 |
-
msgstr ""
|
210 |
-
|
211 |
-
#: ../includes/class-user-role-editor.php:987
|
212 |
-
msgid "Add Role"
|
213 |
-
msgstr "Tambah Peran"
|
214 |
-
|
215 |
-
#: ../includes/class-user-role-editor.php:989
|
216 |
-
msgid "Delete Role"
|
217 |
-
msgstr "Hapus Peran"
|
218 |
-
|
219 |
-
#: ../includes/class-user-role-editor.php:990
|
220 |
-
msgid "Cancel"
|
221 |
-
msgstr "Batalkan"
|
222 |
-
|
223 |
-
#: ../includes/class-user-role-editor.php:991
|
224 |
-
msgid "Add Capability"
|
225 |
-
msgstr "Tambah Kemampuan"
|
226 |
-
|
227 |
-
#: ../includes/class-user-role-editor.php:992
|
228 |
-
#: ../includes/class-user-role-editor.php:1001
|
229 |
-
msgid "Delete Capability"
|
230 |
-
msgstr "Hapus Kemampuan"
|
231 |
-
|
232 |
-
#: ../includes/class-user-role-editor.php:993
|
233 |
-
msgid "Reset"
|
234 |
-
msgstr "Atur Ulang"
|
235 |
-
|
236 |
-
#: ../includes/class-user-role-editor.php:994
|
237 |
-
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
238 |
-
msgstr ""
|
239 |
-
"BAHAYA! Reset akan mengembalikan pengaturan default dari WordPress Inti."
|
240 |
-
|
241 |
-
#: ../includes/class-user-role-editor.php:995
|
242 |
-
msgid ""
|
243 |
-
"If any plugins have changed capabilities in any way upon installation (such "
|
244 |
-
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
245 |
-
msgstr ""
|
246 |
-
"Jika ada plugin telah mengubah kemampuan dengan cara apapun atas instalasi "
|
247 |
-
"(seperti S2Member, WooCommerce, dan banyak lagi), kemampuan mereka akan "
|
248 |
-
"DIHAPUS!"
|
249 |
-
|
250 |
-
#: ../includes/class-user-role-editor.php:996
|
251 |
-
msgid ""
|
252 |
-
"For more information on how to undo changes and restore plugin capabilities "
|
253 |
-
"go to"
|
254 |
-
msgstr ""
|
255 |
-
"Untuk informasi lebih lanjut tentang cara membatalkan perubahan dan "
|
256 |
-
"mengembalikan kemampuan Plugin pergi ke"
|
257 |
-
|
258 |
-
#: ../includes/class-user-role-editor.php:998
|
259 |
-
msgid "Continue?"
|
260 |
-
msgstr "Lanjut?"
|
261 |
-
|
262 |
-
#: ../includes/class-user-role-editor.php:999
|
263 |
-
msgid "Default Role"
|
264 |
-
msgstr "Peran "
|
265 |
-
|
266 |
-
#: ../includes/class-user-role-editor.php:1000
|
267 |
-
msgid "Set New Default Role"
|
268 |
-
msgstr "Atur Peran Baru Default"
|
269 |
-
|
270 |
-
#: ../includes/class-user-role-editor.php:1002
|
271 |
-
msgid ""
|
272 |
-
"Warning! Be careful - removing critical capability could crash some plugin "
|
273 |
-
"or other custom code"
|
274 |
-
msgstr ""
|
275 |
-
"Peringatan! Hati-hati - menghapus kemampuan kritis dapat menyebabkan crash "
|
276 |
-
"beberapa Plugin atau kode kustom lainnya"
|
277 |
-
|
278 |
-
#: ../includes/class-user-role-editor.php:1003
|
279 |
-
msgid " Capability name (ID) can not be empty!"
|
280 |
-
msgstr "Nama Kemampuan (ID) tidak boleh kosong!"
|
281 |
-
|
282 |
-
#: ../includes/class-user-role-editor.php:1004
|
283 |
-
msgid ""
|
284 |
-
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
285 |
-
"underscore only!"
|
286 |
-
msgstr ""
|
287 |
-
"Nama Kemampuan (ID) harus mengandung karakter latin, angka, kata penghubung "
|
288 |
-
"atau garis bawah saja!"
|
289 |
-
|
290 |
-
#: ../includes/class-user-role-editor.php:1033
|
291 |
-
#: ../includes/class-user-role-editor.php:1066
|
292 |
-
msgid "Other Roles"
|
293 |
-
msgstr "Peran Lainnya"
|
294 |
-
|
295 |
-
#: ../includes/class-user-role-editor.php:1047
|
296 |
-
msgid "Edit"
|
297 |
-
msgstr "Sunting"
|
298 |
-
|
299 |
-
#: ../includes/ure-role-edit.php:17
|
300 |
-
#, fuzzy
|
301 |
-
msgid "Select Role and change its capabilities:"
|
302 |
-
msgstr "Pilih Peran dan ubah daftar kemampuan"
|
303 |
-
|
304 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
305 |
-
msgid "Show capabilities in human readable form"
|
306 |
-
msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
307 |
-
|
308 |
-
#: ../includes/ure-role-edit.php:44
|
309 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
310 |
-
msgstr ""
|
311 |
-
"Jika dicentang, kemudian terapkan tindakan untuk SEMUA situs Jaringan ini"
|
312 |
-
|
313 |
-
#: ../includes/ure-role-edit.php:56
|
314 |
-
msgid "Apply to All Sites"
|
315 |
-
msgstr "Terapkan ke Semua Situs"
|
316 |
-
|
317 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
318 |
-
msgid "Core capabilities:"
|
319 |
-
msgstr "Kemampuan inti:"
|
320 |
-
|
321 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
322 |
-
msgid "Quick filter:"
|
323 |
-
msgstr "Saring Cepat:"
|
324 |
-
|
325 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
326 |
-
msgid "Custom capabilities:"
|
327 |
-
msgstr "Kustom kemampuan:"
|
328 |
-
|
329 |
-
#: ../includes/class-ure-lib.php:245
|
330 |
msgid "Error: wrong request"
|
331 |
msgstr "Salah: salah permintaan"
|
332 |
|
333 |
-
#: ../includes/class-ure-lib.php:
|
334 |
msgid "Role name (ID): "
|
335 |
msgstr "Nama Peran (ID):"
|
336 |
|
337 |
-
#: ../includes/class-ure-lib.php:
|
338 |
msgid "Display Role Name: "
|
339 |
msgstr "Tampilkan Nama Peran:"
|
340 |
|
341 |
-
#: ../includes/class-ure-lib.php:
|
342 |
msgid "Make copy of: "
|
343 |
msgstr "buat salinan:"
|
344 |
|
345 |
-
#: ../includes/class-ure-lib.php:
|
346 |
msgid "Select Role:"
|
347 |
msgstr "Pilih Peran:"
|
348 |
|
349 |
-
#: ../includes/class-ure-lib.php:
|
350 |
msgid "Delete:"
|
351 |
msgstr "Hapus:"
|
352 |
|
353 |
-
#: ../includes/class-ure-lib.php:
|
354 |
msgid "Capability name (ID): "
|
355 |
msgstr "Nama Kemampuan (ID):"
|
356 |
|
357 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
358 |
msgid "Error: "
|
359 |
msgstr "Salah:"
|
360 |
|
361 |
-
#: ../includes/class-ure-lib.php:
|
362 |
msgid "Role"
|
363 |
msgstr "Peran"
|
364 |
|
365 |
-
#: ../includes/class-ure-lib.php:
|
366 |
msgid "does not exist"
|
367 |
msgstr "tidak ada"
|
368 |
|
369 |
-
#: ../includes/class-ure-lib.php:
|
370 |
msgid "Role is updated successfully"
|
371 |
msgstr "Peran berhasil diperbarui"
|
372 |
|
373 |
-
#: ../includes/class-ure-lib.php:
|
374 |
msgid "Roles are updated for all network"
|
375 |
msgstr "Peran diperbarui untuk semua jaringan"
|
376 |
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
msgid "Error occured during role(s) update"
|
379 |
msgstr "Kesalahan terjadi selama pembaruan peran"
|
380 |
|
381 |
-
#: ../includes/class-ure-lib.php:
|
382 |
msgid "User capabilities are updated successfully"
|
383 |
msgstr "Kemampuan pengguna berhasil diperbarui"
|
384 |
|
385 |
-
#: ../includes/class-ure-lib.php:
|
386 |
msgid "Error occured during user update"
|
387 |
msgstr "Kesalahan terjadi sepanjang pembaruan pengguna"
|
388 |
|
389 |
-
#: ../includes/class-ure-lib.php:
|
390 |
msgid "User Roles are restored to WordPress default values. "
|
391 |
msgstr "Peran Pengguna dikembalikan ke nilai Wordpress default."
|
392 |
|
393 |
-
#: ../includes/class-ure-lib.php:
|
394 |
msgid "read about"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: ../includes/class-ure-lib.php:
|
398 |
#, fuzzy
|
399 |
msgid "user capability"
|
400 |
msgstr "Kustom kemampuan:"
|
401 |
|
402 |
-
#: ../includes/class-ure-lib.php:
|
403 |
msgid "Help"
|
404 |
msgstr "Bantuan"
|
405 |
|
406 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
407 |
msgid "Error is occur. Please check the log file."
|
408 |
msgstr "kesalahan terjadi, Harap periksa log data."
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
msgid ""
|
412 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
413 |
"only!"
|
@@ -415,406 +118,465 @@ msgstr ""
|
|
415 |
"Kesalahan: ID Peran harus mengandung karakter latin, angka, kata penghubung "
|
416 |
"dan garis bawah saja!"
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
msgid ""
|
420 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
421 |
"characters to it."
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: ../includes/class-ure-lib.php:
|
425 |
#, php-format
|
426 |
msgid "Role %s exists already"
|
427 |
msgstr "Peran %s telah ada"
|
428 |
|
429 |
-
#: ../includes/class-ure-lib.php:
|
430 |
msgid "Error is encountered during new role create operation"
|
431 |
msgstr "Kesalahan ditemui selama peran baru membuat operasi"
|
432 |
|
433 |
-
#: ../includes/class-ure-lib.php:
|
434 |
#, php-format
|
435 |
msgid "Role %s is created successfully"
|
436 |
msgstr "Peran %s berhasil dibuat"
|
437 |
|
438 |
-
#: ../includes/class-ure-lib.php:
|
439 |
msgid "Error: Role ID is empty!"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: ../includes/class-ure-lib.php:
|
443 |
msgid "Error: Empty role display name is not allowed."
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: ../includes/class-ure-lib.php:
|
447 |
#, fuzzy, php-format
|
448 |
msgid "Role %s does not exists"
|
449 |
msgstr "tidak ada"
|
450 |
|
451 |
-
#: ../includes/class-ure-lib.php:
|
452 |
#, fuzzy, php-format
|
453 |
msgid "Role %s is renamed to %s successfully"
|
454 |
msgstr "Peran %s berhasil dibuat"
|
455 |
|
456 |
-
#: ../includes/class-ure-lib.php:
|
457 |
msgid "Error encountered during role delete operation"
|
458 |
msgstr "Kesalahan ditemui selama operasi penghapusan peran"
|
459 |
|
460 |
-
#: ../includes/class-ure-lib.php:
|
461 |
msgid "Unused roles are deleted successfully"
|
462 |
msgstr "Peran yang tidak digunakan berhasil dihapus"
|
463 |
|
464 |
-
#: ../includes/class-ure-lib.php:
|
465 |
#, php-format
|
466 |
msgid "Role %s is deleted successfully"
|
467 |
msgstr "Peran %s berhasil dihapus"
|
468 |
|
469 |
-
#: ../includes/class-ure-lib.php:
|
470 |
msgid "Error encountered during default role change operation"
|
471 |
msgstr "Kesalahan ditemui selama operasi perubahan peran standar"
|
472 |
|
473 |
-
#: ../includes/class-ure-lib.php:
|
474 |
#, php-format
|
475 |
msgid "Default role for new users is set to %s successfully"
|
476 |
msgstr "Peran standar untuk pengguna baru diatur ke %s dengan sukses"
|
477 |
|
478 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
479 |
msgid "Editor"
|
480 |
msgstr "Penyunting"
|
481 |
|
482 |
-
#: ../includes/class-ure-lib.php:
|
483 |
msgid "Author"
|
484 |
msgstr "Pengarang"
|
485 |
|
486 |
-
#: ../includes/class-ure-lib.php:
|
487 |
msgid "Contributor"
|
488 |
msgstr "Kontributor"
|
489 |
|
490 |
-
#: ../includes/class-ure-lib.php:
|
491 |
msgid "Subscriber"
|
492 |
msgstr "Pelanggan"
|
493 |
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
msgid "Switch themes"
|
496 |
msgstr "Ganti tema"
|
497 |
|
498 |
-
#: ../includes/class-ure-lib.php:
|
499 |
msgid "Edit themes"
|
500 |
msgstr "Sunting tema"
|
501 |
|
502 |
-
#: ../includes/class-ure-lib.php:
|
503 |
msgid "Activate plugins"
|
504 |
msgstr "Aktifkan plugin"
|
505 |
|
506 |
-
#: ../includes/class-ure-lib.php:
|
507 |
msgid "Edit plugins"
|
508 |
msgstr "Sunting plugin"
|
509 |
|
510 |
-
#: ../includes/class-ure-lib.php:
|
511 |
msgid "Edit users"
|
512 |
msgstr "Sunting pengguna"
|
513 |
|
514 |
-
#: ../includes/class-ure-lib.php:
|
515 |
msgid "Edit files"
|
516 |
msgstr "Sunting data"
|
517 |
|
518 |
-
#: ../includes/class-ure-lib.php:
|
519 |
msgid "Manage options"
|
520 |
msgstr "kelola pilihan"
|
521 |
|
522 |
-
#: ../includes/class-ure-lib.php:
|
523 |
msgid "Moderate comments"
|
524 |
msgstr "Moderasi komentar"
|
525 |
|
526 |
-
#: ../includes/class-ure-lib.php:
|
527 |
msgid "Manage categories"
|
528 |
msgstr "Kelola kategori"
|
529 |
|
530 |
-
#: ../includes/class-ure-lib.php:
|
531 |
msgid "Manage links"
|
532 |
msgstr "Kelola tautan"
|
533 |
|
534 |
-
#: ../includes/class-ure-lib.php:
|
535 |
msgid "Upload files"
|
536 |
msgstr "Unggah data"
|
537 |
|
538 |
-
#: ../includes/class-ure-lib.php:
|
539 |
msgid "Import"
|
540 |
msgstr "Impor"
|
541 |
|
542 |
-
#: ../includes/class-ure-lib.php:
|
543 |
msgid "Unfiltered html"
|
544 |
msgstr "HTML tidak tersaring"
|
545 |
|
546 |
-
#: ../includes/class-ure-lib.php:
|
547 |
msgid "Edit posts"
|
548 |
msgstr "Sunting posting"
|
549 |
|
550 |
-
#: ../includes/class-ure-lib.php:
|
551 |
msgid "Edit others posts"
|
552 |
msgstr "Sunting posting lainnya"
|
553 |
|
554 |
-
#: ../includes/class-ure-lib.php:
|
555 |
msgid "Edit published posts"
|
556 |
msgstr "Sunting posting terpublikasi"
|
557 |
|
558 |
-
#: ../includes/class-ure-lib.php:
|
559 |
msgid "Publish posts"
|
560 |
msgstr "Publikasi posting"
|
561 |
|
562 |
-
#: ../includes/class-ure-lib.php:
|
563 |
msgid "Edit pages"
|
564 |
msgstr "Sunting halaman"
|
565 |
|
566 |
-
#: ../includes/class-ure-lib.php:
|
567 |
msgid "Read"
|
568 |
msgstr "Baca"
|
569 |
|
570 |
-
#: ../includes/class-ure-lib.php:
|
571 |
msgid "Level 10"
|
572 |
msgstr "Tingkat 10"
|
573 |
|
574 |
-
#: ../includes/class-ure-lib.php:
|
575 |
msgid "Level 9"
|
576 |
msgstr "Tingkat 9"
|
577 |
|
578 |
-
#: ../includes/class-ure-lib.php:
|
579 |
msgid "Level 8"
|
580 |
msgstr "Tingkat 8"
|
581 |
|
582 |
-
#: ../includes/class-ure-lib.php:
|
583 |
msgid "Level 7"
|
584 |
msgstr "Tingkat 7"
|
585 |
|
586 |
-
#: ../includes/class-ure-lib.php:
|
587 |
msgid "Level 6"
|
588 |
msgstr "Tingkat 6"
|
589 |
|
590 |
-
#: ../includes/class-ure-lib.php:
|
591 |
msgid "Level 5"
|
592 |
msgstr "Tingkat 5"
|
593 |
|
594 |
-
#: ../includes/class-ure-lib.php:
|
595 |
msgid "Level 4"
|
596 |
msgstr "Tingkat 4"
|
597 |
|
598 |
-
#: ../includes/class-ure-lib.php:
|
599 |
msgid "Level 3"
|
600 |
msgstr "Tingkat 3"
|
601 |
|
602 |
-
#: ../includes/class-ure-lib.php:
|
603 |
msgid "Level 2"
|
604 |
msgstr "Tingkat 2"
|
605 |
|
606 |
-
#: ../includes/class-ure-lib.php:
|
607 |
msgid "Level 1"
|
608 |
msgstr "Tingkat 1"
|
609 |
|
610 |
-
#: ../includes/class-ure-lib.php:
|
611 |
msgid "Level 0"
|
612 |
msgstr "Tingkat 0"
|
613 |
|
614 |
-
#: ../includes/class-ure-lib.php:
|
615 |
msgid "Edit others pages"
|
616 |
msgstr "Sunting halaman lainnya"
|
617 |
|
618 |
-
#: ../includes/class-ure-lib.php:
|
619 |
msgid "Edit published pages"
|
620 |
msgstr "Sunting halaman terpublikasi"
|
621 |
|
622 |
-
#: ../includes/class-ure-lib.php:
|
623 |
msgid "Publish pages"
|
624 |
msgstr "Publikasi halaman"
|
625 |
|
626 |
-
#: ../includes/class-ure-lib.php:
|
627 |
msgid "Delete pages"
|
628 |
msgstr "Hapus halaman"
|
629 |
|
630 |
-
#: ../includes/class-ure-lib.php:
|
631 |
msgid "Delete others pages"
|
632 |
msgstr "Hapus halaman lainnya"
|
633 |
|
634 |
-
#: ../includes/class-ure-lib.php:
|
635 |
msgid "Delete published pages"
|
636 |
msgstr "Hapus halaman terpublikasi"
|
637 |
|
638 |
-
#: ../includes/class-ure-lib.php:
|
639 |
msgid "Delete posts"
|
640 |
msgstr "hapus posting"
|
641 |
|
642 |
-
#: ../includes/class-ure-lib.php:
|
643 |
msgid "Delete others posts"
|
644 |
msgstr "Hapus posting lainnya"
|
645 |
|
646 |
-
#: ../includes/class-ure-lib.php:
|
647 |
msgid "Delete published posts"
|
648 |
msgstr "Hapus posting terpublikasi"
|
649 |
|
650 |
-
#: ../includes/class-ure-lib.php:
|
651 |
msgid "Delete private posts"
|
652 |
msgstr "Hapus posting pribadi"
|
653 |
|
654 |
-
#: ../includes/class-ure-lib.php:
|
655 |
msgid "Edit private posts"
|
656 |
msgstr "Sunting posting pribadi"
|
657 |
|
658 |
-
#: ../includes/class-ure-lib.php:
|
659 |
msgid "Read private posts"
|
660 |
msgstr "Baca posting pribadi"
|
661 |
|
662 |
-
#: ../includes/class-ure-lib.php:
|
663 |
msgid "Delete private pages"
|
664 |
msgstr "Hapus halaman pribadi"
|
665 |
|
666 |
-
#: ../includes/class-ure-lib.php:
|
667 |
msgid "Edit private pages"
|
668 |
msgstr "Sunting halaman pribadi"
|
669 |
|
670 |
-
#: ../includes/class-ure-lib.php:
|
671 |
msgid "Read private pages"
|
672 |
msgstr "baca halaman pribadi"
|
673 |
|
674 |
-
#: ../includes/class-ure-lib.php:
|
675 |
msgid "Delete users"
|
676 |
msgstr "Hapus pengguna"
|
677 |
|
678 |
-
#: ../includes/class-ure-lib.php:
|
679 |
msgid "Create users"
|
680 |
msgstr "Buat pengguna"
|
681 |
|
682 |
-
#: ../includes/class-ure-lib.php:
|
683 |
msgid "Unfiltered upload"
|
684 |
msgstr "Unggahan tidak tersaring"
|
685 |
|
686 |
-
#: ../includes/class-ure-lib.php:
|
687 |
msgid "Edit dashboard"
|
688 |
msgstr "Sunting dasbor"
|
689 |
|
690 |
-
#: ../includes/class-ure-lib.php:
|
691 |
msgid "Update plugins"
|
692 |
msgstr "Perbarui plugin"
|
693 |
|
694 |
-
#: ../includes/class-ure-lib.php:
|
695 |
msgid "Delete plugins"
|
696 |
msgstr "Hapus plugin"
|
697 |
|
698 |
-
#: ../includes/class-ure-lib.php:
|
699 |
msgid "Install plugins"
|
700 |
msgstr "Pasang plugin"
|
701 |
|
702 |
-
#: ../includes/class-ure-lib.php:
|
703 |
msgid "Update themes"
|
704 |
msgstr "Perbarui tema"
|
705 |
|
706 |
-
#: ../includes/class-ure-lib.php:
|
707 |
msgid "Install themes"
|
708 |
msgstr "Pasang tema"
|
709 |
|
710 |
-
#: ../includes/class-ure-lib.php:
|
711 |
msgid "Update core"
|
712 |
msgstr "Perbarui inti"
|
713 |
|
714 |
-
#: ../includes/class-ure-lib.php:
|
715 |
msgid "List users"
|
716 |
msgstr "Daftar pengguna"
|
717 |
|
718 |
-
#: ../includes/class-ure-lib.php:
|
719 |
msgid "Remove users"
|
720 |
msgstr "Hapus pengguna"
|
721 |
|
722 |
-
#: ../includes/class-ure-lib.php:
|
723 |
msgid "Add users"
|
724 |
msgstr "Tambah pengguna"
|
725 |
|
726 |
-
#: ../includes/class-ure-lib.php:
|
727 |
msgid "Promote users"
|
728 |
msgstr "Promosi pengguna"
|
729 |
|
730 |
-
#: ../includes/class-ure-lib.php:
|
731 |
msgid "Edit theme options"
|
732 |
msgstr "Sunting pilihan tema"
|
733 |
|
734 |
-
#: ../includes/class-ure-lib.php:
|
735 |
msgid "Delete themes"
|
736 |
msgstr "Hapus tema"
|
737 |
|
738 |
-
#: ../includes/class-ure-lib.php:
|
739 |
msgid "Export"
|
740 |
msgstr "Ekspor"
|
741 |
|
742 |
-
#: ../includes/class-ure-lib.php:
|
743 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
744 |
msgstr "Salah: Kemampuan nama harus mengandung karakter latin dan angka saja!"
|
745 |
|
746 |
-
#: ../includes/class-ure-lib.php:
|
747 |
#, php-format
|
748 |
msgid "Capability %s is added successfully"
|
749 |
msgstr "Kemampuan %s berhasil ditambahkan"
|
750 |
|
751 |
-
#: ../includes/class-ure-lib.php:
|
752 |
#, php-format
|
753 |
msgid "Capability %s exists already"
|
754 |
msgstr "Kemampuan %s telah ada"
|
755 |
|
756 |
-
#: ../includes/class-ure-lib.php:
|
757 |
#, php-format
|
758 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
759 |
msgstr "Salah! Anda tidak memiliki izin untuk menghapus kemampuan ini: %s!"
|
760 |
|
761 |
-
#: ../includes/class-ure-lib.php:
|
762 |
-
#, php-format
|
763 |
-
msgid "Capability %s
|
764 |
msgstr "Kemampuan %s berhasil dihapus"
|
765 |
|
766 |
-
#: ../includes/class-ure-lib.php:
|
767 |
msgid "Version:"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: ../includes/class-ure-lib.php:
|
771 |
msgid "Author's website"
|
772 |
msgstr "Website pengarang"
|
773 |
|
774 |
-
#: ../includes/class-ure-lib.php:
|
775 |
msgid "Plugin webpage"
|
776 |
msgstr "Halaman web Plugin"
|
777 |
|
778 |
-
#: ../includes/class-ure-lib.php:
|
779 |
#, fuzzy
|
780 |
msgid "Plugin download"
|
781 |
msgstr "Halaman web Plugin"
|
782 |
|
783 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
784 |
msgid "FAQ"
|
785 |
msgstr "FAQ"
|
786 |
|
787 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
788 |
msgid "None"
|
789 |
msgstr "Nihil"
|
790 |
|
791 |
-
#: ../includes/class-ure-lib.php:
|
792 |
-
msgid "
|
793 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
794 |
|
795 |
-
#: ../includes/
|
796 |
-
msgid "
|
797 |
-
msgstr "
|
798 |
|
799 |
-
#: ../includes/ure-user-edit.php:
|
800 |
-
msgid "
|
801 |
-
msgstr "
|
802 |
|
803 |
-
#: ../includes/
|
804 |
-
|
805 |
-
|
|
|
|
|
806 |
|
807 |
-
#: ../includes/
|
808 |
-
msgid "
|
809 |
-
msgstr "
|
810 |
|
811 |
-
#: ../includes/
|
812 |
-
|
813 |
-
|
|
|
814 |
|
815 |
-
#: ../includes/
|
816 |
-
msgid "
|
817 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
818 |
|
819 |
#: ../includes/class-ure-screen-help.php:12
|
820 |
#: ../includes/class-ure-screen-help.php:41
|
@@ -824,6 +586,11 @@ msgstr "Peran Lain:"
|
|
824 |
msgid "User Role Editor Options page help"
|
825 |
msgstr "User Role Editor"
|
826 |
|
|
|
|
|
|
|
|
|
|
|
827 |
#: ../includes/class-ure-screen-help.php:16
|
828 |
msgid ""
|
829 |
"turn this option on in order to make the \"Administrator\" role available at "
|
@@ -834,6 +601,11 @@ msgstr ""
|
|
834 |
"daftar seleksi pilihan peran User Role Editor. Akan tersembunyi secara "
|
835 |
"default demi alasan keamanan."
|
836 |
|
|
|
|
|
|
|
|
|
|
|
837 |
#: ../includes/class-ure-screen-help.php:19
|
838 |
msgid ""
|
839 |
"automatically converts capability names from the technical form for internal "
|
@@ -856,6 +628,12 @@ msgstr ""
|
|
856 |
"kompatibilitas dengan tema lama dan kode plugin. Menyalakan opsi ini akan "
|
857 |
"menunjukkan kemampuan mereka usang."
|
858 |
|
|
|
|
|
|
|
|
|
|
|
|
|
859 |
#: ../includes/class-ure-screen-help.php:26
|
860 |
msgid ""
|
861 |
"If turned off - capabilities section of selected user is shown in readonly "
|
@@ -863,6 +641,11 @@ msgid ""
|
|
863 |
"should make it using roles only."
|
864 |
msgstr ""
|
865 |
|
|
|
|
|
|
|
|
|
|
|
866 |
#: ../includes/class-ure-screen-help.php:46
|
867 |
msgid ""
|
868 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
@@ -897,6 +680,248 @@ msgstr ""
|
|
897 |
"bawah WordPress multi-situs. Aktifkan pilihan ini dalam rangka menghapus "
|
898 |
"keterbatasan ini."
|
899 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
900 |
#, fuzzy
|
901 |
#~ msgid "select roles below"
|
902 |
#~ msgstr "Batalkan Semua"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-11 21:06+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: http://al-badar.net <nasrulhaq81@gmail.com>\n"
|
9 |
"Language: id_ID\n"
|
10 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/class-ure-lib.php:247
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "Error: wrong request"
|
21 |
msgstr "Salah: salah permintaan"
|
22 |
|
23 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
24 |
msgid "Role name (ID): "
|
25 |
msgstr "Nama Peran (ID):"
|
26 |
|
27 |
+
#: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
|
28 |
msgid "Display Role Name: "
|
29 |
msgstr "Tampilkan Nama Peran:"
|
30 |
|
31 |
+
#: ../includes/class-ure-lib.php:284
|
32 |
msgid "Make copy of: "
|
33 |
msgstr "buat salinan:"
|
34 |
|
35 |
+
#: ../includes/class-ure-lib.php:300
|
36 |
msgid "Select Role:"
|
37 |
msgstr "Pilih Peran:"
|
38 |
|
39 |
+
#: ../includes/class-ure-lib.php:315
|
40 |
msgid "Delete:"
|
41 |
msgstr "Hapus:"
|
42 |
|
43 |
+
#: ../includes/class-ure-lib.php:322
|
44 |
msgid "Capability name (ID): "
|
45 |
msgstr "Nama Kemampuan (ID):"
|
46 |
|
47 |
+
#: ../includes/class-ure-lib.php:339
|
48 |
+
#: ../includes/class-user-role-editor.php:596
|
49 |
+
#: ../includes/class-user-role-editor.php:625
|
50 |
+
msgid "User Role Editor"
|
51 |
+
msgstr "User Role Editor"
|
52 |
+
|
53 |
+
#: ../includes/class-ure-lib.php:436
|
54 |
msgid "Error: "
|
55 |
msgstr "Salah:"
|
56 |
|
57 |
+
#: ../includes/class-ure-lib.php:436
|
58 |
msgid "Role"
|
59 |
msgstr "Peran"
|
60 |
|
61 |
+
#: ../includes/class-ure-lib.php:437
|
62 |
msgid "does not exist"
|
63 |
msgstr "tidak ada"
|
64 |
|
65 |
+
#: ../includes/class-ure-lib.php:480
|
66 |
msgid "Role is updated successfully"
|
67 |
msgstr "Peran berhasil diperbarui"
|
68 |
|
69 |
+
#: ../includes/class-ure-lib.php:482
|
70 |
msgid "Roles are updated for all network"
|
71 |
msgstr "Peran diperbarui untuk semua jaringan"
|
72 |
|
73 |
+
#: ../includes/class-ure-lib.php:488
|
74 |
msgid "Error occured during role(s) update"
|
75 |
msgstr "Kesalahan terjadi selama pembaruan peran"
|
76 |
|
77 |
+
#: ../includes/class-ure-lib.php:495
|
78 |
msgid "User capabilities are updated successfully"
|
79 |
msgstr "Kemampuan pengguna berhasil diperbarui"
|
80 |
|
81 |
+
#: ../includes/class-ure-lib.php:500
|
82 |
msgid "Error occured during user update"
|
83 |
msgstr "Kesalahan terjadi sepanjang pembaruan pengguna"
|
84 |
|
85 |
+
#: ../includes/class-ure-lib.php:558
|
86 |
msgid "User Roles are restored to WordPress default values. "
|
87 |
msgstr "Peran Pengguna dikembalikan ke nilai Wordpress default."
|
88 |
|
89 |
+
#: ../includes/class-ure-lib.php:1436
|
90 |
msgid "read about"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: ../includes/class-ure-lib.php:1437
|
94 |
#, fuzzy
|
95 |
msgid "user capability"
|
96 |
msgstr "Kustom kemampuan:"
|
97 |
|
98 |
+
#: ../includes/class-ure-lib.php:1438
|
99 |
msgid "Help"
|
100 |
msgstr "Bantuan"
|
101 |
|
102 |
+
#: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
|
103 |
+
#: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
|
104 |
+
#: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
|
105 |
+
#: ../includes/class-user-role-editor.php:828
|
106 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
107 |
+
msgstr "Izin yang tidak sesuai untuk bekerja dengan User Role Editor"
|
108 |
+
|
109 |
+
#: ../includes/class-ure-lib.php:1909
|
110 |
msgid "Error is occur. Please check the log file."
|
111 |
msgstr "kesalahan terjadi, Harap periksa log data."
|
112 |
|
113 |
+
#: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
|
114 |
msgid ""
|
115 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
116 |
"only!"
|
118 |
"Kesalahan: ID Peran harus mengandung karakter latin, angka, kata penghubung "
|
119 |
"dan garis bawah saja!"
|
120 |
|
121 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
122 |
msgid ""
|
123 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
124 |
"characters to it."
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: ../includes/class-ure-lib.php:1974
|
128 |
#, php-format
|
129 |
msgid "Role %s exists already"
|
130 |
msgstr "Peran %s telah ada"
|
131 |
|
132 |
+
#: ../includes/class-ure-lib.php:1989
|
133 |
msgid "Error is encountered during new role create operation"
|
134 |
msgstr "Kesalahan ditemui selama peran baru membuat operasi"
|
135 |
|
136 |
+
#: ../includes/class-ure-lib.php:1991
|
137 |
#, php-format
|
138 |
msgid "Role %s is created successfully"
|
139 |
msgstr "Peran %s berhasil dibuat"
|
140 |
|
141 |
+
#: ../includes/class-ure-lib.php:2015
|
142 |
msgid "Error: Role ID is empty!"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: ../includes/class-ure-lib.php:2033
|
146 |
msgid "Error: Empty role display name is not allowed."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: ../includes/class-ure-lib.php:2040
|
150 |
#, fuzzy, php-format
|
151 |
msgid "Role %s does not exists"
|
152 |
msgstr "tidak ada"
|
153 |
|
154 |
+
#: ../includes/class-ure-lib.php:2048
|
155 |
#, fuzzy, php-format
|
156 |
msgid "Role %s is renamed to %s successfully"
|
157 |
msgstr "Peran %s berhasil dibuat"
|
158 |
|
159 |
+
#: ../includes/class-ure-lib.php:2121
|
160 |
msgid "Error encountered during role delete operation"
|
161 |
msgstr "Kesalahan ditemui selama operasi penghapusan peran"
|
162 |
|
163 |
+
#: ../includes/class-ure-lib.php:2123
|
164 |
msgid "Unused roles are deleted successfully"
|
165 |
msgstr "Peran yang tidak digunakan berhasil dihapus"
|
166 |
|
167 |
+
#: ../includes/class-ure-lib.php:2125
|
168 |
#, php-format
|
169 |
msgid "Role %s is deleted successfully"
|
170 |
msgstr "Peran %s berhasil dihapus"
|
171 |
|
172 |
+
#: ../includes/class-ure-lib.php:2153
|
173 |
msgid "Error encountered during default role change operation"
|
174 |
msgstr "Kesalahan ditemui selama operasi perubahan peran standar"
|
175 |
|
176 |
+
#: ../includes/class-ure-lib.php:2156
|
177 |
#, php-format
|
178 |
msgid "Default role for new users is set to %s successfully"
|
179 |
msgstr "Peran standar untuk pengguna baru diatur ke %s dengan sukses"
|
180 |
|
181 |
+
#: ../includes/class-ure-lib.php:2159
|
182 |
+
#, fuzzy
|
183 |
+
msgid "Can not set Administrator role as a default one"
|
184 |
+
msgstr "Tampilkan peran Administrator di User Role Editor"
|
185 |
+
|
186 |
+
#: ../includes/class-ure-lib.php:2161
|
187 |
+
#, fuzzy
|
188 |
+
msgid "This role does not exist - "
|
189 |
+
msgstr "tidak ada"
|
190 |
+
|
191 |
+
#: ../includes/class-ure-lib.php:2177
|
192 |
msgid "Editor"
|
193 |
msgstr "Penyunting"
|
194 |
|
195 |
+
#: ../includes/class-ure-lib.php:2178
|
196 |
msgid "Author"
|
197 |
msgstr "Pengarang"
|
198 |
|
199 |
+
#: ../includes/class-ure-lib.php:2179
|
200 |
msgid "Contributor"
|
201 |
msgstr "Kontributor"
|
202 |
|
203 |
+
#: ../includes/class-ure-lib.php:2180
|
204 |
msgid "Subscriber"
|
205 |
msgstr "Pelanggan"
|
206 |
|
207 |
+
#: ../includes/class-ure-lib.php:2182
|
208 |
msgid "Switch themes"
|
209 |
msgstr "Ganti tema"
|
210 |
|
211 |
+
#: ../includes/class-ure-lib.php:2183
|
212 |
msgid "Edit themes"
|
213 |
msgstr "Sunting tema"
|
214 |
|
215 |
+
#: ../includes/class-ure-lib.php:2184
|
216 |
msgid "Activate plugins"
|
217 |
msgstr "Aktifkan plugin"
|
218 |
|
219 |
+
#: ../includes/class-ure-lib.php:2185
|
220 |
msgid "Edit plugins"
|
221 |
msgstr "Sunting plugin"
|
222 |
|
223 |
+
#: ../includes/class-ure-lib.php:2186
|
224 |
msgid "Edit users"
|
225 |
msgstr "Sunting pengguna"
|
226 |
|
227 |
+
#: ../includes/class-ure-lib.php:2187
|
228 |
msgid "Edit files"
|
229 |
msgstr "Sunting data"
|
230 |
|
231 |
+
#: ../includes/class-ure-lib.php:2188
|
232 |
msgid "Manage options"
|
233 |
msgstr "kelola pilihan"
|
234 |
|
235 |
+
#: ../includes/class-ure-lib.php:2189
|
236 |
msgid "Moderate comments"
|
237 |
msgstr "Moderasi komentar"
|
238 |
|
239 |
+
#: ../includes/class-ure-lib.php:2190
|
240 |
msgid "Manage categories"
|
241 |
msgstr "Kelola kategori"
|
242 |
|
243 |
+
#: ../includes/class-ure-lib.php:2191
|
244 |
msgid "Manage links"
|
245 |
msgstr "Kelola tautan"
|
246 |
|
247 |
+
#: ../includes/class-ure-lib.php:2192
|
248 |
msgid "Upload files"
|
249 |
msgstr "Unggah data"
|
250 |
|
251 |
+
#: ../includes/class-ure-lib.php:2193
|
252 |
msgid "Import"
|
253 |
msgstr "Impor"
|
254 |
|
255 |
+
#: ../includes/class-ure-lib.php:2194
|
256 |
msgid "Unfiltered html"
|
257 |
msgstr "HTML tidak tersaring"
|
258 |
|
259 |
+
#: ../includes/class-ure-lib.php:2195
|
260 |
msgid "Edit posts"
|
261 |
msgstr "Sunting posting"
|
262 |
|
263 |
+
#: ../includes/class-ure-lib.php:2196
|
264 |
msgid "Edit others posts"
|
265 |
msgstr "Sunting posting lainnya"
|
266 |
|
267 |
+
#: ../includes/class-ure-lib.php:2197
|
268 |
msgid "Edit published posts"
|
269 |
msgstr "Sunting posting terpublikasi"
|
270 |
|
271 |
+
#: ../includes/class-ure-lib.php:2198
|
272 |
msgid "Publish posts"
|
273 |
msgstr "Publikasi posting"
|
274 |
|
275 |
+
#: ../includes/class-ure-lib.php:2199
|
276 |
msgid "Edit pages"
|
277 |
msgstr "Sunting halaman"
|
278 |
|
279 |
+
#: ../includes/class-ure-lib.php:2200
|
280 |
msgid "Read"
|
281 |
msgstr "Baca"
|
282 |
|
283 |
+
#: ../includes/class-ure-lib.php:2201
|
284 |
msgid "Level 10"
|
285 |
msgstr "Tingkat 10"
|
286 |
|
287 |
+
#: ../includes/class-ure-lib.php:2202
|
288 |
msgid "Level 9"
|
289 |
msgstr "Tingkat 9"
|
290 |
|
291 |
+
#: ../includes/class-ure-lib.php:2203
|
292 |
msgid "Level 8"
|
293 |
msgstr "Tingkat 8"
|
294 |
|
295 |
+
#: ../includes/class-ure-lib.php:2204
|
296 |
msgid "Level 7"
|
297 |
msgstr "Tingkat 7"
|
298 |
|
299 |
+
#: ../includes/class-ure-lib.php:2205
|
300 |
msgid "Level 6"
|
301 |
msgstr "Tingkat 6"
|
302 |
|
303 |
+
#: ../includes/class-ure-lib.php:2206
|
304 |
msgid "Level 5"
|
305 |
msgstr "Tingkat 5"
|
306 |
|
307 |
+
#: ../includes/class-ure-lib.php:2207
|
308 |
msgid "Level 4"
|
309 |
msgstr "Tingkat 4"
|
310 |
|
311 |
+
#: ../includes/class-ure-lib.php:2208
|
312 |
msgid "Level 3"
|
313 |
msgstr "Tingkat 3"
|
314 |
|
315 |
+
#: ../includes/class-ure-lib.php:2209
|
316 |
msgid "Level 2"
|
317 |
msgstr "Tingkat 2"
|
318 |
|
319 |
+
#: ../includes/class-ure-lib.php:2210
|
320 |
msgid "Level 1"
|
321 |
msgstr "Tingkat 1"
|
322 |
|
323 |
+
#: ../includes/class-ure-lib.php:2211
|
324 |
msgid "Level 0"
|
325 |
msgstr "Tingkat 0"
|
326 |
|
327 |
+
#: ../includes/class-ure-lib.php:2212
|
328 |
msgid "Edit others pages"
|
329 |
msgstr "Sunting halaman lainnya"
|
330 |
|
331 |
+
#: ../includes/class-ure-lib.php:2213
|
332 |
msgid "Edit published pages"
|
333 |
msgstr "Sunting halaman terpublikasi"
|
334 |
|
335 |
+
#: ../includes/class-ure-lib.php:2214
|
336 |
msgid "Publish pages"
|
337 |
msgstr "Publikasi halaman"
|
338 |
|
339 |
+
#: ../includes/class-ure-lib.php:2215
|
340 |
msgid "Delete pages"
|
341 |
msgstr "Hapus halaman"
|
342 |
|
343 |
+
#: ../includes/class-ure-lib.php:2216
|
344 |
msgid "Delete others pages"
|
345 |
msgstr "Hapus halaman lainnya"
|
346 |
|
347 |
+
#: ../includes/class-ure-lib.php:2217
|
348 |
msgid "Delete published pages"
|
349 |
msgstr "Hapus halaman terpublikasi"
|
350 |
|
351 |
+
#: ../includes/class-ure-lib.php:2218
|
352 |
msgid "Delete posts"
|
353 |
msgstr "hapus posting"
|
354 |
|
355 |
+
#: ../includes/class-ure-lib.php:2219
|
356 |
msgid "Delete others posts"
|
357 |
msgstr "Hapus posting lainnya"
|
358 |
|
359 |
+
#: ../includes/class-ure-lib.php:2220
|
360 |
msgid "Delete published posts"
|
361 |
msgstr "Hapus posting terpublikasi"
|
362 |
|
363 |
+
#: ../includes/class-ure-lib.php:2221
|
364 |
msgid "Delete private posts"
|
365 |
msgstr "Hapus posting pribadi"
|
366 |
|
367 |
+
#: ../includes/class-ure-lib.php:2222
|
368 |
msgid "Edit private posts"
|
369 |
msgstr "Sunting posting pribadi"
|
370 |
|
371 |
+
#: ../includes/class-ure-lib.php:2223
|
372 |
msgid "Read private posts"
|
373 |
msgstr "Baca posting pribadi"
|
374 |
|
375 |
+
#: ../includes/class-ure-lib.php:2224
|
376 |
msgid "Delete private pages"
|
377 |
msgstr "Hapus halaman pribadi"
|
378 |
|
379 |
+
#: ../includes/class-ure-lib.php:2225
|
380 |
msgid "Edit private pages"
|
381 |
msgstr "Sunting halaman pribadi"
|
382 |
|
383 |
+
#: ../includes/class-ure-lib.php:2226
|
384 |
msgid "Read private pages"
|
385 |
msgstr "baca halaman pribadi"
|
386 |
|
387 |
+
#: ../includes/class-ure-lib.php:2227
|
388 |
msgid "Delete users"
|
389 |
msgstr "Hapus pengguna"
|
390 |
|
391 |
+
#: ../includes/class-ure-lib.php:2228
|
392 |
msgid "Create users"
|
393 |
msgstr "Buat pengguna"
|
394 |
|
395 |
+
#: ../includes/class-ure-lib.php:2229
|
396 |
msgid "Unfiltered upload"
|
397 |
msgstr "Unggahan tidak tersaring"
|
398 |
|
399 |
+
#: ../includes/class-ure-lib.php:2230
|
400 |
msgid "Edit dashboard"
|
401 |
msgstr "Sunting dasbor"
|
402 |
|
403 |
+
#: ../includes/class-ure-lib.php:2231
|
404 |
msgid "Update plugins"
|
405 |
msgstr "Perbarui plugin"
|
406 |
|
407 |
+
#: ../includes/class-ure-lib.php:2232
|
408 |
msgid "Delete plugins"
|
409 |
msgstr "Hapus plugin"
|
410 |
|
411 |
+
#: ../includes/class-ure-lib.php:2233
|
412 |
msgid "Install plugins"
|
413 |
msgstr "Pasang plugin"
|
414 |
|
415 |
+
#: ../includes/class-ure-lib.php:2234
|
416 |
msgid "Update themes"
|
417 |
msgstr "Perbarui tema"
|
418 |
|
419 |
+
#: ../includes/class-ure-lib.php:2235
|
420 |
msgid "Install themes"
|
421 |
msgstr "Pasang tema"
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:2236
|
424 |
msgid "Update core"
|
425 |
msgstr "Perbarui inti"
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:2237
|
428 |
msgid "List users"
|
429 |
msgstr "Daftar pengguna"
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:2238
|
432 |
msgid "Remove users"
|
433 |
msgstr "Hapus pengguna"
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:2239
|
436 |
msgid "Add users"
|
437 |
msgstr "Tambah pengguna"
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:2240
|
440 |
msgid "Promote users"
|
441 |
msgstr "Promosi pengguna"
|
442 |
|
443 |
+
#: ../includes/class-ure-lib.php:2241
|
444 |
msgid "Edit theme options"
|
445 |
msgstr "Sunting pilihan tema"
|
446 |
|
447 |
+
#: ../includes/class-ure-lib.php:2242
|
448 |
msgid "Delete themes"
|
449 |
msgstr "Hapus tema"
|
450 |
|
451 |
+
#: ../includes/class-ure-lib.php:2243
|
452 |
msgid "Export"
|
453 |
msgstr "Ekspor"
|
454 |
|
455 |
+
#: ../includes/class-ure-lib.php:2366
|
456 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
457 |
msgstr "Salah: Kemampuan nama harus mengandung karakter latin dan angka saja!"
|
458 |
|
459 |
+
#: ../includes/class-ure-lib.php:2379
|
460 |
#, php-format
|
461 |
msgid "Capability %s is added successfully"
|
462 |
msgstr "Kemampuan %s berhasil ditambahkan"
|
463 |
|
464 |
+
#: ../includes/class-ure-lib.php:2381
|
465 |
#, php-format
|
466 |
msgid "Capability %s exists already"
|
467 |
msgstr "Kemampuan %s telah ada"
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:2410
|
470 |
#, php-format
|
471 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
472 |
msgstr "Salah! Anda tidak memiliki izin untuk menghapus kemampuan ini: %s!"
|
473 |
|
474 |
+
#: ../includes/class-ure-lib.php:2429
|
475 |
+
#, fuzzy, php-format
|
476 |
+
msgid "Capability %s was removed successfully"
|
477 |
msgstr "Kemampuan %s berhasil dihapus"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:2497
|
480 |
msgid "Version:"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:2498
|
484 |
msgid "Author's website"
|
485 |
msgstr "Website pengarang"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:2499
|
488 |
msgid "Plugin webpage"
|
489 |
msgstr "Halaman web Plugin"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:2500
|
492 |
#, fuzzy
|
493 |
msgid "Plugin download"
|
494 |
msgstr "Halaman web Plugin"
|
495 |
|
496 |
+
#: ../includes/class-ure-lib.php:2501
|
497 |
+
#: ../includes/class-user-role-editor.php:546
|
498 |
+
msgid "Changelog"
|
499 |
+
msgstr "log Perubahan"
|
500 |
+
|
501 |
+
#: ../includes/class-ure-lib.php:2502
|
502 |
msgid "FAQ"
|
503 |
msgstr "FAQ"
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:2575
|
506 |
+
msgid "Delete All Unused Roles"
|
507 |
+
msgstr "Hapus Peran Tidak Terpakai"
|
508 |
+
|
509 |
+
#: ../includes/class-ure-lib.php:2588
|
510 |
msgid "None"
|
511 |
msgstr "Nihil"
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:2632
|
514 |
+
msgid "— No role for this site —"
|
515 |
+
msgstr "— Tidak ada peran untuk situs ini —"
|
516 |
+
|
517 |
+
#: ../includes/class-ure-lib.php:2747
|
518 |
+
#, php-format
|
519 |
+
msgid "Denied: %s"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: ../includes/ure-role-edit.php:17
|
523 |
+
#, fuzzy
|
524 |
+
msgid "Select Role and change its capabilities:"
|
525 |
+
msgstr "Pilih Peran dan ubah daftar kemampuan"
|
526 |
+
|
527 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
528 |
+
msgid "Show capabilities in human readable form"
|
529 |
+
msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
530 |
+
|
531 |
+
#: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
|
532 |
+
#: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
|
533 |
+
msgid "Show deprecated capabilities"
|
534 |
+
msgstr "Tampilkan kemampuan usang"
|
535 |
+
|
536 |
+
#: ../includes/ure-role-edit.php:44
|
537 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
538 |
+
msgstr ""
|
539 |
+
"Jika dicentang, kemudian terapkan tindakan untuk SEMUA situs Jaringan ini"
|
540 |
+
|
541 |
+
#: ../includes/ure-role-edit.php:56
|
542 |
+
msgid "Apply to All Sites"
|
543 |
+
msgstr "Terapkan ke Semua Situs"
|
544 |
+
|
545 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
546 |
+
msgid "Core capabilities:"
|
547 |
+
msgstr "Kemampuan inti:"
|
548 |
|
549 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
550 |
+
msgid "Quick filter:"
|
551 |
+
msgstr "Saring Cepat:"
|
552 |
|
553 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
554 |
+
msgid "Custom capabilities:"
|
555 |
+
msgstr "Kustom kemampuan:"
|
556 |
|
557 |
+
#: ../includes/class-user-other-roles.php:82
|
558 |
+
#: ../includes/class-user-other-roles.php:183
|
559 |
+
#: ../includes/class-user-other-roles.php:243
|
560 |
+
msgid "Other Roles"
|
561 |
+
msgstr "Peran Lainnya"
|
562 |
|
563 |
+
#: ../includes/class-user-other-roles.php:83
|
564 |
+
msgid "Select additional roles for this user"
|
565 |
+
msgstr ""
|
566 |
|
567 |
+
#: ../includes/class-user-other-roles.php:162
|
568 |
+
#: ../includes/class-user-role-editor.php:438
|
569 |
+
msgid "Capabilities"
|
570 |
+
msgstr "Kemampuan"
|
571 |
|
572 |
+
#: ../includes/class-user-other-roles.php:169
|
573 |
+
msgid "Edit"
|
574 |
+
msgstr "Sunting"
|
575 |
+
|
576 |
+
#: ../includes/class-user-other-roles.php:215
|
577 |
+
#, fuzzy
|
578 |
+
msgid "Additional Capabilities"
|
579 |
+
msgstr "Tambah Kemampuan"
|
580 |
|
581 |
#: ../includes/class-ure-screen-help.php:12
|
582 |
#: ../includes/class-ure-screen-help.php:41
|
586 |
msgid "User Role Editor Options page help"
|
587 |
msgstr "User Role Editor"
|
588 |
|
589 |
+
#: ../includes/class-ure-screen-help.php:15
|
590 |
+
#: ../includes/settings-template.php:53
|
591 |
+
msgid "Show Administrator role at User Role Editor"
|
592 |
+
msgstr "Tampilkan peran Administrator di User Role Editor"
|
593 |
+
|
594 |
#: ../includes/class-ure-screen-help.php:16
|
595 |
msgid ""
|
596 |
"turn this option on in order to make the \"Administrator\" role available at "
|
601 |
"daftar seleksi pilihan peran User Role Editor. Akan tersembunyi secara "
|
602 |
"default demi alasan keamanan."
|
603 |
|
604 |
+
#: ../includes/class-ure-screen-help.php:18
|
605 |
+
#: ../includes/settings-template.php:61
|
606 |
+
msgid "Show capabilities in the human readable form"
|
607 |
+
msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
608 |
+
|
609 |
#: ../includes/class-ure-screen-help.php:19
|
610 |
msgid ""
|
611 |
"automatically converts capability names from the technical form for internal "
|
628 |
"kompatibilitas dengan tema lama dan kode plugin. Menyalakan opsi ini akan "
|
629 |
"menunjukkan kemampuan mereka usang."
|
630 |
|
631 |
+
#: ../includes/class-ure-screen-help.php:25
|
632 |
+
#: ../includes/settings-template.php:77
|
633 |
+
#, fuzzy
|
634 |
+
msgid "Edit user capabilities"
|
635 |
+
msgstr "Kustom kemampuan:"
|
636 |
+
|
637 |
#: ../includes/class-ure-screen-help.php:26
|
638 |
msgid ""
|
639 |
"If turned off - capabilities section of selected user is shown in readonly "
|
641 |
"should make it using roles only."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: ../includes/class-ure-screen-help.php:45
|
645 |
+
#: ../includes/settings-template.php:111
|
646 |
+
msgid "Count users without role"
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
#: ../includes/class-ure-screen-help.php:46
|
650 |
msgid ""
|
651 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
680 |
"bawah WordPress multi-situs. Aktifkan pilihan ini dalam rangka menghapus "
|
681 |
"keterbatasan ini."
|
682 |
|
683 |
+
#: ../includes/class-user-role-editor.php:233
|
684 |
+
msgid "Change role for users without role"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: ../includes/class-user-role-editor.php:234
|
688 |
+
msgid "No rights"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: ../includes/class-user-role-editor.php:235
|
692 |
+
msgid "Provide new role"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: ../includes/class-user-role-editor.php:298
|
696 |
+
#: ../includes/class-user-role-editor.php:300
|
697 |
+
msgid "You do not have permission to edit this user."
|
698 |
+
msgstr "Anda tidak diizinkan untuk menyunting user ini. "
|
699 |
+
|
700 |
+
#: ../includes/class-user-role-editor.php:535
|
701 |
+
msgid "Settings"
|
702 |
+
msgstr "Pengaturan"
|
703 |
+
|
704 |
+
#: ../includes/class-user-role-editor.php:568
|
705 |
+
#: ../includes/settings-template.php:21
|
706 |
+
msgid "General"
|
707 |
+
msgstr ""
|
708 |
+
|
709 |
+
#: ../includes/class-user-role-editor.php:574
|
710 |
+
#: ../includes/settings-template.php:26
|
711 |
+
msgid "Additional Modules"
|
712 |
+
msgstr ""
|
713 |
+
|
714 |
+
#: ../includes/class-user-role-editor.php:580
|
715 |
+
#: ../includes/settings-template.php:30
|
716 |
+
#, fuzzy
|
717 |
+
msgid "Default Roles"
|
718 |
+
msgstr "Peran "
|
719 |
+
|
720 |
+
#: ../includes/class-user-role-editor.php:586
|
721 |
+
#: ../includes/settings-template.php:34
|
722 |
+
msgid "Multisite"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
+
#: ../includes/class-user-role-editor.php:685
|
726 |
+
#: ../includes/class-user-role-editor.php:703
|
727 |
+
#: ../includes/class-user-role-editor.php:747
|
728 |
+
msgid "User Role Editor options are updated"
|
729 |
+
msgstr "Pilihan User Role Editor diperbarui"
|
730 |
+
|
731 |
+
#: ../includes/class-user-role-editor.php:731
|
732 |
+
#, fuzzy
|
733 |
+
msgid "Default Roles are updated"
|
734 |
+
msgstr "Peran "
|
735 |
+
|
736 |
+
#: ../includes/class-user-role-editor.php:756
|
737 |
+
msgid ""
|
738 |
+
"You do not have sufficient permissions to manage options for User Role "
|
739 |
+
"Editor."
|
740 |
+
msgstr ""
|
741 |
+
"Anda tidak memiliki izin yang memadai untuk mengelola pilihan User Role "
|
742 |
+
"Editor."
|
743 |
+
|
744 |
+
#: ../includes/class-user-role-editor.php:885
|
745 |
+
msgid "Select All"
|
746 |
+
msgstr "Pilih Semua"
|
747 |
+
|
748 |
+
#: ../includes/class-user-role-editor.php:886
|
749 |
+
msgid "Unselect All"
|
750 |
+
msgstr "Batalkan Semua"
|
751 |
+
|
752 |
+
#: ../includes/class-user-role-editor.php:887
|
753 |
+
msgid "Reverse"
|
754 |
+
msgstr "Memutar"
|
755 |
+
|
756 |
+
#: ../includes/class-user-role-editor.php:888
|
757 |
+
msgid "Update"
|
758 |
+
msgstr "Pembaruan"
|
759 |
+
|
760 |
+
#: ../includes/class-user-role-editor.php:889
|
761 |
+
msgid "Please confirm permissions update"
|
762 |
+
msgstr "Harap konfirmasi pembaruan izin"
|
763 |
+
|
764 |
+
#: ../includes/class-user-role-editor.php:890
|
765 |
+
msgid "Add New Role"
|
766 |
+
msgstr "Tambah Peran Baru"
|
767 |
+
|
768 |
+
#: ../includes/class-user-role-editor.php:891
|
769 |
+
#: ../includes/class-user-role-editor.php:896
|
770 |
+
#, fuzzy
|
771 |
+
msgid "Rename Role"
|
772 |
+
msgstr "Hapus Peran"
|
773 |
+
|
774 |
+
#: ../includes/class-user-role-editor.php:892
|
775 |
+
msgid " Role name (ID) can not be empty!"
|
776 |
+
msgstr "Nama peran (ID) tidak boleh kosong!"
|
777 |
+
|
778 |
+
#: ../includes/class-user-role-editor.php:893
|
779 |
+
msgid ""
|
780 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
781 |
+
"only!"
|
782 |
+
msgstr ""
|
783 |
+
"Nama peran (ID) harus berisi karakter latin, angka, tanda hubung atau garis "
|
784 |
+
"bawah saja!"
|
785 |
+
|
786 |
+
#: ../includes/class-user-role-editor.php:894
|
787 |
+
msgid ""
|
788 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
789 |
+
"it."
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: ../includes/class-user-role-editor.php:895
|
793 |
+
msgid "Add Role"
|
794 |
+
msgstr "Tambah Peran"
|
795 |
+
|
796 |
+
#: ../includes/class-user-role-editor.php:897
|
797 |
+
msgid "Delete Role"
|
798 |
+
msgstr "Hapus Peran"
|
799 |
+
|
800 |
+
#: ../includes/class-user-role-editor.php:898
|
801 |
+
msgid "Cancel"
|
802 |
+
msgstr "Batalkan"
|
803 |
+
|
804 |
+
#: ../includes/class-user-role-editor.php:899
|
805 |
+
msgid "Add Capability"
|
806 |
+
msgstr "Tambah Kemampuan"
|
807 |
+
|
808 |
+
#: ../includes/class-user-role-editor.php:900
|
809 |
+
#: ../includes/class-user-role-editor.php:909
|
810 |
+
msgid "Delete Capability"
|
811 |
+
msgstr "Hapus Kemampuan"
|
812 |
+
|
813 |
+
#: ../includes/class-user-role-editor.php:901
|
814 |
+
msgid "Reset"
|
815 |
+
msgstr "Atur Ulang"
|
816 |
+
|
817 |
+
#: ../includes/class-user-role-editor.php:902
|
818 |
+
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
819 |
+
msgstr ""
|
820 |
+
"BAHAYA! Reset akan mengembalikan pengaturan default dari WordPress Inti."
|
821 |
+
|
822 |
+
#: ../includes/class-user-role-editor.php:903
|
823 |
+
msgid ""
|
824 |
+
"If any plugins have changed capabilities in any way upon installation (such "
|
825 |
+
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
826 |
+
msgstr ""
|
827 |
+
"Jika ada plugin telah mengubah kemampuan dengan cara apapun atas instalasi "
|
828 |
+
"(seperti S2Member, WooCommerce, dan banyak lagi), kemampuan mereka akan "
|
829 |
+
"DIHAPUS!"
|
830 |
+
|
831 |
+
#: ../includes/class-user-role-editor.php:904
|
832 |
+
msgid ""
|
833 |
+
"For more information on how to undo changes and restore plugin capabilities "
|
834 |
+
"go to"
|
835 |
+
msgstr ""
|
836 |
+
"Untuk informasi lebih lanjut tentang cara membatalkan perubahan dan "
|
837 |
+
"mengembalikan kemampuan Plugin pergi ke"
|
838 |
+
|
839 |
+
#: ../includes/class-user-role-editor.php:906
|
840 |
+
msgid "Continue?"
|
841 |
+
msgstr "Lanjut?"
|
842 |
+
|
843 |
+
#: ../includes/class-user-role-editor.php:907
|
844 |
+
msgid "Default Role"
|
845 |
+
msgstr "Peran "
|
846 |
+
|
847 |
+
#: ../includes/class-user-role-editor.php:908
|
848 |
+
msgid "Set New Default Role"
|
849 |
+
msgstr "Atur Peran Baru Default"
|
850 |
+
|
851 |
+
#: ../includes/class-user-role-editor.php:910
|
852 |
+
msgid ""
|
853 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
854 |
+
"or other custom code"
|
855 |
+
msgstr ""
|
856 |
+
"Peringatan! Hati-hati - menghapus kemampuan kritis dapat menyebabkan crash "
|
857 |
+
"beberapa Plugin atau kode kustom lainnya"
|
858 |
+
|
859 |
+
#: ../includes/class-user-role-editor.php:911
|
860 |
+
msgid " Capability name (ID) can not be empty!"
|
861 |
+
msgstr "Nama Kemampuan (ID) tidak boleh kosong!"
|
862 |
+
|
863 |
+
#: ../includes/class-user-role-editor.php:912
|
864 |
+
msgid ""
|
865 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
866 |
+
"underscore only!"
|
867 |
+
msgstr ""
|
868 |
+
"Nama Kemampuan (ID) harus mengandung karakter latin, angka, kata penghubung "
|
869 |
+
"atau garis bawah saja!"
|
870 |
+
|
871 |
+
#: ../includes/settings-template.php:17
|
872 |
+
#, fuzzy
|
873 |
+
msgid "User Role Editor - Options"
|
874 |
+
msgstr "User Role Editor"
|
875 |
+
|
876 |
+
#: ../includes/settings-template.php:39
|
877 |
+
msgid "About"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
881 |
+
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
882 |
+
msgid "Save"
|
883 |
+
msgstr "Simpan"
|
884 |
+
|
885 |
+
#: ../includes/settings-template.php:138
|
886 |
+
#, fuzzy
|
887 |
+
msgid "Primary default role: "
|
888 |
+
msgstr "Peran Utama:"
|
889 |
+
|
890 |
+
#: ../includes/settings-template.php:145
|
891 |
+
msgid "Other default roles for new registered user: "
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
#: ../includes/settings-template.php:151
|
895 |
+
msgid ""
|
896 |
+
"Note for multisite environment: take into account that other default roles "
|
897 |
+
"should exist at the site, in order to be assigned to the new registered "
|
898 |
+
"users."
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
+
#: ../includes/settings-template.php:177
|
902 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
903 |
+
msgstr ""
|
904 |
+
|
905 |
+
#: ../includes/ure-user-edit.php:32
|
906 |
+
msgid "Network Super Admin"
|
907 |
+
msgstr "Jaringan Super Admin"
|
908 |
+
|
909 |
+
#: ../includes/ure-user-edit.php:35
|
910 |
+
msgid "Change capabilities for user"
|
911 |
+
msgstr "Ubah kemampuan untuk pengguna"
|
912 |
+
|
913 |
+
#: ../includes/ure-user-edit.php:72
|
914 |
+
msgid "Primary Role:"
|
915 |
+
msgstr "Peran Utama:"
|
916 |
+
|
917 |
+
#: ../includes/ure-user-edit.php:82
|
918 |
+
msgid "bbPress Role:"
|
919 |
+
msgstr "Peran bbPress:"
|
920 |
+
|
921 |
+
#: ../includes/ure-user-edit.php:92
|
922 |
+
msgid "Other Roles:"
|
923 |
+
msgstr "Peran Lain:"
|
924 |
+
|
925 |
#, fuzzy
|
926 |
#~ msgid "select roles below"
|
927 |
#~ msgstr "Batalkan Semua"
|
lang/user-role-editor-it_IT.mo
ADDED
Binary file
|
lang/{ure-it_IT.po → user-role-editor-it_IT.po}
RENAMED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 4.18.3\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: L.E.O.X. <leoxleox73@gmail.com>\n"
|
9 |
"Language: it_IT\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -17,394 +17,101 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: ..\n"
|
19 |
|
20 |
-
#: ../includes/
|
21 |
-
msgid "User Role Editor - Options"
|
22 |
-
msgstr "User Role Editor - Opzioni"
|
23 |
-
|
24 |
-
#: ../includes/settings-template.php:21
|
25 |
-
#: ../includes/class-user-role-editor.php:591
|
26 |
-
msgid "General"
|
27 |
-
msgstr "Generali"
|
28 |
-
|
29 |
-
#: ../includes/settings-template.php:26
|
30 |
-
#: ../includes/class-user-role-editor.php:597
|
31 |
-
msgid "Additional Modules"
|
32 |
-
msgstr "Moduli addizionali"
|
33 |
-
|
34 |
-
#: ../includes/settings-template.php:30
|
35 |
-
#: ../includes/class-user-role-editor.php:603
|
36 |
-
msgid "Default Roles"
|
37 |
-
msgstr "Ruoli predefiniti"
|
38 |
-
|
39 |
-
#: ../includes/settings-template.php:34
|
40 |
-
#: ../includes/class-user-role-editor.php:609
|
41 |
-
msgid "Multisite"
|
42 |
-
msgstr "Multisito"
|
43 |
-
|
44 |
-
#: ../includes/settings-template.php:39
|
45 |
-
msgid "About"
|
46 |
-
msgstr "Info"
|
47 |
-
|
48 |
-
#: ../includes/settings-template.php:53
|
49 |
-
#: ../includes/class-ure-screen-help.php:15
|
50 |
-
msgid "Show Administrator role at User Role Editor"
|
51 |
-
msgstr "Mostra il ruolo di amministratore in User Role Editor"
|
52 |
-
|
53 |
-
#: ../includes/settings-template.php:61
|
54 |
-
#: ../includes/class-ure-screen-help.php:18
|
55 |
-
msgid "Show capabilities in the human readable form"
|
56 |
-
msgstr "Mostra i privilegi in forma comprensibile"
|
57 |
-
|
58 |
-
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
59 |
-
#: ../includes/ure-user-edit.php:64 ../includes/class-ure-screen-help.php:21
|
60 |
-
msgid "Show deprecated capabilities"
|
61 |
-
msgstr "Mostra i privilegi sconsigliati (deprecati)"
|
62 |
-
|
63 |
-
#: ../includes/settings-template.php:77
|
64 |
-
#: ../includes/class-ure-screen-help.php:25
|
65 |
-
msgid "Edit user capabilities"
|
66 |
-
msgstr "Modifica privilegi utente"
|
67 |
-
|
68 |
-
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
69 |
-
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
70 |
-
msgid "Save"
|
71 |
-
msgstr "Salva"
|
72 |
-
|
73 |
-
#: ../includes/settings-template.php:111
|
74 |
-
#: ../includes/class-ure-screen-help.php:45
|
75 |
-
msgid "Count users without role"
|
76 |
-
msgstr "Conta utenti senza ruolo"
|
77 |
-
|
78 |
-
#: ../includes/settings-template.php:138
|
79 |
-
msgid "Primary default role: "
|
80 |
-
msgstr "Ruolo primario predefinito:"
|
81 |
-
|
82 |
-
#: ../includes/settings-template.php:145
|
83 |
-
msgid "Other default roles for new registered user: "
|
84 |
-
msgstr "Altri ruoli predefiniti disponibili per i nuovi utenti registrati:"
|
85 |
-
|
86 |
-
#: ../includes/settings-template.php:151
|
87 |
-
msgid ""
|
88 |
-
"Note for multisite environment: take into account that other default roles "
|
89 |
-
"should exist at the site, in order to be assigned to the new registered "
|
90 |
-
"users."
|
91 |
-
msgstr ""
|
92 |
-
"Nota per l'ambiente multisito: altri ruoli predefiniti devono esistere nel "
|
93 |
-
"sito, per poter essere assegnati ai nuovi utenti registrati."
|
94 |
-
|
95 |
-
#: ../includes/settings-template.php:177
|
96 |
-
msgid "Allow non super administrators to create, edit, and delete users"
|
97 |
-
msgstr ""
|
98 |
-
"Permette ad un utente non amministratore di creare, modificare e cancellare "
|
99 |
-
"utenti."
|
100 |
-
|
101 |
-
#: ../includes/class-user-role-editor.php:234
|
102 |
-
msgid "Change role for users without role"
|
103 |
-
msgstr "Cambia ruolo degli utenti senza nessun ruolo"
|
104 |
-
|
105 |
-
#: ../includes/class-user-role-editor.php:235
|
106 |
-
msgid "No rights"
|
107 |
-
msgstr "Nessun privilegio"
|
108 |
-
|
109 |
-
#: ../includes/class-user-role-editor.php:236
|
110 |
-
msgid "Provide new role"
|
111 |
-
msgstr "Assegna un nuovo ruolo"
|
112 |
-
|
113 |
-
#: ../includes/class-user-role-editor.php:320
|
114 |
-
#: ../includes/class-user-role-editor.php:322
|
115 |
-
msgid "You do not have permission to edit this user."
|
116 |
-
msgstr "Non hai i permessi per modificare questo utente."
|
117 |
-
|
118 |
-
#: ../includes/class-user-role-editor.php:460
|
119 |
-
msgid "Capabilities"
|
120 |
-
msgstr "Privilegi"
|
121 |
-
|
122 |
-
#: ../includes/class-user-role-editor.php:558
|
123 |
-
msgid "Settings"
|
124 |
-
msgstr "Impostazioni"
|
125 |
-
|
126 |
-
#: ../includes/class-user-role-editor.php:569
|
127 |
-
#: ../includes/class-ure-lib.php:2540
|
128 |
-
msgid "Changelog"
|
129 |
-
msgstr "Elenco delle modifiche (changelog)"
|
130 |
-
|
131 |
-
#: ../includes/class-user-role-editor.php:619
|
132 |
-
#: ../includes/class-user-role-editor.php:648
|
133 |
-
#: ../includes/class-user-role-editor.php:1030
|
134 |
-
#: ../includes/class-ure-lib.php:337
|
135 |
-
msgid "User Role Editor"
|
136 |
-
msgstr "User Role Editor"
|
137 |
-
|
138 |
-
#: ../includes/class-user-role-editor.php:708
|
139 |
-
#: ../includes/class-user-role-editor.php:726
|
140 |
-
#: ../includes/class-user-role-editor.php:770
|
141 |
-
msgid "User Role Editor options are updated"
|
142 |
-
msgstr "Le opzioni di User Role Editor sono state aggiornate correttamente."
|
143 |
-
|
144 |
-
#: ../includes/class-user-role-editor.php:754
|
145 |
-
msgid "Default Roles are updated"
|
146 |
-
msgstr "I ruoli predefiniti sono stai aggiornati correttamente."
|
147 |
-
|
148 |
-
#: ../includes/class-user-role-editor.php:779
|
149 |
-
msgid ""
|
150 |
-
"You do not have sufficient permissions to manage options for User Role "
|
151 |
-
"Editor."
|
152 |
-
msgstr ""
|
153 |
-
"Non hai permessi sufficienti per gestire le opzioni di User Role Editor."
|
154 |
-
|
155 |
-
#: ../includes/class-user-role-editor.php:851
|
156 |
-
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
157 |
-
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
158 |
-
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
159 |
-
msgid "Insufficient permissions to work with User Role Editor"
|
160 |
-
msgstr "Permessi non sufficienti per lavorare con User Role Editor."
|
161 |
-
|
162 |
-
#: ../includes/class-user-role-editor.php:977
|
163 |
-
msgid "Select All"
|
164 |
-
msgstr "Seleziona tutti"
|
165 |
-
|
166 |
-
#: ../includes/class-user-role-editor.php:978
|
167 |
-
msgid "Unselect All"
|
168 |
-
msgstr "Deseleziona tutti"
|
169 |
-
|
170 |
-
#: ../includes/class-user-role-editor.php:979
|
171 |
-
msgid "Reverse"
|
172 |
-
msgstr "Revoca"
|
173 |
-
|
174 |
-
#: ../includes/class-user-role-editor.php:980
|
175 |
-
msgid "Update"
|
176 |
-
msgstr "Aggiorna"
|
177 |
-
|
178 |
-
#: ../includes/class-user-role-editor.php:981
|
179 |
-
msgid "Please confirm permissions update"
|
180 |
-
msgstr "Conferma l'aggiornamento dei permessi"
|
181 |
-
|
182 |
-
#: ../includes/class-user-role-editor.php:982
|
183 |
-
msgid "Add New Role"
|
184 |
-
msgstr "Aggiungi un nuovo ruolo"
|
185 |
-
|
186 |
-
#: ../includes/class-user-role-editor.php:983
|
187 |
-
#: ../includes/class-user-role-editor.php:988
|
188 |
-
msgid "Rename Role"
|
189 |
-
msgstr "Rinomina ruolo"
|
190 |
-
|
191 |
-
#: ../includes/class-user-role-editor.php:984
|
192 |
-
msgid " Role name (ID) can not be empty!"
|
193 |
-
msgstr "Nome Ruolo (ID) non può essere vuoto."
|
194 |
-
|
195 |
-
#: ../includes/class-user-role-editor.php:985
|
196 |
-
msgid ""
|
197 |
-
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
198 |
-
"only!"
|
199 |
-
msgstr ""
|
200 |
-
"Il nome Ruolo (ID) deve contenere solo caratteri latini, numeri, trattini o "
|
201 |
-
"underscore."
|
202 |
-
|
203 |
-
#: ../includes/class-user-role-editor.php:986
|
204 |
-
msgid ""
|
205 |
-
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
206 |
-
"it."
|
207 |
-
msgstr ""
|
208 |
-
"Wordpress non supporta il nome Ruolo (ID) nel formaro numerico. Inserisci "
|
209 |
-
"caratteri latini."
|
210 |
-
|
211 |
-
#: ../includes/class-user-role-editor.php:987
|
212 |
-
msgid "Add Role"
|
213 |
-
msgstr "Aggiungi ruolo"
|
214 |
-
|
215 |
-
#: ../includes/class-user-role-editor.php:989
|
216 |
-
msgid "Delete Role"
|
217 |
-
msgstr "Cancella Ruolo"
|
218 |
-
|
219 |
-
#: ../includes/class-user-role-editor.php:990
|
220 |
-
msgid "Cancel"
|
221 |
-
msgstr "Cancella"
|
222 |
-
|
223 |
-
#: ../includes/class-user-role-editor.php:991
|
224 |
-
msgid "Add Capability"
|
225 |
-
msgstr "Aggiungi privilegio"
|
226 |
-
|
227 |
-
#: ../includes/class-user-role-editor.php:992
|
228 |
-
#: ../includes/class-user-role-editor.php:1001
|
229 |
-
msgid "Delete Capability"
|
230 |
-
msgstr "Cancella privilegio"
|
231 |
-
|
232 |
-
#: ../includes/class-user-role-editor.php:993
|
233 |
-
msgid "Reset"
|
234 |
-
msgstr "Reimposta"
|
235 |
-
|
236 |
-
#: ../includes/class-user-role-editor.php:994
|
237 |
-
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
238 |
-
msgstr "ATTENZIONE: Reimposta i privilegi predefiniti dal core di WordPress."
|
239 |
-
|
240 |
-
#: ../includes/class-user-role-editor.php:995
|
241 |
-
msgid ""
|
242 |
-
"If any plugins have changed capabilities in any way upon installation (such "
|
243 |
-
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
244 |
-
msgstr ""
|
245 |
-
"Se qualche plugin ha cambiato i privilegi in qualche modo dopo "
|
246 |
-
"l'installazione (tipo S2Members, WooCommerce, etc...), questi privilegi "
|
247 |
-
"saranno cancellati."
|
248 |
-
|
249 |
-
#: ../includes/class-user-role-editor.php:996
|
250 |
-
msgid ""
|
251 |
-
"For more information on how to undo changes and restore plugin capabilities "
|
252 |
-
"go to"
|
253 |
-
msgstr ""
|
254 |
-
"Per altre informazioni su come tornare indietro con le modifiche e "
|
255 |
-
"ripristinare le funzionalità del plugin vai a"
|
256 |
-
|
257 |
-
#: ../includes/class-user-role-editor.php:998
|
258 |
-
msgid "Continue?"
|
259 |
-
msgstr "Continuare?"
|
260 |
-
|
261 |
-
#: ../includes/class-user-role-editor.php:999
|
262 |
-
msgid "Default Role"
|
263 |
-
msgstr "Ruolo predefinito"
|
264 |
-
|
265 |
-
#: ../includes/class-user-role-editor.php:1000
|
266 |
-
msgid "Set New Default Role"
|
267 |
-
msgstr "Imposta un nuovo ruolo predefinito"
|
268 |
-
|
269 |
-
#: ../includes/class-user-role-editor.php:1002
|
270 |
-
msgid ""
|
271 |
-
"Warning! Be careful - removing critical capability could crash some plugin "
|
272 |
-
"or other custom code"
|
273 |
-
msgstr ""
|
274 |
-
"Attenzione! rimuovendo i privilegi è possibile che malfunzioni il plugin o "
|
275 |
-
"altro codice personalizzato."
|
276 |
-
|
277 |
-
#: ../includes/class-user-role-editor.php:1003
|
278 |
-
msgid " Capability name (ID) can not be empty!"
|
279 |
-
msgstr "Nome privilegio (ID) non può essere vuoto!"
|
280 |
-
|
281 |
-
#: ../includes/class-user-role-editor.php:1004
|
282 |
-
msgid ""
|
283 |
-
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
284 |
-
"underscore only!"
|
285 |
-
msgstr ""
|
286 |
-
"Il nome privilegio (ID) deve contenere solo caratteri latini, numeri, "
|
287 |
-
"trattini o underscore."
|
288 |
-
|
289 |
-
#: ../includes/class-user-role-editor.php:1033
|
290 |
-
#: ../includes/class-user-role-editor.php:1066
|
291 |
-
msgid "Other Roles"
|
292 |
-
msgstr "Altri ruoli"
|
293 |
-
|
294 |
-
#: ../includes/class-user-role-editor.php:1047
|
295 |
-
msgid "Edit"
|
296 |
-
msgstr "Modifica"
|
297 |
-
|
298 |
-
#: ../includes/ure-role-edit.php:17
|
299 |
-
msgid "Select Role and change its capabilities:"
|
300 |
-
msgstr "Seleziona il ruolo e modifica i suoi privilegi:"
|
301 |
-
|
302 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
303 |
-
msgid "Show capabilities in human readable form"
|
304 |
-
msgstr "Mostra i privilegi in forma comprensibile"
|
305 |
-
|
306 |
-
#: ../includes/ure-role-edit.php:44
|
307 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
308 |
-
msgstr "Se selezionato, applica l'azione a tuti i siti di questa rete."
|
309 |
-
|
310 |
-
#: ../includes/ure-role-edit.php:56
|
311 |
-
msgid "Apply to All Sites"
|
312 |
-
msgstr "Applica a tutti i siti"
|
313 |
-
|
314 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
315 |
-
msgid "Core capabilities:"
|
316 |
-
msgstr "Privilegi del core:"
|
317 |
-
|
318 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
319 |
-
msgid "Quick filter:"
|
320 |
-
msgstr "Filtro veloce:"
|
321 |
-
|
322 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
323 |
-
msgid "Custom capabilities:"
|
324 |
-
msgstr "Privilegi personalizzati:"
|
325 |
-
|
326 |
-
#: ../includes/class-ure-lib.php:245
|
327 |
msgid "Error: wrong request"
|
328 |
msgstr "Si è verificato il seguente errore: richiesta errata."
|
329 |
|
330 |
-
#: ../includes/class-ure-lib.php:
|
331 |
msgid "Role name (ID): "
|
332 |
msgstr "Nome Ruolo (ID):"
|
333 |
|
334 |
-
#: ../includes/class-ure-lib.php:
|
335 |
msgid "Display Role Name: "
|
336 |
msgstr "Mostra Nome Ruolo:"
|
337 |
|
338 |
-
#: ../includes/class-ure-lib.php:
|
339 |
msgid "Make copy of: "
|
340 |
msgstr "Fai una copia di:"
|
341 |
|
342 |
-
#: ../includes/class-ure-lib.php:
|
343 |
msgid "Select Role:"
|
344 |
msgstr "Seleziona Ruolo:"
|
345 |
|
346 |
-
#: ../includes/class-ure-lib.php:
|
347 |
msgid "Delete:"
|
348 |
msgstr "Cancella:"
|
349 |
|
350 |
-
#: ../includes/class-ure-lib.php:
|
351 |
msgid "Capability name (ID): "
|
352 |
msgstr "Nome privilegio (ID):"
|
353 |
|
354 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
355 |
msgid "Error: "
|
356 |
msgstr "Si è verificato il seguente errore:"
|
357 |
|
358 |
-
#: ../includes/class-ure-lib.php:
|
359 |
msgid "Role"
|
360 |
msgstr "Ruolo"
|
361 |
|
362 |
-
#: ../includes/class-ure-lib.php:
|
363 |
msgid "does not exist"
|
364 |
msgstr "non esiste"
|
365 |
|
366 |
-
#: ../includes/class-ure-lib.php:
|
367 |
msgid "Role is updated successfully"
|
368 |
msgstr "Ruolo aggiornato correttamente"
|
369 |
|
370 |
-
#: ../includes/class-ure-lib.php:
|
371 |
msgid "Roles are updated for all network"
|
372 |
msgstr "I ruoli sono stati aggiornati per tutta la rete."
|
373 |
|
374 |
-
#: ../includes/class-ure-lib.php:
|
375 |
msgid "Error occured during role(s) update"
|
376 |
msgstr "Errore durante l'aggiornamento del ruolo o dei ruoli."
|
377 |
|
378 |
-
#: ../includes/class-ure-lib.php:
|
379 |
msgid "User capabilities are updated successfully"
|
380 |
msgstr "Privilegi utenti aggiornati correttamente."
|
381 |
|
382 |
-
#: ../includes/class-ure-lib.php:
|
383 |
msgid "Error occured during user update"
|
384 |
msgstr "Errore di aggiornamento dell'utente."
|
385 |
|
386 |
-
#: ../includes/class-ure-lib.php:
|
387 |
msgid "User Roles are restored to WordPress default values. "
|
388 |
msgstr ""
|
389 |
"I ruolo utente sono stati ripristinati ai valori predefiniti di WordPress."
|
390 |
|
391 |
-
#: ../includes/class-ure-lib.php:
|
392 |
msgid "read about"
|
393 |
msgstr "leggi su"
|
394 |
|
395 |
-
#: ../includes/class-ure-lib.php:
|
396 |
msgid "user capability"
|
397 |
msgstr "privilegi utente"
|
398 |
|
399 |
-
#: ../includes/class-ure-lib.php:
|
400 |
msgid "Help"
|
401 |
msgstr "Guida"
|
402 |
|
403 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
404 |
msgid "Error is occur. Please check the log file."
|
405 |
msgstr "Si è verificato un errore. Controllare file di log."
|
406 |
|
407 |
-
#: ../includes/class-ure-lib.php:
|
408 |
msgid ""
|
409 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
410 |
"only!"
|
@@ -412,7 +119,7 @@ msgstr ""
|
|
412 |
"Si è verificato il seguente errore: l'ID ruolo deve contenere solo caratteri "
|
413 |
"latini, numeri, trattini o uderscore."
|
414 |
|
415 |
-
#: ../includes/class-ure-lib.php:
|
416 |
msgid ""
|
417 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
418 |
"characters to it."
|
@@ -420,406 +127,463 @@ msgstr ""
|
|
420 |
"Si è verificato il seguente errore: WordPress non supporta il nome ruolo "
|
421 |
"(ID) nel formato numerico. Aggiungere caratteri latini."
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
#, php-format
|
425 |
msgid "Role %s exists already"
|
426 |
msgstr "Il ruolo %s esiste già."
|
427 |
|
428 |
-
#: ../includes/class-ure-lib.php:
|
429 |
msgid "Error is encountered during new role create operation"
|
430 |
msgstr "Errore durante la creazione del nuovo ruolo."
|
431 |
|
432 |
-
#: ../includes/class-ure-lib.php:
|
433 |
#, php-format
|
434 |
msgid "Role %s is created successfully"
|
435 |
msgstr "Ruolo %s creato correttamente."
|
436 |
|
437 |
-
#: ../includes/class-ure-lib.php:
|
438 |
msgid "Error: Role ID is empty!"
|
439 |
msgstr "Si è verificato il seguente errore: l'ID ruolo è vuoto."
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
msgid "Error: Empty role display name is not allowed."
|
443 |
msgstr ""
|
444 |
"Si è verificato il seguente errore: non è ammesso che il nome del ruolo "
|
445 |
"visualizzato sia vuoto."
|
446 |
|
447 |
-
#: ../includes/class-ure-lib.php:
|
448 |
#, php-format
|
449 |
msgid "Role %s does not exists"
|
450 |
msgstr "Il ruolo %s non esiste."
|
451 |
|
452 |
-
#: ../includes/class-ure-lib.php:
|
453 |
#, php-format
|
454 |
msgid "Role %s is renamed to %s successfully"
|
455 |
msgstr "Ruolo %s rinominato in %s correttamente."
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
msgid "Error encountered during role delete operation"
|
459 |
msgstr "Errore durante la cancellazione del ruolo."
|
460 |
|
461 |
-
#: ../includes/class-ure-lib.php:
|
462 |
msgid "Unused roles are deleted successfully"
|
463 |
msgstr "I Ruoli inutilizzati sono stati cancellati."
|
464 |
|
465 |
-
#: ../includes/class-ure-lib.php:
|
466 |
#, php-format
|
467 |
msgid "Role %s is deleted successfully"
|
468 |
msgstr "Ruolo %s cancellato correttamente."
|
469 |
|
470 |
-
#: ../includes/class-ure-lib.php:
|
471 |
msgid "Error encountered during default role change operation"
|
472 |
msgstr "Errore durante la modifica del ruolo predefinito."
|
473 |
|
474 |
-
#: ../includes/class-ure-lib.php:
|
475 |
#, php-format
|
476 |
msgid "Default role for new users is set to %s successfully"
|
477 |
msgstr ""
|
478 |
"Il ruolo predefinito per i nuovi utenti è stato cambiato a %s correttamente."
|
479 |
|
480 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
481 |
msgid "Editor"
|
482 |
msgstr "Editore"
|
483 |
|
484 |
-
#: ../includes/class-ure-lib.php:
|
485 |
msgid "Author"
|
486 |
msgstr "Autore"
|
487 |
|
488 |
-
#: ../includes/class-ure-lib.php:
|
489 |
msgid "Contributor"
|
490 |
msgstr "Collaboratore"
|
491 |
|
492 |
-
#: ../includes/class-ure-lib.php:
|
493 |
msgid "Subscriber"
|
494 |
msgstr "Sottoscrittore"
|
495 |
|
496 |
-
#: ../includes/class-ure-lib.php:
|
497 |
msgid "Switch themes"
|
498 |
msgstr "Cambia temi"
|
499 |
|
500 |
-
#: ../includes/class-ure-lib.php:
|
501 |
msgid "Edit themes"
|
502 |
msgstr "Modifica temi"
|
503 |
|
504 |
-
#: ../includes/class-ure-lib.php:
|
505 |
msgid "Activate plugins"
|
506 |
msgstr "Attiva plugins"
|
507 |
|
508 |
-
#: ../includes/class-ure-lib.php:
|
509 |
msgid "Edit plugins"
|
510 |
msgstr "Modifica plugins"
|
511 |
|
512 |
-
#: ../includes/class-ure-lib.php:
|
513 |
msgid "Edit users"
|
514 |
msgstr "Modifica utenti"
|
515 |
|
516 |
-
#: ../includes/class-ure-lib.php:
|
517 |
msgid "Edit files"
|
518 |
msgstr "Modifica files"
|
519 |
|
520 |
-
#: ../includes/class-ure-lib.php:
|
521 |
msgid "Manage options"
|
522 |
msgstr "Gestisci opzioni"
|
523 |
|
524 |
-
#: ../includes/class-ure-lib.php:
|
525 |
msgid "Moderate comments"
|
526 |
msgstr "Modera commenti"
|
527 |
|
528 |
-
#: ../includes/class-ure-lib.php:
|
529 |
msgid "Manage categories"
|
530 |
msgstr "Gestisci categorie"
|
531 |
|
532 |
-
#: ../includes/class-ure-lib.php:
|
533 |
msgid "Manage links"
|
534 |
msgstr "Gestisci links"
|
535 |
|
536 |
-
#: ../includes/class-ure-lib.php:
|
537 |
msgid "Upload files"
|
538 |
msgstr "Carica files"
|
539 |
|
540 |
-
#: ../includes/class-ure-lib.php:
|
541 |
msgid "Import"
|
542 |
msgstr "Importa"
|
543 |
|
544 |
-
#: ../includes/class-ure-lib.php:
|
545 |
msgid "Unfiltered html"
|
546 |
msgstr "Html non filtrato"
|
547 |
|
548 |
-
#: ../includes/class-ure-lib.php:
|
549 |
msgid "Edit posts"
|
550 |
msgstr "Modifica articoli"
|
551 |
|
552 |
-
#: ../includes/class-ure-lib.php:
|
553 |
msgid "Edit others posts"
|
554 |
msgstr "Modifica altri articoli"
|
555 |
|
556 |
-
#: ../includes/class-ure-lib.php:
|
557 |
msgid "Edit published posts"
|
558 |
msgstr "Modifica articoli pubblicati"
|
559 |
|
560 |
-
#: ../includes/class-ure-lib.php:
|
561 |
msgid "Publish posts"
|
562 |
msgstr "Pubblica articoli"
|
563 |
|
564 |
-
#: ../includes/class-ure-lib.php:
|
565 |
msgid "Edit pages"
|
566 |
msgstr "Modifica pagine"
|
567 |
|
568 |
-
#: ../includes/class-ure-lib.php:
|
569 |
msgid "Read"
|
570 |
msgstr "Leggi"
|
571 |
|
572 |
-
#: ../includes/class-ure-lib.php:
|
573 |
msgid "Level 10"
|
574 |
msgstr "Livello 10"
|
575 |
|
576 |
-
#: ../includes/class-ure-lib.php:
|
577 |
msgid "Level 9"
|
578 |
msgstr "Livello 9"
|
579 |
|
580 |
-
#: ../includes/class-ure-lib.php:
|
581 |
msgid "Level 8"
|
582 |
msgstr "Livello 8"
|
583 |
|
584 |
-
#: ../includes/class-ure-lib.php:
|
585 |
msgid "Level 7"
|
586 |
msgstr "Livello 7"
|
587 |
|
588 |
-
#: ../includes/class-ure-lib.php:
|
589 |
msgid "Level 6"
|
590 |
msgstr "Livello 6"
|
591 |
|
592 |
-
#: ../includes/class-ure-lib.php:
|
593 |
msgid "Level 5"
|
594 |
msgstr "Livello 5"
|
595 |
|
596 |
-
#: ../includes/class-ure-lib.php:
|
597 |
msgid "Level 4"
|
598 |
msgstr "Livello 4"
|
599 |
|
600 |
-
#: ../includes/class-ure-lib.php:
|
601 |
msgid "Level 3"
|
602 |
msgstr "Livello 3"
|
603 |
|
604 |
-
#: ../includes/class-ure-lib.php:
|
605 |
msgid "Level 2"
|
606 |
msgstr "Livello 2"
|
607 |
|
608 |
-
#: ../includes/class-ure-lib.php:
|
609 |
msgid "Level 1"
|
610 |
msgstr "Livello 1"
|
611 |
|
612 |
-
#: ../includes/class-ure-lib.php:
|
613 |
msgid "Level 0"
|
614 |
msgstr "Livello 0"
|
615 |
|
616 |
-
#: ../includes/class-ure-lib.php:
|
617 |
msgid "Edit others pages"
|
618 |
msgstr "Modifica altre pagine"
|
619 |
|
620 |
-
#: ../includes/class-ure-lib.php:
|
621 |
msgid "Edit published pages"
|
622 |
msgstr "Modifica pagine pubblicate"
|
623 |
|
624 |
-
#: ../includes/class-ure-lib.php:
|
625 |
msgid "Publish pages"
|
626 |
msgstr "Pubblica pagine"
|
627 |
|
628 |
-
#: ../includes/class-ure-lib.php:
|
629 |
msgid "Delete pages"
|
630 |
msgstr "Cancella pagine"
|
631 |
|
632 |
-
#: ../includes/class-ure-lib.php:
|
633 |
msgid "Delete others pages"
|
634 |
msgstr "Cancella altre pagine"
|
635 |
|
636 |
-
#: ../includes/class-ure-lib.php:
|
637 |
msgid "Delete published pages"
|
638 |
msgstr "Cancella pagine pubblicate"
|
639 |
|
640 |
-
#: ../includes/class-ure-lib.php:
|
641 |
msgid "Delete posts"
|
642 |
msgstr "Cancella articoli"
|
643 |
|
644 |
-
#: ../includes/class-ure-lib.php:
|
645 |
msgid "Delete others posts"
|
646 |
msgstr "Cancella altri articoli"
|
647 |
|
648 |
-
#: ../includes/class-ure-lib.php:
|
649 |
msgid "Delete published posts"
|
650 |
msgstr "Cancella articoli pubblicati"
|
651 |
|
652 |
-
#: ../includes/class-ure-lib.php:
|
653 |
msgid "Delete private posts"
|
654 |
msgstr "Cancella articoli privati"
|
655 |
|
656 |
-
#: ../includes/class-ure-lib.php:
|
657 |
msgid "Edit private posts"
|
658 |
msgstr "Modifica articoli privati"
|
659 |
|
660 |
-
#: ../includes/class-ure-lib.php:
|
661 |
msgid "Read private posts"
|
662 |
msgstr "Leggi articoli privati"
|
663 |
|
664 |
-
#: ../includes/class-ure-lib.php:
|
665 |
msgid "Delete private pages"
|
666 |
msgstr "Cancella pagine private"
|
667 |
|
668 |
-
#: ../includes/class-ure-lib.php:
|
669 |
msgid "Edit private pages"
|
670 |
msgstr "Modifica pagine private"
|
671 |
|
672 |
-
#: ../includes/class-ure-lib.php:
|
673 |
msgid "Read private pages"
|
674 |
msgstr "Legge pagine private"
|
675 |
|
676 |
-
#: ../includes/class-ure-lib.php:
|
677 |
msgid "Delete users"
|
678 |
msgstr "Cancella utenti"
|
679 |
|
680 |
-
#: ../includes/class-ure-lib.php:
|
681 |
msgid "Create users"
|
682 |
msgstr "Crea utenti"
|
683 |
|
684 |
-
#: ../includes/class-ure-lib.php:
|
685 |
msgid "Unfiltered upload"
|
686 |
msgstr "Uploads non filtrati"
|
687 |
|
688 |
-
#: ../includes/class-ure-lib.php:
|
689 |
msgid "Edit dashboard"
|
690 |
msgstr "Modifica dashboard"
|
691 |
|
692 |
-
#: ../includes/class-ure-lib.php:
|
693 |
msgid "Update plugins"
|
694 |
msgstr "Aggiorna plugins"
|
695 |
|
696 |
-
#: ../includes/class-ure-lib.php:
|
697 |
msgid "Delete plugins"
|
698 |
msgstr "Cancella plugins"
|
699 |
|
700 |
-
#: ../includes/class-ure-lib.php:
|
701 |
msgid "Install plugins"
|
702 |
msgstr "Installa plugins"
|
703 |
|
704 |
-
#: ../includes/class-ure-lib.php:
|
705 |
msgid "Update themes"
|
706 |
msgstr "Aggiorna temi"
|
707 |
|
708 |
-
#: ../includes/class-ure-lib.php:
|
709 |
msgid "Install themes"
|
710 |
msgstr "Installa temi"
|
711 |
|
712 |
-
#: ../includes/class-ure-lib.php:
|
713 |
msgid "Update core"
|
714 |
msgstr "Aggiorna core"
|
715 |
|
716 |
-
#: ../includes/class-ure-lib.php:
|
717 |
msgid "List users"
|
718 |
msgstr "Lista utenti"
|
719 |
|
720 |
-
#: ../includes/class-ure-lib.php:
|
721 |
msgid "Remove users"
|
722 |
msgstr "Rimuovi utenti"
|
723 |
|
724 |
-
#: ../includes/class-ure-lib.php:
|
725 |
msgid "Add users"
|
726 |
msgstr "Aggiungi utenti"
|
727 |
|
728 |
-
#: ../includes/class-ure-lib.php:
|
729 |
msgid "Promote users"
|
730 |
msgstr "Promuovi utenti"
|
731 |
|
732 |
-
#: ../includes/class-ure-lib.php:
|
733 |
msgid "Edit theme options"
|
734 |
msgstr "Modifica opzioni tema"
|
735 |
|
736 |
-
#: ../includes/class-ure-lib.php:
|
737 |
msgid "Delete themes"
|
738 |
msgstr "Cancella temi"
|
739 |
|
740 |
-
#: ../includes/class-ure-lib.php:
|
741 |
msgid "Export"
|
742 |
msgstr "Esporta"
|
743 |
|
744 |
-
#: ../includes/class-ure-lib.php:
|
745 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
746 |
msgstr ""
|
747 |
"Si è verificato il seguente errore: il nome del privilegio deve contenere "
|
748 |
"solo caratteri latini o numeri."
|
749 |
|
750 |
-
#: ../includes/class-ure-lib.php:
|
751 |
#, php-format
|
752 |
msgid "Capability %s is added successfully"
|
753 |
msgstr "Privilegio %s aggiunto correttamente."
|
754 |
|
755 |
-
#: ../includes/class-ure-lib.php:
|
756 |
#, php-format
|
757 |
msgid "Capability %s exists already"
|
758 |
msgstr "Privilegio %s già esistente."
|
759 |
|
760 |
-
#: ../includes/class-ure-lib.php:
|
761 |
#, php-format
|
762 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
763 |
msgstr ""
|
764 |
"Si è verificato il seguente errore: non hai permessi per cancellare il "
|
765 |
"privilegio %s."
|
766 |
|
767 |
-
#: ../includes/class-ure-lib.php:
|
768 |
-
#, php-format
|
769 |
-
msgid "Capability %s
|
770 |
msgstr "Privilegio %s rimosso correttamente."
|
771 |
|
772 |
-
#: ../includes/class-ure-lib.php:
|
773 |
msgid "Version:"
|
774 |
msgstr "Versione:"
|
775 |
|
776 |
-
#: ../includes/class-ure-lib.php:
|
777 |
msgid "Author's website"
|
778 |
msgstr "Sito web dell'autore"
|
779 |
|
780 |
-
#: ../includes/class-ure-lib.php:
|
781 |
msgid "Plugin webpage"
|
782 |
msgstr "Pagina web del plugin"
|
783 |
|
784 |
-
#: ../includes/class-ure-lib.php:
|
785 |
msgid "Plugin download"
|
786 |
msgstr "Scarica il plugin"
|
787 |
|
788 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
789 |
msgid "FAQ"
|
790 |
msgstr "Domande e risposte frequenti (FAQ)"
|
791 |
|
792 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
793 |
msgid "None"
|
794 |
msgstr "Nessuno"
|
795 |
|
796 |
-
#: ../includes/class-ure-lib.php:
|
797 |
-
msgid "
|
798 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
799 |
|
800 |
-
#: ../includes/
|
801 |
-
msgid "
|
802 |
-
msgstr "
|
803 |
|
804 |
-
#: ../includes/
|
805 |
-
|
806 |
-
|
|
|
|
|
807 |
|
808 |
-
#: ../includes/
|
809 |
-
msgid "
|
810 |
-
msgstr "
|
811 |
|
812 |
-
#: ../includes/
|
813 |
-
|
814 |
-
|
|
|
815 |
|
816 |
-
#: ../includes/
|
817 |
-
msgid "
|
818 |
-
msgstr "
|
819 |
|
820 |
-
#: ../includes/
|
821 |
-
|
822 |
-
|
|
|
823 |
|
824 |
#: ../includes/class-ure-screen-help.php:12
|
825 |
#: ../includes/class-ure-screen-help.php:41
|
@@ -828,6 +592,11 @@ msgstr "Altri Ruoli:"
|
|
828 |
msgid "User Role Editor Options page help"
|
829 |
msgstr "Guida sulla pagina opzioni User Role Editor"
|
830 |
|
|
|
|
|
|
|
|
|
|
|
831 |
#: ../includes/class-ure-screen-help.php:16
|
832 |
msgid ""
|
833 |
"turn this option on in order to make the \"Administrator\" role available at "
|
@@ -838,6 +607,11 @@ msgstr ""
|
|
838 |
"disponibile nel menù a tendina di User Role Editor. Per impostazione "
|
839 |
"predefinita è nascosto, per ragioni di sicurezza."
|
840 |
|
|
|
|
|
|
|
|
|
|
|
841 |
#: ../includes/class-ure-screen-help.php:19
|
842 |
msgid ""
|
843 |
"automatically converts capability names from the technical form for internal "
|
@@ -860,6 +634,11 @@ msgstr ""
|
|
860 |
"con i vecchi temi e plugin. Selezionando questa opzione, questi privilegi "
|
861 |
"saranno comunque visualizzati."
|
862 |
|
|
|
|
|
|
|
|
|
|
|
863 |
#: ../includes/class-ure-screen-help.php:26
|
864 |
msgid ""
|
865 |
"If turned off - capabilities section of selected user is shown in readonly "
|
@@ -870,6 +649,11 @@ msgstr ""
|
|
870 |
"sarà visualizzata in sola lettura. L'amministratore non potrà assegnare "
|
871 |
"privilegi direttamente all'utente. Dovrebbe farlo utilizzando solo i ruoli."
|
872 |
|
|
|
|
|
|
|
|
|
|
|
873 |
#: ../includes/class-ure-screen-help.php:46
|
874 |
msgid ""
|
875 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
@@ -912,3 +696,244 @@ msgstr ""
|
|
912 |
"Per impostazione predefinita solo il super amministratore può creare, "
|
913 |
"modificare e cancellare gli utenti in ambiente multisito di WordPress . "
|
914 |
"Selezionare questa opzione per rimuovere questa limitazione."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 4.18.3\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-11 21:06+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
"Language-Team: L.E.O.X. <leoxleox73@gmail.com>\n"
|
9 |
"Language: it_IT\n"
|
10 |
"MIME-Version: 1.0\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: ..\n"
|
19 |
|
20 |
+
#: ../includes/class-ure-lib.php:247
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
msgid "Error: wrong request"
|
22 |
msgstr "Si è verificato il seguente errore: richiesta errata."
|
23 |
|
24 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
25 |
msgid "Role name (ID): "
|
26 |
msgstr "Nome Ruolo (ID):"
|
27 |
|
28 |
+
#: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
|
29 |
msgid "Display Role Name: "
|
30 |
msgstr "Mostra Nome Ruolo:"
|
31 |
|
32 |
+
#: ../includes/class-ure-lib.php:284
|
33 |
msgid "Make copy of: "
|
34 |
msgstr "Fai una copia di:"
|
35 |
|
36 |
+
#: ../includes/class-ure-lib.php:300
|
37 |
msgid "Select Role:"
|
38 |
msgstr "Seleziona Ruolo:"
|
39 |
|
40 |
+
#: ../includes/class-ure-lib.php:315
|
41 |
msgid "Delete:"
|
42 |
msgstr "Cancella:"
|
43 |
|
44 |
+
#: ../includes/class-ure-lib.php:322
|
45 |
msgid "Capability name (ID): "
|
46 |
msgstr "Nome privilegio (ID):"
|
47 |
|
48 |
+
#: ../includes/class-ure-lib.php:339
|
49 |
+
#: ../includes/class-user-role-editor.php:596
|
50 |
+
#: ../includes/class-user-role-editor.php:625
|
51 |
+
msgid "User Role Editor"
|
52 |
+
msgstr "User Role Editor"
|
53 |
+
|
54 |
+
#: ../includes/class-ure-lib.php:436
|
55 |
msgid "Error: "
|
56 |
msgstr "Si è verificato il seguente errore:"
|
57 |
|
58 |
+
#: ../includes/class-ure-lib.php:436
|
59 |
msgid "Role"
|
60 |
msgstr "Ruolo"
|
61 |
|
62 |
+
#: ../includes/class-ure-lib.php:437
|
63 |
msgid "does not exist"
|
64 |
msgstr "non esiste"
|
65 |
|
66 |
+
#: ../includes/class-ure-lib.php:480
|
67 |
msgid "Role is updated successfully"
|
68 |
msgstr "Ruolo aggiornato correttamente"
|
69 |
|
70 |
+
#: ../includes/class-ure-lib.php:482
|
71 |
msgid "Roles are updated for all network"
|
72 |
msgstr "I ruoli sono stati aggiornati per tutta la rete."
|
73 |
|
74 |
+
#: ../includes/class-ure-lib.php:488
|
75 |
msgid "Error occured during role(s) update"
|
76 |
msgstr "Errore durante l'aggiornamento del ruolo o dei ruoli."
|
77 |
|
78 |
+
#: ../includes/class-ure-lib.php:495
|
79 |
msgid "User capabilities are updated successfully"
|
80 |
msgstr "Privilegi utenti aggiornati correttamente."
|
81 |
|
82 |
+
#: ../includes/class-ure-lib.php:500
|
83 |
msgid "Error occured during user update"
|
84 |
msgstr "Errore di aggiornamento dell'utente."
|
85 |
|
86 |
+
#: ../includes/class-ure-lib.php:558
|
87 |
msgid "User Roles are restored to WordPress default values. "
|
88 |
msgstr ""
|
89 |
"I ruolo utente sono stati ripristinati ai valori predefiniti di WordPress."
|
90 |
|
91 |
+
#: ../includes/class-ure-lib.php:1436
|
92 |
msgid "read about"
|
93 |
msgstr "leggi su"
|
94 |
|
95 |
+
#: ../includes/class-ure-lib.php:1437
|
96 |
msgid "user capability"
|
97 |
msgstr "privilegi utente"
|
98 |
|
99 |
+
#: ../includes/class-ure-lib.php:1438
|
100 |
msgid "Help"
|
101 |
msgstr "Guida"
|
102 |
|
103 |
+
#: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
|
104 |
+
#: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
|
105 |
+
#: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
|
106 |
+
#: ../includes/class-user-role-editor.php:828
|
107 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
108 |
+
msgstr "Permessi non sufficienti per lavorare con User Role Editor."
|
109 |
+
|
110 |
+
#: ../includes/class-ure-lib.php:1909
|
111 |
msgid "Error is occur. Please check the log file."
|
112 |
msgstr "Si è verificato un errore. Controllare file di log."
|
113 |
|
114 |
+
#: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
|
115 |
msgid ""
|
116 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
117 |
"only!"
|
119 |
"Si è verificato il seguente errore: l'ID ruolo deve contenere solo caratteri "
|
120 |
"latini, numeri, trattini o uderscore."
|
121 |
|
122 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
123 |
msgid ""
|
124 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
125 |
"characters to it."
|
127 |
"Si è verificato il seguente errore: WordPress non supporta il nome ruolo "
|
128 |
"(ID) nel formato numerico. Aggiungere caratteri latini."
|
129 |
|
130 |
+
#: ../includes/class-ure-lib.php:1974
|
131 |
#, php-format
|
132 |
msgid "Role %s exists already"
|
133 |
msgstr "Il ruolo %s esiste già."
|
134 |
|
135 |
+
#: ../includes/class-ure-lib.php:1989
|
136 |
msgid "Error is encountered during new role create operation"
|
137 |
msgstr "Errore durante la creazione del nuovo ruolo."
|
138 |
|
139 |
+
#: ../includes/class-ure-lib.php:1991
|
140 |
#, php-format
|
141 |
msgid "Role %s is created successfully"
|
142 |
msgstr "Ruolo %s creato correttamente."
|
143 |
|
144 |
+
#: ../includes/class-ure-lib.php:2015
|
145 |
msgid "Error: Role ID is empty!"
|
146 |
msgstr "Si è verificato il seguente errore: l'ID ruolo è vuoto."
|
147 |
|
148 |
+
#: ../includes/class-ure-lib.php:2033
|
149 |
msgid "Error: Empty role display name is not allowed."
|
150 |
msgstr ""
|
151 |
"Si è verificato il seguente errore: non è ammesso che il nome del ruolo "
|
152 |
"visualizzato sia vuoto."
|
153 |
|
154 |
+
#: ../includes/class-ure-lib.php:2040
|
155 |
#, php-format
|
156 |
msgid "Role %s does not exists"
|
157 |
msgstr "Il ruolo %s non esiste."
|
158 |
|
159 |
+
#: ../includes/class-ure-lib.php:2048
|
160 |
#, php-format
|
161 |
msgid "Role %s is renamed to %s successfully"
|
162 |
msgstr "Ruolo %s rinominato in %s correttamente."
|
163 |
|
164 |
+
#: ../includes/class-ure-lib.php:2121
|
165 |
msgid "Error encountered during role delete operation"
|
166 |
msgstr "Errore durante la cancellazione del ruolo."
|
167 |
|
168 |
+
#: ../includes/class-ure-lib.php:2123
|
169 |
msgid "Unused roles are deleted successfully"
|
170 |
msgstr "I Ruoli inutilizzati sono stati cancellati."
|
171 |
|
172 |
+
#: ../includes/class-ure-lib.php:2125
|
173 |
#, php-format
|
174 |
msgid "Role %s is deleted successfully"
|
175 |
msgstr "Ruolo %s cancellato correttamente."
|
176 |
|
177 |
+
#: ../includes/class-ure-lib.php:2153
|
178 |
msgid "Error encountered during default role change operation"
|
179 |
msgstr "Errore durante la modifica del ruolo predefinito."
|
180 |
|
181 |
+
#: ../includes/class-ure-lib.php:2156
|
182 |
#, php-format
|
183 |
msgid "Default role for new users is set to %s successfully"
|
184 |
msgstr ""
|
185 |
"Il ruolo predefinito per i nuovi utenti è stato cambiato a %s correttamente."
|
186 |
|
187 |
+
#: ../includes/class-ure-lib.php:2159
|
188 |
+
#, fuzzy
|
189 |
+
msgid "Can not set Administrator role as a default one"
|
190 |
+
msgstr "Mostra il ruolo di amministratore in User Role Editor"
|
191 |
+
|
192 |
+
#: ../includes/class-ure-lib.php:2161
|
193 |
+
#, fuzzy
|
194 |
+
msgid "This role does not exist - "
|
195 |
+
msgstr "Il ruolo %s non esiste."
|
196 |
+
|
197 |
+
#: ../includes/class-ure-lib.php:2177
|
198 |
msgid "Editor"
|
199 |
msgstr "Editore"
|
200 |
|
201 |
+
#: ../includes/class-ure-lib.php:2178
|
202 |
msgid "Author"
|
203 |
msgstr "Autore"
|
204 |
|
205 |
+
#: ../includes/class-ure-lib.php:2179
|
206 |
msgid "Contributor"
|
207 |
msgstr "Collaboratore"
|
208 |
|
209 |
+
#: ../includes/class-ure-lib.php:2180
|
210 |
msgid "Subscriber"
|
211 |
msgstr "Sottoscrittore"
|
212 |
|
213 |
+
#: ../includes/class-ure-lib.php:2182
|
214 |
msgid "Switch themes"
|
215 |
msgstr "Cambia temi"
|
216 |
|
217 |
+
#: ../includes/class-ure-lib.php:2183
|
218 |
msgid "Edit themes"
|
219 |
msgstr "Modifica temi"
|
220 |
|
221 |
+
#: ../includes/class-ure-lib.php:2184
|
222 |
msgid "Activate plugins"
|
223 |
msgstr "Attiva plugins"
|
224 |
|
225 |
+
#: ../includes/class-ure-lib.php:2185
|
226 |
msgid "Edit plugins"
|
227 |
msgstr "Modifica plugins"
|
228 |
|
229 |
+
#: ../includes/class-ure-lib.php:2186
|
230 |
msgid "Edit users"
|
231 |
msgstr "Modifica utenti"
|
232 |
|
233 |
+
#: ../includes/class-ure-lib.php:2187
|
234 |
msgid "Edit files"
|
235 |
msgstr "Modifica files"
|
236 |
|
237 |
+
#: ../includes/class-ure-lib.php:2188
|
238 |
msgid "Manage options"
|
239 |
msgstr "Gestisci opzioni"
|
240 |
|
241 |
+
#: ../includes/class-ure-lib.php:2189
|
242 |
msgid "Moderate comments"
|
243 |
msgstr "Modera commenti"
|
244 |
|
245 |
+
#: ../includes/class-ure-lib.php:2190
|
246 |
msgid "Manage categories"
|
247 |
msgstr "Gestisci categorie"
|
248 |
|
249 |
+
#: ../includes/class-ure-lib.php:2191
|
250 |
msgid "Manage links"
|
251 |
msgstr "Gestisci links"
|
252 |
|
253 |
+
#: ../includes/class-ure-lib.php:2192
|
254 |
msgid "Upload files"
|
255 |
msgstr "Carica files"
|
256 |
|
257 |
+
#: ../includes/class-ure-lib.php:2193
|
258 |
msgid "Import"
|
259 |
msgstr "Importa"
|
260 |
|
261 |
+
#: ../includes/class-ure-lib.php:2194
|
262 |
msgid "Unfiltered html"
|
263 |
msgstr "Html non filtrato"
|
264 |
|
265 |
+
#: ../includes/class-ure-lib.php:2195
|
266 |
msgid "Edit posts"
|
267 |
msgstr "Modifica articoli"
|
268 |
|
269 |
+
#: ../includes/class-ure-lib.php:2196
|
270 |
msgid "Edit others posts"
|
271 |
msgstr "Modifica altri articoli"
|
272 |
|
273 |
+
#: ../includes/class-ure-lib.php:2197
|
274 |
msgid "Edit published posts"
|
275 |
msgstr "Modifica articoli pubblicati"
|
276 |
|
277 |
+
#: ../includes/class-ure-lib.php:2198
|
278 |
msgid "Publish posts"
|
279 |
msgstr "Pubblica articoli"
|
280 |
|
281 |
+
#: ../includes/class-ure-lib.php:2199
|
282 |
msgid "Edit pages"
|
283 |
msgstr "Modifica pagine"
|
284 |
|
285 |
+
#: ../includes/class-ure-lib.php:2200
|
286 |
msgid "Read"
|
287 |
msgstr "Leggi"
|
288 |
|
289 |
+
#: ../includes/class-ure-lib.php:2201
|
290 |
msgid "Level 10"
|
291 |
msgstr "Livello 10"
|
292 |
|
293 |
+
#: ../includes/class-ure-lib.php:2202
|
294 |
msgid "Level 9"
|
295 |
msgstr "Livello 9"
|
296 |
|
297 |
+
#: ../includes/class-ure-lib.php:2203
|
298 |
msgid "Level 8"
|
299 |
msgstr "Livello 8"
|
300 |
|
301 |
+
#: ../includes/class-ure-lib.php:2204
|
302 |
msgid "Level 7"
|
303 |
msgstr "Livello 7"
|
304 |
|
305 |
+
#: ../includes/class-ure-lib.php:2205
|
306 |
msgid "Level 6"
|
307 |
msgstr "Livello 6"
|
308 |
|
309 |
+
#: ../includes/class-ure-lib.php:2206
|
310 |
msgid "Level 5"
|
311 |
msgstr "Livello 5"
|
312 |
|
313 |
+
#: ../includes/class-ure-lib.php:2207
|
314 |
msgid "Level 4"
|
315 |
msgstr "Livello 4"
|
316 |
|
317 |
+
#: ../includes/class-ure-lib.php:2208
|
318 |
msgid "Level 3"
|
319 |
msgstr "Livello 3"
|
320 |
|
321 |
+
#: ../includes/class-ure-lib.php:2209
|
322 |
msgid "Level 2"
|
323 |
msgstr "Livello 2"
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:2210
|
326 |
msgid "Level 1"
|
327 |
msgstr "Livello 1"
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:2211
|
330 |
msgid "Level 0"
|
331 |
msgstr "Livello 0"
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:2212
|
334 |
msgid "Edit others pages"
|
335 |
msgstr "Modifica altre pagine"
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:2213
|
338 |
msgid "Edit published pages"
|
339 |
msgstr "Modifica pagine pubblicate"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:2214
|
342 |
msgid "Publish pages"
|
343 |
msgstr "Pubblica pagine"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:2215
|
346 |
msgid "Delete pages"
|
347 |
msgstr "Cancella pagine"
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:2216
|
350 |
msgid "Delete others pages"
|
351 |
msgstr "Cancella altre pagine"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:2217
|
354 |
msgid "Delete published pages"
|
355 |
msgstr "Cancella pagine pubblicate"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:2218
|
358 |
msgid "Delete posts"
|
359 |
msgstr "Cancella articoli"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:2219
|
362 |
msgid "Delete others posts"
|
363 |
msgstr "Cancella altri articoli"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:2220
|
366 |
msgid "Delete published posts"
|
367 |
msgstr "Cancella articoli pubblicati"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:2221
|
370 |
msgid "Delete private posts"
|
371 |
msgstr "Cancella articoli privati"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:2222
|
374 |
msgid "Edit private posts"
|
375 |
msgstr "Modifica articoli privati"
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:2223
|
378 |
msgid "Read private posts"
|
379 |
msgstr "Leggi articoli privati"
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:2224
|
382 |
msgid "Delete private pages"
|
383 |
msgstr "Cancella pagine private"
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:2225
|
386 |
msgid "Edit private pages"
|
387 |
msgstr "Modifica pagine private"
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:2226
|
390 |
msgid "Read private pages"
|
391 |
msgstr "Legge pagine private"
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:2227
|
394 |
msgid "Delete users"
|
395 |
msgstr "Cancella utenti"
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:2228
|
398 |
msgid "Create users"
|
399 |
msgstr "Crea utenti"
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:2229
|
402 |
msgid "Unfiltered upload"
|
403 |
msgstr "Uploads non filtrati"
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:2230
|
406 |
msgid "Edit dashboard"
|
407 |
msgstr "Modifica dashboard"
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:2231
|
410 |
msgid "Update plugins"
|
411 |
msgstr "Aggiorna plugins"
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:2232
|
414 |
msgid "Delete plugins"
|
415 |
msgstr "Cancella plugins"
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:2233
|
418 |
msgid "Install plugins"
|
419 |
msgstr "Installa plugins"
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:2234
|
422 |
msgid "Update themes"
|
423 |
msgstr "Aggiorna temi"
|
424 |
|
425 |
+
#: ../includes/class-ure-lib.php:2235
|
426 |
msgid "Install themes"
|
427 |
msgstr "Installa temi"
|
428 |
|
429 |
+
#: ../includes/class-ure-lib.php:2236
|
430 |
msgid "Update core"
|
431 |
msgstr "Aggiorna core"
|
432 |
|
433 |
+
#: ../includes/class-ure-lib.php:2237
|
434 |
msgid "List users"
|
435 |
msgstr "Lista utenti"
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:2238
|
438 |
msgid "Remove users"
|
439 |
msgstr "Rimuovi utenti"
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:2239
|
442 |
msgid "Add users"
|
443 |
msgstr "Aggiungi utenti"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:2240
|
446 |
msgid "Promote users"
|
447 |
msgstr "Promuovi utenti"
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:2241
|
450 |
msgid "Edit theme options"
|
451 |
msgstr "Modifica opzioni tema"
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:2242
|
454 |
msgid "Delete themes"
|
455 |
msgstr "Cancella temi"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:2243
|
458 |
msgid "Export"
|
459 |
msgstr "Esporta"
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:2366
|
462 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
463 |
msgstr ""
|
464 |
"Si è verificato il seguente errore: il nome del privilegio deve contenere "
|
465 |
"solo caratteri latini o numeri."
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:2379
|
468 |
#, php-format
|
469 |
msgid "Capability %s is added successfully"
|
470 |
msgstr "Privilegio %s aggiunto correttamente."
|
471 |
|
472 |
+
#: ../includes/class-ure-lib.php:2381
|
473 |
#, php-format
|
474 |
msgid "Capability %s exists already"
|
475 |
msgstr "Privilegio %s già esistente."
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:2410
|
478 |
#, php-format
|
479 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
480 |
msgstr ""
|
481 |
"Si è verificato il seguente errore: non hai permessi per cancellare il "
|
482 |
"privilegio %s."
|
483 |
|
484 |
+
#: ../includes/class-ure-lib.php:2429
|
485 |
+
#, fuzzy, php-format
|
486 |
+
msgid "Capability %s was removed successfully"
|
487 |
msgstr "Privilegio %s rimosso correttamente."
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:2497
|
490 |
msgid "Version:"
|
491 |
msgstr "Versione:"
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:2498
|
494 |
msgid "Author's website"
|
495 |
msgstr "Sito web dell'autore"
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:2499
|
498 |
msgid "Plugin webpage"
|
499 |
msgstr "Pagina web del plugin"
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:2500
|
502 |
msgid "Plugin download"
|
503 |
msgstr "Scarica il plugin"
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:2501
|
506 |
+
#: ../includes/class-user-role-editor.php:546
|
507 |
+
msgid "Changelog"
|
508 |
+
msgstr "Elenco delle modifiche (changelog)"
|
509 |
+
|
510 |
+
#: ../includes/class-ure-lib.php:2502
|
511 |
msgid "FAQ"
|
512 |
msgstr "Domande e risposte frequenti (FAQ)"
|
513 |
|
514 |
+
#: ../includes/class-ure-lib.php:2575
|
515 |
+
msgid "Delete All Unused Roles"
|
516 |
+
msgstr "Cancella tutti i ruoli inutilizzati"
|
517 |
+
|
518 |
+
#: ../includes/class-ure-lib.php:2588
|
519 |
msgid "None"
|
520 |
msgstr "Nessuno"
|
521 |
|
522 |
+
#: ../includes/class-ure-lib.php:2632
|
523 |
+
msgid "— No role for this site —"
|
524 |
+
msgstr "— Nessun ruolo per questo sito —"
|
525 |
+
|
526 |
+
#: ../includes/class-ure-lib.php:2747
|
527 |
+
#, php-format
|
528 |
+
msgid "Denied: %s"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: ../includes/ure-role-edit.php:17
|
532 |
+
msgid "Select Role and change its capabilities:"
|
533 |
+
msgstr "Seleziona il ruolo e modifica i suoi privilegi:"
|
534 |
+
|
535 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
536 |
+
msgid "Show capabilities in human readable form"
|
537 |
+
msgstr "Mostra i privilegi in forma comprensibile"
|
538 |
+
|
539 |
+
#: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
|
540 |
+
#: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
|
541 |
+
msgid "Show deprecated capabilities"
|
542 |
+
msgstr "Mostra i privilegi sconsigliati (deprecati)"
|
543 |
+
|
544 |
+
#: ../includes/ure-role-edit.php:44
|
545 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
546 |
+
msgstr "Se selezionato, applica l'azione a tuti i siti di questa rete."
|
547 |
+
|
548 |
+
#: ../includes/ure-role-edit.php:56
|
549 |
+
msgid "Apply to All Sites"
|
550 |
+
msgstr "Applica a tutti i siti"
|
551 |
+
|
552 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
553 |
+
msgid "Core capabilities:"
|
554 |
+
msgstr "Privilegi del core:"
|
555 |
+
|
556 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
557 |
+
msgid "Quick filter:"
|
558 |
+
msgstr "Filtro veloce:"
|
559 |
|
560 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
561 |
+
msgid "Custom capabilities:"
|
562 |
+
msgstr "Privilegi personalizzati:"
|
563 |
|
564 |
+
#: ../includes/class-user-other-roles.php:82
|
565 |
+
#: ../includes/class-user-other-roles.php:183
|
566 |
+
#: ../includes/class-user-other-roles.php:243
|
567 |
+
msgid "Other Roles"
|
568 |
+
msgstr "Altri ruoli"
|
569 |
|
570 |
+
#: ../includes/class-user-other-roles.php:83
|
571 |
+
msgid "Select additional roles for this user"
|
572 |
+
msgstr ""
|
573 |
|
574 |
+
#: ../includes/class-user-other-roles.php:162
|
575 |
+
#: ../includes/class-user-role-editor.php:438
|
576 |
+
msgid "Capabilities"
|
577 |
+
msgstr "Privilegi"
|
578 |
|
579 |
+
#: ../includes/class-user-other-roles.php:169
|
580 |
+
msgid "Edit"
|
581 |
+
msgstr "Modifica"
|
582 |
|
583 |
+
#: ../includes/class-user-other-roles.php:215
|
584 |
+
#, fuzzy
|
585 |
+
msgid "Additional Capabilities"
|
586 |
+
msgstr "Aggiungi privilegio"
|
587 |
|
588 |
#: ../includes/class-ure-screen-help.php:12
|
589 |
#: ../includes/class-ure-screen-help.php:41
|
592 |
msgid "User Role Editor Options page help"
|
593 |
msgstr "Guida sulla pagina opzioni User Role Editor"
|
594 |
|
595 |
+
#: ../includes/class-ure-screen-help.php:15
|
596 |
+
#: ../includes/settings-template.php:53
|
597 |
+
msgid "Show Administrator role at User Role Editor"
|
598 |
+
msgstr "Mostra il ruolo di amministratore in User Role Editor"
|
599 |
+
|
600 |
#: ../includes/class-ure-screen-help.php:16
|
601 |
msgid ""
|
602 |
"turn this option on in order to make the \"Administrator\" role available at "
|
607 |
"disponibile nel menù a tendina di User Role Editor. Per impostazione "
|
608 |
"predefinita è nascosto, per ragioni di sicurezza."
|
609 |
|
610 |
+
#: ../includes/class-ure-screen-help.php:18
|
611 |
+
#: ../includes/settings-template.php:61
|
612 |
+
msgid "Show capabilities in the human readable form"
|
613 |
+
msgstr "Mostra i privilegi in forma comprensibile"
|
614 |
+
|
615 |
#: ../includes/class-ure-screen-help.php:19
|
616 |
msgid ""
|
617 |
"automatically converts capability names from the technical form for internal "
|
634 |
"con i vecchi temi e plugin. Selezionando questa opzione, questi privilegi "
|
635 |
"saranno comunque visualizzati."
|
636 |
|
637 |
+
#: ../includes/class-ure-screen-help.php:25
|
638 |
+
#: ../includes/settings-template.php:77
|
639 |
+
msgid "Edit user capabilities"
|
640 |
+
msgstr "Modifica privilegi utente"
|
641 |
+
|
642 |
#: ../includes/class-ure-screen-help.php:26
|
643 |
msgid ""
|
644 |
"If turned off - capabilities section of selected user is shown in readonly "
|
649 |
"sarà visualizzata in sola lettura. L'amministratore non potrà assegnare "
|
650 |
"privilegi direttamente all'utente. Dovrebbe farlo utilizzando solo i ruoli."
|
651 |
|
652 |
+
#: ../includes/class-ure-screen-help.php:45
|
653 |
+
#: ../includes/settings-template.php:111
|
654 |
+
msgid "Count users without role"
|
655 |
+
msgstr "Conta utenti senza ruolo"
|
656 |
+
|
657 |
#: ../includes/class-ure-screen-help.php:46
|
658 |
msgid ""
|
659 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
696 |
"Per impostazione predefinita solo il super amministratore può creare, "
|
697 |
"modificare e cancellare gli utenti in ambiente multisito di WordPress . "
|
698 |
"Selezionare questa opzione per rimuovere questa limitazione."
|
699 |
+
|
700 |
+
#: ../includes/class-user-role-editor.php:233
|
701 |
+
msgid "Change role for users without role"
|
702 |
+
msgstr "Cambia ruolo degli utenti senza nessun ruolo"
|
703 |
+
|
704 |
+
#: ../includes/class-user-role-editor.php:234
|
705 |
+
msgid "No rights"
|
706 |
+
msgstr "Nessun privilegio"
|
707 |
+
|
708 |
+
#: ../includes/class-user-role-editor.php:235
|
709 |
+
msgid "Provide new role"
|
710 |
+
msgstr "Assegna un nuovo ruolo"
|
711 |
+
|
712 |
+
#: ../includes/class-user-role-editor.php:298
|
713 |
+
#: ../includes/class-user-role-editor.php:300
|
714 |
+
msgid "You do not have permission to edit this user."
|
715 |
+
msgstr "Non hai i permessi per modificare questo utente."
|
716 |
+
|
717 |
+
#: ../includes/class-user-role-editor.php:535
|
718 |
+
msgid "Settings"
|
719 |
+
msgstr "Impostazioni"
|
720 |
+
|
721 |
+
#: ../includes/class-user-role-editor.php:568
|
722 |
+
#: ../includes/settings-template.php:21
|
723 |
+
msgid "General"
|
724 |
+
msgstr "Generali"
|
725 |
+
|
726 |
+
#: ../includes/class-user-role-editor.php:574
|
727 |
+
#: ../includes/settings-template.php:26
|
728 |
+
msgid "Additional Modules"
|
729 |
+
msgstr "Moduli addizionali"
|
730 |
+
|
731 |
+
#: ../includes/class-user-role-editor.php:580
|
732 |
+
#: ../includes/settings-template.php:30
|
733 |
+
msgid "Default Roles"
|
734 |
+
msgstr "Ruoli predefiniti"
|
735 |
+
|
736 |
+
#: ../includes/class-user-role-editor.php:586
|
737 |
+
#: ../includes/settings-template.php:34
|
738 |
+
msgid "Multisite"
|
739 |
+
msgstr "Multisito"
|
740 |
+
|
741 |
+
#: ../includes/class-user-role-editor.php:685
|
742 |
+
#: ../includes/class-user-role-editor.php:703
|
743 |
+
#: ../includes/class-user-role-editor.php:747
|
744 |
+
msgid "User Role Editor options are updated"
|
745 |
+
msgstr "Le opzioni di User Role Editor sono state aggiornate correttamente."
|
746 |
+
|
747 |
+
#: ../includes/class-user-role-editor.php:731
|
748 |
+
msgid "Default Roles are updated"
|
749 |
+
msgstr "I ruoli predefiniti sono stai aggiornati correttamente."
|
750 |
+
|
751 |
+
#: ../includes/class-user-role-editor.php:756
|
752 |
+
msgid ""
|
753 |
+
"You do not have sufficient permissions to manage options for User Role "
|
754 |
+
"Editor."
|
755 |
+
msgstr ""
|
756 |
+
"Non hai permessi sufficienti per gestire le opzioni di User Role Editor."
|
757 |
+
|
758 |
+
#: ../includes/class-user-role-editor.php:885
|
759 |
+
msgid "Select All"
|
760 |
+
msgstr "Seleziona tutti"
|
761 |
+
|
762 |
+
#: ../includes/class-user-role-editor.php:886
|
763 |
+
msgid "Unselect All"
|
764 |
+
msgstr "Deseleziona tutti"
|
765 |
+
|
766 |
+
#: ../includes/class-user-role-editor.php:887
|
767 |
+
msgid "Reverse"
|
768 |
+
msgstr "Revoca"
|
769 |
+
|
770 |
+
#: ../includes/class-user-role-editor.php:888
|
771 |
+
msgid "Update"
|
772 |
+
msgstr "Aggiorna"
|
773 |
+
|
774 |
+
#: ../includes/class-user-role-editor.php:889
|
775 |
+
msgid "Please confirm permissions update"
|
776 |
+
msgstr "Conferma l'aggiornamento dei permessi"
|
777 |
+
|
778 |
+
#: ../includes/class-user-role-editor.php:890
|
779 |
+
msgid "Add New Role"
|
780 |
+
msgstr "Aggiungi un nuovo ruolo"
|
781 |
+
|
782 |
+
#: ../includes/class-user-role-editor.php:891
|
783 |
+
#: ../includes/class-user-role-editor.php:896
|
784 |
+
msgid "Rename Role"
|
785 |
+
msgstr "Rinomina ruolo"
|
786 |
+
|
787 |
+
#: ../includes/class-user-role-editor.php:892
|
788 |
+
msgid " Role name (ID) can not be empty!"
|
789 |
+
msgstr "Nome Ruolo (ID) non può essere vuoto."
|
790 |
+
|
791 |
+
#: ../includes/class-user-role-editor.php:893
|
792 |
+
msgid ""
|
793 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
794 |
+
"only!"
|
795 |
+
msgstr ""
|
796 |
+
"Il nome Ruolo (ID) deve contenere solo caratteri latini, numeri, trattini o "
|
797 |
+
"underscore."
|
798 |
+
|
799 |
+
#: ../includes/class-user-role-editor.php:894
|
800 |
+
msgid ""
|
801 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
802 |
+
"it."
|
803 |
+
msgstr ""
|
804 |
+
"Wordpress non supporta il nome Ruolo (ID) nel formaro numerico. Inserisci "
|
805 |
+
"caratteri latini."
|
806 |
+
|
807 |
+
#: ../includes/class-user-role-editor.php:895
|
808 |
+
msgid "Add Role"
|
809 |
+
msgstr "Aggiungi ruolo"
|
810 |
+
|
811 |
+
#: ../includes/class-user-role-editor.php:897
|
812 |
+
msgid "Delete Role"
|
813 |
+
msgstr "Cancella Ruolo"
|
814 |
+
|
815 |
+
#: ../includes/class-user-role-editor.php:898
|
816 |
+
msgid "Cancel"
|
817 |
+
msgstr "Cancella"
|
818 |
+
|
819 |
+
#: ../includes/class-user-role-editor.php:899
|
820 |
+
msgid "Add Capability"
|
821 |
+
msgstr "Aggiungi privilegio"
|
822 |
+
|
823 |
+
#: ../includes/class-user-role-editor.php:900
|
824 |
+
#: ../includes/class-user-role-editor.php:909
|
825 |
+
msgid "Delete Capability"
|
826 |
+
msgstr "Cancella privilegio"
|
827 |
+
|
828 |
+
#: ../includes/class-user-role-editor.php:901
|
829 |
+
msgid "Reset"
|
830 |
+
msgstr "Reimposta"
|
831 |
+
|
832 |
+
#: ../includes/class-user-role-editor.php:902
|
833 |
+
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
834 |
+
msgstr "ATTENZIONE: Reimposta i privilegi predefiniti dal core di WordPress."
|
835 |
+
|
836 |
+
#: ../includes/class-user-role-editor.php:903
|
837 |
+
msgid ""
|
838 |
+
"If any plugins have changed capabilities in any way upon installation (such "
|
839 |
+
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
840 |
+
msgstr ""
|
841 |
+
"Se qualche plugin ha cambiato i privilegi in qualche modo dopo "
|
842 |
+
"l'installazione (tipo S2Members, WooCommerce, etc...), questi privilegi "
|
843 |
+
"saranno cancellati."
|
844 |
+
|
845 |
+
#: ../includes/class-user-role-editor.php:904
|
846 |
+
msgid ""
|
847 |
+
"For more information on how to undo changes and restore plugin capabilities "
|
848 |
+
"go to"
|
849 |
+
msgstr ""
|
850 |
+
"Per altre informazioni su come tornare indietro con le modifiche e "
|
851 |
+
"ripristinare le funzionalità del plugin vai a"
|
852 |
+
|
853 |
+
#: ../includes/class-user-role-editor.php:906
|
854 |
+
msgid "Continue?"
|
855 |
+
msgstr "Continuare?"
|
856 |
+
|
857 |
+
#: ../includes/class-user-role-editor.php:907
|
858 |
+
msgid "Default Role"
|
859 |
+
msgstr "Ruolo predefinito"
|
860 |
+
|
861 |
+
#: ../includes/class-user-role-editor.php:908
|
862 |
+
msgid "Set New Default Role"
|
863 |
+
msgstr "Imposta un nuovo ruolo predefinito"
|
864 |
+
|
865 |
+
#: ../includes/class-user-role-editor.php:910
|
866 |
+
msgid ""
|
867 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
868 |
+
"or other custom code"
|
869 |
+
msgstr ""
|
870 |
+
"Attenzione! rimuovendo i privilegi è possibile che malfunzioni il plugin o "
|
871 |
+
"altro codice personalizzato."
|
872 |
+
|
873 |
+
#: ../includes/class-user-role-editor.php:911
|
874 |
+
msgid " Capability name (ID) can not be empty!"
|
875 |
+
msgstr "Nome privilegio (ID) non può essere vuoto!"
|
876 |
+
|
877 |
+
#: ../includes/class-user-role-editor.php:912
|
878 |
+
msgid ""
|
879 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
880 |
+
"underscore only!"
|
881 |
+
msgstr ""
|
882 |
+
"Il nome privilegio (ID) deve contenere solo caratteri latini, numeri, "
|
883 |
+
"trattini o underscore."
|
884 |
+
|
885 |
+
#: ../includes/settings-template.php:17
|
886 |
+
msgid "User Role Editor - Options"
|
887 |
+
msgstr "User Role Editor - Opzioni"
|
888 |
+
|
889 |
+
#: ../includes/settings-template.php:39
|
890 |
+
msgid "About"
|
891 |
+
msgstr "Info"
|
892 |
+
|
893 |
+
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
894 |
+
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
895 |
+
msgid "Save"
|
896 |
+
msgstr "Salva"
|
897 |
+
|
898 |
+
#: ../includes/settings-template.php:138
|
899 |
+
msgid "Primary default role: "
|
900 |
+
msgstr "Ruolo primario predefinito:"
|
901 |
+
|
902 |
+
#: ../includes/settings-template.php:145
|
903 |
+
msgid "Other default roles for new registered user: "
|
904 |
+
msgstr "Altri ruoli predefiniti disponibili per i nuovi utenti registrati:"
|
905 |
+
|
906 |
+
#: ../includes/settings-template.php:151
|
907 |
+
msgid ""
|
908 |
+
"Note for multisite environment: take into account that other default roles "
|
909 |
+
"should exist at the site, in order to be assigned to the new registered "
|
910 |
+
"users."
|
911 |
+
msgstr ""
|
912 |
+
"Nota per l'ambiente multisito: altri ruoli predefiniti devono esistere nel "
|
913 |
+
"sito, per poter essere assegnati ai nuovi utenti registrati."
|
914 |
+
|
915 |
+
#: ../includes/settings-template.php:177
|
916 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
917 |
+
msgstr ""
|
918 |
+
"Permette ad un utente non amministratore di creare, modificare e cancellare "
|
919 |
+
"utenti."
|
920 |
+
|
921 |
+
#: ../includes/ure-user-edit.php:32
|
922 |
+
msgid "Network Super Admin"
|
923 |
+
msgstr "Super Admin Network"
|
924 |
+
|
925 |
+
#: ../includes/ure-user-edit.php:35
|
926 |
+
msgid "Change capabilities for user"
|
927 |
+
msgstr "Cambia privilegi per l'utente"
|
928 |
+
|
929 |
+
#: ../includes/ure-user-edit.php:72
|
930 |
+
msgid "Primary Role:"
|
931 |
+
msgstr "Ruolo primario:"
|
932 |
+
|
933 |
+
#: ../includes/ure-user-edit.php:82
|
934 |
+
msgid "bbPress Role:"
|
935 |
+
msgstr "Ruolo bbPress:"
|
936 |
+
|
937 |
+
#: ../includes/ure-user-edit.php:92
|
938 |
+
msgid "Other Roles:"
|
939 |
+
msgstr "Altri Ruoli:"
|
lang/user-role-editor-nl_NL.mo
ADDED
Binary file
|
lang/{ure-nl_NL.po → user-role-editor-nl_NL.po}
RENAMED
@@ -1,912 +1,938 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
-
"Language: Dutch\n"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"Content-
|
13 |
-
"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
-
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
-
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
18 |
-
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
19 |
-
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
20 |
-
"X-Poedit-Basepath: .\n"
|
21 |
-
"X-Generator:
|
22 |
-
"X-
|
23 |
-
"X-
|
24 |
-
|
25 |
-
#: ../includes/class-ure-lib.php:
|
26 |
-
msgid "
|
27 |
-
msgstr "
|
28 |
-
|
29 |
-
#: ../includes/class-ure-
|
30 |
-
msgid ""
|
31 |
-
"
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
"
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
#: ../includes/class-ure-
|
54 |
-
#: ../includes/class-
|
55 |
-
#: ../includes/class-
|
56 |
-
msgid "User Role Editor
|
57 |
-
msgstr "User Rol Editor
|
58 |
-
|
59 |
-
#: ../includes/class-ure-
|
60 |
-
msgid "
|
61 |
-
msgstr "
|
62 |
-
|
63 |
-
#: ../includes/class-ure-
|
64 |
-
msgid ""
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
"
|
69 |
-
msgstr ""
|
70 |
-
|
71 |
-
|
72 |
-
"
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
"
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
"
|
85 |
-
msgstr ""
|
86 |
-
|
87 |
-
|
88 |
-
"
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
#: ../includes/class-
|
96 |
-
msgid "
|
97 |
-
msgstr "
|
98 |
-
|
99 |
-
#: ../includes/
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
#: ../includes/
|
110 |
-
#: ../includes/class-user-role-editor.php:
|
111 |
-
msgid "
|
112 |
-
msgstr "
|
113 |
-
|
114 |
-
#: ../includes/
|
115 |
-
msgid "
|
116 |
-
msgstr "
|
117 |
-
|
118 |
-
#: ../includes/
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
#: ../includes/class-ure-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
#: ../includes/
|
140 |
-
msgid "
|
141 |
-
msgstr "
|
142 |
-
|
143 |
-
#: ../includes/
|
144 |
-
|
145 |
-
msgid "
|
146 |
-
msgstr "
|
147 |
-
|
148 |
-
#: ../includes/
|
149 |
-
msgid "
|
150 |
-
msgstr "
|
151 |
-
|
152 |
-
#: ../includes/
|
153 |
-
msgid "
|
154 |
-
msgstr "
|
155 |
-
|
156 |
-
#: ../includes/
|
157 |
-
|
158 |
-
"
|
159 |
-
"
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
"
|
164 |
-
"
|
165 |
-
|
166 |
-
#: ../includes/
|
167 |
-
msgid "
|
168 |
-
msgstr ""
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
msgid "
|
191 |
-
msgstr "
|
192 |
-
|
193 |
-
#: ../includes/class-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
#: ../includes/class-ure-lib.php:
|
199 |
-
msgid "
|
200 |
-
msgstr "
|
201 |
-
|
202 |
-
#: ../includes/class-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
#: ../includes/class-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
#: ../includes/class-ure-lib.php:
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
"
|
268 |
-
"
|
269 |
-
|
270 |
-
|
271 |
-
"
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
"
|
276 |
-
"
|
277 |
-
|
278 |
-
|
279 |
-
"
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
#: ../includes/class-
|
299 |
-
msgid "
|
300 |
-
msgstr "
|
301 |
-
|
302 |
-
#: ../includes/class-
|
303 |
-
msgid "
|
304 |
-
msgstr "
|
305 |
-
|
306 |
-
#: ../includes/class-
|
307 |
-
msgid "
|
308 |
-
msgstr ""
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
"
|
316 |
-
msgstr ""
|
317 |
-
|
318 |
-
|
319 |
-
"
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
"
|
324 |
-
"
|
325 |
-
|
326 |
-
|
327 |
-
"
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
"
|
344 |
-
"
|
345 |
-
|
346 |
-
|
347 |
-
"
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
"
|
356 |
-
"
|
357 |
-
|
358 |
-
|
359 |
-
"
|
360 |
-
|
361 |
-
|
362 |
-
#: ../includes/class-
|
363 |
-
msgid "
|
364 |
-
msgstr "
|
365 |
-
|
366 |
-
#: ../includes/class-
|
367 |
-
msgid "
|
368 |
-
msgstr "
|
369 |
-
|
370 |
-
#: ../includes/ure-
|
371 |
-
msgid "
|
372 |
-
msgstr "
|
373 |
-
|
374 |
-
#: ../includes/
|
375 |
-
msgid "
|
376 |
-
msgstr "
|
377 |
-
|
378 |
-
#: ../includes/ure-
|
379 |
-
msgid "
|
380 |
-
msgstr ""
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
msgid "
|
470 |
-
msgstr "
|
471 |
-
|
472 |
-
#: ../includes/class-ure-lib.php:
|
473 |
-
|
474 |
-
"
|
475 |
-
"
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
"
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
msgid "
|
518 |
-
msgstr "
|
519 |
-
|
520 |
-
#: ../includes/class-ure-lib.php:
|
521 |
-
msgid "
|
522 |
-
msgstr "
|
523 |
-
|
524 |
-
#: ../includes/class-ure-lib.php:
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
msgid "Role
|
531 |
-
msgstr "Rol
|
532 |
-
|
533 |
-
#: ../includes/
|
534 |
-
msgid "
|
535 |
-
msgstr "
|
536 |
-
|
537 |
-
#: ../includes/class-ure-
|
538 |
-
|
539 |
-
msgid "
|
540 |
-
msgstr "
|
541 |
-
|
542 |
-
#: ../includes/
|
543 |
-
msgid "
|
544 |
-
msgstr "
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
#: ../includes/class-
|
567 |
-
msgid "
|
568 |
-
msgstr "
|
569 |
-
|
570 |
-
#: ../includes/class-
|
571 |
-
msgid "
|
572 |
-
msgstr "
|
573 |
-
|
574 |
-
#: ../includes/class-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
#: ../includes/class-ure-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
#: ../includes/class-ure-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
msgstr "
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
#: ../includes/
|
639 |
-
msgid "
|
640 |
-
msgstr "
|
641 |
-
|
642 |
-
#: ../includes/class-ure-
|
643 |
-
msgid "
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
#: ../includes/class-ure-
|
667 |
-
msgid "
|
668 |
-
msgstr "
|
669 |
-
|
670 |
-
#: ../includes/class-ure-
|
671 |
-
msgid "
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
msgstr "
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
msgstr "
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
#: ../includes/class-
|
711 |
-
msgid "
|
712 |
-
msgstr "
|
713 |
-
|
714 |
-
#: ../includes/class-
|
715 |
-
msgid "
|
716 |
-
msgstr "
|
717 |
-
|
718 |
-
#: ../includes/class-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
#: ../includes/
|
735 |
-
msgid "
|
736 |
-
msgstr "
|
737 |
-
|
738 |
-
#: ../includes/class-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
msgstr "
|
753 |
-
|
754 |
-
#: ../includes/class-
|
755 |
-
msgid "
|
756 |
-
msgstr "
|
757 |
-
|
758 |
-
#: ../includes/class-
|
759 |
-
msgid "
|
760 |
-
msgstr "
|
761 |
-
|
762 |
-
#: ../includes/class-
|
763 |
-
msgid "
|
764 |
-
msgstr "
|
765 |
-
|
766 |
-
#: ../includes/class-
|
767 |
-
msgid "Update
|
768 |
-
msgstr "
|
769 |
-
|
770 |
-
#: ../includes/class-
|
771 |
-
msgid "
|
772 |
-
msgstr "
|
773 |
-
|
774 |
-
#: ../includes/class-
|
775 |
-
msgid "
|
776 |
-
msgstr "
|
777 |
-
|
778 |
-
#: ../includes/class-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
msgid "
|
813 |
-
msgstr "
|
814 |
-
|
815 |
-
#: ../includes/class-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
#: ../includes/class-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
#: ../includes/class-
|
835 |
-
msgid "
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
"
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
#: ../includes/
|
893 |
-
msgid ""
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
"
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
"
|
907 |
-
"
|
908 |
-
|
909 |
-
|
910 |
-
"
|
911 |
-
"
|
912 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-11 21:06+0100\n"
|
6 |
+
"PO-Revision-Date: 2015-09-11 21:16+0100\n"
|
7 |
+
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
+
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
+
"Language: Dutch\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: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
18 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
19 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
20 |
+
"X-Poedit-Basepath: .\n"
|
21 |
+
"X-Generator: Poedit 1.5.4\n"
|
22 |
+
"X-Loco-Target-Locale: nl_NL\n"
|
23 |
+
"X-Poedit-SearchPath-0: ..\n"
|
24 |
+
|
25 |
+
#: ../includes/class-ure-lib.php:247
|
26 |
+
msgid "Error: wrong request"
|
27 |
+
msgstr "Fout: verkeerde aanvraag"
|
28 |
+
|
29 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
30 |
+
msgid "Role name (ID): "
|
31 |
+
msgstr "Naam Rol (ID):"
|
32 |
+
|
33 |
+
#: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
|
34 |
+
msgid "Display Role Name: "
|
35 |
+
msgstr "Maak de Naam van de Rol zichtbaar:"
|
36 |
+
|
37 |
+
#: ../includes/class-ure-lib.php:284
|
38 |
+
msgid "Make copy of: "
|
39 |
+
msgstr "Maak een kopie van:"
|
40 |
+
|
41 |
+
#: ../includes/class-ure-lib.php:300
|
42 |
+
msgid "Select Role:"
|
43 |
+
msgstr "Selecteer een Rol:"
|
44 |
+
|
45 |
+
#: ../includes/class-ure-lib.php:315
|
46 |
+
msgid "Delete:"
|
47 |
+
msgstr "Verwijder:"
|
48 |
+
|
49 |
+
#: ../includes/class-ure-lib.php:322
|
50 |
+
msgid "Capability name (ID): "
|
51 |
+
msgstr "Naam recht (ID):"
|
52 |
+
|
53 |
+
#: ../includes/class-ure-lib.php:339
|
54 |
+
#: ../includes/class-user-role-editor.php:596
|
55 |
+
#: ../includes/class-user-role-editor.php:625
|
56 |
+
msgid "User Role Editor"
|
57 |
+
msgstr "User Rol Editor"
|
58 |
+
|
59 |
+
#: ../includes/class-ure-lib.php:436
|
60 |
+
msgid "Error: "
|
61 |
+
msgstr "Fout:"
|
62 |
+
|
63 |
+
#: ../includes/class-ure-lib.php:436
|
64 |
+
msgid "Role"
|
65 |
+
msgstr "Rol"
|
66 |
+
|
67 |
+
#: ../includes/class-ure-lib.php:437
|
68 |
+
msgid "does not exist"
|
69 |
+
msgstr "Bestaat niet"
|
70 |
+
|
71 |
+
#: ../includes/class-ure-lib.php:480
|
72 |
+
msgid "Role is updated successfully"
|
73 |
+
msgstr "Rol is succesvol ge-update"
|
74 |
+
|
75 |
+
#: ../includes/class-ure-lib.php:482
|
76 |
+
msgid "Roles are updated for all network"
|
77 |
+
msgstr "Rollen van het gehele netwerk zijn ge-update"
|
78 |
+
|
79 |
+
#: ../includes/class-ure-lib.php:488
|
80 |
+
msgid "Error occured during role(s) update"
|
81 |
+
msgstr "Er is een fout opgetreden tijdens het updaten van de rol(len)"
|
82 |
+
|
83 |
+
#: ../includes/class-ure-lib.php:495
|
84 |
+
msgid "User capabilities are updated successfully"
|
85 |
+
msgstr "Rechten van de gebruiker zijn succesvol geupdate"
|
86 |
+
|
87 |
+
#: ../includes/class-ure-lib.php:500
|
88 |
+
msgid "Error occured during user update"
|
89 |
+
msgstr "Er is een fout opgetreden tijdens het updaten van de gebruiker"
|
90 |
+
|
91 |
+
#: ../includes/class-ure-lib.php:558
|
92 |
+
msgid "User Roles are restored to WordPress default values. "
|
93 |
+
msgstr "Gebruikers rollen worden hersteld naar WordPress standaardwaarden."
|
94 |
+
|
95 |
+
#: ../includes/class-ure-lib.php:1436
|
96 |
+
msgid "read about"
|
97 |
+
msgstr "Lees over"
|
98 |
+
|
99 |
+
#: ../includes/class-ure-lib.php:1437
|
100 |
+
msgid "user capability"
|
101 |
+
msgstr "Gebruikers rechten"
|
102 |
+
|
103 |
+
#: ../includes/class-ure-lib.php:1438
|
104 |
+
msgid "Help"
|
105 |
+
msgstr "Help"
|
106 |
+
|
107 |
+
#: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
|
108 |
+
#: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
|
109 |
+
#: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
|
110 |
+
#: ../includes/class-user-role-editor.php:828
|
111 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
112 |
+
msgstr "Onvoldoende rechten om te werken met User Role Editor"
|
113 |
+
|
114 |
+
#: ../includes/class-ure-lib.php:1909
|
115 |
+
msgid "Error is occur. Please check the log file."
|
116 |
+
msgstr "Er heeft zich een fout voorgedaan. Controleer het log bestand."
|
117 |
+
|
118 |
+
#: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
|
119 |
+
msgid ""
|
120 |
+
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
121 |
+
"only!"
|
122 |
+
msgstr ""
|
123 |
+
"Fout: Een Rol (ID) moet Latijnse letters, cijfers, koppeltekens of "
|
124 |
+
"underscores bevatten!"
|
125 |
+
|
126 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
127 |
+
msgid ""
|
128 |
+
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
129 |
+
"characters to it."
|
130 |
+
msgstr ""
|
131 |
+
"Fout: WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse "
|
132 |
+
"tekens aan toe."
|
133 |
+
|
134 |
+
#: ../includes/class-ure-lib.php:1974
|
135 |
+
#, php-format
|
136 |
+
msgid "Role %s exists already"
|
137 |
+
msgstr "Deze Rol %s bestaat al"
|
138 |
+
|
139 |
+
#: ../includes/class-ure-lib.php:1989
|
140 |
+
msgid "Error is encountered during new role create operation"
|
141 |
+
msgstr "Er is een fout opgetreden tijdens het creëren van een nieuwe rol"
|
142 |
+
|
143 |
+
#: ../includes/class-ure-lib.php:1991
|
144 |
+
#, php-format
|
145 |
+
msgid "Role %s is created successfully"
|
146 |
+
msgstr "De Rol %s werd succesvol gecreërd"
|
147 |
+
|
148 |
+
#: ../includes/class-ure-lib.php:2015
|
149 |
+
msgid "Error: Role ID is empty!"
|
150 |
+
msgstr "Fout: Rol ID is niet gevuld!"
|
151 |
+
|
152 |
+
#: ../includes/class-ure-lib.php:2033
|
153 |
+
msgid "Error: Empty role display name is not allowed."
|
154 |
+
msgstr "Fout: De weergave van een lege naam van een rol is niet toegestaan."
|
155 |
+
|
156 |
+
#: ../includes/class-ure-lib.php:2040
|
157 |
+
#, php-format
|
158 |
+
msgid "Role %s does not exists"
|
159 |
+
msgstr "Rol %s bestaat niet"
|
160 |
+
|
161 |
+
#: ../includes/class-ure-lib.php:2048
|
162 |
+
#, php-format
|
163 |
+
msgid "Role %s is renamed to %s successfully"
|
164 |
+
msgstr "Rol %s is succesvol vernoemd naar %s"
|
165 |
+
|
166 |
+
#: ../includes/class-ure-lib.php:2121
|
167 |
+
msgid "Error encountered during role delete operation"
|
168 |
+
msgstr "Er is een fout opgetreden bij het vewijderen van de rol"
|
169 |
+
|
170 |
+
#: ../includes/class-ure-lib.php:2123
|
171 |
+
msgid "Unused roles are deleted successfully"
|
172 |
+
msgstr "Ongebruikte rollen zijn succesvol verwijderd"
|
173 |
+
|
174 |
+
#: ../includes/class-ure-lib.php:2125
|
175 |
+
#, php-format
|
176 |
+
msgid "Role %s is deleted successfully"
|
177 |
+
msgstr "Rol %s succesvol verwijderd"
|
178 |
+
|
179 |
+
#: ../includes/class-ure-lib.php:2153
|
180 |
+
msgid "Error encountered during default role change operation"
|
181 |
+
msgstr "Er is een fout opgetreden tijdens het wijzigen van de standaard rol"
|
182 |
+
|
183 |
+
#: ../includes/class-ure-lib.php:2156
|
184 |
+
#, php-format
|
185 |
+
msgid "Default role for new users is set to %s successfully"
|
186 |
+
msgstr "De standaard rol voor nieuwe gebruikers is met succes ingesteld op %s"
|
187 |
+
|
188 |
+
#: ../includes/class-ure-lib.php:2159
|
189 |
+
#, fuzzy
|
190 |
+
msgid "Can not set Administrator role as a default one"
|
191 |
+
msgstr "Toon Beheerders Rol in de Gebruikers Rol Editor"
|
192 |
+
|
193 |
+
#: ../includes/class-ure-lib.php:2161
|
194 |
+
#, fuzzy
|
195 |
+
msgid "This role does not exist - "
|
196 |
+
msgstr "Rol %s bestaat niet"
|
197 |
+
|
198 |
+
#: ../includes/class-ure-lib.php:2177
|
199 |
+
msgid "Editor"
|
200 |
+
msgstr "Redacteur"
|
201 |
+
|
202 |
+
#: ../includes/class-ure-lib.php:2178
|
203 |
+
msgid "Author"
|
204 |
+
msgstr "Editor"
|
205 |
+
|
206 |
+
#: ../includes/class-ure-lib.php:2179
|
207 |
+
msgid "Contributor"
|
208 |
+
msgstr "Inzender"
|
209 |
+
|
210 |
+
#: ../includes/class-ure-lib.php:2180
|
211 |
+
msgid "Subscriber"
|
212 |
+
msgstr "Abonnee"
|
213 |
+
|
214 |
+
#: ../includes/class-ure-lib.php:2182
|
215 |
+
msgid "Switch themes"
|
216 |
+
msgstr "Van thema wisselen"
|
217 |
+
|
218 |
+
#: ../includes/class-ure-lib.php:2183
|
219 |
+
msgid "Edit themes"
|
220 |
+
msgstr "Thema's bewerken"
|
221 |
+
|
222 |
+
#: ../includes/class-ure-lib.php:2184
|
223 |
+
msgid "Activate plugins"
|
224 |
+
msgstr "Plugins activeren"
|
225 |
+
|
226 |
+
#: ../includes/class-ure-lib.php:2185
|
227 |
+
msgid "Edit plugins"
|
228 |
+
msgstr "Plugins bewerken"
|
229 |
+
|
230 |
+
#: ../includes/class-ure-lib.php:2186
|
231 |
+
msgid "Edit users"
|
232 |
+
msgstr "Gebruikers bewerken"
|
233 |
+
|
234 |
+
#: ../includes/class-ure-lib.php:2187
|
235 |
+
msgid "Edit files"
|
236 |
+
msgstr "Bestanden bewerken"
|
237 |
+
|
238 |
+
#: ../includes/class-ure-lib.php:2188
|
239 |
+
msgid "Manage options"
|
240 |
+
msgstr "Opties beheren"
|
241 |
+
|
242 |
+
#: ../includes/class-ure-lib.php:2189
|
243 |
+
msgid "Moderate comments"
|
244 |
+
msgstr "Reacties beheren"
|
245 |
+
|
246 |
+
#: ../includes/class-ure-lib.php:2190
|
247 |
+
msgid "Manage categories"
|
248 |
+
msgstr "Categorieën beheren"
|
249 |
+
|
250 |
+
#: ../includes/class-ure-lib.php:2191
|
251 |
+
msgid "Manage links"
|
252 |
+
msgstr "Links beheren"
|
253 |
+
|
254 |
+
#: ../includes/class-ure-lib.php:2192
|
255 |
+
msgid "Upload files"
|
256 |
+
msgstr "Bestanden uploaden"
|
257 |
+
|
258 |
+
#: ../includes/class-ure-lib.php:2193
|
259 |
+
msgid "Import"
|
260 |
+
msgstr "Importeren"
|
261 |
+
|
262 |
+
#: ../includes/class-ure-lib.php:2194
|
263 |
+
msgid "Unfiltered html"
|
264 |
+
msgstr "Ongefilterd html"
|
265 |
+
|
266 |
+
#: ../includes/class-ure-lib.php:2195
|
267 |
+
msgid "Edit posts"
|
268 |
+
msgstr "Berichten bewerken"
|
269 |
+
|
270 |
+
#: ../includes/class-ure-lib.php:2196
|
271 |
+
msgid "Edit others posts"
|
272 |
+
msgstr "Berichten van anderen bewerken"
|
273 |
+
|
274 |
+
#: ../includes/class-ure-lib.php:2197
|
275 |
+
msgid "Edit published posts"
|
276 |
+
msgstr "Gepubliceerde berichten bewerken"
|
277 |
+
|
278 |
+
#: ../includes/class-ure-lib.php:2198
|
279 |
+
msgid "Publish posts"
|
280 |
+
msgstr "Berichten publiceren"
|
281 |
+
|
282 |
+
#: ../includes/class-ure-lib.php:2199
|
283 |
+
msgid "Edit pages"
|
284 |
+
msgstr "Pagina's bewerken"
|
285 |
+
|
286 |
+
#: ../includes/class-ure-lib.php:2200
|
287 |
+
msgid "Read"
|
288 |
+
msgstr "Lezen"
|
289 |
+
|
290 |
+
#: ../includes/class-ure-lib.php:2201
|
291 |
+
msgid "Level 10"
|
292 |
+
msgstr "Level 10"
|
293 |
+
|
294 |
+
#: ../includes/class-ure-lib.php:2202
|
295 |
+
msgid "Level 9"
|
296 |
+
msgstr "Level 9"
|
297 |
+
|
298 |
+
#: ../includes/class-ure-lib.php:2203
|
299 |
+
msgid "Level 8"
|
300 |
+
msgstr "Level 8"
|
301 |
+
|
302 |
+
#: ../includes/class-ure-lib.php:2204
|
303 |
+
msgid "Level 7"
|
304 |
+
msgstr "Level 7"
|
305 |
+
|
306 |
+
#: ../includes/class-ure-lib.php:2205
|
307 |
+
msgid "Level 6"
|
308 |
+
msgstr "Level 6"
|
309 |
+
|
310 |
+
#: ../includes/class-ure-lib.php:2206
|
311 |
+
msgid "Level 5"
|
312 |
+
msgstr "Level 5"
|
313 |
+
|
314 |
+
#: ../includes/class-ure-lib.php:2207
|
315 |
+
msgid "Level 4"
|
316 |
+
msgstr "Level 4"
|
317 |
+
|
318 |
+
#: ../includes/class-ure-lib.php:2208
|
319 |
+
msgid "Level 3"
|
320 |
+
msgstr "Level 3"
|
321 |
+
|
322 |
+
#: ../includes/class-ure-lib.php:2209
|
323 |
+
msgid "Level 2"
|
324 |
+
msgstr "Level 2"
|
325 |
+
|
326 |
+
#: ../includes/class-ure-lib.php:2210
|
327 |
+
msgid "Level 1"
|
328 |
+
msgstr "Level 1"
|
329 |
+
|
330 |
+
#: ../includes/class-ure-lib.php:2211
|
331 |
+
msgid "Level 0"
|
332 |
+
msgstr "Level 0"
|
333 |
+
|
334 |
+
#: ../includes/class-ure-lib.php:2212
|
335 |
+
msgid "Edit others pages"
|
336 |
+
msgstr "Pagina's van anderen bewerken"
|
337 |
+
|
338 |
+
#: ../includes/class-ure-lib.php:2213
|
339 |
+
msgid "Edit published pages"
|
340 |
+
msgstr "Gepubliceerde pagina's bewerken"
|
341 |
+
|
342 |
+
#: ../includes/class-ure-lib.php:2214
|
343 |
+
msgid "Publish pages"
|
344 |
+
msgstr "Pagina's publiceren"
|
345 |
+
|
346 |
+
#: ../includes/class-ure-lib.php:2215
|
347 |
+
msgid "Delete pages"
|
348 |
+
msgstr "Pagina's verwijderen"
|
349 |
+
|
350 |
+
#: ../includes/class-ure-lib.php:2216
|
351 |
+
msgid "Delete others pages"
|
352 |
+
msgstr "Pagina's verwijderen van anderen"
|
353 |
+
|
354 |
+
#: ../includes/class-ure-lib.php:2217
|
355 |
+
msgid "Delete published pages"
|
356 |
+
msgstr "Gepubliceerde pagina's verwijderen"
|
357 |
+
|
358 |
+
#: ../includes/class-ure-lib.php:2218
|
359 |
+
msgid "Delete posts"
|
360 |
+
msgstr "Berichten verwijderen"
|
361 |
+
|
362 |
+
#: ../includes/class-ure-lib.php:2219
|
363 |
+
msgid "Delete others posts"
|
364 |
+
msgstr "Verwijder berichten van anderen"
|
365 |
+
|
366 |
+
#: ../includes/class-ure-lib.php:2220
|
367 |
+
msgid "Delete published posts"
|
368 |
+
msgstr "Gepubliceerde berichten verwijderen"
|
369 |
+
|
370 |
+
#: ../includes/class-ure-lib.php:2221
|
371 |
+
msgid "Delete private posts"
|
372 |
+
msgstr "Privé berichten verwijderen"
|
373 |
+
|
374 |
+
#: ../includes/class-ure-lib.php:2222
|
375 |
+
msgid "Edit private posts"
|
376 |
+
msgstr "Privé berichten bewerken"
|
377 |
+
|
378 |
+
#: ../includes/class-ure-lib.php:2223
|
379 |
+
msgid "Read private posts"
|
380 |
+
msgstr "Privé berichten lezen"
|
381 |
+
|
382 |
+
#: ../includes/class-ure-lib.php:2224
|
383 |
+
msgid "Delete private pages"
|
384 |
+
msgstr "Privé berichten verwijderen"
|
385 |
+
|
386 |
+
#: ../includes/class-ure-lib.php:2225
|
387 |
+
msgid "Edit private pages"
|
388 |
+
msgstr "Privé pagina's bewerken"
|
389 |
+
|
390 |
+
#: ../includes/class-ure-lib.php:2226
|
391 |
+
msgid "Read private pages"
|
392 |
+
msgstr "Privé pagina's lezen"
|
393 |
+
|
394 |
+
#: ../includes/class-ure-lib.php:2227
|
395 |
+
msgid "Delete users"
|
396 |
+
msgstr "Gebruikers verwijderen"
|
397 |
+
|
398 |
+
#: ../includes/class-ure-lib.php:2228
|
399 |
+
msgid "Create users"
|
400 |
+
msgstr "Maak gebruikers aan"
|
401 |
+
|
402 |
+
#: ../includes/class-ure-lib.php:2229
|
403 |
+
msgid "Unfiltered upload"
|
404 |
+
msgstr "Ongefilterd uploaden"
|
405 |
+
|
406 |
+
#: ../includes/class-ure-lib.php:2230
|
407 |
+
msgid "Edit dashboard"
|
408 |
+
msgstr "Bewerk het dashboard"
|
409 |
+
|
410 |
+
#: ../includes/class-ure-lib.php:2231
|
411 |
+
msgid "Update plugins"
|
412 |
+
msgstr "Plugins updaten"
|
413 |
+
|
414 |
+
#: ../includes/class-ure-lib.php:2232
|
415 |
+
msgid "Delete plugins"
|
416 |
+
msgstr "Plugins verwijderen"
|
417 |
+
|
418 |
+
#: ../includes/class-ure-lib.php:2233
|
419 |
+
msgid "Install plugins"
|
420 |
+
msgstr "Plugins installeren"
|
421 |
+
|
422 |
+
#: ../includes/class-ure-lib.php:2234
|
423 |
+
msgid "Update themes"
|
424 |
+
msgstr "Thema's updaten"
|
425 |
+
|
426 |
+
#: ../includes/class-ure-lib.php:2235
|
427 |
+
msgid "Install themes"
|
428 |
+
msgstr "Thema's installeren"
|
429 |
+
|
430 |
+
#: ../includes/class-ure-lib.php:2236
|
431 |
+
msgid "Update core"
|
432 |
+
msgstr "Core updaten"
|
433 |
+
|
434 |
+
#: ../includes/class-ure-lib.php:2237
|
435 |
+
msgid "List users"
|
436 |
+
msgstr "Lijst van gebruikers aanmaken"
|
437 |
+
|
438 |
+
#: ../includes/class-ure-lib.php:2238
|
439 |
+
msgid "Remove users"
|
440 |
+
msgstr "Gebruikers verwijderen"
|
441 |
+
|
442 |
+
#: ../includes/class-ure-lib.php:2239
|
443 |
+
msgid "Add users"
|
444 |
+
msgstr "Gebruikers toevoegen"
|
445 |
+
|
446 |
+
#: ../includes/class-ure-lib.php:2240
|
447 |
+
msgid "Promote users"
|
448 |
+
msgstr "Gebruikers bevorderen"
|
449 |
+
|
450 |
+
#: ../includes/class-ure-lib.php:2241
|
451 |
+
msgid "Edit theme options"
|
452 |
+
msgstr "Thema opties bewerken"
|
453 |
+
|
454 |
+
#: ../includes/class-ure-lib.php:2242
|
455 |
+
msgid "Delete themes"
|
456 |
+
msgstr "Thema's verwijderen"
|
457 |
+
|
458 |
+
#: ../includes/class-ure-lib.php:2243
|
459 |
+
msgid "Export"
|
460 |
+
msgstr "Exporteren"
|
461 |
+
|
462 |
+
#: ../includes/class-ure-lib.php:2366
|
463 |
+
msgid "Error: Capability name must contain latin characters and digits only!"
|
464 |
+
msgstr ""
|
465 |
+
"Fout: De naam van een recht mag alleen latijnse letters en cijfers bevatten!"
|
466 |
+
|
467 |
+
#: ../includes/class-ure-lib.php:2379
|
468 |
+
#, php-format
|
469 |
+
msgid "Capability %s is added successfully"
|
470 |
+
msgstr "Recht %s is succesvol toegevoegd"
|
471 |
+
|
472 |
+
#: ../includes/class-ure-lib.php:2381
|
473 |
+
#, php-format
|
474 |
+
msgid "Capability %s exists already"
|
475 |
+
msgstr "Recht %s bestaat al"
|
476 |
+
|
477 |
+
#: ../includes/class-ure-lib.php:2410
|
478 |
+
#, php-format
|
479 |
+
msgid "Error! You do not have permission to delete this capability: %s!"
|
480 |
+
msgstr "Fout! U heeft geen toestemming om dit recht te verwijderen: % s!"
|
481 |
+
|
482 |
+
#: ../includes/class-ure-lib.php:2429
|
483 |
+
#, fuzzy, php-format
|
484 |
+
msgid "Capability %s was removed successfully"
|
485 |
+
msgstr "Recht %s is succesvol verwijderd"
|
486 |
+
|
487 |
+
#: ../includes/class-ure-lib.php:2497
|
488 |
+
msgid "Version:"
|
489 |
+
msgstr "Versie:"
|
490 |
+
|
491 |
+
#: ../includes/class-ure-lib.php:2498
|
492 |
+
msgid "Author's website"
|
493 |
+
msgstr "Website van de auteur"
|
494 |
+
|
495 |
+
#: ../includes/class-ure-lib.php:2499
|
496 |
+
msgid "Plugin webpage"
|
497 |
+
msgstr "Plugin webpagina "
|
498 |
+
|
499 |
+
#: ../includes/class-ure-lib.php:2500
|
500 |
+
msgid "Plugin download"
|
501 |
+
msgstr "Plugin download "
|
502 |
+
|
503 |
+
#: ../includes/class-ure-lib.php:2501
|
504 |
+
#: ../includes/class-user-role-editor.php:546
|
505 |
+
msgid "Changelog"
|
506 |
+
msgstr "Changelog"
|
507 |
+
|
508 |
+
#: ../includes/class-ure-lib.php:2502
|
509 |
+
msgid "FAQ"
|
510 |
+
msgstr "FAQ"
|
511 |
+
|
512 |
+
#: ../includes/class-ure-lib.php:2575
|
513 |
+
msgid "Delete All Unused Roles"
|
514 |
+
msgstr "Verwijder alle niet gebruikte Rollen"
|
515 |
+
|
516 |
+
#: ../includes/class-ure-lib.php:2588
|
517 |
+
msgid "None"
|
518 |
+
msgstr "Geen"
|
519 |
+
|
520 |
+
#: ../includes/class-ure-lib.php:2632
|
521 |
+
msgid "— No role for this site —"
|
522 |
+
msgstr "— Geen rol voor deze website —"
|
523 |
+
|
524 |
+
#: ../includes/class-ure-lib.php:2747
|
525 |
+
#, php-format
|
526 |
+
msgid "Denied: %s"
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: ../includes/ure-role-edit.php:17
|
530 |
+
msgid "Select Role and change its capabilities:"
|
531 |
+
msgstr "Selecteer de Rol en wijzig de rechten"
|
532 |
+
|
533 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
534 |
+
msgid "Show capabilities in human readable form"
|
535 |
+
msgstr "Toon rechten in leesbare vorm"
|
536 |
+
|
537 |
+
#: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
|
538 |
+
#: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
|
539 |
+
msgid "Show deprecated capabilities"
|
540 |
+
msgstr "Toon afgekeurde rechten"
|
541 |
+
|
542 |
+
#: ../includes/ure-role-edit.php:44
|
543 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
544 |
+
msgstr ""
|
545 |
+
"Indien aangevinkt, worden alle acties toegepast op ALLE locaties van dit "
|
546 |
+
"netwerk"
|
547 |
+
|
548 |
+
#: ../includes/ure-role-edit.php:56
|
549 |
+
msgid "Apply to All Sites"
|
550 |
+
msgstr "Pas toe op alle Sites"
|
551 |
+
|
552 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
553 |
+
msgid "Core capabilities:"
|
554 |
+
msgstr "Core rechten:"
|
555 |
+
|
556 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
557 |
+
msgid "Quick filter:"
|
558 |
+
msgstr "Snel filter:"
|
559 |
+
|
560 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
561 |
+
msgid "Custom capabilities:"
|
562 |
+
msgstr "Gebruikelijke rechten:"
|
563 |
+
|
564 |
+
#: ../includes/class-user-other-roles.php:82
|
565 |
+
#: ../includes/class-user-other-roles.php:183
|
566 |
+
#: ../includes/class-user-other-roles.php:243
|
567 |
+
msgid "Other Roles"
|
568 |
+
msgstr "Andere Rollen"
|
569 |
+
|
570 |
+
#: ../includes/class-user-other-roles.php:83
|
571 |
+
msgid "Select additional roles for this user"
|
572 |
+
msgstr ""
|
573 |
+
|
574 |
+
#: ../includes/class-user-other-roles.php:162
|
575 |
+
#: ../includes/class-user-role-editor.php:438
|
576 |
+
msgid "Capabilities"
|
577 |
+
msgstr "Rechten"
|
578 |
+
|
579 |
+
#: ../includes/class-user-other-roles.php:169
|
580 |
+
msgid "Edit"
|
581 |
+
msgstr "Wijzigen"
|
582 |
+
|
583 |
+
#: ../includes/class-user-other-roles.php:215
|
584 |
+
#, fuzzy
|
585 |
+
msgid "Additional Capabilities"
|
586 |
+
msgstr "Recht toevoegen"
|
587 |
+
|
588 |
+
#: ../includes/class-ure-screen-help.php:12
|
589 |
+
#: ../includes/class-ure-screen-help.php:41
|
590 |
+
#: ../includes/class-ure-screen-help.php:60
|
591 |
+
#: ../includes/class-ure-screen-help.php:79
|
592 |
+
msgid "User Role Editor Options page help"
|
593 |
+
msgstr "User Rol Editor Opties hulp pagina"
|
594 |
+
|
595 |
+
#: ../includes/class-ure-screen-help.php:15
|
596 |
+
#: ../includes/settings-template.php:53
|
597 |
+
msgid "Show Administrator role at User Role Editor"
|
598 |
+
msgstr "Toon Beheerders Rol in de Gebruikers Rol Editor"
|
599 |
+
|
600 |
+
#: ../includes/class-ure-screen-help.php:16
|
601 |
+
msgid ""
|
602 |
+
"turn this option on in order to make the \"Administrator\" role available at "
|
603 |
+
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
604 |
+
"for security reasons."
|
605 |
+
msgstr ""
|
606 |
+
"zet deze optie aan om de \"Administrator \" rol te zichtbaar te maken in de "
|
607 |
+
"Userr Role Editor rollen selectie keuzelijst. Het wordt standaard verborgen "
|
608 |
+
"om veiligheidsredenen."
|
609 |
+
|
610 |
+
#: ../includes/class-ure-screen-help.php:18
|
611 |
+
#: ../includes/settings-template.php:61
|
612 |
+
msgid "Show capabilities in the human readable form"
|
613 |
+
msgstr "Toon de rechten in een leesbare vorm"
|
614 |
+
|
615 |
+
#: ../includes/class-ure-screen-help.php:19
|
616 |
+
msgid ""
|
617 |
+
"automatically converts capability names from the technical form for internal "
|
618 |
+
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
619 |
+
"others posts\"."
|
620 |
+
msgstr ""
|
621 |
+
"converteert automatisch de namen van de rechten uit het technische formulier "
|
622 |
+
"voor intern gebruik zoals \"edit_berichten_van_anderen \" naar een meer "
|
623 |
+
"gebruiksvriendelijke vorm, bijvoorbeeld \"Edit berichten van anderen \"."
|
624 |
+
|
625 |
+
#: ../includes/class-ure-screen-help.php:22
|
626 |
+
msgid ""
|
627 |
+
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
628 |
+
"by WordPress. They are left at the user roles for the compatibility purpose "
|
629 |
+
"with the old themes and plugins code. Turning on this option will show those "
|
630 |
+
"deprecated capabilities."
|
631 |
+
msgstr ""
|
632 |
+
"Rechten zoals \"level_0 \", \"level_1 \" zijn verouderd en worden niet meer "
|
633 |
+
"gebruikt door WordPress. Ze worden gekoppeld aan de rollen van een "
|
634 |
+
"gebruiker met als reden compatibiliteits doeleinden met oude thema's en "
|
635 |
+
"plugins code. Het inschakelen van deze optie zal de afgekeurde rechten tonen."
|
636 |
+
|
637 |
+
#: ../includes/class-ure-screen-help.php:25
|
638 |
+
#: ../includes/settings-template.php:77
|
639 |
+
msgid "Edit user capabilities"
|
640 |
+
msgstr "Wijzigen gebruikelijke rechten"
|
641 |
+
|
642 |
+
#: ../includes/class-ure-screen-help.php:26
|
643 |
+
msgid ""
|
644 |
+
"If turned off - capabilities section of selected user is shown in readonly "
|
645 |
+
"mode. Administrator can not assign capabilities to the user directly. He "
|
646 |
+
"should make it using roles only."
|
647 |
+
msgstr ""
|
648 |
+
"Indien uit, het gebruikers rechten gedeelte van de geselecteerde gebruik "
|
649 |
+
"wordt getoond in \"alleen lezen\" mode. De beheerder kan geen rechten direct "
|
650 |
+
"aan een gebruiker toekenne. Hij moet gebruik maken van rollen."
|
651 |
+
|
652 |
+
#: ../includes/class-ure-screen-help.php:45
|
653 |
+
#: ../includes/settings-template.php:111
|
654 |
+
msgid "Count users without role"
|
655 |
+
msgstr "Het aantal Gebruikers zonder rol"
|
656 |
+
|
657 |
+
#: ../includes/class-ure-screen-help.php:46
|
658 |
+
msgid ""
|
659 |
+
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
660 |
+
"assign all of them an empty role \"No rights\", in order to look on the "
|
661 |
+
"users list with role \"No rights\" at the separate tab then."
|
662 |
+
msgstr ""
|
663 |
+
"Toon op de \"Users\" pagina een blok met gebruikers zonder rol. Deze module "
|
664 |
+
"kan ze allemaal een lege rol \"Geen rechten\" toekennen. "
|
665 |
+
|
666 |
+
#: ../includes/class-ure-screen-help.php:63
|
667 |
+
msgid "Other default roles for new registered user"
|
668 |
+
msgstr "Andere standaard rollen voor nieuw geregistreerde gebruiker"
|
669 |
+
|
670 |
+
#: ../includes/class-ure-screen-help.php:64
|
671 |
+
msgid ""
|
672 |
+
"select roles below to assign them to the new user automatically as an "
|
673 |
+
"addition to the primary role. Note for multisite environment: take into "
|
674 |
+
"account that other default roles should exist at the site, in order to be "
|
675 |
+
"assigned to the new registered users."
|
676 |
+
msgstr ""
|
677 |
+
"Notitie voor multisite-omgeving: houdt er rekening mee dat er andere "
|
678 |
+
"standaard functies op de site moeten bestaan, om toegewezen te kunnen worden "
|
679 |
+
"aan nieuw geregistreerde gebruikers."
|
680 |
+
|
681 |
+
#: ../includes/class-ure-screen-help.php:82
|
682 |
+
msgid "Allow non super-admininstrators to create, edit and delete users"
|
683 |
+
msgstr ""
|
684 |
+
"Sta niet super beheerders toe om gebruikers aan te maken, te bewerken en te "
|
685 |
+
"verwijderen"
|
686 |
+
|
687 |
+
#: ../includes/class-ure-screen-help.php:83
|
688 |
+
msgid ""
|
689 |
+
"Super administrator only may create, edit and delete users under WordPress "
|
690 |
+
"multi-site by default. Turn this option on in order to remove this "
|
691 |
+
"limitation."
|
692 |
+
msgstr ""
|
693 |
+
"Alleen de super beheerder kan gebruikers aanmaken, bewerken en verwijderen "
|
694 |
+
"in WordPress multi-site. Schakel deze optie in om deze beperking te "
|
695 |
+
"verwijderen."
|
696 |
+
|
697 |
+
#: ../includes/class-user-role-editor.php:233
|
698 |
+
msgid "Change role for users without role"
|
699 |
+
msgstr "Wijzig de rol van gebruikers zonder rol"
|
700 |
+
|
701 |
+
#: ../includes/class-user-role-editor.php:234
|
702 |
+
msgid "No rights"
|
703 |
+
msgstr "Geen rechten"
|
704 |
+
|
705 |
+
#: ../includes/class-user-role-editor.php:235
|
706 |
+
msgid "Provide new role"
|
707 |
+
msgstr "Creëer een nieuwe rol"
|
708 |
+
|
709 |
+
#: ../includes/class-user-role-editor.php:298
|
710 |
+
#: ../includes/class-user-role-editor.php:300
|
711 |
+
msgid "You do not have permission to edit this user."
|
712 |
+
msgstr "Je hebt toestemming om gegevens van deze gebruiker te wijzigen"
|
713 |
+
|
714 |
+
#: ../includes/class-user-role-editor.php:535
|
715 |
+
msgid "Settings"
|
716 |
+
msgstr "Instellingen"
|
717 |
+
|
718 |
+
#: ../includes/class-user-role-editor.php:568
|
719 |
+
#: ../includes/settings-template.php:21
|
720 |
+
msgid "General"
|
721 |
+
msgstr "Algemeen"
|
722 |
+
|
723 |
+
#: ../includes/class-user-role-editor.php:574
|
724 |
+
#: ../includes/settings-template.php:26
|
725 |
+
msgid "Additional Modules"
|
726 |
+
msgstr "Aanvullende modules"
|
727 |
+
|
728 |
+
#: ../includes/class-user-role-editor.php:580
|
729 |
+
#: ../includes/settings-template.php:30
|
730 |
+
msgid "Default Roles"
|
731 |
+
msgstr "Standaard Rollen"
|
732 |
+
|
733 |
+
#: ../includes/class-user-role-editor.php:586
|
734 |
+
#: ../includes/settings-template.php:34
|
735 |
+
msgid "Multisite"
|
736 |
+
msgstr "Multisite"
|
737 |
+
|
738 |
+
#: ../includes/class-user-role-editor.php:685
|
739 |
+
#: ../includes/class-user-role-editor.php:703
|
740 |
+
#: ../includes/class-user-role-editor.php:747
|
741 |
+
msgid "User Role Editor options are updated"
|
742 |
+
msgstr "User Role Editor opties zijn ge-update"
|
743 |
+
|
744 |
+
#: ../includes/class-user-role-editor.php:731
|
745 |
+
msgid "Default Roles are updated"
|
746 |
+
msgstr "Standaard Rollen zijn ge-update"
|
747 |
+
|
748 |
+
#: ../includes/class-user-role-editor.php:756
|
749 |
+
msgid ""
|
750 |
+
"You do not have sufficient permissions to manage options for User Role "
|
751 |
+
"Editor."
|
752 |
+
msgstr "Je hebt onvoldoende rechten om de User Role Editor te beheren."
|
753 |
+
|
754 |
+
#: ../includes/class-user-role-editor.php:885
|
755 |
+
msgid "Select All"
|
756 |
+
msgstr "Alles selecteren"
|
757 |
+
|
758 |
+
#: ../includes/class-user-role-editor.php:886
|
759 |
+
msgid "Unselect All"
|
760 |
+
msgstr "Alles deselecteren"
|
761 |
+
|
762 |
+
#: ../includes/class-user-role-editor.php:887
|
763 |
+
msgid "Reverse"
|
764 |
+
msgstr "Omzetten"
|
765 |
+
|
766 |
+
#: ../includes/class-user-role-editor.php:888
|
767 |
+
msgid "Update"
|
768 |
+
msgstr "Update"
|
769 |
+
|
770 |
+
#: ../includes/class-user-role-editor.php:889
|
771 |
+
msgid "Please confirm permissions update"
|
772 |
+
msgstr "Bevestig toestemming om te mogen updaten"
|
773 |
+
|
774 |
+
#: ../includes/class-user-role-editor.php:890
|
775 |
+
msgid "Add New Role"
|
776 |
+
msgstr "Nieuwe Rol Toevoegen"
|
777 |
+
|
778 |
+
#: ../includes/class-user-role-editor.php:891
|
779 |
+
#: ../includes/class-user-role-editor.php:896
|
780 |
+
msgid "Rename Role"
|
781 |
+
msgstr "Hernoem Rol"
|
782 |
+
|
783 |
+
#: ../includes/class-user-role-editor.php:892
|
784 |
+
msgid " Role name (ID) can not be empty!"
|
785 |
+
msgstr "Rol naam (ID) kan niet leeg zijn!"
|
786 |
+
|
787 |
+
#: ../includes/class-user-role-editor.php:893
|
788 |
+
msgid ""
|
789 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
790 |
+
"only!"
|
791 |
+
msgstr ""
|
792 |
+
"Rol naam (ID) moet latijnse letters, cijfers, koppeltekens of een underscore "
|
793 |
+
"bevatten!"
|
794 |
+
|
795 |
+
#: ../includes/class-user-role-editor.php:894
|
796 |
+
msgid ""
|
797 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
798 |
+
"it."
|
799 |
+
msgstr ""
|
800 |
+
"WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse tekens "
|
801 |
+
"aan toe."
|
802 |
+
|
803 |
+
#: ../includes/class-user-role-editor.php:895
|
804 |
+
msgid "Add Role"
|
805 |
+
msgstr "Rol toevoegen"
|
806 |
+
|
807 |
+
#: ../includes/class-user-role-editor.php:897
|
808 |
+
msgid "Delete Role"
|
809 |
+
msgstr "Rol verwijderen"
|
810 |
+
|
811 |
+
#: ../includes/class-user-role-editor.php:898
|
812 |
+
msgid "Cancel"
|
813 |
+
msgstr "Annuleren"
|
814 |
+
|
815 |
+
#: ../includes/class-user-role-editor.php:899
|
816 |
+
msgid "Add Capability"
|
817 |
+
msgstr "Recht toevoegen"
|
818 |
+
|
819 |
+
#: ../includes/class-user-role-editor.php:900
|
820 |
+
#: ../includes/class-user-role-editor.php:909
|
821 |
+
msgid "Delete Capability"
|
822 |
+
msgstr "Recht verwijderen"
|
823 |
+
|
824 |
+
#: ../includes/class-user-role-editor.php:901
|
825 |
+
msgid "Reset"
|
826 |
+
msgstr "Terugkeren naar de basisinstellingen"
|
827 |
+
|
828 |
+
#: ../includes/class-user-role-editor.php:902
|
829 |
+
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
830 |
+
msgstr ""
|
831 |
+
"OPGELET! Opnieuw instellen zal de basisinstellingen herstellen van WordPress "
|
832 |
+
"Core"
|
833 |
+
|
834 |
+
#: ../includes/class-user-role-editor.php:903
|
835 |
+
msgid ""
|
836 |
+
"If any plugins have changed capabilities in any way upon installation (such "
|
837 |
+
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
838 |
+
msgstr ""
|
839 |
+
"Als plugins op enigerlei wijz instellingen gewijzigd hebben bij de "
|
840 |
+
"installatie (zoals S2Member, WooCommerce, en nog veel meer), zullen deze "
|
841 |
+
"instellingen worden VERWIJDERD!"
|
842 |
+
|
843 |
+
#: ../includes/class-user-role-editor.php:904
|
844 |
+
msgid ""
|
845 |
+
"For more information on how to undo changes and restore plugin capabilities "
|
846 |
+
"go to"
|
847 |
+
msgstr ""
|
848 |
+
"Voor meer informatie over hoe u wijzigingen ongedaan kunt maken en rechten "
|
849 |
+
"van de plugin kunt herstellen ga naar"
|
850 |
+
|
851 |
+
#: ../includes/class-user-role-editor.php:906
|
852 |
+
msgid "Continue?"
|
853 |
+
msgstr "Doorgaan?"
|
854 |
+
|
855 |
+
#: ../includes/class-user-role-editor.php:907
|
856 |
+
msgid "Default Role"
|
857 |
+
msgstr "Standaard Rol"
|
858 |
+
|
859 |
+
#: ../includes/class-user-role-editor.php:908
|
860 |
+
msgid "Set New Default Role"
|
861 |
+
msgstr "Maak een nieuwe standaard rol aan"
|
862 |
+
|
863 |
+
#: ../includes/class-user-role-editor.php:910
|
864 |
+
msgid ""
|
865 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
866 |
+
"or other custom code"
|
867 |
+
msgstr ""
|
868 |
+
"Waarschuwing! Wees voorzichtig - het verwijderen van een recht laat sommige "
|
869 |
+
"plugins of aangepaste code crashen"
|
870 |
+
|
871 |
+
#: ../includes/class-user-role-editor.php:911
|
872 |
+
msgid " Capability name (ID) can not be empty!"
|
873 |
+
msgstr "Een recht naam (ID) kan niet leeg zijn!"
|
874 |
+
|
875 |
+
#: ../includes/class-user-role-editor.php:912
|
876 |
+
msgid ""
|
877 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
878 |
+
"underscore only!"
|
879 |
+
msgstr ""
|
880 |
+
"Naam van het recht (ID) moet Latijnse letters, cijfers, koppeltekens of "
|
881 |
+
"underscores bevatten!!"
|
882 |
+
|
883 |
+
#: ../includes/settings-template.php:17
|
884 |
+
msgid "User Role Editor - Options"
|
885 |
+
msgstr "User Rol Editor - Opties"
|
886 |
+
|
887 |
+
#: ../includes/settings-template.php:39
|
888 |
+
msgid "About"
|
889 |
+
msgstr "Over"
|
890 |
+
|
891 |
+
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
892 |
+
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
893 |
+
msgid "Save"
|
894 |
+
msgstr "Opslaan"
|
895 |
+
|
896 |
+
#: ../includes/settings-template.php:138
|
897 |
+
msgid "Primary default role: "
|
898 |
+
msgstr "Standaard rol:"
|
899 |
+
|
900 |
+
#: ../includes/settings-template.php:145
|
901 |
+
msgid "Other default roles for new registered user: "
|
902 |
+
msgstr "Andere standaard rollen voor nieuw geregistreerde gebruiker:"
|
903 |
+
|
904 |
+
#: ../includes/settings-template.php:151
|
905 |
+
msgid ""
|
906 |
+
"Note for multisite environment: take into account that other default roles "
|
907 |
+
"should exist at the site, in order to be assigned to the new registered "
|
908 |
+
"users."
|
909 |
+
msgstr ""
|
910 |
+
"Noot voor multisite-omgeving: houdt er rekening mee dat er andere standaard "
|
911 |
+
"functies op de site moeten bestaan, om toegewezen te kunnen worden aan nieuw "
|
912 |
+
"geregistreerde gebruikers."
|
913 |
+
|
914 |
+
#: ../includes/settings-template.php:177
|
915 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
916 |
+
msgstr ""
|
917 |
+
"Sta niet super beheerders toe om gebruikers aan te maken, te bewerken en te "
|
918 |
+
"verwijderen"
|
919 |
+
|
920 |
+
#: ../includes/ure-user-edit.php:32
|
921 |
+
msgid "Network Super Admin"
|
922 |
+
msgstr "Network Super Beheerder"
|
923 |
+
|
924 |
+
#: ../includes/ure-user-edit.php:35
|
925 |
+
msgid "Change capabilities for user"
|
926 |
+
msgstr "Wijzig de rechten van deze gebruiker"
|
927 |
+
|
928 |
+
#: ../includes/ure-user-edit.php:72
|
929 |
+
msgid "Primary Role:"
|
930 |
+
msgstr "Primaire Rol:"
|
931 |
+
|
932 |
+
#: ../includes/ure-user-edit.php:82
|
933 |
+
msgid "bbPress Role:"
|
934 |
+
msgstr "bbPress Rol:"
|
935 |
+
|
936 |
+
#: ../includes/ure-user-edit.php:92
|
937 |
+
msgid "Other Roles:"
|
938 |
+
msgstr "Andere Rollen:"
|
lang/user-role-editor-ru_RU.mo
ADDED
Binary file
|
lang/{ure-ru_RU.po → user-role-editor-ru_RU.po}
RENAMED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -16,393 +16,100 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../includes/
|
20 |
-
msgid "User Role Editor - Options"
|
21 |
-
msgstr "Редактор ролей пользователей - Опции"
|
22 |
-
|
23 |
-
#: ../includes/settings-template.php:21
|
24 |
-
#: ../includes/class-user-role-editor.php:591
|
25 |
-
msgid "General"
|
26 |
-
msgstr "Общие"
|
27 |
-
|
28 |
-
#: ../includes/settings-template.php:26
|
29 |
-
#: ../includes/class-user-role-editor.php:597
|
30 |
-
msgid "Additional Modules"
|
31 |
-
msgstr "Дополнительные модули"
|
32 |
-
|
33 |
-
#: ../includes/settings-template.php:30
|
34 |
-
#: ../includes/class-user-role-editor.php:603
|
35 |
-
msgid "Default Roles"
|
36 |
-
msgstr "Роли по-умолчанию"
|
37 |
-
|
38 |
-
#: ../includes/settings-template.php:34
|
39 |
-
#: ../includes/class-user-role-editor.php:609
|
40 |
-
msgid "Multisite"
|
41 |
-
msgstr "Многосайтовые"
|
42 |
-
|
43 |
-
#: ../includes/settings-template.php:39
|
44 |
-
msgid "About"
|
45 |
-
msgstr "О плагине"
|
46 |
-
|
47 |
-
#: ../includes/settings-template.php:53
|
48 |
-
#: ../includes/class-ure-screen-help.php:15
|
49 |
-
msgid "Show Administrator role at User Role Editor"
|
50 |
-
msgstr "Отобразить роль Администратор в Редакторе ролей пользователей"
|
51 |
-
|
52 |
-
#: ../includes/settings-template.php:61
|
53 |
-
#: ../includes/class-ure-screen-help.php:18
|
54 |
-
msgid "Show capabilities in the human readable form"
|
55 |
-
msgstr "Показ прав доступа в читабельной форме"
|
56 |
-
|
57 |
-
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
58 |
-
#: ../includes/ure-user-edit.php:64 ../includes/class-ure-screen-help.php:21
|
59 |
-
msgid "Show deprecated capabilities"
|
60 |
-
msgstr "Показать устаревшие разрешения"
|
61 |
-
|
62 |
-
#: ../includes/settings-template.php:77
|
63 |
-
#: ../includes/class-ure-screen-help.php:25
|
64 |
-
msgid "Edit user capabilities"
|
65 |
-
msgstr "Изменять права пользователя"
|
66 |
-
|
67 |
-
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
68 |
-
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
69 |
-
msgid "Save"
|
70 |
-
msgstr "Сохранить"
|
71 |
-
|
72 |
-
#: ../includes/settings-template.php:111
|
73 |
-
#: ../includes/class-ure-screen-help.php:45
|
74 |
-
msgid "Count users without role"
|
75 |
-
msgstr "Подсчёт пользователей без роли"
|
76 |
-
|
77 |
-
#: ../includes/settings-template.php:138
|
78 |
-
msgid "Primary default role: "
|
79 |
-
msgstr "Основная роль по-умолчанию:"
|
80 |
-
|
81 |
-
#: ../includes/settings-template.php:145
|
82 |
-
msgid "Other default roles for new registered user: "
|
83 |
-
msgstr "Другие роли по-умолчанию для вновь зарегистрированного пользователя:"
|
84 |
-
|
85 |
-
#: ../includes/settings-template.php:151
|
86 |
-
msgid ""
|
87 |
-
"Note for multisite environment: take into account that other default roles "
|
88 |
-
"should exist at the site, in order to be assigned to the new registered "
|
89 |
-
"users."
|
90 |
-
msgstr ""
|
91 |
-
"Заметка для WordPress с несколькими сайтами: учтите, что для присвоения "
|
92 |
-
"вновь зарегистрированному пользователю дополнительных ролей по-умолчанию эти "
|
93 |
-
"роли должны существовать на этом сайте."
|
94 |
-
|
95 |
-
#: ../includes/settings-template.php:177
|
96 |
-
msgid "Allow non super administrators to create, edit, and delete users"
|
97 |
-
msgstr ""
|
98 |
-
"Разрешить простым администраторам создавать, изменять, удалять пользователей"
|
99 |
-
|
100 |
-
#: ../includes/class-user-role-editor.php:234
|
101 |
-
msgid "Change role for users without role"
|
102 |
-
msgstr "Изменить роль для пользователей без роли"
|
103 |
-
|
104 |
-
#: ../includes/class-user-role-editor.php:235
|
105 |
-
msgid "No rights"
|
106 |
-
msgstr "Нет прав"
|
107 |
-
|
108 |
-
#: ../includes/class-user-role-editor.php:236
|
109 |
-
msgid "Provide new role"
|
110 |
-
msgstr "Выберите новую роль"
|
111 |
-
|
112 |
-
#: ../includes/class-user-role-editor.php:320
|
113 |
-
#: ../includes/class-user-role-editor.php:322
|
114 |
-
msgid "You do not have permission to edit this user."
|
115 |
-
msgstr "Нет прав на редактирование этого пользователя"
|
116 |
-
|
117 |
-
#: ../includes/class-user-role-editor.php:460
|
118 |
-
msgid "Capabilities"
|
119 |
-
msgstr "Возможности"
|
120 |
-
|
121 |
-
#: ../includes/class-user-role-editor.php:558
|
122 |
-
msgid "Settings"
|
123 |
-
msgstr "Установки"
|
124 |
-
|
125 |
-
#: ../includes/class-user-role-editor.php:569
|
126 |
-
#: ../includes/class-ure-lib.php:2540
|
127 |
-
msgid "Changelog"
|
128 |
-
msgstr "Журнал изменений"
|
129 |
-
|
130 |
-
#: ../includes/class-user-role-editor.php:619
|
131 |
-
#: ../includes/class-user-role-editor.php:648
|
132 |
-
#: ../includes/class-user-role-editor.php:1030
|
133 |
-
#: ../includes/class-ure-lib.php:337
|
134 |
-
msgid "User Role Editor"
|
135 |
-
msgstr "Редактор ролей пользователей"
|
136 |
-
|
137 |
-
#: ../includes/class-user-role-editor.php:708
|
138 |
-
#: ../includes/class-user-role-editor.php:726
|
139 |
-
#: ../includes/class-user-role-editor.php:770
|
140 |
-
msgid "User Role Editor options are updated"
|
141 |
-
msgstr "Изменения в настройках Редактора ролей пользователей сохранены"
|
142 |
-
|
143 |
-
#: ../includes/class-user-role-editor.php:754
|
144 |
-
msgid "Default Roles are updated"
|
145 |
-
msgstr "Изменения в роли по-умолчанию сохранены"
|
146 |
-
|
147 |
-
#: ../includes/class-user-role-editor.php:779
|
148 |
-
msgid ""
|
149 |
-
"You do not have sufficient permissions to manage options for User Role "
|
150 |
-
"Editor."
|
151 |
-
msgstr "У вас нет прав на изменение настроек плагина"
|
152 |
-
|
153 |
-
#: ../includes/class-user-role-editor.php:851
|
154 |
-
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
155 |
-
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
156 |
-
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
157 |
-
msgid "Insufficient permissions to work with User Role Editor"
|
158 |
-
msgstr "Не достаточно прав для работы с User Role Editor"
|
159 |
-
|
160 |
-
#: ../includes/class-user-role-editor.php:977
|
161 |
-
msgid "Select All"
|
162 |
-
msgstr "Выбрать все"
|
163 |
-
|
164 |
-
#: ../includes/class-user-role-editor.php:978
|
165 |
-
msgid "Unselect All"
|
166 |
-
msgstr "Исключить все"
|
167 |
-
|
168 |
-
#: ../includes/class-user-role-editor.php:979
|
169 |
-
msgid "Reverse"
|
170 |
-
msgstr "Обратить"
|
171 |
-
|
172 |
-
#: ../includes/class-user-role-editor.php:980
|
173 |
-
msgid "Update"
|
174 |
-
msgstr "Сохранить"
|
175 |
-
|
176 |
-
#: ../includes/class-user-role-editor.php:981
|
177 |
-
msgid "Please confirm permissions update"
|
178 |
-
msgstr "Пожалуйста, подтвердите продолжение "
|
179 |
-
|
180 |
-
#: ../includes/class-user-role-editor.php:982
|
181 |
-
msgid "Add New Role"
|
182 |
-
msgstr "Добавить новую роль"
|
183 |
-
|
184 |
-
#: ../includes/class-user-role-editor.php:983
|
185 |
-
#: ../includes/class-user-role-editor.php:988
|
186 |
-
msgid "Rename Role"
|
187 |
-
msgstr "Переименовать роль"
|
188 |
-
|
189 |
-
#: ../includes/class-user-role-editor.php:984
|
190 |
-
msgid " Role name (ID) can not be empty!"
|
191 |
-
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
192 |
-
|
193 |
-
#: ../includes/class-user-role-editor.php:985
|
194 |
-
msgid ""
|
195 |
-
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
196 |
-
"only!"
|
197 |
-
msgstr ""
|
198 |
-
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
199 |
-
"тире и знак подчеркивания"
|
200 |
-
|
201 |
-
#: ../includes/class-user-role-editor.php:986
|
202 |
-
msgid ""
|
203 |
-
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
204 |
-
"it."
|
205 |
-
msgstr ""
|
206 |
-
"WordPress не поддерживает цифровые идентификаторы ролей. Начните имя роли с "
|
207 |
-
"латинских символов."
|
208 |
-
|
209 |
-
#: ../includes/class-user-role-editor.php:987
|
210 |
-
msgid "Add Role"
|
211 |
-
msgstr "Добавить роль"
|
212 |
-
|
213 |
-
#: ../includes/class-user-role-editor.php:989
|
214 |
-
msgid "Delete Role"
|
215 |
-
msgstr "Удалить роль"
|
216 |
-
|
217 |
-
#: ../includes/class-user-role-editor.php:990
|
218 |
-
msgid "Cancel"
|
219 |
-
msgstr "Отмена"
|
220 |
-
|
221 |
-
#: ../includes/class-user-role-editor.php:991
|
222 |
-
msgid "Add Capability"
|
223 |
-
msgstr "Новая возм."
|
224 |
-
|
225 |
-
#: ../includes/class-user-role-editor.php:992
|
226 |
-
#: ../includes/class-user-role-editor.php:1001
|
227 |
-
msgid "Delete Capability"
|
228 |
-
msgstr "Удалить возм."
|
229 |
-
|
230 |
-
#: ../includes/class-user-role-editor.php:993
|
231 |
-
msgid "Reset"
|
232 |
-
msgstr "Сброс"
|
233 |
-
|
234 |
-
#: ../includes/class-user-role-editor.php:994
|
235 |
-
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
236 |
-
msgstr ""
|
237 |
-
"ВНИМАНИЕ! Очистка восстановит роли по состоянию на момент установки "
|
238 |
-
"WordPress."
|
239 |
-
|
240 |
-
#: ../includes/class-user-role-editor.php:995
|
241 |
-
msgid ""
|
242 |
-
"If any plugins have changed capabilities in any way upon installation (such "
|
243 |
-
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
244 |
-
msgstr ""
|
245 |
-
"Если плагины изменяли пользовательские права после установки WordPress "
|
246 |
-
"(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
|
247 |
-
|
248 |
-
#: ../includes/class-user-role-editor.php:996
|
249 |
-
msgid ""
|
250 |
-
"For more information on how to undo changes and restore plugin capabilities "
|
251 |
-
"go to"
|
252 |
-
msgstr ""
|
253 |
-
"Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
|
254 |
-
"для плагинов, можно узнать здесь"
|
255 |
-
|
256 |
-
#: ../includes/class-user-role-editor.php:998
|
257 |
-
msgid "Continue?"
|
258 |
-
msgstr "Продолжить?"
|
259 |
-
|
260 |
-
#: ../includes/class-user-role-editor.php:999
|
261 |
-
msgid "Default Role"
|
262 |
-
msgstr "Роль по-умолчанию"
|
263 |
-
|
264 |
-
#: ../includes/class-user-role-editor.php:1000
|
265 |
-
msgid "Set New Default Role"
|
266 |
-
msgstr "Установить"
|
267 |
-
|
268 |
-
#: ../includes/class-user-role-editor.php:1002
|
269 |
-
msgid ""
|
270 |
-
"Warning! Be careful - removing critical capability could crash some plugin "
|
271 |
-
"or other custom code"
|
272 |
-
msgstr ""
|
273 |
-
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
274 |
-
"прекращеню работы одного из плагинов или другого кода."
|
275 |
-
|
276 |
-
#: ../includes/class-user-role-editor.php:1003
|
277 |
-
msgid " Capability name (ID) can not be empty!"
|
278 |
-
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
279 |
-
|
280 |
-
#: ../includes/class-user-role-editor.php:1004
|
281 |
-
msgid ""
|
282 |
-
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
283 |
-
"underscore only!"
|
284 |
-
msgstr ""
|
285 |
-
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
286 |
-
"цифры, знаки подчеркивания"
|
287 |
-
|
288 |
-
#: ../includes/class-user-role-editor.php:1033
|
289 |
-
#: ../includes/class-user-role-editor.php:1066
|
290 |
-
msgid "Other Roles"
|
291 |
-
msgstr "Другие роли"
|
292 |
-
|
293 |
-
#: ../includes/class-user-role-editor.php:1047
|
294 |
-
msgid "Edit"
|
295 |
-
msgstr "Изменить"
|
296 |
-
|
297 |
-
#: ../includes/ure-role-edit.php:17
|
298 |
-
msgid "Select Role and change its capabilities:"
|
299 |
-
msgstr "Выбери роль и измени права доступа"
|
300 |
-
|
301 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
302 |
-
msgid "Show capabilities in human readable form"
|
303 |
-
msgstr "Показ возможностей в читабельной форме"
|
304 |
-
|
305 |
-
#: ../includes/ure-role-edit.php:44
|
306 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
307 |
-
msgstr "Если включено, применить ко всем сайтам этой Сети"
|
308 |
-
|
309 |
-
#: ../includes/ure-role-edit.php:56
|
310 |
-
msgid "Apply to All Sites"
|
311 |
-
msgstr "Применить ко всем сайтам"
|
312 |
-
|
313 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
314 |
-
msgid "Core capabilities:"
|
315 |
-
msgstr "Возможности ядра:"
|
316 |
-
|
317 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
318 |
-
msgid "Quick filter:"
|
319 |
-
msgstr "Фильтр:"
|
320 |
-
|
321 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
322 |
-
msgid "Custom capabilities:"
|
323 |
-
msgstr "Дополнительные возможности :"
|
324 |
-
|
325 |
-
#: ../includes/class-ure-lib.php:245
|
326 |
msgid "Error: wrong request"
|
327 |
msgstr "Ошибка: неверный запрос"
|
328 |
|
329 |
-
#: ../includes/class-ure-lib.php:
|
330 |
msgid "Role name (ID): "
|
331 |
msgstr "Идентификатор роли (ID):"
|
332 |
|
333 |
-
#: ../includes/class-ure-lib.php:
|
334 |
msgid "Display Role Name: "
|
335 |
msgstr "Наименование роли:"
|
336 |
|
337 |
-
#: ../includes/class-ure-lib.php:
|
338 |
msgid "Make copy of: "
|
339 |
msgstr "Создать копию из:"
|
340 |
|
341 |
-
#: ../includes/class-ure-lib.php:
|
342 |
msgid "Select Role:"
|
343 |
msgstr "Выбери Роль:"
|
344 |
|
345 |
-
#: ../includes/class-ure-lib.php:
|
346 |
msgid "Delete:"
|
347 |
msgstr "Удалить"
|
348 |
|
349 |
-
#: ../includes/class-ure-lib.php:
|
350 |
msgid "Capability name (ID): "
|
351 |
msgstr "Идентификатор (ID):"
|
352 |
|
353 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
msgid "Error: "
|
355 |
msgstr "Ошибка:"
|
356 |
|
357 |
-
#: ../includes/class-ure-lib.php:
|
358 |
msgid "Role"
|
359 |
msgstr "Роль"
|
360 |
|
361 |
-
#: ../includes/class-ure-lib.php:
|
362 |
msgid "does not exist"
|
363 |
msgstr "не существует"
|
364 |
|
365 |
-
#: ../includes/class-ure-lib.php:
|
366 |
msgid "Role is updated successfully"
|
367 |
msgstr "Роль изменена успешно"
|
368 |
|
369 |
-
#: ../includes/class-ure-lib.php:
|
370 |
msgid "Roles are updated for all network"
|
371 |
msgstr "Роли изменены для всей сети"
|
372 |
|
373 |
-
#: ../includes/class-ure-lib.php:
|
374 |
msgid "Error occured during role(s) update"
|
375 |
msgstr "При изменении роли произошла ошибка"
|
376 |
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
msgid "User capabilities are updated successfully"
|
379 |
msgstr "Права пользователя изменены успешно"
|
380 |
|
381 |
-
#: ../includes/class-ure-lib.php:
|
382 |
msgid "Error occured during user update"
|
383 |
msgstr "При изменении прав пользователя произошла ошибка "
|
384 |
|
385 |
-
#: ../includes/class-ure-lib.php:
|
386 |
msgid "User Roles are restored to WordPress default values. "
|
387 |
msgstr "Роли возвращены к начальному состоянию"
|
388 |
|
389 |
-
#: ../includes/class-ure-lib.php:
|
390 |
msgid "read about"
|
391 |
msgstr "прочесть о"
|
392 |
|
393 |
-
#: ../includes/class-ure-lib.php:
|
394 |
msgid "user capability"
|
395 |
msgstr "праве пользователя"
|
396 |
|
397 |
-
#: ../includes/class-ure-lib.php:
|
398 |
msgid "Help"
|
399 |
msgstr "Помощь"
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
402 |
msgid "Error is occur. Please check the log file."
|
403 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
404 |
|
405 |
-
#: ../includes/class-ure-lib.php:
|
406 |
msgid ""
|
407 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
408 |
"only!"
|
@@ -410,7 +117,7 @@ msgstr ""
|
|
410 |
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
411 |
"цифры, знак подчеркивания и дефис."
|
412 |
|
413 |
-
#: ../includes/class-ure-lib.php:
|
414 |
msgid ""
|
415 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
416 |
"characters to it."
|
@@ -418,399 +125,454 @@ msgstr ""
|
|
418 |
"Ошибка: WordPress не поддерживает цифровые идентификаторы ролей. Начните имя "
|
419 |
"роли с латинских символов."
|
420 |
|
421 |
-
#: ../includes/class-ure-lib.php:
|
422 |
#, php-format
|
423 |
msgid "Role %s exists already"
|
424 |
msgstr "Роль %s уже существует"
|
425 |
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
msgid "Error is encountered during new role create operation"
|
428 |
msgstr "Произошла ошибка при создании новой роли"
|
429 |
|
430 |
-
#: ../includes/class-ure-lib.php:
|
431 |
#, php-format
|
432 |
msgid "Role %s is created successfully"
|
433 |
msgstr "Роль %s создана успешно"
|
434 |
|
435 |
-
#: ../includes/class-ure-lib.php:
|
436 |
msgid "Error: Role ID is empty!"
|
437 |
msgstr "Ошибка: пустой идентификатор (ID) роли!"
|
438 |
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
msgid "Error: Empty role display name is not allowed."
|
441 |
msgstr "Ошибка: пустое наименование роли не допускается"
|
442 |
|
443 |
-
#: ../includes/class-ure-lib.php:
|
444 |
#, php-format
|
445 |
msgid "Role %s does not exists"
|
446 |
msgstr "Роль %s не существует"
|
447 |
|
448 |
-
#: ../includes/class-ure-lib.php:
|
449 |
#, php-format
|
450 |
msgid "Role %s is renamed to %s successfully"
|
451 |
msgstr "Роль %s успешно переименована в %s"
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
msgid "Error encountered during role delete operation"
|
455 |
msgstr "Произошла ошибка при удалении роли"
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
msgid "Unused roles are deleted successfully"
|
459 |
msgstr "Неиспользуемые роли удалены успешно"
|
460 |
|
461 |
-
#: ../includes/class-ure-lib.php:
|
462 |
#, php-format
|
463 |
msgid "Role %s is deleted successfully"
|
464 |
msgstr "Роль %s удалена успешно"
|
465 |
|
466 |
-
#: ../includes/class-ure-lib.php:
|
467 |
msgid "Error encountered during default role change operation"
|
468 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
469 |
|
470 |
-
#: ../includes/class-ure-lib.php:
|
471 |
#, php-format
|
472 |
msgid "Default role for new users is set to %s successfully"
|
473 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
476 |
msgid "Editor"
|
477 |
msgstr "Редактор"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Author"
|
481 |
msgstr "Автор"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Contributor"
|
485 |
msgstr "Участник"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Subscriber"
|
489 |
msgstr "Подписчик"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Switch themes"
|
493 |
msgstr "Менять темы"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Edit themes"
|
497 |
msgstr "Изменять темы"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Activate plugins"
|
501 |
msgstr "Активировать плагины"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Edit plugins"
|
505 |
msgstr "Редактировать плагины"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Edit users"
|
509 |
msgstr "Изменять пользователей"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Edit files"
|
513 |
msgstr "Изменять файлы"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Manage options"
|
517 |
msgstr "Управлять установками"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Moderate comments"
|
521 |
msgstr "Модерировать комментарии"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Manage categories"
|
525 |
msgstr "Управлять категориями"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Manage links"
|
529 |
msgstr "Управлять ссылками"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Upload files"
|
533 |
msgstr "Загружать файлы"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Import"
|
537 |
msgstr "Импорт"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Unfiltered html"
|
541 |
msgstr "html без фильтра"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Edit posts"
|
545 |
msgstr "Изменять статьи"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Edit others posts"
|
549 |
msgstr "Изменять чужие статьи"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Edit published posts"
|
553 |
msgstr "Редактировать опубликованные статьи"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Publish posts"
|
557 |
msgstr "Публиковать статьи"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Edit pages"
|
561 |
msgstr "Изменять страницы"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Read"
|
565 |
msgstr "Чтение"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Level 10"
|
569 |
msgstr "Уровень 10"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Level 9"
|
573 |
msgstr "Уровень 9"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Level 8"
|
577 |
msgstr "Уровень 9"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Level 7"
|
581 |
msgstr "Уровень 7"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Level 6"
|
585 |
msgstr "Уровень 6"
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Level 5"
|
589 |
msgstr "Уровень 5"
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Level 4"
|
593 |
msgstr "Уровень 4"
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Level 3"
|
597 |
msgstr "Уровень 3"
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Level 2"
|
601 |
msgstr "Уровень 2"
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
msgid "Level 1"
|
605 |
msgstr "Уровень 1"
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Level 0"
|
609 |
msgstr "Уровень 0"
|
610 |
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Edit others pages"
|
613 |
msgstr "Редактировать чужие страницы"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Edit published pages"
|
617 |
msgstr "Редактировать опубликованные страницы"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Publish pages"
|
621 |
msgstr "Публиковать страницы"
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Delete pages"
|
625 |
msgstr "Удалять страницы"
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Delete others pages"
|
629 |
msgstr "Удалить чужие страницы"
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Delete published pages"
|
633 |
msgstr "Удалять опубликованные страницы"
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Delete posts"
|
637 |
msgstr "Удалять статьи"
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Delete others posts"
|
641 |
msgstr "Удалять чужие статьи"
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "Delete published posts"
|
645 |
msgstr "Удалять опубликованные статьи"
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Delete private posts"
|
649 |
msgstr "Удалять частные статьи"
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Edit private posts"
|
653 |
msgstr "Редактировать частные статьи"
|
654 |
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Read private posts"
|
657 |
msgstr "Читать частные статьи"
|
658 |
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
msgid "Delete private pages"
|
661 |
msgstr "Удалять частные страницы"
|
662 |
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Edit private pages"
|
665 |
msgstr "Редактировать частные страницы"
|
666 |
|
667 |
-
#: ../includes/class-ure-lib.php:
|
668 |
msgid "Read private pages"
|
669 |
msgstr "Читать частные страницы"
|
670 |
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Delete users"
|
673 |
msgstr "Удалять пользователей"
|
674 |
|
675 |
-
#: ../includes/class-ure-lib.php:
|
676 |
msgid "Create users"
|
677 |
msgstr "Создавать пользователей"
|
678 |
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Unfiltered upload"
|
681 |
msgstr "Загрузка без фильтра"
|
682 |
|
683 |
-
#: ../includes/class-ure-lib.php:
|
684 |
msgid "Edit dashboard"
|
685 |
msgstr "Изменять панель администратора"
|
686 |
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Update plugins"
|
689 |
msgstr "Обновлять плагины"
|
690 |
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Delete plugins"
|
693 |
msgstr "Удалять плагины"
|
694 |
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "Install plugins"
|
697 |
msgstr "Устанавливать плагины"
|
698 |
|
699 |
-
#: ../includes/class-ure-lib.php:
|
700 |
msgid "Update themes"
|
701 |
msgstr "Обновлять темы"
|
702 |
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Install themes"
|
705 |
msgstr "Устанавливать темы"
|
706 |
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
msgid "Update core"
|
709 |
msgstr "Обновлять ядро"
|
710 |
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "List users"
|
713 |
msgstr "Список пользователей"
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
msgid "Remove users"
|
717 |
msgstr "Удалять пользователей"
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Add users"
|
721 |
msgstr "Добавлять пользователей"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
msgid "Promote users"
|
725 |
msgstr "Продвигать пользователей"
|
726 |
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
msgid "Edit theme options"
|
729 |
msgstr "Изменять настройки темы"
|
730 |
|
731 |
-
#: ../includes/class-ure-lib.php:
|
732 |
msgid "Delete themes"
|
733 |
msgstr "Удалять темы"
|
734 |
|
735 |
-
#: ../includes/class-ure-lib.php:
|
736 |
msgid "Export"
|
737 |
msgstr "Экспорт"
|
738 |
|
739 |
-
#: ../includes/class-ure-lib.php:
|
740 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
741 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
742 |
|
743 |
-
#: ../includes/class-ure-lib.php:
|
744 |
#, php-format
|
745 |
msgid "Capability %s is added successfully"
|
746 |
msgstr "Возможность %s добавлена успешно"
|
747 |
|
748 |
-
#: ../includes/class-ure-lib.php:
|
749 |
#, php-format
|
750 |
msgid "Capability %s exists already"
|
751 |
msgstr "Возможность %s уже существует"
|
752 |
|
753 |
-
#: ../includes/class-ure-lib.php:
|
754 |
#, php-format
|
755 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
756 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
757 |
|
758 |
-
#: ../includes/class-ure-lib.php:
|
759 |
#, php-format
|
760 |
-
msgid "Capability %s
|
761 |
-
msgstr "
|
762 |
|
763 |
-
#: ../includes/class-ure-lib.php:
|
764 |
msgid "Version:"
|
765 |
msgstr "Версия:"
|
766 |
|
767 |
-
#: ../includes/class-ure-lib.php:
|
768 |
msgid "Author's website"
|
769 |
msgstr "Вебсайт автора"
|
770 |
|
771 |
-
#: ../includes/class-ure-lib.php:
|
772 |
msgid "Plugin webpage"
|
773 |
msgstr "Страница плагина"
|
774 |
|
775 |
-
#: ../includes/class-ure-lib.php:
|
776 |
msgid "Plugin download"
|
777 |
msgstr "Загрузить плагин"
|
778 |
|
779 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
780 |
msgid "FAQ"
|
781 |
msgstr "Часто задаваемые вопросы"
|
782 |
|
783 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
784 |
msgid "None"
|
785 |
msgstr "Нет"
|
786 |
|
787 |
-
#: ../includes/class-ure-lib.php:
|
788 |
-
msgid "
|
789 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
790 |
|
791 |
-
#: ../includes/
|
792 |
-
msgid "
|
793 |
-
msgstr "
|
794 |
|
795 |
-
#: ../includes/ure-user-edit.php:
|
796 |
-
msgid "
|
797 |
-
msgstr "
|
798 |
|
799 |
-
#: ../includes/
|
800 |
-
|
801 |
-
|
|
|
|
|
802 |
|
803 |
-
#: ../includes/
|
804 |
-
msgid "
|
805 |
-
msgstr "
|
806 |
|
807 |
-
#: ../includes/
|
808 |
-
|
809 |
-
|
|
|
810 |
|
811 |
-
#: ../includes/
|
812 |
-
msgid "
|
813 |
-
msgstr "
|
|
|
|
|
|
|
|
|
814 |
|
815 |
#: ../includes/class-ure-screen-help.php:12
|
816 |
#: ../includes/class-ure-screen-help.php:41
|
@@ -819,6 +581,11 @@ msgstr "Другие Роли:"
|
|
819 |
msgid "User Role Editor Options page help"
|
820 |
msgstr "Редактор ролей пользователей - Опции - помощь"
|
821 |
|
|
|
|
|
|
|
|
|
|
|
822 |
#: ../includes/class-ure-screen-help.php:16
|
823 |
msgid ""
|
824 |
"turn this option on in order to make the \"Administrator\" role available at "
|
@@ -829,6 +596,11 @@ msgstr ""
|
|
829 |
"Редакторе Ролей пользователей. Из соображений безопасности по-умолчанию она "
|
830 |
"скрыта."
|
831 |
|
|
|
|
|
|
|
|
|
|
|
832 |
#: ../includes/class-ure-screen-help.php:19
|
833 |
msgid ""
|
834 |
"automatically converts capability names from the technical form for internal "
|
@@ -851,6 +623,11 @@ msgstr ""
|
|
851 |
"обеспечения совместимости со старыми темами и плагинами. Включение данной "
|
852 |
"опции покажет все устаревшие права пользователей."
|
853 |
|
|
|
|
|
|
|
|
|
|
|
854 |
#: ../includes/class-ure-screen-help.php:26
|
855 |
msgid ""
|
856 |
"If turned off - capabilities section of selected user is shown in readonly "
|
@@ -861,6 +638,11 @@ msgstr ""
|
|
861 |
"\"только чтение\". Администратор не может присваивать права пользователю "
|
862 |
"напрямую, только через роли."
|
863 |
|
|
|
|
|
|
|
|
|
|
|
864 |
#: ../includes/class-ure-screen-help.php:46
|
865 |
msgid ""
|
866 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
@@ -904,6 +686,247 @@ msgstr ""
|
|
904 |
"в многосайтовой сети WordPress. Включите эту опцию, чтобы отменить это "
|
905 |
"ограничение."
|
906 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
907 |
#~ msgid "select roles below"
|
908 |
#~ msgstr "выберите роли ниже"
|
909 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-11 21:06+0100\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: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/class-ure-lib.php:247
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "Error: wrong request"
|
21 |
msgstr "Ошибка: неверный запрос"
|
22 |
|
23 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
24 |
msgid "Role name (ID): "
|
25 |
msgstr "Идентификатор роли (ID):"
|
26 |
|
27 |
+
#: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
|
28 |
msgid "Display Role Name: "
|
29 |
msgstr "Наименование роли:"
|
30 |
|
31 |
+
#: ../includes/class-ure-lib.php:284
|
32 |
msgid "Make copy of: "
|
33 |
msgstr "Создать копию из:"
|
34 |
|
35 |
+
#: ../includes/class-ure-lib.php:300
|
36 |
msgid "Select Role:"
|
37 |
msgstr "Выбери Роль:"
|
38 |
|
39 |
+
#: ../includes/class-ure-lib.php:315
|
40 |
msgid "Delete:"
|
41 |
msgstr "Удалить"
|
42 |
|
43 |
+
#: ../includes/class-ure-lib.php:322
|
44 |
msgid "Capability name (ID): "
|
45 |
msgstr "Идентификатор (ID):"
|
46 |
|
47 |
+
#: ../includes/class-ure-lib.php:339
|
48 |
+
#: ../includes/class-user-role-editor.php:596
|
49 |
+
#: ../includes/class-user-role-editor.php:625
|
50 |
+
msgid "User Role Editor"
|
51 |
+
msgstr "Редактор ролей пользователей"
|
52 |
+
|
53 |
+
#: ../includes/class-ure-lib.php:436
|
54 |
msgid "Error: "
|
55 |
msgstr "Ошибка:"
|
56 |
|
57 |
+
#: ../includes/class-ure-lib.php:436
|
58 |
msgid "Role"
|
59 |
msgstr "Роль"
|
60 |
|
61 |
+
#: ../includes/class-ure-lib.php:437
|
62 |
msgid "does not exist"
|
63 |
msgstr "не существует"
|
64 |
|
65 |
+
#: ../includes/class-ure-lib.php:480
|
66 |
msgid "Role is updated successfully"
|
67 |
msgstr "Роль изменена успешно"
|
68 |
|
69 |
+
#: ../includes/class-ure-lib.php:482
|
70 |
msgid "Roles are updated for all network"
|
71 |
msgstr "Роли изменены для всей сети"
|
72 |
|
73 |
+
#: ../includes/class-ure-lib.php:488
|
74 |
msgid "Error occured during role(s) update"
|
75 |
msgstr "При изменении роли произошла ошибка"
|
76 |
|
77 |
+
#: ../includes/class-ure-lib.php:495
|
78 |
msgid "User capabilities are updated successfully"
|
79 |
msgstr "Права пользователя изменены успешно"
|
80 |
|
81 |
+
#: ../includes/class-ure-lib.php:500
|
82 |
msgid "Error occured during user update"
|
83 |
msgstr "При изменении прав пользователя произошла ошибка "
|
84 |
|
85 |
+
#: ../includes/class-ure-lib.php:558
|
86 |
msgid "User Roles are restored to WordPress default values. "
|
87 |
msgstr "Роли возвращены к начальному состоянию"
|
88 |
|
89 |
+
#: ../includes/class-ure-lib.php:1436
|
90 |
msgid "read about"
|
91 |
msgstr "прочесть о"
|
92 |
|
93 |
+
#: ../includes/class-ure-lib.php:1437
|
94 |
msgid "user capability"
|
95 |
msgstr "праве пользователя"
|
96 |
|
97 |
+
#: ../includes/class-ure-lib.php:1438
|
98 |
msgid "Help"
|
99 |
msgstr "Помощь"
|
100 |
|
101 |
+
#: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
|
102 |
+
#: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
|
103 |
+
#: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
|
104 |
+
#: ../includes/class-user-role-editor.php:828
|
105 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
106 |
+
msgstr "Не достаточно прав для работы с User Role Editor"
|
107 |
+
|
108 |
+
#: ../includes/class-ure-lib.php:1909
|
109 |
msgid "Error is occur. Please check the log file."
|
110 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
111 |
|
112 |
+
#: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
|
113 |
msgid ""
|
114 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
115 |
"only!"
|
117 |
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
118 |
"цифры, знак подчеркивания и дефис."
|
119 |
|
120 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
121 |
msgid ""
|
122 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
123 |
"characters to it."
|
125 |
"Ошибка: WordPress не поддерживает цифровые идентификаторы ролей. Начните имя "
|
126 |
"роли с латинских символов."
|
127 |
|
128 |
+
#: ../includes/class-ure-lib.php:1974
|
129 |
#, php-format
|
130 |
msgid "Role %s exists already"
|
131 |
msgstr "Роль %s уже существует"
|
132 |
|
133 |
+
#: ../includes/class-ure-lib.php:1989
|
134 |
msgid "Error is encountered during new role create operation"
|
135 |
msgstr "Произошла ошибка при создании новой роли"
|
136 |
|
137 |
+
#: ../includes/class-ure-lib.php:1991
|
138 |
#, php-format
|
139 |
msgid "Role %s is created successfully"
|
140 |
msgstr "Роль %s создана успешно"
|
141 |
|
142 |
+
#: ../includes/class-ure-lib.php:2015
|
143 |
msgid "Error: Role ID is empty!"
|
144 |
msgstr "Ошибка: пустой идентификатор (ID) роли!"
|
145 |
|
146 |
+
#: ../includes/class-ure-lib.php:2033
|
147 |
msgid "Error: Empty role display name is not allowed."
|
148 |
msgstr "Ошибка: пустое наименование роли не допускается"
|
149 |
|
150 |
+
#: ../includes/class-ure-lib.php:2040
|
151 |
#, php-format
|
152 |
msgid "Role %s does not exists"
|
153 |
msgstr "Роль %s не существует"
|
154 |
|
155 |
+
#: ../includes/class-ure-lib.php:2048
|
156 |
#, php-format
|
157 |
msgid "Role %s is renamed to %s successfully"
|
158 |
msgstr "Роль %s успешно переименована в %s"
|
159 |
|
160 |
+
#: ../includes/class-ure-lib.php:2121
|
161 |
msgid "Error encountered during role delete operation"
|
162 |
msgstr "Произошла ошибка при удалении роли"
|
163 |
|
164 |
+
#: ../includes/class-ure-lib.php:2123
|
165 |
msgid "Unused roles are deleted successfully"
|
166 |
msgstr "Неиспользуемые роли удалены успешно"
|
167 |
|
168 |
+
#: ../includes/class-ure-lib.php:2125
|
169 |
#, php-format
|
170 |
msgid "Role %s is deleted successfully"
|
171 |
msgstr "Роль %s удалена успешно"
|
172 |
|
173 |
+
#: ../includes/class-ure-lib.php:2153
|
174 |
msgid "Error encountered during default role change operation"
|
175 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
176 |
|
177 |
+
#: ../includes/class-ure-lib.php:2156
|
178 |
#, php-format
|
179 |
msgid "Default role for new users is set to %s successfully"
|
180 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
181 |
|
182 |
+
#: ../includes/class-ure-lib.php:2159
|
183 |
+
msgid "Can not set Administrator role as a default one"
|
184 |
+
msgstr ""
|
185 |
+
"Запрещается использовать роль Администратор в качестве роли по-умолчанию"
|
186 |
+
|
187 |
+
#: ../includes/class-ure-lib.php:2161
|
188 |
+
msgid "This role does not exist - "
|
189 |
+
msgstr "Эта роль не существует"
|
190 |
+
|
191 |
+
#: ../includes/class-ure-lib.php:2177
|
192 |
msgid "Editor"
|
193 |
msgstr "Редактор"
|
194 |
|
195 |
+
#: ../includes/class-ure-lib.php:2178
|
196 |
msgid "Author"
|
197 |
msgstr "Автор"
|
198 |
|
199 |
+
#: ../includes/class-ure-lib.php:2179
|
200 |
msgid "Contributor"
|
201 |
msgstr "Участник"
|
202 |
|
203 |
+
#: ../includes/class-ure-lib.php:2180
|
204 |
msgid "Subscriber"
|
205 |
msgstr "Подписчик"
|
206 |
|
207 |
+
#: ../includes/class-ure-lib.php:2182
|
208 |
msgid "Switch themes"
|
209 |
msgstr "Менять темы"
|
210 |
|
211 |
+
#: ../includes/class-ure-lib.php:2183
|
212 |
msgid "Edit themes"
|
213 |
msgstr "Изменять темы"
|
214 |
|
215 |
+
#: ../includes/class-ure-lib.php:2184
|
216 |
msgid "Activate plugins"
|
217 |
msgstr "Активировать плагины"
|
218 |
|
219 |
+
#: ../includes/class-ure-lib.php:2185
|
220 |
msgid "Edit plugins"
|
221 |
msgstr "Редактировать плагины"
|
222 |
|
223 |
+
#: ../includes/class-ure-lib.php:2186
|
224 |
msgid "Edit users"
|
225 |
msgstr "Изменять пользователей"
|
226 |
|
227 |
+
#: ../includes/class-ure-lib.php:2187
|
228 |
msgid "Edit files"
|
229 |
msgstr "Изменять файлы"
|
230 |
|
231 |
+
#: ../includes/class-ure-lib.php:2188
|
232 |
msgid "Manage options"
|
233 |
msgstr "Управлять установками"
|
234 |
|
235 |
+
#: ../includes/class-ure-lib.php:2189
|
236 |
msgid "Moderate comments"
|
237 |
msgstr "Модерировать комментарии"
|
238 |
|
239 |
+
#: ../includes/class-ure-lib.php:2190
|
240 |
msgid "Manage categories"
|
241 |
msgstr "Управлять категориями"
|
242 |
|
243 |
+
#: ../includes/class-ure-lib.php:2191
|
244 |
msgid "Manage links"
|
245 |
msgstr "Управлять ссылками"
|
246 |
|
247 |
+
#: ../includes/class-ure-lib.php:2192
|
248 |
msgid "Upload files"
|
249 |
msgstr "Загружать файлы"
|
250 |
|
251 |
+
#: ../includes/class-ure-lib.php:2193
|
252 |
msgid "Import"
|
253 |
msgstr "Импорт"
|
254 |
|
255 |
+
#: ../includes/class-ure-lib.php:2194
|
256 |
msgid "Unfiltered html"
|
257 |
msgstr "html без фильтра"
|
258 |
|
259 |
+
#: ../includes/class-ure-lib.php:2195
|
260 |
msgid "Edit posts"
|
261 |
msgstr "Изменять статьи"
|
262 |
|
263 |
+
#: ../includes/class-ure-lib.php:2196
|
264 |
msgid "Edit others posts"
|
265 |
msgstr "Изменять чужие статьи"
|
266 |
|
267 |
+
#: ../includes/class-ure-lib.php:2197
|
268 |
msgid "Edit published posts"
|
269 |
msgstr "Редактировать опубликованные статьи"
|
270 |
|
271 |
+
#: ../includes/class-ure-lib.php:2198
|
272 |
msgid "Publish posts"
|
273 |
msgstr "Публиковать статьи"
|
274 |
|
275 |
+
#: ../includes/class-ure-lib.php:2199
|
276 |
msgid "Edit pages"
|
277 |
msgstr "Изменять страницы"
|
278 |
|
279 |
+
#: ../includes/class-ure-lib.php:2200
|
280 |
msgid "Read"
|
281 |
msgstr "Чтение"
|
282 |
|
283 |
+
#: ../includes/class-ure-lib.php:2201
|
284 |
msgid "Level 10"
|
285 |
msgstr "Уровень 10"
|
286 |
|
287 |
+
#: ../includes/class-ure-lib.php:2202
|
288 |
msgid "Level 9"
|
289 |
msgstr "Уровень 9"
|
290 |
|
291 |
+
#: ../includes/class-ure-lib.php:2203
|
292 |
msgid "Level 8"
|
293 |
msgstr "Уровень 9"
|
294 |
|
295 |
+
#: ../includes/class-ure-lib.php:2204
|
296 |
msgid "Level 7"
|
297 |
msgstr "Уровень 7"
|
298 |
|
299 |
+
#: ../includes/class-ure-lib.php:2205
|
300 |
msgid "Level 6"
|
301 |
msgstr "Уровень 6"
|
302 |
|
303 |
+
#: ../includes/class-ure-lib.php:2206
|
304 |
msgid "Level 5"
|
305 |
msgstr "Уровень 5"
|
306 |
|
307 |
+
#: ../includes/class-ure-lib.php:2207
|
308 |
msgid "Level 4"
|
309 |
msgstr "Уровень 4"
|
310 |
|
311 |
+
#: ../includes/class-ure-lib.php:2208
|
312 |
msgid "Level 3"
|
313 |
msgstr "Уровень 3"
|
314 |
|
315 |
+
#: ../includes/class-ure-lib.php:2209
|
316 |
msgid "Level 2"
|
317 |
msgstr "Уровень 2"
|
318 |
|
319 |
+
#: ../includes/class-ure-lib.php:2210
|
320 |
msgid "Level 1"
|
321 |
msgstr "Уровень 1"
|
322 |
|
323 |
+
#: ../includes/class-ure-lib.php:2211
|
324 |
msgid "Level 0"
|
325 |
msgstr "Уровень 0"
|
326 |
|
327 |
+
#: ../includes/class-ure-lib.php:2212
|
328 |
msgid "Edit others pages"
|
329 |
msgstr "Редактировать чужие страницы"
|
330 |
|
331 |
+
#: ../includes/class-ure-lib.php:2213
|
332 |
msgid "Edit published pages"
|
333 |
msgstr "Редактировать опубликованные страницы"
|
334 |
|
335 |
+
#: ../includes/class-ure-lib.php:2214
|
336 |
msgid "Publish pages"
|
337 |
msgstr "Публиковать страницы"
|
338 |
|
339 |
+
#: ../includes/class-ure-lib.php:2215
|
340 |
msgid "Delete pages"
|
341 |
msgstr "Удалять страницы"
|
342 |
|
343 |
+
#: ../includes/class-ure-lib.php:2216
|
344 |
msgid "Delete others pages"
|
345 |
msgstr "Удалить чужие страницы"
|
346 |
|
347 |
+
#: ../includes/class-ure-lib.php:2217
|
348 |
msgid "Delete published pages"
|
349 |
msgstr "Удалять опубликованные страницы"
|
350 |
|
351 |
+
#: ../includes/class-ure-lib.php:2218
|
352 |
msgid "Delete posts"
|
353 |
msgstr "Удалять статьи"
|
354 |
|
355 |
+
#: ../includes/class-ure-lib.php:2219
|
356 |
msgid "Delete others posts"
|
357 |
msgstr "Удалять чужие статьи"
|
358 |
|
359 |
+
#: ../includes/class-ure-lib.php:2220
|
360 |
msgid "Delete published posts"
|
361 |
msgstr "Удалять опубликованные статьи"
|
362 |
|
363 |
+
#: ../includes/class-ure-lib.php:2221
|
364 |
msgid "Delete private posts"
|
365 |
msgstr "Удалять частные статьи"
|
366 |
|
367 |
+
#: ../includes/class-ure-lib.php:2222
|
368 |
msgid "Edit private posts"
|
369 |
msgstr "Редактировать частные статьи"
|
370 |
|
371 |
+
#: ../includes/class-ure-lib.php:2223
|
372 |
msgid "Read private posts"
|
373 |
msgstr "Читать частные статьи"
|
374 |
|
375 |
+
#: ../includes/class-ure-lib.php:2224
|
376 |
msgid "Delete private pages"
|
377 |
msgstr "Удалять частные страницы"
|
378 |
|
379 |
+
#: ../includes/class-ure-lib.php:2225
|
380 |
msgid "Edit private pages"
|
381 |
msgstr "Редактировать частные страницы"
|
382 |
|
383 |
+
#: ../includes/class-ure-lib.php:2226
|
384 |
msgid "Read private pages"
|
385 |
msgstr "Читать частные страницы"
|
386 |
|
387 |
+
#: ../includes/class-ure-lib.php:2227
|
388 |
msgid "Delete users"
|
389 |
msgstr "Удалять пользователей"
|
390 |
|
391 |
+
#: ../includes/class-ure-lib.php:2228
|
392 |
msgid "Create users"
|
393 |
msgstr "Создавать пользователей"
|
394 |
|
395 |
+
#: ../includes/class-ure-lib.php:2229
|
396 |
msgid "Unfiltered upload"
|
397 |
msgstr "Загрузка без фильтра"
|
398 |
|
399 |
+
#: ../includes/class-ure-lib.php:2230
|
400 |
msgid "Edit dashboard"
|
401 |
msgstr "Изменять панель администратора"
|
402 |
|
403 |
+
#: ../includes/class-ure-lib.php:2231
|
404 |
msgid "Update plugins"
|
405 |
msgstr "Обновлять плагины"
|
406 |
|
407 |
+
#: ../includes/class-ure-lib.php:2232
|
408 |
msgid "Delete plugins"
|
409 |
msgstr "Удалять плагины"
|
410 |
|
411 |
+
#: ../includes/class-ure-lib.php:2233
|
412 |
msgid "Install plugins"
|
413 |
msgstr "Устанавливать плагины"
|
414 |
|
415 |
+
#: ../includes/class-ure-lib.php:2234
|
416 |
msgid "Update themes"
|
417 |
msgstr "Обновлять темы"
|
418 |
|
419 |
+
#: ../includes/class-ure-lib.php:2235
|
420 |
msgid "Install themes"
|
421 |
msgstr "Устанавливать темы"
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:2236
|
424 |
msgid "Update core"
|
425 |
msgstr "Обновлять ядро"
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:2237
|
428 |
msgid "List users"
|
429 |
msgstr "Список пользователей"
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:2238
|
432 |
msgid "Remove users"
|
433 |
msgstr "Удалять пользователей"
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:2239
|
436 |
msgid "Add users"
|
437 |
msgstr "Добавлять пользователей"
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:2240
|
440 |
msgid "Promote users"
|
441 |
msgstr "Продвигать пользователей"
|
442 |
|
443 |
+
#: ../includes/class-ure-lib.php:2241
|
444 |
msgid "Edit theme options"
|
445 |
msgstr "Изменять настройки темы"
|
446 |
|
447 |
+
#: ../includes/class-ure-lib.php:2242
|
448 |
msgid "Delete themes"
|
449 |
msgstr "Удалять темы"
|
450 |
|
451 |
+
#: ../includes/class-ure-lib.php:2243
|
452 |
msgid "Export"
|
453 |
msgstr "Экспорт"
|
454 |
|
455 |
+
#: ../includes/class-ure-lib.php:2366
|
456 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
457 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
458 |
|
459 |
+
#: ../includes/class-ure-lib.php:2379
|
460 |
#, php-format
|
461 |
msgid "Capability %s is added successfully"
|
462 |
msgstr "Возможность %s добавлена успешно"
|
463 |
|
464 |
+
#: ../includes/class-ure-lib.php:2381
|
465 |
#, php-format
|
466 |
msgid "Capability %s exists already"
|
467 |
msgstr "Возможность %s уже существует"
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:2410
|
470 |
#, php-format
|
471 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
472 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
473 |
|
474 |
+
#: ../includes/class-ure-lib.php:2429
|
475 |
#, php-format
|
476 |
+
msgid "Capability %s was removed successfully"
|
477 |
+
msgstr "Право %s удалено успешно"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:2497
|
480 |
msgid "Version:"
|
481 |
msgstr "Версия:"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:2498
|
484 |
msgid "Author's website"
|
485 |
msgstr "Вебсайт автора"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:2499
|
488 |
msgid "Plugin webpage"
|
489 |
msgstr "Страница плагина"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:2500
|
492 |
msgid "Plugin download"
|
493 |
msgstr "Загрузить плагин"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:2501
|
496 |
+
#: ../includes/class-user-role-editor.php:546
|
497 |
+
msgid "Changelog"
|
498 |
+
msgstr "Журнал изменений"
|
499 |
+
|
500 |
+
#: ../includes/class-ure-lib.php:2502
|
501 |
msgid "FAQ"
|
502 |
msgstr "Часто задаваемые вопросы"
|
503 |
|
504 |
+
#: ../includes/class-ure-lib.php:2575
|
505 |
+
msgid "Delete All Unused Roles"
|
506 |
+
msgstr "Удалить все неиспользуемые роли"
|
507 |
+
|
508 |
+
#: ../includes/class-ure-lib.php:2588
|
509 |
msgid "None"
|
510 |
msgstr "Нет"
|
511 |
|
512 |
+
#: ../includes/class-ure-lib.php:2632
|
513 |
+
msgid "— No role for this site —"
|
514 |
+
msgstr "— Нет роли для этого сайта —"
|
515 |
+
|
516 |
+
#: ../includes/class-ure-lib.php:2747
|
517 |
+
#, php-format
|
518 |
+
msgid "Denied: %s"
|
519 |
+
msgstr "Отказано: %s"
|
520 |
+
|
521 |
+
#: ../includes/ure-role-edit.php:17
|
522 |
+
msgid "Select Role and change its capabilities:"
|
523 |
+
msgstr "Выбери роль и измени права доступа"
|
524 |
+
|
525 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
526 |
+
msgid "Show capabilities in human readable form"
|
527 |
+
msgstr "Показ возможностей в читабельной форме"
|
528 |
+
|
529 |
+
#: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
|
530 |
+
#: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
|
531 |
+
msgid "Show deprecated capabilities"
|
532 |
+
msgstr "Показать устаревшие разрешения"
|
533 |
+
|
534 |
+
#: ../includes/ure-role-edit.php:44
|
535 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
536 |
+
msgstr "Если включено, применить ко всем сайтам этой Сети"
|
537 |
+
|
538 |
+
#: ../includes/ure-role-edit.php:56
|
539 |
+
msgid "Apply to All Sites"
|
540 |
+
msgstr "Применить ко всем сайтам"
|
541 |
+
|
542 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
543 |
+
msgid "Core capabilities:"
|
544 |
+
msgstr "Возможности ядра:"
|
545 |
|
546 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
547 |
+
msgid "Quick filter:"
|
548 |
+
msgstr "Фильтр:"
|
549 |
|
550 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
551 |
+
msgid "Custom capabilities:"
|
552 |
+
msgstr "Дополнительные возможности :"
|
553 |
|
554 |
+
#: ../includes/class-user-other-roles.php:82
|
555 |
+
#: ../includes/class-user-other-roles.php:183
|
556 |
+
#: ../includes/class-user-other-roles.php:243
|
557 |
+
msgid "Other Roles"
|
558 |
+
msgstr "Другие роли"
|
559 |
|
560 |
+
#: ../includes/class-user-other-roles.php:83
|
561 |
+
msgid "Select additional roles for this user"
|
562 |
+
msgstr "Выбрать дополнительные роли для этого пользователя"
|
563 |
|
564 |
+
#: ../includes/class-user-other-roles.php:162
|
565 |
+
#: ../includes/class-user-role-editor.php:438
|
566 |
+
msgid "Capabilities"
|
567 |
+
msgstr "Возможности"
|
568 |
|
569 |
+
#: ../includes/class-user-other-roles.php:169
|
570 |
+
msgid "Edit"
|
571 |
+
msgstr "Изменить"
|
572 |
+
|
573 |
+
#: ../includes/class-user-other-roles.php:215
|
574 |
+
msgid "Additional Capabilities"
|
575 |
+
msgstr "Дополнительные права"
|
576 |
|
577 |
#: ../includes/class-ure-screen-help.php:12
|
578 |
#: ../includes/class-ure-screen-help.php:41
|
581 |
msgid "User Role Editor Options page help"
|
582 |
msgstr "Редактор ролей пользователей - Опции - помощь"
|
583 |
|
584 |
+
#: ../includes/class-ure-screen-help.php:15
|
585 |
+
#: ../includes/settings-template.php:53
|
586 |
+
msgid "Show Administrator role at User Role Editor"
|
587 |
+
msgstr "Отобразить роль Администратор в Редакторе ролей пользователей"
|
588 |
+
|
589 |
#: ../includes/class-ure-screen-help.php:16
|
590 |
msgid ""
|
591 |
"turn this option on in order to make the \"Administrator\" role available at "
|
596 |
"Редакторе Ролей пользователей. Из соображений безопасности по-умолчанию она "
|
597 |
"скрыта."
|
598 |
|
599 |
+
#: ../includes/class-ure-screen-help.php:18
|
600 |
+
#: ../includes/settings-template.php:61
|
601 |
+
msgid "Show capabilities in the human readable form"
|
602 |
+
msgstr "Показ прав доступа в читабельной форме"
|
603 |
+
|
604 |
#: ../includes/class-ure-screen-help.php:19
|
605 |
msgid ""
|
606 |
"automatically converts capability names from the technical form for internal "
|
623 |
"обеспечения совместимости со старыми темами и плагинами. Включение данной "
|
624 |
"опции покажет все устаревшие права пользователей."
|
625 |
|
626 |
+
#: ../includes/class-ure-screen-help.php:25
|
627 |
+
#: ../includes/settings-template.php:77
|
628 |
+
msgid "Edit user capabilities"
|
629 |
+
msgstr "Изменять права пользователя"
|
630 |
+
|
631 |
#: ../includes/class-ure-screen-help.php:26
|
632 |
msgid ""
|
633 |
"If turned off - capabilities section of selected user is shown in readonly "
|
638 |
"\"только чтение\". Администратор не может присваивать права пользователю "
|
639 |
"напрямую, только через роли."
|
640 |
|
641 |
+
#: ../includes/class-ure-screen-help.php:45
|
642 |
+
#: ../includes/settings-template.php:111
|
643 |
+
msgid "Count users without role"
|
644 |
+
msgstr "Подсчёт пользователей без роли"
|
645 |
+
|
646 |
#: ../includes/class-ure-screen-help.php:46
|
647 |
msgid ""
|
648 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
686 |
"в многосайтовой сети WordPress. Включите эту опцию, чтобы отменить это "
|
687 |
"ограничение."
|
688 |
|
689 |
+
#: ../includes/class-user-role-editor.php:233
|
690 |
+
msgid "Change role for users without role"
|
691 |
+
msgstr "Изменить роль для пользователей без роли"
|
692 |
+
|
693 |
+
#: ../includes/class-user-role-editor.php:234
|
694 |
+
msgid "No rights"
|
695 |
+
msgstr "Нет прав"
|
696 |
+
|
697 |
+
#: ../includes/class-user-role-editor.php:235
|
698 |
+
msgid "Provide new role"
|
699 |
+
msgstr "Выберите новую роль"
|
700 |
+
|
701 |
+
#: ../includes/class-user-role-editor.php:298
|
702 |
+
#: ../includes/class-user-role-editor.php:300
|
703 |
+
msgid "You do not have permission to edit this user."
|
704 |
+
msgstr "Нет прав на редактирование этого пользователя"
|
705 |
+
|
706 |
+
#: ../includes/class-user-role-editor.php:535
|
707 |
+
msgid "Settings"
|
708 |
+
msgstr "Установки"
|
709 |
+
|
710 |
+
#: ../includes/class-user-role-editor.php:568
|
711 |
+
#: ../includes/settings-template.php:21
|
712 |
+
msgid "General"
|
713 |
+
msgstr "Общие"
|
714 |
+
|
715 |
+
#: ../includes/class-user-role-editor.php:574
|
716 |
+
#: ../includes/settings-template.php:26
|
717 |
+
msgid "Additional Modules"
|
718 |
+
msgstr "Дополнительные модули"
|
719 |
+
|
720 |
+
#: ../includes/class-user-role-editor.php:580
|
721 |
+
#: ../includes/settings-template.php:30
|
722 |
+
msgid "Default Roles"
|
723 |
+
msgstr "Роли по-умолчанию"
|
724 |
+
|
725 |
+
#: ../includes/class-user-role-editor.php:586
|
726 |
+
#: ../includes/settings-template.php:34
|
727 |
+
msgid "Multisite"
|
728 |
+
msgstr "Многосайтовые"
|
729 |
+
|
730 |
+
#: ../includes/class-user-role-editor.php:685
|
731 |
+
#: ../includes/class-user-role-editor.php:703
|
732 |
+
#: ../includes/class-user-role-editor.php:747
|
733 |
+
msgid "User Role Editor options are updated"
|
734 |
+
msgstr "Изменения в настройках Редактора ролей пользователей сохранены"
|
735 |
+
|
736 |
+
#: ../includes/class-user-role-editor.php:731
|
737 |
+
msgid "Default Roles are updated"
|
738 |
+
msgstr "Изменения в роли по-умолчанию сохранены"
|
739 |
+
|
740 |
+
#: ../includes/class-user-role-editor.php:756
|
741 |
+
msgid ""
|
742 |
+
"You do not have sufficient permissions to manage options for User Role "
|
743 |
+
"Editor."
|
744 |
+
msgstr "У вас нет прав на изменение настроек плагина"
|
745 |
+
|
746 |
+
#: ../includes/class-user-role-editor.php:885
|
747 |
+
msgid "Select All"
|
748 |
+
msgstr "Выбрать все"
|
749 |
+
|
750 |
+
#: ../includes/class-user-role-editor.php:886
|
751 |
+
msgid "Unselect All"
|
752 |
+
msgstr "Исключить все"
|
753 |
+
|
754 |
+
#: ../includes/class-user-role-editor.php:887
|
755 |
+
msgid "Reverse"
|
756 |
+
msgstr "Обратить"
|
757 |
+
|
758 |
+
#: ../includes/class-user-role-editor.php:888
|
759 |
+
msgid "Update"
|
760 |
+
msgstr "Сохранить"
|
761 |
+
|
762 |
+
#: ../includes/class-user-role-editor.php:889
|
763 |
+
msgid "Please confirm permissions update"
|
764 |
+
msgstr "Пожалуйста, подтвердите продолжение "
|
765 |
+
|
766 |
+
#: ../includes/class-user-role-editor.php:890
|
767 |
+
msgid "Add New Role"
|
768 |
+
msgstr "Добавить новую роль"
|
769 |
+
|
770 |
+
#: ../includes/class-user-role-editor.php:891
|
771 |
+
#: ../includes/class-user-role-editor.php:896
|
772 |
+
msgid "Rename Role"
|
773 |
+
msgstr "Переименовать роль"
|
774 |
+
|
775 |
+
#: ../includes/class-user-role-editor.php:892
|
776 |
+
msgid " Role name (ID) can not be empty!"
|
777 |
+
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
778 |
+
|
779 |
+
#: ../includes/class-user-role-editor.php:893
|
780 |
+
msgid ""
|
781 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
782 |
+
"only!"
|
783 |
+
msgstr ""
|
784 |
+
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
785 |
+
"тире и знак подчеркивания"
|
786 |
+
|
787 |
+
#: ../includes/class-user-role-editor.php:894
|
788 |
+
msgid ""
|
789 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
790 |
+
"it."
|
791 |
+
msgstr ""
|
792 |
+
"WordPress не поддерживает цифровые идентификаторы ролей. Начните имя роли с "
|
793 |
+
"латинских символов."
|
794 |
+
|
795 |
+
#: ../includes/class-user-role-editor.php:895
|
796 |
+
msgid "Add Role"
|
797 |
+
msgstr "Добавить роль"
|
798 |
+
|
799 |
+
#: ../includes/class-user-role-editor.php:897
|
800 |
+
msgid "Delete Role"
|
801 |
+
msgstr "Удалить роль"
|
802 |
+
|
803 |
+
#: ../includes/class-user-role-editor.php:898
|
804 |
+
msgid "Cancel"
|
805 |
+
msgstr "Отмена"
|
806 |
+
|
807 |
+
#: ../includes/class-user-role-editor.php:899
|
808 |
+
msgid "Add Capability"
|
809 |
+
msgstr "Новая возм."
|
810 |
+
|
811 |
+
#: ../includes/class-user-role-editor.php:900
|
812 |
+
#: ../includes/class-user-role-editor.php:909
|
813 |
+
msgid "Delete Capability"
|
814 |
+
msgstr "Удалить возм."
|
815 |
+
|
816 |
+
#: ../includes/class-user-role-editor.php:901
|
817 |
+
msgid "Reset"
|
818 |
+
msgstr "Сброс"
|
819 |
+
|
820 |
+
#: ../includes/class-user-role-editor.php:902
|
821 |
+
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
822 |
+
msgstr ""
|
823 |
+
"ВНИМАНИЕ! Очистка восстановит роли по состоянию на момент установки "
|
824 |
+
"WordPress."
|
825 |
+
|
826 |
+
#: ../includes/class-user-role-editor.php:903
|
827 |
+
msgid ""
|
828 |
+
"If any plugins have changed capabilities in any way upon installation (such "
|
829 |
+
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
830 |
+
msgstr ""
|
831 |
+
"Если плагины изменяли пользовательские права после установки WordPress "
|
832 |
+
"(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
|
833 |
+
|
834 |
+
#: ../includes/class-user-role-editor.php:904
|
835 |
+
msgid ""
|
836 |
+
"For more information on how to undo changes and restore plugin capabilities "
|
837 |
+
"go to"
|
838 |
+
msgstr ""
|
839 |
+
"Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
|
840 |
+
"для плагинов, можно узнать здесь"
|
841 |
+
|
842 |
+
#: ../includes/class-user-role-editor.php:906
|
843 |
+
msgid "Continue?"
|
844 |
+
msgstr "Продолжить?"
|
845 |
+
|
846 |
+
#: ../includes/class-user-role-editor.php:907
|
847 |
+
msgid "Default Role"
|
848 |
+
msgstr "Роль по-умолчанию"
|
849 |
+
|
850 |
+
#: ../includes/class-user-role-editor.php:908
|
851 |
+
msgid "Set New Default Role"
|
852 |
+
msgstr "Установить"
|
853 |
+
|
854 |
+
#: ../includes/class-user-role-editor.php:910
|
855 |
+
msgid ""
|
856 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
857 |
+
"or other custom code"
|
858 |
+
msgstr ""
|
859 |
+
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
860 |
+
"прекращеню работы одного из плагинов или другого кода."
|
861 |
+
|
862 |
+
#: ../includes/class-user-role-editor.php:911
|
863 |
+
msgid " Capability name (ID) can not be empty!"
|
864 |
+
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
865 |
+
|
866 |
+
#: ../includes/class-user-role-editor.php:912
|
867 |
+
msgid ""
|
868 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
869 |
+
"underscore only!"
|
870 |
+
msgstr ""
|
871 |
+
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
872 |
+
"цифры, знаки подчеркивания"
|
873 |
+
|
874 |
+
#: ../includes/settings-template.php:17
|
875 |
+
msgid "User Role Editor - Options"
|
876 |
+
msgstr "Редактор ролей пользователей - Опции"
|
877 |
+
|
878 |
+
#: ../includes/settings-template.php:39
|
879 |
+
msgid "About"
|
880 |
+
msgstr "О плагине"
|
881 |
+
|
882 |
+
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
883 |
+
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
884 |
+
msgid "Save"
|
885 |
+
msgstr "Сохранить"
|
886 |
+
|
887 |
+
#: ../includes/settings-template.php:138
|
888 |
+
msgid "Primary default role: "
|
889 |
+
msgstr "Основная роль по-умолчанию:"
|
890 |
+
|
891 |
+
#: ../includes/settings-template.php:145
|
892 |
+
msgid "Other default roles for new registered user: "
|
893 |
+
msgstr "Другие роли по-умолчанию для вновь зарегистрированного пользователя:"
|
894 |
+
|
895 |
+
#: ../includes/settings-template.php:151
|
896 |
+
msgid ""
|
897 |
+
"Note for multisite environment: take into account that other default roles "
|
898 |
+
"should exist at the site, in order to be assigned to the new registered "
|
899 |
+
"users."
|
900 |
+
msgstr ""
|
901 |
+
"Заметка для WordPress с несколькими сайтами: учтите, что для присвоения "
|
902 |
+
"вновь зарегистрированному пользователю дополнительных ролей по-умолчанию эти "
|
903 |
+
"роли должны существовать на этом сайте."
|
904 |
+
|
905 |
+
#: ../includes/settings-template.php:177
|
906 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
907 |
+
msgstr ""
|
908 |
+
"Разрешить простым администраторам создавать, изменять, удалять пользователей"
|
909 |
+
|
910 |
+
#: ../includes/ure-user-edit.php:32
|
911 |
+
msgid "Network Super Admin"
|
912 |
+
msgstr "Суперадминистратор сети"
|
913 |
+
|
914 |
+
#: ../includes/ure-user-edit.php:35
|
915 |
+
msgid "Change capabilities for user"
|
916 |
+
msgstr "Изменить возможности для пользователя"
|
917 |
+
|
918 |
+
#: ../includes/ure-user-edit.php:72
|
919 |
+
msgid "Primary Role:"
|
920 |
+
msgstr "Первичаная роль:"
|
921 |
+
|
922 |
+
#: ../includes/ure-user-edit.php:82
|
923 |
+
msgid "bbPress Role:"
|
924 |
+
msgstr "Роль bbPress:"
|
925 |
+
|
926 |
+
#: ../includes/ure-user-edit.php:92
|
927 |
+
msgid "Other Roles:"
|
928 |
+
msgstr "Другие Роли:"
|
929 |
+
|
930 |
#~ msgid "select roles below"
|
931 |
#~ msgstr "выберите роли ниже"
|
932 |
|
lang/user-role-editor-tr_TR.mo
ADDED
Binary file
|
lang/{ure-tr_TR.po → user-role-editor-tr_TR.po}
RENAMED
@@ -5,9 +5,9 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: User Role Editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
-
"POT-Creation-Date: 2015-
|
9 |
-
"PO-Revision-Date: 2015-
|
10 |
-
"Last-Translator: Vladimir Garagulya <
|
11 |
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/user-"
|
12 |
"role-editor/language/tr_TR/)\n"
|
13 |
"Language: tr_TR\n"
|
@@ -21,392 +21,100 @@ msgstr ""
|
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"X-Poedit-SearchPath-0: ..\n"
|
23 |
|
24 |
-
#: ../includes/
|
25 |
-
msgid "User Role Editor - Options"
|
26 |
-
msgstr "Kullanıcı Rol Editörü - Seçenekler"
|
27 |
-
|
28 |
-
#: ../includes/settings-template.php:21
|
29 |
-
#: ../includes/class-user-role-editor.php:591
|
30 |
-
msgid "General"
|
31 |
-
msgstr "Genel"
|
32 |
-
|
33 |
-
#: ../includes/settings-template.php:26
|
34 |
-
#: ../includes/class-user-role-editor.php:597
|
35 |
-
msgid "Additional Modules"
|
36 |
-
msgstr "İlave Modüller"
|
37 |
-
|
38 |
-
#: ../includes/settings-template.php:30
|
39 |
-
#: ../includes/class-user-role-editor.php:603
|
40 |
-
msgid "Default Roles"
|
41 |
-
msgstr "Varsayılan Roller"
|
42 |
-
|
43 |
-
#: ../includes/settings-template.php:34
|
44 |
-
#: ../includes/class-user-role-editor.php:609
|
45 |
-
msgid "Multisite"
|
46 |
-
msgstr "Çoklu site"
|
47 |
-
|
48 |
-
#: ../includes/settings-template.php:39
|
49 |
-
msgid "About"
|
50 |
-
msgstr "Hakkında"
|
51 |
-
|
52 |
-
#: ../includes/settings-template.php:53
|
53 |
-
#: ../includes/class-ure-screen-help.php:15
|
54 |
-
msgid "Show Administrator role at User Role Editor"
|
55 |
-
msgstr "Yönetici rolünü Kullanıcı Rol Editörü'nde göster"
|
56 |
-
|
57 |
-
#: ../includes/settings-template.php:61
|
58 |
-
#: ../includes/class-ure-screen-help.php:18
|
59 |
-
msgid "Show capabilities in the human readable form"
|
60 |
-
msgstr "Kabiliyetleri insancıl biçimde göster"
|
61 |
-
|
62 |
-
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
63 |
-
#: ../includes/ure-user-edit.php:64 ../includes/class-ure-screen-help.php:21
|
64 |
-
msgid "Show deprecated capabilities"
|
65 |
-
msgstr "Önerilmeyen kabiliyetleri göster"
|
66 |
-
|
67 |
-
#: ../includes/settings-template.php:77
|
68 |
-
#: ../includes/class-ure-screen-help.php:25
|
69 |
-
msgid "Edit user capabilities"
|
70 |
-
msgstr "Özel kabiliyetler düzenleme"
|
71 |
-
|
72 |
-
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
73 |
-
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
74 |
-
msgid "Save"
|
75 |
-
msgstr "Sakla"
|
76 |
-
|
77 |
-
#: ../includes/settings-template.php:111
|
78 |
-
#: ../includes/class-ure-screen-help.php:45
|
79 |
-
msgid "Count users without role"
|
80 |
-
msgstr "Rolsüz kullanıcıları say"
|
81 |
-
|
82 |
-
#: ../includes/settings-template.php:138
|
83 |
-
msgid "Primary default role: "
|
84 |
-
msgstr "Birincil varsayılan rol:"
|
85 |
-
|
86 |
-
#: ../includes/settings-template.php:145
|
87 |
-
msgid "Other default roles for new registered user: "
|
88 |
-
msgstr "Yeni kaydolan kullanıcılar için diğer varsayılan roller:"
|
89 |
-
|
90 |
-
#: ../includes/settings-template.php:151
|
91 |
-
msgid ""
|
92 |
-
"Note for multisite environment: take into account that other default roles "
|
93 |
-
"should exist at the site, in order to be assigned to the new registered "
|
94 |
-
"users."
|
95 |
-
msgstr ""
|
96 |
-
"Çoklu site ortamı için hatırlatma: diğer varsayılan rollerin yeni kaydolan "
|
97 |
-
"kullanıcılara atanması için sitede bulunması gerektiğini olduğunu hesaba "
|
98 |
-
"katın."
|
99 |
-
|
100 |
-
#: ../includes/settings-template.php:177
|
101 |
-
msgid "Allow non super administrators to create, edit, and delete users"
|
102 |
-
msgstr ""
|
103 |
-
"Süper yönetici olmayanların kullanıcı oluşturma, düzenleme ve silmelerine "
|
104 |
-
"izin ver"
|
105 |
-
|
106 |
-
#: ../includes/class-user-role-editor.php:234
|
107 |
-
msgid "Change role for users without role"
|
108 |
-
msgstr "Rolsüz kullanıcıların rolünü değiştir"
|
109 |
-
|
110 |
-
#: ../includes/class-user-role-editor.php:235
|
111 |
-
msgid "No rights"
|
112 |
-
msgstr "İzin yok"
|
113 |
-
|
114 |
-
#: ../includes/class-user-role-editor.php:236
|
115 |
-
msgid "Provide new role"
|
116 |
-
msgstr "Yeni rol sağla"
|
117 |
-
|
118 |
-
#: ../includes/class-user-role-editor.php:320
|
119 |
-
#: ../includes/class-user-role-editor.php:322
|
120 |
-
msgid "You do not have permission to edit this user."
|
121 |
-
msgstr "Bu kullanıcıyı düzenlemek için izniniz yok."
|
122 |
-
|
123 |
-
#: ../includes/class-user-role-editor.php:460
|
124 |
-
msgid "Capabilities"
|
125 |
-
msgstr "Kabiliyetler"
|
126 |
-
|
127 |
-
#: ../includes/class-user-role-editor.php:558
|
128 |
-
msgid "Settings"
|
129 |
-
msgstr "Ayarlar"
|
130 |
-
|
131 |
-
#: ../includes/class-user-role-editor.php:569
|
132 |
-
#: ../includes/class-ure-lib.php:2540
|
133 |
-
msgid "Changelog"
|
134 |
-
msgstr "Değişiklik Günlüğü"
|
135 |
-
|
136 |
-
#: ../includes/class-user-role-editor.php:619
|
137 |
-
#: ../includes/class-user-role-editor.php:648
|
138 |
-
#: ../includes/class-user-role-editor.php:1030
|
139 |
-
#: ../includes/class-ure-lib.php:337
|
140 |
-
msgid "User Role Editor"
|
141 |
-
msgstr "Kullanıcı Rol Editörü"
|
142 |
-
|
143 |
-
#: ../includes/class-user-role-editor.php:708
|
144 |
-
#: ../includes/class-user-role-editor.php:726
|
145 |
-
#: ../includes/class-user-role-editor.php:770
|
146 |
-
msgid "User Role Editor options are updated"
|
147 |
-
msgstr "Kullanıcı Rol Editörü seçenekleri güncellendi"
|
148 |
-
|
149 |
-
#: ../includes/class-user-role-editor.php:754
|
150 |
-
msgid "Default Roles are updated"
|
151 |
-
msgstr "Varsayılan Roller güncellendi"
|
152 |
-
|
153 |
-
#: ../includes/class-user-role-editor.php:779
|
154 |
-
msgid ""
|
155 |
-
"You do not have sufficient permissions to manage options for User Role "
|
156 |
-
"Editor."
|
157 |
-
msgstr "Kullanıcı Rol Editörü seçeneklerini yönetmek için yeterli izniniz yok."
|
158 |
-
|
159 |
-
#: ../includes/class-user-role-editor.php:851
|
160 |
-
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
161 |
-
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
162 |
-
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
163 |
-
msgid "Insufficient permissions to work with User Role Editor"
|
164 |
-
msgstr "Kullanıcı Rol Editörü ile çalışmak için yetersiz izin"
|
165 |
-
|
166 |
-
#: ../includes/class-user-role-editor.php:977
|
167 |
-
msgid "Select All"
|
168 |
-
msgstr "Hepsini Seç"
|
169 |
-
|
170 |
-
#: ../includes/class-user-role-editor.php:978
|
171 |
-
msgid "Unselect All"
|
172 |
-
msgstr "Hiçbirini Seçme"
|
173 |
-
|
174 |
-
#: ../includes/class-user-role-editor.php:979
|
175 |
-
msgid "Reverse"
|
176 |
-
msgstr "Evir"
|
177 |
-
|
178 |
-
#: ../includes/class-user-role-editor.php:980
|
179 |
-
msgid "Update"
|
180 |
-
msgstr "Güncelle"
|
181 |
-
|
182 |
-
#: ../includes/class-user-role-editor.php:981
|
183 |
-
msgid "Please confirm permissions update"
|
184 |
-
msgstr "Lütfen izin güncellemesini onaylayın"
|
185 |
-
|
186 |
-
#: ../includes/class-user-role-editor.php:982
|
187 |
-
msgid "Add New Role"
|
188 |
-
msgstr "Yeni Rol Ekle"
|
189 |
-
|
190 |
-
#: ../includes/class-user-role-editor.php:983
|
191 |
-
#: ../includes/class-user-role-editor.php:988
|
192 |
-
msgid "Rename Role"
|
193 |
-
msgstr "Rol İsmi Değiştir"
|
194 |
-
|
195 |
-
#: ../includes/class-user-role-editor.php:984
|
196 |
-
msgid " Role name (ID) can not be empty!"
|
197 |
-
msgstr "Rol ismi (ID) boş olamaz!"
|
198 |
-
|
199 |
-
#: ../includes/class-user-role-editor.php:985
|
200 |
-
msgid ""
|
201 |
-
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
202 |
-
"only!"
|
203 |
-
msgstr ""
|
204 |
-
"Rol ismi (ID) yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
205 |
-
"çizgiler içermeli!"
|
206 |
-
|
207 |
-
#: ../includes/class-user-role-editor.php:986
|
208 |
-
msgid ""
|
209 |
-
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
210 |
-
"it."
|
211 |
-
msgstr ""
|
212 |
-
"WordPress sayısal rol ismi (ID) desteklemiyor. Latin karakterler ekleyin."
|
213 |
-
|
214 |
-
#: ../includes/class-user-role-editor.php:987
|
215 |
-
msgid "Add Role"
|
216 |
-
msgstr "Rol Ekle"
|
217 |
-
|
218 |
-
#: ../includes/class-user-role-editor.php:989
|
219 |
-
msgid "Delete Role"
|
220 |
-
msgstr "Rol Sil"
|
221 |
-
|
222 |
-
#: ../includes/class-user-role-editor.php:990
|
223 |
-
msgid "Cancel"
|
224 |
-
msgstr "İptal"
|
225 |
-
|
226 |
-
#: ../includes/class-user-role-editor.php:991
|
227 |
-
msgid "Add Capability"
|
228 |
-
msgstr "Kabiliyet Ekle"
|
229 |
-
|
230 |
-
#: ../includes/class-user-role-editor.php:992
|
231 |
-
#: ../includes/class-user-role-editor.php:1001
|
232 |
-
msgid "Delete Capability"
|
233 |
-
msgstr "Kabiliyet Sil"
|
234 |
-
|
235 |
-
#: ../includes/class-user-role-editor.php:993
|
236 |
-
msgid "Reset"
|
237 |
-
msgstr "Sıfırla"
|
238 |
-
|
239 |
-
#: ../includes/class-user-role-editor.php:994
|
240 |
-
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
241 |
-
msgstr ""
|
242 |
-
"TEHLİKE! Sıfırlama WordPress Çekirdeğinin varsayılan ayarlarını geri yükler."
|
243 |
-
|
244 |
-
#: ../includes/class-user-role-editor.php:995
|
245 |
-
msgid ""
|
246 |
-
"If any plugins have changed capabilities in any way upon installation (such "
|
247 |
-
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
248 |
-
msgstr ""
|
249 |
-
"Herhangi eklenti (S2Member, WooCommerce gibi) kurulumdan sonra herhangi "
|
250 |
-
"yoldan kabiliyetleri değiştirdiyse, o kabiliyetler SİLİNİR!"
|
251 |
-
|
252 |
-
#: ../includes/class-user-role-editor.php:996
|
253 |
-
msgid ""
|
254 |
-
"For more information on how to undo changes and restore plugin capabilities "
|
255 |
-
"go to"
|
256 |
-
msgstr ""
|
257 |
-
"Değişiklikleri geri alma ve eklenti kabiliyetlerini geri yükleme hakkında "
|
258 |
-
"daha fazla bilgi için gideceğiniz adres:"
|
259 |
-
|
260 |
-
#: ../includes/class-user-role-editor.php:998
|
261 |
-
msgid "Continue?"
|
262 |
-
msgstr "Devam mı?"
|
263 |
-
|
264 |
-
#: ../includes/class-user-role-editor.php:999
|
265 |
-
msgid "Default Role"
|
266 |
-
msgstr "Varsayılan Rol"
|
267 |
-
|
268 |
-
#: ../includes/class-user-role-editor.php:1000
|
269 |
-
msgid "Set New Default Role"
|
270 |
-
msgstr "Yeni Varsayılan Rol Belirle"
|
271 |
-
|
272 |
-
#: ../includes/class-user-role-editor.php:1002
|
273 |
-
msgid ""
|
274 |
-
"Warning! Be careful - removing critical capability could crash some plugin "
|
275 |
-
"or other custom code"
|
276 |
-
msgstr ""
|
277 |
-
"Uyarı! Dikkatli olun - kritik kabiliyetleri kaldırmak bazı eklentileri veya "
|
278 |
-
"diğer özel kodları bozabilir"
|
279 |
-
|
280 |
-
#: ../includes/class-user-role-editor.php:1003
|
281 |
-
msgid " Capability name (ID) can not be empty!"
|
282 |
-
msgstr "Kabiliyet ismi (ID) boş olamaz!"
|
283 |
-
|
284 |
-
#: ../includes/class-user-role-editor.php:1004
|
285 |
-
msgid ""
|
286 |
-
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
287 |
-
"underscore only!"
|
288 |
-
msgstr ""
|
289 |
-
"Kabiliyet ismi (ID) yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
290 |
-
"çizgiler içermeli!"
|
291 |
-
|
292 |
-
#: ../includes/class-user-role-editor.php:1033
|
293 |
-
#: ../includes/class-user-role-editor.php:1066
|
294 |
-
msgid "Other Roles"
|
295 |
-
msgstr "Diğer Roller"
|
296 |
-
|
297 |
-
#: ../includes/class-user-role-editor.php:1047
|
298 |
-
msgid "Edit"
|
299 |
-
msgstr "Düzenle"
|
300 |
-
|
301 |
-
#: ../includes/ure-role-edit.php:17
|
302 |
-
msgid "Select Role and change its capabilities:"
|
303 |
-
msgstr "Rol seçin ve rolün kabiliyetlerini değiştirin:"
|
304 |
-
|
305 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
306 |
-
msgid "Show capabilities in human readable form"
|
307 |
-
msgstr "Kabiliyetleri insancıl biçimde göster"
|
308 |
-
|
309 |
-
#: ../includes/ure-role-edit.php:44
|
310 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
311 |
-
msgstr "İşaretliyse işlem bu Ağdaki TÜM sitelere uygulanır"
|
312 |
-
|
313 |
-
#: ../includes/ure-role-edit.php:56
|
314 |
-
msgid "Apply to All Sites"
|
315 |
-
msgstr "Tüm Sitelere Uygula"
|
316 |
-
|
317 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
318 |
-
msgid "Core capabilities:"
|
319 |
-
msgstr "Çekirdek kabiliyetler:"
|
320 |
-
|
321 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
322 |
-
msgid "Quick filter:"
|
323 |
-
msgstr "Hızlı süzgeç:"
|
324 |
-
|
325 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
326 |
-
msgid "Custom capabilities:"
|
327 |
-
msgstr "Özel kabiliyetler:"
|
328 |
-
|
329 |
-
#: ../includes/class-ure-lib.php:245
|
330 |
msgid "Error: wrong request"
|
331 |
msgstr "Hata: yanlış talep"
|
332 |
|
333 |
-
#: ../includes/class-ure-lib.php:
|
334 |
msgid "Role name (ID): "
|
335 |
msgstr "Rol ismi (ID):"
|
336 |
|
337 |
-
#: ../includes/class-ure-lib.php:
|
338 |
msgid "Display Role Name: "
|
339 |
msgstr "Rol İsmini Görüntüle:"
|
340 |
|
341 |
-
#: ../includes/class-ure-lib.php:
|
342 |
msgid "Make copy of: "
|
343 |
msgstr "Şundan kopyala:"
|
344 |
|
345 |
-
#: ../includes/class-ure-lib.php:
|
346 |
msgid "Select Role:"
|
347 |
msgstr "Rol Seç:"
|
348 |
|
349 |
-
#: ../includes/class-ure-lib.php:
|
350 |
msgid "Delete:"
|
351 |
msgstr "Sil:"
|
352 |
|
353 |
-
#: ../includes/class-ure-lib.php:
|
354 |
msgid "Capability name (ID): "
|
355 |
msgstr "Kabiliyet ismi (ID):"
|
356 |
|
357 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
358 |
msgid "Error: "
|
359 |
msgstr "Hata:"
|
360 |
|
361 |
-
#: ../includes/class-ure-lib.php:
|
362 |
msgid "Role"
|
363 |
msgstr "Rol"
|
364 |
|
365 |
-
#: ../includes/class-ure-lib.php:
|
366 |
msgid "does not exist"
|
367 |
msgstr "mevcut değil"
|
368 |
|
369 |
-
#: ../includes/class-ure-lib.php:
|
370 |
msgid "Role is updated successfully"
|
371 |
msgstr "Rol başarıyla güncellendi"
|
372 |
|
373 |
-
#: ../includes/class-ure-lib.php:
|
374 |
msgid "Roles are updated for all network"
|
375 |
msgstr "Roller tüm ağ için güncellendi"
|
376 |
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
msgid "Error occured during role(s) update"
|
379 |
msgstr "Rol güncellemesi esnasında hata meydana geldi"
|
380 |
|
381 |
-
#: ../includes/class-ure-lib.php:
|
382 |
msgid "User capabilities are updated successfully"
|
383 |
msgstr "Kullanıcı kabiliyetleri başarıyla güncellendi"
|
384 |
|
385 |
-
#: ../includes/class-ure-lib.php:
|
386 |
msgid "Error occured during user update"
|
387 |
msgstr "Kullanıcı güncellemesi esnasında hata meydana geldi"
|
388 |
|
389 |
-
#: ../includes/class-ure-lib.php:
|
390 |
msgid "User Roles are restored to WordPress default values. "
|
391 |
msgstr "Kullanıcı Rolleri WordPress varsayılanlarına geri döndürüldü."
|
392 |
|
393 |
-
#: ../includes/class-ure-lib.php:
|
394 |
msgid "read about"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: ../includes/class-ure-lib.php:
|
398 |
msgid "user capability"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
402 |
msgid "Help"
|
403 |
msgstr "Yardım"
|
404 |
|
405 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
406 |
msgid "Error is occur. Please check the log file."
|
407 |
msgstr "Hata oluştu. Lütfen günlük dosyasını denetleyiniz."
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
msgid ""
|
411 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
412 |
"only!"
|
@@ -414,7 +122,7 @@ msgstr ""
|
|
414 |
"Hata: Rol ID yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
415 |
"çizgiler içermeli!"
|
416 |
|
417 |
-
#: ../includes/class-ure-lib.php:
|
418 |
msgid ""
|
419 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
420 |
"characters to it."
|
@@ -422,399 +130,456 @@ msgstr ""
|
|
422 |
"Hata: WordPress sayısal rol isimlerini (ID) desteklemiyor. Latin "
|
423 |
"karakterleri ekleyin."
|
424 |
|
425 |
-
#: ../includes/class-ure-lib.php:
|
426 |
#, php-format
|
427 |
msgid "Role %s exists already"
|
428 |
msgstr "%s rolü zaten mevcut"
|
429 |
|
430 |
-
#: ../includes/class-ure-lib.php:
|
431 |
msgid "Error is encountered during new role create operation"
|
432 |
msgstr "Yeni rol oluşturma işlemi sırasında hata oluştu"
|
433 |
|
434 |
-
#: ../includes/class-ure-lib.php:
|
435 |
#, php-format
|
436 |
msgid "Role %s is created successfully"
|
437 |
msgstr "%s rolü başarıyla oluşturuldu"
|
438 |
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
msgid "Error: Role ID is empty!"
|
441 |
msgstr "Hata: Rol ID'si boş!"
|
442 |
|
443 |
-
#: ../includes/class-ure-lib.php:
|
444 |
msgid "Error: Empty role display name is not allowed."
|
445 |
msgstr "Hata: Boş görünen rol adına izin yok."
|
446 |
|
447 |
-
#: ../includes/class-ure-lib.php:
|
448 |
#, php-format
|
449 |
msgid "Role %s does not exists"
|
450 |
msgstr "%s rolü mevcut değil"
|
451 |
|
452 |
-
#: ../includes/class-ure-lib.php:
|
453 |
#, php-format
|
454 |
msgid "Role %s is renamed to %s successfully"
|
455 |
msgstr "%s rolünün ismi %s olarak başarıyla değiştirildi"
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
msgid "Error encountered during role delete operation"
|
459 |
msgstr "Rol silme işlemi sırasında hata oluştu"
|
460 |
|
461 |
-
#: ../includes/class-ure-lib.php:
|
462 |
msgid "Unused roles are deleted successfully"
|
463 |
msgstr "Kullanılmayan roller başarıyla silindi"
|
464 |
|
465 |
-
#: ../includes/class-ure-lib.php:
|
466 |
#, php-format
|
467 |
msgid "Role %s is deleted successfully"
|
468 |
msgstr "%s rolü başarıyla silindi"
|
469 |
|
470 |
-
#: ../includes/class-ure-lib.php:
|
471 |
msgid "Error encountered during default role change operation"
|
472 |
msgstr "Varsayılan rol değişimi işlemi sırasında hata oluştu"
|
473 |
|
474 |
-
#: ../includes/class-ure-lib.php:
|
475 |
#, php-format
|
476 |
msgid "Default role for new users is set to %s successfully"
|
477 |
msgstr "Yeni kullanıcılar için varsayılan rol %s rolüne başarıyla ayarlandı"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
480 |
msgid "Editor"
|
481 |
msgstr "Editör"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Author"
|
485 |
msgstr "Yazar"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Contributor"
|
489 |
msgstr "İçerik Sağlayıcı"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Subscriber"
|
493 |
msgstr "Abone"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Switch themes"
|
497 |
msgstr "Tema değiştirme"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Edit themes"
|
501 |
msgstr "Tema düzenleme"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Activate plugins"
|
505 |
msgstr "Eklenti etkinleştirme"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Edit plugins"
|
509 |
msgstr "Eklenti düzenleme"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Edit users"
|
513 |
msgstr "Kullanıcı düzenleme"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Edit files"
|
517 |
msgstr "Dosya düzenleme"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Manage options"
|
521 |
msgstr "Seçenek yönetme"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Moderate comments"
|
525 |
msgstr "Yorum ılıtma"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Manage categories"
|
529 |
msgstr "Kategori yönetme"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Manage links"
|
533 |
msgstr "Bağlantı yönetme"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Upload files"
|
537 |
msgstr "Dosya yükleme"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Import"
|
541 |
msgstr "İçe Aktarma"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Unfiltered html"
|
545 |
msgstr "Süzülmemiş html"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Edit posts"
|
549 |
msgstr "Yazı düzenleme"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Edit others posts"
|
553 |
msgstr "Başkalarının yazılarını düzenleme"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Edit published posts"
|
557 |
msgstr "Yayımdaki yazıları düzenleme"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Publish posts"
|
561 |
msgstr "Yazı yayımlama"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Edit pages"
|
565 |
msgstr "Sayfa düzenleme"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Read"
|
569 |
msgstr "Okuma"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Level 10"
|
573 |
msgstr "Seviye 10"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Level 9"
|
577 |
msgstr "Seviye 9"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Level 8"
|
581 |
msgstr "Seviye 8"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Level 7"
|
585 |
msgstr "Seviye 7"
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Level 6"
|
589 |
msgstr "Seviye 6"
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Level 5"
|
593 |
msgstr "Seviye 5"
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Level 4"
|
597 |
msgstr "Seviye 4"
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Level 3"
|
601 |
msgstr "Seviye 3"
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
msgid "Level 2"
|
605 |
msgstr "Seviye 2"
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Level 1"
|
609 |
msgstr "Seviye 1"
|
610 |
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Level 0"
|
613 |
msgstr "Seviye 0"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Edit others pages"
|
617 |
msgstr "Başkalarının sayfalarını düzenleme"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Edit published pages"
|
621 |
msgstr "Yayımdaki sayfaları düzenleme"
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Publish pages"
|
625 |
msgstr "Sayfa yayımlama"
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Delete pages"
|
629 |
msgstr "Sayfa silme"
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Delete others pages"
|
633 |
msgstr "Başkalarının sayfalarını silme"
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Delete published pages"
|
637 |
msgstr "Yayımdaki sayfaları silme"
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Delete posts"
|
641 |
msgstr "Yazı silme"
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "Delete others posts"
|
645 |
msgstr "Başkalarının yazılarını silme"
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Delete published posts"
|
649 |
msgstr "Yayımdaki yazıları silme"
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Delete private posts"
|
653 |
msgstr "Kişisel yazıları silme"
|
654 |
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Edit private posts"
|
657 |
msgstr "Kişisel yazıları düzenleme"
|
658 |
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
msgid "Read private posts"
|
661 |
msgstr "Kişisel yazıları okuma"
|
662 |
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Delete private pages"
|
665 |
msgstr "Kişisel sayfaları silme"
|
666 |
|
667 |
-
#: ../includes/class-ure-lib.php:
|
668 |
msgid "Edit private pages"
|
669 |
msgstr "Kişisel sayfaları düzenleme"
|
670 |
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Read private pages"
|
673 |
msgstr "Kişisel sayfaları okuma"
|
674 |
|
675 |
-
#: ../includes/class-ure-lib.php:
|
676 |
msgid "Delete users"
|
677 |
msgstr "Kullanıcı silme"
|
678 |
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Create users"
|
681 |
msgstr "Kullanıcı oluşturma"
|
682 |
|
683 |
-
#: ../includes/class-ure-lib.php:
|
684 |
msgid "Unfiltered upload"
|
685 |
msgstr "Süzülmemiş yükleme"
|
686 |
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Edit dashboard"
|
689 |
msgstr "Panel düzenleme"
|
690 |
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Update plugins"
|
693 |
msgstr "Eklenti güncelleme"
|
694 |
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "Delete plugins"
|
697 |
msgstr "Eklenti silme"
|
698 |
|
699 |
-
#: ../includes/class-ure-lib.php:
|
700 |
msgid "Install plugins"
|
701 |
msgstr "Eklenti kurma"
|
702 |
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Update themes"
|
705 |
msgstr "Tema güncelleme"
|
706 |
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
msgid "Install themes"
|
709 |
msgstr "Tema kurma"
|
710 |
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Update core"
|
713 |
msgstr "Çekirdek güncelleme"
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
msgid "List users"
|
717 |
msgstr "Kullanıcı listeleme"
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Remove users"
|
721 |
msgstr "Kullanıcı kaldırma"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
msgid "Add users"
|
725 |
msgstr "Kullanıcı ekleme"
|
726 |
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
msgid "Promote users"
|
729 |
msgstr "Kullanıcı teşvik etme"
|
730 |
|
731 |
-
#: ../includes/class-ure-lib.php:
|
732 |
msgid "Edit theme options"
|
733 |
msgstr "Tema seçenekleri düzenleme"
|
734 |
|
735 |
-
#: ../includes/class-ure-lib.php:
|
736 |
msgid "Delete themes"
|
737 |
msgstr "Tema silme"
|
738 |
|
739 |
-
#: ../includes/class-ure-lib.php:
|
740 |
msgid "Export"
|
741 |
msgstr "Dışa Aktarma"
|
742 |
|
743 |
-
#: ../includes/class-ure-lib.php:
|
744 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
745 |
msgstr "Hata: Kabiliyet ismi yalnızca latin karakterleri ve rakamlar içermeli!"
|
746 |
|
747 |
-
#: ../includes/class-ure-lib.php:
|
748 |
#, php-format
|
749 |
msgid "Capability %s is added successfully"
|
750 |
msgstr "%s kabiliyeti başarıyla eklendi"
|
751 |
|
752 |
-
#: ../includes/class-ure-lib.php:
|
753 |
#, php-format
|
754 |
msgid "Capability %s exists already"
|
755 |
msgstr "%s kabiliyeti zaten mevcut"
|
756 |
|
757 |
-
#: ../includes/class-ure-lib.php:
|
758 |
#, php-format
|
759 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
760 |
msgstr "Hata! Bu kabiliyeti silmeye izniniz yok: %s!"
|
761 |
|
762 |
-
#: ../includes/class-ure-lib.php:
|
763 |
-
#, php-format
|
764 |
-
msgid "Capability %s
|
765 |
msgstr "%s kabiliyeti başarıyla kaldırıldı"
|
766 |
|
767 |
-
#: ../includes/class-ure-lib.php:
|
768 |
msgid "Version:"
|
769 |
msgstr "Sürüm:"
|
770 |
|
771 |
-
#: ../includes/class-ure-lib.php:
|
772 |
msgid "Author's website"
|
773 |
msgstr "Yazarın web sitesi"
|
774 |
|
775 |
-
#: ../includes/class-ure-lib.php:
|
776 |
msgid "Plugin webpage"
|
777 |
msgstr "Eklenti web sayfası"
|
778 |
|
779 |
-
#: ../includes/class-ure-lib.php:
|
780 |
msgid "Plugin download"
|
781 |
msgstr "Eklenti indirme"
|
782 |
|
783 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
784 |
msgid "FAQ"
|
785 |
msgstr "S.S.S."
|
786 |
|
787 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
788 |
msgid "None"
|
789 |
msgstr "Hiçbiri"
|
790 |
|
791 |
-
#: ../includes/class-ure-lib.php:
|
792 |
-
msgid "
|
793 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
794 |
|
795 |
-
#: ../includes/
|
796 |
-
msgid "
|
797 |
-
msgstr "
|
798 |
|
799 |
-
#: ../includes/
|
800 |
-
|
801 |
-
|
|
|
|
|
802 |
|
803 |
-
#: ../includes/
|
804 |
-
msgid "
|
805 |
-
msgstr "
|
806 |
|
807 |
-
#: ../includes/
|
808 |
-
|
809 |
-
|
|
|
810 |
|
811 |
-
#: ../includes/
|
812 |
-
msgid "
|
813 |
-
msgstr "
|
814 |
|
815 |
-
#: ../includes/
|
816 |
-
|
817 |
-
|
|
|
818 |
|
819 |
#: ../includes/class-ure-screen-help.php:12
|
820 |
#: ../includes/class-ure-screen-help.php:41
|
@@ -823,6 +588,11 @@ msgstr "Diğer Roller:"
|
|
823 |
msgid "User Role Editor Options page help"
|
824 |
msgstr "Kullanıcı Rol Editörü Seçenekler"
|
825 |
|
|
|
|
|
|
|
|
|
|
|
826 |
#: ../includes/class-ure-screen-help.php:16
|
827 |
msgid ""
|
828 |
"turn this option on in order to make the \"Administrator\" role available at "
|
@@ -833,6 +603,11 @@ msgstr ""
|
|
833 |
"alması için bu seçeneği açık yapın. Güvenlik sebebiyle varsayılan olarak "
|
834 |
"gizlenmiştir."
|
835 |
|
|
|
|
|
|
|
|
|
|
|
836 |
#: ../includes/class-ure-screen-help.php:19
|
837 |
msgid ""
|
838 |
"automatically converts capability names from the technical form for internal "
|
@@ -855,6 +630,11 @@ msgstr ""
|
|
855 |
"uyumluluğun korunması amacıyla kullanıcı rolleri arasında yer verilmiştir. "
|
856 |
"Bu seçeneği açık yapmak bu önerilmeyen kabiliyetleri görünür yapacaktır."
|
857 |
|
|
|
|
|
|
|
|
|
|
|
858 |
#: ../includes/class-ure-screen-help.php:26
|
859 |
msgid ""
|
860 |
"If turned off - capabilities section of selected user is shown in readonly "
|
@@ -862,6 +642,11 @@ msgid ""
|
|
862 |
"should make it using roles only."
|
863 |
msgstr ""
|
864 |
|
|
|
|
|
|
|
|
|
|
|
865 |
#: ../includes/class-ure-screen-help.php:46
|
866 |
msgid ""
|
867 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
@@ -903,3 +688,243 @@ msgstr ""
|
|
903 |
"Süper yönetici WordPress çoklu site yapısında varsayılan olarak "
|
904 |
"kullanıcıları yalnızca oluşturur, düzenler ve siler. Bu kısıtlamayı "
|
905 |
"kaldırmak için bu seçeneği açık yapın."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: User Role Editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2015-09-11 21:06+0100\n"
|
9 |
+
"PO-Revision-Date: 2015-09-11 21:16+0100\n"
|
10 |
+
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
11 |
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/user-"
|
12 |
"role-editor/language/tr_TR/)\n"
|
13 |
"Language: tr_TR\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"X-Poedit-SearchPath-0: ..\n"
|
23 |
|
24 |
+
#: ../includes/class-ure-lib.php:247
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "Error: wrong request"
|
26 |
msgstr "Hata: yanlış talep"
|
27 |
|
28 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
29 |
msgid "Role name (ID): "
|
30 |
msgstr "Rol ismi (ID):"
|
31 |
|
32 |
+
#: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
|
33 |
msgid "Display Role Name: "
|
34 |
msgstr "Rol İsmini Görüntüle:"
|
35 |
|
36 |
+
#: ../includes/class-ure-lib.php:284
|
37 |
msgid "Make copy of: "
|
38 |
msgstr "Şundan kopyala:"
|
39 |
|
40 |
+
#: ../includes/class-ure-lib.php:300
|
41 |
msgid "Select Role:"
|
42 |
msgstr "Rol Seç:"
|
43 |
|
44 |
+
#: ../includes/class-ure-lib.php:315
|
45 |
msgid "Delete:"
|
46 |
msgstr "Sil:"
|
47 |
|
48 |
+
#: ../includes/class-ure-lib.php:322
|
49 |
msgid "Capability name (ID): "
|
50 |
msgstr "Kabiliyet ismi (ID):"
|
51 |
|
52 |
+
#: ../includes/class-ure-lib.php:339
|
53 |
+
#: ../includes/class-user-role-editor.php:596
|
54 |
+
#: ../includes/class-user-role-editor.php:625
|
55 |
+
msgid "User Role Editor"
|
56 |
+
msgstr "Kullanıcı Rol Editörü"
|
57 |
+
|
58 |
+
#: ../includes/class-ure-lib.php:436
|
59 |
msgid "Error: "
|
60 |
msgstr "Hata:"
|
61 |
|
62 |
+
#: ../includes/class-ure-lib.php:436
|
63 |
msgid "Role"
|
64 |
msgstr "Rol"
|
65 |
|
66 |
+
#: ../includes/class-ure-lib.php:437
|
67 |
msgid "does not exist"
|
68 |
msgstr "mevcut değil"
|
69 |
|
70 |
+
#: ../includes/class-ure-lib.php:480
|
71 |
msgid "Role is updated successfully"
|
72 |
msgstr "Rol başarıyla güncellendi"
|
73 |
|
74 |
+
#: ../includes/class-ure-lib.php:482
|
75 |
msgid "Roles are updated for all network"
|
76 |
msgstr "Roller tüm ağ için güncellendi"
|
77 |
|
78 |
+
#: ../includes/class-ure-lib.php:488
|
79 |
msgid "Error occured during role(s) update"
|
80 |
msgstr "Rol güncellemesi esnasında hata meydana geldi"
|
81 |
|
82 |
+
#: ../includes/class-ure-lib.php:495
|
83 |
msgid "User capabilities are updated successfully"
|
84 |
msgstr "Kullanıcı kabiliyetleri başarıyla güncellendi"
|
85 |
|
86 |
+
#: ../includes/class-ure-lib.php:500
|
87 |
msgid "Error occured during user update"
|
88 |
msgstr "Kullanıcı güncellemesi esnasında hata meydana geldi"
|
89 |
|
90 |
+
#: ../includes/class-ure-lib.php:558
|
91 |
msgid "User Roles are restored to WordPress default values. "
|
92 |
msgstr "Kullanıcı Rolleri WordPress varsayılanlarına geri döndürüldü."
|
93 |
|
94 |
+
#: ../includes/class-ure-lib.php:1436
|
95 |
msgid "read about"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: ../includes/class-ure-lib.php:1437
|
99 |
msgid "user capability"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ../includes/class-ure-lib.php:1438
|
103 |
msgid "Help"
|
104 |
msgstr "Yardım"
|
105 |
|
106 |
+
#: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
|
107 |
+
#: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
|
108 |
+
#: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
|
109 |
+
#: ../includes/class-user-role-editor.php:828
|
110 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
111 |
+
msgstr "Kullanıcı Rol Editörü ile çalışmak için yetersiz izin"
|
112 |
+
|
113 |
+
#: ../includes/class-ure-lib.php:1909
|
114 |
msgid "Error is occur. Please check the log file."
|
115 |
msgstr "Hata oluştu. Lütfen günlük dosyasını denetleyiniz."
|
116 |
|
117 |
+
#: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
|
118 |
msgid ""
|
119 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
120 |
"only!"
|
122 |
"Hata: Rol ID yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
123 |
"çizgiler içermeli!"
|
124 |
|
125 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
126 |
msgid ""
|
127 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
128 |
"characters to it."
|
130 |
"Hata: WordPress sayısal rol isimlerini (ID) desteklemiyor. Latin "
|
131 |
"karakterleri ekleyin."
|
132 |
|
133 |
+
#: ../includes/class-ure-lib.php:1974
|
134 |
#, php-format
|
135 |
msgid "Role %s exists already"
|
136 |
msgstr "%s rolü zaten mevcut"
|
137 |
|
138 |
+
#: ../includes/class-ure-lib.php:1989
|
139 |
msgid "Error is encountered during new role create operation"
|
140 |
msgstr "Yeni rol oluşturma işlemi sırasında hata oluştu"
|
141 |
|
142 |
+
#: ../includes/class-ure-lib.php:1991
|
143 |
#, php-format
|
144 |
msgid "Role %s is created successfully"
|
145 |
msgstr "%s rolü başarıyla oluşturuldu"
|
146 |
|
147 |
+
#: ../includes/class-ure-lib.php:2015
|
148 |
msgid "Error: Role ID is empty!"
|
149 |
msgstr "Hata: Rol ID'si boş!"
|
150 |
|
151 |
+
#: ../includes/class-ure-lib.php:2033
|
152 |
msgid "Error: Empty role display name is not allowed."
|
153 |
msgstr "Hata: Boş görünen rol adına izin yok."
|
154 |
|
155 |
+
#: ../includes/class-ure-lib.php:2040
|
156 |
#, php-format
|
157 |
msgid "Role %s does not exists"
|
158 |
msgstr "%s rolü mevcut değil"
|
159 |
|
160 |
+
#: ../includes/class-ure-lib.php:2048
|
161 |
#, php-format
|
162 |
msgid "Role %s is renamed to %s successfully"
|
163 |
msgstr "%s rolünün ismi %s olarak başarıyla değiştirildi"
|
164 |
|
165 |
+
#: ../includes/class-ure-lib.php:2121
|
166 |
msgid "Error encountered during role delete operation"
|
167 |
msgstr "Rol silme işlemi sırasında hata oluştu"
|
168 |
|
169 |
+
#: ../includes/class-ure-lib.php:2123
|
170 |
msgid "Unused roles are deleted successfully"
|
171 |
msgstr "Kullanılmayan roller başarıyla silindi"
|
172 |
|
173 |
+
#: ../includes/class-ure-lib.php:2125
|
174 |
#, php-format
|
175 |
msgid "Role %s is deleted successfully"
|
176 |
msgstr "%s rolü başarıyla silindi"
|
177 |
|
178 |
+
#: ../includes/class-ure-lib.php:2153
|
179 |
msgid "Error encountered during default role change operation"
|
180 |
msgstr "Varsayılan rol değişimi işlemi sırasında hata oluştu"
|
181 |
|
182 |
+
#: ../includes/class-ure-lib.php:2156
|
183 |
#, php-format
|
184 |
msgid "Default role for new users is set to %s successfully"
|
185 |
msgstr "Yeni kullanıcılar için varsayılan rol %s rolüne başarıyla ayarlandı"
|
186 |
|
187 |
+
#: ../includes/class-ure-lib.php:2159
|
188 |
+
#, fuzzy
|
189 |
+
msgid "Can not set Administrator role as a default one"
|
190 |
+
msgstr "Yönetici rolünü Kullanıcı Rol Editörü'nde göster"
|
191 |
+
|
192 |
+
#: ../includes/class-ure-lib.php:2161
|
193 |
+
#, fuzzy
|
194 |
+
msgid "This role does not exist - "
|
195 |
+
msgstr "%s rolü mevcut değil"
|
196 |
+
|
197 |
+
#: ../includes/class-ure-lib.php:2177
|
198 |
msgid "Editor"
|
199 |
msgstr "Editör"
|
200 |
|
201 |
+
#: ../includes/class-ure-lib.php:2178
|
202 |
msgid "Author"
|
203 |
msgstr "Yazar"
|
204 |
|
205 |
+
#: ../includes/class-ure-lib.php:2179
|
206 |
msgid "Contributor"
|
207 |
msgstr "İçerik Sağlayıcı"
|
208 |
|
209 |
+
#: ../includes/class-ure-lib.php:2180
|
210 |
msgid "Subscriber"
|
211 |
msgstr "Abone"
|
212 |
|
213 |
+
#: ../includes/class-ure-lib.php:2182
|
214 |
msgid "Switch themes"
|
215 |
msgstr "Tema değiştirme"
|
216 |
|
217 |
+
#: ../includes/class-ure-lib.php:2183
|
218 |
msgid "Edit themes"
|
219 |
msgstr "Tema düzenleme"
|
220 |
|
221 |
+
#: ../includes/class-ure-lib.php:2184
|
222 |
msgid "Activate plugins"
|
223 |
msgstr "Eklenti etkinleştirme"
|
224 |
|
225 |
+
#: ../includes/class-ure-lib.php:2185
|
226 |
msgid "Edit plugins"
|
227 |
msgstr "Eklenti düzenleme"
|
228 |
|
229 |
+
#: ../includes/class-ure-lib.php:2186
|
230 |
msgid "Edit users"
|
231 |
msgstr "Kullanıcı düzenleme"
|
232 |
|
233 |
+
#: ../includes/class-ure-lib.php:2187
|
234 |
msgid "Edit files"
|
235 |
msgstr "Dosya düzenleme"
|
236 |
|
237 |
+
#: ../includes/class-ure-lib.php:2188
|
238 |
msgid "Manage options"
|
239 |
msgstr "Seçenek yönetme"
|
240 |
|
241 |
+
#: ../includes/class-ure-lib.php:2189
|
242 |
msgid "Moderate comments"
|
243 |
msgstr "Yorum ılıtma"
|
244 |
|
245 |
+
#: ../includes/class-ure-lib.php:2190
|
246 |
msgid "Manage categories"
|
247 |
msgstr "Kategori yönetme"
|
248 |
|
249 |
+
#: ../includes/class-ure-lib.php:2191
|
250 |
msgid "Manage links"
|
251 |
msgstr "Bağlantı yönetme"
|
252 |
|
253 |
+
#: ../includes/class-ure-lib.php:2192
|
254 |
msgid "Upload files"
|
255 |
msgstr "Dosya yükleme"
|
256 |
|
257 |
+
#: ../includes/class-ure-lib.php:2193
|
258 |
msgid "Import"
|
259 |
msgstr "İçe Aktarma"
|
260 |
|
261 |
+
#: ../includes/class-ure-lib.php:2194
|
262 |
msgid "Unfiltered html"
|
263 |
msgstr "Süzülmemiş html"
|
264 |
|
265 |
+
#: ../includes/class-ure-lib.php:2195
|
266 |
msgid "Edit posts"
|
267 |
msgstr "Yazı düzenleme"
|
268 |
|
269 |
+
#: ../includes/class-ure-lib.php:2196
|
270 |
msgid "Edit others posts"
|
271 |
msgstr "Başkalarının yazılarını düzenleme"
|
272 |
|
273 |
+
#: ../includes/class-ure-lib.php:2197
|
274 |
msgid "Edit published posts"
|
275 |
msgstr "Yayımdaki yazıları düzenleme"
|
276 |
|
277 |
+
#: ../includes/class-ure-lib.php:2198
|
278 |
msgid "Publish posts"
|
279 |
msgstr "Yazı yayımlama"
|
280 |
|
281 |
+
#: ../includes/class-ure-lib.php:2199
|
282 |
msgid "Edit pages"
|
283 |
msgstr "Sayfa düzenleme"
|
284 |
|
285 |
+
#: ../includes/class-ure-lib.php:2200
|
286 |
msgid "Read"
|
287 |
msgstr "Okuma"
|
288 |
|
289 |
+
#: ../includes/class-ure-lib.php:2201
|
290 |
msgid "Level 10"
|
291 |
msgstr "Seviye 10"
|
292 |
|
293 |
+
#: ../includes/class-ure-lib.php:2202
|
294 |
msgid "Level 9"
|
295 |
msgstr "Seviye 9"
|
296 |
|
297 |
+
#: ../includes/class-ure-lib.php:2203
|
298 |
msgid "Level 8"
|
299 |
msgstr "Seviye 8"
|
300 |
|
301 |
+
#: ../includes/class-ure-lib.php:2204
|
302 |
msgid "Level 7"
|
303 |
msgstr "Seviye 7"
|
304 |
|
305 |
+
#: ../includes/class-ure-lib.php:2205
|
306 |
msgid "Level 6"
|
307 |
msgstr "Seviye 6"
|
308 |
|
309 |
+
#: ../includes/class-ure-lib.php:2206
|
310 |
msgid "Level 5"
|
311 |
msgstr "Seviye 5"
|
312 |
|
313 |
+
#: ../includes/class-ure-lib.php:2207
|
314 |
msgid "Level 4"
|
315 |
msgstr "Seviye 4"
|
316 |
|
317 |
+
#: ../includes/class-ure-lib.php:2208
|
318 |
msgid "Level 3"
|
319 |
msgstr "Seviye 3"
|
320 |
|
321 |
+
#: ../includes/class-ure-lib.php:2209
|
322 |
msgid "Level 2"
|
323 |
msgstr "Seviye 2"
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:2210
|
326 |
msgid "Level 1"
|
327 |
msgstr "Seviye 1"
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:2211
|
330 |
msgid "Level 0"
|
331 |
msgstr "Seviye 0"
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:2212
|
334 |
msgid "Edit others pages"
|
335 |
msgstr "Başkalarının sayfalarını düzenleme"
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:2213
|
338 |
msgid "Edit published pages"
|
339 |
msgstr "Yayımdaki sayfaları düzenleme"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:2214
|
342 |
msgid "Publish pages"
|
343 |
msgstr "Sayfa yayımlama"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:2215
|
346 |
msgid "Delete pages"
|
347 |
msgstr "Sayfa silme"
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:2216
|
350 |
msgid "Delete others pages"
|
351 |
msgstr "Başkalarının sayfalarını silme"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:2217
|
354 |
msgid "Delete published pages"
|
355 |
msgstr "Yayımdaki sayfaları silme"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:2218
|
358 |
msgid "Delete posts"
|
359 |
msgstr "Yazı silme"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:2219
|
362 |
msgid "Delete others posts"
|
363 |
msgstr "Başkalarının yazılarını silme"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:2220
|
366 |
msgid "Delete published posts"
|
367 |
msgstr "Yayımdaki yazıları silme"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:2221
|
370 |
msgid "Delete private posts"
|
371 |
msgstr "Kişisel yazıları silme"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:2222
|
374 |
msgid "Edit private posts"
|
375 |
msgstr "Kişisel yazıları düzenleme"
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:2223
|
378 |
msgid "Read private posts"
|
379 |
msgstr "Kişisel yazıları okuma"
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:2224
|
382 |
msgid "Delete private pages"
|
383 |
msgstr "Kişisel sayfaları silme"
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:2225
|
386 |
msgid "Edit private pages"
|
387 |
msgstr "Kişisel sayfaları düzenleme"
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:2226
|
390 |
msgid "Read private pages"
|
391 |
msgstr "Kişisel sayfaları okuma"
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:2227
|
394 |
msgid "Delete users"
|
395 |
msgstr "Kullanıcı silme"
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:2228
|
398 |
msgid "Create users"
|
399 |
msgstr "Kullanıcı oluşturma"
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:2229
|
402 |
msgid "Unfiltered upload"
|
403 |
msgstr "Süzülmemiş yükleme"
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:2230
|
406 |
msgid "Edit dashboard"
|
407 |
msgstr "Panel düzenleme"
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:2231
|
410 |
msgid "Update plugins"
|
411 |
msgstr "Eklenti güncelleme"
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:2232
|
414 |
msgid "Delete plugins"
|
415 |
msgstr "Eklenti silme"
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:2233
|
418 |
msgid "Install plugins"
|
419 |
msgstr "Eklenti kurma"
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:2234
|
422 |
msgid "Update themes"
|
423 |
msgstr "Tema güncelleme"
|
424 |
|
425 |
+
#: ../includes/class-ure-lib.php:2235
|
426 |
msgid "Install themes"
|
427 |
msgstr "Tema kurma"
|
428 |
|
429 |
+
#: ../includes/class-ure-lib.php:2236
|
430 |
msgid "Update core"
|
431 |
msgstr "Çekirdek güncelleme"
|
432 |
|
433 |
+
#: ../includes/class-ure-lib.php:2237
|
434 |
msgid "List users"
|
435 |
msgstr "Kullanıcı listeleme"
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:2238
|
438 |
msgid "Remove users"
|
439 |
msgstr "Kullanıcı kaldırma"
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:2239
|
442 |
msgid "Add users"
|
443 |
msgstr "Kullanıcı ekleme"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:2240
|
446 |
msgid "Promote users"
|
447 |
msgstr "Kullanıcı teşvik etme"
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:2241
|
450 |
msgid "Edit theme options"
|
451 |
msgstr "Tema seçenekleri düzenleme"
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:2242
|
454 |
msgid "Delete themes"
|
455 |
msgstr "Tema silme"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:2243
|
458 |
msgid "Export"
|
459 |
msgstr "Dışa Aktarma"
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:2366
|
462 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
463 |
msgstr "Hata: Kabiliyet ismi yalnızca latin karakterleri ve rakamlar içermeli!"
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:2379
|
466 |
#, php-format
|
467 |
msgid "Capability %s is added successfully"
|
468 |
msgstr "%s kabiliyeti başarıyla eklendi"
|
469 |
|
470 |
+
#: ../includes/class-ure-lib.php:2381
|
471 |
#, php-format
|
472 |
msgid "Capability %s exists already"
|
473 |
msgstr "%s kabiliyeti zaten mevcut"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:2410
|
476 |
#, php-format
|
477 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
478 |
msgstr "Hata! Bu kabiliyeti silmeye izniniz yok: %s!"
|
479 |
|
480 |
+
#: ../includes/class-ure-lib.php:2429
|
481 |
+
#, fuzzy, php-format
|
482 |
+
msgid "Capability %s was removed successfully"
|
483 |
msgstr "%s kabiliyeti başarıyla kaldırıldı"
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:2497
|
486 |
msgid "Version:"
|
487 |
msgstr "Sürüm:"
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:2498
|
490 |
msgid "Author's website"
|
491 |
msgstr "Yazarın web sitesi"
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:2499
|
494 |
msgid "Plugin webpage"
|
495 |
msgstr "Eklenti web sayfası"
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:2500
|
498 |
msgid "Plugin download"
|
499 |
msgstr "Eklenti indirme"
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:2501
|
502 |
+
#: ../includes/class-user-role-editor.php:546
|
503 |
+
msgid "Changelog"
|
504 |
+
msgstr "Değişiklik Günlüğü"
|
505 |
+
|
506 |
+
#: ../includes/class-ure-lib.php:2502
|
507 |
msgid "FAQ"
|
508 |
msgstr "S.S.S."
|
509 |
|
510 |
+
#: ../includes/class-ure-lib.php:2575
|
511 |
+
msgid "Delete All Unused Roles"
|
512 |
+
msgstr "Tüm Kullanılmayan Rolleri Sil"
|
513 |
+
|
514 |
+
#: ../includes/class-ure-lib.php:2588
|
515 |
msgid "None"
|
516 |
msgstr "Hiçbiri"
|
517 |
|
518 |
+
#: ../includes/class-ure-lib.php:2632
|
519 |
+
msgid "— No role for this site —"
|
520 |
+
msgstr "— Bu site için hiç rol yok —"
|
521 |
+
|
522 |
+
#: ../includes/class-ure-lib.php:2747
|
523 |
+
#, php-format
|
524 |
+
msgid "Denied: %s"
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: ../includes/ure-role-edit.php:17
|
528 |
+
msgid "Select Role and change its capabilities:"
|
529 |
+
msgstr "Rol seçin ve rolün kabiliyetlerini değiştirin:"
|
530 |
+
|
531 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
532 |
+
msgid "Show capabilities in human readable form"
|
533 |
+
msgstr "Kabiliyetleri insancıl biçimde göster"
|
534 |
+
|
535 |
+
#: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
|
536 |
+
#: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
|
537 |
+
msgid "Show deprecated capabilities"
|
538 |
+
msgstr "Önerilmeyen kabiliyetleri göster"
|
539 |
+
|
540 |
+
#: ../includes/ure-role-edit.php:44
|
541 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
542 |
+
msgstr "İşaretliyse işlem bu Ağdaki TÜM sitelere uygulanır"
|
543 |
+
|
544 |
+
#: ../includes/ure-role-edit.php:56
|
545 |
+
msgid "Apply to All Sites"
|
546 |
+
msgstr "Tüm Sitelere Uygula"
|
547 |
+
|
548 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
549 |
+
msgid "Core capabilities:"
|
550 |
+
msgstr "Çekirdek kabiliyetler:"
|
551 |
+
|
552 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
553 |
+
msgid "Quick filter:"
|
554 |
+
msgstr "Hızlı süzgeç:"
|
555 |
|
556 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
557 |
+
msgid "Custom capabilities:"
|
558 |
+
msgstr "Özel kabiliyetler:"
|
559 |
|
560 |
+
#: ../includes/class-user-other-roles.php:82
|
561 |
+
#: ../includes/class-user-other-roles.php:183
|
562 |
+
#: ../includes/class-user-other-roles.php:243
|
563 |
+
msgid "Other Roles"
|
564 |
+
msgstr "Diğer Roller"
|
565 |
|
566 |
+
#: ../includes/class-user-other-roles.php:83
|
567 |
+
msgid "Select additional roles for this user"
|
568 |
+
msgstr ""
|
569 |
|
570 |
+
#: ../includes/class-user-other-roles.php:162
|
571 |
+
#: ../includes/class-user-role-editor.php:438
|
572 |
+
msgid "Capabilities"
|
573 |
+
msgstr "Kabiliyetler"
|
574 |
|
575 |
+
#: ../includes/class-user-other-roles.php:169
|
576 |
+
msgid "Edit"
|
577 |
+
msgstr "Düzenle"
|
578 |
|
579 |
+
#: ../includes/class-user-other-roles.php:215
|
580 |
+
#, fuzzy
|
581 |
+
msgid "Additional Capabilities"
|
582 |
+
msgstr "Kabiliyet Ekle"
|
583 |
|
584 |
#: ../includes/class-ure-screen-help.php:12
|
585 |
#: ../includes/class-ure-screen-help.php:41
|
588 |
msgid "User Role Editor Options page help"
|
589 |
msgstr "Kullanıcı Rol Editörü Seçenekler"
|
590 |
|
591 |
+
#: ../includes/class-ure-screen-help.php:15
|
592 |
+
#: ../includes/settings-template.php:53
|
593 |
+
msgid "Show Administrator role at User Role Editor"
|
594 |
+
msgstr "Yönetici rolünü Kullanıcı Rol Editörü'nde göster"
|
595 |
+
|
596 |
#: ../includes/class-ure-screen-help.php:16
|
597 |
msgid ""
|
598 |
"turn this option on in order to make the \"Administrator\" role available at "
|
603 |
"alması için bu seçeneği açık yapın. Güvenlik sebebiyle varsayılan olarak "
|
604 |
"gizlenmiştir."
|
605 |
|
606 |
+
#: ../includes/class-ure-screen-help.php:18
|
607 |
+
#: ../includes/settings-template.php:61
|
608 |
+
msgid "Show capabilities in the human readable form"
|
609 |
+
msgstr "Kabiliyetleri insancıl biçimde göster"
|
610 |
+
|
611 |
#: ../includes/class-ure-screen-help.php:19
|
612 |
msgid ""
|
613 |
"automatically converts capability names from the technical form for internal "
|
630 |
"uyumluluğun korunması amacıyla kullanıcı rolleri arasında yer verilmiştir. "
|
631 |
"Bu seçeneği açık yapmak bu önerilmeyen kabiliyetleri görünür yapacaktır."
|
632 |
|
633 |
+
#: ../includes/class-ure-screen-help.php:25
|
634 |
+
#: ../includes/settings-template.php:77
|
635 |
+
msgid "Edit user capabilities"
|
636 |
+
msgstr "Özel kabiliyetler düzenleme"
|
637 |
+
|
638 |
#: ../includes/class-ure-screen-help.php:26
|
639 |
msgid ""
|
640 |
"If turned off - capabilities section of selected user is shown in readonly "
|
642 |
"should make it using roles only."
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: ../includes/class-ure-screen-help.php:45
|
646 |
+
#: ../includes/settings-template.php:111
|
647 |
+
msgid "Count users without role"
|
648 |
+
msgstr "Rolsüz kullanıcıları say"
|
649 |
+
|
650 |
#: ../includes/class-ure-screen-help.php:46
|
651 |
msgid ""
|
652 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
688 |
"Süper yönetici WordPress çoklu site yapısında varsayılan olarak "
|
689 |
"kullanıcıları yalnızca oluşturur, düzenler ve siler. Bu kısıtlamayı "
|
690 |
"kaldırmak için bu seçeneği açık yapın."
|
691 |
+
|
692 |
+
#: ../includes/class-user-role-editor.php:233
|
693 |
+
msgid "Change role for users without role"
|
694 |
+
msgstr "Rolsüz kullanıcıların rolünü değiştir"
|
695 |
+
|
696 |
+
#: ../includes/class-user-role-editor.php:234
|
697 |
+
msgid "No rights"
|
698 |
+
msgstr "İzin yok"
|
699 |
+
|
700 |
+
#: ../includes/class-user-role-editor.php:235
|
701 |
+
msgid "Provide new role"
|
702 |
+
msgstr "Yeni rol sağla"
|
703 |
+
|
704 |
+
#: ../includes/class-user-role-editor.php:298
|
705 |
+
#: ../includes/class-user-role-editor.php:300
|
706 |
+
msgid "You do not have permission to edit this user."
|
707 |
+
msgstr "Bu kullanıcıyı düzenlemek için izniniz yok."
|
708 |
+
|
709 |
+
#: ../includes/class-user-role-editor.php:535
|
710 |
+
msgid "Settings"
|
711 |
+
msgstr "Ayarlar"
|
712 |
+
|
713 |
+
#: ../includes/class-user-role-editor.php:568
|
714 |
+
#: ../includes/settings-template.php:21
|
715 |
+
msgid "General"
|
716 |
+
msgstr "Genel"
|
717 |
+
|
718 |
+
#: ../includes/class-user-role-editor.php:574
|
719 |
+
#: ../includes/settings-template.php:26
|
720 |
+
msgid "Additional Modules"
|
721 |
+
msgstr "İlave Modüller"
|
722 |
+
|
723 |
+
#: ../includes/class-user-role-editor.php:580
|
724 |
+
#: ../includes/settings-template.php:30
|
725 |
+
msgid "Default Roles"
|
726 |
+
msgstr "Varsayılan Roller"
|
727 |
+
|
728 |
+
#: ../includes/class-user-role-editor.php:586
|
729 |
+
#: ../includes/settings-template.php:34
|
730 |
+
msgid "Multisite"
|
731 |
+
msgstr "Çoklu site"
|
732 |
+
|
733 |
+
#: ../includes/class-user-role-editor.php:685
|
734 |
+
#: ../includes/class-user-role-editor.php:703
|
735 |
+
#: ../includes/class-user-role-editor.php:747
|
736 |
+
msgid "User Role Editor options are updated"
|
737 |
+
msgstr "Kullanıcı Rol Editörü seçenekleri güncellendi"
|
738 |
+
|
739 |
+
#: ../includes/class-user-role-editor.php:731
|
740 |
+
msgid "Default Roles are updated"
|
741 |
+
msgstr "Varsayılan Roller güncellendi"
|
742 |
+
|
743 |
+
#: ../includes/class-user-role-editor.php:756
|
744 |
+
msgid ""
|
745 |
+
"You do not have sufficient permissions to manage options for User Role "
|
746 |
+
"Editor."
|
747 |
+
msgstr "Kullanıcı Rol Editörü seçeneklerini yönetmek için yeterli izniniz yok."
|
748 |
+
|
749 |
+
#: ../includes/class-user-role-editor.php:885
|
750 |
+
msgid "Select All"
|
751 |
+
msgstr "Hepsini Seç"
|
752 |
+
|
753 |
+
#: ../includes/class-user-role-editor.php:886
|
754 |
+
msgid "Unselect All"
|
755 |
+
msgstr "Hiçbirini Seçme"
|
756 |
+
|
757 |
+
#: ../includes/class-user-role-editor.php:887
|
758 |
+
msgid "Reverse"
|
759 |
+
msgstr "Evir"
|
760 |
+
|
761 |
+
#: ../includes/class-user-role-editor.php:888
|
762 |
+
msgid "Update"
|
763 |
+
msgstr "Güncelle"
|
764 |
+
|
765 |
+
#: ../includes/class-user-role-editor.php:889
|
766 |
+
msgid "Please confirm permissions update"
|
767 |
+
msgstr "Lütfen izin güncellemesini onaylayın"
|
768 |
+
|
769 |
+
#: ../includes/class-user-role-editor.php:890
|
770 |
+
msgid "Add New Role"
|
771 |
+
msgstr "Yeni Rol Ekle"
|
772 |
+
|
773 |
+
#: ../includes/class-user-role-editor.php:891
|
774 |
+
#: ../includes/class-user-role-editor.php:896
|
775 |
+
msgid "Rename Role"
|
776 |
+
msgstr "Rol İsmi Değiştir"
|
777 |
+
|
778 |
+
#: ../includes/class-user-role-editor.php:892
|
779 |
+
msgid " Role name (ID) can not be empty!"
|
780 |
+
msgstr "Rol ismi (ID) boş olamaz!"
|
781 |
+
|
782 |
+
#: ../includes/class-user-role-editor.php:893
|
783 |
+
msgid ""
|
784 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
785 |
+
"only!"
|
786 |
+
msgstr ""
|
787 |
+
"Rol ismi (ID) yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
788 |
+
"çizgiler içermeli!"
|
789 |
+
|
790 |
+
#: ../includes/class-user-role-editor.php:894
|
791 |
+
msgid ""
|
792 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
793 |
+
"it."
|
794 |
+
msgstr ""
|
795 |
+
"WordPress sayısal rol ismi (ID) desteklemiyor. Latin karakterler ekleyin."
|
796 |
+
|
797 |
+
#: ../includes/class-user-role-editor.php:895
|
798 |
+
msgid "Add Role"
|
799 |
+
msgstr "Rol Ekle"
|
800 |
+
|
801 |
+
#: ../includes/class-user-role-editor.php:897
|
802 |
+
msgid "Delete Role"
|
803 |
+
msgstr "Rol Sil"
|
804 |
+
|
805 |
+
#: ../includes/class-user-role-editor.php:898
|
806 |
+
msgid "Cancel"
|
807 |
+
msgstr "İptal"
|
808 |
+
|
809 |
+
#: ../includes/class-user-role-editor.php:899
|
810 |
+
msgid "Add Capability"
|
811 |
+
msgstr "Kabiliyet Ekle"
|
812 |
+
|
813 |
+
#: ../includes/class-user-role-editor.php:900
|
814 |
+
#: ../includes/class-user-role-editor.php:909
|
815 |
+
msgid "Delete Capability"
|
816 |
+
msgstr "Kabiliyet Sil"
|
817 |
+
|
818 |
+
#: ../includes/class-user-role-editor.php:901
|
819 |
+
msgid "Reset"
|
820 |
+
msgstr "Sıfırla"
|
821 |
+
|
822 |
+
#: ../includes/class-user-role-editor.php:902
|
823 |
+
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
824 |
+
msgstr ""
|
825 |
+
"TEHLİKE! Sıfırlama WordPress Çekirdeğinin varsayılan ayarlarını geri yükler."
|
826 |
+
|
827 |
+
#: ../includes/class-user-role-editor.php:903
|
828 |
+
msgid ""
|
829 |
+
"If any plugins have changed capabilities in any way upon installation (such "
|
830 |
+
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
831 |
+
msgstr ""
|
832 |
+
"Herhangi eklenti (S2Member, WooCommerce gibi) kurulumdan sonra herhangi "
|
833 |
+
"yoldan kabiliyetleri değiştirdiyse, o kabiliyetler SİLİNİR!"
|
834 |
+
|
835 |
+
#: ../includes/class-user-role-editor.php:904
|
836 |
+
msgid ""
|
837 |
+
"For more information on how to undo changes and restore plugin capabilities "
|
838 |
+
"go to"
|
839 |
+
msgstr ""
|
840 |
+
"Değişiklikleri geri alma ve eklenti kabiliyetlerini geri yükleme hakkında "
|
841 |
+
"daha fazla bilgi için gideceğiniz adres:"
|
842 |
+
|
843 |
+
#: ../includes/class-user-role-editor.php:906
|
844 |
+
msgid "Continue?"
|
845 |
+
msgstr "Devam mı?"
|
846 |
+
|
847 |
+
#: ../includes/class-user-role-editor.php:907
|
848 |
+
msgid "Default Role"
|
849 |
+
msgstr "Varsayılan Rol"
|
850 |
+
|
851 |
+
#: ../includes/class-user-role-editor.php:908
|
852 |
+
msgid "Set New Default Role"
|
853 |
+
msgstr "Yeni Varsayılan Rol Belirle"
|
854 |
+
|
855 |
+
#: ../includes/class-user-role-editor.php:910
|
856 |
+
msgid ""
|
857 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
858 |
+
"or other custom code"
|
859 |
+
msgstr ""
|
860 |
+
"Uyarı! Dikkatli olun - kritik kabiliyetleri kaldırmak bazı eklentileri veya "
|
861 |
+
"diğer özel kodları bozabilir"
|
862 |
+
|
863 |
+
#: ../includes/class-user-role-editor.php:911
|
864 |
+
msgid " Capability name (ID) can not be empty!"
|
865 |
+
msgstr "Kabiliyet ismi (ID) boş olamaz!"
|
866 |
+
|
867 |
+
#: ../includes/class-user-role-editor.php:912
|
868 |
+
msgid ""
|
869 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
870 |
+
"underscore only!"
|
871 |
+
msgstr ""
|
872 |
+
"Kabiliyet ismi (ID) yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
873 |
+
"çizgiler içermeli!"
|
874 |
+
|
875 |
+
#: ../includes/settings-template.php:17
|
876 |
+
msgid "User Role Editor - Options"
|
877 |
+
msgstr "Kullanıcı Rol Editörü - Seçenekler"
|
878 |
+
|
879 |
+
#: ../includes/settings-template.php:39
|
880 |
+
msgid "About"
|
881 |
+
msgstr "Hakkında"
|
882 |
+
|
883 |
+
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
884 |
+
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
885 |
+
msgid "Save"
|
886 |
+
msgstr "Sakla"
|
887 |
+
|
888 |
+
#: ../includes/settings-template.php:138
|
889 |
+
msgid "Primary default role: "
|
890 |
+
msgstr "Birincil varsayılan rol:"
|
891 |
+
|
892 |
+
#: ../includes/settings-template.php:145
|
893 |
+
msgid "Other default roles for new registered user: "
|
894 |
+
msgstr "Yeni kaydolan kullanıcılar için diğer varsayılan roller:"
|
895 |
+
|
896 |
+
#: ../includes/settings-template.php:151
|
897 |
+
msgid ""
|
898 |
+
"Note for multisite environment: take into account that other default roles "
|
899 |
+
"should exist at the site, in order to be assigned to the new registered "
|
900 |
+
"users."
|
901 |
+
msgstr ""
|
902 |
+
"Çoklu site ortamı için hatırlatma: diğer varsayılan rollerin yeni kaydolan "
|
903 |
+
"kullanıcılara atanması için sitede bulunması gerektiğini olduğunu hesaba "
|
904 |
+
"katın."
|
905 |
+
|
906 |
+
#: ../includes/settings-template.php:177
|
907 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
908 |
+
msgstr ""
|
909 |
+
"Süper yönetici olmayanların kullanıcı oluşturma, düzenleme ve silmelerine "
|
910 |
+
"izin ver"
|
911 |
+
|
912 |
+
#: ../includes/ure-user-edit.php:32
|
913 |
+
msgid "Network Super Admin"
|
914 |
+
msgstr "Ağ Süper Yöneticisi"
|
915 |
+
|
916 |
+
#: ../includes/ure-user-edit.php:35
|
917 |
+
msgid "Change capabilities for user"
|
918 |
+
msgstr "Kullanıcının kabiliyetlerini değiştir"
|
919 |
+
|
920 |
+
#: ../includes/ure-user-edit.php:72
|
921 |
+
msgid "Primary Role:"
|
922 |
+
msgstr "Birincil Rol:"
|
923 |
+
|
924 |
+
#: ../includes/ure-user-edit.php:82
|
925 |
+
msgid "bbPress Role:"
|
926 |
+
msgstr "bbPress Rolü:"
|
927 |
+
|
928 |
+
#: ../includes/ure-user-edit.php:92
|
929 |
+
msgid "Other Roles:"
|
930 |
+
msgstr "Diğer Roller:"
|
lang/user-role-editor.mo
ADDED
Binary file
|
lang/{ure.pot → user-role-editor.pot}
RENAMED
@@ -1,12 +1,12 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor 2
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <
|
8 |
-
"Language-Team:
|
9 |
-
"Language:
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -16,842 +16,864 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../includes/
|
20 |
-
msgid "
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: ../includes/
|
24 |
-
|
25 |
-
msgid "General"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: ../includes/
|
29 |
-
|
30 |
-
msgid "Additional Modules"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: ../includes/
|
34 |
-
|
35 |
-
msgid "Default Roles"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: ../includes/
|
39 |
-
|
40 |
-
msgid "Multisite"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: ../includes/
|
44 |
-
msgid "
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: ../includes/
|
48 |
-
|
49 |
-
msgid "Show Administrator role at User Role Editor"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../includes/
|
53 |
-
#: ../includes/class-
|
54 |
-
|
|
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../includes/
|
58 |
-
|
59 |
-
msgid "Show deprecated capabilities"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: ../includes/
|
63 |
-
|
64 |
-
msgid "Edit user capabilities"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: ../includes/
|
68 |
-
|
69 |
-
msgid "Save"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: ../includes/
|
73 |
-
|
74 |
-
msgid "Count users without role"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: ../includes/
|
78 |
-
msgid "
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: ../includes/
|
82 |
-
msgid "
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: ../includes/
|
86 |
-
msgid ""
|
87 |
-
"Note for multisite environment: take into account that other default roles "
|
88 |
-
"should exist at the site, in order to be assigned to the new registered "
|
89 |
-
"users."
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: ../includes/
|
93 |
-
msgid "
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: ../includes/class-
|
97 |
-
msgid "
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: ../includes/class-
|
101 |
-
msgid "
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: ../includes/class-
|
105 |
-
msgid "
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: ../includes/class-
|
109 |
-
|
110 |
-
msgid "You do not have permission to edit this user."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: ../includes/class-
|
114 |
-
|
|
|
|
|
|
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: ../includes/class-
|
118 |
-
msgid "
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: ../includes/class-
|
122 |
-
|
123 |
-
|
|
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: ../includes/class-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
msgid "User Role Editor"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../includes/class-
|
134 |
-
|
135 |
-
|
136 |
-
msgid "User Role Editor options are updated"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: ../includes/class-
|
140 |
-
msgid "
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: ../includes/class-
|
144 |
-
|
145 |
-
"
|
146 |
-
"Editor."
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../includes/class-
|
150 |
-
|
151 |
-
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
152 |
-
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
153 |
-
msgid "Insufficient permissions to work with User Role Editor"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: ../includes/class-
|
157 |
-
msgid "
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: ../includes/class-
|
161 |
-
|
|
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../includes/class-
|
165 |
-
|
|
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: ../includes/class-
|
169 |
-
msgid "
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: ../includes/class-
|
173 |
-
msgid "
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: ../includes/class-
|
177 |
-
|
|
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: ../includes/class-
|
181 |
-
|
182 |
-
msgid "Rename Role"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../includes/class-
|
186 |
-
|
|
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: ../includes/class-
|
190 |
-
msgid ""
|
191 |
-
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
192 |
-
"only!"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: ../includes/class-
|
196 |
-
msgid ""
|
197 |
-
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
198 |
-
"it."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ../includes/class-
|
202 |
-
msgid "
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../includes/class-
|
206 |
-
msgid "
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: ../includes/class-
|
210 |
-
msgid "
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../includes/class-
|
214 |
-
msgid "
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ../includes/class-
|
218 |
-
|
219 |
-
msgid "Delete Capability"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: ../includes/class-
|
223 |
-
msgid "
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: ../includes/class-
|
227 |
-
msgid "
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../includes/class-
|
231 |
-
msgid ""
|
232 |
-
"If any plugins have changed capabilities in any way upon installation (such "
|
233 |
-
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: ../includes/class-
|
237 |
-
msgid ""
|
238 |
-
"For more information on how to undo changes and restore plugin capabilities "
|
239 |
-
"go to"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ../includes/class-
|
243 |
-
msgid "
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: ../includes/class-
|
247 |
-
msgid "
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../includes/class-
|
251 |
-
msgid "
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: ../includes/class-
|
255 |
-
msgid ""
|
256 |
-
"Warning! Be careful - removing critical capability could crash some plugin "
|
257 |
-
"or other custom code"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: ../includes/class-
|
261 |
-
msgid "
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: ../includes/class-
|
265 |
-
msgid ""
|
266 |
-
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
267 |
-
"underscore only!"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: ../includes/class-
|
271 |
-
|
272 |
-
msgid "Other Roles"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: ../includes/class-
|
276 |
-
msgid "
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../includes/ure-
|
280 |
-
msgid "
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../includes/
|
284 |
-
msgid "
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../includes/ure-
|
288 |
-
msgid "
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ../includes/ure-
|
292 |
-
msgid "
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: ../includes/
|
296 |
-
msgid "
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: ../includes/
|
300 |
-
msgid "
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: ../includes/
|
304 |
-
msgid "
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: ../includes/class-ure-lib.php:
|
308 |
-
msgid "
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../includes/class-ure-lib.php:
|
312 |
-
msgid "
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../includes/class-ure-lib.php:
|
316 |
-
msgid "
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../includes/class-ure-lib.php:
|
320 |
-
msgid "
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../includes/class-ure-lib.php:
|
324 |
-
msgid "
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: ../includes/class-ure-lib.php:
|
328 |
-
msgid "
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: ../includes/class-ure-lib.php:
|
332 |
-
msgid "
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: ../includes/class-ure-lib.php:
|
336 |
-
msgid "
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: ../includes/class-ure-lib.php:
|
340 |
-
msgid "
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: ../includes/class-ure-lib.php:
|
344 |
-
msgid "
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: ../includes/class-ure-lib.php:
|
348 |
-
msgid "
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: ../includes/class-ure-lib.php:
|
352 |
-
msgid "
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: ../includes/class-ure-lib.php:
|
356 |
-
msgid "
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: ../includes/class-ure-lib.php:
|
360 |
-
msgid "
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: ../includes/class-ure-lib.php:
|
364 |
-
msgid "
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: ../includes/class-ure-lib.php:
|
368 |
-
msgid "
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: ../includes/class-ure-lib.php:
|
372 |
-
msgid "
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: ../includes/class-ure-lib.php:
|
376 |
-
msgid "
|
377 |
-
msgstr ""
|
378 |
-
|
379 |
-
#: ../includes/class-ure-lib.php:1446
|
380 |
-
msgid "Help"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: ../includes/class-ure-lib.php:
|
384 |
-
msgid "
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: ../includes/class-ure-lib.php:
|
388 |
-
msgid ""
|
389 |
-
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
390 |
-
"only!"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: ../includes/class-ure-lib.php:
|
394 |
-
msgid ""
|
395 |
-
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
396 |
-
"characters to it."
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../includes/class-ure-lib.php:
|
400 |
-
|
401 |
-
msgid "Role %s exists already"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: ../includes/class-ure-lib.php:
|
405 |
-
msgid "
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: ../includes/class-ure-lib.php:
|
409 |
-
|
410 |
-
msgid "Role %s is created successfully"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: ../includes/class-ure-lib.php:
|
414 |
-
msgid "
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: ../includes/class-ure-lib.php:
|
418 |
-
msgid "
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: ../includes/class-ure-lib.php:
|
422 |
-
|
423 |
-
msgid "Role %s does not exists"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
-
|
428 |
-
msgid "Role %s is renamed to %s successfully"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
-
msgid "
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../includes/class-ure-lib.php:
|
436 |
-
msgid "
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
-
|
441 |
-
msgid "Role %s is deleted successfully"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ../includes/class-ure-lib.php:
|
445 |
-
msgid "
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: ../includes/class-ure-lib.php:
|
449 |
-
|
450 |
-
msgid "Default role for new users is set to %s successfully"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
-
msgid "
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
-
msgid "
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: ../includes/class-ure-lib.php:
|
462 |
-
msgid "
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: ../includes/class-ure-lib.php:
|
466 |
-
msgid "
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: ../includes/class-ure-lib.php:
|
470 |
-
msgid "
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: ../includes/class-ure-lib.php:
|
474 |
-
msgid "
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: ../includes/class-ure-lib.php:
|
478 |
-
msgid "
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: ../includes/class-ure-lib.php:
|
482 |
-
msgid "
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../includes/class-ure-lib.php:
|
486 |
-
msgid "
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: ../includes/class-ure-lib.php:
|
490 |
-
msgid "
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: ../includes/class-ure-lib.php:
|
494 |
-
|
|
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: ../includes/class-ure-lib.php:
|
498 |
-
|
|
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: ../includes/class-ure-lib.php:
|
502 |
-
|
|
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: ../includes/class-ure-lib.php:
|
506 |
-
|
|
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: ../includes/class-ure-lib.php:
|
510 |
-
msgid "
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: ../includes/class-ure-lib.php:
|
514 |
-
msgid "
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: ../includes/class-ure-lib.php:
|
518 |
-
msgid "
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: ../includes/class-ure-lib.php:
|
522 |
-
msgid "
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: ../includes/class-ure-lib.php:
|
526 |
-
|
|
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: ../includes/class-ure-lib.php:
|
530 |
-
msgid "
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ../includes/class-ure-lib.php:
|
534 |
-
msgid "
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../includes/class-ure-lib.php:
|
538 |
-
msgid "
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../includes/class-ure-lib.php:
|
542 |
-
msgid "
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: ../includes/class-ure-lib.php:
|
546 |
-
|
|
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: ../includes/
|
550 |
-
msgid "
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: ../includes/
|
554 |
-
msgid "
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: ../includes/class-ure-
|
558 |
-
|
|
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: ../includes/
|
562 |
-
msgid "
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: ../includes/
|
566 |
-
msgid "
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: ../includes/
|
570 |
-
msgid "
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: ../includes/
|
574 |
-
msgid "
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: ../includes/
|
578 |
-
msgid "
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: ../includes/class-
|
582 |
-
|
|
|
|
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: ../includes/class-
|
586 |
-
msgid "
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: ../includes/class-
|
590 |
-
|
|
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: ../includes/class-
|
594 |
-
msgid "Edit
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: ../includes/class-
|
598 |
-
msgid "
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: ../includes/class-ure-
|
602 |
-
|
|
|
|
|
|
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: ../includes/class-ure-
|
606 |
-
|
|
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: ../includes/class-ure-
|
610 |
-
msgid "
|
|
|
|
|
|
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: ../includes/class-ure-
|
614 |
-
|
|
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: ../includes/class-ure-
|
618 |
-
msgid "
|
|
|
|
|
|
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: ../includes/class-ure-
|
622 |
-
msgid "
|
|
|
|
|
|
|
|
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: ../includes/class-ure-
|
626 |
-
|
|
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: ../includes/class-ure-
|
630 |
-
msgid "
|
|
|
|
|
|
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: ../includes/class-ure-
|
634 |
-
|
|
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: ../includes/class-ure-
|
638 |
-
msgid "
|
|
|
|
|
|
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: ../includes/class-ure-
|
642 |
-
msgid "
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: ../includes/class-ure-
|
646 |
-
msgid "
|
|
|
|
|
|
|
|
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: ../includes/class-ure-
|
650 |
-
msgid "
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: ../includes/class-ure-
|
654 |
-
msgid "
|
|
|
|
|
|
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: ../includes/class-
|
658 |
-
msgid "
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: ../includes/class-
|
662 |
-
msgid "
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: ../includes/class-
|
666 |
-
msgid "
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: ../includes/class-
|
670 |
-
|
|
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: ../includes/class-
|
674 |
-
msgid "
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: ../includes/class-
|
678 |
-
|
|
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: ../includes/class-
|
682 |
-
|
|
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: ../includes/class-
|
686 |
-
|
|
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: ../includes/class-
|
690 |
-
|
|
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: ../includes/class-
|
694 |
-
|
|
|
|
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: ../includes/class-
|
698 |
-
msgid "
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: ../includes/class-
|
702 |
-
msgid "
|
|
|
|
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: ../includes/class-
|
706 |
-
msgid "
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: ../includes/class-
|
710 |
-
msgid "
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: ../includes/class-
|
714 |
-
msgid "
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: ../includes/class-
|
718 |
-
msgid "
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: ../includes/class-
|
722 |
-
|
723 |
-
msgid "Capability %s is added successfully"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: ../includes/class-
|
727 |
-
|
728 |
-
msgid "Capability %s exists already"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: ../includes/class-
|
732 |
-
|
733 |
-
msgid "
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: ../includes/class-
|
737 |
-
|
738 |
-
msgid "Capability %s is removed successfully"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: ../includes/class-
|
742 |
-
msgid "
|
|
|
|
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: ../includes/class-
|
746 |
-
msgid "
|
|
|
|
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: ../includes/class-
|
750 |
-
msgid "
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: ../includes/class-
|
754 |
-
msgid "
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: ../includes/class-
|
758 |
-
msgid "
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: ../includes/class-
|
762 |
-
msgid "
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: ../includes/class-
|
766 |
-
|
|
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: ../includes/class-
|
770 |
-
msgid "
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: ../includes/
|
774 |
-
msgid "
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: ../includes/
|
778 |
-
msgid "
|
|
|
|
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: ../includes/
|
782 |
-
msgid "
|
|
|
|
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: ../includes/
|
786 |
-
msgid "
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: ../includes/
|
790 |
-
msgid "
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: ../includes/class-
|
794 |
-
|
795 |
-
#: ../includes/class-ure-screen-help.php:60
|
796 |
-
#: ../includes/class-ure-screen-help.php:79
|
797 |
-
msgid "User Role Editor Options page help"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: ../includes/class-
|
801 |
msgid ""
|
802 |
-
"
|
803 |
-
"
|
804 |
-
"for security reasons."
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../includes/class-
|
808 |
-
msgid ""
|
809 |
-
"automatically converts capability names from the technical form for internal "
|
810 |
-
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
811 |
-
"others posts\"."
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: ../includes/class-
|
815 |
msgid ""
|
816 |
-
"
|
817 |
-
"
|
818 |
-
"with the old themes and plugins code. Turning on this option will show those "
|
819 |
-
"deprecated capabilities."
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: ../includes/
|
823 |
-
msgid ""
|
824 |
-
"If turned off - capabilities section of selected user is shown in readonly "
|
825 |
-
"mode. Administrator can not assign capabilities to the user directly. He "
|
826 |
-
"should make it using roles only."
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: ../includes/
|
830 |
-
msgid ""
|
831 |
-
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
832 |
-
"assign all of them an empty role \"No rights\", in order to look on the "
|
833 |
-
"users list with role \"No rights\" at the separate tab then."
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: ../includes/
|
837 |
-
|
|
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: ../includes/
|
841 |
-
msgid ""
|
842 |
-
"select roles below to assign them to the new user automatically as an "
|
843 |
-
"addition to the primary role. Note for multisite environment: take into "
|
844 |
-
"account that other default roles should exist at the site, in order to be "
|
845 |
-
"assigned to the new registered users."
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: ../includes/
|
849 |
-
msgid "
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: ../includes/
|
853 |
msgid ""
|
854 |
-
"
|
855 |
-
"
|
856 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
857 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: User Role Editor 4.19.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-11 21:06+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Vladimir Garagulya <vladimir@shinephp.com>\n"
|
8 |
+
"Language-Team: https://www.role-editor.com <support@role-editor.com>\n"
|
9 |
+
"Language: en_EN\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/class-ure-lib.php:247
|
20 |
+
msgid "Error: wrong request"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
24 |
+
msgid "Role name (ID): "
|
|
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: ../includes/class-ure-lib.php:282 ../includes/class-ure-lib.php:293
|
28 |
+
msgid "Display Role Name: "
|
|
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: ../includes/class-ure-lib.php:284
|
32 |
+
msgid "Make copy of: "
|
|
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ../includes/class-ure-lib.php:300
|
36 |
+
msgid "Select Role:"
|
|
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: ../includes/class-ure-lib.php:315
|
40 |
+
msgid "Delete:"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../includes/class-ure-lib.php:322
|
44 |
+
msgid "Capability name (ID): "
|
|
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: ../includes/class-ure-lib.php:339
|
48 |
+
#: ../includes/class-user-role-editor.php:596
|
49 |
+
#: ../includes/class-user-role-editor.php:625
|
50 |
+
msgid "User Role Editor"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: ../includes/class-ure-lib.php:436
|
54 |
+
msgid "Error: "
|
|
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: ../includes/class-ure-lib.php:436
|
58 |
+
msgid "Role"
|
|
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: ../includes/class-ure-lib.php:437
|
62 |
+
msgid "does not exist"
|
|
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: ../includes/class-ure-lib.php:480
|
66 |
+
msgid "Role is updated successfully"
|
|
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: ../includes/class-ure-lib.php:482
|
70 |
+
msgid "Roles are updated for all network"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../includes/class-ure-lib.php:488
|
74 |
+
msgid "Error occured during role(s) update"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../includes/class-ure-lib.php:495
|
78 |
+
msgid "User capabilities are updated successfully"
|
|
|
|
|
|
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: ../includes/class-ure-lib.php:500
|
82 |
+
msgid "Error occured during user update"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../includes/class-ure-lib.php:558
|
86 |
+
msgid "User Roles are restored to WordPress default values. "
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: ../includes/class-ure-lib.php:1436
|
90 |
+
msgid "read about"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: ../includes/class-ure-lib.php:1437
|
94 |
+
msgid "user capability"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: ../includes/class-ure-lib.php:1438
|
98 |
+
msgid "Help"
|
|
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: ../includes/class-ure-lib.php:1693 ../includes/class-ure-lib.php:1946
|
102 |
+
#: ../includes/class-ure-lib.php:2062 ../includes/class-ure-lib.php:2110
|
103 |
+
#: ../includes/class-ure-lib.php:2358 ../includes/class-ure-lib.php:2403
|
104 |
+
#: ../includes/class-user-role-editor.php:828
|
105 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: ../includes/class-ure-lib.php:1909
|
109 |
+
msgid "Error is occur. Please check the log file."
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: ../includes/class-ure-lib.php:1955 ../includes/class-ure-lib.php:2022
|
113 |
+
msgid ""
|
114 |
+
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
115 |
+
"only!"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
119 |
+
msgid ""
|
120 |
+
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
121 |
+
"characters to it."
|
|
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: ../includes/class-ure-lib.php:1974
|
125 |
+
#, php-format
|
126 |
+
msgid "Role %s exists already"
|
|
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: ../includes/class-ure-lib.php:1989
|
130 |
+
msgid "Error is encountered during new role create operation"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ../includes/class-ure-lib.php:1991
|
134 |
+
#, php-format
|
135 |
+
msgid "Role %s is created successfully"
|
|
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: ../includes/class-ure-lib.php:2015
|
139 |
+
msgid "Error: Role ID is empty!"
|
|
|
|
|
|
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: ../includes/class-ure-lib.php:2033
|
143 |
+
msgid "Error: Empty role display name is not allowed."
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: ../includes/class-ure-lib.php:2040
|
147 |
+
#, php-format
|
148 |
+
msgid "Role %s does not exists"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: ../includes/class-ure-lib.php:2048
|
152 |
+
#, php-format
|
153 |
+
msgid "Role %s is renamed to %s successfully"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: ../includes/class-ure-lib.php:2121
|
157 |
+
msgid "Error encountered during role delete operation"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: ../includes/class-ure-lib.php:2123
|
161 |
+
msgid "Unused roles are deleted successfully"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: ../includes/class-ure-lib.php:2125
|
165 |
+
#, php-format
|
166 |
+
msgid "Role %s is deleted successfully"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: ../includes/class-ure-lib.php:2153
|
170 |
+
msgid "Error encountered during default role change operation"
|
|
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: ../includes/class-ure-lib.php:2156
|
174 |
+
#, php-format
|
175 |
+
msgid "Default role for new users is set to %s successfully"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: ../includes/class-ure-lib.php:2159
|
179 |
+
msgid "Can not set Administrator role as a default one"
|
|
|
|
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: ../includes/class-ure-lib.php:2161
|
183 |
+
msgid "This role does not exist - "
|
|
|
|
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: ../includes/class-ure-lib.php:2177
|
187 |
+
msgid "Editor"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: ../includes/class-ure-lib.php:2178
|
191 |
+
msgid "Author"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../includes/class-ure-lib.php:2179
|
195 |
+
msgid "Contributor"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: ../includes/class-ure-lib.php:2180
|
199 |
+
msgid "Subscriber"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: ../includes/class-ure-lib.php:2182
|
203 |
+
msgid "Switch themes"
|
|
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: ../includes/class-ure-lib.php:2183
|
207 |
+
msgid "Edit themes"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: ../includes/class-ure-lib.php:2184
|
211 |
+
msgid "Activate plugins"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../includes/class-ure-lib.php:2185
|
215 |
+
msgid "Edit plugins"
|
|
|
|
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../includes/class-ure-lib.php:2186
|
219 |
+
msgid "Edit users"
|
|
|
|
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class-ure-lib.php:2187
|
223 |
+
msgid "Edit files"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: ../includes/class-ure-lib.php:2188
|
227 |
+
msgid "Manage options"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../includes/class-ure-lib.php:2189
|
231 |
+
msgid "Moderate comments"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../includes/class-ure-lib.php:2190
|
235 |
+
msgid "Manage categories"
|
|
|
|
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ../includes/class-ure-lib.php:2191
|
239 |
+
msgid "Manage links"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../includes/class-ure-lib.php:2192
|
243 |
+
msgid "Upload files"
|
|
|
|
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../includes/class-ure-lib.php:2193
|
247 |
+
msgid "Import"
|
|
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: ../includes/class-ure-lib.php:2194
|
251 |
+
msgid "Unfiltered html"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: ../includes/class-ure-lib.php:2195
|
255 |
+
msgid "Edit posts"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: ../includes/class-ure-lib.php:2196
|
259 |
+
msgid "Edit others posts"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: ../includes/class-ure-lib.php:2197
|
263 |
+
msgid "Edit published posts"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: ../includes/class-ure-lib.php:2198
|
267 |
+
msgid "Publish posts"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: ../includes/class-ure-lib.php:2199
|
271 |
+
msgid "Edit pages"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: ../includes/class-ure-lib.php:2200
|
275 |
+
msgid "Read"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: ../includes/class-ure-lib.php:2201
|
279 |
+
msgid "Level 10"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: ../includes/class-ure-lib.php:2202
|
283 |
+
msgid "Level 9"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: ../includes/class-ure-lib.php:2203
|
287 |
+
msgid "Level 8"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: ../includes/class-ure-lib.php:2204
|
291 |
+
msgid "Level 7"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: ../includes/class-ure-lib.php:2205
|
295 |
+
msgid "Level 6"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: ../includes/class-ure-lib.php:2206
|
299 |
+
msgid "Level 5"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: ../includes/class-ure-lib.php:2207
|
303 |
+
msgid "Level 4"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: ../includes/class-ure-lib.php:2208
|
307 |
+
msgid "Level 3"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ../includes/class-ure-lib.php:2209
|
311 |
+
msgid "Level 2"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: ../includes/class-ure-lib.php:2210
|
315 |
+
msgid "Level 1"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: ../includes/class-ure-lib.php:2211
|
319 |
+
msgid "Level 0"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: ../includes/class-ure-lib.php:2212
|
323 |
+
msgid "Edit others pages"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: ../includes/class-ure-lib.php:2213
|
327 |
+
msgid "Edit published pages"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: ../includes/class-ure-lib.php:2214
|
331 |
+
msgid "Publish pages"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: ../includes/class-ure-lib.php:2215
|
335 |
+
msgid "Delete pages"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: ../includes/class-ure-lib.php:2216
|
339 |
+
msgid "Delete others pages"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: ../includes/class-ure-lib.php:2217
|
343 |
+
msgid "Delete published pages"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: ../includes/class-ure-lib.php:2218
|
347 |
+
msgid "Delete posts"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: ../includes/class-ure-lib.php:2219
|
351 |
+
msgid "Delete others posts"
|
|
|
|
|
|
|
|
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: ../includes/class-ure-lib.php:2220
|
355 |
+
msgid "Delete published posts"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: ../includes/class-ure-lib.php:2221
|
359 |
+
msgid "Delete private posts"
|
|
|
|
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: ../includes/class-ure-lib.php:2222
|
363 |
+
msgid "Edit private posts"
|
|
|
|
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: ../includes/class-ure-lib.php:2223
|
367 |
+
msgid "Read private posts"
|
|
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: ../includes/class-ure-lib.php:2224
|
371 |
+
msgid "Delete private pages"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: ../includes/class-ure-lib.php:2225
|
375 |
+
msgid "Edit private pages"
|
|
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: ../includes/class-ure-lib.php:2226
|
379 |
+
msgid "Read private pages"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: ../includes/class-ure-lib.php:2227
|
383 |
+
msgid "Delete users"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: ../includes/class-ure-lib.php:2228
|
387 |
+
msgid "Create users"
|
|
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: ../includes/class-ure-lib.php:2229
|
391 |
+
msgid "Unfiltered upload"
|
|
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: ../includes/class-ure-lib.php:2230
|
395 |
+
msgid "Edit dashboard"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: ../includes/class-ure-lib.php:2231
|
399 |
+
msgid "Update plugins"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: ../includes/class-ure-lib.php:2232
|
403 |
+
msgid "Delete plugins"
|
|
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: ../includes/class-ure-lib.php:2233
|
407 |
+
msgid "Install plugins"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: ../includes/class-ure-lib.php:2234
|
411 |
+
msgid "Update themes"
|
|
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: ../includes/class-ure-lib.php:2235
|
415 |
+
msgid "Install themes"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: ../includes/class-ure-lib.php:2236
|
419 |
+
msgid "Update core"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: ../includes/class-ure-lib.php:2237
|
423 |
+
msgid "List users"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: ../includes/class-ure-lib.php:2238
|
427 |
+
msgid "Remove users"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: ../includes/class-ure-lib.php:2239
|
431 |
+
msgid "Add users"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: ../includes/class-ure-lib.php:2240
|
435 |
+
msgid "Promote users"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: ../includes/class-ure-lib.php:2241
|
439 |
+
msgid "Edit theme options"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: ../includes/class-ure-lib.php:2242
|
443 |
+
msgid "Delete themes"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: ../includes/class-ure-lib.php:2243
|
447 |
+
msgid "Export"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: ../includes/class-ure-lib.php:2366
|
451 |
+
msgid "Error: Capability name must contain latin characters and digits only!"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: ../includes/class-ure-lib.php:2379
|
455 |
+
#, php-format
|
456 |
+
msgid "Capability %s is added successfully"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: ../includes/class-ure-lib.php:2381
|
460 |
+
#, php-format
|
461 |
+
msgid "Capability %s exists already"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: ../includes/class-ure-lib.php:2410
|
465 |
+
#, php-format
|
466 |
+
msgid "Error! You do not have permission to delete this capability: %s!"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:2429
|
470 |
+
#, php-format
|
471 |
+
msgid "Capability %s was removed successfully"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: ../includes/class-ure-lib.php:2497
|
475 |
+
msgid "Version:"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: ../includes/class-ure-lib.php:2498
|
479 |
+
msgid "Author's website"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: ../includes/class-ure-lib.php:2499
|
483 |
+
msgid "Plugin webpage"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: ../includes/class-ure-lib.php:2500
|
487 |
+
msgid "Plugin download"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: ../includes/class-ure-lib.php:2501
|
491 |
+
#: ../includes/class-user-role-editor.php:546
|
492 |
+
msgid "Changelog"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:2502
|
496 |
+
msgid "FAQ"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:2575
|
500 |
+
msgid "Delete All Unused Roles"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:2588
|
504 |
+
msgid "None"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:2632
|
508 |
+
msgid "— No role for this site —"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:2747
|
512 |
+
#, php-format
|
513 |
+
msgid "Denied: %s"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: ../includes/ure-role-edit.php:17
|
517 |
+
msgid "Select Role and change its capabilities:"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
521 |
+
msgid "Show capabilities in human readable form"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: ../includes/ure-role-edit.php:40 ../includes/class-ure-screen-help.php:21
|
525 |
+
#: ../includes/settings-template.php:69 ../includes/ure-user-edit.php:64
|
526 |
+
msgid "Show deprecated capabilities"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../includes/ure-role-edit.php:44
|
530 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../includes/ure-role-edit.php:56
|
534 |
+
msgid "Apply to All Sites"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
538 |
+
msgid "Core capabilities:"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
542 |
+
msgid "Quick filter:"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
546 |
+
msgid "Custom capabilities:"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: ../includes/class-user-other-roles.php:82
|
550 |
+
#: ../includes/class-user-other-roles.php:183
|
551 |
+
#: ../includes/class-user-other-roles.php:243
|
552 |
+
msgid "Other Roles"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: ../includes/class-user-other-roles.php:83
|
556 |
+
msgid "Select additional roles for this user"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: ../includes/class-user-other-roles.php:162
|
560 |
+
#: ../includes/class-user-role-editor.php:438
|
561 |
+
msgid "Capabilities"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: ../includes/class-user-other-roles.php:169
|
565 |
+
msgid "Edit"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../includes/class-user-other-roles.php:215
|
569 |
+
msgid "Additional Capabilities"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: ../includes/class-ure-screen-help.php:12
|
573 |
+
#: ../includes/class-ure-screen-help.php:41
|
574 |
+
#: ../includes/class-ure-screen-help.php:60
|
575 |
+
#: ../includes/class-ure-screen-help.php:79
|
576 |
+
msgid "User Role Editor Options page help"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: ../includes/class-ure-screen-help.php:15
|
580 |
+
#: ../includes/settings-template.php:53
|
581 |
+
msgid "Show Administrator role at User Role Editor"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../includes/class-ure-screen-help.php:16
|
585 |
+
msgid ""
|
586 |
+
"turn this option on in order to make the \"Administrator\" role available at "
|
587 |
+
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
588 |
+
"for security reasons."
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: ../includes/class-ure-screen-help.php:18
|
592 |
+
#: ../includes/settings-template.php:61
|
593 |
+
msgid "Show capabilities in the human readable form"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: ../includes/class-ure-screen-help.php:19
|
597 |
+
msgid ""
|
598 |
+
"automatically converts capability names from the technical form for internal "
|
599 |
+
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
600 |
+
"others posts\"."
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: ../includes/class-ure-screen-help.php:22
|
604 |
+
msgid ""
|
605 |
+
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
606 |
+
"by WordPress. They are left at the user roles for the compatibility purpose "
|
607 |
+
"with the old themes and plugins code. Turning on this option will show those "
|
608 |
+
"deprecated capabilities."
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: ../includes/class-ure-screen-help.php:25
|
612 |
+
#: ../includes/settings-template.php:77
|
613 |
+
msgid "Edit user capabilities"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: ../includes/class-ure-screen-help.php:26
|
617 |
+
msgid ""
|
618 |
+
"If turned off - capabilities section of selected user is shown in readonly "
|
619 |
+
"mode. Administrator can not assign capabilities to the user directly. He "
|
620 |
+
"should make it using roles only."
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: ../includes/class-ure-screen-help.php:45
|
624 |
+
#: ../includes/settings-template.php:111
|
625 |
+
msgid "Count users without role"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: ../includes/class-ure-screen-help.php:46
|
629 |
+
msgid ""
|
630 |
+
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
631 |
+
"assign all of them an empty role \"No rights\", in order to look on the "
|
632 |
+
"users list with role \"No rights\" at the separate tab then."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: ../includes/class-ure-screen-help.php:63
|
636 |
+
msgid "Other default roles for new registered user"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: ../includes/class-ure-screen-help.php:64
|
640 |
+
msgid ""
|
641 |
+
"select roles below to assign them to the new user automatically as an "
|
642 |
+
"addition to the primary role. Note for multisite environment: take into "
|
643 |
+
"account that other default roles should exist at the site, in order to be "
|
644 |
+
"assigned to the new registered users."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: ../includes/class-ure-screen-help.php:82
|
648 |
+
msgid "Allow non super-admininstrators to create, edit and delete users"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: ../includes/class-ure-screen-help.php:83
|
652 |
+
msgid ""
|
653 |
+
"Super administrator only may create, edit and delete users under WordPress "
|
654 |
+
"multi-site by default. Turn this option on in order to remove this "
|
655 |
+
"limitation."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: ../includes/class-user-role-editor.php:233
|
659 |
+
msgid "Change role for users without role"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: ../includes/class-user-role-editor.php:234
|
663 |
+
msgid "No rights"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: ../includes/class-user-role-editor.php:235
|
667 |
+
msgid "Provide new role"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: ../includes/class-user-role-editor.php:298
|
671 |
+
#: ../includes/class-user-role-editor.php:300
|
672 |
+
msgid "You do not have permission to edit this user."
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: ../includes/class-user-role-editor.php:535
|
676 |
+
msgid "Settings"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: ../includes/class-user-role-editor.php:568
|
680 |
+
#: ../includes/settings-template.php:21
|
681 |
+
msgid "General"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: ../includes/class-user-role-editor.php:574
|
685 |
+
#: ../includes/settings-template.php:26
|
686 |
+
msgid "Additional Modules"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: ../includes/class-user-role-editor.php:580
|
690 |
+
#: ../includes/settings-template.php:30
|
691 |
+
msgid "Default Roles"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: ../includes/class-user-role-editor.php:586
|
695 |
+
#: ../includes/settings-template.php:34
|
696 |
+
msgid "Multisite"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: ../includes/class-user-role-editor.php:685
|
700 |
+
#: ../includes/class-user-role-editor.php:703
|
701 |
+
#: ../includes/class-user-role-editor.php:747
|
702 |
+
msgid "User Role Editor options are updated"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: ../includes/class-user-role-editor.php:731
|
706 |
+
msgid "Default Roles are updated"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: ../includes/class-user-role-editor.php:756
|
710 |
+
msgid ""
|
711 |
+
"You do not have sufficient permissions to manage options for User Role "
|
712 |
+
"Editor."
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: ../includes/class-user-role-editor.php:885
|
716 |
+
msgid "Select All"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: ../includes/class-user-role-editor.php:886
|
720 |
+
msgid "Unselect All"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: ../includes/class-user-role-editor.php:887
|
724 |
+
msgid "Reverse"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: ../includes/class-user-role-editor.php:888
|
728 |
+
msgid "Update"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: ../includes/class-user-role-editor.php:889
|
732 |
+
msgid "Please confirm permissions update"
|
|
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: ../includes/class-user-role-editor.php:890
|
736 |
+
msgid "Add New Role"
|
|
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: ../includes/class-user-role-editor.php:891
|
740 |
+
#: ../includes/class-user-role-editor.php:896
|
741 |
+
msgid "Rename Role"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: ../includes/class-user-role-editor.php:892
|
745 |
+
msgid " Role name (ID) can not be empty!"
|
|
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: ../includes/class-user-role-editor.php:893
|
749 |
+
msgid ""
|
750 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
751 |
+
"only!"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: ../includes/class-user-role-editor.php:894
|
755 |
+
msgid ""
|
756 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
757 |
+
"it."
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: ../includes/class-user-role-editor.php:895
|
761 |
+
msgid "Add Role"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: ../includes/class-user-role-editor.php:897
|
765 |
+
msgid "Delete Role"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: ../includes/class-user-role-editor.php:898
|
769 |
+
msgid "Cancel"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: ../includes/class-user-role-editor.php:899
|
773 |
+
msgid "Add Capability"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: ../includes/class-user-role-editor.php:900
|
777 |
+
#: ../includes/class-user-role-editor.php:909
|
778 |
+
msgid "Delete Capability"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../includes/class-user-role-editor.php:901
|
782 |
+
msgid "Reset"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: ../includes/class-user-role-editor.php:902
|
786 |
+
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: ../includes/class-user-role-editor.php:903
|
790 |
+
msgid ""
|
791 |
+
"If any plugins have changed capabilities in any way upon installation (such "
|
792 |
+
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: ../includes/class-user-role-editor.php:904
|
796 |
+
msgid ""
|
797 |
+
"For more information on how to undo changes and restore plugin capabilities "
|
798 |
+
"go to"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: ../includes/class-user-role-editor.php:906
|
802 |
+
msgid "Continue?"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: ../includes/class-user-role-editor.php:907
|
806 |
+
msgid "Default Role"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: ../includes/class-user-role-editor.php:908
|
810 |
+
msgid "Set New Default Role"
|
|
|
|
|
|
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: ../includes/class-user-role-editor.php:910
|
814 |
msgid ""
|
815 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
816 |
+
"or other custom code"
|
|
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: ../includes/class-user-role-editor.php:911
|
820 |
+
msgid " Capability name (ID) can not be empty!"
|
|
|
|
|
|
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: ../includes/class-user-role-editor.php:912
|
824 |
msgid ""
|
825 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
826 |
+
"underscore only!"
|
|
|
|
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: ../includes/settings-template.php:17
|
830 |
+
msgid "User Role Editor - Options"
|
|
|
|
|
|
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: ../includes/settings-template.php:39
|
834 |
+
msgid "About"
|
|
|
|
|
|
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
838 |
+
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
839 |
+
msgid "Save"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: ../includes/settings-template.php:138
|
843 |
+
msgid "Primary default role: "
|
|
|
|
|
|
|
|
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: ../includes/settings-template.php:145
|
847 |
+
msgid "Other default roles for new registered user: "
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: ../includes/settings-template.php:151
|
851 |
msgid ""
|
852 |
+
"Note for multisite environment: take into account that other default roles "
|
853 |
+
"should exist at the site, in order to be assigned to the new registered "
|
854 |
+
"users."
|
855 |
+
msgstr ""
|
856 |
+
|
857 |
+
#: ../includes/settings-template.php:177
|
858 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
859 |
+
msgstr ""
|
860 |
+
|
861 |
+
#: ../includes/ure-user-edit.php:32
|
862 |
+
msgid "Network Super Admin"
|
863 |
+
msgstr ""
|
864 |
+
|
865 |
+
#: ../includes/ure-user-edit.php:35
|
866 |
+
msgid "Change capabilities for user"
|
867 |
+
msgstr ""
|
868 |
+
|
869 |
+
#: ../includes/ure-user-edit.php:72
|
870 |
+
msgid "Primary Role:"
|
871 |
+
msgstr ""
|
872 |
+
|
873 |
+
#: ../includes/ure-user-edit.php:82
|
874 |
+
msgid "bbPress Role:"
|
875 |
+
msgstr ""
|
876 |
+
|
877 |
+
#: ../includes/ure-user-edit.php:92
|
878 |
+
msgid "Other Roles:"
|
879 |
msgstr ""
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ 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: 4.0
|
6 |
-
Tested up to: 4.3
|
7 |
-
Stable tag:
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -68,24 +68,18 @@ To read full FAQ section visit [this page](http://www.shinephp.com/user-role-edi
|
|
68 |
To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/user-role-editor-wordpress-plugin/) at [shinephp.com](shinephp.com).
|
69 |
|
70 |
= Translations =
|
71 |
-
* Dutch: Gerhard Hoogterp;
|
72 |
-
* French: [Transifex](https://www.transifex.com);
|
73 |
-
* Hebrew: [atar4u](http://atar4u.com);
|
74 |
-
* Hungarian: Németh Balázs;
|
75 |
-
* Italian: [Giuseppe Velardo](http://www.comprensivoleopardi.gov.it/);
|
76 |
-
* Persian: [Morteza](https://wordpress.org/support/profile/mo0orteza);
|
77 |
-
* Russian: [Vladimir Garagulya](https://www.role-editor.com)
|
78 |
-
* Spanish: [Dario Ferrer](http://darioferrer.com/) - needs update;
|
79 |
-
* Turkish: [Transifex](https://www.transifex.com).
|
80 |
-
|
81 |
|
82 |
Dear plugin User!
|
83 |
-
If you wish to
|
84 |
-
|
85 |
-
|
86 |
|
87 |
== Changelog ==
|
88 |
|
|
|
|
|
|
|
|
|
|
|
89 |
= [4.19.1] 20.08.2015 =
|
90 |
* Default role value has not been refreshed automatically after change at the "Default Role" dialog - fixed.
|
91 |
* More detailed notice messages are shown after default role change - to reflect a possible error or problem.
|
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: 4.0
|
6 |
+
Tested up to: 4.3.1
|
7 |
+
Stable tag: 4.19.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
68 |
To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/user-role-editor-wordpress-plugin/) at [shinephp.com](shinephp.com).
|
69 |
|
70 |
= Translations =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
|
72 |
Dear plugin User!
|
73 |
+
If you wish to check available translations or help with translation visit this link
|
74 |
+
https://translate.wordpress.org/projects/wp-plugins/user-role-editor/
|
|
|
75 |
|
76 |
== Changelog ==
|
77 |
|
78 |
+
= [4.19.2] 01.10.2015 =
|
79 |
+
* Fix: multiple default roles assignment did not work under the multisite environment, when user was created from front-end by WooCommerce, etc.
|
80 |
+
* Update: the translation text domain was changed to the plugin slug (user-role-editor) for the compatibility with translations.wordpress.org
|
81 |
+
* Update: CSS enhanced to exclude column wrapping for the capabilities with the long names.
|
82 |
+
|
83 |
= [4.19.1] 20.08.2015 =
|
84 |
* Default role value has not been refreshed automatically after change at the "Default Role" dialog - fixed.
|
85 |
* More detailed notice messages are shown after default role change - to reflect a possible error or problem.
|
uninstall.php
CHANGED
@@ -34,5 +34,3 @@ if (!is_multisite()) {
|
|
34 |
}
|
35 |
switch_to_blog($old_blog);
|
36 |
}
|
37 |
-
|
38 |
-
?>
|
34 |
}
|
35 |
switch_to_blog($old_blog);
|
36 |
}
|
|
|
|
user-role-editor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: User Role Editor
|
4 |
Plugin URI: https://www.role-editor.com
|
5 |
Description: Change/add/delete WordPress user roles and capabilities.
|
6 |
-
Version: 4.19.
|
7 |
Author: Vladimir Garagulya
|
8 |
Author URI: https://www.role-editor.com
|
9 |
Text Domain: ure
|
@@ -23,7 +23,7 @@ if (defined('URE_PLUGIN_URL')) {
|
|
23 |
wp_die('It seems that other version of User Role Editor is active. Please deactivate it before use this version');
|
24 |
}
|
25 |
|
26 |
-
define('URE_VERSION', '4.19.
|
27 |
define('URE_PLUGIN_URL', plugin_dir_url(__FILE__));
|
28 |
define('URE_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
29 |
define('URE_PLUGIN_BASE_NAME', plugin_basename(__FILE__));
|
3 |
Plugin Name: User Role Editor
|
4 |
Plugin URI: https://www.role-editor.com
|
5 |
Description: Change/add/delete WordPress user roles and capabilities.
|
6 |
+
Version: 4.19.2
|
7 |
Author: Vladimir Garagulya
|
8 |
Author URI: https://www.role-editor.com
|
9 |
Text Domain: ure
|
23 |
wp_die('It seems that other version of User Role Editor is active. Please deactivate it before use this version');
|
24 |
}
|
25 |
|
26 |
+
define('URE_VERSION', '4.19.2');
|
27 |
define('URE_PLUGIN_URL', plugin_dir_url(__FILE__));
|
28 |
define('URE_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
29 |
define('URE_PLUGIN_BASE_NAME', plugin_basename(__FILE__));
|