Version Description
- 06.02.2015
- New option "Edit user capabilities" was added. If it is unchecked - capabilities section of selected user will be shown in the readonly mode. Administrator (except superadmin for multisite) can not assign capabilities to the user directly. He should make it using roles only.
- More universal checking applied to the custom post type capabilities creation to exclude not existing property notices.
- Multisite: URE's options page is prohibited by 'manage_network_users' capability instead of 'ure_manage_options' in case single site administrators does not have permission to use URE.
- URE protects administrator user from editing by other users by default. If you wish to turn off such protection, you may add filter 'ure_supress_administrators_protection' and return 'true' from it.
- Plugin installation to the WordPress multisite with large (thousands) subsites had a problem with script execution time. Fixed. URE does not try to update all subsites at once now. It does it for every subsite separately, only when you visit that subsite.
- Fixed JavaScript bug with 'Reset Roles' for FireFox v.34.
Download this release
Release Info
Developer | shinephp |
Plugin | User Role Editor |
Version | 4.18.2 |
Comparing to | |
See all releases |
Code changes from version 4.18.1 to 4.18.2
- includes/class-ure-lib.php +75 -44
- includes/class-ure-screen-help.php +5 -1
- includes/class-user-role-editor.php +108 -69
- includes/settings-template.php +10 -1
- includes/ure-user-edit.php +3 -2
- js/ure-js.js +1 -1
- lang/ure-ca.mo +0 -0
- lang/ure-ca.po +0 -993
- lang/ure-es_ES.mo +0 -0
- lang/ure-es_ES.po +204 -188
- lang/ure-fa_IR.mo +0 -0
- lang/ure-fa_IR.po +204 -188
- lang/ure-fr_FR.mo +0 -0
- lang/ure-fr_FR.po +206 -191
- lang/ure-he_IL.mo +0 -0
- lang/ure-he_IL.po +208 -188
- lang/ure-hu_HU.mo +0 -0
- lang/ure-hu_HU.po +203 -188
- lang/ure-id_ID.mo +0 -0
- lang/ure-id_ID.po +305 -248
- lang/ure-it_IT.mo +0 -0
- lang/ure-it_IT.po +203 -188
- lang/ure-nl.mo +0 -0
- lang/ure-nl.po +203 -188
- lang/ure-ru_RU.mo +0 -0
- lang/ure-ru_RU.po +206 -188
- lang/ure-tr_TR.mo +0 -0
- lang/ure-tr_TR.po +206 -191
- lang/ure.mo +0 -0
- lang/ure.pot +203 -188
- readme.txt +11 -1
- user-role-editor.php +2 -2
includes/class-ure-lib.php
CHANGED
@@ -96,8 +96,8 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
96 |
}
|
97 |
// end of get_ure_caps()
|
98 |
|
99 |
-
|
100 |
-
|
101 |
global $wp_roles;
|
102 |
|
103 |
if (!isset($wp_roles)) {
|
@@ -108,7 +108,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
108 |
return;
|
109 |
}
|
110 |
|
111 |
-
// Do not turn on URE caps for local administrator
|
112 |
$turn_on = !$this->multisite;
|
113 |
|
114 |
$old_use_db = $wp_roles->use_db;
|
@@ -120,32 +120,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
120 |
$administrator->add_cap($cap, $turn_on);
|
121 |
}
|
122 |
}
|
123 |
-
$wp_roles->use_db = $old_use_db;
|
124 |
-
}
|
125 |
-
// end of _init_ure_caps()
|
126 |
-
|
127 |
-
|
128 |
-
protected function init_ure_caps_multisite() {
|
129 |
-
global $wpdb;
|
130 |
-
|
131 |
-
$old_blog = $wpdb->blogid;
|
132 |
-
foreach ($this->blog_ids as $blog_id) {
|
133 |
-
switch_to_blog($blog_id);
|
134 |
-
$this->_init_ure_caps();
|
135 |
-
}
|
136 |
-
$this->restore_after_blog_switching($old_blog);
|
137 |
-
$this->roles = $this->get_user_roles();
|
138 |
-
}
|
139 |
-
// end of init_ure_caps_multisite()
|
140 |
-
|
141 |
-
|
142 |
-
public function init_ure_caps() {
|
143 |
-
if ($this->multisite) {
|
144 |
-
$this->init_ure_caps_multisite();
|
145 |
-
} else {
|
146 |
-
$this->_init_ure_caps();
|
147 |
-
}
|
148 |
-
|
149 |
}
|
150 |
// end of init_ure_caps()
|
151 |
|
@@ -240,6 +215,25 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
240 |
return $key_capability;
|
241 |
}
|
242 |
// end of get_key_capability()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
|
244 |
|
245 |
/**
|
@@ -1165,8 +1159,9 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1165 |
* output HTML-code for capabilities list
|
1166 |
* @param boolean $core - if true, then show WordPress core capabilities, else custom (plugins and themes created)
|
1167 |
* @param boolean $for_role - if true, it is role capabilities list, else - user specific capabilities list
|
|
|
1168 |
*/
|
1169 |
-
protected function show_capabilities($core = true, $for_role = true) {
|
1170 |
|
1171 |
if ($this->multisite && !is_super_admin()) {
|
1172 |
$help_links_enabled = $this->get_option('enable_help_links_for_simple_admin_ms', 1);
|
@@ -1227,6 +1222,11 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1227 |
$checked = 'checked="checked"';
|
1228 |
}
|
1229 |
} else {
|
|
|
|
|
|
|
|
|
|
|
1230 |
if ($this->user_can($capability['inner'])) {
|
1231 |
$checked = 'checked="checked"';
|
1232 |
if (!isset($this->user_to_edit->caps[$capability['inner']])) {
|
@@ -1601,24 +1601,33 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1601 |
|
1602 |
|
1603 |
protected function add_custom_post_type_caps() {
|
1604 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1605 |
$post_types = get_post_types(array('public'=>true, 'show_ui'=>true, '_builtin'=>false), 'objects');
|
1606 |
foreach($post_types as $post_type) {
|
1607 |
if ($post_type->capability_type=='post') {
|
1608 |
continue;
|
1609 |
}
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
$this->add_capability_to_full_caps_list($post_type->cap->delete_private_posts);
|
1619 |
-
$this->add_capability_to_full_caps_list($post_type->cap->delete_published_posts);
|
1620 |
-
$this->add_capability_to_full_caps_list($post_type->cap->delete_others_posts);
|
1621 |
-
|
1622 |
}
|
1623 |
|
1624 |
}
|
@@ -2283,7 +2292,12 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2283 |
} else {
|
2284 |
$bbp_user_role = '';
|
2285 |
}
|
2286 |
-
|
|
|
|
|
|
|
|
|
|
|
2287 |
// revoke all roles and capabilities from this user
|
2288 |
$user->roles = array();
|
2289 |
$user->remove_all_caps();
|
@@ -2305,10 +2319,15 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2305 |
$role = $match[1];
|
2306 |
if (isset($wp_roles->roles[$role])) {
|
2307 |
$user->add_role($role);
|
|
|
|
|
|
|
2308 |
}
|
2309 |
}
|
2310 |
}
|
2311 |
|
|
|
|
|
2312 |
// add individual capabilities to user
|
2313 |
if (count($this->capabilities_to_save) > 0) {
|
2314 |
foreach ($this->capabilities_to_save as $key => $value) {
|
@@ -2740,5 +2759,17 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
2740 |
}
|
2741 |
// end of get_current_role()
|
2742 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2743 |
}
|
2744 |
// end of URE_Lib class
|
96 |
}
|
97 |
// end of get_ure_caps()
|
98 |
|
99 |
+
|
100 |
+
public function init_ure_caps() {
|
101 |
global $wp_roles;
|
102 |
|
103 |
if (!isset($wp_roles)) {
|
108 |
return;
|
109 |
}
|
110 |
|
111 |
+
// Do not turn on URE caps for local administrator by default under multisite, as there is a superadmin.
|
112 |
$turn_on = !$this->multisite;
|
113 |
|
114 |
$old_use_db = $wp_roles->use_db;
|
120 |
$administrator->add_cap($cap, $turn_on);
|
121 |
}
|
122 |
}
|
123 |
+
$wp_roles->use_db = $old_use_db;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
}
|
125 |
// end of init_ure_caps()
|
126 |
|
215 |
return $key_capability;
|
216 |
}
|
217 |
// end of get_key_capability()
|
218 |
+
|
219 |
+
|
220 |
+
public function get_settings_capability() {
|
221 |
+
|
222 |
+
if (!$this->multisite) {
|
223 |
+
$settings_access = 'ure_manage_options';
|
224 |
+
} else {
|
225 |
+
$enable_simple_admin_for_multisite = $this->get_option('enable_simple_admin_for_multisite', 0);
|
226 |
+
if ( (defined('URE_ENABLE_SIMPLE_ADMIN_FOR_MULTISITE') && URE_ENABLE_SIMPLE_ADMIN_FOR_MULTISITE == 1) ||
|
227 |
+
$enable_simple_admin_for_multisite) {
|
228 |
+
$settings_access = 'ure_manage_options';
|
229 |
+
} else {
|
230 |
+
$settings_access = $this->get_key_capability();
|
231 |
+
}
|
232 |
+
}
|
233 |
+
|
234 |
+
return $settings_access;
|
235 |
+
}
|
236 |
+
// end of get_settings_capability()
|
237 |
|
238 |
|
239 |
/**
|
1159 |
* output HTML-code for capabilities list
|
1160 |
* @param boolean $core - if true, then show WordPress core capabilities, else custom (plugins and themes created)
|
1161 |
* @param boolean $for_role - if true, it is role capabilities list, else - user specific capabilities list
|
1162 |
+
* @param boolean $edit_mode - if false, capabilities checkboxes are shown as disable - readonly mode
|
1163 |
*/
|
1164 |
+
protected function show_capabilities($core = true, $for_role = true, $edit_mode=true) {
|
1165 |
|
1166 |
if ($this->multisite && !is_super_admin()) {
|
1167 |
$help_links_enabled = $this->get_option('enable_help_links_for_simple_admin_ms', 1);
|
1222 |
$checked = 'checked="checked"';
|
1223 |
}
|
1224 |
} else {
|
1225 |
+
if (empty($edit_mode)) {
|
1226 |
+
$disabled = 'disabled="disabled"';
|
1227 |
+
} else {
|
1228 |
+
$disabled = '';
|
1229 |
+
}
|
1230 |
if ($this->user_can($capability['inner'])) {
|
1231 |
$checked = 'checked="checked"';
|
1232 |
if (!isset($this->user_to_edit->caps[$capability['inner']])) {
|
1601 |
|
1602 |
|
1603 |
protected function add_custom_post_type_caps() {
|
1604 |
+
|
1605 |
+
$capabilities = array(
|
1606 |
+
'create_posts',
|
1607 |
+
'edit_posts',
|
1608 |
+
'edit_published_posts',
|
1609 |
+
'edit_others_posts',
|
1610 |
+
'edit_private_posts',
|
1611 |
+
'publish_posts',
|
1612 |
+
'read_private_posts',
|
1613 |
+
'delete_posts',
|
1614 |
+
'delete_private_posts',
|
1615 |
+
'delete_published_posts',
|
1616 |
+
'delete_others_posts'
|
1617 |
+
);
|
1618 |
$post_types = get_post_types(array('public'=>true, 'show_ui'=>true, '_builtin'=>false), 'objects');
|
1619 |
foreach($post_types as $post_type) {
|
1620 |
if ($post_type->capability_type=='post') {
|
1621 |
continue;
|
1622 |
}
|
1623 |
+
if (!isset($post_type->cap)) {
|
1624 |
+
continue;
|
1625 |
+
}
|
1626 |
+
foreach($capabilities as $capability) {
|
1627 |
+
if (isset($post_type->cap->$capability)) {
|
1628 |
+
$this->add_capability_to_full_caps_list($post_type->cap->$capability);
|
1629 |
+
}
|
1630 |
+
}
|
|
|
|
|
|
|
|
|
1631 |
}
|
1632 |
|
1633 |
}
|
2292 |
} else {
|
2293 |
$bbp_user_role = '';
|
2294 |
}
|
2295 |
+
|
2296 |
+
$edit_user_caps_mode = $this->get_edit_user_caps_mode();
|
2297 |
+
if (!$edit_user_caps_mode) { // readonly mode
|
2298 |
+
$this->capabilities_to_save = $user->caps;
|
2299 |
+
}
|
2300 |
+
|
2301 |
// revoke all roles and capabilities from this user
|
2302 |
$user->roles = array();
|
2303 |
$user->remove_all_caps();
|
2319 |
$role = $match[1];
|
2320 |
if (isset($wp_roles->roles[$role])) {
|
2321 |
$user->add_role($role);
|
2322 |
+
if (!$edit_user_caps_mode && isset($this->capabilities_to_save[$role])) {
|
2323 |
+
unset($this->capabilities_to_save[$role]);
|
2324 |
+
}
|
2325 |
}
|
2326 |
}
|
2327 |
}
|
2328 |
|
2329 |
+
|
2330 |
+
|
2331 |
// add individual capabilities to user
|
2332 |
if (count($this->capabilities_to_save) > 0) {
|
2333 |
foreach ($this->capabilities_to_save as $key => $value) {
|
2759 |
}
|
2760 |
// end of get_current_role()
|
2761 |
|
2762 |
+
|
2763 |
+
protected function get_edit_user_caps_mode() {
|
2764 |
+
if ($this->multisite && is_super_admin()) {
|
2765 |
+
return 1;
|
2766 |
+
}
|
2767 |
+
|
2768 |
+
$edit_user_caps = $this->get_option('edit_user_caps', 1);
|
2769 |
+
|
2770 |
+
return $edit_user_caps;
|
2771 |
+
}
|
2772 |
+
// end of get_edit_user_caps_mode()
|
2773 |
+
|
2774 |
}
|
2775 |
// end of URE_Lib class
|
includes/class-ure-screen-help.php
CHANGED
@@ -21,7 +21,11 @@ class URE_Screen_Help {
|
|
21 |
<li><strong>' . esc_html__('Show deprecated capabilities','ure').'</strong> - '.
|
22 |
esc_html__('Capabilities like "level_0", "level_1" are deprecated and are not used by WordPress. '
|
23 |
. 'They are left at the user roles for the compatibility purpose with the old themes and plugins code. '
|
24 |
-
. 'Turning on this option will show those deprecated capabilities.', 'ure') . '</li>
|
|
|
|
|
|
|
|
|
25 |
|
26 |
$text = apply_filters('ure_get_settings_general_tab_help', $text);
|
27 |
$text .='
|
21 |
<li><strong>' . esc_html__('Show deprecated capabilities','ure').'</strong> - '.
|
22 |
esc_html__('Capabilities like "level_0", "level_1" are deprecated and are not used by WordPress. '
|
23 |
. 'They are left at the user roles for the compatibility purpose with the old themes and plugins code. '
|
24 |
+
. 'Turning on this option will show those deprecated capabilities.', 'ure') . '</li>
|
25 |
+
<li><strong>' . esc_html__('Edit user capabilities','ure').'</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.', 'ure') . '</li>';
|
29 |
|
30 |
$text = apply_filters('ure_get_settings_general_tab_help', $text);
|
31 |
$text .='
|
includes/class-user-role-editor.php
CHANGED
@@ -89,9 +89,10 @@ class User_Role_Editor {
|
|
89 |
$user_id = 0;
|
90 |
}
|
91 |
|
|
|
92 |
// these filters and actions should prevent editing users with administrator role
|
93 |
// by other users with 'edit_users' capability
|
94 |
-
if (!$this->lib->user_is_admin($user_id)) {
|
95 |
// Exclude administrator role from edit list.
|
96 |
add_filter('editable_roles', array($this, 'exclude_admin_role' ) );
|
97 |
// prohibit any actions with user who has Administrator role
|
@@ -357,9 +358,8 @@ class User_Role_Editor {
|
|
357 |
* @param string $name
|
358 |
* @return array
|
359 |
*/
|
360 |
-
public function not_edit_admin($allcaps, $caps, $name)
|
361 |
-
|
362 |
-
|
363 |
$user_keys = array('user_id', 'user');
|
364 |
foreach ($user_keys as $user_key) {
|
365 |
$access_deny = false;
|
@@ -629,10 +629,11 @@ class User_Role_Editor {
|
|
629 |
}
|
630 |
|
631 |
if ( !$this->lib->multisite || ($this->lib->multisite && !$this->lib->active_for_network) ) {
|
|
|
632 |
$this->settings_page_hook = add_options_page(
|
633 |
$translated_title,
|
634 |
$translated_title,
|
635 |
-
|
636 |
'settings-' . URE_PLUGIN_FILE,
|
637 |
array($this, 'settings'));
|
638 |
add_action( 'load-'.$this->settings_page_hook, array($this,'settings_screen_configure') );
|
@@ -698,6 +699,9 @@ class User_Role_Editor {
|
|
698 |
$show_deprecated_caps = $this->lib->get_request_var('show_deprecated_caps', 'checkbox');
|
699 |
$this->lib->put_option('ure_show_deprecated_caps', $show_deprecated_caps);
|
700 |
|
|
|
|
|
|
|
701 |
do_action('ure_settings_update1');
|
702 |
|
703 |
$this->lib->flush_options();
|
@@ -770,8 +774,8 @@ class User_Role_Editor {
|
|
770 |
|
771 |
|
772 |
public function settings() {
|
773 |
-
if (!current_user_can(
|
774 |
-
esc_html__( 'You do not have sufficient permissions to manage options for User Role Editor.', 'ure' );
|
775 |
}
|
776 |
$action = $this->get_settings_action();
|
777 |
switch ($action) {
|
@@ -798,6 +802,7 @@ class User_Role_Editor {
|
|
798 |
}
|
799 |
$caps_readable = $this->lib->get_option('ure_caps_readable', 0);
|
800 |
$show_deprecated_caps = $this->lib->get_option('ure_show_deprecated_caps', 0);
|
|
|
801 |
|
802 |
if ($this->lib->multisite) {
|
803 |
$allow_edit_users_to_not_super_admin = $this->lib->get_option('allow_edit_users_to_not_super_admin', 0);
|
@@ -841,15 +846,8 @@ class User_Role_Editor {
|
|
841 |
// call roles editor page
|
842 |
public function edit_roles() {
|
843 |
|
844 |
-
|
845 |
-
|
846 |
-
if (!empty($current_user)) {
|
847 |
-
$user_id = $current_user->ID;
|
848 |
-
} else {
|
849 |
-
$user_id = false;
|
850 |
-
}
|
851 |
-
if (!$this->lib->user_has_capability($current_user, $this->key_capability)) {
|
852 |
-
die(esc_html__('Insufficient permissions to work with User Role Editor', 'ure'));
|
853 |
}
|
854 |
|
855 |
$this->lib->editor();
|
@@ -914,60 +912,101 @@ class User_Role_Editor {
|
|
914 |
}
|
915 |
|
916 |
// end of unload_techgostore()
|
917 |
-
|
918 |
-
/**
|
919 |
-
* Load plugin javascript stuff
|
920 |
-
*
|
921 |
-
* @param string $hook_suffix
|
922 |
-
*/
|
923 |
-
public function admin_load_js($hook_suffix){
|
924 |
-
|
925 |
-
$this->unload_techgostore($hook_suffix);
|
926 |
-
if (in_array($hook_suffix, $this->ure_hook_suffixes)) {
|
927 |
-
wp_enqueue_script('jquery-ui-dialog', false, array('jquery-ui-core','jquery-ui-button', 'jquery') );
|
928 |
-
wp_enqueue_script('jquery-ui-tabs', false, array('jquery-ui-core', 'jquery') );
|
929 |
-
wp_register_script( 'ure-js', plugins_url( '/js/ure-js.js', URE_PLUGIN_FULL_PATH ) );
|
930 |
-
wp_enqueue_script ( 'ure-js' );
|
931 |
-
wp_localize_script( 'ure-js', 'ure_data', array(
|
932 |
-
'wp_nonce' => wp_create_nonce('user-role-editor'),
|
933 |
-
'page_url' => URE_WP_ADMIN_URL . URE_PARENT .'?page=users-'.URE_PLUGIN_FILE,
|
934 |
-
'is_multisite' => is_multisite() ? 1 : 0,
|
935 |
-
'select_all' => esc_html__('Select All', 'ure'),
|
936 |
-
'unselect_all' => esc_html__('Unselect All', 'ure'),
|
937 |
-
'reverse' => esc_html__('Reverse', 'ure'),
|
938 |
-
'update' => esc_html__('Update', 'ure'),
|
939 |
-
'confirm_submit' => esc_html__('Please confirm permissions update', 'ure'),
|
940 |
-
'add_new_role_title' => esc_html__('Add New Role', 'ure'),
|
941 |
-
'rename_role_title' => esc_html__('Rename Role', 'ure'),
|
942 |
-
'role_name_required' => esc_html__(' Role name (ID) can not be empty!', 'ure'),
|
943 |
-
'role_name_valid_chars' => esc_html__(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
944 |
-
'numeric_role_name_prohibited' => esc_html__(' WordPress does not support numeric Role name (ID). Add latin characters to it.', 'ure'),
|
945 |
-
'add_role' => esc_html__('Add Role', 'ure'),
|
946 |
-
'rename_role' => esc_html__('Rename Role', 'ure'),
|
947 |
-
'delete_role' => esc_html__('Delete Role', 'ure'),
|
948 |
-
'cancel' => esc_html__('Cancel', 'ure'),
|
949 |
-
'add_capability' => esc_html__('Add Capability', 'ure'),
|
950 |
-
'delete_capability' => esc_html__('Delete Capability', 'ure'),
|
951 |
-
'reset' => esc_html__('Reset', 'ure'),
|
952 |
-
'reset_warning' => esc_html__('DANGER! Resetting will restore default settings from WordPress Core.','ure')."\n\n".
|
953 |
-
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!', 'ure')."\n\n" .
|
954 |
-
esc_html__('For more information on how to undo changes and restore plugin capabilities go to', 'ure')."\n".
|
955 |
-
'http://role-editor.com/how-to-restore-deleted-wordpress-user-roles/'."\n\n".
|
956 |
-
esc_html__('Continue?', 'ure'),
|
957 |
-
'default_role' => esc_html__('Default Role', 'ure'),
|
958 |
-
'set_new_default_role' => esc_html__('Set New Default Role', 'ure'),
|
959 |
-
'delete_capability' => esc_html__('Delete Capability', 'ure'),
|
960 |
-
'delete_capability_warning' => esc_html__('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
961 |
-
'capability_name_required' => esc_html__(' Capability name (ID) can not be empty!', 'ure'),
|
962 |
-
'capability_name_valid_chars' => esc_html__(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
963 |
-
) );
|
964 |
-
// load additional JS stuff for Pro version, if exists
|
965 |
-
do_action('ure_load_js');
|
966 |
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
971 |
|
972 |
|
973 |
protected function is_user_profile_extention_allowed() {
|
89 |
$user_id = 0;
|
90 |
}
|
91 |
|
92 |
+
$supress_protection = apply_filters('ure_supress_administrators_protection', false);
|
93 |
// these filters and actions should prevent editing users with administrator role
|
94 |
// by other users with 'edit_users' capability
|
95 |
+
if (!$supress_protection && !$this->lib->user_is_admin($user_id)) {
|
96 |
// Exclude administrator role from edit list.
|
97 |
add_filter('editable_roles', array($this, 'exclude_admin_role' ) );
|
98 |
// prohibit any actions with user who has Administrator role
|
358 |
* @param string $name
|
359 |
* @return array
|
360 |
*/
|
361 |
+
public function not_edit_admin($allcaps, $caps, $name) {
|
362 |
+
|
|
|
363 |
$user_keys = array('user_id', 'user');
|
364 |
foreach ($user_keys as $user_key) {
|
365 |
$access_deny = false;
|
629 |
}
|
630 |
|
631 |
if ( !$this->lib->multisite || ($this->lib->multisite && !$this->lib->active_for_network) ) {
|
632 |
+
$settings_capability = $this->lib->get_settings_capability();
|
633 |
$this->settings_page_hook = add_options_page(
|
634 |
$translated_title,
|
635 |
$translated_title,
|
636 |
+
$settings_capability,
|
637 |
'settings-' . URE_PLUGIN_FILE,
|
638 |
array($this, 'settings'));
|
639 |
add_action( 'load-'.$this->settings_page_hook, array($this,'settings_screen_configure') );
|
699 |
$show_deprecated_caps = $this->lib->get_request_var('show_deprecated_caps', 'checkbox');
|
700 |
$this->lib->put_option('ure_show_deprecated_caps', $show_deprecated_caps);
|
701 |
|
702 |
+
$edit_user_caps = $this->lib->get_request_var('edit_user_caps', 'checkbox');
|
703 |
+
$this->lib->put_option('edit_user_caps', $edit_user_caps);
|
704 |
+
|
705 |
do_action('ure_settings_update1');
|
706 |
|
707 |
$this->lib->flush_options();
|
774 |
|
775 |
|
776 |
public function settings() {
|
777 |
+
if (!current_user_can('ure_manage_options')) {
|
778 |
+
wp_die(esc_html__( 'You do not have sufficient permissions to manage options for User Role Editor.', 'ure' ));
|
779 |
}
|
780 |
$action = $this->get_settings_action();
|
781 |
switch ($action) {
|
802 |
}
|
803 |
$caps_readable = $this->lib->get_option('ure_caps_readable', 0);
|
804 |
$show_deprecated_caps = $this->lib->get_option('ure_show_deprecated_caps', 0);
|
805 |
+
$edit_user_caps = $this->lib->get_option('edit_user_caps', 1);
|
806 |
|
807 |
if ($this->lib->multisite) {
|
808 |
$allow_edit_users_to_not_super_admin = $this->lib->get_option('allow_edit_users_to_not_super_admin', 0);
|
846 |
// call roles editor page
|
847 |
public function edit_roles() {
|
848 |
|
849 |
+
if (!current_user_can($this->key_capability)) {
|
850 |
+
wp_die(esc_html__('Insufficient permissions to work with User Role Editor', 'ure'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
851 |
}
|
852 |
|
853 |
$this->lib->editor();
|
912 |
}
|
913 |
|
914 |
// end of unload_techgostore()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
915 |
|
916 |
+
|
917 |
+
/**
|
918 |
+
* Unload MusicPlay theme CSS to exclude compatibility issues with URE
|
919 |
+
*
|
920 |
+
*/
|
921 |
+
protected function unload_musicplay($hook_suffix) {
|
922 |
+
if ( !in_array($hook_suffix, $this->ure_hook_suffixes) && !in_array($hook_suffix, array('users.php', 'profile.php')) ) {
|
923 |
+
return;
|
924 |
+
}
|
925 |
+
|
926 |
+
if (defined('THEMENAME') && THEMENAME!=='MusicPlay') {
|
927 |
+
return;
|
928 |
+
}
|
929 |
+
|
930 |
+
wp_deregister_style('atpadmin');
|
931 |
+
wp_deregister_style('appointment-style');
|
932 |
+
wp_deregister_style('atp-chosen');
|
933 |
+
wp_deregister_style('atp_plupload');
|
934 |
+
wp_deregister_style('atp-jquery-timepicker-addon');
|
935 |
+
wp_deregister_style('atp-jquery-ui');
|
936 |
+
|
937 |
+
}
|
938 |
+
// end of unload_music_play()
|
939 |
+
|
940 |
+
|
941 |
+
protected function unload_conflict_plugins_css($hook_suffix) {
|
942 |
+
global $wp_styles;
|
943 |
+
|
944 |
+
if ( !in_array($hook_suffix, $this->ure_hook_suffixes) && !in_array($hook_suffix, array('users.php', 'profile.php')) ) {
|
945 |
+
return;
|
946 |
+
}
|
947 |
+
|
948 |
+
// remove conflict CSS from responsive-admin-maintenance-pro plugin
|
949 |
+
if (isset($wp_styles->registered['admin-page-css'])) {
|
950 |
+
wp_deregister_style('admin-page-css');
|
951 |
+
}
|
952 |
+
}
|
953 |
+
// end of unload_conflict_plugins_css()
|
954 |
+
|
955 |
+
|
956 |
+
/**
|
957 |
+
* Load plugin javascript stuff
|
958 |
+
*
|
959 |
+
* @param string $hook_suffix
|
960 |
+
*/
|
961 |
+
public function admin_load_js($hook_suffix) {
|
962 |
+
|
963 |
+
$this->unload_techgostore($hook_suffix);
|
964 |
+
$this->unload_musicplay($hook_suffix);
|
965 |
+
$this->unload_conflict_plugins_css($hook_suffix);
|
966 |
+
|
967 |
+
if (in_array($hook_suffix, $this->ure_hook_suffixes)) {
|
968 |
+
wp_enqueue_script('jquery-ui-dialog', false, array('jquery-ui-core', 'jquery-ui-button', 'jquery'));
|
969 |
+
wp_enqueue_script('jquery-ui-tabs', false, array('jquery-ui-core', 'jquery'));
|
970 |
+
wp_register_script('ure-js', plugins_url('/js/ure-js.js', URE_PLUGIN_FULL_PATH));
|
971 |
+
wp_enqueue_script('ure-js');
|
972 |
+
wp_localize_script('ure-js', 'ure_data', array(
|
973 |
+
'wp_nonce' => wp_create_nonce('user-role-editor'),
|
974 |
+
'page_url' => URE_WP_ADMIN_URL . URE_PARENT . '?page=users-' . URE_PLUGIN_FILE,
|
975 |
+
'is_multisite' => is_multisite() ? 1 : 0,
|
976 |
+
'select_all' => esc_html__('Select All', 'ure'),
|
977 |
+
'unselect_all' => esc_html__('Unselect All', 'ure'),
|
978 |
+
'reverse' => esc_html__('Reverse', 'ure'),
|
979 |
+
'update' => esc_html__('Update', 'ure'),
|
980 |
+
'confirm_submit' => esc_html__('Please confirm permissions update', 'ure'),
|
981 |
+
'add_new_role_title' => esc_html__('Add New Role', 'ure'),
|
982 |
+
'rename_role_title' => esc_html__('Rename Role', 'ure'),
|
983 |
+
'role_name_required' => esc_html__(' Role name (ID) can not be empty!', 'ure'),
|
984 |
+
'role_name_valid_chars' => esc_html__(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
985 |
+
'numeric_role_name_prohibited' => esc_html__(' WordPress does not support numeric Role name (ID). Add latin characters to it.', 'ure'),
|
986 |
+
'add_role' => esc_html__('Add Role', 'ure'),
|
987 |
+
'rename_role' => esc_html__('Rename Role', 'ure'),
|
988 |
+
'delete_role' => esc_html__('Delete Role', 'ure'),
|
989 |
+
'cancel' => esc_html__('Cancel', 'ure'),
|
990 |
+
'add_capability' => esc_html__('Add Capability', 'ure'),
|
991 |
+
'delete_capability' => esc_html__('Delete Capability', 'ure'),
|
992 |
+
'reset' => esc_html__('Reset', 'ure'),
|
993 |
+
'reset_warning' => esc_html__('DANGER! Resetting will restore default settings from WordPress Core.', 'ure') . "\n\n" .
|
994 |
+
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!', 'ure') . "\n\n" .
|
995 |
+
esc_html__('For more information on how to undo changes and restore plugin capabilities go to', 'ure') . "\n" .
|
996 |
+
'http://role-editor.com/how-to-restore-deleted-wordpress-user-roles/' . "\n\n" .
|
997 |
+
esc_html__('Continue?', 'ure'),
|
998 |
+
'default_role' => esc_html__('Default Role', 'ure'),
|
999 |
+
'set_new_default_role' => esc_html__('Set New Default Role', 'ure'),
|
1000 |
+
'delete_capability' => esc_html__('Delete Capability', 'ure'),
|
1001 |
+
'delete_capability_warning' => esc_html__('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
1002 |
+
'capability_name_required' => esc_html__(' Capability name (ID) can not be empty!', 'ure'),
|
1003 |
+
'capability_name_valid_chars' => esc_html__(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
1004 |
+
));
|
1005 |
+
// load additional JS stuff for Pro version, if exists
|
1006 |
+
do_action('ure_load_js');
|
1007 |
+
}
|
1008 |
+
}
|
1009 |
+
// end of admin_load_js()
|
1010 |
|
1011 |
|
1012 |
protected function is_user_profile_extention_allowed() {
|
includes/settings-template.php
CHANGED
@@ -69,7 +69,16 @@ if (!$license_key_only) {
|
|
69 |
<label for="show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities', 'ure'); ?></label></td>
|
70 |
<td>
|
71 |
</td>
|
72 |
-
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
<?php
|
74 |
}
|
75 |
do_action('ure_settings_show1');
|
69 |
<label for="show_deprecated_caps"><?php esc_html_e('Show deprecated capabilities', 'ure'); ?></label></td>
|
70 |
<td>
|
71 |
</td>
|
72 |
+
</tr>
|
73 |
+
<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', 'ure'); ?></label></td>
|
78 |
+
<td>
|
79 |
+
</td>
|
80 |
+
</tr>
|
81 |
+
|
82 |
<?php
|
83 |
}
|
84 |
do_action('ure_settings_show1');
|
includes/ure-user-edit.php
CHANGED
@@ -10,6 +10,7 @@ if (!defined('URE_PLUGIN_URL')) {
|
|
10 |
die; // Silence is golden, direct call is prohibited
|
11 |
}
|
12 |
|
|
|
13 |
?>
|
14 |
|
15 |
<div class="has-sidebar-content">
|
@@ -115,7 +116,7 @@ if (function_exists('bbp_filter_blog_editable_roles') ) { // bbPress plugin is
|
|
115 |
<table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
|
116 |
<tr>
|
117 |
<td style="vertical-align:top;">
|
118 |
-
<?php $this->show_capabilities( true, false ); ?>
|
119 |
</td>
|
120 |
<td>
|
121 |
<?php $this->toolbar();?>
|
@@ -131,7 +132,7 @@ if (function_exists('bbp_filter_blog_editable_roles') ) { // bbPress plugin is
|
|
131 |
<table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
|
132 |
<tr>
|
133 |
<td style="vertical-align:top;">
|
134 |
-
<?php $this->show_capabilities( false, false ); ?>
|
135 |
</td>
|
136 |
</tr>
|
137 |
</table>
|
10 |
die; // Silence is golden, direct call is prohibited
|
11 |
}
|
12 |
|
13 |
+
$edit_user_caps_mode = $this->get_edit_user_caps_mode();
|
14 |
?>
|
15 |
|
16 |
<div class="has-sidebar-content">
|
116 |
<table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
|
117 |
<tr>
|
118 |
<td style="vertical-align:top;">
|
119 |
+
<?php $this->show_capabilities( true, false, $edit_user_caps_mode ); ?>
|
120 |
</td>
|
121 |
<td>
|
122 |
<?php $this->toolbar();?>
|
132 |
<table class="form-table" style="clear:none;" cellpadding="0" cellspacing="0">
|
133 |
<tr>
|
134 |
<td style="vertical-align:top;">
|
135 |
+
<?php $this->show_capabilities( false, false, $edit_user_caps_mode ); ?>
|
136 |
</td>
|
137 |
</tr>
|
138 |
</table>
|
js/ure-js.js
CHANGED
@@ -318,7 +318,7 @@ function ure_show_rename_role_dialog() {
|
|
318 |
|
319 |
jQuery('#ure_reset_roles_button').button({
|
320 |
label: ure_data.reset
|
321 |
-
}).click(function(){
|
322 |
event.preventDefault();
|
323 |
if (!confirm( ure_data.reset_warning )) {
|
324 |
return false;
|
318 |
|
319 |
jQuery('#ure_reset_roles_button').button({
|
320 |
label: ure_data.reset
|
321 |
+
}).click(function(event){
|
322 |
event.preventDefault();
|
323 |
if (!confirm( ure_data.reset_warning )) {
|
324 |
return false;
|
lang/ure-ca.mo
DELETED
Binary file
|
lang/ure-ca.po
DELETED
@@ -1,993 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: User Role Editor v. 2.0\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-10-21 10:21+0700\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
-
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
-
"Language: es_RU\n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
16 |
-
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
-
"X-Poedit-Basepath: ../../\n"
|
18 |
-
"X-Textdomain-Support: yes\n"
|
19 |
-
"X-Generator: Poedit 1.5.4\n"
|
20 |
-
"X-Poedit-SearchPath-0: user-role-editor\n"
|
21 |
-
|
22 |
-
# @ ure
|
23 |
-
# @ default
|
24 |
-
#: ../includes/settings-template.php:17
|
25 |
-
#, fuzzy
|
26 |
-
msgid "User Role Editor - Options"
|
27 |
-
msgstr "User Role Editor"
|
28 |
-
|
29 |
-
#: ../includes/settings-template.php:21
|
30 |
-
#: ../includes/class-user-role-editor.php:547
|
31 |
-
msgid "General"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: ../includes/settings-template.php:26
|
35 |
-
#: ../includes/class-user-role-editor.php:553
|
36 |
-
msgid "Additional Modules"
|
37 |
-
msgstr ""
|
38 |
-
|
39 |
-
# @ ure
|
40 |
-
#: ../includes/settings-template.php:30
|
41 |
-
#: ../includes/class-user-role-editor.php:559
|
42 |
-
#, fuzzy
|
43 |
-
msgid "Default Roles"
|
44 |
-
msgstr "Rol predeterminat"
|
45 |
-
|
46 |
-
#: ../includes/settings-template.php:34
|
47 |
-
#: ../includes/class-user-role-editor.php:565
|
48 |
-
msgid "Multisite"
|
49 |
-
msgstr ""
|
50 |
-
|
51 |
-
#: ../includes/settings-template.php:39
|
52 |
-
msgid "About"
|
53 |
-
msgstr ""
|
54 |
-
|
55 |
-
#: ../includes/settings-template.php:53
|
56 |
-
#: ../includes/class-ure-screen-help.php:15
|
57 |
-
msgid "Show Administrator role at User Role Editor"
|
58 |
-
msgstr ""
|
59 |
-
|
60 |
-
# @ ure
|
61 |
-
#: ../includes/settings-template.php:61
|
62 |
-
#: ../includes/class-ure-screen-help.php:18
|
63 |
-
#, fuzzy
|
64 |
-
msgid "Show capabilities in the human readable form"
|
65 |
-
msgstr "Mostra privilegis de forma llegible"
|
66 |
-
|
67 |
-
# @ ure
|
68 |
-
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
69 |
-
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
70 |
-
msgid "Show deprecated capabilities"
|
71 |
-
msgstr "Mostrar privilegis obsolets"
|
72 |
-
|
73 |
-
#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
|
74 |
-
#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
|
75 |
-
msgid "Save"
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: ../includes/settings-template.php:102
|
79 |
-
#: ../includes/class-ure-screen-help.php:41
|
80 |
-
msgid "Count users without role"
|
81 |
-
msgstr ""
|
82 |
-
|
83 |
-
#: ../includes/settings-template.php:129
|
84 |
-
msgid "Primary default role: "
|
85 |
-
msgstr ""
|
86 |
-
|
87 |
-
#: ../includes/settings-template.php:136
|
88 |
-
msgid "Other default roles for new registered user: "
|
89 |
-
msgstr ""
|
90 |
-
|
91 |
-
#: ../includes/settings-template.php:142
|
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 |
-
|
98 |
-
#: ../includes/settings-template.php:168
|
99 |
-
msgid "Allow non super administrators to create, edit, and delete users"
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: ../includes/class-user-role-editor.php:195
|
103 |
-
msgid "Change role for users without role"
|
104 |
-
msgstr ""
|
105 |
-
|
106 |
-
#: ../includes/class-user-role-editor.php:196
|
107 |
-
msgid "No rights"
|
108 |
-
msgstr ""
|
109 |
-
|
110 |
-
#: ../includes/class-user-role-editor.php:197
|
111 |
-
msgid "Provide new role"
|
112 |
-
msgstr ""
|
113 |
-
|
114 |
-
# @ ure
|
115 |
-
#: ../includes/class-user-role-editor.php:281
|
116 |
-
#: ../includes/class-user-role-editor.php:283
|
117 |
-
msgid "You do not have permission to edit this user."
|
118 |
-
msgstr ""
|
119 |
-
|
120 |
-
# @ ure
|
121 |
-
#: ../includes/class-user-role-editor.php:422
|
122 |
-
msgid "Capabilities"
|
123 |
-
msgstr "Capacitats"
|
124 |
-
|
125 |
-
# @ ure
|
126 |
-
#: ../includes/class-user-role-editor.php:514
|
127 |
-
msgid "Settings"
|
128 |
-
msgstr "Opcions"
|
129 |
-
|
130 |
-
# @ ure
|
131 |
-
#: ../includes/class-user-role-editor.php:525
|
132 |
-
#: ../includes/class-ure-lib.php:2295
|
133 |
-
msgid "Changelog"
|
134 |
-
msgstr "Registre de canvis"
|
135 |
-
|
136 |
-
# @ ure
|
137 |
-
# @ default
|
138 |
-
#: ../includes/class-user-role-editor.php:575
|
139 |
-
#: ../includes/class-user-role-editor.php:603
|
140 |
-
#: ../includes/class-user-role-editor.php:948
|
141 |
-
#: ../includes/class-ure-lib.php:251
|
142 |
-
msgid "User Role Editor"
|
143 |
-
msgstr "User Role Editor"
|
144 |
-
|
145 |
-
# @ ure
|
146 |
-
# @ default
|
147 |
-
#: ../includes/class-user-role-editor.php:660
|
148 |
-
#: ../includes/class-user-role-editor.php:678
|
149 |
-
#: ../includes/class-user-role-editor.php:722
|
150 |
-
msgid "User Role Editor options are updated"
|
151 |
-
msgstr ""
|
152 |
-
|
153 |
-
# @ ure
|
154 |
-
#: ../includes/class-user-role-editor.php:706
|
155 |
-
#, fuzzy
|
156 |
-
msgid "Default Roles are updated"
|
157 |
-
msgstr "Rol predeterminat"
|
158 |
-
|
159 |
-
#: ../includes/class-user-role-editor.php:730
|
160 |
-
msgid ""
|
161 |
-
"You do not have sufficient permissions to manage options for User Role "
|
162 |
-
"Editor."
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
-
#: ../includes/class-user-role-editor.php:809
|
166 |
-
msgid "Insufficient permissions to work with User Role Editor"
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
# @ ure
|
170 |
-
#: ../includes/class-user-role-editor.php:890
|
171 |
-
msgid "Select All"
|
172 |
-
msgstr "Seleccionar-ho tot"
|
173 |
-
|
174 |
-
#: ../includes/class-user-role-editor.php:891
|
175 |
-
msgid "Unselect All"
|
176 |
-
msgstr "De-selecciona-ho tot"
|
177 |
-
|
178 |
-
#: ../includes/class-user-role-editor.php:892
|
179 |
-
msgid "Reverse"
|
180 |
-
msgstr "Invertir"
|
181 |
-
|
182 |
-
# @ ure
|
183 |
-
#: ../includes/class-user-role-editor.php:893
|
184 |
-
msgid "Update"
|
185 |
-
msgstr "Actualitzar"
|
186 |
-
|
187 |
-
# @ ure
|
188 |
-
#: ../includes/class-user-role-editor.php:894
|
189 |
-
msgid "Please confirm permissions update"
|
190 |
-
msgstr "Si us plau confirmeu l'actualització de permisos "
|
191 |
-
|
192 |
-
# @ ure
|
193 |
-
#: ../includes/class-user-role-editor.php:895
|
194 |
-
msgid "Add New Role"
|
195 |
-
msgstr "Afegir nou Rol"
|
196 |
-
|
197 |
-
# @ ure
|
198 |
-
#: ../includes/class-user-role-editor.php:896
|
199 |
-
#: ../includes/class-user-role-editor.php:901
|
200 |
-
#, fuzzy
|
201 |
-
msgid "Rename Role"
|
202 |
-
msgstr "Eliminar Rol"
|
203 |
-
|
204 |
-
# @ ure
|
205 |
-
#: ../includes/class-user-role-editor.php:897
|
206 |
-
msgid " Role name (ID) can not be empty!"
|
207 |
-
msgstr "El nom de rol (ID) no pot estar buit!"
|
208 |
-
|
209 |
-
# @ ure
|
210 |
-
#: ../includes/class-user-role-editor.php:898
|
211 |
-
msgid ""
|
212 |
-
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
213 |
-
"only!"
|
214 |
-
msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
|
215 |
-
|
216 |
-
#: ../includes/class-user-role-editor.php:899
|
217 |
-
msgid ""
|
218 |
-
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
219 |
-
"it."
|
220 |
-
msgstr ""
|
221 |
-
|
222 |
-
# @ ure
|
223 |
-
#: ../includes/class-user-role-editor.php:900
|
224 |
-
msgid "Add Role"
|
225 |
-
msgstr "Afegir nou Rol"
|
226 |
-
|
227 |
-
# @ ure
|
228 |
-
#: ../includes/class-user-role-editor.php:902
|
229 |
-
msgid "Delete Role"
|
230 |
-
msgstr "Eliminar Rol"
|
231 |
-
|
232 |
-
# @ ure
|
233 |
-
#: ../includes/class-user-role-editor.php:903
|
234 |
-
msgid "Cancel"
|
235 |
-
msgstr "Cancel·lar"
|
236 |
-
|
237 |
-
# @ ure
|
238 |
-
#: ../includes/class-user-role-editor.php:904
|
239 |
-
msgid "Add Capability"
|
240 |
-
msgstr "Afegir nou privilegi"
|
241 |
-
|
242 |
-
# @ ure
|
243 |
-
#: ../includes/class-user-role-editor.php:905
|
244 |
-
#: ../includes/class-user-role-editor.php:914
|
245 |
-
msgid "Delete Capability"
|
246 |
-
msgstr "Eliminar privilegi"
|
247 |
-
|
248 |
-
# @ ure
|
249 |
-
#: ../includes/class-user-role-editor.php:906
|
250 |
-
msgid "Reset"
|
251 |
-
msgstr "Reiniciar"
|
252 |
-
|
253 |
-
#: ../includes/class-user-role-editor.php:907
|
254 |
-
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
255 |
-
msgstr ""
|
256 |
-
|
257 |
-
#: ../includes/class-user-role-editor.php:908
|
258 |
-
msgid ""
|
259 |
-
"If any plugins have changed capabilities in any way upon installation (such "
|
260 |
-
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
261 |
-
msgstr ""
|
262 |
-
|
263 |
-
#: ../includes/class-user-role-editor.php:909
|
264 |
-
msgid ""
|
265 |
-
"For more information on how to undo changes and restore plugin capabilities "
|
266 |
-
"go to"
|
267 |
-
msgstr ""
|
268 |
-
|
269 |
-
# @ ure
|
270 |
-
#: ../includes/class-user-role-editor.php:911
|
271 |
-
msgid "Continue?"
|
272 |
-
msgstr ""
|
273 |
-
|
274 |
-
# @ ure
|
275 |
-
#: ../includes/class-user-role-editor.php:912
|
276 |
-
msgid "Default Role"
|
277 |
-
msgstr "Rol predeterminat"
|
278 |
-
|
279 |
-
# @ ure
|
280 |
-
#: ../includes/class-user-role-editor.php:913
|
281 |
-
msgid "Set New Default Role"
|
282 |
-
msgstr "Assignar com a rol predeterminat"
|
283 |
-
|
284 |
-
# @ ure
|
285 |
-
#: ../includes/class-user-role-editor.php:915
|
286 |
-
msgid ""
|
287 |
-
"Warning! Be careful - removing critical capability could crash some plugin "
|
288 |
-
"or other custom code"
|
289 |
-
msgstr ""
|
290 |
-
"Advertència! Vés amb compte - Remoure privilegis crítics podria inutilitzar "
|
291 |
-
"algun connector o algun altre codi personalitzat."
|
292 |
-
|
293 |
-
# @ ure
|
294 |
-
#: ../includes/class-user-role-editor.php:916
|
295 |
-
msgid " Capability name (ID) can not be empty!"
|
296 |
-
msgstr "El nom de priviliegi (ID) no pot estar buit!"
|
297 |
-
|
298 |
-
# @ ure
|
299 |
-
#: ../includes/class-user-role-editor.php:917
|
300 |
-
msgid ""
|
301 |
-
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
302 |
-
"underscore only!"
|
303 |
-
msgstr ""
|
304 |
-
"Error: el nom del privilegi (ID) només ha de contenir caràcters llatins i "
|
305 |
-
"dígits."
|
306 |
-
|
307 |
-
# @ ure
|
308 |
-
#: ../includes/class-user-role-editor.php:951
|
309 |
-
#: ../includes/class-user-role-editor.php:980
|
310 |
-
msgid "Other Roles"
|
311 |
-
msgstr "Altres rols"
|
312 |
-
|
313 |
-
# @ ure
|
314 |
-
#: ../includes/class-user-role-editor.php:962
|
315 |
-
msgid "Edit"
|
316 |
-
msgstr "Editar"
|
317 |
-
|
318 |
-
#: ../includes/ure-role-edit.php:17
|
319 |
-
msgid "Select Role and change its capabilities:"
|
320 |
-
msgstr ""
|
321 |
-
|
322 |
-
# @ ure
|
323 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
|
324 |
-
#, fuzzy
|
325 |
-
msgid "Show capabilities in human readable form"
|
326 |
-
msgstr "Mostra privilegis de forma llegible"
|
327 |
-
|
328 |
-
# @ default
|
329 |
-
#: ../includes/ure-role-edit.php:44
|
330 |
-
msgid "If checked, then apply action to ALL sites of this Network"
|
331 |
-
msgstr "Si està marcat s'aplica l'acció a TOTS els llocs d'aquesta xarxa"
|
332 |
-
|
333 |
-
#: ../includes/ure-role-edit.php:56
|
334 |
-
msgid "Apply to All Sites"
|
335 |
-
msgstr ""
|
336 |
-
|
337 |
-
# @ ure
|
338 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
|
339 |
-
#, fuzzy
|
340 |
-
msgid "Core capabilities:"
|
341 |
-
msgstr "Capacitats"
|
342 |
-
|
343 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
|
344 |
-
msgid "Quick filter:"
|
345 |
-
msgstr ""
|
346 |
-
|
347 |
-
# @ ure
|
348 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
|
349 |
-
#, fuzzy
|
350 |
-
msgid "Custom capabilities:"
|
351 |
-
msgstr "Capacitats"
|
352 |
-
|
353 |
-
#: ../includes/class-ure-lib.php:159
|
354 |
-
msgid "Error: wrong request"
|
355 |
-
msgstr ""
|
356 |
-
|
357 |
-
# @ ure
|
358 |
-
#: ../includes/class-ure-lib.php:192 ../includes/class-ure-lib.php:203
|
359 |
-
#, fuzzy
|
360 |
-
msgid "Role name (ID): "
|
361 |
-
msgstr "El nom de rol (ID) no pot estar buit!"
|
362 |
-
|
363 |
-
#: ../includes/class-ure-lib.php:194 ../includes/class-ure-lib.php:205
|
364 |
-
msgid "Display Role Name: "
|
365 |
-
msgstr ""
|
366 |
-
|
367 |
-
#: ../includes/class-ure-lib.php:196
|
368 |
-
msgid "Make copy of: "
|
369 |
-
msgstr ""
|
370 |
-
|
371 |
-
# @ ure
|
372 |
-
#: ../includes/class-ure-lib.php:212
|
373 |
-
#, fuzzy
|
374 |
-
msgid "Select Role:"
|
375 |
-
msgstr "Eliminar Rol"
|
376 |
-
|
377 |
-
# @ ure
|
378 |
-
#: ../includes/class-ure-lib.php:227
|
379 |
-
#, fuzzy
|
380 |
-
msgid "Delete:"
|
381 |
-
msgstr "Eliminar Rol"
|
382 |
-
|
383 |
-
# @ ure
|
384 |
-
#: ../includes/class-ure-lib.php:234
|
385 |
-
#, fuzzy
|
386 |
-
msgid "Capability name (ID): "
|
387 |
-
msgstr "El nom de priviliegi (ID) no pot estar buit!"
|
388 |
-
|
389 |
-
# @ ure
|
390 |
-
#: ../includes/class-ure-lib.php:348
|
391 |
-
msgid "Error: "
|
392 |
-
msgstr "Error:"
|
393 |
-
|
394 |
-
# @ ure
|
395 |
-
#: ../includes/class-ure-lib.php:348
|
396 |
-
msgid "Role"
|
397 |
-
msgstr "Rol"
|
398 |
-
|
399 |
-
# @ ure
|
400 |
-
#: ../includes/class-ure-lib.php:349
|
401 |
-
msgid "does not exist"
|
402 |
-
msgstr "no existeix"
|
403 |
-
|
404 |
-
# @ ure
|
405 |
-
#: ../includes/class-ure-lib.php:392
|
406 |
-
msgid "Role is updated successfully"
|
407 |
-
msgstr ""
|
408 |
-
|
409 |
-
#: ../includes/class-ure-lib.php:394
|
410 |
-
msgid "Roles are updated for all network"
|
411 |
-
msgstr ""
|
412 |
-
|
413 |
-
# @ ure
|
414 |
-
#: ../includes/class-ure-lib.php:400
|
415 |
-
msgid "Error occured during role(s) update"
|
416 |
-
msgstr ""
|
417 |
-
|
418 |
-
# @ ure
|
419 |
-
#: ../includes/class-ure-lib.php:407
|
420 |
-
msgid "User capabilities are updated successfully"
|
421 |
-
msgstr ""
|
422 |
-
|
423 |
-
# @ ure
|
424 |
-
#: ../includes/class-ure-lib.php:412
|
425 |
-
msgid "Error occured during user update"
|
426 |
-
msgstr "Error trobat durant l'actualització del rol"
|
427 |
-
|
428 |
-
# @ ure
|
429 |
-
#: ../includes/class-ure-lib.php:470
|
430 |
-
msgid "User Roles are restored to WordPress default values. "
|
431 |
-
msgstr ""
|
432 |
-
"Els rols d'usuari es restableixen als valors predeterminats de WordPress."
|
433 |
-
|
434 |
-
# @ ure
|
435 |
-
#: ../includes/class-ure-lib.php:1337
|
436 |
-
msgid "Help"
|
437 |
-
msgstr "Ajuda"
|
438 |
-
|
439 |
-
# ure
|
440 |
-
#: ../includes/class-ure-lib.php:1695
|
441 |
-
msgid "Error is occur. Please check the log file."
|
442 |
-
msgstr "Ha ocorregut un error. Si us plau revisa l'arxiu de registres."
|
443 |
-
|
444 |
-
# @ ure
|
445 |
-
#: ../includes/class-ure-lib.php:1738 ../includes/class-ure-lib.php:1805
|
446 |
-
msgid ""
|
447 |
-
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
448 |
-
"only!"
|
449 |
-
msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
|
450 |
-
|
451 |
-
#: ../includes/class-ure-lib.php:1742 ../includes/class-ure-lib.php:1809
|
452 |
-
msgid ""
|
453 |
-
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
454 |
-
"characters to it."
|
455 |
-
msgstr ""
|
456 |
-
|
457 |
-
# @ ure
|
458 |
-
#: ../includes/class-ure-lib.php:1757
|
459 |
-
#, php-format
|
460 |
-
msgid "Role %s exists already"
|
461 |
-
msgstr "Rol %s ja existeix"
|
462 |
-
|
463 |
-
# @ ure
|
464 |
-
#: ../includes/class-ure-lib.php:1772
|
465 |
-
msgid "Error is encountered during new role create operation"
|
466 |
-
msgstr "Error trobat durant la creació d'un nou Rol"
|
467 |
-
|
468 |
-
# @ ure
|
469 |
-
#: ../includes/class-ure-lib.php:1774
|
470 |
-
#, php-format
|
471 |
-
msgid "Role %s is created successfully"
|
472 |
-
msgstr "Rol %s s'ha creat correctament"
|
473 |
-
|
474 |
-
#: ../includes/class-ure-lib.php:1798
|
475 |
-
msgid "Error: Role ID is empty!"
|
476 |
-
msgstr ""
|
477 |
-
|
478 |
-
#: ../includes/class-ure-lib.php:1816
|
479 |
-
msgid "Error: Empty role display name is not allowed."
|
480 |
-
msgstr ""
|
481 |
-
|
482 |
-
# @ ure
|
483 |
-
#: ../includes/class-ure-lib.php:1823
|
484 |
-
#, fuzzy, php-format
|
485 |
-
msgid "Role %s does not exists"
|
486 |
-
msgstr "no existeix"
|
487 |
-
|
488 |
-
# @ ure
|
489 |
-
#: ../includes/class-ure-lib.php:1831
|
490 |
-
#, fuzzy, php-format
|
491 |
-
msgid "Role %s is renamed to %s successfully"
|
492 |
-
msgstr "Rol %s s'ha creat correctament"
|
493 |
-
|
494 |
-
# @ ure
|
495 |
-
#: ../includes/class-ure-lib.php:1898
|
496 |
-
msgid "Error encountered during role delete operation"
|
497 |
-
msgstr "Error trobat durant l'eliminació del Rol"
|
498 |
-
|
499 |
-
# @ ure
|
500 |
-
#: ../includes/class-ure-lib.php:1900
|
501 |
-
msgid "Unused roles are deleted successfully"
|
502 |
-
msgstr ""
|
503 |
-
|
504 |
-
# @ ure
|
505 |
-
#: ../includes/class-ure-lib.php:1902
|
506 |
-
#, php-format
|
507 |
-
msgid "Role %s is deleted successfully"
|
508 |
-
msgstr "Rol %s s'elimina amb èxit"
|
509 |
-
|
510 |
-
# @ ure
|
511 |
-
#: ../includes/class-ure-lib.php:1927
|
512 |
-
msgid "Error encountered during default role change operation"
|
513 |
-
msgstr "Error trobat durant el canvi de Rol per defecte"
|
514 |
-
|
515 |
-
# @ ure
|
516 |
-
#: ../includes/class-ure-lib.php:1933
|
517 |
-
#, php-format
|
518 |
-
msgid "Default role for new users is set to %s successfully"
|
519 |
-
msgstr "Rol predeterminat per a nous usuaris està establert en %s amb èxit"
|
520 |
-
|
521 |
-
# @ ure
|
522 |
-
#: ../includes/class-ure-lib.php:1952
|
523 |
-
msgid "Editor"
|
524 |
-
msgstr "Editor"
|
525 |
-
|
526 |
-
# @ ure
|
527 |
-
#: ../includes/class-ure-lib.php:1953
|
528 |
-
msgid "Author"
|
529 |
-
msgstr "Autor"
|
530 |
-
|
531 |
-
# @ ure
|
532 |
-
#: ../includes/class-ure-lib.php:1954
|
533 |
-
msgid "Contributor"
|
534 |
-
msgstr "Col·laborador"
|
535 |
-
|
536 |
-
# @ ure
|
537 |
-
#: ../includes/class-ure-lib.php:1955
|
538 |
-
msgid "Subscriber"
|
539 |
-
msgstr "Subscriptor"
|
540 |
-
|
541 |
-
# @ ure
|
542 |
-
#: ../includes/class-ure-lib.php:1957
|
543 |
-
msgid "Switch themes"
|
544 |
-
msgstr "Canviar plantilles"
|
545 |
-
|
546 |
-
# @ ure
|
547 |
-
#: ../includes/class-ure-lib.php:1958
|
548 |
-
msgid "Edit themes"
|
549 |
-
msgstr "Editar plantilles"
|
550 |
-
|
551 |
-
# @ ure
|
552 |
-
#: ../includes/class-ure-lib.php:1959
|
553 |
-
msgid "Activate plugins"
|
554 |
-
msgstr "Activar connectors"
|
555 |
-
|
556 |
-
# @ ure
|
557 |
-
#: ../includes/class-ure-lib.php:1960
|
558 |
-
msgid "Edit plugins"
|
559 |
-
msgstr "Editar connectors"
|
560 |
-
|
561 |
-
# @ ure
|
562 |
-
#: ../includes/class-ure-lib.php:1961
|
563 |
-
msgid "Edit users"
|
564 |
-
msgstr "Editar usuaris"
|
565 |
-
|
566 |
-
# @ ure
|
567 |
-
#: ../includes/class-ure-lib.php:1962
|
568 |
-
msgid "Edit files"
|
569 |
-
msgstr "Editar arxius"
|
570 |
-
|
571 |
-
# @ ure
|
572 |
-
#: ../includes/class-ure-lib.php:1963
|
573 |
-
msgid "Manage options"
|
574 |
-
msgstr "Administrar opcions"
|
575 |
-
|
576 |
-
# @ ure
|
577 |
-
#: ../includes/class-ure-lib.php:1964
|
578 |
-
msgid "Moderate comments"
|
579 |
-
msgstr "Moderar comentaris"
|
580 |
-
|
581 |
-
# @ ure
|
582 |
-
#: ../includes/class-ure-lib.php:1965
|
583 |
-
msgid "Manage categories"
|
584 |
-
msgstr "Administrar categories"
|
585 |
-
|
586 |
-
# @ ure
|
587 |
-
#: ../includes/class-ure-lib.php:1966
|
588 |
-
msgid "Manage links"
|
589 |
-
msgstr "Administrar enllaços"
|
590 |
-
|
591 |
-
# @ ure
|
592 |
-
#: ../includes/class-ure-lib.php:1967
|
593 |
-
msgid "Upload files"
|
594 |
-
msgstr "Pujar arxius"
|
595 |
-
|
596 |
-
# @ ure
|
597 |
-
#: ../includes/class-ure-lib.php:1968
|
598 |
-
msgid "Import"
|
599 |
-
msgstr "Importar"
|
600 |
-
|
601 |
-
# @ ure
|
602 |
-
#: ../includes/class-ure-lib.php:1969
|
603 |
-
msgid "Unfiltered html"
|
604 |
-
msgstr "Ometre Filtrat d'HTML"
|
605 |
-
|
606 |
-
# @ ure
|
607 |
-
#: ../includes/class-ure-lib.php:1970
|
608 |
-
msgid "Edit posts"
|
609 |
-
msgstr "Editar missatges"
|
610 |
-
|
611 |
-
# @ ure
|
612 |
-
#: ../includes/class-ure-lib.php:1971
|
613 |
-
msgid "Edit others posts"
|
614 |
-
msgstr "Editar missatges de altres"
|
615 |
-
|
616 |
-
# @ ure
|
617 |
-
#: ../includes/class-ure-lib.php:1972
|
618 |
-
msgid "Edit published posts"
|
619 |
-
msgstr "Editar els missatges publicats"
|
620 |
-
|
621 |
-
# @ ure
|
622 |
-
#: ../includes/class-ure-lib.php:1973
|
623 |
-
msgid "Publish posts"
|
624 |
-
msgstr "Publicar missatges"
|
625 |
-
|
626 |
-
# @ ure
|
627 |
-
#: ../includes/class-ure-lib.php:1974
|
628 |
-
msgid "Edit pages"
|
629 |
-
msgstr "Editar pàgines"
|
630 |
-
|
631 |
-
# @ ure
|
632 |
-
#: ../includes/class-ure-lib.php:1975
|
633 |
-
msgid "Read"
|
634 |
-
msgstr "Llegir"
|
635 |
-
|
636 |
-
# @ ure
|
637 |
-
#: ../includes/class-ure-lib.php:1976
|
638 |
-
msgid "Level 10"
|
639 |
-
msgstr "Nivell 10"
|
640 |
-
|
641 |
-
# @ ure
|
642 |
-
#: ../includes/class-ure-lib.php:1977
|
643 |
-
msgid "Level 9"
|
644 |
-
msgstr "Nivell 9"
|
645 |
-
|
646 |
-
# @ ure
|
647 |
-
#: ../includes/class-ure-lib.php:1978
|
648 |
-
msgid "Level 8"
|
649 |
-
msgstr "Nivell 8"
|
650 |
-
|
651 |
-
# @ ure
|
652 |
-
#: ../includes/class-ure-lib.php:1979
|
653 |
-
msgid "Level 7"
|
654 |
-
msgstr "Nivell 7"
|
655 |
-
|
656 |
-
# @ ure
|
657 |
-
#: ../includes/class-ure-lib.php:1980
|
658 |
-
msgid "Level 6"
|
659 |
-
msgstr "Nivell 6"
|
660 |
-
|
661 |
-
# @ ure
|
662 |
-
#: ../includes/class-ure-lib.php:1981
|
663 |
-
msgid "Level 5"
|
664 |
-
msgstr "Nivell 5"
|
665 |
-
|
666 |
-
# @ ure
|
667 |
-
#: ../includes/class-ure-lib.php:1982
|
668 |
-
msgid "Level 4"
|
669 |
-
msgstr "Nivell 4"
|
670 |
-
|
671 |
-
# @ ure
|
672 |
-
#: ../includes/class-ure-lib.php:1983
|
673 |
-
msgid "Level 3"
|
674 |
-
msgstr "Nivell 3"
|
675 |
-
|
676 |
-
# @ ure
|
677 |
-
#: ../includes/class-ure-lib.php:1984
|
678 |
-
msgid "Level 2"
|
679 |
-
msgstr "Nivell 2"
|
680 |
-
|
681 |
-
# @ ure
|
682 |
-
#: ../includes/class-ure-lib.php:1985
|
683 |
-
msgid "Level 1"
|
684 |
-
msgstr "Nivell 1"
|
685 |
-
|
686 |
-
# @ ure
|
687 |
-
#: ../includes/class-ure-lib.php:1986
|
688 |
-
msgid "Level 0"
|
689 |
-
msgstr "Nivell 0"
|
690 |
-
|
691 |
-
# @ ure
|
692 |
-
#: ../includes/class-ure-lib.php:1987
|
693 |
-
msgid "Edit others pages"
|
694 |
-
msgstr "Editar pàgines de altres"
|
695 |
-
|
696 |
-
# @ ure
|
697 |
-
#: ../includes/class-ure-lib.php:1988
|
698 |
-
msgid "Edit published pages"
|
699 |
-
msgstr "Editar pàgines publicades"
|
700 |
-
|
701 |
-
# @ ure
|
702 |
-
#: ../includes/class-ure-lib.php:1989
|
703 |
-
msgid "Publish pages"
|
704 |
-
msgstr "Publicar pàgines"
|
705 |
-
|
706 |
-
# @ ure
|
707 |
-
#: ../includes/class-ure-lib.php:1990
|
708 |
-
msgid "Delete pages"
|
709 |
-
msgstr "Eliminar pàgines"
|
710 |
-
|
711 |
-
# ure
|
712 |
-
#: ../includes/class-ure-lib.php:1991
|
713 |
-
msgid "Delete others pages"
|
714 |
-
msgstr "Eliminar pàgines de altres"
|
715 |
-
|
716 |
-
# @ ure
|
717 |
-
#: ../includes/class-ure-lib.php:1992
|
718 |
-
msgid "Delete published pages"
|
719 |
-
msgstr "Eliminar pàgines publicades"
|
720 |
-
|
721 |
-
# ure
|
722 |
-
#: ../includes/class-ure-lib.php:1993
|
723 |
-
msgid "Delete posts"
|
724 |
-
msgstr "Eliminar missatges"
|
725 |
-
|
726 |
-
# @ ure
|
727 |
-
#: ../includes/class-ure-lib.php:1994
|
728 |
-
msgid "Delete others posts"
|
729 |
-
msgstr "Eliminar missatges de altres"
|
730 |
-
|
731 |
-
# ure
|
732 |
-
#: ../includes/class-ure-lib.php:1995
|
733 |
-
msgid "Delete published posts"
|
734 |
-
msgstr "Eliminar missatges publicats"
|
735 |
-
|
736 |
-
# ure
|
737 |
-
#: ../includes/class-ure-lib.php:1996
|
738 |
-
msgid "Delete private posts"
|
739 |
-
msgstr "Eliminar missatges privats"
|
740 |
-
|
741 |
-
# @ ure
|
742 |
-
#: ../includes/class-ure-lib.php:1997
|
743 |
-
msgid "Edit private posts"
|
744 |
-
msgstr "Editar missatges privats"
|
745 |
-
|
746 |
-
# @ ure
|
747 |
-
#: ../includes/class-ure-lib.php:1998
|
748 |
-
msgid "Read private posts"
|
749 |
-
msgstr "Llegir missatges privats"
|
750 |
-
|
751 |
-
# @ ure
|
752 |
-
#: ../includes/class-ure-lib.php:1999
|
753 |
-
msgid "Delete private pages"
|
754 |
-
msgstr "Eliminar pàgines privades"
|
755 |
-
|
756 |
-
# @ ure
|
757 |
-
#: ../includes/class-ure-lib.php:2000
|
758 |
-
msgid "Edit private pages"
|
759 |
-
msgstr "Editar pàgines privades"
|
760 |
-
|
761 |
-
# @ ure
|
762 |
-
#: ../includes/class-ure-lib.php:2001
|
763 |
-
msgid "Read private pages"
|
764 |
-
msgstr "Llegir pàgines privades"
|
765 |
-
|
766 |
-
# @ ure
|
767 |
-
#: ../includes/class-ure-lib.php:2002
|
768 |
-
msgid "Delete users"
|
769 |
-
msgstr "Eliminar usuaris"
|
770 |
-
|
771 |
-
# @ ure
|
772 |
-
#: ../includes/class-ure-lib.php:2003
|
773 |
-
msgid "Create users"
|
774 |
-
msgstr "Crear usuaris"
|
775 |
-
|
776 |
-
# @ ure
|
777 |
-
#: ../includes/class-ure-lib.php:2004
|
778 |
-
msgid "Unfiltered upload"
|
779 |
-
msgstr "Sense filtre de càrrega"
|
780 |
-
|
781 |
-
# @ ure
|
782 |
-
#: ../includes/class-ure-lib.php:2005
|
783 |
-
msgid "Edit dashboard"
|
784 |
-
msgstr "Editar taulell"
|
785 |
-
|
786 |
-
# @ ure
|
787 |
-
#: ../includes/class-ure-lib.php:2006
|
788 |
-
msgid "Update plugins"
|
789 |
-
msgstr "Actualitzar connectors"
|
790 |
-
|
791 |
-
# @ ure
|
792 |
-
#: ../includes/class-ure-lib.php:2007
|
793 |
-
msgid "Delete plugins"
|
794 |
-
msgstr "Eliminar connectors"
|
795 |
-
|
796 |
-
# @ ure
|
797 |
-
#: ../includes/class-ure-lib.php:2008
|
798 |
-
msgid "Install plugins"
|
799 |
-
msgstr "Instal·lar connectors"
|
800 |
-
|
801 |
-
# @ ure
|
802 |
-
#: ../includes/class-ure-lib.php:2009
|
803 |
-
msgid "Update themes"
|
804 |
-
msgstr "Actualitzar plantilles"
|
805 |
-
|
806 |
-
# @ ure
|
807 |
-
#: ../includes/class-ure-lib.php:2010
|
808 |
-
msgid "Install themes"
|
809 |
-
msgstr "Instal·lar plantilles"
|
810 |
-
|
811 |
-
# @ ure
|
812 |
-
#: ../includes/class-ure-lib.php:2011
|
813 |
-
msgid "Update core"
|
814 |
-
msgstr "Actualitzar nucli"
|
815 |
-
|
816 |
-
# @ ure
|
817 |
-
#: ../includes/class-ure-lib.php:2012
|
818 |
-
msgid "List users"
|
819 |
-
msgstr "Llistar usuaris"
|
820 |
-
|
821 |
-
# @ ure
|
822 |
-
#: ../includes/class-ure-lib.php:2013
|
823 |
-
msgid "Remove users"
|
824 |
-
msgstr "Eliminar usuaris"
|
825 |
-
|
826 |
-
# @ ure
|
827 |
-
#: ../includes/class-ure-lib.php:2014
|
828 |
-
msgid "Add users"
|
829 |
-
msgstr "Afegir usuaris"
|
830 |
-
|
831 |
-
# @ ure
|
832 |
-
#: ../includes/class-ure-lib.php:2015
|
833 |
-
msgid "Promote users"
|
834 |
-
msgstr "Promoure usuaris"
|
835 |
-
|
836 |
-
# @ ure
|
837 |
-
#: ../includes/class-ure-lib.php:2016
|
838 |
-
msgid "Edit theme options"
|
839 |
-
msgstr "Editar opcions de plantilla"
|
840 |
-
|
841 |
-
# @ ure
|
842 |
-
#: ../includes/class-ure-lib.php:2017
|
843 |
-
msgid "Delete themes"
|
844 |
-
msgstr "Eliminar plantilles"
|
845 |
-
|
846 |
-
# @ ure
|
847 |
-
#: ../includes/class-ure-lib.php:2018
|
848 |
-
msgid "Export"
|
849 |
-
msgstr "Exportar"
|
850 |
-
|
851 |
-
# @ ure
|
852 |
-
#: ../includes/class-ure-lib.php:2128
|
853 |
-
msgid "Error: Capability name must contain latin characters and digits only!"
|
854 |
-
msgstr ""
|
855 |
-
"Error: el nom del Privilegi només ha de contenir caràcters llatins i dígits."
|
856 |
-
|
857 |
-
# @ ure
|
858 |
-
#: ../includes/class-ure-lib.php:2141
|
859 |
-
#, php-format
|
860 |
-
msgid "Capability %s is added successfully"
|
861 |
-
msgstr "Privilegi %s s'ha afegit correctament"
|
862 |
-
|
863 |
-
# @ ure
|
864 |
-
#: ../includes/class-ure-lib.php:2143
|
865 |
-
#, php-format
|
866 |
-
msgid "Capability %s exists already"
|
867 |
-
msgstr "Ja existeix el privilegi %s"
|
868 |
-
|
869 |
-
# @ ure
|
870 |
-
#: ../includes/class-ure-lib.php:2168
|
871 |
-
#, php-format
|
872 |
-
msgid "Error! You do not have permission to delete this capability: %s!"
|
873 |
-
msgstr "¡Error! No tens permisos per esborrar aquest privilegi: %s !"
|
874 |
-
|
875 |
-
# @ ure
|
876 |
-
#: ../includes/class-ure-lib.php:2187
|
877 |
-
#, php-format
|
878 |
-
msgid "Capability %s is removed successfully"
|
879 |
-
msgstr "El privilegi %s s'ha eliminat amb èxit"
|
880 |
-
|
881 |
-
#: ../includes/class-ure-lib.php:2291
|
882 |
-
msgid "Version:"
|
883 |
-
msgstr ""
|
884 |
-
|
885 |
-
# @ ure
|
886 |
-
#: ../includes/class-ure-lib.php:2292
|
887 |
-
msgid "Author's website"
|
888 |
-
msgstr "Lloc web del autor"
|
889 |
-
|
890 |
-
# @ ure
|
891 |
-
#: ../includes/class-ure-lib.php:2293
|
892 |
-
msgid "Plugin webpage"
|
893 |
-
msgstr "Pàgina web del connector"
|
894 |
-
|
895 |
-
# @ ure
|
896 |
-
#: ../includes/class-ure-lib.php:2294
|
897 |
-
#, fuzzy
|
898 |
-
msgid "Plugin download"
|
899 |
-
msgstr "Pàgina web del connector"
|
900 |
-
|
901 |
-
# @ ure
|
902 |
-
#: ../includes/class-ure-lib.php:2296
|
903 |
-
msgid "FAQ"
|
904 |
-
msgstr "FAQ"
|
905 |
-
|
906 |
-
# @ ure
|
907 |
-
#: ../includes/class-ure-lib.php:2344
|
908 |
-
msgid "None"
|
909 |
-
msgstr "Cap"
|
910 |
-
|
911 |
-
# @ ure
|
912 |
-
#: ../includes/class-ure-lib.php:2371
|
913 |
-
msgid "Delete All Unused Roles"
|
914 |
-
msgstr ""
|
915 |
-
|
916 |
-
#: ../includes/class-ure-lib.php:2395
|
917 |
-
msgid "— No role for this site —"
|
918 |
-
msgstr ""
|
919 |
-
|
920 |
-
#: ../includes/ure-user-edit.php:31
|
921 |
-
msgid "Network Super Admin"
|
922 |
-
msgstr ""
|
923 |
-
|
924 |
-
# @ ure
|
925 |
-
#: ../includes/ure-user-edit.php:34
|
926 |
-
msgid "Change capabilities for user"
|
927 |
-
msgstr "Canviar privilegis d'usuari"
|
928 |
-
|
929 |
-
#: ../includes/ure-user-edit.php:71
|
930 |
-
msgid "Primary Role:"
|
931 |
-
msgstr ""
|
932 |
-
|
933 |
-
#: ../includes/ure-user-edit.php:81
|
934 |
-
msgid "bbPress Role:"
|
935 |
-
msgstr ""
|
936 |
-
|
937 |
-
# @ ure
|
938 |
-
#: ../includes/ure-user-edit.php:91
|
939 |
-
#, fuzzy
|
940 |
-
msgid "Other Roles:"
|
941 |
-
msgstr "Altres rols"
|
942 |
-
|
943 |
-
#: ../includes/class-ure-screen-help.php:16
|
944 |
-
msgid ""
|
945 |
-
"turn this option on in order to make the \"Administrator\" role available at "
|
946 |
-
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
947 |
-
"for security reasons."
|
948 |
-
msgstr ""
|
949 |
-
|
950 |
-
#: ../includes/class-ure-screen-help.php:19
|
951 |
-
msgid ""
|
952 |
-
"automatically converts capability names from the technical form for internal "
|
953 |
-
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
954 |
-
"others posts\"."
|
955 |
-
msgstr ""
|
956 |
-
|
957 |
-
#: ../includes/class-ure-screen-help.php:22
|
958 |
-
msgid ""
|
959 |
-
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
960 |
-
"by WordPress. They are left at the user roles for the compatibility purpose "
|
961 |
-
"with the old themes and plugins code. Turning on this option will show those "
|
962 |
-
"deprecated capabilities."
|
963 |
-
msgstr ""
|
964 |
-
|
965 |
-
#: ../includes/class-ure-screen-help.php:42
|
966 |
-
msgid ""
|
967 |
-
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
968 |
-
"assign all of them an empty role \"No rights\", in order to look on the "
|
969 |
-
"users list with role \"No rights\" at the separate tab then."
|
970 |
-
msgstr ""
|
971 |
-
|
972 |
-
#: ../includes/class-ure-screen-help.php:59
|
973 |
-
msgid "Other default roles for new registered user"
|
974 |
-
msgstr ""
|
975 |
-
|
976 |
-
#: ../includes/class-ure-screen-help.php:60
|
977 |
-
msgid ""
|
978 |
-
"select roles below to assign them to the new user automatically as an "
|
979 |
-
"addition to the primary role. Note for multisite environment: take into "
|
980 |
-
"account that other default roles should exist at the site, in order to be "
|
981 |
-
"assigned to the new registered users."
|
982 |
-
msgstr ""
|
983 |
-
|
984 |
-
#: ../includes/class-ure-screen-help.php:78
|
985 |
-
msgid "Allow non super-admininstrators to create, edit and delete users"
|
986 |
-
msgstr ""
|
987 |
-
|
988 |
-
#: ../includes/class-ure-screen-help.php:79
|
989 |
-
msgid ""
|
990 |
-
"Super administrator only may create, edit and delete users under WordPress "
|
991 |
-
"multi-site by default. Turn this option on in order to remove this "
|
992 |
-
"limitation."
|
993 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-es_ES.mo
CHANGED
Binary file
|
lang/ure-es_ES.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -22,23 +22,23 @@ msgid "User Role Editor - Options"
|
|
22 |
msgstr "Editor de Roles"
|
23 |
|
24 |
#: ../includes/settings-template.php:21
|
25 |
-
#: ../includes/class-user-role-editor.php:
|
26 |
msgid "General"
|
27 |
msgstr ""
|
28 |
|
29 |
#: ../includes/settings-template.php:26
|
30 |
-
#: ../includes/class-user-role-editor.php:
|
31 |
msgid "Additional Modules"
|
32 |
msgstr ""
|
33 |
|
34 |
#: ../includes/settings-template.php:30
|
35 |
-
#: ../includes/class-user-role-editor.php:
|
36 |
#, fuzzy
|
37 |
msgid "Default Roles"
|
38 |
msgstr "Rol Predeterminado"
|
39 |
|
40 |
#: ../includes/settings-template.php:34
|
41 |
-
#: ../includes/class-user-role-editor.php:
|
42 |
msgid "Multisite"
|
43 |
msgstr ""
|
44 |
|
@@ -58,133 +58,142 @@ 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:
|
62 |
msgid "Show deprecated capabilities"
|
63 |
msgstr "Mostrar Capacidades obsoletas"
|
64 |
|
65 |
-
#: ../includes/settings-template.php:
|
66 |
-
#: ../includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
msgid "Save"
|
68 |
msgstr "Guardar"
|
69 |
|
70 |
-
#: ../includes/settings-template.php:
|
71 |
-
#: ../includes/class-ure-screen-help.php:
|
72 |
msgid "Count users without role"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: ../includes/settings-template.php:
|
76 |
#, fuzzy
|
77 |
msgid "Primary default role: "
|
78 |
msgstr "Rol Primario:"
|
79 |
|
80 |
-
#: ../includes/settings-template.php:
|
81 |
msgid "Other default roles for new registered user: "
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: ../includes/settings-template.php:
|
85 |
msgid ""
|
86 |
"Note for multisite environment: take into account that other default roles "
|
87 |
"should exist at the site, in order to be assigned to the new registered "
|
88 |
"users."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: ../includes/settings-template.php:
|
92 |
msgid "Allow non super administrators to create, edit, and delete users"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../includes/class-user-role-editor.php:
|
96 |
msgid "Change role for users without role"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../includes/class-user-role-editor.php:
|
100 |
msgid "No rights"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: ../includes/class-user-role-editor.php:
|
104 |
msgid "Provide new role"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: ../includes/class-user-role-editor.php:
|
108 |
-
#: ../includes/class-user-role-editor.php:
|
109 |
msgid "You do not have permission to edit this user."
|
110 |
msgstr "No tienes los suficientes permisos para editar este usuario"
|
111 |
|
112 |
-
#: ../includes/class-user-role-editor.php:
|
113 |
msgid "Capabilities"
|
114 |
msgstr "Capacidades"
|
115 |
|
116 |
-
#: ../includes/class-user-role-editor.php:
|
117 |
msgid "Settings"
|
118 |
msgstr "Configuración"
|
119 |
|
120 |
-
#: ../includes/class-user-role-editor.php:
|
121 |
-
#: ../includes/class-ure-lib.php:
|
122 |
msgid "Changelog"
|
123 |
msgstr "Registro de cambios"
|
124 |
|
125 |
-
#: ../includes/class-user-role-editor.php:
|
126 |
-
#: ../includes/class-user-role-editor.php:
|
127 |
-
#: ../includes/class-user-role-editor.php:
|
128 |
-
#: ../includes/class-ure-lib.php:
|
129 |
msgid "User Role Editor"
|
130 |
msgstr "Editor de Roles"
|
131 |
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
-
#: ../includes/class-user-role-editor.php:
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
msgid "User Role Editor options are updated"
|
136 |
msgstr "Opciones actualizadas"
|
137 |
|
138 |
-
#: ../includes/class-user-role-editor.php:
|
139 |
#, fuzzy
|
140 |
msgid "Default Roles are updated"
|
141 |
msgstr "Rol Predeterminado"
|
142 |
|
143 |
-
#: ../includes/class-user-role-editor.php:
|
144 |
msgid ""
|
145 |
"You do not have sufficient permissions to manage options for User Role "
|
146 |
"Editor."
|
147 |
msgstr "Permisos insuficientes para trabajar"
|
148 |
|
149 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
150 |
msgid "Insufficient permissions to work with User Role Editor"
|
151 |
msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
|
152 |
|
153 |
-
#: ../includes/class-user-role-editor.php:
|
154 |
msgid "Select All"
|
155 |
msgstr "Seleccionar todo"
|
156 |
|
157 |
-
#: ../includes/class-user-role-editor.php:
|
158 |
msgid "Unselect All"
|
159 |
msgstr "Deseleccionar todo"
|
160 |
|
161 |
-
#: ../includes/class-user-role-editor.php:
|
162 |
msgid "Reverse"
|
163 |
msgstr "Revertir"
|
164 |
|
165 |
-
#: ../includes/class-user-role-editor.php:
|
166 |
msgid "Update"
|
167 |
msgstr "Actualizar"
|
168 |
|
169 |
-
#: ../includes/class-user-role-editor.php:
|
170 |
msgid "Please confirm permissions update"
|
171 |
msgstr "Por favor confirma las actualizaciones de permisos"
|
172 |
|
173 |
-
#: ../includes/class-user-role-editor.php:
|
174 |
msgid "Add New Role"
|
175 |
msgstr "Agregar nuevo Rol"
|
176 |
|
177 |
-
#: ../includes/class-user-role-editor.php:
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
#, fuzzy
|
180 |
msgid "Rename Role"
|
181 |
msgstr "Eliminar Rol"
|
182 |
|
183 |
-
#: ../includes/class-user-role-editor.php:
|
184 |
msgid " Role name (ID) can not be empty!"
|
185 |
msgstr "¡El nombre del Rol (ID) no puede estar vacío!"
|
186 |
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
msgid ""
|
189 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
190 |
"only!"
|
@@ -192,66 +201,66 @@ msgstr ""
|
|
192 |
"¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
|
193 |
"altos o bajos!"
|
194 |
|
195 |
-
#: ../includes/class-user-role-editor.php:
|
196 |
msgid ""
|
197 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
198 |
"it."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ../includes/class-user-role-editor.php:
|
202 |
msgid "Add Role"
|
203 |
msgstr "Agregar Rol"
|
204 |
|
205 |
-
#: ../includes/class-user-role-editor.php:
|
206 |
msgid "Delete Role"
|
207 |
msgstr "Eliminar Rol"
|
208 |
|
209 |
-
#: ../includes/class-user-role-editor.php:
|
210 |
msgid "Cancel"
|
211 |
msgstr "Cancelar"
|
212 |
|
213 |
-
#: ../includes/class-user-role-editor.php:
|
214 |
msgid "Add Capability"
|
215 |
msgstr "Agregar Capacidad"
|
216 |
|
217 |
-
#: ../includes/class-user-role-editor.php:
|
218 |
-
#: ../includes/class-user-role-editor.php:
|
219 |
msgid "Delete Capability"
|
220 |
msgstr "Eliminar Capacidades"
|
221 |
|
222 |
-
#: ../includes/class-user-role-editor.php:
|
223 |
msgid "Reset"
|
224 |
msgstr "Reiniciar"
|
225 |
|
226 |
-
#: ../includes/class-user-role-editor.php:
|
227 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../includes/class-user-role-editor.php:
|
231 |
msgid ""
|
232 |
"If any plugins have changed capabilities in any way upon installation (such "
|
233 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: ../includes/class-user-role-editor.php:
|
237 |
msgid ""
|
238 |
"For more information on how to undo changes and restore plugin capabilities "
|
239 |
"go to"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ../includes/class-user-role-editor.php:
|
243 |
msgid "Continue?"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: ../includes/class-user-role-editor.php:
|
247 |
msgid "Default Role"
|
248 |
msgstr "Rol Predeterminado"
|
249 |
|
250 |
-
#: ../includes/class-user-role-editor.php:
|
251 |
msgid "Set New Default Role"
|
252 |
msgstr "Establecer nuevo Rol"
|
253 |
|
254 |
-
#: ../includes/class-user-role-editor.php:
|
255 |
msgid ""
|
256 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
257 |
"or other custom code"
|
@@ -259,11 +268,11 @@ msgstr ""
|
|
259 |
"¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
|
260 |
"algún plugin o código personalizado"
|
261 |
|
262 |
-
#: ../includes/class-user-role-editor.php:
|
263 |
msgid " Capability name (ID) can not be empty!"
|
264 |
msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
|
265 |
|
266 |
-
#: ../includes/class-user-role-editor.php:
|
267 |
msgid ""
|
268 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
269 |
"underscore only!"
|
@@ -271,12 +280,12 @@ msgstr ""
|
|
271 |
"¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
|
272 |
"guiones altos o bajos!"
|
273 |
|
274 |
-
#: ../includes/class-user-role-editor.php:
|
275 |
-
#: ../includes/class-user-role-editor.php:
|
276 |
msgid "Other Roles"
|
277 |
msgstr "Otros Roles"
|
278 |
|
279 |
-
#: ../includes/class-user-role-editor.php:
|
280 |
msgid "Edit"
|
281 |
msgstr "Editar"
|
282 |
|
@@ -285,7 +294,7 @@ msgstr "Editar"
|
|
285 |
msgid "Select Role and change its capabilities:"
|
286 |
msgstr "Selecciona un rol y modifica su lista de Capacidades"
|
287 |
|
288 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:
|
289 |
#, fuzzy
|
290 |
msgid "Show capabilities in human readable form"
|
291 |
msgstr "Mostrar Capacidades de forma legible"
|
@@ -298,92 +307,92 @@ msgstr "Si está marcado, se aplicará la acción a TODOS los sitios de la Red"
|
|
298 |
msgid "Apply to All Sites"
|
299 |
msgstr "Aplicar a todos los Sitios"
|
300 |
|
301 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:
|
302 |
msgid "Core capabilities:"
|
303 |
msgstr "Capacidades del núcleo del sistema:"
|
304 |
|
305 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:
|
306 |
msgid "Quick filter:"
|
307 |
msgstr "Filtro rápido:"
|
308 |
|
309 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:
|
310 |
msgid "Custom capabilities:"
|
311 |
msgstr "Capacidades personalizadas:"
|
312 |
|
313 |
-
#: ../includes/class-ure-lib.php:
|
314 |
msgid "Error: wrong request"
|
315 |
msgstr "Error: Petición inválida"
|
316 |
|
317 |
-
#: ../includes/class-ure-lib.php:
|
318 |
msgid "Role name (ID): "
|
319 |
msgstr "Nombre del Rol (ID):"
|
320 |
|
321 |
-
#: ../includes/class-ure-lib.php:
|
322 |
msgid "Display Role Name: "
|
323 |
msgstr "Mostrar nombre del Rol:"
|
324 |
|
325 |
-
#: ../includes/class-ure-lib.php:
|
326 |
msgid "Make copy of: "
|
327 |
msgstr "Hacer copia de:"
|
328 |
|
329 |
-
#: ../includes/class-ure-lib.php:
|
330 |
msgid "Select Role:"
|
331 |
msgstr "Seleccionar Rol:"
|
332 |
|
333 |
-
#: ../includes/class-ure-lib.php:
|
334 |
msgid "Delete:"
|
335 |
msgstr "Eliminar:"
|
336 |
|
337 |
-
#: ../includes/class-ure-lib.php:
|
338 |
msgid "Capability name (ID): "
|
339 |
msgstr "Nombre de la Capacidad (ID):"
|
340 |
|
341 |
-
#: ../includes/class-ure-lib.php:
|
342 |
msgid "Error: "
|
343 |
msgstr "Error:"
|
344 |
|
345 |
-
#: ../includes/class-ure-lib.php:
|
346 |
msgid "Role"
|
347 |
msgstr "Rol"
|
348 |
|
349 |
-
#: ../includes/class-ure-lib.php:
|
350 |
msgid "does not exist"
|
351 |
msgstr "no existe"
|
352 |
|
353 |
-
#: ../includes/class-ure-lib.php:
|
354 |
msgid "Role is updated successfully"
|
355 |
msgstr "El Rol fue exitosamente actualizado"
|
356 |
|
357 |
-
#: ../includes/class-ure-lib.php:
|
358 |
msgid "Roles are updated for all network"
|
359 |
msgstr "Roles actualizados en toda la Red"
|
360 |
|
361 |
-
#: ../includes/class-ure-lib.php:
|
362 |
msgid "Error occured during role(s) update"
|
363 |
msgstr "Ocurrió un error durante la actualización del Rol"
|
364 |
|
365 |
-
#: ../includes/class-ure-lib.php:
|
366 |
msgid "User capabilities are updated successfully"
|
367 |
msgstr "Las Capacidades de Usuario fueron actualizadas exitosamente"
|
368 |
|
369 |
-
#: ../includes/class-ure-lib.php:
|
370 |
msgid "Error occured during user update"
|
371 |
msgstr "Ocurrió un error durante la actualización del Usuario"
|
372 |
|
373 |
-
#: ../includes/class-ure-lib.php:
|
374 |
msgid "User Roles are restored to WordPress default values. "
|
375 |
msgstr ""
|
376 |
"Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
|
377 |
|
378 |
-
#: ../includes/class-ure-lib.php:
|
379 |
msgid "Help"
|
380 |
msgstr "Ayuda"
|
381 |
|
382 |
-
#: ../includes/class-ure-lib.php:
|
383 |
msgid "Error is occur. Please check the log file."
|
384 |
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
|
385 |
|
386 |
-
#: ../includes/class-ure-lib.php:
|
387 |
msgid ""
|
388 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
389 |
"only!"
|
@@ -391,406 +400,406 @@ msgstr ""
|
|
391 |
"Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
|
392 |
"altos o bajos!"
|
393 |
|
394 |
-
#: ../includes/class-ure-lib.php:
|
395 |
msgid ""
|
396 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
397 |
"characters to it."
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: ../includes/class-ure-lib.php:
|
401 |
#, php-format
|
402 |
msgid "Role %s exists already"
|
403 |
msgstr "El Rol %s ya existe"
|
404 |
|
405 |
-
#: ../includes/class-ure-lib.php:
|
406 |
msgid "Error is encountered during new role create operation"
|
407 |
msgstr "Un error fue encontrado durante la creación del nuevo Rol"
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
#, php-format
|
411 |
msgid "Role %s is created successfully"
|
412 |
msgstr "El Rol %s fue creado exitosamente"
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
415 |
msgid "Error: Role ID is empty!"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
msgid "Error: Empty role display name is not allowed."
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: ../includes/class-ure-lib.php:
|
423 |
#, fuzzy, php-format
|
424 |
msgid "Role %s does not exists"
|
425 |
msgstr "no existe"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
#, fuzzy, php-format
|
429 |
msgid "Role %s is renamed to %s successfully"
|
430 |
msgstr "El Rol %s fue creado exitosamente"
|
431 |
|
432 |
-
#: ../includes/class-ure-lib.php:
|
433 |
msgid "Error encountered during role delete operation"
|
434 |
msgstr "Un error fue encontrado durante la eliminación del Rol"
|
435 |
|
436 |
-
#: ../includes/class-ure-lib.php:
|
437 |
msgid "Unused roles are deleted successfully"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ../includes/class-ure-lib.php:
|
441 |
#, php-format
|
442 |
msgid "Role %s is deleted successfully"
|
443 |
msgstr "El Rol %s fue eliminado exitosamente"
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
msgid "Error encountered during default role change operation"
|
447 |
msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
#, php-format
|
451 |
msgid "Default role for new users is set to %s successfully"
|
452 |
msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
msgid "Editor"
|
456 |
msgstr "Editor"
|
457 |
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
msgid "Author"
|
460 |
msgstr "Autor"
|
461 |
|
462 |
-
#: ../includes/class-ure-lib.php:
|
463 |
msgid "Contributor"
|
464 |
msgstr "Contribuyente"
|
465 |
|
466 |
-
#: ../includes/class-ure-lib.php:
|
467 |
msgid "Subscriber"
|
468 |
msgstr "Suscriptor"
|
469 |
|
470 |
-
#: ../includes/class-ure-lib.php:
|
471 |
msgid "Switch themes"
|
472 |
msgstr "Cambiar temas (plantillas)"
|
473 |
|
474 |
-
#: ../includes/class-ure-lib.php:
|
475 |
msgid "Edit themes"
|
476 |
msgstr "Editar temas (plantillas)"
|
477 |
|
478 |
-
#: ../includes/class-ure-lib.php:
|
479 |
msgid "Activate plugins"
|
480 |
msgstr "Activar plugins"
|
481 |
|
482 |
-
#: ../includes/class-ure-lib.php:
|
483 |
msgid "Edit plugins"
|
484 |
msgstr "Editar plugins"
|
485 |
|
486 |
-
#: ../includes/class-ure-lib.php:
|
487 |
msgid "Edit users"
|
488 |
msgstr "Editar usuarios"
|
489 |
|
490 |
-
#: ../includes/class-ure-lib.php:
|
491 |
msgid "Edit files"
|
492 |
msgstr "Editar archivos"
|
493 |
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
msgid "Manage options"
|
496 |
msgstr "Administrar opciones"
|
497 |
|
498 |
-
#: ../includes/class-ure-lib.php:
|
499 |
msgid "Moderate comments"
|
500 |
msgstr "Moderar comentarios"
|
501 |
|
502 |
-
#: ../includes/class-ure-lib.php:
|
503 |
msgid "Manage categories"
|
504 |
msgstr "Administrar categorías"
|
505 |
|
506 |
-
#: ../includes/class-ure-lib.php:
|
507 |
msgid "Manage links"
|
508 |
msgstr "Administrar enlaces"
|
509 |
|
510 |
-
#: ../includes/class-ure-lib.php:
|
511 |
msgid "Upload files"
|
512 |
msgstr "Subir archivos"
|
513 |
|
514 |
-
#: ../includes/class-ure-lib.php:
|
515 |
msgid "Import"
|
516 |
msgstr "Importar"
|
517 |
|
518 |
-
#: ../includes/class-ure-lib.php:
|
519 |
msgid "Unfiltered html"
|
520 |
msgstr "HTML sin filtrar"
|
521 |
|
522 |
-
#: ../includes/class-ure-lib.php:
|
523 |
msgid "Edit posts"
|
524 |
msgstr "Editar entradas"
|
525 |
|
526 |
-
#: ../includes/class-ure-lib.php:
|
527 |
msgid "Edit others posts"
|
528 |
msgstr "Editar entradas ajenas"
|
529 |
|
530 |
-
#: ../includes/class-ure-lib.php:
|
531 |
msgid "Edit published posts"
|
532 |
msgstr "Editar entradas publicadas"
|
533 |
|
534 |
-
#: ../includes/class-ure-lib.php:
|
535 |
msgid "Publish posts"
|
536 |
msgstr "Publicar entradas"
|
537 |
|
538 |
-
#: ../includes/class-ure-lib.php:
|
539 |
msgid "Edit pages"
|
540 |
msgstr "Editar páginas"
|
541 |
|
542 |
-
#: ../includes/class-ure-lib.php:
|
543 |
msgid "Read"
|
544 |
msgstr "Leer"
|
545 |
|
546 |
-
#: ../includes/class-ure-lib.php:
|
547 |
msgid "Level 10"
|
548 |
msgstr "Nivel 10"
|
549 |
|
550 |
-
#: ../includes/class-ure-lib.php:
|
551 |
msgid "Level 9"
|
552 |
msgstr "Nivel 9"
|
553 |
|
554 |
-
#: ../includes/class-ure-lib.php:
|
555 |
msgid "Level 8"
|
556 |
msgstr "Nivel 8"
|
557 |
|
558 |
-
#: ../includes/class-ure-lib.php:
|
559 |
msgid "Level 7"
|
560 |
msgstr "Nivel 7"
|
561 |
|
562 |
-
#: ../includes/class-ure-lib.php:
|
563 |
msgid "Level 6"
|
564 |
msgstr "Nivel 6"
|
565 |
|
566 |
-
#: ../includes/class-ure-lib.php:
|
567 |
msgid "Level 5"
|
568 |
msgstr "Nivel 5"
|
569 |
|
570 |
-
#: ../includes/class-ure-lib.php:
|
571 |
msgid "Level 4"
|
572 |
msgstr "Nivel 4"
|
573 |
|
574 |
-
#: ../includes/class-ure-lib.php:
|
575 |
msgid "Level 3"
|
576 |
msgstr "Nivel 3"
|
577 |
|
578 |
-
#: ../includes/class-ure-lib.php:
|
579 |
msgid "Level 2"
|
580 |
msgstr "Nivel 2"
|
581 |
|
582 |
-
#: ../includes/class-ure-lib.php:
|
583 |
msgid "Level 1"
|
584 |
msgstr "Nivel 1"
|
585 |
|
586 |
-
#: ../includes/class-ure-lib.php:
|
587 |
msgid "Level 0"
|
588 |
msgstr "Nivel 0"
|
589 |
|
590 |
-
#: ../includes/class-ure-lib.php:
|
591 |
msgid "Edit others pages"
|
592 |
msgstr "Editar páginas ajenas"
|
593 |
|
594 |
-
#: ../includes/class-ure-lib.php:
|
595 |
msgid "Edit published pages"
|
596 |
msgstr "Editar páginas publicadas"
|
597 |
|
598 |
-
#: ../includes/class-ure-lib.php:
|
599 |
msgid "Publish pages"
|
600 |
msgstr "Publicar páginas"
|
601 |
|
602 |
-
#: ../includes/class-ure-lib.php:
|
603 |
msgid "Delete pages"
|
604 |
msgstr "Eliminar páginas"
|
605 |
|
606 |
-
#: ../includes/class-ure-lib.php:
|
607 |
msgid "Delete others pages"
|
608 |
msgstr "Eliminar páginas ajenas"
|
609 |
|
610 |
-
#: ../includes/class-ure-lib.php:
|
611 |
msgid "Delete published pages"
|
612 |
msgstr "Eliminar páginas publicadas"
|
613 |
|
614 |
-
#: ../includes/class-ure-lib.php:
|
615 |
msgid "Delete posts"
|
616 |
msgstr "Eliminar entradas"
|
617 |
|
618 |
-
#: ../includes/class-ure-lib.php:
|
619 |
msgid "Delete others posts"
|
620 |
msgstr "Eliminar entradas ajenas"
|
621 |
|
622 |
-
#: ../includes/class-ure-lib.php:
|
623 |
msgid "Delete published posts"
|
624 |
msgstr "Eliminar entradas publicadas"
|
625 |
|
626 |
-
#: ../includes/class-ure-lib.php:
|
627 |
msgid "Delete private posts"
|
628 |
msgstr "Eliminar entradas privadas"
|
629 |
|
630 |
-
#: ../includes/class-ure-lib.php:
|
631 |
msgid "Edit private posts"
|
632 |
msgstr "Editar entradas privadas"
|
633 |
|
634 |
-
#: ../includes/class-ure-lib.php:
|
635 |
msgid "Read private posts"
|
636 |
msgstr "Leer entradas privadas"
|
637 |
|
638 |
-
#: ../includes/class-ure-lib.php:
|
639 |
msgid "Delete private pages"
|
640 |
msgstr "Eliminar páginas privadas"
|
641 |
|
642 |
-
#: ../includes/class-ure-lib.php:
|
643 |
msgid "Edit private pages"
|
644 |
msgstr "Editar páginas privadas"
|
645 |
|
646 |
-
#: ../includes/class-ure-lib.php:
|
647 |
msgid "Read private pages"
|
648 |
msgstr "Leer páginas privadas"
|
649 |
|
650 |
-
#: ../includes/class-ure-lib.php:
|
651 |
msgid "Delete users"
|
652 |
msgstr "Eliminar usuarios"
|
653 |
|
654 |
-
#: ../includes/class-ure-lib.php:
|
655 |
msgid "Create users"
|
656 |
msgstr "Crear usuarios"
|
657 |
|
658 |
-
#: ../includes/class-ure-lib.php:
|
659 |
msgid "Unfiltered upload"
|
660 |
msgstr "Subir sin filtrado"
|
661 |
|
662 |
-
#: ../includes/class-ure-lib.php:
|
663 |
msgid "Edit dashboard"
|
664 |
msgstr "Editar escritorio"
|
665 |
|
666 |
-
#: ../includes/class-ure-lib.php:
|
667 |
msgid "Update plugins"
|
668 |
msgstr "Actualizar plugins"
|
669 |
|
670 |
-
#: ../includes/class-ure-lib.php:
|
671 |
msgid "Delete plugins"
|
672 |
msgstr "Eliminar plugins"
|
673 |
|
674 |
-
#: ../includes/class-ure-lib.php:
|
675 |
msgid "Install plugins"
|
676 |
msgstr "Instalar plugins"
|
677 |
|
678 |
-
#: ../includes/class-ure-lib.php:
|
679 |
msgid "Update themes"
|
680 |
msgstr "Actualizar temas (plantillas)"
|
681 |
|
682 |
-
#: ../includes/class-ure-lib.php:
|
683 |
msgid "Install themes"
|
684 |
msgstr "Instalar temas (plantillas)"
|
685 |
|
686 |
-
#: ../includes/class-ure-lib.php:
|
687 |
msgid "Update core"
|
688 |
msgstr "Actualizar núcleo"
|
689 |
|
690 |
-
#: ../includes/class-ure-lib.php:
|
691 |
msgid "List users"
|
692 |
msgstr "Listar usuarios"
|
693 |
|
694 |
-
#: ../includes/class-ure-lib.php:
|
695 |
msgid "Remove users"
|
696 |
msgstr "Eliminar usuarios"
|
697 |
|
698 |
-
#: ../includes/class-ure-lib.php:
|
699 |
msgid "Add users"
|
700 |
msgstr "Agregar usuarios"
|
701 |
|
702 |
-
#: ../includes/class-ure-lib.php:
|
703 |
msgid "Promote users"
|
704 |
msgstr "Promover usuarios"
|
705 |
|
706 |
-
#: ../includes/class-ure-lib.php:
|
707 |
msgid "Edit theme options"
|
708 |
msgstr "Editar opciones del tema (plantilla)"
|
709 |
|
710 |
-
#: ../includes/class-ure-lib.php:
|
711 |
msgid "Delete themes"
|
712 |
msgstr "Eliminar temas (plantillas)"
|
713 |
|
714 |
-
#: ../includes/class-ure-lib.php:
|
715 |
msgid "Export"
|
716 |
msgstr "Exportar"
|
717 |
|
718 |
-
#: ../includes/class-ure-lib.php:
|
719 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
720 |
msgstr ""
|
721 |
"Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
#, php-format
|
725 |
msgid "Capability %s is added successfully"
|
726 |
msgstr "La Capacidad %s fue agregada exitosamente"
|
727 |
|
728 |
-
#: ../includes/class-ure-lib.php:
|
729 |
#, php-format
|
730 |
msgid "Capability %s exists already"
|
731 |
msgstr "La Capacidad %s ya existe"
|
732 |
|
733 |
-
#: ../includes/class-ure-lib.php:
|
734 |
#, php-format
|
735 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
736 |
msgstr ""
|
737 |
"¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
|
738 |
|
739 |
-
#: ../includes/class-ure-lib.php:
|
740 |
#, php-format
|
741 |
msgid "Capability %s is removed successfully"
|
742 |
msgstr "La Capacidad %s fue eliminada exitosamente"
|
743 |
|
744 |
-
#: ../includes/class-ure-lib.php:
|
745 |
msgid "Version:"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: ../includes/class-ure-lib.php:
|
749 |
msgid "Author's website"
|
750 |
msgstr "Sitio web del Autor"
|
751 |
|
752 |
-
#: ../includes/class-ure-lib.php:
|
753 |
msgid "Plugin webpage"
|
754 |
msgstr "Página web del Plugin"
|
755 |
|
756 |
-
#: ../includes/class-ure-lib.php:
|
757 |
#, fuzzy
|
758 |
msgid "Plugin download"
|
759 |
msgstr "Página web del Plugin"
|
760 |
|
761 |
-
#: ../includes/class-ure-lib.php:
|
762 |
msgid "FAQ"
|
763 |
msgstr "FAQ"
|
764 |
|
765 |
-
#: ../includes/class-ure-lib.php:
|
766 |
msgid "None"
|
767 |
msgstr "Ninguno"
|
768 |
|
769 |
-
#: ../includes/class-ure-lib.php:
|
770 |
msgid "Delete All Unused Roles"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: ../includes/class-ure-lib.php:
|
774 |
msgid "— No role for this site —"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: ../includes/ure-user-edit.php:
|
778 |
msgid "Network Super Admin"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: ../includes/ure-user-edit.php:
|
782 |
msgid "Change capabilities for user"
|
783 |
msgstr "Cambiar Capacidades para el usuario"
|
784 |
|
785 |
-
#: ../includes/ure-user-edit.php:
|
786 |
msgid "Primary Role:"
|
787 |
msgstr "Rol Primario:"
|
788 |
|
789 |
-
#: ../includes/ure-user-edit.php:
|
790 |
msgid "bbPress Role:"
|
791 |
msgstr "Rol de bbPress:"
|
792 |
|
793 |
-
#: ../includes/ure-user-edit.php:
|
794 |
msgid "Other Roles:"
|
795 |
msgstr "Otros Roles:"
|
796 |
|
@@ -816,18 +825,25 @@ msgid ""
|
|
816 |
"deprecated capabilities."
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../includes/class-ure-screen-help.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
820 |
msgid ""
|
821 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
822 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
823 |
"users list with role \"No rights\" at the separate tab then."
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: ../includes/class-ure-screen-help.php:
|
827 |
msgid "Other default roles for new registered user"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: ../includes/class-ure-screen-help.php:
|
831 |
msgid ""
|
832 |
"select roles below to assign them to the new user automatically as an "
|
833 |
"addition to the primary role. Note for multisite environment: take into "
|
@@ -835,11 +851,11 @@ msgid ""
|
|
835 |
"assigned to the new registered users."
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: ../includes/class-ure-screen-help.php:
|
839 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: ../includes/class-ure-screen-help.php:
|
843 |
msgid ""
|
844 |
"Super administrator only may create, edit and delete users under WordPress "
|
845 |
"multi-site by default. Turn this option on in order to remove this "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-06 11:48+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
22 |
msgstr "Editor de Roles"
|
23 |
|
24 |
#: ../includes/settings-template.php:21
|
25 |
+
#: ../includes/class-user-role-editor.php: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 |
|
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:233
|
102 |
msgid "Change role for users without role"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: ../includes/class-user-role-editor.php:234
|
106 |
msgid "No rights"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: ../includes/class-user-role-editor.php:235
|
110 |
msgid "Provide new role"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: ../includes/class-user-role-editor.php:319
|
114 |
+
#: ../includes/class-user-role-editor.php:321
|
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:2529
|
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:1029
|
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:778
|
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:850
|
156 |
+
#: ../includes/class-ure-lib.php:1697 ../includes/class-ure-lib.php:1950
|
157 |
+
#: ../includes/class-ure-lib.php:2066 ../includes/class-ure-lib.php:2114
|
158 |
+
#: ../includes/class-ure-lib.php:2350 ../includes/class-ure-lib.php:2395
|
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:976
|
163 |
msgid "Select All"
|
164 |
msgstr "Seleccionar todo"
|
165 |
|
166 |
+
#: ../includes/class-user-role-editor.php:977
|
167 |
msgid "Unselect All"
|
168 |
msgstr "Deseleccionar todo"
|
169 |
|
170 |
+
#: ../includes/class-user-role-editor.php:978
|
171 |
msgid "Reverse"
|
172 |
msgstr "Revertir"
|
173 |
|
174 |
+
#: ../includes/class-user-role-editor.php:979
|
175 |
msgid "Update"
|
176 |
msgstr "Actualizar"
|
177 |
|
178 |
+
#: ../includes/class-user-role-editor.php:980
|
179 |
msgid "Please confirm permissions update"
|
180 |
msgstr "Por favor confirma las actualizaciones de permisos"
|
181 |
|
182 |
+
#: ../includes/class-user-role-editor.php:981
|
183 |
msgid "Add New Role"
|
184 |
msgstr "Agregar nuevo Rol"
|
185 |
|
186 |
+
#: ../includes/class-user-role-editor.php:982
|
187 |
+
#: ../includes/class-user-role-editor.php:987
|
188 |
#, fuzzy
|
189 |
msgid "Rename Role"
|
190 |
msgstr "Eliminar Rol"
|
191 |
|
192 |
+
#: ../includes/class-user-role-editor.php:983
|
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:984
|
197 |
msgid ""
|
198 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
199 |
"only!"
|
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:985
|
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:986
|
211 |
msgid "Add Role"
|
212 |
msgstr "Agregar Rol"
|
213 |
|
214 |
+
#: ../includes/class-user-role-editor.php:988
|
215 |
msgid "Delete Role"
|
216 |
msgstr "Eliminar Rol"
|
217 |
|
218 |
+
#: ../includes/class-user-role-editor.php:989
|
219 |
msgid "Cancel"
|
220 |
msgstr "Cancelar"
|
221 |
|
222 |
+
#: ../includes/class-user-role-editor.php:990
|
223 |
msgid "Add Capability"
|
224 |
msgstr "Agregar Capacidad"
|
225 |
|
226 |
+
#: ../includes/class-user-role-editor.php:991
|
227 |
+
#: ../includes/class-user-role-editor.php:1000
|
228 |
msgid "Delete Capability"
|
229 |
msgstr "Eliminar Capacidades"
|
230 |
|
231 |
+
#: ../includes/class-user-role-editor.php:992
|
232 |
msgid "Reset"
|
233 |
msgstr "Reiniciar"
|
234 |
|
235 |
+
#: ../includes/class-user-role-editor.php:993
|
236 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../includes/class-user-role-editor.php:994
|
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:995
|
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:997
|
252 |
msgid "Continue?"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: ../includes/class-user-role-editor.php:998
|
256 |
msgid "Default Role"
|
257 |
msgstr "Rol Predeterminado"
|
258 |
|
259 |
+
#: ../includes/class-user-role-editor.php:999
|
260 |
msgid "Set New Default Role"
|
261 |
msgstr "Establecer nuevo Rol"
|
262 |
|
263 |
+
#: ../includes/class-user-role-editor.php:1001
|
264 |
msgid ""
|
265 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
266 |
"or other custom code"
|
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:1002
|
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:1003
|
276 |
msgid ""
|
277 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
278 |
"underscore only!"
|
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:1032
|
284 |
+
#: ../includes/class-user-role-editor.php:1065
|
285 |
msgid "Other Roles"
|
286 |
msgstr "Otros Roles"
|
287 |
|
288 |
+
#: ../includes/class-user-role-editor.php:1046
|
289 |
msgid "Edit"
|
290 |
msgstr "Editar"
|
291 |
|
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"
|
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:278 ../includes/class-ure-lib.php:289
|
327 |
msgid "Role name (ID): "
|
328 |
msgstr "Nombre del Rol (ID):"
|
329 |
|
330 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
331 |
msgid "Display Role Name: "
|
332 |
msgstr "Mostrar nombre del Rol:"
|
333 |
|
334 |
+
#: ../includes/class-ure-lib.php:282
|
335 |
msgid "Make copy of: "
|
336 |
msgstr "Hacer copia de:"
|
337 |
|
338 |
+
#: ../includes/class-ure-lib.php:298
|
339 |
msgid "Select Role:"
|
340 |
msgstr "Seleccionar Rol:"
|
341 |
|
342 |
+
#: ../includes/class-ure-lib.php:313
|
343 |
msgid "Delete:"
|
344 |
msgstr "Eliminar:"
|
345 |
|
346 |
+
#: ../includes/class-ure-lib.php:320
|
347 |
msgid "Capability name (ID): "
|
348 |
msgstr "Nombre de la Capacidad (ID):"
|
349 |
|
350 |
+
#: ../includes/class-ure-lib.php:434
|
351 |
msgid "Error: "
|
352 |
msgstr "Error:"
|
353 |
|
354 |
+
#: ../includes/class-ure-lib.php:434
|
355 |
msgid "Role"
|
356 |
msgstr "Rol"
|
357 |
|
358 |
+
#: ../includes/class-ure-lib.php:435
|
359 |
msgid "does not exist"
|
360 |
msgstr "no existe"
|
361 |
|
362 |
+
#: ../includes/class-ure-lib.php:478
|
363 |
msgid "Role is updated successfully"
|
364 |
msgstr "El Rol fue exitosamente actualizado"
|
365 |
|
366 |
+
#: ../includes/class-ure-lib.php:480
|
367 |
msgid "Roles are updated for all network"
|
368 |
msgstr "Roles actualizados en toda la Red"
|
369 |
|
370 |
+
#: ../includes/class-ure-lib.php:486
|
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:493
|
375 |
msgid "User capabilities are updated successfully"
|
376 |
msgstr "Las Capacidades de Usuario fueron actualizadas exitosamente"
|
377 |
|
378 |
+
#: ../includes/class-ure-lib.php:498
|
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:556
|
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:1445
|
388 |
msgid "Help"
|
389 |
msgstr "Ayuda"
|
390 |
|
391 |
+
#: ../includes/class-ure-lib.php:1913
|
392 |
msgid "Error is occur. Please check the log file."
|
393 |
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
|
394 |
|
395 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
396 |
msgid ""
|
397 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
398 |
"only!"
|
400 |
"Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
|
401 |
"altos o bajos!"
|
402 |
|
403 |
+
#: ../includes/class-ure-lib.php:1963 ../includes/class-ure-lib.php:2030
|
404 |
msgid ""
|
405 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
406 |
"characters to it."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1978
|
410 |
#, php-format
|
411 |
msgid "Role %s exists already"
|
412 |
msgstr "El Rol %s ya existe"
|
413 |
|
414 |
+
#: ../includes/class-ure-lib.php:1993
|
415 |
msgid "Error is encountered during new role create operation"
|
416 |
msgstr "Un error fue encontrado durante la creación del nuevo Rol"
|
417 |
|
418 |
+
#: ../includes/class-ure-lib.php:1995
|
419 |
#, php-format
|
420 |
msgid "Role %s is created successfully"
|
421 |
msgstr "El Rol %s fue creado exitosamente"
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:2019
|
424 |
msgid "Error: Role ID is empty!"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:2037
|
428 |
msgid "Error: Empty role display name is not allowed."
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:2044
|
432 |
#, fuzzy, php-format
|
433 |
msgid "Role %s does not exists"
|
434 |
msgstr "no existe"
|
435 |
|
436 |
+
#: ../includes/class-ure-lib.php:2052
|
437 |
#, fuzzy, php-format
|
438 |
msgid "Role %s is renamed to %s successfully"
|
439 |
msgstr "El Rol %s fue creado exitosamente"
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:2125
|
442 |
msgid "Error encountered during role delete operation"
|
443 |
msgstr "Un error fue encontrado durante la eliminación del Rol"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:2127
|
446 |
msgid "Unused roles are deleted successfully"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:2129
|
450 |
#, php-format
|
451 |
msgid "Role %s is deleted successfully"
|
452 |
msgstr "El Rol %s fue eliminado exitosamente"
|
453 |
|
454 |
+
#: ../includes/class-ure-lib.php:2154
|
455 |
msgid "Error encountered during default role change operation"
|
456 |
msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
|
457 |
|
458 |
+
#: ../includes/class-ure-lib.php:2160
|
459 |
#, php-format
|
460 |
msgid "Default role for new users is set to %s successfully"
|
461 |
msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
|
462 |
|
463 |
+
#: ../includes/class-ure-lib.php:2179
|
464 |
msgid "Editor"
|
465 |
msgstr "Editor"
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:2180
|
468 |
msgid "Author"
|
469 |
msgstr "Autor"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:2181
|
472 |
msgid "Contributor"
|
473 |
msgstr "Contribuyente"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:2182
|
476 |
msgid "Subscriber"
|
477 |
msgstr "Suscriptor"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:2184
|
480 |
msgid "Switch themes"
|
481 |
msgstr "Cambiar temas (plantillas)"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:2185
|
484 |
msgid "Edit themes"
|
485 |
msgstr "Editar temas (plantillas)"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:2186
|
488 |
msgid "Activate plugins"
|
489 |
msgstr "Activar plugins"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:2187
|
492 |
msgid "Edit plugins"
|
493 |
msgstr "Editar plugins"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:2188
|
496 |
msgid "Edit users"
|
497 |
msgstr "Editar usuarios"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:2189
|
500 |
msgid "Edit files"
|
501 |
msgstr "Editar archivos"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:2190
|
504 |
msgid "Manage options"
|
505 |
msgstr "Administrar opciones"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:2191
|
508 |
msgid "Moderate comments"
|
509 |
msgstr "Moderar comentarios"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:2192
|
512 |
msgid "Manage categories"
|
513 |
msgstr "Administrar categorías"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:2193
|
516 |
msgid "Manage links"
|
517 |
msgstr "Administrar enlaces"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:2194
|
520 |
msgid "Upload files"
|
521 |
msgstr "Subir archivos"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:2195
|
524 |
msgid "Import"
|
525 |
msgstr "Importar"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:2196
|
528 |
msgid "Unfiltered html"
|
529 |
msgstr "HTML sin filtrar"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:2197
|
532 |
msgid "Edit posts"
|
533 |
msgstr "Editar entradas"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:2198
|
536 |
msgid "Edit others posts"
|
537 |
msgstr "Editar entradas ajenas"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:2199
|
540 |
msgid "Edit published posts"
|
541 |
msgstr "Editar entradas publicadas"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:2200
|
544 |
msgid "Publish posts"
|
545 |
msgstr "Publicar entradas"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:2201
|
548 |
msgid "Edit pages"
|
549 |
msgstr "Editar páginas"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:2202
|
552 |
msgid "Read"
|
553 |
msgstr "Leer"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:2203
|
556 |
msgid "Level 10"
|
557 |
msgstr "Nivel 10"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:2204
|
560 |
msgid "Level 9"
|
561 |
msgstr "Nivel 9"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:2205
|
564 |
msgid "Level 8"
|
565 |
msgstr "Nivel 8"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:2206
|
568 |
msgid "Level 7"
|
569 |
msgstr "Nivel 7"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:2207
|
572 |
msgid "Level 6"
|
573 |
msgstr "Nivel 6"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:2208
|
576 |
msgid "Level 5"
|
577 |
msgstr "Nivel 5"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:2209
|
580 |
msgid "Level 4"
|
581 |
msgstr "Nivel 4"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:2210
|
584 |
msgid "Level 3"
|
585 |
msgstr "Nivel 3"
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:2211
|
588 |
msgid "Level 2"
|
589 |
msgstr "Nivel 2"
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:2212
|
592 |
msgid "Level 1"
|
593 |
msgstr "Nivel 1"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:2213
|
596 |
msgid "Level 0"
|
597 |
msgstr "Nivel 0"
|
598 |
|
599 |
+
#: ../includes/class-ure-lib.php:2214
|
600 |
msgid "Edit others pages"
|
601 |
msgstr "Editar páginas ajenas"
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:2215
|
604 |
msgid "Edit published pages"
|
605 |
msgstr "Editar páginas publicadas"
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:2216
|
608 |
msgid "Publish pages"
|
609 |
msgstr "Publicar páginas"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:2217
|
612 |
msgid "Delete pages"
|
613 |
msgstr "Eliminar páginas"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:2218
|
616 |
msgid "Delete others pages"
|
617 |
msgstr "Eliminar páginas ajenas"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:2219
|
620 |
msgid "Delete published pages"
|
621 |
msgstr "Eliminar páginas publicadas"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:2220
|
624 |
msgid "Delete posts"
|
625 |
msgstr "Eliminar entradas"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:2221
|
628 |
msgid "Delete others posts"
|
629 |
msgstr "Eliminar entradas ajenas"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:2222
|
632 |
msgid "Delete published posts"
|
633 |
msgstr "Eliminar entradas publicadas"
|
634 |
|
635 |
+
#: ../includes/class-ure-lib.php:2223
|
636 |
msgid "Delete private posts"
|
637 |
msgstr "Eliminar entradas privadas"
|
638 |
|
639 |
+
#: ../includes/class-ure-lib.php:2224
|
640 |
msgid "Edit private posts"
|
641 |
msgstr "Editar entradas privadas"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:2225
|
644 |
msgid "Read private posts"
|
645 |
msgstr "Leer entradas privadas"
|
646 |
|
647 |
+
#: ../includes/class-ure-lib.php:2226
|
648 |
msgid "Delete private pages"
|
649 |
msgstr "Eliminar páginas privadas"
|
650 |
|
651 |
+
#: ../includes/class-ure-lib.php:2227
|
652 |
msgid "Edit private pages"
|
653 |
msgstr "Editar páginas privadas"
|
654 |
|
655 |
+
#: ../includes/class-ure-lib.php:2228
|
656 |
msgid "Read private pages"
|
657 |
msgstr "Leer páginas privadas"
|
658 |
|
659 |
+
#: ../includes/class-ure-lib.php:2229
|
660 |
msgid "Delete users"
|
661 |
msgstr "Eliminar usuarios"
|
662 |
|
663 |
+
#: ../includes/class-ure-lib.php:2230
|
664 |
msgid "Create users"
|
665 |
msgstr "Crear usuarios"
|
666 |
|
667 |
+
#: ../includes/class-ure-lib.php:2231
|
668 |
msgid "Unfiltered upload"
|
669 |
msgstr "Subir sin filtrado"
|
670 |
|
671 |
+
#: ../includes/class-ure-lib.php:2232
|
672 |
msgid "Edit dashboard"
|
673 |
msgstr "Editar escritorio"
|
674 |
|
675 |
+
#: ../includes/class-ure-lib.php:2233
|
676 |
msgid "Update plugins"
|
677 |
msgstr "Actualizar plugins"
|
678 |
|
679 |
+
#: ../includes/class-ure-lib.php:2234
|
680 |
msgid "Delete plugins"
|
681 |
msgstr "Eliminar plugins"
|
682 |
|
683 |
+
#: ../includes/class-ure-lib.php:2235
|
684 |
msgid "Install plugins"
|
685 |
msgstr "Instalar plugins"
|
686 |
|
687 |
+
#: ../includes/class-ure-lib.php:2236
|
688 |
msgid "Update themes"
|
689 |
msgstr "Actualizar temas (plantillas)"
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:2237
|
692 |
msgid "Install themes"
|
693 |
msgstr "Instalar temas (plantillas)"
|
694 |
|
695 |
+
#: ../includes/class-ure-lib.php:2238
|
696 |
msgid "Update core"
|
697 |
msgstr "Actualizar núcleo"
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2239
|
700 |
msgid "List users"
|
701 |
msgstr "Listar usuarios"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2240
|
704 |
msgid "Remove users"
|
705 |
msgstr "Eliminar usuarios"
|
706 |
|
707 |
+
#: ../includes/class-ure-lib.php:2241
|
708 |
msgid "Add users"
|
709 |
msgstr "Agregar usuarios"
|
710 |
|
711 |
+
#: ../includes/class-ure-lib.php:2242
|
712 |
msgid "Promote users"
|
713 |
msgstr "Promover usuarios"
|
714 |
|
715 |
+
#: ../includes/class-ure-lib.php:2243
|
716 |
msgid "Edit theme options"
|
717 |
msgstr "Editar opciones del tema (plantilla)"
|
718 |
|
719 |
+
#: ../includes/class-ure-lib.php:2244
|
720 |
msgid "Delete themes"
|
721 |
msgstr "Eliminar temas (plantillas)"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2245
|
724 |
msgid "Export"
|
725 |
msgstr "Exportar"
|
726 |
|
727 |
+
#: ../includes/class-ure-lib.php:2358
|
728 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
729 |
msgstr ""
|
730 |
"Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
|
731 |
|
732 |
+
#: ../includes/class-ure-lib.php:2371
|
733 |
#, php-format
|
734 |
msgid "Capability %s is added successfully"
|
735 |
msgstr "La Capacidad %s fue agregada exitosamente"
|
736 |
|
737 |
+
#: ../includes/class-ure-lib.php:2373
|
738 |
#, php-format
|
739 |
msgid "Capability %s exists already"
|
740 |
msgstr "La Capacidad %s ya existe"
|
741 |
|
742 |
+
#: ../includes/class-ure-lib.php:2402
|
743 |
#, php-format
|
744 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
745 |
msgstr ""
|
746 |
"¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
|
747 |
|
748 |
+
#: ../includes/class-ure-lib.php:2421
|
749 |
#, php-format
|
750 |
msgid "Capability %s is removed successfully"
|
751 |
msgstr "La Capacidad %s fue eliminada exitosamente"
|
752 |
|
753 |
+
#: ../includes/class-ure-lib.php:2525
|
754 |
msgid "Version:"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: ../includes/class-ure-lib.php:2526
|
758 |
msgid "Author's website"
|
759 |
msgstr "Sitio web del Autor"
|
760 |
|
761 |
+
#: ../includes/class-ure-lib.php:2527
|
762 |
msgid "Plugin webpage"
|
763 |
msgstr "Página web del Plugin"
|
764 |
|
765 |
+
#: ../includes/class-ure-lib.php:2528
|
766 |
#, fuzzy
|
767 |
msgid "Plugin download"
|
768 |
msgstr "Página web del Plugin"
|
769 |
|
770 |
+
#: ../includes/class-ure-lib.php:2530
|
771 |
msgid "FAQ"
|
772 |
msgstr "FAQ"
|
773 |
|
774 |
+
#: ../includes/class-ure-lib.php:2578
|
775 |
msgid "None"
|
776 |
msgstr "Ninguno"
|
777 |
|
778 |
+
#: ../includes/class-ure-lib.php:2605
|
779 |
msgid "Delete All Unused Roles"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: ../includes/class-ure-lib.php:2629
|
783 |
msgid "— No role for this site —"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: ../includes/ure-user-edit.php:32
|
787 |
msgid "Network Super Admin"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: ../includes/ure-user-edit.php:35
|
791 |
msgid "Change capabilities for user"
|
792 |
msgstr "Cambiar Capacidades para el usuario"
|
793 |
|
794 |
+
#: ../includes/ure-user-edit.php:72
|
795 |
msgid "Primary Role:"
|
796 |
msgstr "Rol Primario:"
|
797 |
|
798 |
+
#: ../includes/ure-user-edit.php:82
|
799 |
msgid "bbPress Role:"
|
800 |
msgstr "Rol de bbPress:"
|
801 |
|
802 |
+
#: ../includes/ure-user-edit.php:92
|
803 |
msgid "Other Roles:"
|
804 |
msgstr "Otros Roles:"
|
805 |
|
825 |
"deprecated capabilities."
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: ../includes/class-ure-screen-help.php:26
|
829 |
+
msgid ""
|
830 |
+
"If turned off - capabilities section of selected user is shown in readonly "
|
831 |
+
"mode. Administrator can not assign capabilities to the user directly. He "
|
832 |
+
"should make it using roles only."
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: ../includes/class-ure-screen-help.php:46
|
836 |
msgid ""
|
837 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
838 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
839 |
"users list with role \"No rights\" at the separate tab then."
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: ../includes/class-ure-screen-help.php:63
|
843 |
msgid "Other default roles for new registered user"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: ../includes/class-ure-screen-help.php:64
|
847 |
msgid ""
|
848 |
"select roles below to assign them to the new user automatically as an "
|
849 |
"addition to the primary role. Note for multisite environment: take into "
|
851 |
"assigned to the new registered users."
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: ../includes/class-ure-screen-help.php:82
|
855 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: ../includes/class-ure-screen-help.php:83
|
859 |
msgid ""
|
860 |
"Super administrator only may create, edit and delete users under WordPress "
|
861 |
"multi-site by default. Turn this option on in order to remove this "
|
lang/ure-fa_IR.mo
CHANGED
Binary file
|
lang/ure-fa_IR.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: Morteza Gholami <Morteza.Gholami@Yahoo.Com>\n"
|
@@ -22,22 +22,22 @@ msgid "User Role Editor - Options"
|
|
22 |
msgstr "ویرایشگر نقش کاربر - تنظیمات"
|
23 |
|
24 |
#: ../includes/settings-template.php:21
|
25 |
-
#: ../includes/class-user-role-editor.php:
|
26 |
msgid "General"
|
27 |
msgstr "عمومی"
|
28 |
|
29 |
#: ../includes/settings-template.php:26
|
30 |
-
#: ../includes/class-user-role-editor.php:
|
31 |
msgid "Additional Modules"
|
32 |
msgstr "ماژولهای اضافی"
|
33 |
|
34 |
#: ../includes/settings-template.php:30
|
35 |
-
#: ../includes/class-user-role-editor.php:
|
36 |
msgid "Default Roles"
|
37 |
msgstr "نقشهای پیشفرض"
|
38 |
|
39 |
#: ../includes/settings-template.php:34
|
40 |
-
#: ../includes/class-user-role-editor.php:
|
41 |
msgid "Multisite"
|
42 |
msgstr "چندسایتی"
|
43 |
|
@@ -56,29 +56,35 @@ msgid "Show capabilities in the human readable form"
|
|
56 |
msgstr "نمایش قابلیتها در حالت قابل خواندن برای انسان"
|
57 |
|
58 |
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
59 |
-
#: ../includes/ure-user-edit.php:
|
60 |
msgid "Show deprecated capabilities"
|
61 |
msgstr "نمایش قابلیتهای بد دانسته شده"
|
62 |
|
63 |
-
#: ../includes/settings-template.php:
|
64 |
-
#: ../includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
msgid "Save"
|
66 |
msgstr "ذخیره"
|
67 |
|
68 |
-
#: ../includes/settings-template.php:
|
69 |
-
#: ../includes/class-ure-screen-help.php:
|
70 |
msgid "Count users without role"
|
71 |
msgstr "شمارش کاربران بدون نقش"
|
72 |
|
73 |
-
#: ../includes/settings-template.php:
|
74 |
msgid "Primary default role: "
|
75 |
msgstr "نقش پیشفرض اولیه: "
|
76 |
|
77 |
-
#: ../includes/settings-template.php:
|
78 |
msgid "Other default roles for new registered user: "
|
79 |
msgstr "دیگر نقشهای پیشفرض برای کاربران تازه ثبتنام شده: "
|
80 |
|
81 |
-
#: ../includes/settings-template.php:
|
82 |
msgid ""
|
83 |
"Note for multisite environment: take into account that other default roles "
|
84 |
"should exist at the site, in order to be assigned to the new registered "
|
@@ -87,145 +93,148 @@ msgstr ""
|
|
87 |
"قابل توجه محیط چند سایتی: رفتن به حسابی که در سایت نقشهای پیش فرض دیگری "
|
88 |
"موجود است، به منظور اختصاص دادن به کاربران تازه ثبتنام شده."
|
89 |
|
90 |
-
#: ../includes/settings-template.php:
|
91 |
msgid "Allow non super administrators to create, edit, and delete users"
|
92 |
msgstr "اجازه به غیر مدیران اصلی برای ایجاد، ویرایش و حذف کاربران"
|
93 |
|
94 |
-
#: ../includes/class-user-role-editor.php:
|
95 |
msgid "Change role for users without role"
|
96 |
msgstr "تغییر نقش برای کاربران بدون نقش"
|
97 |
|
98 |
-
#: ../includes/class-user-role-editor.php:
|
99 |
msgid "No rights"
|
100 |
msgstr "هیچ حقوقی"
|
101 |
|
102 |
-
#: ../includes/class-user-role-editor.php:
|
103 |
msgid "Provide new role"
|
104 |
msgstr "ارائهی نقش جدید"
|
105 |
|
106 |
-
#: ../includes/class-user-role-editor.php:
|
107 |
-
#: ../includes/class-user-role-editor.php:
|
108 |
msgid "You do not have permission to edit this user."
|
109 |
msgstr "شما اجازهی ویرایش این کاربر را ندارید."
|
110 |
|
111 |
-
#: ../includes/class-user-role-editor.php:
|
112 |
msgid "Capabilities"
|
113 |
msgstr "قابلیتها"
|
114 |
|
115 |
-
#: ../includes/class-user-role-editor.php:
|
116 |
msgid "Settings"
|
117 |
msgstr "تنظیمات"
|
118 |
|
119 |
-
#: ../includes/class-user-role-editor.php:
|
120 |
-
#: ../includes/class-ure-lib.php:
|
121 |
msgid "Changelog"
|
122 |
msgstr "گزارش تغییرات"
|
123 |
|
124 |
-
#: ../includes/class-user-role-editor.php:
|
125 |
-
#: ../includes/class-user-role-editor.php:
|
126 |
-
#: ../includes/class-user-role-editor.php:
|
127 |
-
#: ../includes/class-ure-lib.php:
|
128 |
msgid "User Role Editor"
|
129 |
msgstr "ویرایشگر نقش کاربر"
|
130 |
|
131 |
-
#: ../includes/class-user-role-editor.php:
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
-
#: ../includes/class-user-role-editor.php:
|
134 |
msgid "User Role Editor options are updated"
|
135 |
msgstr "تنظیمات ویرایشگر نقش کاربر بروز شد"
|
136 |
|
137 |
-
#: ../includes/class-user-role-editor.php:
|
138 |
msgid "Default Roles are updated"
|
139 |
msgstr "نقشهای پیش فرض بروز شدند"
|
140 |
|
141 |
-
#: ../includes/class-user-role-editor.php:
|
142 |
msgid ""
|
143 |
"You do not have sufficient permissions to manage options for User Role "
|
144 |
"Editor."
|
145 |
msgstr "شما مجوز کافی برای مدیریت تنظیمات ویرایشگر نقش کاربر را ندارید."
|
146 |
|
147 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
148 |
msgid "Insufficient permissions to work with User Role Editor"
|
149 |
msgstr "مجوز ناکافی برای کار با ویرایشگر نقش کاربر"
|
150 |
|
151 |
-
#: ../includes/class-user-role-editor.php:
|
152 |
msgid "Select All"
|
153 |
msgstr "انتخاب همه"
|
154 |
|
155 |
-
#: ../includes/class-user-role-editor.php:
|
156 |
msgid "Unselect All"
|
157 |
msgstr "عدمانتخاب همه"
|
158 |
|
159 |
-
#: ../includes/class-user-role-editor.php:
|
160 |
msgid "Reverse"
|
161 |
msgstr "وارونه"
|
162 |
|
163 |
-
#: ../includes/class-user-role-editor.php:
|
164 |
msgid "Update"
|
165 |
msgstr "بروزرسانی"
|
166 |
|
167 |
-
#: ../includes/class-user-role-editor.php:
|
168 |
msgid "Please confirm permissions update"
|
169 |
msgstr "لطفا مجوز بروزرسانی را تایید کنید"
|
170 |
|
171 |
-
#: ../includes/class-user-role-editor.php:
|
172 |
msgid "Add New Role"
|
173 |
msgstr "افزودن نقش جدید"
|
174 |
|
175 |
-
#: ../includes/class-user-role-editor.php:
|
176 |
-
#: ../includes/class-user-role-editor.php:
|
177 |
#, fuzzy
|
178 |
msgid "Rename Role"
|
179 |
msgstr "حذف نقش"
|
180 |
|
181 |
-
#: ../includes/class-user-role-editor.php:
|
182 |
msgid " Role name (ID) can not be empty!"
|
183 |
msgstr " نام نقش (شناسه) نمی تواند خالی باشد!"
|
184 |
|
185 |
-
#: ../includes/class-user-role-editor.php:
|
186 |
msgid ""
|
187 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
188 |
"only!"
|
189 |
msgstr ""
|
190 |
" نام نقش (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
191 |
|
192 |
-
#: ../includes/class-user-role-editor.php:
|
193 |
msgid ""
|
194 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
195 |
"it."
|
196 |
msgstr ""
|
197 |
" وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه کنید."
|
198 |
|
199 |
-
#: ../includes/class-user-role-editor.php:
|
200 |
msgid "Add Role"
|
201 |
msgstr "افزودن نقش"
|
202 |
|
203 |
-
#: ../includes/class-user-role-editor.php:
|
204 |
msgid "Delete Role"
|
205 |
msgstr "حذف نقش"
|
206 |
|
207 |
-
#: ../includes/class-user-role-editor.php:
|
208 |
msgid "Cancel"
|
209 |
msgstr "لغو"
|
210 |
|
211 |
-
#: ../includes/class-user-role-editor.php:
|
212 |
msgid "Add Capability"
|
213 |
msgstr "افزودن قابلیت"
|
214 |
|
215 |
-
#: ../includes/class-user-role-editor.php:
|
216 |
-
#: ../includes/class-user-role-editor.php:
|
217 |
msgid "Delete Capability"
|
218 |
msgstr "حذف قابلیت"
|
219 |
|
220 |
-
#: ../includes/class-user-role-editor.php:
|
221 |
msgid "Reset"
|
222 |
msgstr "بازنشانی"
|
223 |
|
224 |
-
#: ../includes/class-user-role-editor.php:
|
225 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
226 |
msgstr "خطر! بازنشانی، تنظیمات پیشفرض را از هستهی وردپرس بازمیگرداند."
|
227 |
|
228 |
-
#: ../includes/class-user-role-editor.php:
|
229 |
msgid ""
|
230 |
"If any plugins have changed capabilities in any way upon installation (such "
|
231 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -233,7 +242,7 @@ msgstr ""
|
|
233 |
"اگر هریک از افزونهها پس از نصب به هر نحو قابلیتها را تغییر دهند (مانند "
|
234 |
"S2Member ، WooCommerce و بسیاری دیگر) آن قابلیتها حذف خواهند شد!"
|
235 |
|
236 |
-
#: ../includes/class-user-role-editor.php:
|
237 |
msgid ""
|
238 |
"For more information on how to undo changes and restore plugin capabilities "
|
239 |
"go to"
|
@@ -241,19 +250,19 @@ msgstr ""
|
|
241 |
"برای کسب اطلاعات بیشتر درباره چگونگی خنثیسازی تغییرات و ترمیمکردن قابلیت ها "
|
242 |
"مراجعه کنید به"
|
243 |
|
244 |
-
#: ../includes/class-user-role-editor.php:
|
245 |
msgid "Continue?"
|
246 |
msgstr "ادامه؟"
|
247 |
|
248 |
-
#: ../includes/class-user-role-editor.php:
|
249 |
msgid "Default Role"
|
250 |
msgstr "نقش پیشفرض"
|
251 |
|
252 |
-
#: ../includes/class-user-role-editor.php:
|
253 |
msgid "Set New Default Role"
|
254 |
msgstr "نشاندن نقش پیشفرض جدید"
|
255 |
|
256 |
-
#: ../includes/class-user-role-editor.php:
|
257 |
msgid ""
|
258 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
259 |
"or other custom code"
|
@@ -261,23 +270,23 @@ msgstr ""
|
|
261 |
"اخطار! مراقب باشید - حذف قابلیت مهم میتواند برخی از افزونهها یا دیگر کدهای "
|
262 |
"سفارشی را دچار سانحه کند"
|
263 |
|
264 |
-
#: ../includes/class-user-role-editor.php:
|
265 |
msgid " Capability name (ID) can not be empty!"
|
266 |
msgstr " نام قابلیت (شناسه) نمی تواند خالی باشد!"
|
267 |
|
268 |
-
#: ../includes/class-user-role-editor.php:
|
269 |
msgid ""
|
270 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
271 |
"underscore only!"
|
272 |
msgstr ""
|
273 |
" نام قابلیت (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
274 |
|
275 |
-
#: ../includes/class-user-role-editor.php:
|
276 |
-
#: ../includes/class-user-role-editor.php:
|
277 |
msgid "Other Roles"
|
278 |
msgstr "دیگر نقشها"
|
279 |
|
280 |
-
#: ../includes/class-user-role-editor.php:
|
281 |
msgid "Edit"
|
282 |
msgstr "ویرایش"
|
283 |
|
@@ -285,7 +294,7 @@ msgstr "ویرایش"
|
|
285 |
msgid "Select Role and change its capabilities:"
|
286 |
msgstr "انتخاب نقش و تغییر قابلیتهای آن:"
|
287 |
|
288 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:
|
289 |
msgid "Show capabilities in human readable form"
|
290 |
msgstr "نمایش قابلیتها در حالت قابل خواندن برای انسان"
|
291 |
|
@@ -297,98 +306,98 @@ msgstr "در صورت انتخاب، این عمل به تمامی سایته
|
|
297 |
msgid "Apply to All Sites"
|
298 |
msgstr "اعمال به تمامی سایتها"
|
299 |
|
300 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:
|
301 |
msgid "Core capabilities:"
|
302 |
msgstr "قابلیتهای هسته:"
|
303 |
|
304 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:
|
305 |
msgid "Quick filter:"
|
306 |
msgstr "فیلتر سریع:"
|
307 |
|
308 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:
|
309 |
msgid "Custom capabilities:"
|
310 |
msgstr "قابلیتهای سفارشی:"
|
311 |
|
312 |
-
#: ../includes/class-ure-lib.php:
|
313 |
msgid "Error: wrong request"
|
314 |
msgstr "خطا: درخواست اشتباه"
|
315 |
|
316 |
-
#: ../includes/class-ure-lib.php:
|
317 |
msgid "Role name (ID): "
|
318 |
msgstr "نام نقش (شناسه): "
|
319 |
|
320 |
-
#: ../includes/class-ure-lib.php:
|
321 |
msgid "Display Role Name: "
|
322 |
msgstr "نمایش نام نقش: "
|
323 |
|
324 |
-
#: ../includes/class-ure-lib.php:
|
325 |
msgid "Make copy of: "
|
326 |
msgstr "ایجاد رونوشت از: "
|
327 |
|
328 |
-
#: ../includes/class-ure-lib.php:
|
329 |
msgid "Select Role:"
|
330 |
msgstr "انتخاب نقش:"
|
331 |
|
332 |
-
#: ../includes/class-ure-lib.php:
|
333 |
msgid "Delete:"
|
334 |
msgstr "حذف:"
|
335 |
|
336 |
-
#: ../includes/class-ure-lib.php:
|
337 |
msgid "Capability name (ID): "
|
338 |
msgstr "نام قابلیت (شناسه): "
|
339 |
|
340 |
-
#: ../includes/class-ure-lib.php:
|
341 |
msgid "Error: "
|
342 |
msgstr "خطا: "
|
343 |
|
344 |
-
#: ../includes/class-ure-lib.php:
|
345 |
msgid "Role"
|
346 |
msgstr "نقش"
|
347 |
|
348 |
-
#: ../includes/class-ure-lib.php:
|
349 |
msgid "does not exist"
|
350 |
msgstr "موجود نمیباشد"
|
351 |
|
352 |
-
#: ../includes/class-ure-lib.php:
|
353 |
msgid "Role is updated successfully"
|
354 |
msgstr "نقش با موفقیت بروز شد"
|
355 |
|
356 |
-
#: ../includes/class-ure-lib.php:
|
357 |
msgid "Roles are updated for all network"
|
358 |
msgstr "نقشها برای تمامی شبکه بروز شد"
|
359 |
|
360 |
-
#: ../includes/class-ure-lib.php:
|
361 |
msgid "Error occured during role(s) update"
|
362 |
msgstr "خطایی در هنگام بروزسانی نقش(ها) رخ داد"
|
363 |
|
364 |
-
#: ../includes/class-ure-lib.php:
|
365 |
msgid "User capabilities are updated successfully"
|
366 |
msgstr "قابلیتهای کاربر با موفقیت بروز شدند"
|
367 |
|
368 |
-
#: ../includes/class-ure-lib.php:
|
369 |
msgid "Error occured during user update"
|
370 |
msgstr "خطایی در هنگام بروزرسانی کاربر رخ داد"
|
371 |
|
372 |
-
#: ../includes/class-ure-lib.php:
|
373 |
msgid "User Roles are restored to WordPress default values. "
|
374 |
msgstr "نقشهای کاربر به مقدار پیشفرض وردپرس ترمیم شد."
|
375 |
|
376 |
-
#: ../includes/class-ure-lib.php:
|
377 |
msgid "Help"
|
378 |
msgstr "راهنما"
|
379 |
|
380 |
-
#: ../includes/class-ure-lib.php:
|
381 |
msgid "Error is occur. Please check the log file."
|
382 |
msgstr "خطایی رخ داده است. لطفا فایل گزارش را چک کنید."
|
383 |
|
384 |
-
#: ../includes/class-ure-lib.php:
|
385 |
msgid ""
|
386 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
387 |
"only!"
|
388 |
msgstr ""
|
389 |
"خطا: شناسهی نقش باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
390 |
|
391 |
-
#: ../includes/class-ure-lib.php:
|
392 |
msgid ""
|
393 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
394 |
"characters to it."
|
@@ -396,397 +405,397 @@ msgstr ""
|
|
396 |
"خطا: وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه "
|
397 |
"کنید."
|
398 |
|
399 |
-
#: ../includes/class-ure-lib.php:
|
400 |
#, php-format
|
401 |
msgid "Role %s exists already"
|
402 |
msgstr "نقش %s از پیش موجود است"
|
403 |
|
404 |
-
#: ../includes/class-ure-lib.php:
|
405 |
msgid "Error is encountered during new role create operation"
|
406 |
msgstr "با خطایی در هنگام عملیات ساخت نقش جدید روبرو شدیم"
|
407 |
|
408 |
-
#: ../includes/class-ure-lib.php:
|
409 |
#, php-format
|
410 |
msgid "Role %s is created successfully"
|
411 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
412 |
|
413 |
-
#: ../includes/class-ure-lib.php:
|
414 |
msgid "Error: Role ID is empty!"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: ../includes/class-ure-lib.php:
|
418 |
msgid "Error: Empty role display name is not allowed."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: ../includes/class-ure-lib.php:
|
422 |
#, fuzzy, php-format
|
423 |
msgid "Role %s does not exists"
|
424 |
msgstr "موجود نمیباشد"
|
425 |
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
#, fuzzy, php-format
|
428 |
msgid "Role %s is renamed to %s successfully"
|
429 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
msgid "Error encountered during role delete operation"
|
433 |
msgstr "با خطایی در هنگام عملیات حذف نقش روبرو شدیم"
|
434 |
|
435 |
-
#: ../includes/class-ure-lib.php:
|
436 |
msgid "Unused roles are deleted successfully"
|
437 |
msgstr "نقشهای استفاده نشده با موفقیت حذف شدند"
|
438 |
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
#, php-format
|
441 |
msgid "Role %s is deleted successfully"
|
442 |
msgstr "نقش %s با موفقیت حذف شد"
|
443 |
|
444 |
-
#: ../includes/class-ure-lib.php:
|
445 |
msgid "Error encountered during default role change operation"
|
446 |
msgstr "با خطایی در هنگام عملیات تغییر نقش پیشفرض روبرو شدیم"
|
447 |
|
448 |
-
#: ../includes/class-ure-lib.php:
|
449 |
#, php-format
|
450 |
msgid "Default role for new users is set to %s successfully"
|
451 |
msgstr "نقش پیشفرض برای کاربران جدید با موفقیت روی %s نشانده شد"
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
msgid "Editor"
|
455 |
msgstr "ویرایشگر"
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
msgid "Author"
|
459 |
msgstr "نویسنده"
|
460 |
|
461 |
-
#: ../includes/class-ure-lib.php:
|
462 |
msgid "Contributor"
|
463 |
msgstr "مشارکتکننده"
|
464 |
|
465 |
-
#: ../includes/class-ure-lib.php:
|
466 |
msgid "Subscriber"
|
467 |
msgstr "مشترک"
|
468 |
|
469 |
-
#: ../includes/class-ure-lib.php:
|
470 |
msgid "Switch themes"
|
471 |
msgstr "تغییر پوستهها"
|
472 |
|
473 |
-
#: ../includes/class-ure-lib.php:
|
474 |
msgid "Edit themes"
|
475 |
msgstr "ویرایش پوستهها"
|
476 |
|
477 |
-
#: ../includes/class-ure-lib.php:
|
478 |
msgid "Activate plugins"
|
479 |
msgstr "فعالسازی افزونهها"
|
480 |
|
481 |
-
#: ../includes/class-ure-lib.php:
|
482 |
msgid "Edit plugins"
|
483 |
msgstr "ویرایش افزونهها"
|
484 |
|
485 |
-
#: ../includes/class-ure-lib.php:
|
486 |
msgid "Edit users"
|
487 |
msgstr "ویرایش کاربران"
|
488 |
|
489 |
-
#: ../includes/class-ure-lib.php:
|
490 |
msgid "Edit files"
|
491 |
msgstr "ویرایش فایلها"
|
492 |
|
493 |
-
#: ../includes/class-ure-lib.php:
|
494 |
msgid "Manage options"
|
495 |
msgstr "مدیریت تنظیمات"
|
496 |
|
497 |
-
#: ../includes/class-ure-lib.php:
|
498 |
msgid "Moderate comments"
|
499 |
msgstr "مدیریت دیدگاهها"
|
500 |
|
501 |
-
#: ../includes/class-ure-lib.php:
|
502 |
msgid "Manage categories"
|
503 |
msgstr "مدیریت دستهها"
|
504 |
|
505 |
-
#: ../includes/class-ure-lib.php:
|
506 |
msgid "Manage links"
|
507 |
msgstr "مدیریت پیوندها"
|
508 |
|
509 |
-
#: ../includes/class-ure-lib.php:
|
510 |
msgid "Upload files"
|
511 |
msgstr "بارگذاری فایلها"
|
512 |
|
513 |
-
#: ../includes/class-ure-lib.php:
|
514 |
msgid "Import"
|
515 |
msgstr "درونریزی"
|
516 |
|
517 |
-
#: ../includes/class-ure-lib.php:
|
518 |
msgid "Unfiltered html"
|
519 |
msgstr "اچتیامال فیلترنشده"
|
520 |
|
521 |
-
#: ../includes/class-ure-lib.php:
|
522 |
msgid "Edit posts"
|
523 |
msgstr "ویرایش نوشتهها"
|
524 |
|
525 |
-
#: ../includes/class-ure-lib.php:
|
526 |
msgid "Edit others posts"
|
527 |
msgstr "ویرایش نوشتهی دیگران"
|
528 |
|
529 |
-
#: ../includes/class-ure-lib.php:
|
530 |
msgid "Edit published posts"
|
531 |
msgstr "ویرایش نوشتههای منتشرشده"
|
532 |
|
533 |
-
#: ../includes/class-ure-lib.php:
|
534 |
msgid "Publish posts"
|
535 |
msgstr "انتشار نوشتهها"
|
536 |
|
537 |
-
#: ../includes/class-ure-lib.php:
|
538 |
msgid "Edit pages"
|
539 |
msgstr "ویرایش صفحات"
|
540 |
|
541 |
-
#: ../includes/class-ure-lib.php:
|
542 |
msgid "Read"
|
543 |
msgstr "خواندن"
|
544 |
|
545 |
-
#: ../includes/class-ure-lib.php:
|
546 |
msgid "Level 10"
|
547 |
msgstr "سطح ۱۰"
|
548 |
|
549 |
-
#: ../includes/class-ure-lib.php:
|
550 |
msgid "Level 9"
|
551 |
msgstr "سطح ۹"
|
552 |
|
553 |
-
#: ../includes/class-ure-lib.php:
|
554 |
msgid "Level 8"
|
555 |
msgstr "سطح ۸"
|
556 |
|
557 |
-
#: ../includes/class-ure-lib.php:
|
558 |
msgid "Level 7"
|
559 |
msgstr "سطح ۷"
|
560 |
|
561 |
-
#: ../includes/class-ure-lib.php:
|
562 |
msgid "Level 6"
|
563 |
msgstr "سطح ۶"
|
564 |
|
565 |
-
#: ../includes/class-ure-lib.php:
|
566 |
msgid "Level 5"
|
567 |
msgstr "سطح ۵"
|
568 |
|
569 |
-
#: ../includes/class-ure-lib.php:
|
570 |
msgid "Level 4"
|
571 |
msgstr "سطح ۴"
|
572 |
|
573 |
-
#: ../includes/class-ure-lib.php:
|
574 |
msgid "Level 3"
|
575 |
msgstr "سطح ۳"
|
576 |
|
577 |
-
#: ../includes/class-ure-lib.php:
|
578 |
msgid "Level 2"
|
579 |
msgstr "سطح ۲"
|
580 |
|
581 |
-
#: ../includes/class-ure-lib.php:
|
582 |
msgid "Level 1"
|
583 |
msgstr "سطح ۱"
|
584 |
|
585 |
-
#: ../includes/class-ure-lib.php:
|
586 |
msgid "Level 0"
|
587 |
msgstr "سطح ۰"
|
588 |
|
589 |
-
#: ../includes/class-ure-lib.php:
|
590 |
msgid "Edit others pages"
|
591 |
msgstr "ویرایش صفحات دیگران"
|
592 |
|
593 |
-
#: ../includes/class-ure-lib.php:
|
594 |
msgid "Edit published pages"
|
595 |
msgstr "ویرایش صفحات منتشرشده"
|
596 |
|
597 |
-
#: ../includes/class-ure-lib.php:
|
598 |
msgid "Publish pages"
|
599 |
msgstr "انتشار صفحات"
|
600 |
|
601 |
-
#: ../includes/class-ure-lib.php:
|
602 |
msgid "Delete pages"
|
603 |
msgstr "حذف صفحات"
|
604 |
|
605 |
-
#: ../includes/class-ure-lib.php:
|
606 |
msgid "Delete others pages"
|
607 |
msgstr "حذف صفحات دیگران"
|
608 |
|
609 |
-
#: ../includes/class-ure-lib.php:
|
610 |
msgid "Delete published pages"
|
611 |
msgstr "حذف صفحات منتشرشده"
|
612 |
|
613 |
-
#: ../includes/class-ure-lib.php:
|
614 |
msgid "Delete posts"
|
615 |
msgstr "حذف صفحات"
|
616 |
|
617 |
-
#: ../includes/class-ure-lib.php:
|
618 |
msgid "Delete others posts"
|
619 |
msgstr "حذف نوشتههای دیگران"
|
620 |
|
621 |
-
#: ../includes/class-ure-lib.php:
|
622 |
msgid "Delete published posts"
|
623 |
msgstr "حذف نوشتههای منتشرشده"
|
624 |
|
625 |
-
#: ../includes/class-ure-lib.php:
|
626 |
msgid "Delete private posts"
|
627 |
msgstr "حذف نوشتههای خصوصی"
|
628 |
|
629 |
-
#: ../includes/class-ure-lib.php:
|
630 |
msgid "Edit private posts"
|
631 |
msgstr "ویرایش نوشتههای خصوصی"
|
632 |
|
633 |
-
#: ../includes/class-ure-lib.php:
|
634 |
msgid "Read private posts"
|
635 |
msgstr "خواندن نوشتههای خصوصی"
|
636 |
|
637 |
-
#: ../includes/class-ure-lib.php:
|
638 |
msgid "Delete private pages"
|
639 |
msgstr "حذف صفحات خصوصی"
|
640 |
|
641 |
-
#: ../includes/class-ure-lib.php:
|
642 |
msgid "Edit private pages"
|
643 |
msgstr "ویرایش صفحات خصوصی"
|
644 |
|
645 |
-
#: ../includes/class-ure-lib.php:
|
646 |
msgid "Read private pages"
|
647 |
msgstr "خواندن صفحات خصوصی"
|
648 |
|
649 |
-
#: ../includes/class-ure-lib.php:
|
650 |
msgid "Delete users"
|
651 |
msgstr "حذف کاربران"
|
652 |
|
653 |
-
#: ../includes/class-ure-lib.php:
|
654 |
msgid "Create users"
|
655 |
msgstr "ایجاد کاربران"
|
656 |
|
657 |
-
#: ../includes/class-ure-lib.php:
|
658 |
msgid "Unfiltered upload"
|
659 |
msgstr "بارگذاری فیلترشده"
|
660 |
|
661 |
-
#: ../includes/class-ure-lib.php:
|
662 |
msgid "Edit dashboard"
|
663 |
msgstr "ویرایش پیشخوان"
|
664 |
|
665 |
-
#: ../includes/class-ure-lib.php:
|
666 |
msgid "Update plugins"
|
667 |
msgstr "بروزرسانی افزونهها"
|
668 |
|
669 |
-
#: ../includes/class-ure-lib.php:
|
670 |
msgid "Delete plugins"
|
671 |
msgstr "حذف افزونهها"
|
672 |
|
673 |
-
#: ../includes/class-ure-lib.php:
|
674 |
msgid "Install plugins"
|
675 |
msgstr "نصب افزونهها"
|
676 |
|
677 |
-
#: ../includes/class-ure-lib.php:
|
678 |
msgid "Update themes"
|
679 |
msgstr "بروزرسانی پوستهها"
|
680 |
|
681 |
-
#: ../includes/class-ure-lib.php:
|
682 |
msgid "Install themes"
|
683 |
msgstr "نصب پوستهها"
|
684 |
|
685 |
-
#: ../includes/class-ure-lib.php:
|
686 |
msgid "Update core"
|
687 |
msgstr "بروزرسانی هسته"
|
688 |
|
689 |
-
#: ../includes/class-ure-lib.php:
|
690 |
msgid "List users"
|
691 |
msgstr "فهرست کاربران"
|
692 |
|
693 |
-
#: ../includes/class-ure-lib.php:
|
694 |
msgid "Remove users"
|
695 |
msgstr "حذف کابران"
|
696 |
|
697 |
-
#: ../includes/class-ure-lib.php:
|
698 |
msgid "Add users"
|
699 |
msgstr "افزودن کاربران"
|
700 |
|
701 |
-
#: ../includes/class-ure-lib.php:
|
702 |
msgid "Promote users"
|
703 |
msgstr "ارتقاء کاربران"
|
704 |
|
705 |
-
#: ../includes/class-ure-lib.php:
|
706 |
msgid "Edit theme options"
|
707 |
msgstr "ویرایش تنظیمات پوسته"
|
708 |
|
709 |
-
#: ../includes/class-ure-lib.php:
|
710 |
msgid "Delete themes"
|
711 |
msgstr "حذف پوستهها"
|
712 |
|
713 |
-
#: ../includes/class-ure-lib.php:
|
714 |
msgid "Export"
|
715 |
msgstr "برونریزی"
|
716 |
|
717 |
-
#: ../includes/class-ure-lib.php:
|
718 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
719 |
msgstr "خطا: نام قابلیت باید فقط شامل حروف لاتین و اعداد باشد!"
|
720 |
|
721 |
-
#: ../includes/class-ure-lib.php:
|
722 |
#, php-format
|
723 |
msgid "Capability %s is added successfully"
|
724 |
msgstr "قابلیت %s با موفقیت افزوده شد"
|
725 |
|
726 |
-
#: ../includes/class-ure-lib.php:
|
727 |
#, php-format
|
728 |
msgid "Capability %s exists already"
|
729 |
msgstr "قابلیت %s از پیش موجود است"
|
730 |
|
731 |
-
#: ../includes/class-ure-lib.php:
|
732 |
#, php-format
|
733 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
734 |
msgstr "خطا! شما اجازهی حذف این قابلیت را ندارید: %s!"
|
735 |
|
736 |
-
#: ../includes/class-ure-lib.php:
|
737 |
#, php-format
|
738 |
msgid "Capability %s is removed successfully"
|
739 |
msgstr "قابلیت %s با موفقیت حذف شد"
|
740 |
|
741 |
-
#: ../includes/class-ure-lib.php:
|
742 |
msgid "Version:"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: ../includes/class-ure-lib.php:
|
746 |
msgid "Author's website"
|
747 |
msgstr "وبگاه نویسنده"
|
748 |
|
749 |
-
#: ../includes/class-ure-lib.php:
|
750 |
msgid "Plugin webpage"
|
751 |
msgstr "صفحه افزونه"
|
752 |
|
753 |
-
#: ../includes/class-ure-lib.php:
|
754 |
msgid "Plugin download"
|
755 |
msgstr "بارگیری افزونه"
|
756 |
|
757 |
-
#: ../includes/class-ure-lib.php:
|
758 |
msgid "FAQ"
|
759 |
msgstr "سوالات مکرر"
|
760 |
|
761 |
-
#: ../includes/class-ure-lib.php:
|
762 |
msgid "None"
|
763 |
msgstr "هیچکدام"
|
764 |
|
765 |
-
#: ../includes/class-ure-lib.php:
|
766 |
msgid "Delete All Unused Roles"
|
767 |
msgstr "حذف همهی نقشهای استفادهنشده"
|
768 |
|
769 |
-
#: ../includes/class-ure-lib.php:
|
770 |
msgid "— No role for this site —"
|
771 |
msgstr "— هیچ نقشی برای این سایت —"
|
772 |
|
773 |
-
#: ../includes/ure-user-edit.php:
|
774 |
msgid "Network Super Admin"
|
775 |
msgstr "مدیر اصلی شبکه"
|
776 |
|
777 |
-
#: ../includes/ure-user-edit.php:
|
778 |
msgid "Change capabilities for user"
|
779 |
msgstr "تغییر قابلیتها برای کاربر"
|
780 |
|
781 |
-
#: ../includes/ure-user-edit.php:
|
782 |
msgid "Primary Role:"
|
783 |
msgstr "نقش اولیه:"
|
784 |
|
785 |
-
#: ../includes/ure-user-edit.php:
|
786 |
msgid "bbPress Role:"
|
787 |
msgstr "نقش بیبیپرس:"
|
788 |
|
789 |
-
#: ../includes/ure-user-edit.php:
|
790 |
msgid "Other Roles:"
|
791 |
msgstr "دیگر نقشها:"
|
792 |
|
@@ -822,19 +831,26 @@ msgstr ""
|
|
822 |
"کد افزونهها باقی گذاشته شدهاند. روشن کردن این گزینه، آن قابلیتهای بد دانسته "
|
823 |
"شده را نمایش میدهد."
|
824 |
|
825 |
-
#: ../includes/class-ure-screen-help.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
826 |
msgid ""
|
827 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
828 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
829 |
"users list with role \"No rights\" at the separate tab then."
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: ../includes/class-ure-screen-help.php:
|
833 |
#, fuzzy
|
834 |
msgid "Other default roles for new registered user"
|
835 |
msgstr "دیگر نقشهای پیشفرض برای کاربران تازه ثبتنام شده: "
|
836 |
|
837 |
-
#: ../includes/class-ure-screen-help.php:
|
838 |
#, fuzzy
|
839 |
msgid ""
|
840 |
"select roles below to assign them to the new user automatically as an "
|
@@ -845,12 +861,12 @@ msgstr ""
|
|
845 |
"قابل توجه محیط چند سایتی: رفتن به حسابی که در سایت نقشهای پیش فرض دیگری "
|
846 |
"موجود است، به منظور اختصاص دادن به کاربران تازه ثبتنام شده."
|
847 |
|
848 |
-
#: ../includes/class-ure-screen-help.php:
|
849 |
#, fuzzy
|
850 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
851 |
msgstr "اجازه به غیر مدیران اصلی برای ایجاد، ویرایش و حذف کاربران"
|
852 |
|
853 |
-
#: ../includes/class-ure-screen-help.php:
|
854 |
#, fuzzy
|
855 |
msgid ""
|
856 |
"Super administrator only may create, edit and delete users under WordPress "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-06 11:48+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: Morteza Gholami <Morteza.Gholami@Yahoo.Com>\n"
|
22 |
msgstr "ویرایشگر نقش کاربر - تنظیمات"
|
23 |
|
24 |
#: ../includes/settings-template.php:21
|
25 |
+
#: ../includes/class-user-role-editor.php: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 |
msgid "Default Roles"
|
37 |
msgstr "نقشهای پیشفرض"
|
38 |
|
39 |
#: ../includes/settings-template.php:34
|
40 |
+
#: ../includes/class-user-role-editor.php:609
|
41 |
msgid "Multisite"
|
42 |
msgstr "چندسایتی"
|
43 |
|
56 |
msgstr "نمایش قابلیتها در حالت قابل خواندن برای انسان"
|
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 "نمایش قابلیتهای بد دانسته شده"
|
62 |
|
63 |
+
#: ../includes/settings-template.php:77
|
64 |
+
#: ../includes/class-ure-screen-help.php:25
|
65 |
+
#, fuzzy
|
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 "
|
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:233
|
101 |
msgid "Change role for users without role"
|
102 |
msgstr "تغییر نقش برای کاربران بدون نقش"
|
103 |
|
104 |
+
#: ../includes/class-user-role-editor.php:234
|
105 |
msgid "No rights"
|
106 |
msgstr "هیچ حقوقی"
|
107 |
|
108 |
+
#: ../includes/class-user-role-editor.php:235
|
109 |
msgid "Provide new role"
|
110 |
msgstr "ارائهی نقش جدید"
|
111 |
|
112 |
+
#: ../includes/class-user-role-editor.php:319
|
113 |
+
#: ../includes/class-user-role-editor.php:321
|
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:2529
|
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:1029
|
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:778
|
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:850
|
154 |
+
#: ../includes/class-ure-lib.php:1697 ../includes/class-ure-lib.php:1950
|
155 |
+
#: ../includes/class-ure-lib.php:2066 ../includes/class-ure-lib.php:2114
|
156 |
+
#: ../includes/class-ure-lib.php:2350 ../includes/class-ure-lib.php:2395
|
157 |
msgid "Insufficient permissions to work with User Role Editor"
|
158 |
msgstr "مجوز ناکافی برای کار با ویرایشگر نقش کاربر"
|
159 |
|
160 |
+
#: ../includes/class-user-role-editor.php:976
|
161 |
msgid "Select All"
|
162 |
msgstr "انتخاب همه"
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:977
|
165 |
msgid "Unselect All"
|
166 |
msgstr "عدمانتخاب همه"
|
167 |
|
168 |
+
#: ../includes/class-user-role-editor.php:978
|
169 |
msgid "Reverse"
|
170 |
msgstr "وارونه"
|
171 |
|
172 |
+
#: ../includes/class-user-role-editor.php:979
|
173 |
msgid "Update"
|
174 |
msgstr "بروزرسانی"
|
175 |
|
176 |
+
#: ../includes/class-user-role-editor.php:980
|
177 |
msgid "Please confirm permissions update"
|
178 |
msgstr "لطفا مجوز بروزرسانی را تایید کنید"
|
179 |
|
180 |
+
#: ../includes/class-user-role-editor.php:981
|
181 |
msgid "Add New Role"
|
182 |
msgstr "افزودن نقش جدید"
|
183 |
|
184 |
+
#: ../includes/class-user-role-editor.php:982
|
185 |
+
#: ../includes/class-user-role-editor.php:987
|
186 |
#, fuzzy
|
187 |
msgid "Rename Role"
|
188 |
msgstr "حذف نقش"
|
189 |
|
190 |
+
#: ../includes/class-user-role-editor.php:983
|
191 |
msgid " Role name (ID) can not be empty!"
|
192 |
msgstr " نام نقش (شناسه) نمی تواند خالی باشد!"
|
193 |
|
194 |
+
#: ../includes/class-user-role-editor.php:984
|
195 |
msgid ""
|
196 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
197 |
"only!"
|
198 |
msgstr ""
|
199 |
" نام نقش (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
200 |
|
201 |
+
#: ../includes/class-user-role-editor.php:985
|
202 |
msgid ""
|
203 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
204 |
"it."
|
205 |
msgstr ""
|
206 |
" وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه کنید."
|
207 |
|
208 |
+
#: ../includes/class-user-role-editor.php:986
|
209 |
msgid "Add Role"
|
210 |
msgstr "افزودن نقش"
|
211 |
|
212 |
+
#: ../includes/class-user-role-editor.php:988
|
213 |
msgid "Delete Role"
|
214 |
msgstr "حذف نقش"
|
215 |
|
216 |
+
#: ../includes/class-user-role-editor.php:989
|
217 |
msgid "Cancel"
|
218 |
msgstr "لغو"
|
219 |
|
220 |
+
#: ../includes/class-user-role-editor.php:990
|
221 |
msgid "Add Capability"
|
222 |
msgstr "افزودن قابلیت"
|
223 |
|
224 |
+
#: ../includes/class-user-role-editor.php:991
|
225 |
+
#: ../includes/class-user-role-editor.php:1000
|
226 |
msgid "Delete Capability"
|
227 |
msgstr "حذف قابلیت"
|
228 |
|
229 |
+
#: ../includes/class-user-role-editor.php:992
|
230 |
msgid "Reset"
|
231 |
msgstr "بازنشانی"
|
232 |
|
233 |
+
#: ../includes/class-user-role-editor.php:993
|
234 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
235 |
msgstr "خطر! بازنشانی، تنظیمات پیشفرض را از هستهی وردپرس بازمیگرداند."
|
236 |
|
237 |
+
#: ../includes/class-user-role-editor.php:994
|
238 |
msgid ""
|
239 |
"If any plugins have changed capabilities in any way upon installation (such "
|
240 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
242 |
"اگر هریک از افزونهها پس از نصب به هر نحو قابلیتها را تغییر دهند (مانند "
|
243 |
"S2Member ، WooCommerce و بسیاری دیگر) آن قابلیتها حذف خواهند شد!"
|
244 |
|
245 |
+
#: ../includes/class-user-role-editor.php:995
|
246 |
msgid ""
|
247 |
"For more information on how to undo changes and restore plugin capabilities "
|
248 |
"go to"
|
250 |
"برای کسب اطلاعات بیشتر درباره چگونگی خنثیسازی تغییرات و ترمیمکردن قابلیت ها "
|
251 |
"مراجعه کنید به"
|
252 |
|
253 |
+
#: ../includes/class-user-role-editor.php:997
|
254 |
msgid "Continue?"
|
255 |
msgstr "ادامه؟"
|
256 |
|
257 |
+
#: ../includes/class-user-role-editor.php:998
|
258 |
msgid "Default Role"
|
259 |
msgstr "نقش پیشفرض"
|
260 |
|
261 |
+
#: ../includes/class-user-role-editor.php:999
|
262 |
msgid "Set New Default Role"
|
263 |
msgstr "نشاندن نقش پیشفرض جدید"
|
264 |
|
265 |
+
#: ../includes/class-user-role-editor.php:1001
|
266 |
msgid ""
|
267 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
268 |
"or other custom code"
|
270 |
"اخطار! مراقب باشید - حذف قابلیت مهم میتواند برخی از افزونهها یا دیگر کدهای "
|
271 |
"سفارشی را دچار سانحه کند"
|
272 |
|
273 |
+
#: ../includes/class-user-role-editor.php:1002
|
274 |
msgid " Capability name (ID) can not be empty!"
|
275 |
msgstr " نام قابلیت (شناسه) نمی تواند خالی باشد!"
|
276 |
|
277 |
+
#: ../includes/class-user-role-editor.php:1003
|
278 |
msgid ""
|
279 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
280 |
"underscore only!"
|
281 |
msgstr ""
|
282 |
" نام قابلیت (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
283 |
|
284 |
+
#: ../includes/class-user-role-editor.php:1032
|
285 |
+
#: ../includes/class-user-role-editor.php:1065
|
286 |
msgid "Other Roles"
|
287 |
msgstr "دیگر نقشها"
|
288 |
|
289 |
+
#: ../includes/class-user-role-editor.php:1046
|
290 |
msgid "Edit"
|
291 |
msgstr "ویرایش"
|
292 |
|
294 |
msgid "Select Role and change its capabilities:"
|
295 |
msgstr "انتخاب نقش و تغییر قابلیتهای آن:"
|
296 |
|
297 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
298 |
msgid "Show capabilities in human readable form"
|
299 |
msgstr "نمایش قابلیتها در حالت قابل خواندن برای انسان"
|
300 |
|
306 |
msgid "Apply to All Sites"
|
307 |
msgstr "اعمال به تمامی سایتها"
|
308 |
|
309 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
310 |
msgid "Core capabilities:"
|
311 |
msgstr "قابلیتهای هسته:"
|
312 |
|
313 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
314 |
msgid "Quick filter:"
|
315 |
msgstr "فیلتر سریع:"
|
316 |
|
317 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
318 |
msgid "Custom capabilities:"
|
319 |
msgstr "قابلیتهای سفارشی:"
|
320 |
|
321 |
+
#: ../includes/class-ure-lib.php:245
|
322 |
msgid "Error: wrong request"
|
323 |
msgstr "خطا: درخواست اشتباه"
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:278 ../includes/class-ure-lib.php:289
|
326 |
msgid "Role name (ID): "
|
327 |
msgstr "نام نقش (شناسه): "
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
330 |
msgid "Display Role Name: "
|
331 |
msgstr "نمایش نام نقش: "
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:282
|
334 |
msgid "Make copy of: "
|
335 |
msgstr "ایجاد رونوشت از: "
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:298
|
338 |
msgid "Select Role:"
|
339 |
msgstr "انتخاب نقش:"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:313
|
342 |
msgid "Delete:"
|
343 |
msgstr "حذف:"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:320
|
346 |
msgid "Capability name (ID): "
|
347 |
msgstr "نام قابلیت (شناسه): "
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:434
|
350 |
msgid "Error: "
|
351 |
msgstr "خطا: "
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:434
|
354 |
msgid "Role"
|
355 |
msgstr "نقش"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:435
|
358 |
msgid "does not exist"
|
359 |
msgstr "موجود نمیباشد"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:478
|
362 |
msgid "Role is updated successfully"
|
363 |
msgstr "نقش با موفقیت بروز شد"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:480
|
366 |
msgid "Roles are updated for all network"
|
367 |
msgstr "نقشها برای تمامی شبکه بروز شد"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:486
|
370 |
msgid "Error occured during role(s) update"
|
371 |
msgstr "خطایی در هنگام بروزسانی نقش(ها) رخ داد"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:493
|
374 |
msgid "User capabilities are updated successfully"
|
375 |
msgstr "قابلیتهای کاربر با موفقیت بروز شدند"
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:498
|
378 |
msgid "Error occured during user update"
|
379 |
msgstr "خطایی در هنگام بروزرسانی کاربر رخ داد"
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:556
|
382 |
msgid "User Roles are restored to WordPress default values. "
|
383 |
msgstr "نقشهای کاربر به مقدار پیشفرض وردپرس ترمیم شد."
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:1445
|
386 |
msgid "Help"
|
387 |
msgstr "راهنما"
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:1913
|
390 |
msgid "Error is occur. Please check the log file."
|
391 |
msgstr "خطایی رخ داده است. لطفا فایل گزارش را چک کنید."
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
394 |
msgid ""
|
395 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
396 |
"only!"
|
397 |
msgstr ""
|
398 |
"خطا: شناسهی نقش باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
399 |
|
400 |
+
#: ../includes/class-ure-lib.php:1963 ../includes/class-ure-lib.php:2030
|
401 |
msgid ""
|
402 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
403 |
"characters to it."
|
405 |
"خطا: وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه "
|
406 |
"کنید."
|
407 |
|
408 |
+
#: ../includes/class-ure-lib.php:1978
|
409 |
#, php-format
|
410 |
msgid "Role %s exists already"
|
411 |
msgstr "نقش %s از پیش موجود است"
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:1993
|
414 |
msgid "Error is encountered during new role create operation"
|
415 |
msgstr "با خطایی در هنگام عملیات ساخت نقش جدید روبرو شدیم"
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1995
|
418 |
#, php-format
|
419 |
msgid "Role %s is created successfully"
|
420 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
421 |
|
422 |
+
#: ../includes/class-ure-lib.php:2019
|
423 |
msgid "Error: Role ID is empty!"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: ../includes/class-ure-lib.php:2037
|
427 |
msgid "Error: Empty role display name is not allowed."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: ../includes/class-ure-lib.php:2044
|
431 |
#, fuzzy, php-format
|
432 |
msgid "Role %s does not exists"
|
433 |
msgstr "موجود نمیباشد"
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:2052
|
436 |
#, fuzzy, php-format
|
437 |
msgid "Role %s is renamed to %s successfully"
|
438 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
439 |
|
440 |
+
#: ../includes/class-ure-lib.php:2125
|
441 |
msgid "Error encountered during role delete operation"
|
442 |
msgstr "با خطایی در هنگام عملیات حذف نقش روبرو شدیم"
|
443 |
|
444 |
+
#: ../includes/class-ure-lib.php:2127
|
445 |
msgid "Unused roles are deleted successfully"
|
446 |
msgstr "نقشهای استفاده نشده با موفقیت حذف شدند"
|
447 |
|
448 |
+
#: ../includes/class-ure-lib.php:2129
|
449 |
#, php-format
|
450 |
msgid "Role %s is deleted successfully"
|
451 |
msgstr "نقش %s با موفقیت حذف شد"
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:2154
|
454 |
msgid "Error encountered during default role change operation"
|
455 |
msgstr "با خطایی در هنگام عملیات تغییر نقش پیشفرض روبرو شدیم"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:2160
|
458 |
#, php-format
|
459 |
msgid "Default role for new users is set to %s successfully"
|
460 |
msgstr "نقش پیشفرض برای کاربران جدید با موفقیت روی %s نشانده شد"
|
461 |
|
462 |
+
#: ../includes/class-ure-lib.php:2179
|
463 |
msgid "Editor"
|
464 |
msgstr "ویرایشگر"
|
465 |
|
466 |
+
#: ../includes/class-ure-lib.php:2180
|
467 |
msgid "Author"
|
468 |
msgstr "نویسنده"
|
469 |
|
470 |
+
#: ../includes/class-ure-lib.php:2181
|
471 |
msgid "Contributor"
|
472 |
msgstr "مشارکتکننده"
|
473 |
|
474 |
+
#: ../includes/class-ure-lib.php:2182
|
475 |
msgid "Subscriber"
|
476 |
msgstr "مشترک"
|
477 |
|
478 |
+
#: ../includes/class-ure-lib.php:2184
|
479 |
msgid "Switch themes"
|
480 |
msgstr "تغییر پوستهها"
|
481 |
|
482 |
+
#: ../includes/class-ure-lib.php:2185
|
483 |
msgid "Edit themes"
|
484 |
msgstr "ویرایش پوستهها"
|
485 |
|
486 |
+
#: ../includes/class-ure-lib.php:2186
|
487 |
msgid "Activate plugins"
|
488 |
msgstr "فعالسازی افزونهها"
|
489 |
|
490 |
+
#: ../includes/class-ure-lib.php:2187
|
491 |
msgid "Edit plugins"
|
492 |
msgstr "ویرایش افزونهها"
|
493 |
|
494 |
+
#: ../includes/class-ure-lib.php:2188
|
495 |
msgid "Edit users"
|
496 |
msgstr "ویرایش کاربران"
|
497 |
|
498 |
+
#: ../includes/class-ure-lib.php:2189
|
499 |
msgid "Edit files"
|
500 |
msgstr "ویرایش فایلها"
|
501 |
|
502 |
+
#: ../includes/class-ure-lib.php:2190
|
503 |
msgid "Manage options"
|
504 |
msgstr "مدیریت تنظیمات"
|
505 |
|
506 |
+
#: ../includes/class-ure-lib.php:2191
|
507 |
msgid "Moderate comments"
|
508 |
msgstr "مدیریت دیدگاهها"
|
509 |
|
510 |
+
#: ../includes/class-ure-lib.php:2192
|
511 |
msgid "Manage categories"
|
512 |
msgstr "مدیریت دستهها"
|
513 |
|
514 |
+
#: ../includes/class-ure-lib.php:2193
|
515 |
msgid "Manage links"
|
516 |
msgstr "مدیریت پیوندها"
|
517 |
|
518 |
+
#: ../includes/class-ure-lib.php:2194
|
519 |
msgid "Upload files"
|
520 |
msgstr "بارگذاری فایلها"
|
521 |
|
522 |
+
#: ../includes/class-ure-lib.php:2195
|
523 |
msgid "Import"
|
524 |
msgstr "درونریزی"
|
525 |
|
526 |
+
#: ../includes/class-ure-lib.php:2196
|
527 |
msgid "Unfiltered html"
|
528 |
msgstr "اچتیامال فیلترنشده"
|
529 |
|
530 |
+
#: ../includes/class-ure-lib.php:2197
|
531 |
msgid "Edit posts"
|
532 |
msgstr "ویرایش نوشتهها"
|
533 |
|
534 |
+
#: ../includes/class-ure-lib.php:2198
|
535 |
msgid "Edit others posts"
|
536 |
msgstr "ویرایش نوشتهی دیگران"
|
537 |
|
538 |
+
#: ../includes/class-ure-lib.php:2199
|
539 |
msgid "Edit published posts"
|
540 |
msgstr "ویرایش نوشتههای منتشرشده"
|
541 |
|
542 |
+
#: ../includes/class-ure-lib.php:2200
|
543 |
msgid "Publish posts"
|
544 |
msgstr "انتشار نوشتهها"
|
545 |
|
546 |
+
#: ../includes/class-ure-lib.php:2201
|
547 |
msgid "Edit pages"
|
548 |
msgstr "ویرایش صفحات"
|
549 |
|
550 |
+
#: ../includes/class-ure-lib.php:2202
|
551 |
msgid "Read"
|
552 |
msgstr "خواندن"
|
553 |
|
554 |
+
#: ../includes/class-ure-lib.php:2203
|
555 |
msgid "Level 10"
|
556 |
msgstr "سطح ۱۰"
|
557 |
|
558 |
+
#: ../includes/class-ure-lib.php:2204
|
559 |
msgid "Level 9"
|
560 |
msgstr "سطح ۹"
|
561 |
|
562 |
+
#: ../includes/class-ure-lib.php:2205
|
563 |
msgid "Level 8"
|
564 |
msgstr "سطح ۸"
|
565 |
|
566 |
+
#: ../includes/class-ure-lib.php:2206
|
567 |
msgid "Level 7"
|
568 |
msgstr "سطح ۷"
|
569 |
|
570 |
+
#: ../includes/class-ure-lib.php:2207
|
571 |
msgid "Level 6"
|
572 |
msgstr "سطح ۶"
|
573 |
|
574 |
+
#: ../includes/class-ure-lib.php:2208
|
575 |
msgid "Level 5"
|
576 |
msgstr "سطح ۵"
|
577 |
|
578 |
+
#: ../includes/class-ure-lib.php:2209
|
579 |
msgid "Level 4"
|
580 |
msgstr "سطح ۴"
|
581 |
|
582 |
+
#: ../includes/class-ure-lib.php:2210
|
583 |
msgid "Level 3"
|
584 |
msgstr "سطح ۳"
|
585 |
|
586 |
+
#: ../includes/class-ure-lib.php:2211
|
587 |
msgid "Level 2"
|
588 |
msgstr "سطح ۲"
|
589 |
|
590 |
+
#: ../includes/class-ure-lib.php:2212
|
591 |
msgid "Level 1"
|
592 |
msgstr "سطح ۱"
|
593 |
|
594 |
+
#: ../includes/class-ure-lib.php:2213
|
595 |
msgid "Level 0"
|
596 |
msgstr "سطح ۰"
|
597 |
|
598 |
+
#: ../includes/class-ure-lib.php:2214
|
599 |
msgid "Edit others pages"
|
600 |
msgstr "ویرایش صفحات دیگران"
|
601 |
|
602 |
+
#: ../includes/class-ure-lib.php:2215
|
603 |
msgid "Edit published pages"
|
604 |
msgstr "ویرایش صفحات منتشرشده"
|
605 |
|
606 |
+
#: ../includes/class-ure-lib.php:2216
|
607 |
msgid "Publish pages"
|
608 |
msgstr "انتشار صفحات"
|
609 |
|
610 |
+
#: ../includes/class-ure-lib.php:2217
|
611 |
msgid "Delete pages"
|
612 |
msgstr "حذف صفحات"
|
613 |
|
614 |
+
#: ../includes/class-ure-lib.php:2218
|
615 |
msgid "Delete others pages"
|
616 |
msgstr "حذف صفحات دیگران"
|
617 |
|
618 |
+
#: ../includes/class-ure-lib.php:2219
|
619 |
msgid "Delete published pages"
|
620 |
msgstr "حذف صفحات منتشرشده"
|
621 |
|
622 |
+
#: ../includes/class-ure-lib.php:2220
|
623 |
msgid "Delete posts"
|
624 |
msgstr "حذف صفحات"
|
625 |
|
626 |
+
#: ../includes/class-ure-lib.php:2221
|
627 |
msgid "Delete others posts"
|
628 |
msgstr "حذف نوشتههای دیگران"
|
629 |
|
630 |
+
#: ../includes/class-ure-lib.php:2222
|
631 |
msgid "Delete published posts"
|
632 |
msgstr "حذف نوشتههای منتشرشده"
|
633 |
|
634 |
+
#: ../includes/class-ure-lib.php:2223
|
635 |
msgid "Delete private posts"
|
636 |
msgstr "حذف نوشتههای خصوصی"
|
637 |
|
638 |
+
#: ../includes/class-ure-lib.php:2224
|
639 |
msgid "Edit private posts"
|
640 |
msgstr "ویرایش نوشتههای خصوصی"
|
641 |
|
642 |
+
#: ../includes/class-ure-lib.php:2225
|
643 |
msgid "Read private posts"
|
644 |
msgstr "خواندن نوشتههای خصوصی"
|
645 |
|
646 |
+
#: ../includes/class-ure-lib.php:2226
|
647 |
msgid "Delete private pages"
|
648 |
msgstr "حذف صفحات خصوصی"
|
649 |
|
650 |
+
#: ../includes/class-ure-lib.php:2227
|
651 |
msgid "Edit private pages"
|
652 |
msgstr "ویرایش صفحات خصوصی"
|
653 |
|
654 |
+
#: ../includes/class-ure-lib.php:2228
|
655 |
msgid "Read private pages"
|
656 |
msgstr "خواندن صفحات خصوصی"
|
657 |
|
658 |
+
#: ../includes/class-ure-lib.php:2229
|
659 |
msgid "Delete users"
|
660 |
msgstr "حذف کاربران"
|
661 |
|
662 |
+
#: ../includes/class-ure-lib.php:2230
|
663 |
msgid "Create users"
|
664 |
msgstr "ایجاد کاربران"
|
665 |
|
666 |
+
#: ../includes/class-ure-lib.php:2231
|
667 |
msgid "Unfiltered upload"
|
668 |
msgstr "بارگذاری فیلترشده"
|
669 |
|
670 |
+
#: ../includes/class-ure-lib.php:2232
|
671 |
msgid "Edit dashboard"
|
672 |
msgstr "ویرایش پیشخوان"
|
673 |
|
674 |
+
#: ../includes/class-ure-lib.php:2233
|
675 |
msgid "Update plugins"
|
676 |
msgstr "بروزرسانی افزونهها"
|
677 |
|
678 |
+
#: ../includes/class-ure-lib.php:2234
|
679 |
msgid "Delete plugins"
|
680 |
msgstr "حذف افزونهها"
|
681 |
|
682 |
+
#: ../includes/class-ure-lib.php:2235
|
683 |
msgid "Install plugins"
|
684 |
msgstr "نصب افزونهها"
|
685 |
|
686 |
+
#: ../includes/class-ure-lib.php:2236
|
687 |
msgid "Update themes"
|
688 |
msgstr "بروزرسانی پوستهها"
|
689 |
|
690 |
+
#: ../includes/class-ure-lib.php:2237
|
691 |
msgid "Install themes"
|
692 |
msgstr "نصب پوستهها"
|
693 |
|
694 |
+
#: ../includes/class-ure-lib.php:2238
|
695 |
msgid "Update core"
|
696 |
msgstr "بروزرسانی هسته"
|
697 |
|
698 |
+
#: ../includes/class-ure-lib.php:2239
|
699 |
msgid "List users"
|
700 |
msgstr "فهرست کاربران"
|
701 |
|
702 |
+
#: ../includes/class-ure-lib.php:2240
|
703 |
msgid "Remove users"
|
704 |
msgstr "حذف کابران"
|
705 |
|
706 |
+
#: ../includes/class-ure-lib.php:2241
|
707 |
msgid "Add users"
|
708 |
msgstr "افزودن کاربران"
|
709 |
|
710 |
+
#: ../includes/class-ure-lib.php:2242
|
711 |
msgid "Promote users"
|
712 |
msgstr "ارتقاء کاربران"
|
713 |
|
714 |
+
#: ../includes/class-ure-lib.php:2243
|
715 |
msgid "Edit theme options"
|
716 |
msgstr "ویرایش تنظیمات پوسته"
|
717 |
|
718 |
+
#: ../includes/class-ure-lib.php:2244
|
719 |
msgid "Delete themes"
|
720 |
msgstr "حذف پوستهها"
|
721 |
|
722 |
+
#: ../includes/class-ure-lib.php:2245
|
723 |
msgid "Export"
|
724 |
msgstr "برونریزی"
|
725 |
|
726 |
+
#: ../includes/class-ure-lib.php:2358
|
727 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
728 |
msgstr "خطا: نام قابلیت باید فقط شامل حروف لاتین و اعداد باشد!"
|
729 |
|
730 |
+
#: ../includes/class-ure-lib.php:2371
|
731 |
#, php-format
|
732 |
msgid "Capability %s is added successfully"
|
733 |
msgstr "قابلیت %s با موفقیت افزوده شد"
|
734 |
|
735 |
+
#: ../includes/class-ure-lib.php:2373
|
736 |
#, php-format
|
737 |
msgid "Capability %s exists already"
|
738 |
msgstr "قابلیت %s از پیش موجود است"
|
739 |
|
740 |
+
#: ../includes/class-ure-lib.php:2402
|
741 |
#, php-format
|
742 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
743 |
msgstr "خطا! شما اجازهی حذف این قابلیت را ندارید: %s!"
|
744 |
|
745 |
+
#: ../includes/class-ure-lib.php:2421
|
746 |
#, php-format
|
747 |
msgid "Capability %s is removed successfully"
|
748 |
msgstr "قابلیت %s با موفقیت حذف شد"
|
749 |
|
750 |
+
#: ../includes/class-ure-lib.php:2525
|
751 |
msgid "Version:"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: ../includes/class-ure-lib.php:2526
|
755 |
msgid "Author's website"
|
756 |
msgstr "وبگاه نویسنده"
|
757 |
|
758 |
+
#: ../includes/class-ure-lib.php:2527
|
759 |
msgid "Plugin webpage"
|
760 |
msgstr "صفحه افزونه"
|
761 |
|
762 |
+
#: ../includes/class-ure-lib.php:2528
|
763 |
msgid "Plugin download"
|
764 |
msgstr "بارگیری افزونه"
|
765 |
|
766 |
+
#: ../includes/class-ure-lib.php:2530
|
767 |
msgid "FAQ"
|
768 |
msgstr "سوالات مکرر"
|
769 |
|
770 |
+
#: ../includes/class-ure-lib.php:2578
|
771 |
msgid "None"
|
772 |
msgstr "هیچکدام"
|
773 |
|
774 |
+
#: ../includes/class-ure-lib.php:2605
|
775 |
msgid "Delete All Unused Roles"
|
776 |
msgstr "حذف همهی نقشهای استفادهنشده"
|
777 |
|
778 |
+
#: ../includes/class-ure-lib.php:2629
|
779 |
msgid "— No role for this site —"
|
780 |
msgstr "— هیچ نقشی برای این سایت —"
|
781 |
|
782 |
+
#: ../includes/ure-user-edit.php:32
|
783 |
msgid "Network Super Admin"
|
784 |
msgstr "مدیر اصلی شبکه"
|
785 |
|
786 |
+
#: ../includes/ure-user-edit.php:35
|
787 |
msgid "Change capabilities for user"
|
788 |
msgstr "تغییر قابلیتها برای کاربر"
|
789 |
|
790 |
+
#: ../includes/ure-user-edit.php:72
|
791 |
msgid "Primary Role:"
|
792 |
msgstr "نقش اولیه:"
|
793 |
|
794 |
+
#: ../includes/ure-user-edit.php:82
|
795 |
msgid "bbPress Role:"
|
796 |
msgstr "نقش بیبیپرس:"
|
797 |
|
798 |
+
#: ../includes/ure-user-edit.php:92
|
799 |
msgid "Other Roles:"
|
800 |
msgstr "دیگر نقشها:"
|
801 |
|
831 |
"کد افزونهها باقی گذاشته شدهاند. روشن کردن این گزینه، آن قابلیتهای بد دانسته "
|
832 |
"شده را نمایش میدهد."
|
833 |
|
834 |
+
#: ../includes/class-ure-screen-help.php:26
|
835 |
+
msgid ""
|
836 |
+
"If turned off - capabilities section of selected user is shown in readonly "
|
837 |
+
"mode. Administrator can not assign capabilities to the user directly. He "
|
838 |
+
"should make it using roles only."
|
839 |
+
msgstr ""
|
840 |
+
|
841 |
+
#: ../includes/class-ure-screen-help.php:46
|
842 |
msgid ""
|
843 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
844 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
845 |
"users list with role \"No rights\" at the separate tab then."
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: ../includes/class-ure-screen-help.php:63
|
849 |
#, fuzzy
|
850 |
msgid "Other default roles for new registered user"
|
851 |
msgstr "دیگر نقشهای پیشفرض برای کاربران تازه ثبتنام شده: "
|
852 |
|
853 |
+
#: ../includes/class-ure-screen-help.php:64
|
854 |
#, fuzzy
|
855 |
msgid ""
|
856 |
"select roles below to assign them to the new user automatically as an "
|
861 |
"قابل توجه محیط چند سایتی: رفتن به حسابی که در سایت نقشهای پیش فرض دیگری "
|
862 |
"موجود است، به منظور اختصاص دادن به کاربران تازه ثبتنام شده."
|
863 |
|
864 |
+
#: ../includes/class-ure-screen-help.php:82
|
865 |
#, fuzzy
|
866 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
867 |
msgstr "اجازه به غیر مدیران اصلی برای ایجاد، ویرایش و حذف کاربران"
|
868 |
|
869 |
+
#: ../includes/class-ure-screen-help.php:83
|
870 |
#, fuzzy
|
871 |
msgid ""
|
872 |
"Super administrator only may create, edit and delete users under WordPress "
|
lang/ure-fr_FR.mo
CHANGED
Binary file
|
lang/ure-fr_FR.po
CHANGED
@@ -6,15 +6,15 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: User Role Editor\n"
|
8 |
"Report-Msgid-Bugs-To: \n"
|
9 |
-
"POT-Creation-Date:
|
10 |
-
"PO-Revision-Date:
|
11 |
-
"Last-Translator:
|
12 |
"Language-Team: French (France) (http://www.transifex.com/projects/p/user-"
|
13 |
"role-editor/language/fr_FR/)\n"
|
|
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
-
"Language: fr_FR\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
19 |
"X-Generator: Poedit 1.5.4\n"
|
20 |
"X-Poedit-Basepath: .\n"
|
@@ -27,22 +27,22 @@ 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:
|
31 |
msgid "General"
|
32 |
msgstr "Général"
|
33 |
|
34 |
#: ../includes/settings-template.php:26
|
35 |
-
#: ../includes/class-user-role-editor.php:
|
36 |
msgid "Additional Modules"
|
37 |
msgstr "Modules complémentaires"
|
38 |
|
39 |
#: ../includes/settings-template.php:30
|
40 |
-
#: ../includes/class-user-role-editor.php:
|
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:
|
46 |
msgid "Multisite"
|
47 |
msgstr "Multisite"
|
48 |
|
@@ -61,29 +61,34 @@ 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:
|
65 |
msgid "Show deprecated capabilities"
|
66 |
msgstr "Voir les capacités obsolètes"
|
67 |
|
68 |
-
#: ../includes/settings-template.php:
|
69 |
-
#: ../includes/
|
|
|
|
|
|
|
|
|
|
|
70 |
msgid "Save"
|
71 |
msgstr "Sauvegarder"
|
72 |
|
73 |
-
#: ../includes/settings-template.php:
|
74 |
-
#: ../includes/class-ure-screen-help.php:
|
75 |
msgid "Count users without role"
|
76 |
msgstr "Compter les utilisateurs sans rôle"
|
77 |
|
78 |
-
#: ../includes/settings-template.php:
|
79 |
msgid "Primary default role: "
|
80 |
msgstr "Rôle primaire par défaut : "
|
81 |
|
82 |
-
#: ../includes/settings-template.php:
|
83 |
msgid "Other default roles for new registered user: "
|
84 |
msgstr "Autres rôles par défaut pour les nouveaux utilisateurs enregistrés : "
|
85 |
|
86 |
-
#: ../includes/settings-template.php:
|
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 "
|
@@ -93,61 +98,61 @@ msgstr ""
|
|
93 |
"d'autres rôles par défauts doivent exister sur le site, afin qu'ils soient "
|
94 |
"assignés aux nouveaux utilisateurs enregistrés."
|
95 |
|
96 |
-
#: ../includes/settings-template.php:
|
97 |
msgid "Allow non super administrators to create, edit, and delete users"
|
98 |
msgstr ""
|
99 |
"Autoriser les utilisateurs qui ne sont pas super-administrateurs à créer, "
|
100 |
"modifier ou supprimer des utilisateurs"
|
101 |
|
102 |
-
#: ../includes/class-user-role-editor.php:
|
103 |
msgid "Change role for users without role"
|
104 |
msgstr "Changer le rôle pour les utilisateurs sans rôle"
|
105 |
|
106 |
-
#: ../includes/class-user-role-editor.php:
|
107 |
msgid "No rights"
|
108 |
msgstr "Aucun droit"
|
109 |
|
110 |
-
#: ../includes/class-user-role-editor.php:
|
111 |
msgid "Provide new role"
|
112 |
msgstr "Fournir un nouveau rôle"
|
113 |
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
-
#: ../includes/class-user-role-editor.php:
|
116 |
msgid "You do not have permission to edit this user."
|
117 |
msgstr ""
|
118 |
"Vous n’avez pas l’autorisation de modifier cet utilisateur."
|
119 |
|
120 |
-
#: ../includes/class-user-role-editor.php:
|
121 |
msgid "Capabilities"
|
122 |
msgstr "Capacités"
|
123 |
|
124 |
-
#: ../includes/class-user-role-editor.php:
|
125 |
msgid "Settings"
|
126 |
msgstr "Paramètres"
|
127 |
|
128 |
-
#: ../includes/class-user-role-editor.php:
|
129 |
-
#: ../includes/class-ure-lib.php:
|
130 |
msgid "Changelog"
|
131 |
msgstr "Journal des modifications"
|
132 |
|
133 |
-
#: ../includes/class-user-role-editor.php:
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
-
#: ../includes/class-user-role-editor.php:
|
136 |
-
#: ../includes/class-ure-lib.php:
|
137 |
msgid "User Role Editor"
|
138 |
msgstr "User Role Editor"
|
139 |
|
140 |
-
#: ../includes/class-user-role-editor.php:
|
141 |
-
#: ../includes/class-user-role-editor.php:
|
142 |
-
#: ../includes/class-user-role-editor.php:
|
143 |
msgid "User Role Editor options are updated"
|
144 |
msgstr "Les options de User Role Editor ont été mises à jour"
|
145 |
|
146 |
-
#: ../includes/class-user-role-editor.php:
|
147 |
msgid "Default Roles are updated"
|
148 |
msgstr "Les rôles par défauts ont été mis à jour"
|
149 |
|
150 |
-
#: ../includes/class-user-role-editor.php:
|
151 |
msgid ""
|
152 |
"You do not have sufficient permissions to manage options for User Role "
|
153 |
"Editor."
|
@@ -155,44 +160,47 @@ msgstr ""
|
|
155 |
"Vous n'avez pas les permissions suffisantes pour gérer les options de User "
|
156 |
"Role Editor."
|
157 |
|
158 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
159 |
msgid "Insufficient permissions to work with User Role Editor"
|
160 |
msgstr "Permissions insuffisantes pour travailler avec User Role Editor"
|
161 |
|
162 |
-
#: ../includes/class-user-role-editor.php:
|
163 |
msgid "Select All"
|
164 |
msgstr "Tout sélectionner"
|
165 |
|
166 |
-
#: ../includes/class-user-role-editor.php:
|
167 |
msgid "Unselect All"
|
168 |
msgstr "Tout déselectionner"
|
169 |
|
170 |
-
#: ../includes/class-user-role-editor.php:
|
171 |
msgid "Reverse"
|
172 |
msgstr "Inverser"
|
173 |
|
174 |
-
#: ../includes/class-user-role-editor.php:
|
175 |
msgid "Update"
|
176 |
msgstr "Mettre à jour"
|
177 |
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
msgid "Please confirm permissions update"
|
180 |
msgstr "Merci de confirmer la mise à jour des permissions"
|
181 |
|
182 |
-
#: ../includes/class-user-role-editor.php:
|
183 |
msgid "Add New Role"
|
184 |
msgstr "Ajouter un nouveau rôle"
|
185 |
|
186 |
-
#: ../includes/class-user-role-editor.php:
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
msgid "Rename Role"
|
189 |
msgstr "Renommer le Rôle"
|
190 |
|
191 |
-
#: ../includes/class-user-role-editor.php:
|
192 |
msgid " Role name (ID) can not be empty!"
|
193 |
msgstr "Le nom du rôle (ID) ne peut pas être vide !"
|
194 |
|
195 |
-
#: ../includes/class-user-role-editor.php:
|
196 |
msgid ""
|
197 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
198 |
"only!"
|
@@ -200,7 +208,7 @@ msgstr ""
|
|
200 |
"Le nom du rôle (ID) peut contenir seulement des caractères latin, des "
|
201 |
"chiffres, des traits d'union ou des caractères de soulignement !"
|
202 |
|
203 |
-
#: ../includes/class-user-role-editor.php:
|
204 |
msgid ""
|
205 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
206 |
"it."
|
@@ -208,38 +216,38 @@ msgstr ""
|
|
208 |
"WordPress ne supporte pas les noms de rôle (ID) alphanumériques. Ajouter des "
|
209 |
"caractères latin à celui-ci."
|
210 |
|
211 |
-
#: ../includes/class-user-role-editor.php:
|
212 |
msgid "Add Role"
|
213 |
msgstr "Ajouter un rôle"
|
214 |
|
215 |
-
#: ../includes/class-user-role-editor.php:
|
216 |
msgid "Delete Role"
|
217 |
msgstr "Supprimer un rôle"
|
218 |
|
219 |
-
#: ../includes/class-user-role-editor.php:
|
220 |
msgid "Cancel"
|
221 |
msgstr "Annuler"
|
222 |
|
223 |
-
#: ../includes/class-user-role-editor.php:
|
224 |
msgid "Add Capability"
|
225 |
msgstr "Ajouter la capacité"
|
226 |
|
227 |
-
#: ../includes/class-user-role-editor.php:
|
228 |
-
#: ../includes/class-user-role-editor.php:
|
229 |
msgid "Delete Capability"
|
230 |
msgstr "Supprimer la capacité"
|
231 |
|
232 |
-
#: ../includes/class-user-role-editor.php:
|
233 |
msgid "Reset"
|
234 |
msgstr "Réinitialiser"
|
235 |
|
236 |
-
#: ../includes/class-user-role-editor.php:
|
237 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
238 |
msgstr ""
|
239 |
"DANGER ! La réinitialisation va restaurer les paramètres par défaut du cœur "
|
240 |
"de WordPress."
|
241 |
|
242 |
-
#: ../includes/class-user-role-editor.php:
|
243 |
msgid ""
|
244 |
"If any plugins have changed capabilities in any way upon installation (such "
|
245 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -247,7 +255,7 @@ msgstr ""
|
|
247 |
"Si aucune extension n'a modifié les capacités (comme S2Member ou WooCommerce "
|
248 |
"et bien d'autres), ces capacités seront SUPPRIMÉES ! "
|
249 |
|
250 |
-
#: ../includes/class-user-role-editor.php:
|
251 |
msgid ""
|
252 |
"For more information on how to undo changes and restore plugin capabilities "
|
253 |
"go to"
|
@@ -255,19 +263,19 @@ msgstr ""
|
|
255 |
"Pour de plus amples informations sur la façon d'annuler les modifications et "
|
256 |
"rétablir les fonctions de l'extension, aller sur "
|
257 |
|
258 |
-
#: ../includes/class-user-role-editor.php:
|
259 |
msgid "Continue?"
|
260 |
msgstr "Continuer ?"
|
261 |
|
262 |
-
#: ../includes/class-user-role-editor.php:
|
263 |
msgid "Default Role"
|
264 |
msgstr " Rôle par défaut"
|
265 |
|
266 |
-
#: ../includes/class-user-role-editor.php:
|
267 |
msgid "Set New Default Role"
|
268 |
msgstr "Régler le nouveau rôle par défaut"
|
269 |
|
270 |
-
#: ../includes/class-user-role-editor.php:
|
271 |
msgid ""
|
272 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
273 |
"or other custom code"
|
@@ -275,11 +283,11 @@ msgstr ""
|
|
275 |
"Attention ! Enlever des capacités critiques pourrait faire planter certaines "
|
276 |
"extension ou autres codes personnalisés"
|
277 |
|
278 |
-
#: ../includes/class-user-role-editor.php:
|
279 |
msgid " Capability name (ID) can not be empty!"
|
280 |
msgstr "Le nom de la capacité (ID) ne peut pas être vide !"
|
281 |
|
282 |
-
#: ../includes/class-user-role-editor.php:
|
283 |
msgid ""
|
284 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
285 |
"underscore only!"
|
@@ -287,12 +295,12 @@ msgstr ""
|
|
287 |
"Le nom de la capacité (ID) doit contenir seulement des caractères latins, "
|
288 |
"des chiffres, des traits d'union ou des caractères de soulignement !"
|
289 |
|
290 |
-
#: ../includes/class-user-role-editor.php:
|
291 |
-
#: ../includes/class-user-role-editor.php:
|
292 |
msgid "Other Roles"
|
293 |
msgstr "Autres rôles"
|
294 |
|
295 |
-
#: ../includes/class-user-role-editor.php:
|
296 |
msgid "Edit"
|
297 |
msgstr "Modifier"
|
298 |
|
@@ -300,7 +308,7 @@ msgstr "Modifier"
|
|
300 |
msgid "Select Role and change its capabilities:"
|
301 |
msgstr "Sélectionner un rôle et changer ses capacités : "
|
302 |
|
303 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:
|
304 |
msgid "Show capabilities in human readable form"
|
305 |
msgstr "Montrer les capacités dans une forme lisible par l'homme"
|
306 |
|
@@ -313,93 +321,93 @@ msgstr ""
|
|
313 |
msgid "Apply to All Sites"
|
314 |
msgstr "Appliquer à tous les sites"
|
315 |
|
316 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:
|
317 |
msgid "Core capabilities:"
|
318 |
msgstr "Capacités du core :"
|
319 |
|
320 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:
|
321 |
msgid "Quick filter:"
|
322 |
msgstr "Filtre rapide : "
|
323 |
|
324 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:
|
325 |
msgid "Custom capabilities:"
|
326 |
msgstr "Capacités personnalisées :"
|
327 |
|
328 |
-
#: ../includes/class-ure-lib.php:
|
329 |
msgid "Error: wrong request"
|
330 |
msgstr "Erreur : mauvaise requête"
|
331 |
|
332 |
-
#: ../includes/class-ure-lib.php:
|
333 |
msgid "Role name (ID): "
|
334 |
msgstr "Nom du rôle (ID) :"
|
335 |
|
336 |
-
#: ../includes/class-ure-lib.php:
|
337 |
msgid "Display Role Name: "
|
338 |
msgstr "Afficher le nom du rôle : "
|
339 |
|
340 |
-
#: ../includes/class-ure-lib.php:
|
341 |
msgid "Make copy of: "
|
342 |
msgstr "Faire une copie de : "
|
343 |
|
344 |
-
#: ../includes/class-ure-lib.php:
|
345 |
msgid "Select Role:"
|
346 |
msgstr "Sélectionner le rôle :"
|
347 |
|
348 |
-
#: ../includes/class-ure-lib.php:
|
349 |
msgid "Delete:"
|
350 |
msgstr "Supprimer :"
|
351 |
|
352 |
-
#: ../includes/class-ure-lib.php:
|
353 |
msgid "Capability name (ID): "
|
354 |
msgstr "Nom de la capacité (ID) : "
|
355 |
|
356 |
-
#: ../includes/class-ure-lib.php:
|
357 |
msgid "Error: "
|
358 |
msgstr "Erreur : "
|
359 |
|
360 |
-
#: ../includes/class-ure-lib.php:
|
361 |
msgid "Role"
|
362 |
msgstr "Rôle"
|
363 |
|
364 |
-
#: ../includes/class-ure-lib.php:
|
365 |
msgid "does not exist"
|
366 |
msgstr "N'existe pas"
|
367 |
|
368 |
-
#: ../includes/class-ure-lib.php:
|
369 |
msgid "Role is updated successfully"
|
370 |
msgstr "Le rôle à été bien été mis à jour"
|
371 |
|
372 |
-
#: ../includes/class-ure-lib.php:
|
373 |
msgid "Roles are updated for all network"
|
374 |
msgstr "Les rôles ont été mis à jour sur tous les réseaux"
|
375 |
|
376 |
-
#: ../includes/class-ure-lib.php:
|
377 |
msgid "Error occured during role(s) update"
|
378 |
msgstr "Une erreur est survenue pendant la mise à jour du (des) rôle(s)"
|
379 |
|
380 |
-
#: ../includes/class-ure-lib.php:
|
381 |
msgid "User capabilities are updated successfully"
|
382 |
msgstr "Les capacités de l'utilisateur ont bien été mises à jour"
|
383 |
|
384 |
-
#: ../includes/class-ure-lib.php:
|
385 |
msgid "Error occured during user update"
|
386 |
msgstr "Une erreur est survenue pendant le mise à jour de l'utilisateur"
|
387 |
|
388 |
-
#: ../includes/class-ure-lib.php:
|
389 |
msgid "User Roles are restored to WordPress default values. "
|
390 |
msgstr ""
|
391 |
"Les rôles utilisateurs ont été restaurées selon les valeurs par défauts de "
|
392 |
"WordPress."
|
393 |
|
394 |
-
#: ../includes/class-ure-lib.php:
|
395 |
msgid "Help"
|
396 |
msgstr "Aide"
|
397 |
|
398 |
-
#: ../includes/class-ure-lib.php:
|
399 |
msgid "Error is occur. Please check the log file."
|
400 |
msgstr "Une erreur s'est produite. Merci de vérifier les journaux."
|
401 |
|
402 |
-
#: ../includes/class-ure-lib.php:
|
403 |
msgid ""
|
404 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
405 |
"only!"
|
@@ -407,7 +415,7 @@ msgstr ""
|
|
407 |
"Erreur : L'ID du rôle doit contenir des caractères latins, des chiffres, des "
|
408 |
"traits d'union ou des caractères de soulignement seulement !"
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
msgid ""
|
412 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
413 |
"characters to it."
|
@@ -415,402 +423,402 @@ msgstr ""
|
|
415 |
"Erreur : WordPress ne supporte pas les noms de rôles (ID) numérique. Ajouter "
|
416 |
"des caractères latins à celui-ci."
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
#, php-format
|
420 |
msgid "Role %s exists already"
|
421 |
msgstr "Le rôle %s existe déjà"
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Error is encountered during new role create operation"
|
425 |
msgstr ""
|
426 |
"Une erreur est survenue pendant l'opération de création du nouveau rôle"
|
427 |
|
428 |
-
#: ../includes/class-ure-lib.php:
|
429 |
#, php-format
|
430 |
msgid "Role %s is created successfully"
|
431 |
msgstr "Le rôle %s à bien été créé "
|
432 |
|
433 |
-
#: ../includes/class-ure-lib.php:
|
434 |
msgid "Error: Role ID is empty!"
|
435 |
msgstr "Erreur : L'ID du rôle est vide !"
|
436 |
|
437 |
-
#: ../includes/class-ure-lib.php:
|
438 |
msgid "Error: Empty role display name is not allowed."
|
439 |
msgstr "Erreur : Un nom d'affichage de rôle vide n'est pas autorisé."
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
#, php-format
|
443 |
msgid "Role %s does not exists"
|
444 |
msgstr "Le rôle %s n’existe pas."
|
445 |
|
446 |
-
#: ../includes/class-ure-lib.php:
|
447 |
#, php-format
|
448 |
msgid "Role %s is renamed to %s successfully"
|
449 |
msgstr "Le rôle %s à bien été renommé en %s. "
|
450 |
|
451 |
-
#: ../includes/class-ure-lib.php:
|
452 |
msgid "Error encountered during role delete operation"
|
453 |
msgstr "Une erreur est survenue pendant l'opération de suppression du rôle"
|
454 |
|
455 |
-
#: ../includes/class-ure-lib.php:
|
456 |
msgid "Unused roles are deleted successfully"
|
457 |
msgstr "Les rôles inutilisés ont bien été supprimés"
|
458 |
|
459 |
-
#: ../includes/class-ure-lib.php:
|
460 |
#, php-format
|
461 |
msgid "Role %s is deleted successfully"
|
462 |
msgstr "Le rôle %s à bien été supprimé"
|
463 |
|
464 |
-
#: ../includes/class-ure-lib.php:
|
465 |
msgid "Error encountered during default role change operation"
|
466 |
msgstr ""
|
467 |
"Une erreur est survenue pendant l'opération de changement du rôle par défaut"
|
468 |
|
469 |
-
#: ../includes/class-ure-lib.php:
|
470 |
#, php-format
|
471 |
msgid "Default role for new users is set to %s successfully"
|
472 |
msgstr "Le rôle par défaut pour les nouveaux utilisateur à bien été mis à %s"
|
473 |
|
474 |
-
#: ../includes/class-ure-lib.php:
|
475 |
msgid "Editor"
|
476 |
msgstr "Éditeur"
|
477 |
|
478 |
-
#: ../includes/class-ure-lib.php:
|
479 |
msgid "Author"
|
480 |
msgstr "Auteur"
|
481 |
|
482 |
-
#: ../includes/class-ure-lib.php:
|
483 |
msgid "Contributor"
|
484 |
msgstr "Contributeur"
|
485 |
|
486 |
-
#: ../includes/class-ure-lib.php:
|
487 |
msgid "Subscriber"
|
488 |
msgstr "Abonné"
|
489 |
|
490 |
-
#: ../includes/class-ure-lib.php:
|
491 |
msgid "Switch themes"
|
492 |
msgstr "Changer de thèmes"
|
493 |
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
msgid "Edit themes"
|
496 |
msgstr "Modifier les thèmes"
|
497 |
|
498 |
-
#: ../includes/class-ure-lib.php:
|
499 |
msgid "Activate plugins"
|
500 |
msgstr "Activer les extensions"
|
501 |
|
502 |
-
#: ../includes/class-ure-lib.php:
|
503 |
msgid "Edit plugins"
|
504 |
msgstr "Modifier les extensions"
|
505 |
|
506 |
-
#: ../includes/class-ure-lib.php:
|
507 |
msgid "Edit users"
|
508 |
msgstr "Modifier les utilisateurs"
|
509 |
|
510 |
-
#: ../includes/class-ure-lib.php:
|
511 |
msgid "Edit files"
|
512 |
msgstr "Modifier les fichiers"
|
513 |
|
514 |
-
#: ../includes/class-ure-lib.php:
|
515 |
msgid "Manage options"
|
516 |
msgstr "Gérer les options"
|
517 |
|
518 |
-
#: ../includes/class-ure-lib.php:
|
519 |
msgid "Moderate comments"
|
520 |
msgstr "Modérer les commentaires"
|
521 |
|
522 |
-
#: ../includes/class-ure-lib.php:
|
523 |
msgid "Manage categories"
|
524 |
msgstr "Gérer les catégories"
|
525 |
|
526 |
-
#: ../includes/class-ure-lib.php:
|
527 |
msgid "Manage links"
|
528 |
msgstr "Gérer les liens"
|
529 |
|
530 |
-
#: ../includes/class-ure-lib.php:
|
531 |
msgid "Upload files"
|
532 |
msgstr "Mettre en ligne des fichiers"
|
533 |
|
534 |
-
#: ../includes/class-ure-lib.php:
|
535 |
msgid "Import"
|
536 |
msgstr "Importer"
|
537 |
|
538 |
-
#: ../includes/class-ure-lib.php:
|
539 |
msgid "Unfiltered html"
|
540 |
msgstr "HTML non filtré"
|
541 |
|
542 |
-
#: ../includes/class-ure-lib.php:
|
543 |
msgid "Edit posts"
|
544 |
msgstr "Modifier les articles"
|
545 |
|
546 |
-
#: ../includes/class-ure-lib.php:
|
547 |
msgid "Edit others posts"
|
548 |
msgstr "Modifier les autres billets"
|
549 |
|
550 |
-
#: ../includes/class-ure-lib.php:
|
551 |
msgid "Edit published posts"
|
552 |
msgstr "Modifier les billets publiés "
|
553 |
|
554 |
-
#: ../includes/class-ure-lib.php:
|
555 |
msgid "Publish posts"
|
556 |
msgstr "Publier des articles"
|
557 |
|
558 |
-
#: ../includes/class-ure-lib.php:
|
559 |
msgid "Edit pages"
|
560 |
msgstr "Modifier des pages"
|
561 |
|
562 |
-
#: ../includes/class-ure-lib.php:
|
563 |
msgid "Read"
|
564 |
msgstr "Lire"
|
565 |
|
566 |
-
#: ../includes/class-ure-lib.php:
|
567 |
msgid "Level 10"
|
568 |
msgstr "Niveau 10"
|
569 |
|
570 |
-
#: ../includes/class-ure-lib.php:
|
571 |
msgid "Level 9"
|
572 |
msgstr "Niveau 9"
|
573 |
|
574 |
-
#: ../includes/class-ure-lib.php:
|
575 |
msgid "Level 8"
|
576 |
msgstr "Niveau 8"
|
577 |
|
578 |
-
#: ../includes/class-ure-lib.php:
|
579 |
msgid "Level 7"
|
580 |
msgstr "Niveau 7"
|
581 |
|
582 |
-
#: ../includes/class-ure-lib.php:
|
583 |
msgid "Level 6"
|
584 |
msgstr "Niveau 6"
|
585 |
|
586 |
-
#: ../includes/class-ure-lib.php:
|
587 |
msgid "Level 5"
|
588 |
msgstr "Niveau 5"
|
589 |
|
590 |
-
#: ../includes/class-ure-lib.php:
|
591 |
msgid "Level 4"
|
592 |
msgstr "Niveau 4"
|
593 |
|
594 |
-
#: ../includes/class-ure-lib.php:
|
595 |
msgid "Level 3"
|
596 |
msgstr "Niveau 3"
|
597 |
|
598 |
-
#: ../includes/class-ure-lib.php:
|
599 |
msgid "Level 2"
|
600 |
msgstr "Niveau 2"
|
601 |
|
602 |
-
#: ../includes/class-ure-lib.php:
|
603 |
msgid "Level 1"
|
604 |
msgstr "Niveau 1"
|
605 |
|
606 |
-
#: ../includes/class-ure-lib.php:
|
607 |
msgid "Level 0"
|
608 |
msgstr "Niveau 0"
|
609 |
|
610 |
-
#: ../includes/class-ure-lib.php:
|
611 |
msgid "Edit others pages"
|
612 |
msgstr "Modifier les autres pages"
|
613 |
|
614 |
-
#: ../includes/class-ure-lib.php:
|
615 |
msgid "Edit published pages"
|
616 |
msgstr "Modifier les pages publiées "
|
617 |
|
618 |
-
#: ../includes/class-ure-lib.php:
|
619 |
msgid "Publish pages"
|
620 |
msgstr "Publier les pages"
|
621 |
|
622 |
-
#: ../includes/class-ure-lib.php:
|
623 |
msgid "Delete pages"
|
624 |
msgstr "Supprimer les pages"
|
625 |
|
626 |
-
#: ../includes/class-ure-lib.php:
|
627 |
msgid "Delete others pages"
|
628 |
msgstr "Supprimer les autres pages"
|
629 |
|
630 |
-
#: ../includes/class-ure-lib.php:
|
631 |
msgid "Delete published pages"
|
632 |
msgstr "Supprimer les pages publiées"
|
633 |
|
634 |
-
#: ../includes/class-ure-lib.php:
|
635 |
msgid "Delete posts"
|
636 |
msgstr "Supprimer les articles"
|
637 |
|
638 |
-
#: ../includes/class-ure-lib.php:
|
639 |
msgid "Delete others posts"
|
640 |
msgstr "Supprimer les autres billets"
|
641 |
|
642 |
-
#: ../includes/class-ure-lib.php:
|
643 |
msgid "Delete published posts"
|
644 |
msgstr "Supprimer les billets publiés"
|
645 |
|
646 |
-
#: ../includes/class-ure-lib.php:
|
647 |
msgid "Delete private posts"
|
648 |
msgstr "Supprimer les billets privés"
|
649 |
|
650 |
-
#: ../includes/class-ure-lib.php:
|
651 |
msgid "Edit private posts"
|
652 |
msgstr "Modifier les billets privés"
|
653 |
|
654 |
-
#: ../includes/class-ure-lib.php:
|
655 |
msgid "Read private posts"
|
656 |
msgstr "Lire les billets privés"
|
657 |
|
658 |
-
#: ../includes/class-ure-lib.php:
|
659 |
msgid "Delete private pages"
|
660 |
msgstr "Supprimer les pages privées "
|
661 |
|
662 |
-
#: ../includes/class-ure-lib.php:
|
663 |
msgid "Edit private pages"
|
664 |
msgstr "Modifier les pages privées"
|
665 |
|
666 |
-
#: ../includes/class-ure-lib.php:
|
667 |
msgid "Read private pages"
|
668 |
msgstr "Lire les pages privées"
|
669 |
|
670 |
-
#: ../includes/class-ure-lib.php:
|
671 |
msgid "Delete users"
|
672 |
msgstr "Supprimer les utilisateurs"
|
673 |
|
674 |
-
#: ../includes/class-ure-lib.php:
|
675 |
msgid "Create users"
|
676 |
msgstr "Créer des utilisateurs"
|
677 |
|
678 |
-
#: ../includes/class-ure-lib.php:
|
679 |
msgid "Unfiltered upload"
|
680 |
msgstr "Téléchargement non filtré"
|
681 |
|
682 |
-
#: ../includes/class-ure-lib.php:
|
683 |
msgid "Edit dashboard"
|
684 |
msgstr "Modifier le tableau de bord"
|
685 |
|
686 |
-
#: ../includes/class-ure-lib.php:
|
687 |
msgid "Update plugins"
|
688 |
msgstr "Mettre à jour les extensions"
|
689 |
|
690 |
-
#: ../includes/class-ure-lib.php:
|
691 |
msgid "Delete plugins"
|
692 |
msgstr "Supprimer les extensions"
|
693 |
|
694 |
-
#: ../includes/class-ure-lib.php:
|
695 |
msgid "Install plugins"
|
696 |
msgstr "Installer les extensions"
|
697 |
|
698 |
-
#: ../includes/class-ure-lib.php:
|
699 |
msgid "Update themes"
|
700 |
msgstr "Mettre à jour les thèmes"
|
701 |
|
702 |
-
#: ../includes/class-ure-lib.php:
|
703 |
msgid "Install themes"
|
704 |
msgstr "Installer des thèmes"
|
705 |
|
706 |
-
#: ../includes/class-ure-lib.php:
|
707 |
msgid "Update core"
|
708 |
msgstr "Mettre à jour le cœur"
|
709 |
|
710 |
-
#: ../includes/class-ure-lib.php:
|
711 |
msgid "List users"
|
712 |
msgstr "Lister les utilisateurs"
|
713 |
|
714 |
-
#: ../includes/class-ure-lib.php:
|
715 |
msgid "Remove users"
|
716 |
msgstr "Supprimer des utilisateurs"
|
717 |
|
718 |
-
#: ../includes/class-ure-lib.php:
|
719 |
msgid "Add users"
|
720 |
msgstr "Ajouter les utilisateurs"
|
721 |
|
722 |
-
#: ../includes/class-ure-lib.php:
|
723 |
msgid "Promote users"
|
724 |
msgstr "Promouvoir des utilisateurs"
|
725 |
|
726 |
-
#: ../includes/class-ure-lib.php:
|
727 |
msgid "Edit theme options"
|
728 |
msgstr "Modifier les options du thème"
|
729 |
|
730 |
-
#: ../includes/class-ure-lib.php:
|
731 |
msgid "Delete themes"
|
732 |
msgstr "Supprimer des thèmes"
|
733 |
|
734 |
-
#: ../includes/class-ure-lib.php:
|
735 |
msgid "Export"
|
736 |
msgstr "Exporter"
|
737 |
|
738 |
-
#: ../includes/class-ure-lib.php:
|
739 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
740 |
msgstr ""
|
741 |
"Erreur : Le nom de la capacité doit seulement contenir des caractères latins "
|
742 |
"et des chiffres !"
|
743 |
|
744 |
-
#: ../includes/class-ure-lib.php:
|
745 |
#, php-format
|
746 |
msgid "Capability %s is added successfully"
|
747 |
msgstr "La capacité %s à bien été ajoutée "
|
748 |
|
749 |
-
#: ../includes/class-ure-lib.php:
|
750 |
#, php-format
|
751 |
msgid "Capability %s exists already"
|
752 |
msgstr "La capacité %s existe déjà"
|
753 |
|
754 |
-
#: ../includes/class-ure-lib.php:
|
755 |
#, php-format
|
756 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
757 |
msgstr ""
|
758 |
"Erreur ! Vous n'avez pas la permission de supprimer cette capacité. %s !"
|
759 |
|
760 |
-
#: ../includes/class-ure-lib.php:
|
761 |
#, php-format
|
762 |
msgid "Capability %s is removed successfully"
|
763 |
msgstr "La capacité %s à bien été supprimée "
|
764 |
|
765 |
-
#: ../includes/class-ure-lib.php:
|
766 |
msgid "Version:"
|
767 |
msgstr "Version :"
|
768 |
|
769 |
-
#: ../includes/class-ure-lib.php:
|
770 |
msgid "Author's website"
|
771 |
msgstr "Site internet de l'auteur"
|
772 |
|
773 |
-
#: ../includes/class-ure-lib.php:
|
774 |
msgid "Plugin webpage"
|
775 |
msgstr "Page web de l'extension"
|
776 |
|
777 |
-
#: ../includes/class-ure-lib.php:
|
778 |
msgid "Plugin download"
|
779 |
msgstr "Téléchargement de l'extension"
|
780 |
|
781 |
-
#: ../includes/class-ure-lib.php:
|
782 |
msgid "FAQ"
|
783 |
msgstr "FAQ"
|
784 |
|
785 |
-
#: ../includes/class-ure-lib.php:
|
786 |
msgid "None"
|
787 |
msgstr "Aucun"
|
788 |
|
789 |
-
#: ../includes/class-ure-lib.php:
|
790 |
msgid "Delete All Unused Roles"
|
791 |
msgstr "Supprimer tous les rôles inutilisés "
|
792 |
|
793 |
-
#: ../includes/class-ure-lib.php:
|
794 |
msgid "— No role for this site —"
|
795 |
msgstr "— Pas de rôle sur ce site —"
|
796 |
|
797 |
-
#: ../includes/ure-user-edit.php:
|
798 |
msgid "Network Super Admin"
|
799 |
msgstr "Super Administrateur du réseau"
|
800 |
|
801 |
-
#: ../includes/ure-user-edit.php:
|
802 |
msgid "Change capabilities for user"
|
803 |
msgstr "Changer les capacité pour l'utilisateur"
|
804 |
|
805 |
-
#: ../includes/ure-user-edit.php:
|
806 |
msgid "Primary Role:"
|
807 |
msgstr "Rôle primaire : "
|
808 |
|
809 |
-
#: ../includes/ure-user-edit.php:
|
810 |
msgid "bbPress Role:"
|
811 |
msgstr "Rôle bbPress : "
|
812 |
|
813 |
-
#: ../includes/ure-user-edit.php:
|
814 |
msgid "Other Roles:"
|
815 |
msgstr "Autres rôles :"
|
816 |
|
@@ -846,7 +854,14 @@ msgstr ""
|
|
846 |
"raisons de compatibilité avec les anciens thèmes et extensions. Activer "
|
847 |
"cette option affichera ces capacités dépréciées."
|
848 |
|
849 |
-
#: ../includes/class-ure-screen-help.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
850 |
msgid ""
|
851 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
852 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
@@ -856,11 +871,11 @@ msgstr ""
|
|
856 |
"permet d'attribuer à chacun d'eux un rôle vide « Aucun droit », afin de "
|
857 |
"pouvoir les afficher dans un onglet « Aucun droit » séparé ensuite."
|
858 |
|
859 |
-
#: ../includes/class-ure-screen-help.php:
|
860 |
msgid "Other default roles for new registered user"
|
861 |
msgstr "Autres rôles par défaut pour les nouveaux utilisateurs enregistrés"
|
862 |
|
863 |
-
#: ../includes/class-ure-screen-help.php:
|
864 |
msgid ""
|
865 |
"select roles below to assign them to the new user automatically as an "
|
866 |
"addition to the primary role. Note for multisite environment: take into "
|
@@ -873,13 +888,13 @@ msgstr ""
|
|
873 |
"exister sur le site, afin qu'ils soient assignés aux nouveaux utilisateurs "
|
874 |
"enregistrés."
|
875 |
|
876 |
-
#: ../includes/class-ure-screen-help.php:
|
877 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
878 |
msgstr ""
|
879 |
"Autoriser les utilisateurs qui ne sont pas super-administrateurs à créer, "
|
880 |
"modifier ou supprimer des utilisateurs"
|
881 |
|
882 |
-
#: ../includes/class-ure-screen-help.php:
|
883 |
msgid ""
|
884 |
"Super administrator only may create, edit and delete users under WordPress "
|
885 |
"multi-site by default. Turn this option on in order to remove this "
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: User Role Editor\n"
|
8 |
"Report-Msgid-Bugs-To: \n"
|
9 |
+
"POT-Creation-Date: 2015-02-06 11:48+0700\n"
|
10 |
+
"PO-Revision-Date: 2015-02-06 11:55+0700\n"
|
11 |
+
"Last-Translator: Vladimir Garagulya <support@role-editor.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"
|
15 |
"MIME-Version: 1.0\n"
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
18 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
19 |
"X-Generator: Poedit 1.5.4\n"
|
20 |
"X-Poedit-Basepath: .\n"
|
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 |
|
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 "
|
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:233
|
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:234
|
112 |
msgid "No rights"
|
113 |
msgstr "Aucun droit"
|
114 |
|
115 |
+
#: ../includes/class-user-role-editor.php:235
|
116 |
msgid "Provide new role"
|
117 |
msgstr "Fournir un nouveau rôle"
|
118 |
|
119 |
+
#: ../includes/class-user-role-editor.php:319
|
120 |
+
#: ../includes/class-user-role-editor.php:321
|
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:2529
|
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:1029
|
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:778
|
156 |
msgid ""
|
157 |
"You do not have sufficient permissions to manage options for User Role "
|
158 |
"Editor."
|
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:850
|
164 |
+
#: ../includes/class-ure-lib.php:1697 ../includes/class-ure-lib.php:1950
|
165 |
+
#: ../includes/class-ure-lib.php:2066 ../includes/class-ure-lib.php:2114
|
166 |
+
#: ../includes/class-ure-lib.php:2350 ../includes/class-ure-lib.php:2395
|
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:976
|
171 |
msgid "Select All"
|
172 |
msgstr "Tout sélectionner"
|
173 |
|
174 |
+
#: ../includes/class-user-role-editor.php:977
|
175 |
msgid "Unselect All"
|
176 |
msgstr "Tout déselectionner"
|
177 |
|
178 |
+
#: ../includes/class-user-role-editor.php:978
|
179 |
msgid "Reverse"
|
180 |
msgstr "Inverser"
|
181 |
|
182 |
+
#: ../includes/class-user-role-editor.php:979
|
183 |
msgid "Update"
|
184 |
msgstr "Mettre à jour"
|
185 |
|
186 |
+
#: ../includes/class-user-role-editor.php:980
|
187 |
msgid "Please confirm permissions update"
|
188 |
msgstr "Merci de confirmer la mise à jour des permissions"
|
189 |
|
190 |
+
#: ../includes/class-user-role-editor.php:981
|
191 |
msgid "Add New Role"
|
192 |
msgstr "Ajouter un nouveau rôle"
|
193 |
|
194 |
+
#: ../includes/class-user-role-editor.php:982
|
195 |
+
#: ../includes/class-user-role-editor.php:987
|
196 |
msgid "Rename Role"
|
197 |
msgstr "Renommer le Rôle"
|
198 |
|
199 |
+
#: ../includes/class-user-role-editor.php:983
|
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:984
|
204 |
msgid ""
|
205 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
206 |
"only!"
|
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:985
|
212 |
msgid ""
|
213 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
214 |
"it."
|
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:986
|
220 |
msgid "Add Role"
|
221 |
msgstr "Ajouter un rôle"
|
222 |
|
223 |
+
#: ../includes/class-user-role-editor.php:988
|
224 |
msgid "Delete Role"
|
225 |
msgstr "Supprimer un rôle"
|
226 |
|
227 |
+
#: ../includes/class-user-role-editor.php:989
|
228 |
msgid "Cancel"
|
229 |
msgstr "Annuler"
|
230 |
|
231 |
+
#: ../includes/class-user-role-editor.php:990
|
232 |
msgid "Add Capability"
|
233 |
msgstr "Ajouter la capacité"
|
234 |
|
235 |
+
#: ../includes/class-user-role-editor.php:991
|
236 |
+
#: ../includes/class-user-role-editor.php:1000
|
237 |
msgid "Delete Capability"
|
238 |
msgstr "Supprimer la capacité"
|
239 |
|
240 |
+
#: ../includes/class-user-role-editor.php:992
|
241 |
msgid "Reset"
|
242 |
msgstr "Réinitialiser"
|
243 |
|
244 |
+
#: ../includes/class-user-role-editor.php:993
|
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:994
|
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!"
|
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:995
|
259 |
msgid ""
|
260 |
"For more information on how to undo changes and restore plugin capabilities "
|
261 |
"go to"
|
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:997
|
267 |
msgid "Continue?"
|
268 |
msgstr "Continuer ?"
|
269 |
|
270 |
+
#: ../includes/class-user-role-editor.php:998
|
271 |
msgid "Default Role"
|
272 |
msgstr " Rôle par défaut"
|
273 |
|
274 |
+
#: ../includes/class-user-role-editor.php:999
|
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:1001
|
279 |
msgid ""
|
280 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
281 |
"or other custom code"
|
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:1002
|
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:1003
|
291 |
msgid ""
|
292 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
293 |
"underscore only!"
|
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:1032
|
299 |
+
#: ../includes/class-user-role-editor.php:1065
|
300 |
msgid "Other Roles"
|
301 |
msgstr "Autres rôles"
|
302 |
|
303 |
+
#: ../includes/class-user-role-editor.php:1046
|
304 |
msgid "Edit"
|
305 |
msgstr "Modifier"
|
306 |
|
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 |
|
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:278 ../includes/class-ure-lib.php:289
|
341 |
msgid "Role name (ID): "
|
342 |
msgstr "Nom du rôle (ID) :"
|
343 |
|
344 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
345 |
msgid "Display Role Name: "
|
346 |
msgstr "Afficher le nom du rôle : "
|
347 |
|
348 |
+
#: ../includes/class-ure-lib.php:282
|
349 |
msgid "Make copy of: "
|
350 |
msgstr "Faire une copie de : "
|
351 |
|
352 |
+
#: ../includes/class-ure-lib.php:298
|
353 |
msgid "Select Role:"
|
354 |
msgstr "Sélectionner le rôle :"
|
355 |
|
356 |
+
#: ../includes/class-ure-lib.php:313
|
357 |
msgid "Delete:"
|
358 |
msgstr "Supprimer :"
|
359 |
|
360 |
+
#: ../includes/class-ure-lib.php:320
|
361 |
msgid "Capability name (ID): "
|
362 |
msgstr "Nom de la capacité (ID) : "
|
363 |
|
364 |
+
#: ../includes/class-ure-lib.php:434
|
365 |
msgid "Error: "
|
366 |
msgstr "Erreur : "
|
367 |
|
368 |
+
#: ../includes/class-ure-lib.php:434
|
369 |
msgid "Role"
|
370 |
msgstr "Rôle"
|
371 |
|
372 |
+
#: ../includes/class-ure-lib.php:435
|
373 |
msgid "does not exist"
|
374 |
msgstr "N'existe pas"
|
375 |
|
376 |
+
#: ../includes/class-ure-lib.php:478
|
377 |
msgid "Role is updated successfully"
|
378 |
msgstr "Le rôle à été bien été mis à jour"
|
379 |
|
380 |
+
#: ../includes/class-ure-lib.php:480
|
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:486
|
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:493
|
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:498
|
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:556
|
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:1445
|
403 |
msgid "Help"
|
404 |
msgstr "Aide"
|
405 |
|
406 |
+
#: ../includes/class-ure-lib.php:1913
|
407 |
msgid "Error is occur. Please check the log file."
|
408 |
msgstr "Une erreur s'est produite. Merci de vérifier les journaux."
|
409 |
|
410 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
411 |
msgid ""
|
412 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
413 |
"only!"
|
415 |
"Erreur : L'ID du rôle doit contenir des caractères latins, des chiffres, des "
|
416 |
"traits d'union ou des caractères de soulignement seulement !"
|
417 |
|
418 |
+
#: ../includes/class-ure-lib.php:1963 ../includes/class-ure-lib.php:2030
|
419 |
msgid ""
|
420 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
421 |
"characters to it."
|
423 |
"Erreur : WordPress ne supporte pas les noms de rôles (ID) numérique. Ajouter "
|
424 |
"des caractères latins à celui-ci."
|
425 |
|
426 |
+
#: ../includes/class-ure-lib.php:1978
|
427 |
#, php-format
|
428 |
msgid "Role %s exists already"
|
429 |
msgstr "Le rôle %s existe déjà"
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:1993
|
432 |
msgid "Error is encountered during new role create operation"
|
433 |
msgstr ""
|
434 |
"Une erreur est survenue pendant l'opération de création du nouveau rôle"
|
435 |
|
436 |
+
#: ../includes/class-ure-lib.php:1995
|
437 |
#, php-format
|
438 |
msgid "Role %s is created successfully"
|
439 |
msgstr "Le rôle %s à bien été créé "
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:2019
|
442 |
msgid "Error: Role ID is empty!"
|
443 |
msgstr "Erreur : L'ID du rôle est vide !"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:2037
|
446 |
msgid "Error: Empty role display name is not allowed."
|
447 |
msgstr "Erreur : Un nom d'affichage de rôle vide n'est pas autorisé."
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:2044
|
450 |
#, php-format
|
451 |
msgid "Role %s does not exists"
|
452 |
msgstr "Le rôle %s n’existe pas."
|
453 |
|
454 |
+
#: ../includes/class-ure-lib.php:2052
|
455 |
#, php-format
|
456 |
msgid "Role %s is renamed to %s successfully"
|
457 |
msgstr "Le rôle %s à bien été renommé en %s. "
|
458 |
|
459 |
+
#: ../includes/class-ure-lib.php:2125
|
460 |
msgid "Error encountered during role delete operation"
|
461 |
msgstr "Une erreur est survenue pendant l'opération de suppression du rôle"
|
462 |
|
463 |
+
#: ../includes/class-ure-lib.php:2127
|
464 |
msgid "Unused roles are deleted successfully"
|
465 |
msgstr "Les rôles inutilisés ont bien été supprimés"
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:2129
|
468 |
#, php-format
|
469 |
msgid "Role %s is deleted successfully"
|
470 |
msgstr "Le rôle %s à bien été supprimé"
|
471 |
|
472 |
+
#: ../includes/class-ure-lib.php:2154
|
473 |
msgid "Error encountered during default role change operation"
|
474 |
msgstr ""
|
475 |
"Une erreur est survenue pendant l'opération de changement du rôle par défaut"
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:2160
|
478 |
#, php-format
|
479 |
msgid "Default role for new users is set to %s successfully"
|
480 |
msgstr "Le rôle par défaut pour les nouveaux utilisateur à bien été mis à %s"
|
481 |
|
482 |
+
#: ../includes/class-ure-lib.php:2179
|
483 |
msgid "Editor"
|
484 |
msgstr "Éditeur"
|
485 |
|
486 |
+
#: ../includes/class-ure-lib.php:2180
|
487 |
msgid "Author"
|
488 |
msgstr "Auteur"
|
489 |
|
490 |
+
#: ../includes/class-ure-lib.php:2181
|
491 |
msgid "Contributor"
|
492 |
msgstr "Contributeur"
|
493 |
|
494 |
+
#: ../includes/class-ure-lib.php:2182
|
495 |
msgid "Subscriber"
|
496 |
msgstr "Abonné"
|
497 |
|
498 |
+
#: ../includes/class-ure-lib.php:2184
|
499 |
msgid "Switch themes"
|
500 |
msgstr "Changer de thèmes"
|
501 |
|
502 |
+
#: ../includes/class-ure-lib.php:2185
|
503 |
msgid "Edit themes"
|
504 |
msgstr "Modifier les thèmes"
|
505 |
|
506 |
+
#: ../includes/class-ure-lib.php:2186
|
507 |
msgid "Activate plugins"
|
508 |
msgstr "Activer les extensions"
|
509 |
|
510 |
+
#: ../includes/class-ure-lib.php:2187
|
511 |
msgid "Edit plugins"
|
512 |
msgstr "Modifier les extensions"
|
513 |
|
514 |
+
#: ../includes/class-ure-lib.php:2188
|
515 |
msgid "Edit users"
|
516 |
msgstr "Modifier les utilisateurs"
|
517 |
|
518 |
+
#: ../includes/class-ure-lib.php:2189
|
519 |
msgid "Edit files"
|
520 |
msgstr "Modifier les fichiers"
|
521 |
|
522 |
+
#: ../includes/class-ure-lib.php:2190
|
523 |
msgid "Manage options"
|
524 |
msgstr "Gérer les options"
|
525 |
|
526 |
+
#: ../includes/class-ure-lib.php:2191
|
527 |
msgid "Moderate comments"
|
528 |
msgstr "Modérer les commentaires"
|
529 |
|
530 |
+
#: ../includes/class-ure-lib.php:2192
|
531 |
msgid "Manage categories"
|
532 |
msgstr "Gérer les catégories"
|
533 |
|
534 |
+
#: ../includes/class-ure-lib.php:2193
|
535 |
msgid "Manage links"
|
536 |
msgstr "Gérer les liens"
|
537 |
|
538 |
+
#: ../includes/class-ure-lib.php:2194
|
539 |
msgid "Upload files"
|
540 |
msgstr "Mettre en ligne des fichiers"
|
541 |
|
542 |
+
#: ../includes/class-ure-lib.php:2195
|
543 |
msgid "Import"
|
544 |
msgstr "Importer"
|
545 |
|
546 |
+
#: ../includes/class-ure-lib.php:2196
|
547 |
msgid "Unfiltered html"
|
548 |
msgstr "HTML non filtré"
|
549 |
|
550 |
+
#: ../includes/class-ure-lib.php:2197
|
551 |
msgid "Edit posts"
|
552 |
msgstr "Modifier les articles"
|
553 |
|
554 |
+
#: ../includes/class-ure-lib.php:2198
|
555 |
msgid "Edit others posts"
|
556 |
msgstr "Modifier les autres billets"
|
557 |
|
558 |
+
#: ../includes/class-ure-lib.php:2199
|
559 |
msgid "Edit published posts"
|
560 |
msgstr "Modifier les billets publiés "
|
561 |
|
562 |
+
#: ../includes/class-ure-lib.php:2200
|
563 |
msgid "Publish posts"
|
564 |
msgstr "Publier des articles"
|
565 |
|
566 |
+
#: ../includes/class-ure-lib.php:2201
|
567 |
msgid "Edit pages"
|
568 |
msgstr "Modifier des pages"
|
569 |
|
570 |
+
#: ../includes/class-ure-lib.php:2202
|
571 |
msgid "Read"
|
572 |
msgstr "Lire"
|
573 |
|
574 |
+
#: ../includes/class-ure-lib.php:2203
|
575 |
msgid "Level 10"
|
576 |
msgstr "Niveau 10"
|
577 |
|
578 |
+
#: ../includes/class-ure-lib.php:2204
|
579 |
msgid "Level 9"
|
580 |
msgstr "Niveau 9"
|
581 |
|
582 |
+
#: ../includes/class-ure-lib.php:2205
|
583 |
msgid "Level 8"
|
584 |
msgstr "Niveau 8"
|
585 |
|
586 |
+
#: ../includes/class-ure-lib.php:2206
|
587 |
msgid "Level 7"
|
588 |
msgstr "Niveau 7"
|
589 |
|
590 |
+
#: ../includes/class-ure-lib.php:2207
|
591 |
msgid "Level 6"
|
592 |
msgstr "Niveau 6"
|
593 |
|
594 |
+
#: ../includes/class-ure-lib.php:2208
|
595 |
msgid "Level 5"
|
596 |
msgstr "Niveau 5"
|
597 |
|
598 |
+
#: ../includes/class-ure-lib.php:2209
|
599 |
msgid "Level 4"
|
600 |
msgstr "Niveau 4"
|
601 |
|
602 |
+
#: ../includes/class-ure-lib.php:2210
|
603 |
msgid "Level 3"
|
604 |
msgstr "Niveau 3"
|
605 |
|
606 |
+
#: ../includes/class-ure-lib.php:2211
|
607 |
msgid "Level 2"
|
608 |
msgstr "Niveau 2"
|
609 |
|
610 |
+
#: ../includes/class-ure-lib.php:2212
|
611 |
msgid "Level 1"
|
612 |
msgstr "Niveau 1"
|
613 |
|
614 |
+
#: ../includes/class-ure-lib.php:2213
|
615 |
msgid "Level 0"
|
616 |
msgstr "Niveau 0"
|
617 |
|
618 |
+
#: ../includes/class-ure-lib.php:2214
|
619 |
msgid "Edit others pages"
|
620 |
msgstr "Modifier les autres pages"
|
621 |
|
622 |
+
#: ../includes/class-ure-lib.php:2215
|
623 |
msgid "Edit published pages"
|
624 |
msgstr "Modifier les pages publiées "
|
625 |
|
626 |
+
#: ../includes/class-ure-lib.php:2216
|
627 |
msgid "Publish pages"
|
628 |
msgstr "Publier les pages"
|
629 |
|
630 |
+
#: ../includes/class-ure-lib.php:2217
|
631 |
msgid "Delete pages"
|
632 |
msgstr "Supprimer les pages"
|
633 |
|
634 |
+
#: ../includes/class-ure-lib.php:2218
|
635 |
msgid "Delete others pages"
|
636 |
msgstr "Supprimer les autres pages"
|
637 |
|
638 |
+
#: ../includes/class-ure-lib.php:2219
|
639 |
msgid "Delete published pages"
|
640 |
msgstr "Supprimer les pages publiées"
|
641 |
|
642 |
+
#: ../includes/class-ure-lib.php:2220
|
643 |
msgid "Delete posts"
|
644 |
msgstr "Supprimer les articles"
|
645 |
|
646 |
+
#: ../includes/class-ure-lib.php:2221
|
647 |
msgid "Delete others posts"
|
648 |
msgstr "Supprimer les autres billets"
|
649 |
|
650 |
+
#: ../includes/class-ure-lib.php:2222
|
651 |
msgid "Delete published posts"
|
652 |
msgstr "Supprimer les billets publiés"
|
653 |
|
654 |
+
#: ../includes/class-ure-lib.php:2223
|
655 |
msgid "Delete private posts"
|
656 |
msgstr "Supprimer les billets privés"
|
657 |
|
658 |
+
#: ../includes/class-ure-lib.php:2224
|
659 |
msgid "Edit private posts"
|
660 |
msgstr "Modifier les billets privés"
|
661 |
|
662 |
+
#: ../includes/class-ure-lib.php:2225
|
663 |
msgid "Read private posts"
|
664 |
msgstr "Lire les billets privés"
|
665 |
|
666 |
+
#: ../includes/class-ure-lib.php:2226
|
667 |
msgid "Delete private pages"
|
668 |
msgstr "Supprimer les pages privées "
|
669 |
|
670 |
+
#: ../includes/class-ure-lib.php:2227
|
671 |
msgid "Edit private pages"
|
672 |
msgstr "Modifier les pages privées"
|
673 |
|
674 |
+
#: ../includes/class-ure-lib.php:2228
|
675 |
msgid "Read private pages"
|
676 |
msgstr "Lire les pages privées"
|
677 |
|
678 |
+
#: ../includes/class-ure-lib.php:2229
|
679 |
msgid "Delete users"
|
680 |
msgstr "Supprimer les utilisateurs"
|
681 |
|
682 |
+
#: ../includes/class-ure-lib.php:2230
|
683 |
msgid "Create users"
|
684 |
msgstr "Créer des utilisateurs"
|
685 |
|
686 |
+
#: ../includes/class-ure-lib.php:2231
|
687 |
msgid "Unfiltered upload"
|
688 |
msgstr "Téléchargement non filtré"
|
689 |
|
690 |
+
#: ../includes/class-ure-lib.php:2232
|
691 |
msgid "Edit dashboard"
|
692 |
msgstr "Modifier le tableau de bord"
|
693 |
|
694 |
+
#: ../includes/class-ure-lib.php:2233
|
695 |
msgid "Update plugins"
|
696 |
msgstr "Mettre à jour les extensions"
|
697 |
|
698 |
+
#: ../includes/class-ure-lib.php:2234
|
699 |
msgid "Delete plugins"
|
700 |
msgstr "Supprimer les extensions"
|
701 |
|
702 |
+
#: ../includes/class-ure-lib.php:2235
|
703 |
msgid "Install plugins"
|
704 |
msgstr "Installer les extensions"
|
705 |
|
706 |
+
#: ../includes/class-ure-lib.php:2236
|
707 |
msgid "Update themes"
|
708 |
msgstr "Mettre à jour les thèmes"
|
709 |
|
710 |
+
#: ../includes/class-ure-lib.php:2237
|
711 |
msgid "Install themes"
|
712 |
msgstr "Installer des thèmes"
|
713 |
|
714 |
+
#: ../includes/class-ure-lib.php:2238
|
715 |
msgid "Update core"
|
716 |
msgstr "Mettre à jour le cœur"
|
717 |
|
718 |
+
#: ../includes/class-ure-lib.php:2239
|
719 |
msgid "List users"
|
720 |
msgstr "Lister les utilisateurs"
|
721 |
|
722 |
+
#: ../includes/class-ure-lib.php:2240
|
723 |
msgid "Remove users"
|
724 |
msgstr "Supprimer des utilisateurs"
|
725 |
|
726 |
+
#: ../includes/class-ure-lib.php:2241
|
727 |
msgid "Add users"
|
728 |
msgstr "Ajouter les utilisateurs"
|
729 |
|
730 |
+
#: ../includes/class-ure-lib.php:2242
|
731 |
msgid "Promote users"
|
732 |
msgstr "Promouvoir des utilisateurs"
|
733 |
|
734 |
+
#: ../includes/class-ure-lib.php:2243
|
735 |
msgid "Edit theme options"
|
736 |
msgstr "Modifier les options du thème"
|
737 |
|
738 |
+
#: ../includes/class-ure-lib.php:2244
|
739 |
msgid "Delete themes"
|
740 |
msgstr "Supprimer des thèmes"
|
741 |
|
742 |
+
#: ../includes/class-ure-lib.php:2245
|
743 |
msgid "Export"
|
744 |
msgstr "Exporter"
|
745 |
|
746 |
+
#: ../includes/class-ure-lib.php:2358
|
747 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
748 |
msgstr ""
|
749 |
"Erreur : Le nom de la capacité doit seulement contenir des caractères latins "
|
750 |
"et des chiffres !"
|
751 |
|
752 |
+
#: ../includes/class-ure-lib.php:2371
|
753 |
#, php-format
|
754 |
msgid "Capability %s is added successfully"
|
755 |
msgstr "La capacité %s à bien été ajoutée "
|
756 |
|
757 |
+
#: ../includes/class-ure-lib.php:2373
|
758 |
#, php-format
|
759 |
msgid "Capability %s exists already"
|
760 |
msgstr "La capacité %s existe déjà"
|
761 |
|
762 |
+
#: ../includes/class-ure-lib.php:2402
|
763 |
#, php-format
|
764 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
765 |
msgstr ""
|
766 |
"Erreur ! Vous n'avez pas la permission de supprimer cette capacité. %s !"
|
767 |
|
768 |
+
#: ../includes/class-ure-lib.php:2421
|
769 |
#, php-format
|
770 |
msgid "Capability %s is removed successfully"
|
771 |
msgstr "La capacité %s à bien été supprimée "
|
772 |
|
773 |
+
#: ../includes/class-ure-lib.php:2525
|
774 |
msgid "Version:"
|
775 |
msgstr "Version :"
|
776 |
|
777 |
+
#: ../includes/class-ure-lib.php:2526
|
778 |
msgid "Author's website"
|
779 |
msgstr "Site internet de l'auteur"
|
780 |
|
781 |
+
#: ../includes/class-ure-lib.php:2527
|
782 |
msgid "Plugin webpage"
|
783 |
msgstr "Page web de l'extension"
|
784 |
|
785 |
+
#: ../includes/class-ure-lib.php:2528
|
786 |
msgid "Plugin download"
|
787 |
msgstr "Téléchargement de l'extension"
|
788 |
|
789 |
+
#: ../includes/class-ure-lib.php:2530
|
790 |
msgid "FAQ"
|
791 |
msgstr "FAQ"
|
792 |
|
793 |
+
#: ../includes/class-ure-lib.php:2578
|
794 |
msgid "None"
|
795 |
msgstr "Aucun"
|
796 |
|
797 |
+
#: ../includes/class-ure-lib.php:2605
|
798 |
msgid "Delete All Unused Roles"
|
799 |
msgstr "Supprimer tous les rôles inutilisés "
|
800 |
|
801 |
+
#: ../includes/class-ure-lib.php:2629
|
802 |
msgid "— No role for this site —"
|
803 |
msgstr "— Pas de rôle sur ce site —"
|
804 |
|
805 |
+
#: ../includes/ure-user-edit.php:32
|
806 |
msgid "Network Super Admin"
|
807 |
msgstr "Super Administrateur du réseau"
|
808 |
|
809 |
+
#: ../includes/ure-user-edit.php:35
|
810 |
msgid "Change capabilities for user"
|
811 |
msgstr "Changer les capacité pour l'utilisateur"
|
812 |
|
813 |
+
#: ../includes/ure-user-edit.php:72
|
814 |
msgid "Primary Role:"
|
815 |
msgstr "Rôle primaire : "
|
816 |
|
817 |
+
#: ../includes/ure-user-edit.php:82
|
818 |
msgid "bbPress Role:"
|
819 |
msgstr "Rôle bbPress : "
|
820 |
|
821 |
+
#: ../includes/ure-user-edit.php:92
|
822 |
msgid "Other Roles:"
|
823 |
msgstr "Autres rôles :"
|
824 |
|
854 |
"raisons de compatibilité avec les anciens thèmes et extensions. Activer "
|
855 |
"cette option affichera ces capacités dépréciées."
|
856 |
|
857 |
+
#: ../includes/class-ure-screen-help.php:26
|
858 |
+
msgid ""
|
859 |
+
"If turned off - capabilities section of selected user is shown in readonly "
|
860 |
+
"mode. Administrator can not assign capabilities to the user directly. He "
|
861 |
+
"should make it using roles only."
|
862 |
+
msgstr ""
|
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 "
|
867 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
871 |
"permet d'attribuer à chacun d'eux un rôle vide « Aucun droit », afin de "
|
872 |
"pouvoir les afficher dans un onglet « Aucun droit » séparé ensuite."
|
873 |
|
874 |
+
#: ../includes/class-ure-screen-help.php:63
|
875 |
msgid "Other default roles for new registered user"
|
876 |
msgstr "Autres rôles par défaut pour les nouveaux utilisateurs enregistrés"
|
877 |
|
878 |
+
#: ../includes/class-ure-screen-help.php:64
|
879 |
msgid ""
|
880 |
"select roles below to assign them to the new user automatically as an "
|
881 |
"addition to the primary role. Note for multisite environment: take into "
|
888 |
"exister sur le site, afin qu'ils soient assignés aux nouveaux utilisateurs "
|
889 |
"enregistrés."
|
890 |
|
891 |
+
#: ../includes/class-ure-screen-help.php:82
|
892 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
893 |
msgstr ""
|
894 |
"Autoriser les utilisateurs qui ne sont pas super-administrateurs à créer, "
|
895 |
"modifier ou supprimer des utilisateurs"
|
896 |
|
897 |
+
#: ../includes/class-ure-screen-help.php:83
|
898 |
msgid ""
|
899 |
"Super administrator only may create, edit and delete users under WordPress "
|
900 |
"multi-site by default. Turn this option on in order to remove this "
|
lang/ure-he_IL.mo
CHANGED
Binary file
|
lang/ure-he_IL.po
CHANGED
@@ -5,7 +5,7 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: User Role Editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
-
"POT-Creation-Date:
|
9 |
"PO-Revision-Date: \n"
|
10 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
11 |
"Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
|
@@ -26,12 +26,12 @@ msgid "User Role Editor - Options"
|
|
26 |
msgstr "User Role Editor"
|
27 |
|
28 |
#: ../includes/settings-template.php:21
|
29 |
-
#: ../includes/class-user-role-editor.php:
|
30 |
msgid "General"
|
31 |
msgstr ""
|
32 |
|
33 |
#: ../includes/settings-template.php:26
|
34 |
-
#: ../includes/class-user-role-editor.php:
|
35 |
msgid "Additional Modules"
|
36 |
msgstr ""
|
37 |
|
@@ -40,13 +40,13 @@ msgstr ""
|
|
40 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
41 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
42 |
#: ../includes/settings-template.php:30
|
43 |
-
#: ../includes/class-user-role-editor.php:
|
44 |
#, fuzzy
|
45 |
msgid "Default Roles"
|
46 |
msgstr "תפקיד ברירת מחדל"
|
47 |
|
48 |
#: ../includes/settings-template.php:34
|
49 |
-
#: ../includes/class-user-role-editor.php:
|
50 |
msgid "Multisite"
|
51 |
msgstr ""
|
52 |
|
@@ -77,52 +77,62 @@ msgstr ""
|
|
77 |
# </td>
|
78 |
# wpml-name: 130b09deaec4b13948be95555d546f25
|
79 |
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
80 |
-
#: ../includes/ure-user-edit.php:
|
81 |
msgid "Show deprecated capabilities"
|
82 |
msgstr "הצג הרשאות לפי מספר"
|
83 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
# <p class="submit">
|
85 |
# <input type="submit" class="button-primary" name="user_role_editor_settings_update" value="<?php _e('Save', 'ure') ?>" />
|
86 |
# </p>
|
87 |
# wpml-name: c9cc8cce247e49bae79f15173ce97354
|
88 |
-
#: ../includes/settings-template.php:
|
89 |
-
#: ../includes/settings-template.php:
|
90 |
msgid "Save"
|
91 |
msgstr "שמירה"
|
92 |
|
93 |
-
#: ../includes/settings-template.php:
|
94 |
-
#: ../includes/class-ure-screen-help.php:
|
95 |
msgid "Count users without role"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: ../includes/settings-template.php:
|
99 |
msgid "Primary default role: "
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: ../includes/settings-template.php:
|
103 |
msgid "Other default roles for new registered user: "
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: ../includes/settings-template.php:
|
107 |
msgid ""
|
108 |
"Note for multisite environment: take into account that other default roles "
|
109 |
"should exist at the site, in order to be assigned to the new registered "
|
110 |
"users."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: ../includes/settings-template.php:
|
114 |
msgid "Allow non super administrators to create, edit, and delete users"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: ../includes/class-user-role-editor.php:
|
118 |
msgid "Change role for users without role"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: ../includes/class-user-role-editor.php:
|
122 |
msgid "No rights"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: ../includes/class-user-role-editor.php:
|
126 |
msgid "Provide new role"
|
127 |
msgstr ""
|
128 |
|
@@ -130,8 +140,8 @@ msgstr ""
|
|
130 |
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
131 |
# }
|
132 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
133 |
-
#: ../includes/class-user-role-editor.php:
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
msgid "You do not have permission to edit this user."
|
136 |
msgstr ""
|
137 |
|
@@ -139,7 +149,7 @@ msgstr ""
|
|
139 |
# '">' . __('Capabilities', 'ure') . '</a>';
|
140 |
# }
|
141 |
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
142 |
-
#: ../includes/class-user-role-editor.php:
|
143 |
msgid "Capabilities"
|
144 |
msgstr "יכולות"
|
145 |
|
@@ -147,7 +157,7 @@ msgstr "יכולות"
|
|
147 |
# $settings_link = "<a href='options-general.php?page=settings-".URE_PLUGIN_FILE."'>" . __('Settings', 'ure') . "</a>";
|
148 |
# array_unshift($links, $settings_link);
|
149 |
# wpml-name: f4f70727dc34561dfde1a3c529b6205c
|
150 |
-
#: ../includes/class-user-role-editor.php:
|
151 |
msgid "Settings"
|
152 |
msgstr "הגדרות"
|
153 |
|
@@ -155,8 +165,8 @@ msgstr "הגדרות"
|
|
155 |
# $links[] = '<a target="_blank" href="http://role-editor.com/changelog">' . __('Changelog', 'ure') . '</a>';
|
156 |
# }
|
157 |
# wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
|
158 |
-
#: ../includes/class-user-role-editor.php:
|
159 |
-
#: ../includes/class-ure-lib.php:
|
160 |
msgid "Changelog"
|
161 |
msgstr "יומן שינויים"
|
162 |
|
@@ -164,10 +174,10 @@ msgstr "יומן שינויים"
|
|
164 |
# esc_html__('User Role Editor', 'ure'),
|
165 |
# $this->key_capability, 'settings-'.URE_PLUGIN_FILE, array(&$this, 'settings'));
|
166 |
# wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
|
167 |
-
#: ../includes/class-user-role-editor.php:
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
-
#: ../includes/class-user-role-editor.php:
|
170 |
-
#: ../includes/class-ure-lib.php:
|
171 |
msgid "User Role Editor"
|
172 |
msgstr "User Role Editor"
|
173 |
|
@@ -175,9 +185,9 @@ msgstr "User Role Editor"
|
|
175 |
# $this->lib->show_message(__('User Role Editor options are updated', 'ure'));
|
176 |
# } else { // get options from the options storage
|
177 |
# wpml-name: aef323fbbd25d577170fff17c15cf857
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
-
#: ../includes/class-user-role-editor.php:
|
180 |
-
#: ../includes/class-user-role-editor.php:
|
181 |
msgid "User Role Editor options are updated"
|
182 |
msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
183 |
|
@@ -185,18 +195,21 @@ msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
|
185 |
# 'default_role' => __('Default Role', 'ure'),
|
186 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
187 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
188 |
-
#: ../includes/class-user-role-editor.php:
|
189 |
#, fuzzy
|
190 |
msgid "Default Roles are updated"
|
191 |
msgstr "תפקיד ברירת מחדל"
|
192 |
|
193 |
-
#: ../includes/class-user-role-editor.php:
|
194 |
msgid ""
|
195 |
"You do not have sufficient permissions to manage options for User Role "
|
196 |
"Editor."
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
200 |
msgid "Insufficient permissions to work with User Role Editor"
|
201 |
msgstr ""
|
202 |
|
@@ -204,7 +217,7 @@ msgstr ""
|
|
204 |
# 'select_all' => __('Select All', 'ure'),
|
205 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
206 |
# wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
|
207 |
-
#: ../includes/class-user-role-editor.php:
|
208 |
msgid "Select All"
|
209 |
msgstr "בחירת הכל"
|
210 |
|
@@ -212,7 +225,7 @@ msgstr "בחירת הכל"
|
|
212 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
213 |
# 'reverse' => __('Reverse', 'ure'),
|
214 |
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
215 |
-
#: ../includes/class-user-role-editor.php:
|
216 |
msgid "Unselect All"
|
217 |
msgstr "לא לבחור שום דבר"
|
218 |
|
@@ -220,7 +233,7 @@ msgstr "לא לבחור שום דבר"
|
|
220 |
# 'reverse' => __('Reverse', 'ure'),
|
221 |
# 'update' => __('Update', 'ure'),
|
222 |
# wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
|
223 |
-
#: ../includes/class-user-role-editor.php:
|
224 |
msgid "Reverse"
|
225 |
msgstr "להפוך"
|
226 |
|
@@ -228,7 +241,7 @@ msgstr "להפוך"
|
|
228 |
# 'update' => __('Update', 'ure'),
|
229 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
230 |
# wpml-name: 06933067aafd48425d67bcb01bba5cb6
|
231 |
-
#: ../includes/class-user-role-editor.php:
|
232 |
msgid "Update"
|
233 |
msgstr "עדכן"
|
234 |
|
@@ -236,7 +249,7 @@ msgstr "עדכן"
|
|
236 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
237 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
238 |
# wpml-name: 85251872440cc94c6080a90451e018c4
|
239 |
-
#: ../includes/class-user-role-editor.php:
|
240 |
msgid "Please confirm permissions update"
|
241 |
msgstr "נא לאשר את עדכון ההרשאות"
|
242 |
|
@@ -244,7 +257,7 @@ msgstr "נא לאשר את עדכון ההרשאות"
|
|
244 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
245 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
246 |
# wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
|
247 |
-
#: ../includes/class-user-role-editor.php:
|
248 |
msgid "Add New Role"
|
249 |
msgstr "הוסף סוג משתמש חדש"
|
250 |
|
@@ -252,8 +265,8 @@ msgstr "הוסף סוג משתמש חדש"
|
|
252 |
# 'delete_role' => __('Delete Role', 'ure'),
|
253 |
# 'cancel' => __('Cancel', 'ure'),
|
254 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
255 |
-
#: ../includes/class-user-role-editor.php:
|
256 |
-
#: ../includes/class-user-role-editor.php:
|
257 |
#, fuzzy
|
258 |
msgid "Rename Role"
|
259 |
msgstr "מחיקת סוג משתמש"
|
@@ -262,7 +275,7 @@ msgstr "מחיקת סוג משתמש"
|
|
262 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
263 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
264 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
265 |
-
#: ../includes/class-user-role-editor.php:
|
266 |
msgid " Role name (ID) can not be empty!"
|
267 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
268 |
|
@@ -270,14 +283,14 @@ msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
|
270 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
271 |
# 'add_role' => __('Add Role', 'ure'),
|
272 |
# wpml-name: 7b94f04285f5efc287652bd40338e730
|
273 |
-
#: ../includes/class-user-role-editor.php:
|
274 |
msgid ""
|
275 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
276 |
"only!"
|
277 |
msgstr ""
|
278 |
" שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
279 |
|
280 |
-
#: ../includes/class-user-role-editor.php:
|
281 |
msgid ""
|
282 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
283 |
"it."
|
@@ -287,7 +300,7 @@ msgstr ""
|
|
287 |
# 'add_role' => __('Add Role', 'ure'),
|
288 |
# 'delete_role' => __('Delete Role', 'ure'),
|
289 |
# wpml-name: 1453b39dcc15a372640d960c6db7db25
|
290 |
-
#: ../includes/class-user-role-editor.php:
|
291 |
msgid "Add Role"
|
292 |
msgstr "הוספת תפקיד"
|
293 |
|
@@ -295,7 +308,7 @@ msgstr "הוספת תפקיד"
|
|
295 |
# 'delete_role' => __('Delete Role', 'ure'),
|
296 |
# 'cancel' => __('Cancel', 'ure'),
|
297 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
298 |
-
#: ../includes/class-user-role-editor.php:
|
299 |
msgid "Delete Role"
|
300 |
msgstr "מחיקת סוג משתמש"
|
301 |
|
@@ -303,7 +316,7 @@ msgstr "מחיקת סוג משתמש"
|
|
303 |
# 'cancel' => __('Cancel', 'ure'),
|
304 |
# 'add_capability' => __('Add Capability', 'ure'),
|
305 |
# wpml-name: ea4788705e6873b424c65e91c2846b19
|
306 |
-
#: ../includes/class-user-role-editor.php:
|
307 |
msgid "Cancel"
|
308 |
msgstr "ביטול"
|
309 |
|
@@ -311,7 +324,7 @@ msgstr "ביטול"
|
|
311 |
# 'add_capability' => __('Add Capability', 'ure'),
|
312 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
313 |
# wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
|
314 |
-
#: ../includes/class-user-role-editor.php:
|
315 |
msgid "Add Capability"
|
316 |
msgstr "הוספת יכולת"
|
317 |
|
@@ -319,8 +332,8 @@ msgstr "הוספת יכולת"
|
|
319 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
320 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
321 |
# wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
|
322 |
-
#: ../includes/class-user-role-editor.php:
|
323 |
-
#: ../includes/class-user-role-editor.php:
|
324 |
msgid "Delete Capability"
|
325 |
msgstr "מחיקת יכולת"
|
326 |
|
@@ -328,21 +341,21 @@ msgstr "מחיקת יכולת"
|
|
328 |
# 'reset' => __('Reset', 'ure'),
|
329 |
# 'reset_warning' => __('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation could be needed. Continue?', 'ure'),
|
330 |
# wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
|
331 |
-
#: ../includes/class-user-role-editor.php:
|
332 |
msgid "Reset"
|
333 |
msgstr "איפוס"
|
334 |
|
335 |
-
#: ../includes/class-user-role-editor.php:
|
336 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: ../includes/class-user-role-editor.php:
|
340 |
msgid ""
|
341 |
"If any plugins have changed capabilities in any way upon installation (such "
|
342 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: ../includes/class-user-role-editor.php:
|
346 |
msgid ""
|
347 |
"For more information on how to undo changes and restore plugin capabilities "
|
348 |
"go to"
|
@@ -352,7 +365,7 @@ msgstr ""
|
|
352 |
# __('Contributor', 'ure');
|
353 |
# __('Subscriber', 'ure');
|
354 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
355 |
-
#: ../includes/class-user-role-editor.php:
|
356 |
msgid "Continue?"
|
357 |
msgstr ""
|
358 |
|
@@ -360,7 +373,7 @@ msgstr ""
|
|
360 |
# 'default_role' => __('Default Role', 'ure'),
|
361 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
362 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
363 |
-
#: ../includes/class-user-role-editor.php:
|
364 |
msgid "Default Role"
|
365 |
msgstr "תפקיד ברירת מחדל"
|
366 |
|
@@ -368,7 +381,7 @@ msgstr "תפקיד ברירת מחדל"
|
|
368 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
369 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
370 |
# wpml-name: f28d52a1096a73cff427d1216dc578ad
|
371 |
-
#: ../includes/class-user-role-editor.php:
|
372 |
msgid "Set New Default Role"
|
373 |
msgstr "הגדר תפקיד ברירת מחדל חדש"
|
374 |
|
@@ -376,7 +389,7 @@ msgstr "הגדר תפקיד ברירת מחדל חדש"
|
|
376 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
377 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
378 |
# wpml-name: b8827a096ab461b8e26931adf82c8d85
|
379 |
-
#: ../includes/class-user-role-editor.php:
|
380 |
msgid ""
|
381 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
382 |
"or other custom code"
|
@@ -388,7 +401,7 @@ msgstr ""
|
|
388 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
389 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
390 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
391 |
-
#: ../includes/class-user-role-editor.php:
|
392 |
msgid " Capability name (ID) can not be empty!"
|
393 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
394 |
|
@@ -396,7 +409,7 @@ msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
|
396 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
397 |
# ) );
|
398 |
# wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
|
399 |
-
#: ../includes/class-user-role-editor.php:
|
400 |
msgid ""
|
401 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
402 |
"underscore only!"
|
@@ -407,8 +420,8 @@ msgstr ""
|
|
407 |
# <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
|
408 |
# <td>
|
409 |
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
410 |
-
#: ../includes/class-user-role-editor.php:
|
411 |
-
#: ../includes/class-user-role-editor.php:
|
412 |
msgid "Other Roles"
|
413 |
msgstr "תפקידים אחרים"
|
414 |
|
@@ -416,7 +429,7 @@ msgstr "תפקידים אחרים"
|
|
416 |
# echo $output . ' >> <a href="' . wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&user_id={$user->ID}", "ure_user_{$user->ID}") . '">' . __('Edit', 'ure') . '</a>';
|
417 |
# ?>
|
418 |
# wpml-name: 7dce122004969d56ae2e0245cb754d35
|
419 |
-
#: ../includes/class-user-role-editor.php:
|
420 |
msgid "Edit"
|
421 |
msgstr "עריכה"
|
422 |
|
@@ -424,7 +437,7 @@ msgstr "עריכה"
|
|
424 |
msgid "Select Role and change its capabilities:"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:
|
428 |
msgid "Show capabilities in human readable form"
|
429 |
msgstr ""
|
430 |
|
@@ -444,12 +457,12 @@ msgstr ""
|
|
444 |
# '">' . __('Capabilities', 'ure') . '</a>';
|
445 |
# }
|
446 |
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
447 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:
|
448 |
#, fuzzy
|
449 |
msgid "Core capabilities:"
|
450 |
msgstr "יכולות"
|
451 |
|
452 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:
|
453 |
msgid "Quick filter:"
|
454 |
msgstr ""
|
455 |
|
@@ -457,7 +470,7 @@ msgstr ""
|
|
457 |
# '">' . __('Capabilities', 'ure') . '</a>';
|
458 |
# }
|
459 |
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
460 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:
|
461 |
#, fuzzy
|
462 |
msgid "Custom capabilities:"
|
463 |
msgstr "יכולות"
|
@@ -466,7 +479,7 @@ msgstr "יכולות"
|
|
466 |
# $this->show_message(__('Error: wrong request', 'URE'));
|
467 |
# return false;
|
468 |
# wpml-name: a4b9ac7e09dc5996d763f6bae29fd31a
|
469 |
-
#: ../includes/class-ure-lib.php:
|
470 |
msgid "Error: wrong request"
|
471 |
msgstr "שגיאה: בקשה מוטעית"
|
472 |
|
@@ -474,16 +487,16 @@ msgstr "שגיאה: בקשה מוטעית"
|
|
474 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
475 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
476 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
477 |
-
#: ../includes/class-ure-lib.php:
|
478 |
#, fuzzy
|
479 |
msgid "Role name (ID): "
|
480 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
481 |
|
482 |
-
#: ../includes/class-ure-lib.php:
|
483 |
msgid "Display Role Name: "
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: ../includes/class-ure-lib.php:
|
487 |
msgid "Make copy of: "
|
488 |
msgstr ""
|
489 |
|
@@ -491,7 +504,7 @@ msgstr ""
|
|
491 |
# 'delete_role' => __('Delete Role', 'ure'),
|
492 |
# 'cancel' => __('Cancel', 'ure'),
|
493 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
#, fuzzy
|
496 |
msgid "Select Role:"
|
497 |
msgstr "מחיקת סוג משתמש"
|
@@ -500,7 +513,7 @@ msgstr "מחיקת סוג משתמש"
|
|
500 |
# 'delete_role' => __('Delete Role', 'ure'),
|
501 |
# 'cancel' => __('Cancel', 'ure'),
|
502 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
#, fuzzy
|
505 |
msgid "Delete:"
|
506 |
msgstr "מחיקת סוג משתמש"
|
@@ -509,7 +522,7 @@ msgstr "מחיקת סוג משתמש"
|
|
509 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
510 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
511 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
512 |
-
#: ../includes/class-ure-lib.php:
|
513 |
#, fuzzy
|
514 |
msgid "Capability name (ID): "
|
515 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
@@ -518,7 +531,7 @@ msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
|
518 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
519 |
# $this->current_role = '';
|
520 |
# wpml-name: f97d2eb0a66987899d02bb180936afa3
|
521 |
-
#: ../includes/class-ure-lib.php:
|
522 |
msgid "Error: "
|
523 |
msgstr "שגיאה:"
|
524 |
|
@@ -526,7 +539,7 @@ msgstr "שגיאה:"
|
|
526 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
527 |
# $this->current_role = '';
|
528 |
# wpml-name: bbbabdbe1b262f75d99d62880b953be1
|
529 |
-
#: ../includes/class-ure-lib.php:
|
530 |
msgid "Role"
|
531 |
msgstr "סוג משתמש:"
|
532 |
|
@@ -534,7 +547,7 @@ msgstr "סוג משתמש:"
|
|
534 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
535 |
# $this->current_role = '';
|
536 |
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
537 |
-
#: ../includes/class-ure-lib.php:
|
538 |
msgid "does not exist"
|
539 |
msgstr "לא נמצא"
|
540 |
|
@@ -542,7 +555,7 @@ msgstr "לא נמצא"
|
|
542 |
# $mess = __('Role is updated successfully', 'ure');
|
543 |
# } else {
|
544 |
# wpml-name: 9fd866f99b55510d60384b7efeb22018
|
545 |
-
#: ../includes/class-ure-lib.php:
|
546 |
msgid "Role is updated successfully"
|
547 |
msgstr "התפקיד עודכן בהצלחה"
|
548 |
|
@@ -550,7 +563,7 @@ msgstr "התפקיד עודכן בהצלחה"
|
|
550 |
# $mess = __('Roles are updated for all network', 'ure');
|
551 |
# }
|
552 |
# wpml-name: f89c187756348dad944b0fcca790fde6
|
553 |
-
#: ../includes/class-ure-lib.php:
|
554 |
msgid "Roles are updated for all network"
|
555 |
msgstr "התפקידים עודכנו עבור כל הרשת"
|
556 |
|
@@ -558,7 +571,7 @@ msgstr "התפקידים עודכנו עבור כל הרשת"
|
|
558 |
# $mess = __('Error occured during role(s) update', 'ure');
|
559 |
# }
|
560 |
# wpml-name: 9f528ca4741155f636c4331b19f2b170
|
561 |
-
#: ../includes/class-ure-lib.php:
|
562 |
msgid "Error occured during role(s) update"
|
563 |
msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
|
564 |
|
@@ -566,7 +579,7 @@ msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
|
|
566 |
# $mess = __('User capabilities are updated successfully', 'ure');
|
567 |
# } else {
|
568 |
# wpml-name: ee37618edaa53156b3a18d543ec60412
|
569 |
-
#: ../includes/class-ure-lib.php:
|
570 |
msgid "User capabilities are updated successfully"
|
571 |
msgstr "יכולות המשתמש עודכנו בהצלחה"
|
572 |
|
@@ -574,7 +587,7 @@ msgstr "יכולות המשתמש עודכנו בהצלחה"
|
|
574 |
# $mess = __('Error occured during user update', 'ure');
|
575 |
# }
|
576 |
# wpml-name: f7283da5501e7e1cb13255d323859feb
|
577 |
-
#: ../includes/class-ure-lib.php:
|
578 |
msgid "Error occured during user update"
|
579 |
msgstr "קרתה שגיאה בזמן עדכון המשתמש"
|
580 |
|
@@ -582,7 +595,7 @@ msgstr "קרתה שגיאה בזמן עדכון המשתמש"
|
|
582 |
# $this->notification = __('User Roles are restored to WordPress default values. ', 'ure');
|
583 |
# } else if ($action == 'update') {
|
584 |
# wpml-name: 7182950b4f92d446844be24cfea6276a
|
585 |
-
#: ../includes/class-ure-lib.php:
|
586 |
msgid "User Roles are restored to WordPress default values. "
|
587 |
msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל של וורדפרס."
|
588 |
|
@@ -590,7 +603,7 @@ msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל ש
|
|
590 |
# $link = '<a href="' . $url . '" title="read about ' . $capability . ' user capability" target="new"><img src="' . URE_PLUGIN_URL . '/images/help.png" alt="' . __('Help', 'ure') . '" /></a>';
|
591 |
# } else {
|
592 |
# wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
|
593 |
-
#: ../includes/class-ure-lib.php:
|
594 |
msgid "Help"
|
595 |
msgstr "עזרה"
|
596 |
|
@@ -598,7 +611,7 @@ msgstr "עזרה"
|
|
598 |
# $this->show_message('Error! ' . __('Error is occur. Please check the log file.', 'ure'));
|
599 |
# }
|
600 |
# wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
|
601 |
-
#: ../includes/class-ure-lib.php:
|
602 |
msgid "Error is occur. Please check the log file."
|
603 |
msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
604 |
|
@@ -606,14 +619,14 @@ msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
|
606 |
# return __('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'ure');
|
607 |
# }
|
608 |
# wpml-name: f9182094e24a9e2fbb7317b1724a69c9
|
609 |
-
#: ../includes/class-ure-lib.php:
|
610 |
msgid ""
|
611 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
612 |
"only!"
|
613 |
msgstr ""
|
614 |
"שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
|
615 |
|
616 |
-
#: ../includes/class-ure-lib.php:
|
617 |
msgid ""
|
618 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
619 |
"characters to it."
|
@@ -623,7 +636,7 @@ msgstr ""
|
|
623 |
# return sprintf('Error! ' . __('Role %s exists already', 'ure'), $user_role_id);
|
624 |
# }
|
625 |
# wpml-name: 61b6d86154b5437be56e6565f2820391
|
626 |
-
#: ../includes/class-ure-lib.php:
|
627 |
#, php-format
|
628 |
msgid "Role %s exists already"
|
629 |
msgstr "סוג המשתמש %s כבר קיים"
|
@@ -632,7 +645,7 @@ msgstr "סוג המשתמש %s כבר קיים"
|
|
632 |
# $mess = 'Error! ' . __('Error is encountered during new role create operation', 'ure');
|
633 |
# } else {
|
634 |
# wpml-name: e0618b1a4160611a46b1b95acab0821c
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Error is encountered during new role create operation"
|
637 |
msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
638 |
|
@@ -640,16 +653,16 @@ msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
|
640 |
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
641 |
# }
|
642 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
#, php-format
|
645 |
msgid "Role %s is created successfully"
|
646 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
647 |
|
648 |
-
#: ../includes/class-ure-lib.php:
|
649 |
msgid "Error: Role ID is empty!"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: ../includes/class-ure-lib.php:
|
653 |
msgid "Error: Empty role display name is not allowed."
|
654 |
msgstr ""
|
655 |
|
@@ -657,7 +670,7 @@ msgstr ""
|
|
657 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
658 |
# $this->current_role = '';
|
659 |
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
660 |
-
#: ../includes/class-ure-lib.php:
|
661 |
#, fuzzy, php-format
|
662 |
msgid "Role %s does not exists"
|
663 |
msgstr "לא נמצא"
|
@@ -666,7 +679,7 @@ msgstr "לא נמצא"
|
|
666 |
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
667 |
# }
|
668 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
669 |
-
#: ../includes/class-ure-lib.php:
|
670 |
#, fuzzy, php-format
|
671 |
msgid "Role %s is renamed to %s successfully"
|
672 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
@@ -675,7 +688,7 @@ msgstr "סוג המשתמש %s נוצר בהצלחה"
|
|
675 |
# $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
|
676 |
# } else {
|
677 |
# wpml-name: 5ca27dda122445e597586a22e18088e6
|
678 |
-
#: ../includes/class-ure-lib.php:
|
679 |
msgid "Error encountered during role delete operation"
|
680 |
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
681 |
|
@@ -683,7 +696,7 @@ msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המ
|
|
683 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
684 |
# }
|
685 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
686 |
-
#: ../includes/class-ure-lib.php:
|
687 |
msgid "Unused roles are deleted successfully"
|
688 |
msgstr ""
|
689 |
|
@@ -691,7 +704,7 @@ msgstr ""
|
|
691 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
692 |
# }
|
693 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
694 |
-
#: ../includes/class-ure-lib.php:
|
695 |
#, php-format
|
696 |
msgid "Role %s is deleted successfully"
|
697 |
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
@@ -700,7 +713,7 @@ msgstr "סוג המשתמש %s נמחק בהצלחה"
|
|
700 |
# $errorMessage = 'Error! ' . __('Error encountered during default role change operation', 'ure');
|
701 |
# if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
|
702 |
# wpml-name: b64bfe4842bc0638b79a24687976394e
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Error encountered during default role change operation"
|
705 |
msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
|
706 |
|
@@ -708,7 +721,7 @@ msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמ
|
|
708 |
# $mess = sprintf(__('Default role for new users is set to %s successfully', 'ure'), $wp_roles->role_names[$user_role_id]);
|
709 |
# }
|
710 |
# wpml-name: 94978d82edc73eba0f44bc7bceb299f4
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
#, php-format
|
713 |
msgid "Default role for new users is set to %s successfully"
|
714 |
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
@@ -717,7 +730,7 @@ msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
|
717 |
# __('Editor', 'ure');
|
718 |
# __('Author', 'ure');
|
719 |
# wpml-name: 344a7f427fb765610ef96eb7bce95257
|
720 |
-
#: ../includes/class-ure-lib.php:
|
721 |
msgid "Editor"
|
722 |
msgstr "עורך"
|
723 |
|
@@ -725,7 +738,7 @@ msgstr "עורך"
|
|
725 |
# __('Author', 'ure');
|
726 |
# __('Contributor', 'ure');
|
727 |
# wpml-name: a517747c3d12f99244ae598910d979c5
|
728 |
-
#: ../includes/class-ure-lib.php:
|
729 |
msgid "Author"
|
730 |
msgstr "כותב"
|
731 |
|
@@ -733,7 +746,7 @@ msgstr "כותב"
|
|
733 |
# __('Contributor', 'ure');
|
734 |
# __('Subscriber', 'ure');
|
735 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
736 |
-
#: ../includes/class-ure-lib.php:
|
737 |
msgid "Contributor"
|
738 |
msgstr "תורם"
|
739 |
|
@@ -741,7 +754,7 @@ msgstr "תורם"
|
|
741 |
# __('Subscriber', 'ure');
|
742 |
# // Standard WordPress capabilities
|
743 |
# wpml-name: 992c4a5b4628d8ebf671cf460254ee81
|
744 |
-
#: ../includes/class-ure-lib.php:
|
745 |
msgid "Subscriber"
|
746 |
msgstr "מנוי"
|
747 |
|
@@ -749,7 +762,7 @@ msgstr "מנוי"
|
|
749 |
# __('Switch themes', 'ure');
|
750 |
# __('Edit themes', 'ure');
|
751 |
# wpml-name: 87d980c0c79638536655ce7fa0a4b85d
|
752 |
-
#: ../includes/class-ure-lib.php:
|
753 |
msgid "Switch themes"
|
754 |
msgstr "החלפת תבניות"
|
755 |
|
@@ -757,7 +770,7 @@ msgstr "החלפת תבניות"
|
|
757 |
# __('Edit themes', 'ure');
|
758 |
# __('Activate plugins', 'ure');
|
759 |
# wpml-name: 8395d1904c778ee1b2762e07a6a03878
|
760 |
-
#: ../includes/class-ure-lib.php:
|
761 |
msgid "Edit themes"
|
762 |
msgstr "עריכת תבניות"
|
763 |
|
@@ -765,7 +778,7 @@ msgstr "עריכת תבניות"
|
|
765 |
# __('Activate plugins', 'ure');
|
766 |
# __('Edit plugins', 'ure');
|
767 |
# wpml-name: c38bc47406355ef06ad3e10a98505536
|
768 |
-
#: ../includes/class-ure-lib.php:
|
769 |
msgid "Activate plugins"
|
770 |
msgstr "הפעלת תוספים"
|
771 |
|
@@ -773,7 +786,7 @@ msgstr "הפעלת תוספים"
|
|
773 |
# __('Edit plugins', 'ure');
|
774 |
# __('Edit users', 'ure');
|
775 |
# wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
|
776 |
-
#: ../includes/class-ure-lib.php:
|
777 |
msgid "Edit plugins"
|
778 |
msgstr "עריכת תוספים"
|
779 |
|
@@ -781,7 +794,7 @@ msgstr "עריכת תוספים"
|
|
781 |
# __('Edit users', 'ure');
|
782 |
# __('Edit files', 'ure');
|
783 |
# wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
|
784 |
-
#: ../includes/class-ure-lib.php:
|
785 |
msgid "Edit users"
|
786 |
msgstr "עריכת משתמשים"
|
787 |
|
@@ -789,7 +802,7 @@ msgstr "עריכת משתמשים"
|
|
789 |
# __('Edit files', 'ure');
|
790 |
# __('Manage options', 'ure');
|
791 |
# wpml-name: 91c6e7a54b91cdc161f71958c597ed11
|
792 |
-
#: ../includes/class-ure-lib.php:
|
793 |
msgid "Edit files"
|
794 |
msgstr "עריכת קבצים"
|
795 |
|
@@ -797,7 +810,7 @@ msgstr "עריכת קבצים"
|
|
797 |
# __('Manage options', 'ure');
|
798 |
# __('Moderate comments', 'ure');
|
799 |
# wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
|
800 |
-
#: ../includes/class-ure-lib.php:
|
801 |
msgid "Manage options"
|
802 |
msgstr "ניהול אפשרויות אתר"
|
803 |
|
@@ -805,7 +818,7 @@ msgstr "ניהול אפשרויות אתר"
|
|
805 |
# __('Moderate comments', 'ure');
|
806 |
# __('Manage categories', 'ure');
|
807 |
# wpml-name: abb293cb5d17f4acca429ea13d74c593
|
808 |
-
#: ../includes/class-ure-lib.php:
|
809 |
msgid "Moderate comments"
|
810 |
msgstr "ניהול תגובות"
|
811 |
|
@@ -813,7 +826,7 @@ msgstr "ניהול תגובות"
|
|
813 |
# __('Manage categories', 'ure');
|
814 |
# __('Manage links', 'ure');
|
815 |
# wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
|
816 |
-
#: ../includes/class-ure-lib.php:
|
817 |
msgid "Manage categories"
|
818 |
msgstr "ניהול קטגוריות"
|
819 |
|
@@ -821,7 +834,7 @@ msgstr "ניהול קטגוריות"
|
|
821 |
# __('Manage links', 'ure');
|
822 |
# __('Upload files', 'ure');
|
823 |
# wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
|
824 |
-
#: ../includes/class-ure-lib.php:
|
825 |
msgid "Manage links"
|
826 |
msgstr "ניהול קישורים"
|
827 |
|
@@ -829,7 +842,7 @@ msgstr "ניהול קישורים"
|
|
829 |
# __('Upload files', 'ure');
|
830 |
# __('Import', 'ure');
|
831 |
# wpml-name: c7de86f69db264c3950d8ae46ed2e33f
|
832 |
-
#: ../includes/class-ure-lib.php:
|
833 |
msgid "Upload files"
|
834 |
msgstr "העלאת קבצים"
|
835 |
|
@@ -837,7 +850,7 @@ msgstr "העלאת קבצים"
|
|
837 |
# __('Import', 'ure');
|
838 |
# __('Unfiltered html', 'ure');
|
839 |
# wpml-name: 72d6d7a1885885bb55a565fd1070581a
|
840 |
-
#: ../includes/class-ure-lib.php:
|
841 |
msgid "Import"
|
842 |
msgstr "יבוא"
|
843 |
|
@@ -845,7 +858,7 @@ msgstr "יבוא"
|
|
845 |
# __('Unfiltered html', 'ure');
|
846 |
# __('Edit posts', 'ure');
|
847 |
# wpml-name: fdd95e5640d6d73230b7544ac261457a
|
848 |
-
#: ../includes/class-ure-lib.php:
|
849 |
msgid "Unfiltered html"
|
850 |
msgstr "עריכת HTML"
|
851 |
|
@@ -853,7 +866,7 @@ msgstr "עריכת HTML"
|
|
853 |
# __('Edit posts', 'ure');
|
854 |
# __('Edit others posts', 'ure');
|
855 |
# wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
|
856 |
-
#: ../includes/class-ure-lib.php:
|
857 |
msgid "Edit posts"
|
858 |
msgstr "עריכת פוסטים"
|
859 |
|
@@ -861,7 +874,7 @@ msgstr "עריכת פוסטים"
|
|
861 |
# __('Edit others posts', 'ure');
|
862 |
# __('Edit published posts', 'ure');
|
863 |
# wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
|
864 |
-
#: ../includes/class-ure-lib.php:
|
865 |
msgid "Edit others posts"
|
866 |
msgstr "עריכת פוסטים של אחרים"
|
867 |
|
@@ -869,7 +882,7 @@ msgstr "עריכת פוסטים של אחרים"
|
|
869 |
# __('Edit published posts', 'ure');
|
870 |
# __('Publish posts', 'ure');
|
871 |
# wpml-name: d42efc04e7900de59ed3667c971e9e9d
|
872 |
-
#: ../includes/class-ure-lib.php:
|
873 |
msgid "Edit published posts"
|
874 |
msgstr "עריכת פוסטים שפורסמו"
|
875 |
|
@@ -877,7 +890,7 @@ msgstr "עריכת פוסטים שפורסמו"
|
|
877 |
# __('Publish posts', 'ure');
|
878 |
# __('Edit pages', 'ure');
|
879 |
# wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
|
880 |
-
#: ../includes/class-ure-lib.php:
|
881 |
msgid "Publish posts"
|
882 |
msgstr "פוסטים שפורסמו"
|
883 |
|
@@ -885,7 +898,7 @@ msgstr "פוסטים שפורסמו"
|
|
885 |
# __('Edit pages', 'ure');
|
886 |
# __('Read', 'ure');
|
887 |
# wpml-name: e7a51430fa0fbb32587c083ffae4b525
|
888 |
-
#: ../includes/class-ure-lib.php:
|
889 |
msgid "Edit pages"
|
890 |
msgstr "עריכת עמודים"
|
891 |
|
@@ -893,7 +906,7 @@ msgstr "עריכת עמודים"
|
|
893 |
# __('Read', 'ure');
|
894 |
# __('Level 10', 'ure');
|
895 |
# wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
|
896 |
-
#: ../includes/class-ure-lib.php:
|
897 |
msgid "Read"
|
898 |
msgstr "קורא"
|
899 |
|
@@ -901,7 +914,7 @@ msgstr "קורא"
|
|
901 |
# __('Level 10', 'ure');
|
902 |
# __('Level 9', 'ure');
|
903 |
# wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
|
904 |
-
#: ../includes/class-ure-lib.php:
|
905 |
msgid "Level 10"
|
906 |
msgstr "דרגה 10"
|
907 |
|
@@ -909,7 +922,7 @@ msgstr "דרגה 10"
|
|
909 |
# __('Level 9', 'ure');
|
910 |
# __('Level 8', 'ure');
|
911 |
# wpml-name: d48252bc9cffec4bed5028a7c71d8196
|
912 |
-
#: ../includes/class-ure-lib.php:
|
913 |
msgid "Level 9"
|
914 |
msgstr "דרגה 9"
|
915 |
|
@@ -917,7 +930,7 @@ msgstr "דרגה 9"
|
|
917 |
# __('Level 8', 'ure');
|
918 |
# __('Level 7', 'ure');
|
919 |
# wpml-name: 625fef0c34a92b3685266a47f16c85dd
|
920 |
-
#: ../includes/class-ure-lib.php:
|
921 |
msgid "Level 8"
|
922 |
msgstr "דרגה 8"
|
923 |
|
@@ -925,7 +938,7 @@ msgstr "דרגה 8"
|
|
925 |
# __('Level 7', 'ure');
|
926 |
# __('Level 6', 'ure');
|
927 |
# wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
|
928 |
-
#: ../includes/class-ure-lib.php:
|
929 |
msgid "Level 7"
|
930 |
msgstr "דרגה 7"
|
931 |
|
@@ -933,7 +946,7 @@ msgstr "דרגה 7"
|
|
933 |
# __('Level 6', 'ure');
|
934 |
# __('Level 5', 'ure');
|
935 |
# wpml-name: b30ce92fb9295725ef29254ba5ae17e1
|
936 |
-
#: ../includes/class-ure-lib.php:
|
937 |
msgid "Level 6"
|
938 |
msgstr "דרגה 6"
|
939 |
|
@@ -941,7 +954,7 @@ msgstr "דרגה 6"
|
|
941 |
# __('Level 5', 'ure');
|
942 |
# __('Level 4', 'ure');
|
943 |
# wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
|
944 |
-
#: ../includes/class-ure-lib.php:
|
945 |
msgid "Level 5"
|
946 |
msgstr "דרגה 5"
|
947 |
|
@@ -949,7 +962,7 @@ msgstr "דרגה 5"
|
|
949 |
# __('Level 4', 'ure');
|
950 |
# __('Level 3', 'ure');
|
951 |
# wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
|
952 |
-
#: ../includes/class-ure-lib.php:
|
953 |
msgid "Level 4"
|
954 |
msgstr "דרגה 4"
|
955 |
|
@@ -957,7 +970,7 @@ msgstr "דרגה 4"
|
|
957 |
# __('Level 3', 'ure');
|
958 |
# __('Level 2', 'ure');
|
959 |
# wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
|
960 |
-
#: ../includes/class-ure-lib.php:
|
961 |
msgid "Level 3"
|
962 |
msgstr "דרגה 3"
|
963 |
|
@@ -965,7 +978,7 @@ msgstr "דרגה 3"
|
|
965 |
# __('Level 2', 'ure');
|
966 |
# __('Level 1', 'ure');
|
967 |
# wpml-name: 228e9da47384bacde793a2b78d488bb0
|
968 |
-
#: ../includes/class-ure-lib.php:
|
969 |
msgid "Level 2"
|
970 |
msgstr "דרגה 2"
|
971 |
|
@@ -973,7 +986,7 @@ msgstr "דרגה 2"
|
|
973 |
# __('Level 1', 'ure');
|
974 |
# __('Level 0', 'ure');
|
975 |
# wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
|
976 |
-
#: ../includes/class-ure-lib.php:
|
977 |
msgid "Level 1"
|
978 |
msgstr "דרגה 1"
|
979 |
|
@@ -981,7 +994,7 @@ msgstr "דרגה 1"
|
|
981 |
# __('Level 0', 'ure');
|
982 |
# __('Edit others pages', 'ure');
|
983 |
# wpml-name: 057e95a59e032dbed970592dd1245092
|
984 |
-
#: ../includes/class-ure-lib.php:
|
985 |
msgid "Level 0"
|
986 |
msgstr "דרגה 0"
|
987 |
|
@@ -989,7 +1002,7 @@ msgstr "דרגה 0"
|
|
989 |
# __('Edit others pages', 'ure');
|
990 |
# __('Edit published pages', 'ure');
|
991 |
# wpml-name: b10af907824940fe6a5aa0a77c62be6f
|
992 |
-
#: ../includes/class-ure-lib.php:
|
993 |
msgid "Edit others pages"
|
994 |
msgstr "עריכת דפים של אחרים"
|
995 |
|
@@ -997,7 +1010,7 @@ msgstr "עריכת דפים של אחרים"
|
|
997 |
# __('Edit published pages', 'ure');
|
998 |
# __('Publish pages', 'ure');
|
999 |
# wpml-name: c5bfc24b0b891c9465134b83b2c6c259
|
1000 |
-
#: ../includes/class-ure-lib.php:
|
1001 |
msgid "Edit published pages"
|
1002 |
msgstr "עריכת דפים שפורסמו"
|
1003 |
|
@@ -1005,7 +1018,7 @@ msgstr "עריכת דפים שפורסמו"
|
|
1005 |
# __('Publish pages', 'ure');
|
1006 |
# __('Delete pages', 'ure');
|
1007 |
# wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
|
1008 |
-
#: ../includes/class-ure-lib.php:
|
1009 |
msgid "Publish pages"
|
1010 |
msgstr "פרסום דפים"
|
1011 |
|
@@ -1013,7 +1026,7 @@ msgstr "פרסום דפים"
|
|
1013 |
# __('Delete pages', 'ure');
|
1014 |
# __('Delete others pages', 'ure');
|
1015 |
# wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
|
1016 |
-
#: ../includes/class-ure-lib.php:
|
1017 |
msgid "Delete pages"
|
1018 |
msgstr "מחיקת דפים"
|
1019 |
|
@@ -1021,7 +1034,7 @@ msgstr "מחיקת דפים"
|
|
1021 |
# __('Delete others pages', 'ure');
|
1022 |
# __('Delete published pages', 'ure');
|
1023 |
# wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
|
1024 |
-
#: ../includes/class-ure-lib.php:
|
1025 |
msgid "Delete others pages"
|
1026 |
msgstr "מחיקת דפים של אחרים"
|
1027 |
|
@@ -1029,7 +1042,7 @@ msgstr "מחיקת דפים של אחרים"
|
|
1029 |
# __('Delete published pages', 'ure');
|
1030 |
# __('Delete posts', 'ure');
|
1031 |
# wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
|
1032 |
-
#: ../includes/class-ure-lib.php:
|
1033 |
msgid "Delete published pages"
|
1034 |
msgstr "מחיקת דפים שפורסמו"
|
1035 |
|
@@ -1037,7 +1050,7 @@ msgstr "מחיקת דפים שפורסמו"
|
|
1037 |
# __('Delete posts', 'ure');
|
1038 |
# __('Delete others posts', 'ure');
|
1039 |
# wpml-name: 3dce6f688c85f06c63224b5c3be13919
|
1040 |
-
#: ../includes/class-ure-lib.php:
|
1041 |
msgid "Delete posts"
|
1042 |
msgstr "מחיקת פוסטים"
|
1043 |
|
@@ -1045,7 +1058,7 @@ msgstr "מחיקת פוסטים"
|
|
1045 |
# __('Delete others posts', 'ure');
|
1046 |
# __('Delete published posts', 'ure');
|
1047 |
# wpml-name: c0496287732814df690c8966027a58d6
|
1048 |
-
#: ../includes/class-ure-lib.php:
|
1049 |
msgid "Delete others posts"
|
1050 |
msgstr "מחיקת פוסטים של אחרים"
|
1051 |
|
@@ -1053,7 +1066,7 @@ msgstr "מחיקת פוסטים של אחרים"
|
|
1053 |
# __('Delete published posts', 'ure');
|
1054 |
# __('Delete private posts', 'ure');
|
1055 |
# wpml-name: b0a2d2039494d73f81f4e476bfda24da
|
1056 |
-
#: ../includes/class-ure-lib.php:
|
1057 |
msgid "Delete published posts"
|
1058 |
msgstr "מחיקת פוסטים שפורסמו"
|
1059 |
|
@@ -1061,7 +1074,7 @@ msgstr "מחיקת פוסטים שפורסמו"
|
|
1061 |
# __('Delete private posts', 'ure');
|
1062 |
# __('Edit private posts', 'ure');
|
1063 |
# wpml-name: dcd02c374764e49b36f0f959cc2917bb
|
1064 |
-
#: ../includes/class-ure-lib.php:
|
1065 |
msgid "Delete private posts"
|
1066 |
msgstr "מחיקת פוסטים פרטיים"
|
1067 |
|
@@ -1069,7 +1082,7 @@ msgstr "מחיקת פוסטים פרטיים"
|
|
1069 |
# __('Edit private posts', 'ure');
|
1070 |
# __('Read private posts', 'ure');
|
1071 |
# wpml-name: da9ee842794f7caf9fa32271073d5f7a
|
1072 |
-
#: ../includes/class-ure-lib.php:
|
1073 |
msgid "Edit private posts"
|
1074 |
msgstr "עריכת פוסטים פרטיים"
|
1075 |
|
@@ -1077,7 +1090,7 @@ msgstr "עריכת פוסטים פרטיים"
|
|
1077 |
# __('Read private posts', 'ure');
|
1078 |
# __('Delete private pages', 'ure');
|
1079 |
# wpml-name: eab0355307288f6480f8c53a0d953d79
|
1080 |
-
#: ../includes/class-ure-lib.php:
|
1081 |
msgid "Read private posts"
|
1082 |
msgstr "קריאת פוסטים פרטיים"
|
1083 |
|
@@ -1085,7 +1098,7 @@ msgstr "קריאת פוסטים פרטיים"
|
|
1085 |
# __('Delete private pages', 'ure');
|
1086 |
# __('Edit private pages', 'ure');
|
1087 |
# wpml-name: 2136c12e2beeadfe0da80a36ef967eca
|
1088 |
-
#: ../includes/class-ure-lib.php:
|
1089 |
msgid "Delete private pages"
|
1090 |
msgstr "מחיקת עמודים פרטיים"
|
1091 |
|
@@ -1093,7 +1106,7 @@ msgstr "מחיקת עמודים פרטיים"
|
|
1093 |
# __('Edit private pages', 'ure');
|
1094 |
# __('Read private pages', 'ure');
|
1095 |
# wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
|
1096 |
-
#: ../includes/class-ure-lib.php:
|
1097 |
msgid "Edit private pages"
|
1098 |
msgstr "מחיקת עמודים פרטיים"
|
1099 |
|
@@ -1101,7 +1114,7 @@ msgstr "מחיקת עמודים פרטיים"
|
|
1101 |
# __('Read private pages', 'ure');
|
1102 |
# __('Delete users', 'ure');
|
1103 |
# wpml-name: 5faa3f2e9585e107dc5f23748a825882
|
1104 |
-
#: ../includes/class-ure-lib.php:
|
1105 |
msgid "Read private pages"
|
1106 |
msgstr "קריאת עמודים פרטיים"
|
1107 |
|
@@ -1109,7 +1122,7 @@ msgstr "קריאת עמודים פרטיים"
|
|
1109 |
# __('Delete users', 'ure');
|
1110 |
# __('Create users', 'ure');
|
1111 |
# wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
|
1112 |
-
#: ../includes/class-ure-lib.php:
|
1113 |
msgid "Delete users"
|
1114 |
msgstr "מחיקת משתמשים"
|
1115 |
|
@@ -1117,7 +1130,7 @@ msgstr "מחיקת משתמשים"
|
|
1117 |
# __('Create users', 'ure');
|
1118 |
# __('Unfiltered upload', 'ure');
|
1119 |
# wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
|
1120 |
-
#: ../includes/class-ure-lib.php:
|
1121 |
msgid "Create users"
|
1122 |
msgstr "יצירת משתמשים"
|
1123 |
|
@@ -1125,7 +1138,7 @@ msgstr "יצירת משתמשים"
|
|
1125 |
# __('Unfiltered upload', 'ure');
|
1126 |
# __('Edit dashboard', 'ure');
|
1127 |
# wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
|
1128 |
-
#: ../includes/class-ure-lib.php:
|
1129 |
msgid "Unfiltered upload"
|
1130 |
msgstr "העלאת קבצים חופשית"
|
1131 |
|
@@ -1133,7 +1146,7 @@ msgstr "העלאת קבצים חופשית"
|
|
1133 |
# __('Edit dashboard', 'ure');
|
1134 |
# __('Update plugins', 'ure');
|
1135 |
# wpml-name: b5577d27ebfdd60a3bda83ae726d574b
|
1136 |
-
#: ../includes/class-ure-lib.php:
|
1137 |
msgid "Edit dashboard"
|
1138 |
msgstr "שינוי לוח הבקרה"
|
1139 |
|
@@ -1141,7 +1154,7 @@ msgstr "שינוי לוח הבקרה"
|
|
1141 |
# __('Update plugins', 'ure');
|
1142 |
# __('Delete plugins', 'ure');
|
1143 |
# wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
|
1144 |
-
#: ../includes/class-ure-lib.php:
|
1145 |
msgid "Update plugins"
|
1146 |
msgstr "עדכון תוספים"
|
1147 |
|
@@ -1149,7 +1162,7 @@ msgstr "עדכון תוספים"
|
|
1149 |
# __('Delete plugins', 'ure');
|
1150 |
# __('Install plugins', 'ure');
|
1151 |
# wpml-name: f2a839940dae3934317d8d6a6f647ebd
|
1152 |
-
#: ../includes/class-ure-lib.php:
|
1153 |
msgid "Delete plugins"
|
1154 |
msgstr "מחיקת תוספים"
|
1155 |
|
@@ -1157,7 +1170,7 @@ msgstr "מחיקת תוספים"
|
|
1157 |
# __('Install plugins', 'ure');
|
1158 |
# __('Update themes', 'ure');
|
1159 |
# wpml-name: 9d06472988c53bfc768bc7b6a788b697
|
1160 |
-
#: ../includes/class-ure-lib.php:
|
1161 |
msgid "Install plugins"
|
1162 |
msgstr "התקנת תוספים"
|
1163 |
|
@@ -1165,7 +1178,7 @@ msgstr "התקנת תוספים"
|
|
1165 |
# __('Update themes', 'ure');
|
1166 |
# __('Install themes', 'ure');
|
1167 |
# wpml-name: 504ea4a27260ac1e8822c5877ffe526b
|
1168 |
-
#: ../includes/class-ure-lib.php:
|
1169 |
msgid "Update themes"
|
1170 |
msgstr "עדכון תבניות"
|
1171 |
|
@@ -1173,7 +1186,7 @@ msgstr "עדכון תבניות"
|
|
1173 |
# __('Install themes', 'ure');
|
1174 |
# __('Update core', 'ure');
|
1175 |
# wpml-name: a7d67fb17876569a4590902d3566a6fd
|
1176 |
-
#: ../includes/class-ure-lib.php:
|
1177 |
msgid "Install themes"
|
1178 |
msgstr "התקנת תבניות חדשות"
|
1179 |
|
@@ -1181,7 +1194,7 @@ msgstr "התקנת תבניות חדשות"
|
|
1181 |
# __('Update core', 'ure');
|
1182 |
# __('List users', 'ure');
|
1183 |
# wpml-name: e56e5b87db548cd42be7a8a0f916205d
|
1184 |
-
#: ../includes/class-ure-lib.php:
|
1185 |
msgid "Update core"
|
1186 |
msgstr "עדכון וורדפרס"
|
1187 |
|
@@ -1189,7 +1202,7 @@ msgstr "עדכון וורדפרס"
|
|
1189 |
# __('List users', 'ure');
|
1190 |
# __('Remove users', 'ure');
|
1191 |
# wpml-name: f923f903857a5387d3db70494e074632
|
1192 |
-
#: ../includes/class-ure-lib.php:
|
1193 |
msgid "List users"
|
1194 |
msgstr "בצפייה במשתמשים"
|
1195 |
|
@@ -1197,7 +1210,7 @@ msgstr "בצפייה במשתמשים"
|
|
1197 |
# __('Remove users', 'ure');
|
1198 |
# __('Add users', 'ure');
|
1199 |
# wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
|
1200 |
-
#: ../includes/class-ure-lib.php:
|
1201 |
msgid "Remove users"
|
1202 |
msgstr "הסרת משתמשים"
|
1203 |
|
@@ -1205,7 +1218,7 @@ msgstr "הסרת משתמשים"
|
|
1205 |
# __('Add users', 'ure');
|
1206 |
# __('Promote users', 'ure');
|
1207 |
# wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
|
1208 |
-
#: ../includes/class-ure-lib.php:
|
1209 |
msgid "Add users"
|
1210 |
msgstr "הוספת משתמשים"
|
1211 |
|
@@ -1213,7 +1226,7 @@ msgstr "הוספת משתמשים"
|
|
1213 |
# __('Promote users', 'ure');
|
1214 |
# __('Edit theme options', 'ure');
|
1215 |
# wpml-name: 12f4ba95cdfd04b791820b9c20887913
|
1216 |
-
#: ../includes/class-ure-lib.php:
|
1217 |
msgid "Promote users"
|
1218 |
msgstr "שינוי משתמשים"
|
1219 |
|
@@ -1221,7 +1234,7 @@ msgstr "שינוי משתמשים"
|
|
1221 |
# __('Edit theme options', 'ure');
|
1222 |
# __('Delete themes', 'ure');
|
1223 |
# wpml-name: 8841974497684dad4d55beaf2b6c52ef
|
1224 |
-
#: ../includes/class-ure-lib.php:
|
1225 |
msgid "Edit theme options"
|
1226 |
msgstr "עריכת אפשרויות התבנית"
|
1227 |
|
@@ -1229,7 +1242,7 @@ msgstr "עריכת אפשרויות התבנית"
|
|
1229 |
# __('Delete themes', 'ure');
|
1230 |
# __('Export', 'ure');
|
1231 |
# wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
|
1232 |
-
#: ../includes/class-ure-lib.php:
|
1233 |
msgid "Delete themes"
|
1234 |
msgstr "מחיקת תבניות"
|
1235 |
|
@@ -1237,7 +1250,7 @@ msgstr "מחיקת תבניות"
|
|
1237 |
# __('Export', 'ure');
|
1238 |
# }
|
1239 |
# wpml-name: 0095a9fa74d1713e43e370a7d7846224
|
1240 |
-
#: ../includes/class-ure-lib.php:
|
1241 |
msgid "Export"
|
1242 |
msgstr "ייצוא תוכן"
|
1243 |
|
@@ -1245,7 +1258,7 @@ msgstr "ייצוא תוכן"
|
|
1245 |
# return 'Error! ' . __('Error: Capability name must contain latin characters and digits only!', 'ure');
|
1246 |
# ;
|
1247 |
# wpml-name: 03766b9586d3012af6fc788e85d39530
|
1248 |
-
#: ../includes/class-ure-lib.php:
|
1249 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
1250 |
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
1251 |
|
@@ -1253,7 +1266,7 @@ msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגל
|
|
1253 |
# $mess = sprintf(__('Capability %s is added successfully', 'ure'), $user_capability);
|
1254 |
# } else {
|
1255 |
# wpml-name: 6dcaae98207ba2673da987515b02fe31
|
1256 |
-
#: ../includes/class-ure-lib.php:
|
1257 |
#, php-format
|
1258 |
msgid "Capability %s is added successfully"
|
1259 |
msgstr "היכולת %s נוספה בהצלחה"
|
@@ -1262,7 +1275,7 @@ msgstr "היכולת %s נוספה בהצלחה"
|
|
1262 |
# $mess = sprintf('Error! ' . __('Capability %s exists already', 'ure'), $user_capability);
|
1263 |
# }
|
1264 |
# wpml-name: d5c1ec0556aadfa88cadffb62266b83d
|
1265 |
-
#: ../includes/class-ure-lib.php:
|
1266 |
#, php-format
|
1267 |
msgid "Capability %s exists already"
|
1268 |
msgstr "כבר קיימת יכולת בשם %s"
|
@@ -1271,7 +1284,7 @@ msgstr "כבר קיימת יכולת בשם %s"
|
|
1271 |
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
1272 |
# }
|
1273 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
1274 |
-
#: ../includes/class-ure-lib.php:
|
1275 |
#, php-format
|
1276 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
1277 |
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
@@ -1280,12 +1293,12 @@ msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
|
1280 |
# $mess = sprintf(__('Capability %s is removed successfully', 'ure'), $capability_id);
|
1281 |
# }
|
1282 |
# wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
|
1283 |
-
#: ../includes/class-ure-lib.php:
|
1284 |
#, php-format
|
1285 |
msgid "Capability %s is removed successfully"
|
1286 |
msgstr "היכולת %s הוסרה בהצלחה"
|
1287 |
|
1288 |
-
#: ../includes/class-ure-lib.php:
|
1289 |
msgid "Version:"
|
1290 |
msgstr ""
|
1291 |
|
@@ -1293,7 +1306,7 @@ msgstr ""
|
|
1293 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/vladimir.png'; ?>);" target="_blank" href="http://www.shinephp.com/"><?php _e("Author's website", 'ure'); ?></a>
|
1294 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
|
1295 |
# wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
|
1296 |
-
#: ../includes/class-ure-lib.php:
|
1297 |
msgid "Author's website"
|
1298 |
msgstr "אתר היוצר"
|
1299 |
|
@@ -1301,7 +1314,7 @@ msgstr "אתר היוצר"
|
|
1301 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
|
1302 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#changelog"><?php _e('Changelog', 'ure'); ?></a>
|
1303 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1304 |
-
#: ../includes/class-ure-lib.php:
|
1305 |
msgid "Plugin webpage"
|
1306 |
msgstr "דף התוסף"
|
1307 |
|
@@ -1309,7 +1322,7 @@ msgstr "דף התוסף"
|
|
1309 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
|
1310 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#changelog"><?php _e('Changelog', 'ure'); ?></a>
|
1311 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1312 |
-
#: ../includes/class-ure-lib.php:
|
1313 |
#, fuzzy
|
1314 |
msgid "Plugin download"
|
1315 |
msgstr "דף התוסף"
|
@@ -1318,7 +1331,7 @@ msgstr "דף התוסף"
|
|
1318 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/faq-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#faq"><?php _e('FAQ', 'ure'); ?></a>
|
1319 |
# <?php
|
1320 |
# wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
|
1321 |
-
#: ../includes/class-ure-lib.php:
|
1322 |
msgid "FAQ"
|
1323 |
msgstr "שאלות נפוצות"
|
1324 |
|
@@ -1326,7 +1339,7 @@ msgstr "שאלות נפוצות"
|
|
1326 |
# <option value="none" selected="selected">' . __('None', 'ure') . '</option>';
|
1327 |
# $this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
|
1328 |
# wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
|
1329 |
-
#: ../includes/class-ure-lib.php:
|
1330 |
msgid "None"
|
1331 |
msgstr "תרום"
|
1332 |
|
@@ -1334,11 +1347,11 @@ msgstr "תרום"
|
|
1334 |
#
|
1335 |
#
|
1336 |
# wpml-name: 7aa3fd37413ab803143d28fcc65287cf
|
1337 |
-
#: ../includes/class-ure-lib.php:
|
1338 |
msgid "Delete All Unused Roles"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: ../includes/class-ure-lib.php:
|
1342 |
msgid "— No role for this site —"
|
1343 |
msgstr ""
|
1344 |
|
@@ -1346,7 +1359,7 @@ msgstr ""
|
|
1346 |
# $user_info .= ' <span style="font-weight: bold; color:red;">'. esc_html__('Network Super Admin', 'ure') .'</span>';
|
1347 |
# }
|
1348 |
# wpml-name: 5213962fd38769a637909d6bc2a37197
|
1349 |
-
#: ../includes/ure-user-edit.php:
|
1350 |
msgid "Network Super Admin"
|
1351 |
msgstr "מנהל-על של רשת"
|
1352 |
|
@@ -1354,15 +1367,15 @@ msgstr "מנהל-על של רשת"
|
|
1354 |
# $this->display_box_start(__('Change capabilities for user', 'ure').$user_info, 'min-width:830px;');
|
1355 |
#
|
1356 |
# wpml-name: 3c4a4bfb7afa015a22eee9e5b9b098e2
|
1357 |
-
#: ../includes/ure-user-edit.php:
|
1358 |
msgid "Change capabilities for user"
|
1359 |
msgstr "שינוי יכולות המשתמש"
|
1360 |
|
1361 |
-
#: ../includes/ure-user-edit.php:
|
1362 |
msgid "Primary Role:"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: ../includes/ure-user-edit.php:
|
1366 |
msgid "bbPress Role:"
|
1367 |
msgstr ""
|
1368 |
|
@@ -1370,7 +1383,7 @@ msgstr ""
|
|
1370 |
# <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
|
1371 |
# <td>
|
1372 |
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
1373 |
-
#: ../includes/ure-user-edit.php:
|
1374 |
#, fuzzy
|
1375 |
msgid "Other Roles:"
|
1376 |
msgstr "תפקידים אחרים"
|
@@ -1397,18 +1410,25 @@ msgid ""
|
|
1397 |
"deprecated capabilities."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: ../includes/class-ure-screen-help.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1401 |
msgid ""
|
1402 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
1403 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
1404 |
"users list with role \"No rights\" at the separate tab then."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: ../includes/class-ure-screen-help.php:
|
1408 |
msgid "Other default roles for new registered user"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: ../includes/class-ure-screen-help.php:
|
1412 |
msgid ""
|
1413 |
"select roles below to assign them to the new user automatically as an "
|
1414 |
"addition to the primary role. Note for multisite environment: take into "
|
@@ -1416,11 +1436,11 @@ msgid ""
|
|
1416 |
"assigned to the new registered users."
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: ../includes/class-ure-screen-help.php:
|
1420 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: ../includes/class-ure-screen-help.php:
|
1424 |
msgid ""
|
1425 |
"Super administrator only may create, edit and delete users under WordPress "
|
1426 |
"multi-site by default. Turn this option on in order to remove this "
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: User Role Editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2015-02-06 11:48+0700\n"
|
9 |
"PO-Revision-Date: \n"
|
10 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
11 |
"Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
|
26 |
msgstr "User Role Editor"
|
27 |
|
28 |
#: ../includes/settings-template.php:21
|
29 |
+
#: ../includes/class-user-role-editor.php:591
|
30 |
msgid "General"
|
31 |
msgstr ""
|
32 |
|
33 |
#: ../includes/settings-template.php:26
|
34 |
+
#: ../includes/class-user-role-editor.php:597
|
35 |
msgid "Additional Modules"
|
36 |
msgstr ""
|
37 |
|
40 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
41 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
42 |
#: ../includes/settings-template.php:30
|
43 |
+
#: ../includes/class-user-role-editor.php:603
|
44 |
#, fuzzy
|
45 |
msgid "Default Roles"
|
46 |
msgstr "תפקיד ברירת מחדל"
|
47 |
|
48 |
#: ../includes/settings-template.php:34
|
49 |
+
#: ../includes/class-user-role-editor.php:609
|
50 |
msgid "Multisite"
|
51 |
msgstr ""
|
52 |
|
77 |
# </td>
|
78 |
# wpml-name: 130b09deaec4b13948be95555d546f25
|
79 |
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
80 |
+
#: ../includes/ure-user-edit.php:64 ../includes/class-ure-screen-help.php:21
|
81 |
msgid "Show deprecated capabilities"
|
82 |
msgstr "הצג הרשאות לפי מספר"
|
83 |
|
84 |
+
# wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&user_id={$user->ID}", "ure_user_{$user->ID}") .
|
85 |
+
# '">' . __('Capabilities', 'ure') . '</a>';
|
86 |
+
# }
|
87 |
+
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
88 |
+
#: ../includes/settings-template.php:77
|
89 |
+
#: ../includes/class-ure-screen-help.php:25
|
90 |
+
#, fuzzy
|
91 |
+
msgid "Edit user capabilities"
|
92 |
+
msgstr "יכולות"
|
93 |
+
|
94 |
# <p class="submit">
|
95 |
# <input type="submit" class="button-primary" name="user_role_editor_settings_update" value="<?php _e('Save', 'ure') ?>" />
|
96 |
# </p>
|
97 |
# wpml-name: c9cc8cce247e49bae79f15173ce97354
|
98 |
+
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
99 |
+
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
100 |
msgid "Save"
|
101 |
msgstr "שמירה"
|
102 |
|
103 |
+
#: ../includes/settings-template.php:111
|
104 |
+
#: ../includes/class-ure-screen-help.php:45
|
105 |
msgid "Count users without role"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: ../includes/settings-template.php:138
|
109 |
msgid "Primary default role: "
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: ../includes/settings-template.php:145
|
113 |
msgid "Other default roles for new registered user: "
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: ../includes/settings-template.php:151
|
117 |
msgid ""
|
118 |
"Note for multisite environment: take into account that other default roles "
|
119 |
"should exist at the site, in order to be assigned to the new registered "
|
120 |
"users."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: ../includes/settings-template.php:177
|
124 |
msgid "Allow non super administrators to create, edit, and delete users"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: ../includes/class-user-role-editor.php:233
|
128 |
msgid "Change role for users without role"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: ../includes/class-user-role-editor.php:234
|
132 |
msgid "No rights"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: ../includes/class-user-role-editor.php:235
|
136 |
msgid "Provide new role"
|
137 |
msgstr ""
|
138 |
|
140 |
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
141 |
# }
|
142 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
143 |
+
#: ../includes/class-user-role-editor.php:319
|
144 |
+
#: ../includes/class-user-role-editor.php:321
|
145 |
msgid "You do not have permission to edit this user."
|
146 |
msgstr ""
|
147 |
|
149 |
# '">' . __('Capabilities', 'ure') . '</a>';
|
150 |
# }
|
151 |
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
152 |
+
#: ../includes/class-user-role-editor.php:460
|
153 |
msgid "Capabilities"
|
154 |
msgstr "יכולות"
|
155 |
|
157 |
# $settings_link = "<a href='options-general.php?page=settings-".URE_PLUGIN_FILE."'>" . __('Settings', 'ure') . "</a>";
|
158 |
# array_unshift($links, $settings_link);
|
159 |
# wpml-name: f4f70727dc34561dfde1a3c529b6205c
|
160 |
+
#: ../includes/class-user-role-editor.php:558
|
161 |
msgid "Settings"
|
162 |
msgstr "הגדרות"
|
163 |
|
165 |
# $links[] = '<a target="_blank" href="http://role-editor.com/changelog">' . __('Changelog', 'ure') . '</a>';
|
166 |
# }
|
167 |
# wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
|
168 |
+
#: ../includes/class-user-role-editor.php:569
|
169 |
+
#: ../includes/class-ure-lib.php:2529
|
170 |
msgid "Changelog"
|
171 |
msgstr "יומן שינויים"
|
172 |
|
174 |
# esc_html__('User Role Editor', 'ure'),
|
175 |
# $this->key_capability, 'settings-'.URE_PLUGIN_FILE, array(&$this, 'settings'));
|
176 |
# wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
|
177 |
+
#: ../includes/class-user-role-editor.php:619
|
178 |
+
#: ../includes/class-user-role-editor.php:648
|
179 |
+
#: ../includes/class-user-role-editor.php:1029
|
180 |
+
#: ../includes/class-ure-lib.php:337
|
181 |
msgid "User Role Editor"
|
182 |
msgstr "User Role Editor"
|
183 |
|
185 |
# $this->lib->show_message(__('User Role Editor options are updated', 'ure'));
|
186 |
# } else { // get options from the options storage
|
187 |
# wpml-name: aef323fbbd25d577170fff17c15cf857
|
188 |
+
#: ../includes/class-user-role-editor.php:708
|
189 |
+
#: ../includes/class-user-role-editor.php:726
|
190 |
+
#: ../includes/class-user-role-editor.php:770
|
191 |
msgid "User Role Editor options are updated"
|
192 |
msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
193 |
|
195 |
# 'default_role' => __('Default Role', 'ure'),
|
196 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
197 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
198 |
+
#: ../includes/class-user-role-editor.php:754
|
199 |
#, fuzzy
|
200 |
msgid "Default Roles are updated"
|
201 |
msgstr "תפקיד ברירת מחדל"
|
202 |
|
203 |
+
#: ../includes/class-user-role-editor.php:778
|
204 |
msgid ""
|
205 |
"You do not have sufficient permissions to manage options for User Role "
|
206 |
"Editor."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: ../includes/class-user-role-editor.php:850
|
210 |
+
#: ../includes/class-ure-lib.php:1697 ../includes/class-ure-lib.php:1950
|
211 |
+
#: ../includes/class-ure-lib.php:2066 ../includes/class-ure-lib.php:2114
|
212 |
+
#: ../includes/class-ure-lib.php:2350 ../includes/class-ure-lib.php:2395
|
213 |
msgid "Insufficient permissions to work with User Role Editor"
|
214 |
msgstr ""
|
215 |
|
217 |
# 'select_all' => __('Select All', 'ure'),
|
218 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
219 |
# wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
|
220 |
+
#: ../includes/class-user-role-editor.php:976
|
221 |
msgid "Select All"
|
222 |
msgstr "בחירת הכל"
|
223 |
|
225 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
226 |
# 'reverse' => __('Reverse', 'ure'),
|
227 |
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
228 |
+
#: ../includes/class-user-role-editor.php:977
|
229 |
msgid "Unselect All"
|
230 |
msgstr "לא לבחור שום דבר"
|
231 |
|
233 |
# 'reverse' => __('Reverse', 'ure'),
|
234 |
# 'update' => __('Update', 'ure'),
|
235 |
# wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
|
236 |
+
#: ../includes/class-user-role-editor.php:978
|
237 |
msgid "Reverse"
|
238 |
msgstr "להפוך"
|
239 |
|
241 |
# 'update' => __('Update', 'ure'),
|
242 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
243 |
# wpml-name: 06933067aafd48425d67bcb01bba5cb6
|
244 |
+
#: ../includes/class-user-role-editor.php:979
|
245 |
msgid "Update"
|
246 |
msgstr "עדכן"
|
247 |
|
249 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
250 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
251 |
# wpml-name: 85251872440cc94c6080a90451e018c4
|
252 |
+
#: ../includes/class-user-role-editor.php:980
|
253 |
msgid "Please confirm permissions update"
|
254 |
msgstr "נא לאשר את עדכון ההרשאות"
|
255 |
|
257 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
258 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
259 |
# wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
|
260 |
+
#: ../includes/class-user-role-editor.php:981
|
261 |
msgid "Add New Role"
|
262 |
msgstr "הוסף סוג משתמש חדש"
|
263 |
|
265 |
# 'delete_role' => __('Delete Role', 'ure'),
|
266 |
# 'cancel' => __('Cancel', 'ure'),
|
267 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
268 |
+
#: ../includes/class-user-role-editor.php:982
|
269 |
+
#: ../includes/class-user-role-editor.php:987
|
270 |
#, fuzzy
|
271 |
msgid "Rename Role"
|
272 |
msgstr "מחיקת סוג משתמש"
|
275 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
276 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
277 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
278 |
+
#: ../includes/class-user-role-editor.php:983
|
279 |
msgid " Role name (ID) can not be empty!"
|
280 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
281 |
|
283 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
284 |
# 'add_role' => __('Add Role', 'ure'),
|
285 |
# wpml-name: 7b94f04285f5efc287652bd40338e730
|
286 |
+
#: ../includes/class-user-role-editor.php:984
|
287 |
msgid ""
|
288 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
289 |
"only!"
|
290 |
msgstr ""
|
291 |
" שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
292 |
|
293 |
+
#: ../includes/class-user-role-editor.php:985
|
294 |
msgid ""
|
295 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
296 |
"it."
|
300 |
# 'add_role' => __('Add Role', 'ure'),
|
301 |
# 'delete_role' => __('Delete Role', 'ure'),
|
302 |
# wpml-name: 1453b39dcc15a372640d960c6db7db25
|
303 |
+
#: ../includes/class-user-role-editor.php:986
|
304 |
msgid "Add Role"
|
305 |
msgstr "הוספת תפקיד"
|
306 |
|
308 |
# 'delete_role' => __('Delete Role', 'ure'),
|
309 |
# 'cancel' => __('Cancel', 'ure'),
|
310 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
311 |
+
#: ../includes/class-user-role-editor.php:988
|
312 |
msgid "Delete Role"
|
313 |
msgstr "מחיקת סוג משתמש"
|
314 |
|
316 |
# 'cancel' => __('Cancel', 'ure'),
|
317 |
# 'add_capability' => __('Add Capability', 'ure'),
|
318 |
# wpml-name: ea4788705e6873b424c65e91c2846b19
|
319 |
+
#: ../includes/class-user-role-editor.php:989
|
320 |
msgid "Cancel"
|
321 |
msgstr "ביטול"
|
322 |
|
324 |
# 'add_capability' => __('Add Capability', 'ure'),
|
325 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
326 |
# wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
|
327 |
+
#: ../includes/class-user-role-editor.php:990
|
328 |
msgid "Add Capability"
|
329 |
msgstr "הוספת יכולת"
|
330 |
|
332 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
333 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
334 |
# wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
|
335 |
+
#: ../includes/class-user-role-editor.php:991
|
336 |
+
#: ../includes/class-user-role-editor.php:1000
|
337 |
msgid "Delete Capability"
|
338 |
msgstr "מחיקת יכולת"
|
339 |
|
341 |
# 'reset' => __('Reset', 'ure'),
|
342 |
# 'reset_warning' => __('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation could be needed. Continue?', 'ure'),
|
343 |
# wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
|
344 |
+
#: ../includes/class-user-role-editor.php:992
|
345 |
msgid "Reset"
|
346 |
msgstr "איפוס"
|
347 |
|
348 |
+
#: ../includes/class-user-role-editor.php:993
|
349 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: ../includes/class-user-role-editor.php:994
|
353 |
msgid ""
|
354 |
"If any plugins have changed capabilities in any way upon installation (such "
|
355 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: ../includes/class-user-role-editor.php:995
|
359 |
msgid ""
|
360 |
"For more information on how to undo changes and restore plugin capabilities "
|
361 |
"go to"
|
365 |
# __('Contributor', 'ure');
|
366 |
# __('Subscriber', 'ure');
|
367 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
368 |
+
#: ../includes/class-user-role-editor.php:997
|
369 |
msgid "Continue?"
|
370 |
msgstr ""
|
371 |
|
373 |
# 'default_role' => __('Default Role', 'ure'),
|
374 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
375 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
376 |
+
#: ../includes/class-user-role-editor.php:998
|
377 |
msgid "Default Role"
|
378 |
msgstr "תפקיד ברירת מחדל"
|
379 |
|
381 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
382 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
383 |
# wpml-name: f28d52a1096a73cff427d1216dc578ad
|
384 |
+
#: ../includes/class-user-role-editor.php:999
|
385 |
msgid "Set New Default Role"
|
386 |
msgstr "הגדר תפקיד ברירת מחדל חדש"
|
387 |
|
389 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
390 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
391 |
# wpml-name: b8827a096ab461b8e26931adf82c8d85
|
392 |
+
#: ../includes/class-user-role-editor.php:1001
|
393 |
msgid ""
|
394 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
395 |
"or other custom code"
|
401 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
402 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
403 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
404 |
+
#: ../includes/class-user-role-editor.php:1002
|
405 |
msgid " Capability name (ID) can not be empty!"
|
406 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
407 |
|
409 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
410 |
# ) );
|
411 |
# wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
|
412 |
+
#: ../includes/class-user-role-editor.php:1003
|
413 |
msgid ""
|
414 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
415 |
"underscore only!"
|
420 |
# <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
|
421 |
# <td>
|
422 |
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
423 |
+
#: ../includes/class-user-role-editor.php:1032
|
424 |
+
#: ../includes/class-user-role-editor.php:1065
|
425 |
msgid "Other Roles"
|
426 |
msgstr "תפקידים אחרים"
|
427 |
|
429 |
# echo $output . ' >> <a href="' . wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&user_id={$user->ID}", "ure_user_{$user->ID}") . '">' . __('Edit', 'ure') . '</a>';
|
430 |
# ?>
|
431 |
# wpml-name: 7dce122004969d56ae2e0245cb754d35
|
432 |
+
#: ../includes/class-user-role-editor.php:1046
|
433 |
msgid "Edit"
|
434 |
msgstr "עריכה"
|
435 |
|
437 |
msgid "Select Role and change its capabilities:"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
441 |
msgid "Show capabilities in human readable form"
|
442 |
msgstr ""
|
443 |
|
457 |
# '">' . __('Capabilities', 'ure') . '</a>';
|
458 |
# }
|
459 |
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
460 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
461 |
#, fuzzy
|
462 |
msgid "Core capabilities:"
|
463 |
msgstr "יכולות"
|
464 |
|
465 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
466 |
msgid "Quick filter:"
|
467 |
msgstr ""
|
468 |
|
470 |
# '">' . __('Capabilities', 'ure') . '</a>';
|
471 |
# }
|
472 |
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
473 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
474 |
#, fuzzy
|
475 |
msgid "Custom capabilities:"
|
476 |
msgstr "יכולות"
|
479 |
# $this->show_message(__('Error: wrong request', 'URE'));
|
480 |
# return false;
|
481 |
# wpml-name: a4b9ac7e09dc5996d763f6bae29fd31a
|
482 |
+
#: ../includes/class-ure-lib.php:245
|
483 |
msgid "Error: wrong request"
|
484 |
msgstr "שגיאה: בקשה מוטעית"
|
485 |
|
487 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
488 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
489 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
490 |
+
#: ../includes/class-ure-lib.php:278 ../includes/class-ure-lib.php:289
|
491 |
#, fuzzy
|
492 |
msgid "Role name (ID): "
|
493 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
496 |
msgid "Display Role Name: "
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:282
|
500 |
msgid "Make copy of: "
|
501 |
msgstr ""
|
502 |
|
504 |
# 'delete_role' => __('Delete Role', 'ure'),
|
505 |
# 'cancel' => __('Cancel', 'ure'),
|
506 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
507 |
+
#: ../includes/class-ure-lib.php:298
|
508 |
#, fuzzy
|
509 |
msgid "Select Role:"
|
510 |
msgstr "מחיקת סוג משתמש"
|
513 |
# 'delete_role' => __('Delete Role', 'ure'),
|
514 |
# 'cancel' => __('Cancel', 'ure'),
|
515 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
516 |
+
#: ../includes/class-ure-lib.php:313
|
517 |
#, fuzzy
|
518 |
msgid "Delete:"
|
519 |
msgstr "מחיקת סוג משתמש"
|
522 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
523 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
524 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
525 |
+
#: ../includes/class-ure-lib.php:320
|
526 |
#, fuzzy
|
527 |
msgid "Capability name (ID): "
|
528 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
531 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
532 |
# $this->current_role = '';
|
533 |
# wpml-name: f97d2eb0a66987899d02bb180936afa3
|
534 |
+
#: ../includes/class-ure-lib.php:434
|
535 |
msgid "Error: "
|
536 |
msgstr "שגיאה:"
|
537 |
|
539 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
540 |
# $this->current_role = '';
|
541 |
# wpml-name: bbbabdbe1b262f75d99d62880b953be1
|
542 |
+
#: ../includes/class-ure-lib.php:434
|
543 |
msgid "Role"
|
544 |
msgstr "סוג משתמש:"
|
545 |
|
547 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
548 |
# $this->current_role = '';
|
549 |
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
550 |
+
#: ../includes/class-ure-lib.php:435
|
551 |
msgid "does not exist"
|
552 |
msgstr "לא נמצא"
|
553 |
|
555 |
# $mess = __('Role is updated successfully', 'ure');
|
556 |
# } else {
|
557 |
# wpml-name: 9fd866f99b55510d60384b7efeb22018
|
558 |
+
#: ../includes/class-ure-lib.php:478
|
559 |
msgid "Role is updated successfully"
|
560 |
msgstr "התפקיד עודכן בהצלחה"
|
561 |
|
563 |
# $mess = __('Roles are updated for all network', 'ure');
|
564 |
# }
|
565 |
# wpml-name: f89c187756348dad944b0fcca790fde6
|
566 |
+
#: ../includes/class-ure-lib.php:480
|
567 |
msgid "Roles are updated for all network"
|
568 |
msgstr "התפקידים עודכנו עבור כל הרשת"
|
569 |
|
571 |
# $mess = __('Error occured during role(s) update', 'ure');
|
572 |
# }
|
573 |
# wpml-name: 9f528ca4741155f636c4331b19f2b170
|
574 |
+
#: ../includes/class-ure-lib.php:486
|
575 |
msgid "Error occured during role(s) update"
|
576 |
msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
|
577 |
|
579 |
# $mess = __('User capabilities are updated successfully', 'ure');
|
580 |
# } else {
|
581 |
# wpml-name: ee37618edaa53156b3a18d543ec60412
|
582 |
+
#: ../includes/class-ure-lib.php:493
|
583 |
msgid "User capabilities are updated successfully"
|
584 |
msgstr "יכולות המשתמש עודכנו בהצלחה"
|
585 |
|
587 |
# $mess = __('Error occured during user update', 'ure');
|
588 |
# }
|
589 |
# wpml-name: f7283da5501e7e1cb13255d323859feb
|
590 |
+
#: ../includes/class-ure-lib.php:498
|
591 |
msgid "Error occured during user update"
|
592 |
msgstr "קרתה שגיאה בזמן עדכון המשתמש"
|
593 |
|
595 |
# $this->notification = __('User Roles are restored to WordPress default values. ', 'ure');
|
596 |
# } else if ($action == 'update') {
|
597 |
# wpml-name: 7182950b4f92d446844be24cfea6276a
|
598 |
+
#: ../includes/class-ure-lib.php:556
|
599 |
msgid "User Roles are restored to WordPress default values. "
|
600 |
msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל של וורדפרס."
|
601 |
|
603 |
# $link = '<a href="' . $url . '" title="read about ' . $capability . ' user capability" target="new"><img src="' . URE_PLUGIN_URL . '/images/help.png" alt="' . __('Help', 'ure') . '" /></a>';
|
604 |
# } else {
|
605 |
# wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
|
606 |
+
#: ../includes/class-ure-lib.php:1445
|
607 |
msgid "Help"
|
608 |
msgstr "עזרה"
|
609 |
|
611 |
# $this->show_message('Error! ' . __('Error is occur. Please check the log file.', 'ure'));
|
612 |
# }
|
613 |
# wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
|
614 |
+
#: ../includes/class-ure-lib.php:1913
|
615 |
msgid "Error is occur. Please check the log file."
|
616 |
msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
617 |
|
619 |
# return __('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'ure');
|
620 |
# }
|
621 |
# wpml-name: f9182094e24a9e2fbb7317b1724a69c9
|
622 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
623 |
msgid ""
|
624 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
625 |
"only!"
|
626 |
msgstr ""
|
627 |
"שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
|
628 |
|
629 |
+
#: ../includes/class-ure-lib.php:1963 ../includes/class-ure-lib.php:2030
|
630 |
msgid ""
|
631 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
632 |
"characters to it."
|
636 |
# return sprintf('Error! ' . __('Role %s exists already', 'ure'), $user_role_id);
|
637 |
# }
|
638 |
# wpml-name: 61b6d86154b5437be56e6565f2820391
|
639 |
+
#: ../includes/class-ure-lib.php:1978
|
640 |
#, php-format
|
641 |
msgid "Role %s exists already"
|
642 |
msgstr "סוג המשתמש %s כבר קיים"
|
645 |
# $mess = 'Error! ' . __('Error is encountered during new role create operation', 'ure');
|
646 |
# } else {
|
647 |
# wpml-name: e0618b1a4160611a46b1b95acab0821c
|
648 |
+
#: ../includes/class-ure-lib.php:1993
|
649 |
msgid "Error is encountered during new role create operation"
|
650 |
msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
651 |
|
653 |
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
654 |
# }
|
655 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
656 |
+
#: ../includes/class-ure-lib.php:1995
|
657 |
#, php-format
|
658 |
msgid "Role %s is created successfully"
|
659 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
660 |
|
661 |
+
#: ../includes/class-ure-lib.php:2019
|
662 |
msgid "Error: Role ID is empty!"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: ../includes/class-ure-lib.php:2037
|
666 |
msgid "Error: Empty role display name is not allowed."
|
667 |
msgstr ""
|
668 |
|
670 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
671 |
# $this->current_role = '';
|
672 |
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
673 |
+
#: ../includes/class-ure-lib.php:2044
|
674 |
#, fuzzy, php-format
|
675 |
msgid "Role %s does not exists"
|
676 |
msgstr "לא נמצא"
|
679 |
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
680 |
# }
|
681 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
682 |
+
#: ../includes/class-ure-lib.php:2052
|
683 |
#, fuzzy, php-format
|
684 |
msgid "Role %s is renamed to %s successfully"
|
685 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
688 |
# $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
|
689 |
# } else {
|
690 |
# wpml-name: 5ca27dda122445e597586a22e18088e6
|
691 |
+
#: ../includes/class-ure-lib.php:2125
|
692 |
msgid "Error encountered during role delete operation"
|
693 |
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
694 |
|
696 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
697 |
# }
|
698 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
699 |
+
#: ../includes/class-ure-lib.php:2127
|
700 |
msgid "Unused roles are deleted successfully"
|
701 |
msgstr ""
|
702 |
|
704 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
705 |
# }
|
706 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
707 |
+
#: ../includes/class-ure-lib.php:2129
|
708 |
#, php-format
|
709 |
msgid "Role %s is deleted successfully"
|
710 |
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
713 |
# $errorMessage = 'Error! ' . __('Error encountered during default role change operation', 'ure');
|
714 |
# if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
|
715 |
# wpml-name: b64bfe4842bc0638b79a24687976394e
|
716 |
+
#: ../includes/class-ure-lib.php:2154
|
717 |
msgid "Error encountered during default role change operation"
|
718 |
msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
|
719 |
|
721 |
# $mess = sprintf(__('Default role for new users is set to %s successfully', 'ure'), $wp_roles->role_names[$user_role_id]);
|
722 |
# }
|
723 |
# wpml-name: 94978d82edc73eba0f44bc7bceb299f4
|
724 |
+
#: ../includes/class-ure-lib.php:2160
|
725 |
#, php-format
|
726 |
msgid "Default role for new users is set to %s successfully"
|
727 |
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
730 |
# __('Editor', 'ure');
|
731 |
# __('Author', 'ure');
|
732 |
# wpml-name: 344a7f427fb765610ef96eb7bce95257
|
733 |
+
#: ../includes/class-ure-lib.php:2179
|
734 |
msgid "Editor"
|
735 |
msgstr "עורך"
|
736 |
|
738 |
# __('Author', 'ure');
|
739 |
# __('Contributor', 'ure');
|
740 |
# wpml-name: a517747c3d12f99244ae598910d979c5
|
741 |
+
#: ../includes/class-ure-lib.php:2180
|
742 |
msgid "Author"
|
743 |
msgstr "כותב"
|
744 |
|
746 |
# __('Contributor', 'ure');
|
747 |
# __('Subscriber', 'ure');
|
748 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
749 |
+
#: ../includes/class-ure-lib.php:2181
|
750 |
msgid "Contributor"
|
751 |
msgstr "תורם"
|
752 |
|
754 |
# __('Subscriber', 'ure');
|
755 |
# // Standard WordPress capabilities
|
756 |
# wpml-name: 992c4a5b4628d8ebf671cf460254ee81
|
757 |
+
#: ../includes/class-ure-lib.php:2182
|
758 |
msgid "Subscriber"
|
759 |
msgstr "מנוי"
|
760 |
|
762 |
# __('Switch themes', 'ure');
|
763 |
# __('Edit themes', 'ure');
|
764 |
# wpml-name: 87d980c0c79638536655ce7fa0a4b85d
|
765 |
+
#: ../includes/class-ure-lib.php:2184
|
766 |
msgid "Switch themes"
|
767 |
msgstr "החלפת תבניות"
|
768 |
|
770 |
# __('Edit themes', 'ure');
|
771 |
# __('Activate plugins', 'ure');
|
772 |
# wpml-name: 8395d1904c778ee1b2762e07a6a03878
|
773 |
+
#: ../includes/class-ure-lib.php:2185
|
774 |
msgid "Edit themes"
|
775 |
msgstr "עריכת תבניות"
|
776 |
|
778 |
# __('Activate plugins', 'ure');
|
779 |
# __('Edit plugins', 'ure');
|
780 |
# wpml-name: c38bc47406355ef06ad3e10a98505536
|
781 |
+
#: ../includes/class-ure-lib.php:2186
|
782 |
msgid "Activate plugins"
|
783 |
msgstr "הפעלת תוספים"
|
784 |
|
786 |
# __('Edit plugins', 'ure');
|
787 |
# __('Edit users', 'ure');
|
788 |
# wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
|
789 |
+
#: ../includes/class-ure-lib.php:2187
|
790 |
msgid "Edit plugins"
|
791 |
msgstr "עריכת תוספים"
|
792 |
|
794 |
# __('Edit users', 'ure');
|
795 |
# __('Edit files', 'ure');
|
796 |
# wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
|
797 |
+
#: ../includes/class-ure-lib.php:2188
|
798 |
msgid "Edit users"
|
799 |
msgstr "עריכת משתמשים"
|
800 |
|
802 |
# __('Edit files', 'ure');
|
803 |
# __('Manage options', 'ure');
|
804 |
# wpml-name: 91c6e7a54b91cdc161f71958c597ed11
|
805 |
+
#: ../includes/class-ure-lib.php:2189
|
806 |
msgid "Edit files"
|
807 |
msgstr "עריכת קבצים"
|
808 |
|
810 |
# __('Manage options', 'ure');
|
811 |
# __('Moderate comments', 'ure');
|
812 |
# wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
|
813 |
+
#: ../includes/class-ure-lib.php:2190
|
814 |
msgid "Manage options"
|
815 |
msgstr "ניהול אפשרויות אתר"
|
816 |
|
818 |
# __('Moderate comments', 'ure');
|
819 |
# __('Manage categories', 'ure');
|
820 |
# wpml-name: abb293cb5d17f4acca429ea13d74c593
|
821 |
+
#: ../includes/class-ure-lib.php:2191
|
822 |
msgid "Moderate comments"
|
823 |
msgstr "ניהול תגובות"
|
824 |
|
826 |
# __('Manage categories', 'ure');
|
827 |
# __('Manage links', 'ure');
|
828 |
# wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
|
829 |
+
#: ../includes/class-ure-lib.php:2192
|
830 |
msgid "Manage categories"
|
831 |
msgstr "ניהול קטגוריות"
|
832 |
|
834 |
# __('Manage links', 'ure');
|
835 |
# __('Upload files', 'ure');
|
836 |
# wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
|
837 |
+
#: ../includes/class-ure-lib.php:2193
|
838 |
msgid "Manage links"
|
839 |
msgstr "ניהול קישורים"
|
840 |
|
842 |
# __('Upload files', 'ure');
|
843 |
# __('Import', 'ure');
|
844 |
# wpml-name: c7de86f69db264c3950d8ae46ed2e33f
|
845 |
+
#: ../includes/class-ure-lib.php:2194
|
846 |
msgid "Upload files"
|
847 |
msgstr "העלאת קבצים"
|
848 |
|
850 |
# __('Import', 'ure');
|
851 |
# __('Unfiltered html', 'ure');
|
852 |
# wpml-name: 72d6d7a1885885bb55a565fd1070581a
|
853 |
+
#: ../includes/class-ure-lib.php:2195
|
854 |
msgid "Import"
|
855 |
msgstr "יבוא"
|
856 |
|
858 |
# __('Unfiltered html', 'ure');
|
859 |
# __('Edit posts', 'ure');
|
860 |
# wpml-name: fdd95e5640d6d73230b7544ac261457a
|
861 |
+
#: ../includes/class-ure-lib.php:2196
|
862 |
msgid "Unfiltered html"
|
863 |
msgstr "עריכת HTML"
|
864 |
|
866 |
# __('Edit posts', 'ure');
|
867 |
# __('Edit others posts', 'ure');
|
868 |
# wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
|
869 |
+
#: ../includes/class-ure-lib.php:2197
|
870 |
msgid "Edit posts"
|
871 |
msgstr "עריכת פוסטים"
|
872 |
|
874 |
# __('Edit others posts', 'ure');
|
875 |
# __('Edit published posts', 'ure');
|
876 |
# wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
|
877 |
+
#: ../includes/class-ure-lib.php:2198
|
878 |
msgid "Edit others posts"
|
879 |
msgstr "עריכת פוסטים של אחרים"
|
880 |
|
882 |
# __('Edit published posts', 'ure');
|
883 |
# __('Publish posts', 'ure');
|
884 |
# wpml-name: d42efc04e7900de59ed3667c971e9e9d
|
885 |
+
#: ../includes/class-ure-lib.php:2199
|
886 |
msgid "Edit published posts"
|
887 |
msgstr "עריכת פוסטים שפורסמו"
|
888 |
|
890 |
# __('Publish posts', 'ure');
|
891 |
# __('Edit pages', 'ure');
|
892 |
# wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
|
893 |
+
#: ../includes/class-ure-lib.php:2200
|
894 |
msgid "Publish posts"
|
895 |
msgstr "פוסטים שפורסמו"
|
896 |
|
898 |
# __('Edit pages', 'ure');
|
899 |
# __('Read', 'ure');
|
900 |
# wpml-name: e7a51430fa0fbb32587c083ffae4b525
|
901 |
+
#: ../includes/class-ure-lib.php:2201
|
902 |
msgid "Edit pages"
|
903 |
msgstr "עריכת עמודים"
|
904 |
|
906 |
# __('Read', 'ure');
|
907 |
# __('Level 10', 'ure');
|
908 |
# wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
|
909 |
+
#: ../includes/class-ure-lib.php:2202
|
910 |
msgid "Read"
|
911 |
msgstr "קורא"
|
912 |
|
914 |
# __('Level 10', 'ure');
|
915 |
# __('Level 9', 'ure');
|
916 |
# wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
|
917 |
+
#: ../includes/class-ure-lib.php:2203
|
918 |
msgid "Level 10"
|
919 |
msgstr "דרגה 10"
|
920 |
|
922 |
# __('Level 9', 'ure');
|
923 |
# __('Level 8', 'ure');
|
924 |
# wpml-name: d48252bc9cffec4bed5028a7c71d8196
|
925 |
+
#: ../includes/class-ure-lib.php:2204
|
926 |
msgid "Level 9"
|
927 |
msgstr "דרגה 9"
|
928 |
|
930 |
# __('Level 8', 'ure');
|
931 |
# __('Level 7', 'ure');
|
932 |
# wpml-name: 625fef0c34a92b3685266a47f16c85dd
|
933 |
+
#: ../includes/class-ure-lib.php:2205
|
934 |
msgid "Level 8"
|
935 |
msgstr "דרגה 8"
|
936 |
|
938 |
# __('Level 7', 'ure');
|
939 |
# __('Level 6', 'ure');
|
940 |
# wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
|
941 |
+
#: ../includes/class-ure-lib.php:2206
|
942 |
msgid "Level 7"
|
943 |
msgstr "דרגה 7"
|
944 |
|
946 |
# __('Level 6', 'ure');
|
947 |
# __('Level 5', 'ure');
|
948 |
# wpml-name: b30ce92fb9295725ef29254ba5ae17e1
|
949 |
+
#: ../includes/class-ure-lib.php:2207
|
950 |
msgid "Level 6"
|
951 |
msgstr "דרגה 6"
|
952 |
|
954 |
# __('Level 5', 'ure');
|
955 |
# __('Level 4', 'ure');
|
956 |
# wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
|
957 |
+
#: ../includes/class-ure-lib.php:2208
|
958 |
msgid "Level 5"
|
959 |
msgstr "דרגה 5"
|
960 |
|
962 |
# __('Level 4', 'ure');
|
963 |
# __('Level 3', 'ure');
|
964 |
# wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
|
965 |
+
#: ../includes/class-ure-lib.php:2209
|
966 |
msgid "Level 4"
|
967 |
msgstr "דרגה 4"
|
968 |
|
970 |
# __('Level 3', 'ure');
|
971 |
# __('Level 2', 'ure');
|
972 |
# wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
|
973 |
+
#: ../includes/class-ure-lib.php:2210
|
974 |
msgid "Level 3"
|
975 |
msgstr "דרגה 3"
|
976 |
|
978 |
# __('Level 2', 'ure');
|
979 |
# __('Level 1', 'ure');
|
980 |
# wpml-name: 228e9da47384bacde793a2b78d488bb0
|
981 |
+
#: ../includes/class-ure-lib.php:2211
|
982 |
msgid "Level 2"
|
983 |
msgstr "דרגה 2"
|
984 |
|
986 |
# __('Level 1', 'ure');
|
987 |
# __('Level 0', 'ure');
|
988 |
# wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
|
989 |
+
#: ../includes/class-ure-lib.php:2212
|
990 |
msgid "Level 1"
|
991 |
msgstr "דרגה 1"
|
992 |
|
994 |
# __('Level 0', 'ure');
|
995 |
# __('Edit others pages', 'ure');
|
996 |
# wpml-name: 057e95a59e032dbed970592dd1245092
|
997 |
+
#: ../includes/class-ure-lib.php:2213
|
998 |
msgid "Level 0"
|
999 |
msgstr "דרגה 0"
|
1000 |
|
1002 |
# __('Edit others pages', 'ure');
|
1003 |
# __('Edit published pages', 'ure');
|
1004 |
# wpml-name: b10af907824940fe6a5aa0a77c62be6f
|
1005 |
+
#: ../includes/class-ure-lib.php:2214
|
1006 |
msgid "Edit others pages"
|
1007 |
msgstr "עריכת דפים של אחרים"
|
1008 |
|
1010 |
# __('Edit published pages', 'ure');
|
1011 |
# __('Publish pages', 'ure');
|
1012 |
# wpml-name: c5bfc24b0b891c9465134b83b2c6c259
|
1013 |
+
#: ../includes/class-ure-lib.php:2215
|
1014 |
msgid "Edit published pages"
|
1015 |
msgstr "עריכת דפים שפורסמו"
|
1016 |
|
1018 |
# __('Publish pages', 'ure');
|
1019 |
# __('Delete pages', 'ure');
|
1020 |
# wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
|
1021 |
+
#: ../includes/class-ure-lib.php:2216
|
1022 |
msgid "Publish pages"
|
1023 |
msgstr "פרסום דפים"
|
1024 |
|
1026 |
# __('Delete pages', 'ure');
|
1027 |
# __('Delete others pages', 'ure');
|
1028 |
# wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
|
1029 |
+
#: ../includes/class-ure-lib.php:2217
|
1030 |
msgid "Delete pages"
|
1031 |
msgstr "מחיקת דפים"
|
1032 |
|
1034 |
# __('Delete others pages', 'ure');
|
1035 |
# __('Delete published pages', 'ure');
|
1036 |
# wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
|
1037 |
+
#: ../includes/class-ure-lib.php:2218
|
1038 |
msgid "Delete others pages"
|
1039 |
msgstr "מחיקת דפים של אחרים"
|
1040 |
|
1042 |
# __('Delete published pages', 'ure');
|
1043 |
# __('Delete posts', 'ure');
|
1044 |
# wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
|
1045 |
+
#: ../includes/class-ure-lib.php:2219
|
1046 |
msgid "Delete published pages"
|
1047 |
msgstr "מחיקת דפים שפורסמו"
|
1048 |
|
1050 |
# __('Delete posts', 'ure');
|
1051 |
# __('Delete others posts', 'ure');
|
1052 |
# wpml-name: 3dce6f688c85f06c63224b5c3be13919
|
1053 |
+
#: ../includes/class-ure-lib.php:2220
|
1054 |
msgid "Delete posts"
|
1055 |
msgstr "מחיקת פוסטים"
|
1056 |
|
1058 |
# __('Delete others posts', 'ure');
|
1059 |
# __('Delete published posts', 'ure');
|
1060 |
# wpml-name: c0496287732814df690c8966027a58d6
|
1061 |
+
#: ../includes/class-ure-lib.php:2221
|
1062 |
msgid "Delete others posts"
|
1063 |
msgstr "מחיקת פוסטים של אחרים"
|
1064 |
|
1066 |
# __('Delete published posts', 'ure');
|
1067 |
# __('Delete private posts', 'ure');
|
1068 |
# wpml-name: b0a2d2039494d73f81f4e476bfda24da
|
1069 |
+
#: ../includes/class-ure-lib.php:2222
|
1070 |
msgid "Delete published posts"
|
1071 |
msgstr "מחיקת פוסטים שפורסמו"
|
1072 |
|
1074 |
# __('Delete private posts', 'ure');
|
1075 |
# __('Edit private posts', 'ure');
|
1076 |
# wpml-name: dcd02c374764e49b36f0f959cc2917bb
|
1077 |
+
#: ../includes/class-ure-lib.php:2223
|
1078 |
msgid "Delete private posts"
|
1079 |
msgstr "מחיקת פוסטים פרטיים"
|
1080 |
|
1082 |
# __('Edit private posts', 'ure');
|
1083 |
# __('Read private posts', 'ure');
|
1084 |
# wpml-name: da9ee842794f7caf9fa32271073d5f7a
|
1085 |
+
#: ../includes/class-ure-lib.php:2224
|
1086 |
msgid "Edit private posts"
|
1087 |
msgstr "עריכת פוסטים פרטיים"
|
1088 |
|
1090 |
# __('Read private posts', 'ure');
|
1091 |
# __('Delete private pages', 'ure');
|
1092 |
# wpml-name: eab0355307288f6480f8c53a0d953d79
|
1093 |
+
#: ../includes/class-ure-lib.php:2225
|
1094 |
msgid "Read private posts"
|
1095 |
msgstr "קריאת פוסטים פרטיים"
|
1096 |
|
1098 |
# __('Delete private pages', 'ure');
|
1099 |
# __('Edit private pages', 'ure');
|
1100 |
# wpml-name: 2136c12e2beeadfe0da80a36ef967eca
|
1101 |
+
#: ../includes/class-ure-lib.php:2226
|
1102 |
msgid "Delete private pages"
|
1103 |
msgstr "מחיקת עמודים פרטיים"
|
1104 |
|
1106 |
# __('Edit private pages', 'ure');
|
1107 |
# __('Read private pages', 'ure');
|
1108 |
# wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
|
1109 |
+
#: ../includes/class-ure-lib.php:2227
|
1110 |
msgid "Edit private pages"
|
1111 |
msgstr "מחיקת עמודים פרטיים"
|
1112 |
|
1114 |
# __('Read private pages', 'ure');
|
1115 |
# __('Delete users', 'ure');
|
1116 |
# wpml-name: 5faa3f2e9585e107dc5f23748a825882
|
1117 |
+
#: ../includes/class-ure-lib.php:2228
|
1118 |
msgid "Read private pages"
|
1119 |
msgstr "קריאת עמודים פרטיים"
|
1120 |
|
1122 |
# __('Delete users', 'ure');
|
1123 |
# __('Create users', 'ure');
|
1124 |
# wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
|
1125 |
+
#: ../includes/class-ure-lib.php:2229
|
1126 |
msgid "Delete users"
|
1127 |
msgstr "מחיקת משתמשים"
|
1128 |
|
1130 |
# __('Create users', 'ure');
|
1131 |
# __('Unfiltered upload', 'ure');
|
1132 |
# wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
|
1133 |
+
#: ../includes/class-ure-lib.php:2230
|
1134 |
msgid "Create users"
|
1135 |
msgstr "יצירת משתמשים"
|
1136 |
|
1138 |
# __('Unfiltered upload', 'ure');
|
1139 |
# __('Edit dashboard', 'ure');
|
1140 |
# wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
|
1141 |
+
#: ../includes/class-ure-lib.php:2231
|
1142 |
msgid "Unfiltered upload"
|
1143 |
msgstr "העלאת קבצים חופשית"
|
1144 |
|
1146 |
# __('Edit dashboard', 'ure');
|
1147 |
# __('Update plugins', 'ure');
|
1148 |
# wpml-name: b5577d27ebfdd60a3bda83ae726d574b
|
1149 |
+
#: ../includes/class-ure-lib.php:2232
|
1150 |
msgid "Edit dashboard"
|
1151 |
msgstr "שינוי לוח הבקרה"
|
1152 |
|
1154 |
# __('Update plugins', 'ure');
|
1155 |
# __('Delete plugins', 'ure');
|
1156 |
# wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
|
1157 |
+
#: ../includes/class-ure-lib.php:2233
|
1158 |
msgid "Update plugins"
|
1159 |
msgstr "עדכון תוספים"
|
1160 |
|
1162 |
# __('Delete plugins', 'ure');
|
1163 |
# __('Install plugins', 'ure');
|
1164 |
# wpml-name: f2a839940dae3934317d8d6a6f647ebd
|
1165 |
+
#: ../includes/class-ure-lib.php:2234
|
1166 |
msgid "Delete plugins"
|
1167 |
msgstr "מחיקת תוספים"
|
1168 |
|
1170 |
# __('Install plugins', 'ure');
|
1171 |
# __('Update themes', 'ure');
|
1172 |
# wpml-name: 9d06472988c53bfc768bc7b6a788b697
|
1173 |
+
#: ../includes/class-ure-lib.php:2235
|
1174 |
msgid "Install plugins"
|
1175 |
msgstr "התקנת תוספים"
|
1176 |
|
1178 |
# __('Update themes', 'ure');
|
1179 |
# __('Install themes', 'ure');
|
1180 |
# wpml-name: 504ea4a27260ac1e8822c5877ffe526b
|
1181 |
+
#: ../includes/class-ure-lib.php:2236
|
1182 |
msgid "Update themes"
|
1183 |
msgstr "עדכון תבניות"
|
1184 |
|
1186 |
# __('Install themes', 'ure');
|
1187 |
# __('Update core', 'ure');
|
1188 |
# wpml-name: a7d67fb17876569a4590902d3566a6fd
|
1189 |
+
#: ../includes/class-ure-lib.php:2237
|
1190 |
msgid "Install themes"
|
1191 |
msgstr "התקנת תבניות חדשות"
|
1192 |
|
1194 |
# __('Update core', 'ure');
|
1195 |
# __('List users', 'ure');
|
1196 |
# wpml-name: e56e5b87db548cd42be7a8a0f916205d
|
1197 |
+
#: ../includes/class-ure-lib.php:2238
|
1198 |
msgid "Update core"
|
1199 |
msgstr "עדכון וורדפרס"
|
1200 |
|
1202 |
# __('List users', 'ure');
|
1203 |
# __('Remove users', 'ure');
|
1204 |
# wpml-name: f923f903857a5387d3db70494e074632
|
1205 |
+
#: ../includes/class-ure-lib.php:2239
|
1206 |
msgid "List users"
|
1207 |
msgstr "בצפייה במשתמשים"
|
1208 |
|
1210 |
# __('Remove users', 'ure');
|
1211 |
# __('Add users', 'ure');
|
1212 |
# wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
|
1213 |
+
#: ../includes/class-ure-lib.php:2240
|
1214 |
msgid "Remove users"
|
1215 |
msgstr "הסרת משתמשים"
|
1216 |
|
1218 |
# __('Add users', 'ure');
|
1219 |
# __('Promote users', 'ure');
|
1220 |
# wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
|
1221 |
+
#: ../includes/class-ure-lib.php:2241
|
1222 |
msgid "Add users"
|
1223 |
msgstr "הוספת משתמשים"
|
1224 |
|
1226 |
# __('Promote users', 'ure');
|
1227 |
# __('Edit theme options', 'ure');
|
1228 |
# wpml-name: 12f4ba95cdfd04b791820b9c20887913
|
1229 |
+
#: ../includes/class-ure-lib.php:2242
|
1230 |
msgid "Promote users"
|
1231 |
msgstr "שינוי משתמשים"
|
1232 |
|
1234 |
# __('Edit theme options', 'ure');
|
1235 |
# __('Delete themes', 'ure');
|
1236 |
# wpml-name: 8841974497684dad4d55beaf2b6c52ef
|
1237 |
+
#: ../includes/class-ure-lib.php:2243
|
1238 |
msgid "Edit theme options"
|
1239 |
msgstr "עריכת אפשרויות התבנית"
|
1240 |
|
1242 |
# __('Delete themes', 'ure');
|
1243 |
# __('Export', 'ure');
|
1244 |
# wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
|
1245 |
+
#: ../includes/class-ure-lib.php:2244
|
1246 |
msgid "Delete themes"
|
1247 |
msgstr "מחיקת תבניות"
|
1248 |
|
1250 |
# __('Export', 'ure');
|
1251 |
# }
|
1252 |
# wpml-name: 0095a9fa74d1713e43e370a7d7846224
|
1253 |
+
#: ../includes/class-ure-lib.php:2245
|
1254 |
msgid "Export"
|
1255 |
msgstr "ייצוא תוכן"
|
1256 |
|
1258 |
# return 'Error! ' . __('Error: Capability name must contain latin characters and digits only!', 'ure');
|
1259 |
# ;
|
1260 |
# wpml-name: 03766b9586d3012af6fc788e85d39530
|
1261 |
+
#: ../includes/class-ure-lib.php:2358
|
1262 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
1263 |
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
1264 |
|
1266 |
# $mess = sprintf(__('Capability %s is added successfully', 'ure'), $user_capability);
|
1267 |
# } else {
|
1268 |
# wpml-name: 6dcaae98207ba2673da987515b02fe31
|
1269 |
+
#: ../includes/class-ure-lib.php:2371
|
1270 |
#, php-format
|
1271 |
msgid "Capability %s is added successfully"
|
1272 |
msgstr "היכולת %s נוספה בהצלחה"
|
1275 |
# $mess = sprintf('Error! ' . __('Capability %s exists already', 'ure'), $user_capability);
|
1276 |
# }
|
1277 |
# wpml-name: d5c1ec0556aadfa88cadffb62266b83d
|
1278 |
+
#: ../includes/class-ure-lib.php:2373
|
1279 |
#, php-format
|
1280 |
msgid "Capability %s exists already"
|
1281 |
msgstr "כבר קיימת יכולת בשם %s"
|
1284 |
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
1285 |
# }
|
1286 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
1287 |
+
#: ../includes/class-ure-lib.php:2402
|
1288 |
#, php-format
|
1289 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
1290 |
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
1293 |
# $mess = sprintf(__('Capability %s is removed successfully', 'ure'), $capability_id);
|
1294 |
# }
|
1295 |
# wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
|
1296 |
+
#: ../includes/class-ure-lib.php:2421
|
1297 |
#, php-format
|
1298 |
msgid "Capability %s is removed successfully"
|
1299 |
msgstr "היכולת %s הוסרה בהצלחה"
|
1300 |
|
1301 |
+
#: ../includes/class-ure-lib.php:2525
|
1302 |
msgid "Version:"
|
1303 |
msgstr ""
|
1304 |
|
1306 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/vladimir.png'; ?>);" target="_blank" href="http://www.shinephp.com/"><?php _e("Author's website", 'ure'); ?></a>
|
1307 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
|
1308 |
# wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
|
1309 |
+
#: ../includes/class-ure-lib.php:2526
|
1310 |
msgid "Author's website"
|
1311 |
msgstr "אתר היוצר"
|
1312 |
|
1314 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
|
1315 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#changelog"><?php _e('Changelog', 'ure'); ?></a>
|
1316 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1317 |
+
#: ../includes/class-ure-lib.php:2527
|
1318 |
msgid "Plugin webpage"
|
1319 |
msgstr "דף התוסף"
|
1320 |
|
1322 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
|
1323 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#changelog"><?php _e('Changelog', 'ure'); ?></a>
|
1324 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1325 |
+
#: ../includes/class-ure-lib.php:2528
|
1326 |
#, fuzzy
|
1327 |
msgid "Plugin download"
|
1328 |
msgstr "דף התוסף"
|
1331 |
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/faq-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#faq"><?php _e('FAQ', 'ure'); ?></a>
|
1332 |
# <?php
|
1333 |
# wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
|
1334 |
+
#: ../includes/class-ure-lib.php:2530
|
1335 |
msgid "FAQ"
|
1336 |
msgstr "שאלות נפוצות"
|
1337 |
|
1339 |
# <option value="none" selected="selected">' . __('None', 'ure') . '</option>';
|
1340 |
# $this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
|
1341 |
# wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
|
1342 |
+
#: ../includes/class-ure-lib.php:2578
|
1343 |
msgid "None"
|
1344 |
msgstr "תרום"
|
1345 |
|
1347 |
#
|
1348 |
#
|
1349 |
# wpml-name: 7aa3fd37413ab803143d28fcc65287cf
|
1350 |
+
#: ../includes/class-ure-lib.php:2605
|
1351 |
msgid "Delete All Unused Roles"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: ../includes/class-ure-lib.php:2629
|
1355 |
msgid "— No role for this site —"
|
1356 |
msgstr ""
|
1357 |
|
1359 |
# $user_info .= ' <span style="font-weight: bold; color:red;">'. esc_html__('Network Super Admin', 'ure') .'</span>';
|
1360 |
# }
|
1361 |
# wpml-name: 5213962fd38769a637909d6bc2a37197
|
1362 |
+
#: ../includes/ure-user-edit.php:32
|
1363 |
msgid "Network Super Admin"
|
1364 |
msgstr "מנהל-על של רשת"
|
1365 |
|
1367 |
# $this->display_box_start(__('Change capabilities for user', 'ure').$user_info, 'min-width:830px;');
|
1368 |
#
|
1369 |
# wpml-name: 3c4a4bfb7afa015a22eee9e5b9b098e2
|
1370 |
+
#: ../includes/ure-user-edit.php:35
|
1371 |
msgid "Change capabilities for user"
|
1372 |
msgstr "שינוי יכולות המשתמש"
|
1373 |
|
1374 |
+
#: ../includes/ure-user-edit.php:72
|
1375 |
msgid "Primary Role:"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: ../includes/ure-user-edit.php:82
|
1379 |
msgid "bbPress Role:"
|
1380 |
msgstr ""
|
1381 |
|
1383 |
# <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
|
1384 |
# <td>
|
1385 |
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
1386 |
+
#: ../includes/ure-user-edit.php:92
|
1387 |
#, fuzzy
|
1388 |
msgid "Other Roles:"
|
1389 |
msgstr "תפקידים אחרים"
|
1410 |
"deprecated capabilities."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: ../includes/class-ure-screen-help.php:26
|
1414 |
+
msgid ""
|
1415 |
+
"If turned off - capabilities section of selected user is shown in readonly "
|
1416 |
+
"mode. Administrator can not assign capabilities to the user directly. He "
|
1417 |
+
"should make it using roles only."
|
1418 |
+
msgstr ""
|
1419 |
+
|
1420 |
+
#: ../includes/class-ure-screen-help.php:46
|
1421 |
msgid ""
|
1422 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
1423 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
1424 |
"users list with role \"No rights\" at the separate tab then."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: ../includes/class-ure-screen-help.php:63
|
1428 |
msgid "Other default roles for new registered user"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: ../includes/class-ure-screen-help.php:64
|
1432 |
msgid ""
|
1433 |
"select roles below to assign them to the new user automatically as an "
|
1434 |
"addition to the primary role. Note for multisite environment: take into "
|
1436 |
"assigned to the new registered users."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: ../includes/class-ure-screen-help.php:82
|
1440 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: ../includes/class-ure-screen-help.php:83
|
1444 |
msgid ""
|
1445 |
"Super administrator only may create, edit and delete users under WordPress "
|
1446 |
"multi-site by default. Turn this option on in order to remove this "
|
lang/ure-hu_HU.mo
CHANGED
Binary file
|
lang/ure-hu_HU.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 4.16\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: \n"
|
@@ -22,22 +22,22 @@ 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:
|
26 |
msgid "General"
|
27 |
msgstr "Általános"
|
28 |
|
29 |
#: ../includes/settings-template.php:26
|
30 |
-
#: ../includes/class-user-role-editor.php:
|
31 |
msgid "Additional Modules"
|
32 |
msgstr "További modulok"
|
33 |
|
34 |
#: ../includes/settings-template.php:30
|
35 |
-
#: ../includes/class-user-role-editor.php:
|
36 |
msgid "Default Roles"
|
37 |
msgstr "Alap szerepkörök"
|
38 |
|
39 |
#: ../includes/settings-template.php:34
|
40 |
-
#: ../includes/class-user-role-editor.php:
|
41 |
msgid "Multisite"
|
42 |
msgstr "Multisite"
|
43 |
|
@@ -56,29 +56,34 @@ 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:
|
60 |
msgid "Show deprecated capabilities"
|
61 |
msgstr "Elavult képességek megjelenítése"
|
62 |
|
63 |
-
#: ../includes/settings-template.php:
|
64 |
-
#: ../includes/
|
|
|
|
|
|
|
|
|
|
|
65 |
msgid "Save"
|
66 |
msgstr "Mentés"
|
67 |
|
68 |
-
#: ../includes/settings-template.php:
|
69 |
-
#: ../includes/class-ure-screen-help.php:
|
70 |
msgid "Count users without role"
|
71 |
msgstr "Szerepkör nélküli felhasználók számlálása"
|
72 |
|
73 |
-
#: ../includes/settings-template.php:
|
74 |
msgid "Primary default role: "
|
75 |
msgstr "Elsődleges alap szerepkör:"
|
76 |
|
77 |
-
#: ../includes/settings-template.php:
|
78 |
msgid "Other default roles for new registered user: "
|
79 |
msgstr "Egyéb alap szerepkörök újonnan regisztrált felhasználók számára:"
|
80 |
|
81 |
-
#: ../includes/settings-template.php:
|
82 |
msgid ""
|
83 |
"Note for multisite environment: take into account that other default roles "
|
84 |
"should exist at the site, in order to be assigned to the new registered "
|
@@ -88,104 +93,107 @@ msgstr ""
|
|
88 |
"szerepkörnek is léteznie kell a weboldalon, az új felhasználók "
|
89 |
"létrehozásához."
|
90 |
|
91 |
-
#: ../includes/settings-template.php:
|
92 |
msgid "Allow non super administrators to create, edit, and delete users"
|
93 |
msgstr ""
|
94 |
"Nem szuperadminok is hozhassanak létre, módosíthassanak és törölhessenek "
|
95 |
"felhasználókat"
|
96 |
|
97 |
-
#: ../includes/class-user-role-editor.php:
|
98 |
msgid "Change role for users without role"
|
99 |
msgstr "Szerepkör nélküli felhasználók szerepkörének megadása"
|
100 |
|
101 |
-
#: ../includes/class-user-role-editor.php:
|
102 |
msgid "No rights"
|
103 |
msgstr "Nincs jogosultság"
|
104 |
|
105 |
-
#: ../includes/class-user-role-editor.php:
|
106 |
msgid "Provide new role"
|
107 |
msgstr "Új szerepkör megadása"
|
108 |
|
109 |
-
#: ../includes/class-user-role-editor.php:
|
110 |
-
#: ../includes/class-user-role-editor.php:
|
111 |
msgid "You do not have permission to edit this user."
|
112 |
msgstr "Nincs jogosultsága a felhasználó szerkesztéséhez."
|
113 |
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
msgid "Capabilities"
|
116 |
msgstr "Képességek"
|
117 |
|
118 |
-
#: ../includes/class-user-role-editor.php:
|
119 |
msgid "Settings"
|
120 |
msgstr "Beállítások"
|
121 |
|
122 |
-
#: ../includes/class-user-role-editor.php:
|
123 |
-
#: ../includes/class-ure-lib.php:
|
124 |
msgid "Changelog"
|
125 |
msgstr "Változások naplója"
|
126 |
|
127 |
-
#: ../includes/class-user-role-editor.php:
|
128 |
-
#: ../includes/class-user-role-editor.php:
|
129 |
-
#: ../includes/class-user-role-editor.php:
|
130 |
-
#: ../includes/class-ure-lib.php:
|
131 |
msgid "User Role Editor"
|
132 |
msgstr "Szerepkör szerkesztő"
|
133 |
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
-
#: ../includes/class-user-role-editor.php:
|
136 |
-
#: ../includes/class-user-role-editor.php:
|
137 |
msgid "User Role Editor options are updated"
|
138 |
msgstr "Szerepkör szerkesztő beállításai frissítve"
|
139 |
|
140 |
-
#: ../includes/class-user-role-editor.php:
|
141 |
msgid "Default Roles are updated"
|
142 |
msgstr "Alap szerepkörök frissítve"
|
143 |
|
144 |
-
#: ../includes/class-user-role-editor.php:
|
145 |
msgid ""
|
146 |
"You do not have sufficient permissions to manage options for User Role "
|
147 |
"Editor."
|
148 |
msgstr ""
|
149 |
"Nincs elég jogosultsága a Szerepkör szerkesztő beállításainak kezeléséhez."
|
150 |
|
151 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
152 |
msgid "Insufficient permissions to work with User Role Editor"
|
153 |
msgstr "Nincs elég jogosultsága a Szerepkör szerkesztő használatához"
|
154 |
|
155 |
-
#: ../includes/class-user-role-editor.php:
|
156 |
msgid "Select All"
|
157 |
msgstr "Összeset kijelöl"
|
158 |
|
159 |
-
#: ../includes/class-user-role-editor.php:
|
160 |
msgid "Unselect All"
|
161 |
msgstr "Kijelölés megszünt."
|
162 |
|
163 |
-
#: ../includes/class-user-role-editor.php:
|
164 |
msgid "Reverse"
|
165 |
msgstr "Fordított kijelölés"
|
166 |
|
167 |
-
#: ../includes/class-user-role-editor.php:
|
168 |
msgid "Update"
|
169 |
msgstr "Frissítés"
|
170 |
|
171 |
-
#: ../includes/class-user-role-editor.php:
|
172 |
msgid "Please confirm permissions update"
|
173 |
msgstr "Képességek frissítésének megersőítése"
|
174 |
|
175 |
-
#: ../includes/class-user-role-editor.php:
|
176 |
msgid "Add New Role"
|
177 |
msgstr "Új szerepkör létrehozása"
|
178 |
|
179 |
-
#: ../includes/class-user-role-editor.php:
|
180 |
-
#: ../includes/class-user-role-editor.php:
|
181 |
msgid "Rename Role"
|
182 |
msgstr "Szerepkör átnevezés"
|
183 |
|
184 |
-
#: ../includes/class-user-role-editor.php:
|
185 |
msgid " Role name (ID) can not be empty!"
|
186 |
msgstr "A szerepkör neve (azonosító) nem lehet üres!"
|
187 |
|
188 |
-
#: ../includes/class-user-role-editor.php:
|
189 |
msgid ""
|
190 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
191 |
"only!"
|
@@ -193,7 +201,7 @@ msgstr ""
|
|
193 |
"A szerepkör neve (azonosítója) csak latin betűket, szűmokat, kötőjelet és "
|
194 |
"aláhúzást tartalmazhat."
|
195 |
|
196 |
-
#: ../includes/class-user-role-editor.php:
|
197 |
msgid ""
|
198 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
199 |
"it."
|
@@ -201,38 +209,38 @@ msgstr ""
|
|
201 |
"A WordPress nem támoagtja a numeriks szerepkör neveket (azonosító). Kell "
|
202 |
"bele legalább egy latin betű."
|
203 |
|
204 |
-
#: ../includes/class-user-role-editor.php:
|
205 |
msgid "Add Role"
|
206 |
msgstr "Új szerepkör"
|
207 |
|
208 |
-
#: ../includes/class-user-role-editor.php:
|
209 |
msgid "Delete Role"
|
210 |
msgstr "Szerepkör törlése"
|
211 |
|
212 |
-
#: ../includes/class-user-role-editor.php:
|
213 |
msgid "Cancel"
|
214 |
msgstr "Mégse"
|
215 |
|
216 |
-
#: ../includes/class-user-role-editor.php:
|
217 |
msgid "Add Capability"
|
218 |
msgstr "Új képesség"
|
219 |
|
220 |
-
#: ../includes/class-user-role-editor.php:
|
221 |
-
#: ../includes/class-user-role-editor.php:
|
222 |
msgid "Delete Capability"
|
223 |
msgstr "Képesség törlése"
|
224 |
|
225 |
-
#: ../includes/class-user-role-editor.php:
|
226 |
msgid "Reset"
|
227 |
msgstr "Alaphelyzet"
|
228 |
|
229 |
-
#: ../includes/class-user-role-editor.php:
|
230 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
231 |
msgstr ""
|
232 |
"VESZÉLY! Az alaphelyzetre állítás a WordPress mag beállításait állítja be "
|
233 |
"újra."
|
234 |
|
235 |
-
#: ../includes/class-user-role-editor.php:
|
236 |
msgid ""
|
237 |
"If any plugins have changed capabilities in any way upon installation (such "
|
238 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -240,7 +248,7 @@ msgstr ""
|
|
240 |
"Ha bármilyen bővítmény módosított a képességeket bármilyen módon (pl.: "
|
241 |
"S2Member, WooCommerce, és sok másik), ezek a módosítások TÖRÖLVE lesznek!"
|
242 |
|
243 |
-
#: ../includes/class-user-role-editor.php:
|
244 |
msgid ""
|
245 |
"For more information on how to undo changes and restore plugin capabilities "
|
246 |
"go to"
|
@@ -248,19 +256,19 @@ msgstr ""
|
|
248 |
"További információ a képességek módosításainak visszavonásáról és "
|
249 |
"helyreállításáról"
|
250 |
|
251 |
-
#: ../includes/class-user-role-editor.php:
|
252 |
msgid "Continue?"
|
253 |
msgstr "Folytassuk?"
|
254 |
|
255 |
-
#: ../includes/class-user-role-editor.php:
|
256 |
msgid "Default Role"
|
257 |
msgstr "Alap szerepkör"
|
258 |
|
259 |
-
#: ../includes/class-user-role-editor.php:
|
260 |
msgid "Set New Default Role"
|
261 |
msgstr "Új alap szerepkör beállítása"
|
262 |
|
263 |
-
#: ../includes/class-user-role-editor.php:
|
264 |
msgid ""
|
265 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
266 |
"or other custom code"
|
@@ -268,11 +276,11 @@ msgstr ""
|
|
268 |
"Figyelem! Legyen óvatos - kritikus képesség törlésétől leállhat néhány "
|
269 |
"bővítmény vagy egyedi kód."
|
270 |
|
271 |
-
#: ../includes/class-user-role-editor.php:
|
272 |
msgid " Capability name (ID) can not be empty!"
|
273 |
msgstr "A képesség név (azonosító) nem lehet üres."
|
274 |
|
275 |
-
#: ../includes/class-user-role-editor.php:
|
276 |
msgid ""
|
277 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
278 |
"underscore only!"
|
@@ -280,12 +288,12 @@ msgstr ""
|
|
280 |
"A képesség név (azonosító) csak latin betűkből, számokból, kötőjelből és "
|
281 |
"aláhúzásból állhat."
|
282 |
|
283 |
-
#: ../includes/class-user-role-editor.php:
|
284 |
-
#: ../includes/class-user-role-editor.php:
|
285 |
msgid "Other Roles"
|
286 |
msgstr "Más szerepkörök"
|
287 |
|
288 |
-
#: ../includes/class-user-role-editor.php:
|
289 |
msgid "Edit"
|
290 |
msgstr "Szerkeszt"
|
291 |
|
@@ -293,7 +301,7 @@ msgstr "Szerkeszt"
|
|
293 |
msgid "Select Role and change its capabilities:"
|
294 |
msgstr "Szerepkör kiválasztása a képességeinek módosításához:"
|
295 |
|
296 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:
|
297 |
msgid "Show capabilities in human readable form"
|
298 |
msgstr "Képességek megjelenítése olvasható formában"
|
299 |
|
@@ -306,91 +314,91 @@ msgstr ""
|
|
306 |
msgid "Apply to All Sites"
|
307 |
msgstr "Alkalmazás minden oldalra"
|
308 |
|
309 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:
|
310 |
msgid "Core capabilities:"
|
311 |
msgstr "Gyári képességek:"
|
312 |
|
313 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:
|
314 |
msgid "Quick filter:"
|
315 |
msgstr "Gyors szűrés:"
|
316 |
|
317 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:
|
318 |
msgid "Custom capabilities:"
|
319 |
msgstr "Egyedi képességek:"
|
320 |
|
321 |
-
#: ../includes/class-ure-lib.php:
|
322 |
msgid "Error: wrong request"
|
323 |
msgstr "Hiba: hibás kérés"
|
324 |
|
325 |
-
#: ../includes/class-ure-lib.php:
|
326 |
msgid "Role name (ID): "
|
327 |
msgstr "Szerepkör név (azonosító):"
|
328 |
|
329 |
-
#: ../includes/class-ure-lib.php:
|
330 |
msgid "Display Role Name: "
|
331 |
msgstr "Szerepkör megnevezése:"
|
332 |
|
333 |
-
#: ../includes/class-ure-lib.php:
|
334 |
msgid "Make copy of: "
|
335 |
msgstr "Ennek a másolata:"
|
336 |
|
337 |
-
#: ../includes/class-ure-lib.php:
|
338 |
msgid "Select Role:"
|
339 |
msgstr "Válasszon szerepkört:"
|
340 |
|
341 |
-
#: ../includes/class-ure-lib.php:
|
342 |
msgid "Delete:"
|
343 |
msgstr "Törlés:"
|
344 |
|
345 |
-
#: ../includes/class-ure-lib.php:
|
346 |
msgid "Capability name (ID): "
|
347 |
msgstr "Képesség név (azonosító):"
|
348 |
|
349 |
-
#: ../includes/class-ure-lib.php:
|
350 |
msgid "Error: "
|
351 |
msgstr "Hiba:"
|
352 |
|
353 |
-
#: ../includes/class-ure-lib.php:
|
354 |
msgid "Role"
|
355 |
msgstr "Szerepkör"
|
356 |
|
357 |
-
#: ../includes/class-ure-lib.php:
|
358 |
msgid "does not exist"
|
359 |
msgstr "nem létezik"
|
360 |
|
361 |
-
#: ../includes/class-ure-lib.php:
|
362 |
msgid "Role is updated successfully"
|
363 |
msgstr "Szerepkör sikeresen frissítve"
|
364 |
|
365 |
-
#: ../includes/class-ure-lib.php:
|
366 |
msgid "Roles are updated for all network"
|
367 |
msgstr "Szerepkörök frissítése a teljes hálózaton"
|
368 |
|
369 |
-
#: ../includes/class-ure-lib.php:
|
370 |
msgid "Error occured during role(s) update"
|
371 |
msgstr "Hiba történt a szerepkör(ök) frissítése során"
|
372 |
|
373 |
-
#: ../includes/class-ure-lib.php:
|
374 |
msgid "User capabilities are updated successfully"
|
375 |
msgstr "Felhasználó képességei sikeresen frissítve"
|
376 |
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
msgid "Error occured during user update"
|
379 |
msgstr "Hiba történt a felhasználó frissítése során"
|
380 |
|
381 |
-
#: ../includes/class-ure-lib.php:
|
382 |
msgid "User Roles are restored to WordPress default values. "
|
383 |
msgstr "Felhasználói szerepkörök visszaállítva a WordPress alaphelyzetébe."
|
384 |
|
385 |
-
#: ../includes/class-ure-lib.php:
|
386 |
msgid "Help"
|
387 |
msgstr "Súgó"
|
388 |
|
389 |
-
#: ../includes/class-ure-lib.php:
|
390 |
msgid "Error is occur. Please check the log file."
|
391 |
msgstr "Hiba történt. Nézze meg a naplófájlt!"
|
392 |
|
393 |
-
#: ../includes/class-ure-lib.php:
|
394 |
msgid ""
|
395 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
396 |
"only!"
|
@@ -398,7 +406,7 @@ msgstr ""
|
|
398 |
"Hiba: a szerepkör azonosító csak latin betűkből, számokból, kötőjelből és "
|
399 |
"aláhúzásból állhat."
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
402 |
msgid ""
|
403 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
404 |
"characters to it."
|
@@ -406,397 +414,397 @@ msgstr ""
|
|
406 |
"Hiba: a WordPress nem támogatja a numerikus szerepkör neveket "
|
407 |
"(azonosítókat). Legyen benn legalább egy latin betű."
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
#, php-format
|
411 |
msgid "Role %s exists already"
|
412 |
msgstr "%s szerepkör már létezik"
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
415 |
msgid "Error is encountered during new role create operation"
|
416 |
msgstr "Hiba történt az új szerepkör létrehozása során."
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
#, php-format
|
420 |
msgid "Role %s is created successfully"
|
421 |
msgstr "%s szerepkör sikeresen létrehozva"
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Error: Role ID is empty!"
|
425 |
msgstr "Hiba: a szerepkör azonosító üres!"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
msgid "Error: Empty role display name is not allowed."
|
429 |
msgstr "Hiba: nem lehet üres a szerepkör megjelenítendő neve."
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
#, php-format
|
433 |
msgid "Role %s does not exists"
|
434 |
msgstr "%s szerepkör nem létezik"
|
435 |
|
436 |
-
#: ../includes/class-ure-lib.php:
|
437 |
#, php-format
|
438 |
msgid "Role %s is renamed to %s successfully"
|
439 |
msgstr "%s szerepkör sikeresen átnevezve erre: %s"
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
msgid "Error encountered during role delete operation"
|
443 |
msgstr "Hiba történt a szerepkör törlése során."
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
msgid "Unused roles are deleted successfully"
|
447 |
msgstr "A nem használt szerepkörök sikeresen törölve lettek."
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
#, php-format
|
451 |
msgid "Role %s is deleted successfully"
|
452 |
msgstr "%s szerepkör sikeresen törölve lett."
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
msgid "Error encountered during default role change operation"
|
456 |
msgstr "Hiba történt az alap szerepkör módosítása során."
|
457 |
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
#, php-format
|
460 |
msgid "Default role for new users is set to %s successfully"
|
461 |
msgstr "Az új felhasználók alap szerepköre sikeresen módosítva erre: %s"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Editor"
|
465 |
msgstr "Szerkesztő"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
msgid "Author"
|
469 |
msgstr "Szerző"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Contributor"
|
473 |
msgstr "Közreműködő"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Subscriber"
|
477 |
msgstr "Feliratkozó"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Switch themes"
|
481 |
msgstr "Sablon kiválasztása"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Edit themes"
|
485 |
msgstr "Sablonok szerkesztése"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Activate plugins"
|
489 |
msgstr "Bővítmény bekapcsolása"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Edit plugins"
|
493 |
msgstr "Bővítmények szerkesztése"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Edit users"
|
497 |
msgstr "Felhasználók szerkesztése"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Edit files"
|
501 |
msgstr "Fájlok szerkesztése"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Manage options"
|
505 |
msgstr "Beállítások kezelése"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Moderate comments"
|
509 |
msgstr "Hozzászólások moderálása"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Manage categories"
|
513 |
msgstr "Kategóriák kezelése"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Manage links"
|
517 |
msgstr "Hivatkozások kezelése"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Upload files"
|
521 |
msgstr "Fájlok feltöltése"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Import"
|
525 |
msgstr "Importálás"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Unfiltered html"
|
529 |
msgstr "Szűretlen HTML"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Edit posts"
|
533 |
msgstr "Bejegyzések szerkesztése"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Edit others posts"
|
537 |
msgstr "Mások bejegyzéseinek szerkeszése"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Edit published posts"
|
541 |
msgstr "Közzétett bejegyzések szerkesztése"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Publish posts"
|
545 |
msgstr "Bejegyzések közzététele"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Edit pages"
|
549 |
msgstr "Oldalak szerkesztése"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Read"
|
553 |
msgstr "Olvasás"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Level 10"
|
557 |
msgstr "10. szint"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Level 9"
|
561 |
msgstr "9. szint"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Level 8"
|
565 |
msgstr "8. szint"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Level 7"
|
569 |
msgstr "7. szint"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Level 6"
|
573 |
msgstr "6. szint"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Level 5"
|
577 |
msgstr "5. szint"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Level 4"
|
581 |
msgstr "4. szint"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Level 3"
|
585 |
msgstr "3. szint"
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Level 2"
|
589 |
msgstr "2. szint"
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Level 1"
|
593 |
msgstr "1. szint"
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Level 0"
|
597 |
msgstr "0. szint"
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Edit others pages"
|
601 |
msgstr "Mások oldalainak szerkesztése"
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
msgid "Edit published pages"
|
605 |
msgstr "Közzétett oldalak szerkesztése"
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Publish pages"
|
609 |
msgstr "Oldalak közzététele"
|
610 |
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Delete pages"
|
613 |
msgstr "Oldalak törlése"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Delete others pages"
|
617 |
msgstr "Mások oldalainak törlése"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Delete published pages"
|
621 |
msgstr "Közzétett oldalak törlése"
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Delete posts"
|
625 |
msgstr "Bejegyzések törlése"
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Delete others posts"
|
629 |
msgstr "Mások bejegyzéseinek törlése"
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Delete published posts"
|
633 |
msgstr "Közzétett bejegyzések törlése"
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Delete private posts"
|
637 |
msgstr "Privát bejegyzések törlése"
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Edit private posts"
|
641 |
msgstr "Privát bejegyzések szerkesztése"
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "Read private posts"
|
645 |
msgstr "Privát bejegyzések olvasása"
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Delete private pages"
|
649 |
msgstr "Privát oldalak törlése"
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Edit private pages"
|
653 |
msgstr "Privát oldalak szerkesztése"
|
654 |
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Read private pages"
|
657 |
msgstr "Privát oldalak olvasása"
|
658 |
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
msgid "Delete users"
|
661 |
msgstr "Felhasználók törlése"
|
662 |
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Create users"
|
665 |
msgstr "Felhasználók létrehozása"
|
666 |
|
667 |
-
#: ../includes/class-ure-lib.php:
|
668 |
msgid "Unfiltered upload"
|
669 |
msgstr "Szűretlen feltöltés"
|
670 |
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Edit dashboard"
|
673 |
msgstr "Vezérlőpult szerkesztése"
|
674 |
|
675 |
-
#: ../includes/class-ure-lib.php:
|
676 |
msgid "Update plugins"
|
677 |
msgstr "Bővítmények frissítése"
|
678 |
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Delete plugins"
|
681 |
msgstr "Bővítmények törlése"
|
682 |
|
683 |
-
#: ../includes/class-ure-lib.php:
|
684 |
msgid "Install plugins"
|
685 |
msgstr "Bővítmények telepítése"
|
686 |
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Update themes"
|
689 |
msgstr "Sablonok frissítése"
|
690 |
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Install themes"
|
693 |
msgstr "Sablonok telepítése"
|
694 |
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "Update core"
|
697 |
msgstr "Mag frissítése"
|
698 |
|
699 |
-
#: ../includes/class-ure-lib.php:
|
700 |
msgid "List users"
|
701 |
msgstr "Felhasználók listázása"
|
702 |
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Remove users"
|
705 |
msgstr "Felhasználók törlése"
|
706 |
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
msgid "Add users"
|
709 |
msgstr "Felhasználók hozzáadása"
|
710 |
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Promote users"
|
713 |
msgstr "Felhasználók előléptetése"
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
msgid "Edit theme options"
|
717 |
msgstr "Sablon beállítások módosítása"
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Delete themes"
|
721 |
msgstr "Sablonok törlése"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
msgid "Export"
|
725 |
msgstr "Exportálás"
|
726 |
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
729 |
msgstr "Hiba: a képesség neve csak latin betűkből és számokból állhat."
|
730 |
|
731 |
-
#: ../includes/class-ure-lib.php:
|
732 |
#, php-format
|
733 |
msgid "Capability %s is added successfully"
|
734 |
msgstr "%s képesség sikeresen hozzáadva"
|
735 |
|
736 |
-
#: ../includes/class-ure-lib.php:
|
737 |
#, php-format
|
738 |
msgid "Capability %s exists already"
|
739 |
msgstr "%s képesség már létezik"
|
740 |
|
741 |
-
#: ../includes/class-ure-lib.php:
|
742 |
#, php-format
|
743 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
744 |
msgstr "Hiba! Nincs jogosultsága a képesség (%s) törléséhez."
|
745 |
|
746 |
-
#: ../includes/class-ure-lib.php:
|
747 |
#, php-format
|
748 |
msgid "Capability %s is removed successfully"
|
749 |
msgstr "%s képesség sikeresen törölve"
|
750 |
|
751 |
-
#: ../includes/class-ure-lib.php:
|
752 |
msgid "Version:"
|
753 |
msgstr "Verzió:"
|
754 |
|
755 |
-
#: ../includes/class-ure-lib.php:
|
756 |
msgid "Author's website"
|
757 |
msgstr "Szerző weboldala"
|
758 |
|
759 |
-
#: ../includes/class-ure-lib.php:
|
760 |
msgid "Plugin webpage"
|
761 |
msgstr "Bővítmény weboldala"
|
762 |
|
763 |
-
#: ../includes/class-ure-lib.php:
|
764 |
msgid "Plugin download"
|
765 |
msgstr "Bővítmény letöltése"
|
766 |
|
767 |
-
#: ../includes/class-ure-lib.php:
|
768 |
msgid "FAQ"
|
769 |
msgstr "GyIK"
|
770 |
|
771 |
-
#: ../includes/class-ure-lib.php:
|
772 |
msgid "None"
|
773 |
msgstr "Nincs"
|
774 |
|
775 |
-
#: ../includes/class-ure-lib.php:
|
776 |
msgid "Delete All Unused Roles"
|
777 |
msgstr "Minden nem használt szerepkör törlése"
|
778 |
|
779 |
-
#: ../includes/class-ure-lib.php:
|
780 |
msgid "— No role for this site —"
|
781 |
msgstr "— Nincs szerepköre ezen az oldalon —"
|
782 |
|
783 |
-
#: ../includes/ure-user-edit.php:
|
784 |
msgid "Network Super Admin"
|
785 |
msgstr "Multisite Szuperadmin"
|
786 |
|
787 |
-
#: ../includes/ure-user-edit.php:
|
788 |
msgid "Change capabilities for user"
|
789 |
msgstr "Szerepkör módosítása -"
|
790 |
|
791 |
-
#: ../includes/ure-user-edit.php:
|
792 |
msgid "Primary Role:"
|
793 |
msgstr "Elsődleges szerepkör:"
|
794 |
|
795 |
-
#: ../includes/ure-user-edit.php:
|
796 |
msgid "bbPress Role:"
|
797 |
msgstr "bbPress szerepkör:"
|
798 |
|
799 |
-
#: ../includes/ure-user-edit.php:
|
800 |
msgid "Other Roles:"
|
801 |
msgstr "Más szerepkörök:"
|
802 |
|
@@ -830,18 +838,25 @@ msgstr ""
|
|
830 |
"használja. Csak a régi sablonokkal és bővítményekkel való kompatíbilitás "
|
831 |
"miatt maradtak meg. Ez az opció ezeket az elavult képességeket jeleníti meg."
|
832 |
|
833 |
-
#: ../includes/class-ure-screen-help.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
834 |
msgid ""
|
835 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
836 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
837 |
"users list with role \"No rights\" at the separate tab then."
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: ../includes/class-ure-screen-help.php:
|
841 |
msgid "Other default roles for new registered user"
|
842 |
msgstr "Egyéb alap szerepkörök újonnan regisztrált felhasználók számára:"
|
843 |
|
844 |
-
#: ../includes/class-ure-screen-help.php:
|
845 |
msgid ""
|
846 |
"select roles below to assign them to the new user automatically as an "
|
847 |
"addition to the primary role. Note for multisite environment: take into "
|
@@ -853,13 +868,13 @@ msgstr ""
|
|
853 |
"környezethez: vegye figyelembe, hogy több alap szerepkörnek is léteznie kell "
|
854 |
"a weboldalon, az új felhasználók létrehozásához."
|
855 |
|
856 |
-
#: ../includes/class-ure-screen-help.php:
|
857 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
858 |
msgstr ""
|
859 |
"Nem szuperadminok is hozhassanak létre, módosíthassanak és törölhessenek "
|
860 |
"felhasználókat"
|
861 |
|
862 |
-
#: ../includes/class-ure-screen-help.php:
|
863 |
msgid ""
|
864 |
"Super administrator only may create, edit and delete users under WordPress "
|
865 |
"multi-site by default. Turn this option on in order to remove this "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 4.16\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-06 11:56+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: \n"
|
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 |
|
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 "
|
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:233
|
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:234
|
107 |
msgid "No rights"
|
108 |
msgstr "Nincs jogosultság"
|
109 |
|
110 |
+
#: ../includes/class-user-role-editor.php:235
|
111 |
msgid "Provide new role"
|
112 |
msgstr "Új szerepkör megadása"
|
113 |
|
114 |
+
#: ../includes/class-user-role-editor.php:319
|
115 |
+
#: ../includes/class-user-role-editor.php:321
|
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:2529
|
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:1029
|
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:778
|
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:850
|
157 |
+
#: ../includes/class-ure-lib.php:1697 ../includes/class-ure-lib.php:1950
|
158 |
+
#: ../includes/class-ure-lib.php:2066 ../includes/class-ure-lib.php:2114
|
159 |
+
#: ../includes/class-ure-lib.php:2350 ../includes/class-ure-lib.php:2395
|
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:976
|
164 |
msgid "Select All"
|
165 |
msgstr "Összeset kijelöl"
|
166 |
|
167 |
+
#: ../includes/class-user-role-editor.php:977
|
168 |
msgid "Unselect All"
|
169 |
msgstr "Kijelölés megszünt."
|
170 |
|
171 |
+
#: ../includes/class-user-role-editor.php:978
|
172 |
msgid "Reverse"
|
173 |
msgstr "Fordított kijelölés"
|
174 |
|
175 |
+
#: ../includes/class-user-role-editor.php:979
|
176 |
msgid "Update"
|
177 |
msgstr "Frissítés"
|
178 |
|
179 |
+
#: ../includes/class-user-role-editor.php:980
|
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:981
|
184 |
msgid "Add New Role"
|
185 |
msgstr "Új szerepkör létrehozása"
|
186 |
|
187 |
+
#: ../includes/class-user-role-editor.php:982
|
188 |
+
#: ../includes/class-user-role-editor.php:987
|
189 |
msgid "Rename Role"
|
190 |
msgstr "Szerepkör átnevezés"
|
191 |
|
192 |
+
#: ../includes/class-user-role-editor.php:983
|
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:984
|
197 |
msgid ""
|
198 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
199 |
"only!"
|
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:985
|
205 |
msgid ""
|
206 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
207 |
"it."
|
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:986
|
213 |
msgid "Add Role"
|
214 |
msgstr "Új szerepkör"
|
215 |
|
216 |
+
#: ../includes/class-user-role-editor.php:988
|
217 |
msgid "Delete Role"
|
218 |
msgstr "Szerepkör törlése"
|
219 |
|
220 |
+
#: ../includes/class-user-role-editor.php:989
|
221 |
msgid "Cancel"
|
222 |
msgstr "Mégse"
|
223 |
|
224 |
+
#: ../includes/class-user-role-editor.php:990
|
225 |
msgid "Add Capability"
|
226 |
msgstr "Új képesség"
|
227 |
|
228 |
+
#: ../includes/class-user-role-editor.php:991
|
229 |
+
#: ../includes/class-user-role-editor.php:1000
|
230 |
msgid "Delete Capability"
|
231 |
msgstr "Képesség törlése"
|
232 |
|
233 |
+
#: ../includes/class-user-role-editor.php:992
|
234 |
msgid "Reset"
|
235 |
msgstr "Alaphelyzet"
|
236 |
|
237 |
+
#: ../includes/class-user-role-editor.php:993
|
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:994
|
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!"
|
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:995
|
252 |
msgid ""
|
253 |
"For more information on how to undo changes and restore plugin capabilities "
|
254 |
"go to"
|
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:997
|
260 |
msgid "Continue?"
|
261 |
msgstr "Folytassuk?"
|
262 |
|
263 |
+
#: ../includes/class-user-role-editor.php:998
|
264 |
msgid "Default Role"
|
265 |
msgstr "Alap szerepkör"
|
266 |
|
267 |
+
#: ../includes/class-user-role-editor.php:999
|
268 |
msgid "Set New Default Role"
|
269 |
msgstr "Új alap szerepkör beállítása"
|
270 |
|
271 |
+
#: ../includes/class-user-role-editor.php:1001
|
272 |
msgid ""
|
273 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
274 |
"or other custom code"
|
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:1002
|
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:1003
|
284 |
msgid ""
|
285 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
286 |
"underscore only!"
|
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:1032
|
292 |
+
#: ../includes/class-user-role-editor.php:1065
|
293 |
msgid "Other Roles"
|
294 |
msgstr "Más szerepkörök"
|
295 |
|
296 |
+
#: ../includes/class-user-role-editor.php:1046
|
297 |
msgid "Edit"
|
298 |
msgstr "Szerkeszt"
|
299 |
|
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 |
|
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:278 ../includes/class-ure-lib.php:289
|
334 |
msgid "Role name (ID): "
|
335 |
msgstr "Szerepkör név (azonosító):"
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
338 |
msgid "Display Role Name: "
|
339 |
msgstr "Szerepkör megnevezése:"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:282
|
342 |
msgid "Make copy of: "
|
343 |
msgstr "Ennek a másolata:"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:298
|
346 |
msgid "Select Role:"
|
347 |
msgstr "Válasszon szerepkört:"
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:313
|
350 |
msgid "Delete:"
|
351 |
msgstr "Törlés:"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:320
|
354 |
msgid "Capability name (ID): "
|
355 |
msgstr "Képesség név (azonosító):"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:434
|
358 |
msgid "Error: "
|
359 |
msgstr "Hiba:"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:434
|
362 |
msgid "Role"
|
363 |
msgstr "Szerepkör"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:435
|
366 |
msgid "does not exist"
|
367 |
msgstr "nem létezik"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:478
|
370 |
msgid "Role is updated successfully"
|
371 |
msgstr "Szerepkör sikeresen frissítve"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:480
|
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:486
|
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:493
|
382 |
msgid "User capabilities are updated successfully"
|
383 |
msgstr "Felhasználó képességei sikeresen frissítve"
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:498
|
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:556
|
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:1445
|
394 |
msgid "Help"
|
395 |
msgstr "Súgó"
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:1913
|
398 |
msgid "Error is occur. Please check the log file."
|
399 |
msgstr "Hiba történt. Nézze meg a naplófájlt!"
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
402 |
msgid ""
|
403 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
404 |
"only!"
|
406 |
"Hiba: a szerepkör azonosító csak latin betűkből, számokból, kötőjelből és "
|
407 |
"aláhúzásból állhat."
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1963 ../includes/class-ure-lib.php:2030
|
410 |
msgid ""
|
411 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
412 |
"characters to it."
|
414 |
"Hiba: a WordPress nem támogatja a numerikus szerepkör neveket "
|
415 |
"(azonosítókat). Legyen benn legalább egy latin betű."
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1978
|
418 |
#, php-format
|
419 |
msgid "Role %s exists already"
|
420 |
msgstr "%s szerepkör már létezik"
|
421 |
|
422 |
+
#: ../includes/class-ure-lib.php:1993
|
423 |
msgid "Error is encountered during new role create operation"
|
424 |
msgstr "Hiba történt az új szerepkör létrehozása során."
|
425 |
|
426 |
+
#: ../includes/class-ure-lib.php:1995
|
427 |
#, php-format
|
428 |
msgid "Role %s is created successfully"
|
429 |
msgstr "%s szerepkör sikeresen létrehozva"
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:2019
|
432 |
msgid "Error: Role ID is empty!"
|
433 |
msgstr "Hiba: a szerepkör azonosító üres!"
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:2037
|
436 |
msgid "Error: Empty role display name is not allowed."
|
437 |
msgstr "Hiba: nem lehet üres a szerepkör megjelenítendő neve."
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:2044
|
440 |
#, php-format
|
441 |
msgid "Role %s does not exists"
|
442 |
msgstr "%s szerepkör nem létezik"
|
443 |
|
444 |
+
#: ../includes/class-ure-lib.php:2052
|
445 |
#, php-format
|
446 |
msgid "Role %s is renamed to %s successfully"
|
447 |
msgstr "%s szerepkör sikeresen átnevezve erre: %s"
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:2125
|
450 |
msgid "Error encountered during role delete operation"
|
451 |
msgstr "Hiba történt a szerepkör törlése során."
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:2127
|
454 |
msgid "Unused roles are deleted successfully"
|
455 |
msgstr "A nem használt szerepkörök sikeresen törölve lettek."
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:2129
|
458 |
#, php-format
|
459 |
msgid "Role %s is deleted successfully"
|
460 |
msgstr "%s szerepkör sikeresen törölve lett."
|
461 |
|
462 |
+
#: ../includes/class-ure-lib.php:2154
|
463 |
msgid "Error encountered during default role change operation"
|
464 |
msgstr "Hiba történt az alap szerepkör módosítása során."
|
465 |
|
466 |
+
#: ../includes/class-ure-lib.php:2160
|
467 |
#, php-format
|
468 |
msgid "Default role for new users is set to %s successfully"
|
469 |
msgstr "Az új felhasználók alap szerepköre sikeresen módosítva erre: %s"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:2179
|
472 |
msgid "Editor"
|
473 |
msgstr "Szerkesztő"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:2180
|
476 |
msgid "Author"
|
477 |
msgstr "Szerző"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:2181
|
480 |
msgid "Contributor"
|
481 |
msgstr "Közreműködő"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:2182
|
484 |
msgid "Subscriber"
|
485 |
msgstr "Feliratkozó"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:2184
|
488 |
msgid "Switch themes"
|
489 |
msgstr "Sablon kiválasztása"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:2185
|
492 |
msgid "Edit themes"
|
493 |
msgstr "Sablonok szerkesztése"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:2186
|
496 |
msgid "Activate plugins"
|
497 |
msgstr "Bővítmény bekapcsolása"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:2187
|
500 |
msgid "Edit plugins"
|
501 |
msgstr "Bővítmények szerkesztése"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:2188
|
504 |
msgid "Edit users"
|
505 |
msgstr "Felhasználók szerkesztése"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:2189
|
508 |
msgid "Edit files"
|
509 |
msgstr "Fájlok szerkesztése"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:2190
|
512 |
msgid "Manage options"
|
513 |
msgstr "Beállítások kezelése"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:2191
|
516 |
msgid "Moderate comments"
|
517 |
msgstr "Hozzászólások moderálása"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:2192
|
520 |
msgid "Manage categories"
|
521 |
msgstr "Kategóriák kezelése"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:2193
|
524 |
msgid "Manage links"
|
525 |
msgstr "Hivatkozások kezelése"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:2194
|
528 |
msgid "Upload files"
|
529 |
msgstr "Fájlok feltöltése"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:2195
|
532 |
msgid "Import"
|
533 |
msgstr "Importálás"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:2196
|
536 |
msgid "Unfiltered html"
|
537 |
msgstr "Szűretlen HTML"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:2197
|
540 |
msgid "Edit posts"
|
541 |
msgstr "Bejegyzések szerkesztése"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:2198
|
544 |
msgid "Edit others posts"
|
545 |
msgstr "Mások bejegyzéseinek szerkeszése"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:2199
|
548 |
msgid "Edit published posts"
|
549 |
msgstr "Közzétett bejegyzések szerkesztése"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:2200
|
552 |
msgid "Publish posts"
|
553 |
msgstr "Bejegyzések közzététele"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:2201
|
556 |
msgid "Edit pages"
|
557 |
msgstr "Oldalak szerkesztése"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:2202
|
560 |
msgid "Read"
|
561 |
msgstr "Olvasás"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:2203
|
564 |
msgid "Level 10"
|
565 |
msgstr "10. szint"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:2204
|
568 |
msgid "Level 9"
|
569 |
msgstr "9. szint"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:2205
|
572 |
msgid "Level 8"
|
573 |
msgstr "8. szint"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:2206
|
576 |
msgid "Level 7"
|
577 |
msgstr "7. szint"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:2207
|
580 |
msgid "Level 6"
|
581 |
msgstr "6. szint"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:2208
|
584 |
msgid "Level 5"
|
585 |
msgstr "5. szint"
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:2209
|
588 |
msgid "Level 4"
|
589 |
msgstr "4. szint"
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:2210
|
592 |
msgid "Level 3"
|
593 |
msgstr "3. szint"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:2211
|
596 |
msgid "Level 2"
|
597 |
msgstr "2. szint"
|
598 |
|
599 |
+
#: ../includes/class-ure-lib.php:2212
|
600 |
msgid "Level 1"
|
601 |
msgstr "1. szint"
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:2213
|
604 |
msgid "Level 0"
|
605 |
msgstr "0. szint"
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:2214
|
608 |
msgid "Edit others pages"
|
609 |
msgstr "Mások oldalainak szerkesztése"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:2215
|
612 |
msgid "Edit published pages"
|
613 |
msgstr "Közzétett oldalak szerkesztése"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:2216
|
616 |
msgid "Publish pages"
|
617 |
msgstr "Oldalak közzététele"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:2217
|
620 |
msgid "Delete pages"
|
621 |
msgstr "Oldalak törlése"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:2218
|
624 |
msgid "Delete others pages"
|
625 |
msgstr "Mások oldalainak törlése"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:2219
|
628 |
msgid "Delete published pages"
|
629 |
msgstr "Közzétett oldalak törlése"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:2220
|
632 |
msgid "Delete posts"
|
633 |
msgstr "Bejegyzések törlése"
|
634 |
|
635 |
+
#: ../includes/class-ure-lib.php:2221
|
636 |
msgid "Delete others posts"
|
637 |
msgstr "Mások bejegyzéseinek törlése"
|
638 |
|
639 |
+
#: ../includes/class-ure-lib.php:2222
|
640 |
msgid "Delete published posts"
|
641 |
msgstr "Közzétett bejegyzések törlése"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:2223
|
644 |
msgid "Delete private posts"
|
645 |
msgstr "Privát bejegyzések törlése"
|
646 |
|
647 |
+
#: ../includes/class-ure-lib.php:2224
|
648 |
msgid "Edit private posts"
|
649 |
msgstr "Privát bejegyzések szerkesztése"
|
650 |
|
651 |
+
#: ../includes/class-ure-lib.php:2225
|
652 |
msgid "Read private posts"
|
653 |
msgstr "Privát bejegyzések olvasása"
|
654 |
|
655 |
+
#: ../includes/class-ure-lib.php:2226
|
656 |
msgid "Delete private pages"
|
657 |
msgstr "Privát oldalak törlése"
|
658 |
|
659 |
+
#: ../includes/class-ure-lib.php:2227
|
660 |
msgid "Edit private pages"
|
661 |
msgstr "Privát oldalak szerkesztése"
|
662 |
|
663 |
+
#: ../includes/class-ure-lib.php:2228
|
664 |
msgid "Read private pages"
|
665 |
msgstr "Privát oldalak olvasása"
|
666 |
|
667 |
+
#: ../includes/class-ure-lib.php:2229
|
668 |
msgid "Delete users"
|
669 |
msgstr "Felhasználók törlése"
|
670 |
|
671 |
+
#: ../includes/class-ure-lib.php:2230
|
672 |
msgid "Create users"
|
673 |
msgstr "Felhasználók létrehozása"
|
674 |
|
675 |
+
#: ../includes/class-ure-lib.php:2231
|
676 |
msgid "Unfiltered upload"
|
677 |
msgstr "Szűretlen feltöltés"
|
678 |
|
679 |
+
#: ../includes/class-ure-lib.php:2232
|
680 |
msgid "Edit dashboard"
|
681 |
msgstr "Vezérlőpult szerkesztése"
|
682 |
|
683 |
+
#: ../includes/class-ure-lib.php:2233
|
684 |
msgid "Update plugins"
|
685 |
msgstr "Bővítmények frissítése"
|
686 |
|
687 |
+
#: ../includes/class-ure-lib.php:2234
|
688 |
msgid "Delete plugins"
|
689 |
msgstr "Bővítmények törlése"
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:2235
|
692 |
msgid "Install plugins"
|
693 |
msgstr "Bővítmények telepítése"
|
694 |
|
695 |
+
#: ../includes/class-ure-lib.php:2236
|
696 |
msgid "Update themes"
|
697 |
msgstr "Sablonok frissítése"
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2237
|
700 |
msgid "Install themes"
|
701 |
msgstr "Sablonok telepítése"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2238
|
704 |
msgid "Update core"
|
705 |
msgstr "Mag frissítése"
|
706 |
|
707 |
+
#: ../includes/class-ure-lib.php:2239
|
708 |
msgid "List users"
|
709 |
msgstr "Felhasználók listázása"
|
710 |
|
711 |
+
#: ../includes/class-ure-lib.php:2240
|
712 |
msgid "Remove users"
|
713 |
msgstr "Felhasználók törlése"
|
714 |
|
715 |
+
#: ../includes/class-ure-lib.php:2241
|
716 |
msgid "Add users"
|
717 |
msgstr "Felhasználók hozzáadása"
|
718 |
|
719 |
+
#: ../includes/class-ure-lib.php:2242
|
720 |
msgid "Promote users"
|
721 |
msgstr "Felhasználók előléptetése"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2243
|
724 |
msgid "Edit theme options"
|
725 |
msgstr "Sablon beállítások módosítása"
|
726 |
|
727 |
+
#: ../includes/class-ure-lib.php:2244
|
728 |
msgid "Delete themes"
|
729 |
msgstr "Sablonok törlése"
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2245
|
732 |
msgid "Export"
|
733 |
msgstr "Exportálás"
|
734 |
|
735 |
+
#: ../includes/class-ure-lib.php:2358
|
736 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
737 |
msgstr "Hiba: a képesség neve csak latin betűkből és számokból állhat."
|
738 |
|
739 |
+
#: ../includes/class-ure-lib.php:2371
|
740 |
#, php-format
|
741 |
msgid "Capability %s is added successfully"
|
742 |
msgstr "%s képesség sikeresen hozzáadva"
|
743 |
|
744 |
+
#: ../includes/class-ure-lib.php:2373
|
745 |
#, php-format
|
746 |
msgid "Capability %s exists already"
|
747 |
msgstr "%s képesség már létezik"
|
748 |
|
749 |
+
#: ../includes/class-ure-lib.php:2402
|
750 |
#, php-format
|
751 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
752 |
msgstr "Hiba! Nincs jogosultsága a képesség (%s) törléséhez."
|
753 |
|
754 |
+
#: ../includes/class-ure-lib.php:2421
|
755 |
#, php-format
|
756 |
msgid "Capability %s is removed successfully"
|
757 |
msgstr "%s képesség sikeresen törölve"
|
758 |
|
759 |
+
#: ../includes/class-ure-lib.php:2525
|
760 |
msgid "Version:"
|
761 |
msgstr "Verzió:"
|
762 |
|
763 |
+
#: ../includes/class-ure-lib.php:2526
|
764 |
msgid "Author's website"
|
765 |
msgstr "Szerző weboldala"
|
766 |
|
767 |
+
#: ../includes/class-ure-lib.php:2527
|
768 |
msgid "Plugin webpage"
|
769 |
msgstr "Bővítmény weboldala"
|
770 |
|
771 |
+
#: ../includes/class-ure-lib.php:2528
|
772 |
msgid "Plugin download"
|
773 |
msgstr "Bővítmény letöltése"
|
774 |
|
775 |
+
#: ../includes/class-ure-lib.php:2530
|
776 |
msgid "FAQ"
|
777 |
msgstr "GyIK"
|
778 |
|
779 |
+
#: ../includes/class-ure-lib.php:2578
|
780 |
msgid "None"
|
781 |
msgstr "Nincs"
|
782 |
|
783 |
+
#: ../includes/class-ure-lib.php:2605
|
784 |
msgid "Delete All Unused Roles"
|
785 |
msgstr "Minden nem használt szerepkör törlése"
|
786 |
|
787 |
+
#: ../includes/class-ure-lib.php:2629
|
788 |
msgid "— No role for this site —"
|
789 |
msgstr "— Nincs szerepköre ezen az oldalon —"
|
790 |
|
791 |
+
#: ../includes/ure-user-edit.php:32
|
792 |
msgid "Network Super Admin"
|
793 |
msgstr "Multisite Szuperadmin"
|
794 |
|
795 |
+
#: ../includes/ure-user-edit.php:35
|
796 |
msgid "Change capabilities for user"
|
797 |
msgstr "Szerepkör módosítása -"
|
798 |
|
799 |
+
#: ../includes/ure-user-edit.php:72
|
800 |
msgid "Primary Role:"
|
801 |
msgstr "Elsődleges szerepkör:"
|
802 |
|
803 |
+
#: ../includes/ure-user-edit.php:82
|
804 |
msgid "bbPress Role:"
|
805 |
msgstr "bbPress szerepkör:"
|
806 |
|
807 |
+
#: ../includes/ure-user-edit.php:92
|
808 |
msgid "Other Roles:"
|
809 |
msgstr "Más szerepkörök:"
|
810 |
|
838 |
"használja. Csak a régi sablonokkal és bővítményekkel való kompatíbilitás "
|
839 |
"miatt maradtak meg. Ez az opció ezeket az elavult képességeket jeleníti meg."
|
840 |
|
841 |
+
#: ../includes/class-ure-screen-help.php:26
|
842 |
+
msgid ""
|
843 |
+
"If turned off - capabilities section of selected user is shown in readonly "
|
844 |
+
"mode. Administrator can not assign capabilities to the user directly. He "
|
845 |
+
"should make it using roles only."
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: ../includes/class-ure-screen-help.php:46
|
849 |
msgid ""
|
850 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
851 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
852 |
"users list with role \"No rights\" at the separate tab then."
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: ../includes/class-ure-screen-help.php:63
|
856 |
msgid "Other default roles for new registered user"
|
857 |
msgstr "Egyéb alap szerepkörök újonnan regisztrált felhasználók számára:"
|
858 |
|
859 |
+
#: ../includes/class-ure-screen-help.php:64
|
860 |
msgid ""
|
861 |
"select roles below to assign them to the new user automatically as an "
|
862 |
"addition to the primary role. Note for multisite environment: take into "
|
868 |
"környezethez: vegye figyelembe, hogy több alap szerepkörnek is léteznie kell "
|
869 |
"a weboldalon, az új felhasználók létrehozásához."
|
870 |
|
871 |
+
#: ../includes/class-ure-screen-help.php:82
|
872 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
873 |
msgstr ""
|
874 |
"Nem szuperadminok is hozhassanak létre, módosíthassanak és törölhessenek "
|
875 |
"felhasználókat"
|
876 |
|
877 |
+
#: ../includes/class-ure-screen-help.php:83
|
878 |
msgid ""
|
879 |
"Super administrator only may create, edit and delete users under WordPress "
|
880 |
"multi-site by default. Turn this option on in order to remove this "
|
lang/ure-id_ID.mo
CHANGED
Binary file
|
lang/ure-id_ID.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: http://al-badar.net <nasrulhaq81@gmail.com>\n"
|
@@ -16,84 +16,136 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../includes/settings-template.php:
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
msgid "Save"
|
22 |
msgstr "Simpan"
|
23 |
|
24 |
-
#: ../includes/settings-template.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid ""
|
26 |
"Note for multisite environment: take into account that other default roles "
|
27 |
"should exist at the site, in order to be assigned to the new registered "
|
28 |
"users."
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../includes/
|
|
|
|
|
|
|
|
|
32 |
msgid "Change role for users without role"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../includes/class-user-role-editor.php:
|
36 |
msgid "No rights"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: ../includes/class-user-role-editor.php:
|
40 |
msgid "Provide new role"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: ../includes/class-user-role-editor.php:
|
44 |
-
#: ../includes/class-user-role-editor.php:
|
45 |
msgid "You do not have permission to edit this user."
|
46 |
msgstr "Anda tidak diizinkan untuk menyunting user ini. "
|
47 |
|
48 |
-
#: ../includes/class-user-role-editor.php:
|
49 |
msgid "Capabilities"
|
50 |
msgstr "Kemampuan"
|
51 |
|
52 |
-
#: ../includes/class-user-role-editor.php:
|
53 |
msgid "Settings"
|
54 |
msgstr "Pengaturan"
|
55 |
|
56 |
-
#: ../includes/class-user-role-editor.php:
|
57 |
-
#: ../includes/class-ure-lib.php:
|
58 |
msgid "Changelog"
|
59 |
msgstr "log Perubahan"
|
60 |
|
61 |
-
#: ../includes/class-user-role-editor.php:
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
#: ../includes/class-user-role-editor.php:553
|
66 |
-
msgid "Additional Modules"
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: ../includes/class-user-role-editor.php:559
|
70 |
-
#, fuzzy
|
71 |
-
msgid "Default Roles"
|
72 |
-
msgstr "Peran "
|
73 |
-
|
74 |
-
#: ../includes/class-user-role-editor.php:565
|
75 |
-
msgid "Multisite"
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: ../includes/class-user-role-editor.php:575
|
79 |
-
#: ../includes/class-user-role-editor.php:603
|
80 |
-
#: ../includes/class-user-role-editor.php:948
|
81 |
-
#: ../includes/class-ure-lib.php:251
|
82 |
msgid "User Role Editor"
|
83 |
msgstr "User Role Editor"
|
84 |
|
85 |
-
#: ../includes/class-user-role-editor.php:
|
86 |
-
#: ../includes/class-user-role-editor.php:
|
87 |
-
#: ../includes/class-user-role-editor.php:
|
88 |
msgid "User Role Editor options are updated"
|
89 |
msgstr "Pilihan User Role Editor diperbarui"
|
90 |
|
91 |
-
#: ../includes/class-user-role-editor.php:
|
92 |
#, fuzzy
|
93 |
msgid "Default Roles are updated"
|
94 |
msgstr "Peran "
|
95 |
|
96 |
-
#: ../includes/class-user-role-editor.php:
|
97 |
msgid ""
|
98 |
"You do not have sufficient permissions to manage options for User Role "
|
99 |
"Editor."
|
@@ -101,45 +153,48 @@ msgstr ""
|
|
101 |
"Anda tidak memiliki izin yang memadai untuk mengelola pilihan User Role "
|
102 |
"Editor."
|
103 |
|
104 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
105 |
msgid "Insufficient permissions to work with User Role Editor"
|
106 |
msgstr "Izin yang tidak sesuai untuk bekerja dengan User Role Editor"
|
107 |
|
108 |
-
#: ../includes/class-user-role-editor.php:
|
109 |
msgid "Select All"
|
110 |
msgstr "Pilih Semua"
|
111 |
|
112 |
-
#: ../includes/class-user-role-editor.php:
|
113 |
msgid "Unselect All"
|
114 |
msgstr "Batalkan Semua"
|
115 |
|
116 |
-
#: ../includes/class-user-role-editor.php:
|
117 |
msgid "Reverse"
|
118 |
msgstr "Memutar"
|
119 |
|
120 |
-
#: ../includes/class-user-role-editor.php:
|
121 |
msgid "Update"
|
122 |
msgstr "Pembaruan"
|
123 |
|
124 |
-
#: ../includes/class-user-role-editor.php:
|
125 |
msgid "Please confirm permissions update"
|
126 |
msgstr "Harap konfirmasi pembaruan izin"
|
127 |
|
128 |
-
#: ../includes/class-user-role-editor.php:
|
129 |
msgid "Add New Role"
|
130 |
msgstr "Tambah Peran Baru"
|
131 |
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
-
#: ../includes/class-user-role-editor.php:
|
134 |
#, fuzzy
|
135 |
msgid "Rename Role"
|
136 |
msgstr "Hapus Peran"
|
137 |
|
138 |
-
#: ../includes/class-user-role-editor.php:
|
139 |
msgid " Role name (ID) can not be empty!"
|
140 |
msgstr "Nama peran (ID) tidak boleh kosong!"
|
141 |
|
142 |
-
#: ../includes/class-user-role-editor.php:
|
143 |
msgid ""
|
144 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
145 |
"only!"
|
@@ -147,43 +202,43 @@ msgstr ""
|
|
147 |
"Nama peran (ID) harus berisi karakter latin, angka, tanda hubung atau garis "
|
148 |
"bawah saja!"
|
149 |
|
150 |
-
#: ../includes/class-user-role-editor.php:
|
151 |
msgid ""
|
152 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
153 |
"it."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: ../includes/class-user-role-editor.php:
|
157 |
msgid "Add Role"
|
158 |
msgstr "Tambah Peran"
|
159 |
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid "Delete Role"
|
162 |
msgstr "Hapus Peran"
|
163 |
|
164 |
-
#: ../includes/class-user-role-editor.php:
|
165 |
msgid "Cancel"
|
166 |
msgstr "Batalkan"
|
167 |
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
msgid "Add Capability"
|
170 |
msgstr "Tambah Kemampuan"
|
171 |
|
172 |
-
#: ../includes/class-user-role-editor.php:
|
173 |
-
#: ../includes/class-user-role-editor.php:
|
174 |
msgid "Delete Capability"
|
175 |
msgstr "Hapus Kemampuan"
|
176 |
|
177 |
-
#: ../includes/class-user-role-editor.php:
|
178 |
msgid "Reset"
|
179 |
msgstr "Atur Ulang"
|
180 |
|
181 |
-
#: ../includes/class-user-role-editor.php:
|
182 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
183 |
msgstr ""
|
184 |
"BAHAYA! Reset akan mengembalikan pengaturan default dari WordPress Inti."
|
185 |
|
186 |
-
#: ../includes/class-user-role-editor.php:
|
187 |
msgid ""
|
188 |
"If any plugins have changed capabilities in any way upon installation (such "
|
189 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -192,7 +247,7 @@ msgstr ""
|
|
192 |
"(seperti S2Member, WooCommerce, dan banyak lagi), kemampuan mereka akan "
|
193 |
"DIHAPUS!"
|
194 |
|
195 |
-
#: ../includes/class-user-role-editor.php:
|
196 |
msgid ""
|
197 |
"For more information on how to undo changes and restore plugin capabilities "
|
198 |
"go to"
|
@@ -200,19 +255,19 @@ msgstr ""
|
|
200 |
"Untuk informasi lebih lanjut tentang cara membatalkan perubahan dan "
|
201 |
"mengembalikan kemampuan Plugin pergi ke"
|
202 |
|
203 |
-
#: ../includes/class-user-role-editor.php:
|
204 |
msgid "Continue?"
|
205 |
msgstr "Lanjut?"
|
206 |
|
207 |
-
#: ../includes/class-user-role-editor.php:
|
208 |
msgid "Default Role"
|
209 |
msgstr "Peran "
|
210 |
|
211 |
-
#: ../includes/class-user-role-editor.php:
|
212 |
msgid "Set New Default Role"
|
213 |
msgstr "Atur Peran Baru Default"
|
214 |
|
215 |
-
#: ../includes/class-user-role-editor.php:
|
216 |
msgid ""
|
217 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
218 |
"or other custom code"
|
@@ -220,11 +275,11 @@ msgstr ""
|
|
220 |
"Peringatan! Hati-hati - menghapus kemampuan kritis dapat menyebabkan crash "
|
221 |
"beberapa Plugin atau kode kustom lainnya"
|
222 |
|
223 |
-
#: ../includes/class-user-role-editor.php:
|
224 |
msgid " Capability name (ID) can not be empty!"
|
225 |
msgstr "Nama Kemampuan (ID) tidak boleh kosong!"
|
226 |
|
227 |
-
#: ../includes/class-user-role-editor.php:
|
228 |
msgid ""
|
229 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
230 |
"underscore only!"
|
@@ -232,69 +287,118 @@ msgstr ""
|
|
232 |
"Nama Kemampuan (ID) harus mengandung karakter latin, angka, kata penghubung "
|
233 |
"atau garis bawah saja!"
|
234 |
|
235 |
-
#: ../includes/class-user-role-editor.php:
|
236 |
-
#: ../includes/class-user-role-editor.php:
|
237 |
msgid "Other Roles"
|
238 |
msgstr "Peran Lainnya"
|
239 |
|
240 |
-
#: ../includes/class-user-role-editor.php:
|
241 |
msgid "Edit"
|
242 |
msgstr "Sunting"
|
243 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
#: ../includes/ure-role-edit.php:44
|
245 |
msgid "If checked, then apply action to ALL sites of this Network"
|
246 |
msgstr ""
|
247 |
"Jika dicentang, kemudian terapkan tindakan untuk SEMUA situs Jaringan ini"
|
248 |
|
249 |
-
#: ../includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
250 |
msgid "Error: wrong request"
|
251 |
msgstr "Salah: salah permintaan"
|
252 |
|
253 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
msgid "Error: "
|
255 |
msgstr "Salah:"
|
256 |
|
257 |
-
#: ../includes/class-ure-lib.php:
|
258 |
msgid "Role"
|
259 |
msgstr "Peran"
|
260 |
|
261 |
-
#: ../includes/class-ure-lib.php:
|
262 |
msgid "does not exist"
|
263 |
msgstr "tidak ada"
|
264 |
|
265 |
-
#: ../includes/class-ure-lib.php:
|
266 |
msgid "Role is updated successfully"
|
267 |
msgstr "Peran berhasil diperbarui"
|
268 |
|
269 |
-
#: ../includes/class-ure-lib.php:
|
270 |
msgid "Roles are updated for all network"
|
271 |
msgstr "Peran diperbarui untuk semua jaringan"
|
272 |
|
273 |
-
#: ../includes/class-ure-lib.php:
|
274 |
msgid "Error occured during role(s) update"
|
275 |
msgstr "Kesalahan terjadi selama pembaruan peran"
|
276 |
|
277 |
-
#: ../includes/class-ure-lib.php:
|
278 |
msgid "User capabilities are updated successfully"
|
279 |
msgstr "Kemampuan pengguna berhasil diperbarui"
|
280 |
|
281 |
-
#: ../includes/class-ure-lib.php:
|
282 |
msgid "Error occured during user update"
|
283 |
msgstr "Kesalahan terjadi sepanjang pembaruan pengguna"
|
284 |
|
285 |
-
#: ../includes/class-ure-lib.php:
|
286 |
msgid "User Roles are restored to WordPress default values. "
|
287 |
msgstr "Peran Pengguna dikembalikan ke nilai Wordpress default."
|
288 |
|
289 |
-
#: ../includes/class-ure-lib.php:
|
290 |
msgid "Help"
|
291 |
msgstr "Bantuan"
|
292 |
|
293 |
-
#: ../includes/class-ure-lib.php:
|
294 |
msgid "Error is occur. Please check the log file."
|
295 |
msgstr "kesalahan terjadi, Harap periksa log data."
|
296 |
|
297 |
-
#: ../includes/class-ure-lib.php:
|
298 |
msgid ""
|
299 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
300 |
"only!"
|
@@ -302,394 +406,406 @@ msgstr ""
|
|
302 |
"Kesalahan: ID Peran harus mengandung karakter latin, angka, kata penghubung "
|
303 |
"dan garis bawah saja!"
|
304 |
|
305 |
-
#: ../includes/class-ure-lib.php:
|
306 |
msgid ""
|
307 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
308 |
"characters to it."
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../includes/class-ure-lib.php:
|
312 |
#, php-format
|
313 |
msgid "Role %s exists already"
|
314 |
msgstr "Peran %s telah ada"
|
315 |
|
316 |
-
#: ../includes/class-ure-lib.php:
|
317 |
msgid "Error is encountered during new role create operation"
|
318 |
msgstr "Kesalahan ditemui selama peran baru membuat operasi"
|
319 |
|
320 |
-
#: ../includes/class-ure-lib.php:
|
321 |
#, php-format
|
322 |
msgid "Role %s is created successfully"
|
323 |
msgstr "Peran %s berhasil dibuat"
|
324 |
|
325 |
-
#: ../includes/class-ure-lib.php:
|
326 |
msgid "Error: Role ID is empty!"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: ../includes/class-ure-lib.php:
|
330 |
msgid "Error: Empty role display name is not allowed."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: ../includes/class-ure-lib.php:
|
334 |
#, fuzzy, php-format
|
335 |
msgid "Role %s does not exists"
|
336 |
msgstr "tidak ada"
|
337 |
|
338 |
-
#: ../includes/class-ure-lib.php:
|
339 |
#, fuzzy, php-format
|
340 |
msgid "Role %s is renamed to %s successfully"
|
341 |
msgstr "Peran %s berhasil dibuat"
|
342 |
|
343 |
-
#: ../includes/class-ure-lib.php:
|
344 |
msgid "Error encountered during role delete operation"
|
345 |
msgstr "Kesalahan ditemui selama operasi penghapusan peran"
|
346 |
|
347 |
-
#: ../includes/class-ure-lib.php:
|
348 |
msgid "Unused roles are deleted successfully"
|
349 |
msgstr "Peran yang tidak digunakan berhasil dihapus"
|
350 |
|
351 |
-
#: ../includes/class-ure-lib.php:
|
352 |
#, php-format
|
353 |
msgid "Role %s is deleted successfully"
|
354 |
msgstr "Peran %s berhasil dihapus"
|
355 |
|
356 |
-
#: ../includes/class-ure-lib.php:
|
357 |
msgid "Error encountered during default role change operation"
|
358 |
msgstr "Kesalahan ditemui selama operasi perubahan peran standar"
|
359 |
|
360 |
-
#: ../includes/class-ure-lib.php:
|
361 |
#, php-format
|
362 |
msgid "Default role for new users is set to %s successfully"
|
363 |
msgstr "Peran standar untuk pengguna baru diatur ke %s dengan sukses"
|
364 |
|
365 |
-
#: ../includes/class-ure-lib.php:
|
366 |
msgid "Editor"
|
367 |
msgstr "Penyunting"
|
368 |
|
369 |
-
#: ../includes/class-ure-lib.php:
|
370 |
msgid "Author"
|
371 |
msgstr "Pengarang"
|
372 |
|
373 |
-
#: ../includes/class-ure-lib.php:
|
374 |
msgid "Contributor"
|
375 |
msgstr "Kontributor"
|
376 |
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
msgid "Subscriber"
|
379 |
msgstr "Pelanggan"
|
380 |
|
381 |
-
#: ../includes/class-ure-lib.php:
|
382 |
msgid "Switch themes"
|
383 |
msgstr "Ganti tema"
|
384 |
|
385 |
-
#: ../includes/class-ure-lib.php:
|
386 |
msgid "Edit themes"
|
387 |
msgstr "Sunting tema"
|
388 |
|
389 |
-
#: ../includes/class-ure-lib.php:
|
390 |
msgid "Activate plugins"
|
391 |
msgstr "Aktifkan plugin"
|
392 |
|
393 |
-
#: ../includes/class-ure-lib.php:
|
394 |
msgid "Edit plugins"
|
395 |
msgstr "Sunting plugin"
|
396 |
|
397 |
-
#: ../includes/class-ure-lib.php:
|
398 |
msgid "Edit users"
|
399 |
msgstr "Sunting pengguna"
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
402 |
msgid "Edit files"
|
403 |
msgstr "Sunting data"
|
404 |
|
405 |
-
#: ../includes/class-ure-lib.php:
|
406 |
msgid "Manage options"
|
407 |
msgstr "kelola pilihan"
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
msgid "Moderate comments"
|
411 |
msgstr "Moderasi komentar"
|
412 |
|
413 |
-
#: ../includes/class-ure-lib.php:
|
414 |
msgid "Manage categories"
|
415 |
msgstr "Kelola kategori"
|
416 |
|
417 |
-
#: ../includes/class-ure-lib.php:
|
418 |
msgid "Manage links"
|
419 |
msgstr "Kelola tautan"
|
420 |
|
421 |
-
#: ../includes/class-ure-lib.php:
|
422 |
msgid "Upload files"
|
423 |
msgstr "Unggah data"
|
424 |
|
425 |
-
#: ../includes/class-ure-lib.php:
|
426 |
msgid "Import"
|
427 |
msgstr "Impor"
|
428 |
|
429 |
-
#: ../includes/class-ure-lib.php:
|
430 |
msgid "Unfiltered html"
|
431 |
msgstr "HTML tidak tersaring"
|
432 |
|
433 |
-
#: ../includes/class-ure-lib.php:
|
434 |
msgid "Edit posts"
|
435 |
msgstr "Sunting posting"
|
436 |
|
437 |
-
#: ../includes/class-ure-lib.php:
|
438 |
msgid "Edit others posts"
|
439 |
msgstr "Sunting posting lainnya"
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
msgid "Edit published posts"
|
443 |
msgstr "Sunting posting terpublikasi"
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
msgid "Publish posts"
|
447 |
msgstr "Publikasi posting"
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
msgid "Edit pages"
|
451 |
msgstr "Sunting halaman"
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
msgid "Read"
|
455 |
msgstr "Baca"
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
msgid "Level 10"
|
459 |
msgstr "Tingkat 10"
|
460 |
|
461 |
-
#: ../includes/class-ure-lib.php:
|
462 |
msgid "Level 9"
|
463 |
msgstr "Tingkat 9"
|
464 |
|
465 |
-
#: ../includes/class-ure-lib.php:
|
466 |
msgid "Level 8"
|
467 |
msgstr "Tingkat 8"
|
468 |
|
469 |
-
#: ../includes/class-ure-lib.php:
|
470 |
msgid "Level 7"
|
471 |
msgstr "Tingkat 7"
|
472 |
|
473 |
-
#: ../includes/class-ure-lib.php:
|
474 |
msgid "Level 6"
|
475 |
msgstr "Tingkat 6"
|
476 |
|
477 |
-
#: ../includes/class-ure-lib.php:
|
478 |
msgid "Level 5"
|
479 |
msgstr "Tingkat 5"
|
480 |
|
481 |
-
#: ../includes/class-ure-lib.php:
|
482 |
msgid "Level 4"
|
483 |
msgstr "Tingkat 4"
|
484 |
|
485 |
-
#: ../includes/class-ure-lib.php:
|
486 |
msgid "Level 3"
|
487 |
msgstr "Tingkat 3"
|
488 |
|
489 |
-
#: ../includes/class-ure-lib.php:
|
490 |
msgid "Level 2"
|
491 |
msgstr "Tingkat 2"
|
492 |
|
493 |
-
#: ../includes/class-ure-lib.php:
|
494 |
msgid "Level 1"
|
495 |
msgstr "Tingkat 1"
|
496 |
|
497 |
-
#: ../includes/class-ure-lib.php:
|
498 |
msgid "Level 0"
|
499 |
msgstr "Tingkat 0"
|
500 |
|
501 |
-
#: ../includes/class-ure-lib.php:
|
502 |
msgid "Edit others pages"
|
503 |
msgstr "Sunting halaman lainnya"
|
504 |
|
505 |
-
#: ../includes/class-ure-lib.php:
|
506 |
msgid "Edit published pages"
|
507 |
msgstr "Sunting halaman terpublikasi"
|
508 |
|
509 |
-
#: ../includes/class-ure-lib.php:
|
510 |
msgid "Publish pages"
|
511 |
msgstr "Publikasi halaman"
|
512 |
|
513 |
-
#: ../includes/class-ure-lib.php:
|
514 |
msgid "Delete pages"
|
515 |
msgstr "Hapus halaman"
|
516 |
|
517 |
-
#: ../includes/class-ure-lib.php:
|
518 |
msgid "Delete others pages"
|
519 |
msgstr "Hapus halaman lainnya"
|
520 |
|
521 |
-
#: ../includes/class-ure-lib.php:
|
522 |
msgid "Delete published pages"
|
523 |
msgstr "Hapus halaman terpublikasi"
|
524 |
|
525 |
-
#: ../includes/class-ure-lib.php:
|
526 |
msgid "Delete posts"
|
527 |
msgstr "hapus posting"
|
528 |
|
529 |
-
#: ../includes/class-ure-lib.php:
|
530 |
msgid "Delete others posts"
|
531 |
msgstr "Hapus posting lainnya"
|
532 |
|
533 |
-
#: ../includes/class-ure-lib.php:
|
534 |
msgid "Delete published posts"
|
535 |
msgstr "Hapus posting terpublikasi"
|
536 |
|
537 |
-
#: ../includes/class-ure-lib.php:
|
538 |
msgid "Delete private posts"
|
539 |
msgstr "Hapus posting pribadi"
|
540 |
|
541 |
-
#: ../includes/class-ure-lib.php:
|
542 |
msgid "Edit private posts"
|
543 |
msgstr "Sunting posting pribadi"
|
544 |
|
545 |
-
#: ../includes/class-ure-lib.php:
|
546 |
msgid "Read private posts"
|
547 |
msgstr "Baca posting pribadi"
|
548 |
|
549 |
-
#: ../includes/class-ure-lib.php:
|
550 |
msgid "Delete private pages"
|
551 |
msgstr "Hapus halaman pribadi"
|
552 |
|
553 |
-
#: ../includes/class-ure-lib.php:
|
554 |
msgid "Edit private pages"
|
555 |
msgstr "Sunting halaman pribadi"
|
556 |
|
557 |
-
#: ../includes/class-ure-lib.php:
|
558 |
msgid "Read private pages"
|
559 |
msgstr "baca halaman pribadi"
|
560 |
|
561 |
-
#: ../includes/class-ure-lib.php:
|
562 |
msgid "Delete users"
|
563 |
msgstr "Hapus pengguna"
|
564 |
|
565 |
-
#: ../includes/class-ure-lib.php:
|
566 |
msgid "Create users"
|
567 |
msgstr "Buat pengguna"
|
568 |
|
569 |
-
#: ../includes/class-ure-lib.php:
|
570 |
msgid "Unfiltered upload"
|
571 |
msgstr "Unggahan tidak tersaring"
|
572 |
|
573 |
-
#: ../includes/class-ure-lib.php:
|
574 |
msgid "Edit dashboard"
|
575 |
msgstr "Sunting dasbor"
|
576 |
|
577 |
-
#: ../includes/class-ure-lib.php:
|
578 |
msgid "Update plugins"
|
579 |
msgstr "Perbarui plugin"
|
580 |
|
581 |
-
#: ../includes/class-ure-lib.php:
|
582 |
msgid "Delete plugins"
|
583 |
msgstr "Hapus plugin"
|
584 |
|
585 |
-
#: ../includes/class-ure-lib.php:
|
586 |
msgid "Install plugins"
|
587 |
msgstr "Pasang plugin"
|
588 |
|
589 |
-
#: ../includes/class-ure-lib.php:
|
590 |
msgid "Update themes"
|
591 |
msgstr "Perbarui tema"
|
592 |
|
593 |
-
#: ../includes/class-ure-lib.php:
|
594 |
msgid "Install themes"
|
595 |
msgstr "Pasang tema"
|
596 |
|
597 |
-
#: ../includes/class-ure-lib.php:
|
598 |
msgid "Update core"
|
599 |
msgstr "Perbarui inti"
|
600 |
|
601 |
-
#: ../includes/class-ure-lib.php:
|
602 |
msgid "List users"
|
603 |
msgstr "Daftar pengguna"
|
604 |
|
605 |
-
#: ../includes/class-ure-lib.php:
|
606 |
msgid "Remove users"
|
607 |
msgstr "Hapus pengguna"
|
608 |
|
609 |
-
#: ../includes/class-ure-lib.php:
|
610 |
msgid "Add users"
|
611 |
msgstr "Tambah pengguna"
|
612 |
|
613 |
-
#: ../includes/class-ure-lib.php:
|
614 |
msgid "Promote users"
|
615 |
msgstr "Promosi pengguna"
|
616 |
|
617 |
-
#: ../includes/class-ure-lib.php:
|
618 |
msgid "Edit theme options"
|
619 |
msgstr "Sunting pilihan tema"
|
620 |
|
621 |
-
#: ../includes/class-ure-lib.php:
|
622 |
msgid "Delete themes"
|
623 |
msgstr "Hapus tema"
|
624 |
|
625 |
-
#: ../includes/class-ure-lib.php:
|
626 |
msgid "Export"
|
627 |
msgstr "Ekspor"
|
628 |
|
629 |
-
#: ../includes/class-ure-lib.php:
|
630 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
631 |
msgstr "Salah: Kemampuan nama harus mengandung karakter latin dan angka saja!"
|
632 |
|
633 |
-
#: ../includes/class-ure-lib.php:
|
634 |
#, php-format
|
635 |
msgid "Capability %s is added successfully"
|
636 |
msgstr "Kemampuan %s berhasil ditambahkan"
|
637 |
|
638 |
-
#: ../includes/class-ure-lib.php:
|
639 |
#, php-format
|
640 |
msgid "Capability %s exists already"
|
641 |
msgstr "Kemampuan %s telah ada"
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
#, php-format
|
645 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
646 |
msgstr "Salah! Anda tidak memiliki izin untuk menghapus kemampuan ini: %s!"
|
647 |
|
648 |
-
#: ../includes/class-ure-lib.php:
|
649 |
#, php-format
|
650 |
msgid "Capability %s is removed successfully"
|
651 |
msgstr "Kemampuan %s berhasil dihapus"
|
652 |
|
653 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
|
|
|
|
654 |
msgid "Author's website"
|
655 |
msgstr "Website pengarang"
|
656 |
|
657 |
-
#: ../includes/class-ure-lib.php:
|
658 |
msgid "Plugin webpage"
|
659 |
msgstr "Halaman web Plugin"
|
660 |
|
661 |
-
#: ../includes/class-ure-lib.php:
|
662 |
#, fuzzy
|
663 |
msgid "Plugin download"
|
664 |
msgstr "Halaman web Plugin"
|
665 |
|
666 |
-
#: ../includes/class-ure-lib.php:
|
667 |
msgid "FAQ"
|
668 |
msgstr "FAQ"
|
669 |
|
670 |
-
#: ../includes/class-ure-lib.php:
|
671 |
msgid "None"
|
672 |
msgstr "Nihil"
|
673 |
|
674 |
-
#: ../includes/class-ure-lib.php:
|
675 |
msgid "Delete All Unused Roles"
|
676 |
msgstr "Hapus Peran Tidak Terpakai"
|
677 |
|
678 |
-
#: ../includes/class-ure-lib.php:
|
679 |
msgid "— No role for this site —"
|
680 |
msgstr "— Tidak ada peran untuk situs ini —"
|
681 |
|
682 |
-
#: ../includes/ure-user-edit.php:
|
683 |
msgid "Network Super Admin"
|
684 |
msgstr "Jaringan Super Admin"
|
685 |
|
686 |
-
#: ../includes/ure-user-edit.php:
|
687 |
msgid "Change capabilities for user"
|
688 |
msgstr "Ubah kemampuan untuk pengguna"
|
689 |
|
690 |
-
#: ../includes/
|
691 |
-
msgid "
|
692 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
693 |
|
694 |
#: ../includes/class-ure-screen-help.php:16
|
695 |
msgid ""
|
@@ -701,10 +817,6 @@ msgstr ""
|
|
701 |
"daftar seleksi pilihan peran User Role Editor. Akan tersembunyi secara "
|
702 |
"default demi alasan keamanan."
|
703 |
|
704 |
-
#: ../includes/class-ure-screen-help.php:18
|
705 |
-
msgid "Show capabilities in the human readable form"
|
706 |
-
msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
707 |
-
|
708 |
#: ../includes/class-ure-screen-help.php:19
|
709 |
msgid ""
|
710 |
"automatically converts capability names from the technical form for internal "
|
@@ -715,10 +827,6 @@ msgstr ""
|
|
715 |
"penggunaan internal seperti \"edit_others_posts\" ke bentuk yang lebih user "
|
716 |
"friendly, misalnya \"Edit posting orang lain\"."
|
717 |
|
718 |
-
#: ../includes/class-ure-screen-help.php:21
|
719 |
-
msgid "Show deprecated capabilities"
|
720 |
-
msgstr "Tampilkan kemampuan usang"
|
721 |
-
|
722 |
#: ../includes/class-ure-screen-help.php:22
|
723 |
msgid ""
|
724 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
@@ -731,22 +839,25 @@ msgstr ""
|
|
731 |
"kompatibilitas dengan tema lama dan kode plugin. Menyalakan opsi ini akan "
|
732 |
"menunjukkan kemampuan mereka usang."
|
733 |
|
734 |
-
#: ../includes/class-ure-screen-help.php:
|
735 |
-
msgid "
|
|
|
|
|
|
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: ../includes/class-ure-screen-help.php:
|
739 |
msgid ""
|
740 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
741 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
742 |
"users list with role \"No rights\" at the separate tab then."
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: ../includes/class-ure-screen-help.php:
|
746 |
msgid "Other default roles for new registered user"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: ../includes/class-ure-screen-help.php:
|
750 |
msgid ""
|
751 |
"select roles below to assign them to the new user automatically as an "
|
752 |
"addition to the primary role. Note for multisite environment: take into "
|
@@ -754,11 +865,11 @@ msgid ""
|
|
754 |
"assigned to the new registered users."
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: ../includes/class-ure-screen-help.php:
|
758 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: ../includes/class-ure-screen-help.php:
|
762 |
#, fuzzy
|
763 |
msgid ""
|
764 |
"Super administrator only may create, edit and delete users under WordPress "
|
@@ -769,60 +880,6 @@ msgstr ""
|
|
769 |
"bawah WordPress multi-situs. Aktifkan pilihan ini dalam rangka menghapus "
|
770 |
"keterbatasan ini."
|
771 |
|
772 |
-
#, fuzzy
|
773 |
-
#~ msgid "User Role Editor - Options"
|
774 |
-
#~ msgstr "User Role Editor"
|
775 |
-
|
776 |
-
#, fuzzy
|
777 |
-
#~ msgid "Primary default role: "
|
778 |
-
#~ msgstr "Peran Utama:"
|
779 |
-
|
780 |
-
#, fuzzy
|
781 |
-
#~ msgid "Select Role and change its capabilities:"
|
782 |
-
#~ msgstr "Pilih Peran dan ubah daftar kemampuan"
|
783 |
-
|
784 |
-
#~ msgid "Show capabilities in human readable form"
|
785 |
-
#~ msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
786 |
-
|
787 |
-
#~ msgid "Apply to All Sites"
|
788 |
-
#~ msgstr "Terapkan ke Semua Situs"
|
789 |
-
|
790 |
-
#~ msgid "Core capabilities:"
|
791 |
-
#~ msgstr "Kemampuan inti:"
|
792 |
-
|
793 |
-
#~ msgid "Quick filter:"
|
794 |
-
#~ msgstr "Saring Cepat:"
|
795 |
-
|
796 |
-
#~ msgid "Custom capabilities:"
|
797 |
-
#~ msgstr "Kustom kemampuan:"
|
798 |
-
|
799 |
-
#~ msgid "Role name (ID): "
|
800 |
-
#~ msgstr "Nama Peran (ID):"
|
801 |
-
|
802 |
-
#~ msgid "Display Role Name: "
|
803 |
-
#~ msgstr "Tampilkan Nama Peran:"
|
804 |
-
|
805 |
-
#~ msgid "Make copy of: "
|
806 |
-
#~ msgstr "buat salinan:"
|
807 |
-
|
808 |
-
#~ msgid "Select Role:"
|
809 |
-
#~ msgstr "Pilih Peran:"
|
810 |
-
|
811 |
-
#~ msgid "Delete:"
|
812 |
-
#~ msgstr "Hapus:"
|
813 |
-
|
814 |
-
#~ msgid "Capability name (ID): "
|
815 |
-
#~ msgstr "Nama Kemampuan (ID):"
|
816 |
-
|
817 |
-
#~ msgid "Primary Role:"
|
818 |
-
#~ msgstr "Peran Utama:"
|
819 |
-
|
820 |
-
#~ msgid "bbPress Role:"
|
821 |
-
#~ msgstr "Peran bbPress:"
|
822 |
-
|
823 |
-
#~ msgid "Other Roles:"
|
824 |
-
#~ msgstr "Peran Lain:"
|
825 |
-
|
826 |
#, fuzzy
|
827 |
#~ msgid "select roles below"
|
828 |
#~ 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-02-06 11:48+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: http://al-badar.net <nasrulhaq81@gmail.com>\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../includes/settings-template.php:17
|
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:233
|
101 |
msgid "Change role for users without role"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: ../includes/class-user-role-editor.php:234
|
105 |
msgid "No rights"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: ../includes/class-user-role-editor.php:235
|
109 |
msgid "Provide new role"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: ../includes/class-user-role-editor.php:319
|
113 |
+
#: ../includes/class-user-role-editor.php:321
|
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:2529
|
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:1029
|
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:778
|
149 |
msgid ""
|
150 |
"You do not have sufficient permissions to manage options for User Role "
|
151 |
"Editor."
|
153 |
"Anda tidak memiliki izin yang memadai untuk mengelola pilihan User Role "
|
154 |
"Editor."
|
155 |
|
156 |
+
#: ../includes/class-user-role-editor.php:850
|
157 |
+
#: ../includes/class-ure-lib.php:1697 ../includes/class-ure-lib.php:1950
|
158 |
+
#: ../includes/class-ure-lib.php:2066 ../includes/class-ure-lib.php:2114
|
159 |
+
#: ../includes/class-ure-lib.php:2350 ../includes/class-ure-lib.php:2395
|
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:976
|
164 |
msgid "Select All"
|
165 |
msgstr "Pilih Semua"
|
166 |
|
167 |
+
#: ../includes/class-user-role-editor.php:977
|
168 |
msgid "Unselect All"
|
169 |
msgstr "Batalkan Semua"
|
170 |
|
171 |
+
#: ../includes/class-user-role-editor.php:978
|
172 |
msgid "Reverse"
|
173 |
msgstr "Memutar"
|
174 |
|
175 |
+
#: ../includes/class-user-role-editor.php:979
|
176 |
msgid "Update"
|
177 |
msgstr "Pembaruan"
|
178 |
|
179 |
+
#: ../includes/class-user-role-editor.php:980
|
180 |
msgid "Please confirm permissions update"
|
181 |
msgstr "Harap konfirmasi pembaruan izin"
|
182 |
|
183 |
+
#: ../includes/class-user-role-editor.php:981
|
184 |
msgid "Add New Role"
|
185 |
msgstr "Tambah Peran Baru"
|
186 |
|
187 |
+
#: ../includes/class-user-role-editor.php:982
|
188 |
+
#: ../includes/class-user-role-editor.php:987
|
189 |
#, fuzzy
|
190 |
msgid "Rename Role"
|
191 |
msgstr "Hapus Peran"
|
192 |
|
193 |
+
#: ../includes/class-user-role-editor.php:983
|
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:984
|
198 |
msgid ""
|
199 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
200 |
"only!"
|
202 |
"Nama peran (ID) harus berisi karakter latin, angka, tanda hubung atau garis "
|
203 |
"bawah saja!"
|
204 |
|
205 |
+
#: ../includes/class-user-role-editor.php:985
|
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:986
|
212 |
msgid "Add Role"
|
213 |
msgstr "Tambah Peran"
|
214 |
|
215 |
+
#: ../includes/class-user-role-editor.php:988
|
216 |
msgid "Delete Role"
|
217 |
msgstr "Hapus Peran"
|
218 |
|
219 |
+
#: ../includes/class-user-role-editor.php:989
|
220 |
msgid "Cancel"
|
221 |
msgstr "Batalkan"
|
222 |
|
223 |
+
#: ../includes/class-user-role-editor.php:990
|
224 |
msgid "Add Capability"
|
225 |
msgstr "Tambah Kemampuan"
|
226 |
|
227 |
+
#: ../includes/class-user-role-editor.php:991
|
228 |
+
#: ../includes/class-user-role-editor.php:1000
|
229 |
msgid "Delete Capability"
|
230 |
msgstr "Hapus Kemampuan"
|
231 |
|
232 |
+
#: ../includes/class-user-role-editor.php:992
|
233 |
msgid "Reset"
|
234 |
msgstr "Atur Ulang"
|
235 |
|
236 |
+
#: ../includes/class-user-role-editor.php:993
|
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:994
|
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!"
|
247 |
"(seperti S2Member, WooCommerce, dan banyak lagi), kemampuan mereka akan "
|
248 |
"DIHAPUS!"
|
249 |
|
250 |
+
#: ../includes/class-user-role-editor.php:995
|
251 |
msgid ""
|
252 |
"For more information on how to undo changes and restore plugin capabilities "
|
253 |
"go to"
|
255 |
"Untuk informasi lebih lanjut tentang cara membatalkan perubahan dan "
|
256 |
"mengembalikan kemampuan Plugin pergi ke"
|
257 |
|
258 |
+
#: ../includes/class-user-role-editor.php:997
|
259 |
msgid "Continue?"
|
260 |
msgstr "Lanjut?"
|
261 |
|
262 |
+
#: ../includes/class-user-role-editor.php:998
|
263 |
msgid "Default Role"
|
264 |
msgstr "Peran "
|
265 |
|
266 |
+
#: ../includes/class-user-role-editor.php:999
|
267 |
msgid "Set New Default Role"
|
268 |
msgstr "Atur Peran Baru Default"
|
269 |
|
270 |
+
#: ../includes/class-user-role-editor.php:1001
|
271 |
msgid ""
|
272 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
273 |
"or other custom code"
|
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:1002
|
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:1003
|
283 |
msgid ""
|
284 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
285 |
"underscore only!"
|
287 |
"Nama Kemampuan (ID) harus mengandung karakter latin, angka, kata penghubung "
|
288 |
"atau garis bawah saja!"
|
289 |
|
290 |
+
#: ../includes/class-user-role-editor.php:1032
|
291 |
+
#: ../includes/class-user-role-editor.php:1065
|
292 |
msgid "Other Roles"
|
293 |
msgstr "Peran Lainnya"
|
294 |
|
295 |
+
#: ../includes/class-user-role-editor.php:1046
|
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:278 ../includes/class-ure-lib.php:289
|
334 |
+
msgid "Role name (ID): "
|
335 |
+
msgstr "Nama Peran (ID):"
|
336 |
+
|
337 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
338 |
+
msgid "Display Role Name: "
|
339 |
+
msgstr "Tampilkan Nama Peran:"
|
340 |
+
|
341 |
+
#: ../includes/class-ure-lib.php:282
|
342 |
+
msgid "Make copy of: "
|
343 |
+
msgstr "buat salinan:"
|
344 |
+
|
345 |
+
#: ../includes/class-ure-lib.php:298
|
346 |
+
msgid "Select Role:"
|
347 |
+
msgstr "Pilih Peran:"
|
348 |
+
|
349 |
+
#: ../includes/class-ure-lib.php:313
|
350 |
+
msgid "Delete:"
|
351 |
+
msgstr "Hapus:"
|
352 |
+
|
353 |
+
#: ../includes/class-ure-lib.php:320
|
354 |
+
msgid "Capability name (ID): "
|
355 |
+
msgstr "Nama Kemampuan (ID):"
|
356 |
+
|
357 |
+
#: ../includes/class-ure-lib.php:434
|
358 |
msgid "Error: "
|
359 |
msgstr "Salah:"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:434
|
362 |
msgid "Role"
|
363 |
msgstr "Peran"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:435
|
366 |
msgid "does not exist"
|
367 |
msgstr "tidak ada"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:478
|
370 |
msgid "Role is updated successfully"
|
371 |
msgstr "Peran berhasil diperbarui"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:480
|
374 |
msgid "Roles are updated for all network"
|
375 |
msgstr "Peran diperbarui untuk semua jaringan"
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:486
|
378 |
msgid "Error occured during role(s) update"
|
379 |
msgstr "Kesalahan terjadi selama pembaruan peran"
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:493
|
382 |
msgid "User capabilities are updated successfully"
|
383 |
msgstr "Kemampuan pengguna berhasil diperbarui"
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:498
|
386 |
msgid "Error occured during user update"
|
387 |
msgstr "Kesalahan terjadi sepanjang pembaruan pengguna"
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:556
|
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:1445
|
394 |
msgid "Help"
|
395 |
msgstr "Bantuan"
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:1913
|
398 |
msgid "Error is occur. Please check the log file."
|
399 |
msgstr "kesalahan terjadi, Harap periksa log data."
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
402 |
msgid ""
|
403 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
404 |
"only!"
|
406 |
"Kesalahan: ID Peran harus mengandung karakter latin, angka, kata penghubung "
|
407 |
"dan garis bawah saja!"
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1963 ../includes/class-ure-lib.php:2030
|
410 |
msgid ""
|
411 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
412 |
"characters to it."
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../includes/class-ure-lib.php:1978
|
416 |
#, php-format
|
417 |
msgid "Role %s exists already"
|
418 |
msgstr "Peran %s telah ada"
|
419 |
|
420 |
+
#: ../includes/class-ure-lib.php:1993
|
421 |
msgid "Error is encountered during new role create operation"
|
422 |
msgstr "Kesalahan ditemui selama peran baru membuat operasi"
|
423 |
|
424 |
+
#: ../includes/class-ure-lib.php:1995
|
425 |
#, php-format
|
426 |
msgid "Role %s is created successfully"
|
427 |
msgstr "Peran %s berhasil dibuat"
|
428 |
|
429 |
+
#: ../includes/class-ure-lib.php:2019
|
430 |
msgid "Error: Role ID is empty!"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: ../includes/class-ure-lib.php:2037
|
434 |
msgid "Error: Empty role display name is not allowed."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:2044
|
438 |
#, fuzzy, php-format
|
439 |
msgid "Role %s does not exists"
|
440 |
msgstr "tidak ada"
|
441 |
|
442 |
+
#: ../includes/class-ure-lib.php:2052
|
443 |
#, fuzzy, php-format
|
444 |
msgid "Role %s is renamed to %s successfully"
|
445 |
msgstr "Peran %s berhasil dibuat"
|
446 |
|
447 |
+
#: ../includes/class-ure-lib.php:2125
|
448 |
msgid "Error encountered during role delete operation"
|
449 |
msgstr "Kesalahan ditemui selama operasi penghapusan peran"
|
450 |
|
451 |
+
#: ../includes/class-ure-lib.php:2127
|
452 |
msgid "Unused roles are deleted successfully"
|
453 |
msgstr "Peran yang tidak digunakan berhasil dihapus"
|
454 |
|
455 |
+
#: ../includes/class-ure-lib.php:2129
|
456 |
#, php-format
|
457 |
msgid "Role %s is deleted successfully"
|
458 |
msgstr "Peran %s berhasil dihapus"
|
459 |
|
460 |
+
#: ../includes/class-ure-lib.php:2154
|
461 |
msgid "Error encountered during default role change operation"
|
462 |
msgstr "Kesalahan ditemui selama operasi perubahan peran standar"
|
463 |
|
464 |
+
#: ../includes/class-ure-lib.php:2160
|
465 |
#, php-format
|
466 |
msgid "Default role for new users is set to %s successfully"
|
467 |
msgstr "Peran standar untuk pengguna baru diatur ke %s dengan sukses"
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:2179
|
470 |
msgid "Editor"
|
471 |
msgstr "Penyunting"
|
472 |
|
473 |
+
#: ../includes/class-ure-lib.php:2180
|
474 |
msgid "Author"
|
475 |
msgstr "Pengarang"
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:2181
|
478 |
msgid "Contributor"
|
479 |
msgstr "Kontributor"
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:2182
|
482 |
msgid "Subscriber"
|
483 |
msgstr "Pelanggan"
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:2184
|
486 |
msgid "Switch themes"
|
487 |
msgstr "Ganti tema"
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:2185
|
490 |
msgid "Edit themes"
|
491 |
msgstr "Sunting tema"
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:2186
|
494 |
msgid "Activate plugins"
|
495 |
msgstr "Aktifkan plugin"
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:2187
|
498 |
msgid "Edit plugins"
|
499 |
msgstr "Sunting plugin"
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:2188
|
502 |
msgid "Edit users"
|
503 |
msgstr "Sunting pengguna"
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:2189
|
506 |
msgid "Edit files"
|
507 |
msgstr "Sunting data"
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:2190
|
510 |
msgid "Manage options"
|
511 |
msgstr "kelola pilihan"
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:2191
|
514 |
msgid "Moderate comments"
|
515 |
msgstr "Moderasi komentar"
|
516 |
|
517 |
+
#: ../includes/class-ure-lib.php:2192
|
518 |
msgid "Manage categories"
|
519 |
msgstr "Kelola kategori"
|
520 |
|
521 |
+
#: ../includes/class-ure-lib.php:2193
|
522 |
msgid "Manage links"
|
523 |
msgstr "Kelola tautan"
|
524 |
|
525 |
+
#: ../includes/class-ure-lib.php:2194
|
526 |
msgid "Upload files"
|
527 |
msgstr "Unggah data"
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:2195
|
530 |
msgid "Import"
|
531 |
msgstr "Impor"
|
532 |
|
533 |
+
#: ../includes/class-ure-lib.php:2196
|
534 |
msgid "Unfiltered html"
|
535 |
msgstr "HTML tidak tersaring"
|
536 |
|
537 |
+
#: ../includes/class-ure-lib.php:2197
|
538 |
msgid "Edit posts"
|
539 |
msgstr "Sunting posting"
|
540 |
|
541 |
+
#: ../includes/class-ure-lib.php:2198
|
542 |
msgid "Edit others posts"
|
543 |
msgstr "Sunting posting lainnya"
|
544 |
|
545 |
+
#: ../includes/class-ure-lib.php:2199
|
546 |
msgid "Edit published posts"
|
547 |
msgstr "Sunting posting terpublikasi"
|
548 |
|
549 |
+
#: ../includes/class-ure-lib.php:2200
|
550 |
msgid "Publish posts"
|
551 |
msgstr "Publikasi posting"
|
552 |
|
553 |
+
#: ../includes/class-ure-lib.php:2201
|
554 |
msgid "Edit pages"
|
555 |
msgstr "Sunting halaman"
|
556 |
|
557 |
+
#: ../includes/class-ure-lib.php:2202
|
558 |
msgid "Read"
|
559 |
msgstr "Baca"
|
560 |
|
561 |
+
#: ../includes/class-ure-lib.php:2203
|
562 |
msgid "Level 10"
|
563 |
msgstr "Tingkat 10"
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:2204
|
566 |
msgid "Level 9"
|
567 |
msgstr "Tingkat 9"
|
568 |
|
569 |
+
#: ../includes/class-ure-lib.php:2205
|
570 |
msgid "Level 8"
|
571 |
msgstr "Tingkat 8"
|
572 |
|
573 |
+
#: ../includes/class-ure-lib.php:2206
|
574 |
msgid "Level 7"
|
575 |
msgstr "Tingkat 7"
|
576 |
|
577 |
+
#: ../includes/class-ure-lib.php:2207
|
578 |
msgid "Level 6"
|
579 |
msgstr "Tingkat 6"
|
580 |
|
581 |
+
#: ../includes/class-ure-lib.php:2208
|
582 |
msgid "Level 5"
|
583 |
msgstr "Tingkat 5"
|
584 |
|
585 |
+
#: ../includes/class-ure-lib.php:2209
|
586 |
msgid "Level 4"
|
587 |
msgstr "Tingkat 4"
|
588 |
|
589 |
+
#: ../includes/class-ure-lib.php:2210
|
590 |
msgid "Level 3"
|
591 |
msgstr "Tingkat 3"
|
592 |
|
593 |
+
#: ../includes/class-ure-lib.php:2211
|
594 |
msgid "Level 2"
|
595 |
msgstr "Tingkat 2"
|
596 |
|
597 |
+
#: ../includes/class-ure-lib.php:2212
|
598 |
msgid "Level 1"
|
599 |
msgstr "Tingkat 1"
|
600 |
|
601 |
+
#: ../includes/class-ure-lib.php:2213
|
602 |
msgid "Level 0"
|
603 |
msgstr "Tingkat 0"
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:2214
|
606 |
msgid "Edit others pages"
|
607 |
msgstr "Sunting halaman lainnya"
|
608 |
|
609 |
+
#: ../includes/class-ure-lib.php:2215
|
610 |
msgid "Edit published pages"
|
611 |
msgstr "Sunting halaman terpublikasi"
|
612 |
|
613 |
+
#: ../includes/class-ure-lib.php:2216
|
614 |
msgid "Publish pages"
|
615 |
msgstr "Publikasi halaman"
|
616 |
|
617 |
+
#: ../includes/class-ure-lib.php:2217
|
618 |
msgid "Delete pages"
|
619 |
msgstr "Hapus halaman"
|
620 |
|
621 |
+
#: ../includes/class-ure-lib.php:2218
|
622 |
msgid "Delete others pages"
|
623 |
msgstr "Hapus halaman lainnya"
|
624 |
|
625 |
+
#: ../includes/class-ure-lib.php:2219
|
626 |
msgid "Delete published pages"
|
627 |
msgstr "Hapus halaman terpublikasi"
|
628 |
|
629 |
+
#: ../includes/class-ure-lib.php:2220
|
630 |
msgid "Delete posts"
|
631 |
msgstr "hapus posting"
|
632 |
|
633 |
+
#: ../includes/class-ure-lib.php:2221
|
634 |
msgid "Delete others posts"
|
635 |
msgstr "Hapus posting lainnya"
|
636 |
|
637 |
+
#: ../includes/class-ure-lib.php:2222
|
638 |
msgid "Delete published posts"
|
639 |
msgstr "Hapus posting terpublikasi"
|
640 |
|
641 |
+
#: ../includes/class-ure-lib.php:2223
|
642 |
msgid "Delete private posts"
|
643 |
msgstr "Hapus posting pribadi"
|
644 |
|
645 |
+
#: ../includes/class-ure-lib.php:2224
|
646 |
msgid "Edit private posts"
|
647 |
msgstr "Sunting posting pribadi"
|
648 |
|
649 |
+
#: ../includes/class-ure-lib.php:2225
|
650 |
msgid "Read private posts"
|
651 |
msgstr "Baca posting pribadi"
|
652 |
|
653 |
+
#: ../includes/class-ure-lib.php:2226
|
654 |
msgid "Delete private pages"
|
655 |
msgstr "Hapus halaman pribadi"
|
656 |
|
657 |
+
#: ../includes/class-ure-lib.php:2227
|
658 |
msgid "Edit private pages"
|
659 |
msgstr "Sunting halaman pribadi"
|
660 |
|
661 |
+
#: ../includes/class-ure-lib.php:2228
|
662 |
msgid "Read private pages"
|
663 |
msgstr "baca halaman pribadi"
|
664 |
|
665 |
+
#: ../includes/class-ure-lib.php:2229
|
666 |
msgid "Delete users"
|
667 |
msgstr "Hapus pengguna"
|
668 |
|
669 |
+
#: ../includes/class-ure-lib.php:2230
|
670 |
msgid "Create users"
|
671 |
msgstr "Buat pengguna"
|
672 |
|
673 |
+
#: ../includes/class-ure-lib.php:2231
|
674 |
msgid "Unfiltered upload"
|
675 |
msgstr "Unggahan tidak tersaring"
|
676 |
|
677 |
+
#: ../includes/class-ure-lib.php:2232
|
678 |
msgid "Edit dashboard"
|
679 |
msgstr "Sunting dasbor"
|
680 |
|
681 |
+
#: ../includes/class-ure-lib.php:2233
|
682 |
msgid "Update plugins"
|
683 |
msgstr "Perbarui plugin"
|
684 |
|
685 |
+
#: ../includes/class-ure-lib.php:2234
|
686 |
msgid "Delete plugins"
|
687 |
msgstr "Hapus plugin"
|
688 |
|
689 |
+
#: ../includes/class-ure-lib.php:2235
|
690 |
msgid "Install plugins"
|
691 |
msgstr "Pasang plugin"
|
692 |
|
693 |
+
#: ../includes/class-ure-lib.php:2236
|
694 |
msgid "Update themes"
|
695 |
msgstr "Perbarui tema"
|
696 |
|
697 |
+
#: ../includes/class-ure-lib.php:2237
|
698 |
msgid "Install themes"
|
699 |
msgstr "Pasang tema"
|
700 |
|
701 |
+
#: ../includes/class-ure-lib.php:2238
|
702 |
msgid "Update core"
|
703 |
msgstr "Perbarui inti"
|
704 |
|
705 |
+
#: ../includes/class-ure-lib.php:2239
|
706 |
msgid "List users"
|
707 |
msgstr "Daftar pengguna"
|
708 |
|
709 |
+
#: ../includes/class-ure-lib.php:2240
|
710 |
msgid "Remove users"
|
711 |
msgstr "Hapus pengguna"
|
712 |
|
713 |
+
#: ../includes/class-ure-lib.php:2241
|
714 |
msgid "Add users"
|
715 |
msgstr "Tambah pengguna"
|
716 |
|
717 |
+
#: ../includes/class-ure-lib.php:2242
|
718 |
msgid "Promote users"
|
719 |
msgstr "Promosi pengguna"
|
720 |
|
721 |
+
#: ../includes/class-ure-lib.php:2243
|
722 |
msgid "Edit theme options"
|
723 |
msgstr "Sunting pilihan tema"
|
724 |
|
725 |
+
#: ../includes/class-ure-lib.php:2244
|
726 |
msgid "Delete themes"
|
727 |
msgstr "Hapus tema"
|
728 |
|
729 |
+
#: ../includes/class-ure-lib.php:2245
|
730 |
msgid "Export"
|
731 |
msgstr "Ekspor"
|
732 |
|
733 |
+
#: ../includes/class-ure-lib.php:2358
|
734 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
735 |
msgstr "Salah: Kemampuan nama harus mengandung karakter latin dan angka saja!"
|
736 |
|
737 |
+
#: ../includes/class-ure-lib.php:2371
|
738 |
#, php-format
|
739 |
msgid "Capability %s is added successfully"
|
740 |
msgstr "Kemampuan %s berhasil ditambahkan"
|
741 |
|
742 |
+
#: ../includes/class-ure-lib.php:2373
|
743 |
#, php-format
|
744 |
msgid "Capability %s exists already"
|
745 |
msgstr "Kemampuan %s telah ada"
|
746 |
|
747 |
+
#: ../includes/class-ure-lib.php:2402
|
748 |
#, php-format
|
749 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
750 |
msgstr "Salah! Anda tidak memiliki izin untuk menghapus kemampuan ini: %s!"
|
751 |
|
752 |
+
#: ../includes/class-ure-lib.php:2421
|
753 |
#, php-format
|
754 |
msgid "Capability %s is removed successfully"
|
755 |
msgstr "Kemampuan %s berhasil dihapus"
|
756 |
|
757 |
+
#: ../includes/class-ure-lib.php:2525
|
758 |
+
msgid "Version:"
|
759 |
+
msgstr ""
|
760 |
+
|
761 |
+
#: ../includes/class-ure-lib.php:2526
|
762 |
msgid "Author's website"
|
763 |
msgstr "Website pengarang"
|
764 |
|
765 |
+
#: ../includes/class-ure-lib.php:2527
|
766 |
msgid "Plugin webpage"
|
767 |
msgstr "Halaman web Plugin"
|
768 |
|
769 |
+
#: ../includes/class-ure-lib.php:2528
|
770 |
#, fuzzy
|
771 |
msgid "Plugin download"
|
772 |
msgstr "Halaman web Plugin"
|
773 |
|
774 |
+
#: ../includes/class-ure-lib.php:2530
|
775 |
msgid "FAQ"
|
776 |
msgstr "FAQ"
|
777 |
|
778 |
+
#: ../includes/class-ure-lib.php:2578
|
779 |
msgid "None"
|
780 |
msgstr "Nihil"
|
781 |
|
782 |
+
#: ../includes/class-ure-lib.php:2605
|
783 |
msgid "Delete All Unused Roles"
|
784 |
msgstr "Hapus Peran Tidak Terpakai"
|
785 |
|
786 |
+
#: ../includes/class-ure-lib.php:2629
|
787 |
msgid "— No role for this site —"
|
788 |
msgstr "— Tidak ada peran untuk situs ini —"
|
789 |
|
790 |
+
#: ../includes/ure-user-edit.php:32
|
791 |
msgid "Network Super Admin"
|
792 |
msgstr "Jaringan Super Admin"
|
793 |
|
794 |
+
#: ../includes/ure-user-edit.php:35
|
795 |
msgid "Change capabilities for user"
|
796 |
msgstr "Ubah kemampuan untuk pengguna"
|
797 |
|
798 |
+
#: ../includes/ure-user-edit.php:72
|
799 |
+
msgid "Primary Role:"
|
800 |
+
msgstr "Peran Utama:"
|
801 |
+
|
802 |
+
#: ../includes/ure-user-edit.php:82
|
803 |
+
msgid "bbPress Role:"
|
804 |
+
msgstr "Peran bbPress:"
|
805 |
+
|
806 |
+
#: ../includes/ure-user-edit.php:92
|
807 |
+
msgid "Other Roles:"
|
808 |
+
msgstr "Peran Lain:"
|
809 |
|
810 |
#: ../includes/class-ure-screen-help.php:16
|
811 |
msgid ""
|
817 |
"daftar seleksi pilihan peran User Role Editor. Akan tersembunyi secara "
|
818 |
"default demi alasan keamanan."
|
819 |
|
|
|
|
|
|
|
|
|
820 |
#: ../includes/class-ure-screen-help.php:19
|
821 |
msgid ""
|
822 |
"automatically converts capability names from the technical form for internal "
|
827 |
"penggunaan internal seperti \"edit_others_posts\" ke bentuk yang lebih user "
|
828 |
"friendly, misalnya \"Edit posting orang lain\"."
|
829 |
|
|
|
|
|
|
|
|
|
830 |
#: ../includes/class-ure-screen-help.php:22
|
831 |
msgid ""
|
832 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
839 |
"kompatibilitas dengan tema lama dan kode plugin. Menyalakan opsi ini akan "
|
840 |
"menunjukkan kemampuan mereka usang."
|
841 |
|
842 |
+
#: ../includes/class-ure-screen-help.php:26
|
843 |
+
msgid ""
|
844 |
+
"If turned off - capabilities section of selected user is shown in readonly "
|
845 |
+
"mode. Administrator can not assign capabilities to the user directly. He "
|
846 |
+
"should make it using roles only."
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: ../includes/class-ure-screen-help.php:46
|
850 |
msgid ""
|
851 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
852 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
853 |
"users list with role \"No rights\" at the separate tab then."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: ../includes/class-ure-screen-help.php:63
|
857 |
msgid "Other default roles for new registered user"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: ../includes/class-ure-screen-help.php:64
|
861 |
msgid ""
|
862 |
"select roles below to assign them to the new user automatically as an "
|
863 |
"addition to the primary role. Note for multisite environment: take into "
|
865 |
"assigned to the new registered users."
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: ../includes/class-ure-screen-help.php:82
|
869 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: ../includes/class-ure-screen-help.php:83
|
873 |
#, fuzzy
|
874 |
msgid ""
|
875 |
"Super administrator only may create, edit and delete users under WordPress "
|
880 |
"bawah WordPress multi-situs. Aktifkan pilihan ini dalam rangka menghapus "
|
881 |
"keterbatasan ini."
|
882 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
883 |
#, fuzzy
|
884 |
#~ msgid "select roles below"
|
885 |
#~ msgstr "Batalkan Semua"
|
lang/ure-it_IT.mo
CHANGED
Binary file
|
lang/ure-it_IT.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: Goldenhawk <giuseppe.velardo@gmail.com>\n"
|
@@ -22,22 +22,22 @@ 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:
|
26 |
msgid "General"
|
27 |
msgstr "Generali"
|
28 |
|
29 |
#: ../includes/settings-template.php:26
|
30 |
-
#: ../includes/class-user-role-editor.php:
|
31 |
msgid "Additional Modules"
|
32 |
msgstr "Moduli addizionali"
|
33 |
|
34 |
#: ../includes/settings-template.php:30
|
35 |
-
#: ../includes/class-user-role-editor.php:
|
36 |
msgid "Default Roles"
|
37 |
msgstr "Ruoli di default"
|
38 |
|
39 |
#: ../includes/settings-template.php:34
|
40 |
-
#: ../includes/class-user-role-editor.php:
|
41 |
msgid "Multisite"
|
42 |
msgstr "Multisito"
|
43 |
|
@@ -56,29 +56,34 @@ msgid "Show capabilities in the human readable form"
|
|
56 |
msgstr "Mostra le funzionalità in forma umana leggibile"
|
57 |
|
58 |
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
59 |
-
#: ../includes/ure-user-edit.php:
|
60 |
msgid "Show deprecated capabilities"
|
61 |
msgstr "Mostra funzionalità disapprovate"
|
62 |
|
63 |
-
#: ../includes/settings-template.php:
|
64 |
-
#: ../includes/
|
|
|
|
|
|
|
|
|
|
|
65 |
msgid "Save"
|
66 |
msgstr "Salva"
|
67 |
|
68 |
-
#: ../includes/settings-template.php:
|
69 |
-
#: ../includes/class-ure-screen-help.php:
|
70 |
msgid "Count users without role"
|
71 |
msgstr "Conta utenti senza ruolo"
|
72 |
|
73 |
-
#: ../includes/settings-template.php:
|
74 |
msgid "Primary default role: "
|
75 |
msgstr "Ruolo primario di default:"
|
76 |
|
77 |
-
#: ../includes/settings-template.php:
|
78 |
msgid "Other default roles for new registered user: "
|
79 |
msgstr "Altri ruoli di default per gli utenti appena registrati:"
|
80 |
|
81 |
-
#: ../includes/settings-template.php:
|
82 |
msgid ""
|
83 |
"Note for multisite environment: take into account that other default roles "
|
84 |
"should exist at the site, in order to be assigned to the new registered "
|
@@ -88,60 +93,60 @@ msgstr ""
|
|
88 |
"dovrebbero esistere nel sito, per essere assegnati ai nuovi utenti "
|
89 |
"registrati."
|
90 |
|
91 |
-
#: ../includes/settings-template.php:
|
92 |
msgid "Allow non super administrators to create, edit, and delete users"
|
93 |
msgstr ""
|
94 |
"Permetti ad un non super amministratore di creare, modificare e cancellare "
|
95 |
"utenti"
|
96 |
|
97 |
-
#: ../includes/class-user-role-editor.php:
|
98 |
msgid "Change role for users without role"
|
99 |
msgstr "Cambia ruolo agli utenti senza alcun ruolo"
|
100 |
|
101 |
-
#: ../includes/class-user-role-editor.php:
|
102 |
msgid "No rights"
|
103 |
msgstr "Nessun diritto"
|
104 |
|
105 |
-
#: ../includes/class-user-role-editor.php:
|
106 |
msgid "Provide new role"
|
107 |
msgstr "Fornisci nuovo ruolo"
|
108 |
|
109 |
-
#: ../includes/class-user-role-editor.php:
|
110 |
-
#: ../includes/class-user-role-editor.php:
|
111 |
msgid "You do not have permission to edit this user."
|
112 |
msgstr "Non hai i permessi per modificare questo utente."
|
113 |
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
msgid "Capabilities"
|
116 |
msgstr "Funzionalità"
|
117 |
|
118 |
-
#: ../includes/class-user-role-editor.php:
|
119 |
msgid "Settings"
|
120 |
msgstr "Parametri"
|
121 |
|
122 |
-
#: ../includes/class-user-role-editor.php:
|
123 |
-
#: ../includes/class-ure-lib.php:
|
124 |
msgid "Changelog"
|
125 |
msgstr "Changelog"
|
126 |
|
127 |
-
#: ../includes/class-user-role-editor.php:
|
128 |
-
#: ../includes/class-user-role-editor.php:
|
129 |
-
#: ../includes/class-user-role-editor.php:
|
130 |
-
#: ../includes/class-ure-lib.php:
|
131 |
msgid "User Role Editor"
|
132 |
msgstr "Editor Ruolo Utente"
|
133 |
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
-
#: ../includes/class-user-role-editor.php:
|
136 |
-
#: ../includes/class-user-role-editor.php:
|
137 |
msgid "User Role Editor options are updated"
|
138 |
msgstr "Le opzioni dell'Editor Ruolo Utente sono aggiornate"
|
139 |
|
140 |
-
#: ../includes/class-user-role-editor.php:
|
141 |
msgid "Default Roles are updated"
|
142 |
msgstr "Ruoli di default aggiornati"
|
143 |
|
144 |
-
#: ../includes/class-user-role-editor.php:
|
145 |
msgid ""
|
146 |
"You do not have sufficient permissions to manage options for User Role "
|
147 |
"Editor."
|
@@ -149,44 +154,47 @@ msgstr ""
|
|
149 |
"Non hai permessi sufficienti per gesstire le opzioni per l'Editor Ruolo "
|
150 |
"Utente."
|
151 |
|
152 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
153 |
msgid "Insufficient permissions to work with User Role Editor"
|
154 |
msgstr "Permessi insufficienti per lavorare con l'Editor Ruolo Utente"
|
155 |
|
156 |
-
#: ../includes/class-user-role-editor.php:
|
157 |
msgid "Select All"
|
158 |
msgstr "Seleziona tutti"
|
159 |
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid "Unselect All"
|
162 |
msgstr "Deseleziona tutti"
|
163 |
|
164 |
-
#: ../includes/class-user-role-editor.php:
|
165 |
msgid "Reverse"
|
166 |
msgstr "Revoca"
|
167 |
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
msgid "Update"
|
170 |
msgstr "Aggiorna"
|
171 |
|
172 |
-
#: ../includes/class-user-role-editor.php:
|
173 |
msgid "Please confirm permissions update"
|
174 |
msgstr "Conferma l'aggiornamento dei permessi"
|
175 |
|
176 |
-
#: ../includes/class-user-role-editor.php:
|
177 |
msgid "Add New Role"
|
178 |
msgstr "Aggiungi nuovo ruolo"
|
179 |
|
180 |
-
#: ../includes/class-user-role-editor.php:
|
181 |
-
#: ../includes/class-user-role-editor.php:
|
182 |
msgid "Rename Role"
|
183 |
msgstr "Rinomina ruolo"
|
184 |
|
185 |
-
#: ../includes/class-user-role-editor.php:
|
186 |
msgid " Role name (ID) can not be empty!"
|
187 |
msgstr "Nome Ruolo (ID) non può essere vuoto!"
|
188 |
|
189 |
-
#: ../includes/class-user-role-editor.php:
|
190 |
msgid ""
|
191 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
192 |
"only!"
|
@@ -194,7 +202,7 @@ msgstr ""
|
|
194 |
"Il nome Ruolo (ID) deve contenere solo caratteri latini, numeri, trattini o "
|
195 |
"underscore!"
|
196 |
|
197 |
-
#: ../includes/class-user-role-editor.php:
|
198 |
msgid ""
|
199 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
200 |
"it."
|
@@ -202,37 +210,37 @@ msgstr ""
|
|
202 |
"Wordpress non supporta il nome Ruolo (ID) nel formaro numerico. Inserisci "
|
203 |
"caratteri latini."
|
204 |
|
205 |
-
#: ../includes/class-user-role-editor.php:
|
206 |
msgid "Add Role"
|
207 |
msgstr "Aggiungi Ruolo"
|
208 |
|
209 |
-
#: ../includes/class-user-role-editor.php:
|
210 |
msgid "Delete Role"
|
211 |
msgstr "Cancella Ruolo"
|
212 |
|
213 |
-
#: ../includes/class-user-role-editor.php:
|
214 |
msgid "Cancel"
|
215 |
msgstr "Cancella"
|
216 |
|
217 |
-
#: ../includes/class-user-role-editor.php:
|
218 |
msgid "Add Capability"
|
219 |
msgstr "Aggiungi funzionalità"
|
220 |
|
221 |
-
#: ../includes/class-user-role-editor.php:
|
222 |
-
#: ../includes/class-user-role-editor.php:
|
223 |
msgid "Delete Capability"
|
224 |
msgstr "Cancella funzionalità"
|
225 |
|
226 |
-
#: ../includes/class-user-role-editor.php:
|
227 |
msgid "Reset"
|
228 |
msgstr "Resetta"
|
229 |
|
230 |
-
#: ../includes/class-user-role-editor.php:
|
231 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
232 |
msgstr ""
|
233 |
"PERICOLO! Il Reset ripristinerà i parametri di default dal nucleo Wordpress."
|
234 |
|
235 |
-
#: ../includes/class-user-role-editor.php:
|
236 |
msgid ""
|
237 |
"If any plugins have changed capabilities in any way upon installation (such "
|
238 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -241,7 +249,7 @@ msgstr ""
|
|
241 |
"l'installazione (tipo S2Members, WooCommerce, ed altri), queste funzionalità "
|
242 |
"saranno cancellate!"
|
243 |
|
244 |
-
#: ../includes/class-user-role-editor.php:
|
245 |
msgid ""
|
246 |
"For more information on how to undo changes and restore plugin capabilities "
|
247 |
"go to"
|
@@ -249,19 +257,19 @@ msgstr ""
|
|
249 |
"Per altre informazioni su come tornare indietro con le modifiche e "
|
250 |
"ripristinare le funzionalità del plugin vai a"
|
251 |
|
252 |
-
#: ../includes/class-user-role-editor.php:
|
253 |
msgid "Continue?"
|
254 |
msgstr "Continui?"
|
255 |
|
256 |
-
#: ../includes/class-user-role-editor.php:
|
257 |
msgid "Default Role"
|
258 |
msgstr "Ruolo di default"
|
259 |
|
260 |
-
#: ../includes/class-user-role-editor.php:
|
261 |
msgid "Set New Default Role"
|
262 |
msgstr "Setta Nuovo Ruolo di Default"
|
263 |
|
264 |
-
#: ../includes/class-user-role-editor.php:
|
265 |
msgid ""
|
266 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
267 |
"or other custom code"
|
@@ -269,11 +277,11 @@ msgstr ""
|
|
269 |
"Attenzione! rimuovendo le funzionalità critiche può far 'crashare' il plugin "
|
270 |
"o codice personalizzato al crash "
|
271 |
|
272 |
-
#: ../includes/class-user-role-editor.php:
|
273 |
msgid " Capability name (ID) can not be empty!"
|
274 |
msgstr "Nome funzionalità (ID) non può essere vuoto!"
|
275 |
|
276 |
-
#: ../includes/class-user-role-editor.php:
|
277 |
msgid ""
|
278 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
279 |
"underscore only!"
|
@@ -281,12 +289,12 @@ msgstr ""
|
|
281 |
"Nome funzionalità (ID) deve contenere solo caratteri latini, numeri, "
|
282 |
"trattini o underscore!"
|
283 |
|
284 |
-
#: ../includes/class-user-role-editor.php:
|
285 |
-
#: ../includes/class-user-role-editor.php:
|
286 |
msgid "Other Roles"
|
287 |
msgstr "Altri Ruoli"
|
288 |
|
289 |
-
#: ../includes/class-user-role-editor.php:
|
290 |
msgid "Edit"
|
291 |
msgstr "Modifica"
|
292 |
|
@@ -294,7 +302,7 @@ msgstr "Modifica"
|
|
294 |
msgid "Select Role and change its capabilities:"
|
295 |
msgstr "Seleziona il Ruolo e varia le sue funzionalità:"
|
296 |
|
297 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:
|
298 |
msgid "Show capabilities in human readable form"
|
299 |
msgstr "Mostra le funzionalità in una forma umana leggibile"
|
300 |
|
@@ -306,91 +314,91 @@ msgstr "Se selezionato, applica l'azione a tuti i siti su questa rete"
|
|
306 |
msgid "Apply to All Sites"
|
307 |
msgstr "Applica a tutti i siti"
|
308 |
|
309 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:
|
310 |
msgid "Core capabilities:"
|
311 |
msgstr "Funzionalità nucleo:"
|
312 |
|
313 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:
|
314 |
msgid "Quick filter:"
|
315 |
msgstr "Filtro veloce:"
|
316 |
|
317 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:
|
318 |
msgid "Custom capabilities:"
|
319 |
msgstr "Funzionalità personalizzate:"
|
320 |
|
321 |
-
#: ../includes/class-ure-lib.php:
|
322 |
msgid "Error: wrong request"
|
323 |
msgstr "Errore: richiesta errata"
|
324 |
|
325 |
-
#: ../includes/class-ure-lib.php:
|
326 |
msgid "Role name (ID): "
|
327 |
msgstr "Nome Ruolo (ID):"
|
328 |
|
329 |
-
#: ../includes/class-ure-lib.php:
|
330 |
msgid "Display Role Name: "
|
331 |
msgstr "Mostra Nome Ruolo:"
|
332 |
|
333 |
-
#: ../includes/class-ure-lib.php:
|
334 |
msgid "Make copy of: "
|
335 |
msgstr "Fai una copia di:"
|
336 |
|
337 |
-
#: ../includes/class-ure-lib.php:
|
338 |
msgid "Select Role:"
|
339 |
msgstr "Seleziona Ruolo:"
|
340 |
|
341 |
-
#: ../includes/class-ure-lib.php:
|
342 |
msgid "Delete:"
|
343 |
msgstr "Cancella:"
|
344 |
|
345 |
-
#: ../includes/class-ure-lib.php:
|
346 |
msgid "Capability name (ID): "
|
347 |
msgstr "Nome funzionalità (ID):"
|
348 |
|
349 |
-
#: ../includes/class-ure-lib.php:
|
350 |
msgid "Error: "
|
351 |
msgstr "Errore:"
|
352 |
|
353 |
-
#: ../includes/class-ure-lib.php:
|
354 |
msgid "Role"
|
355 |
msgstr "Ruolo"
|
356 |
|
357 |
-
#: ../includes/class-ure-lib.php:
|
358 |
msgid "does not exist"
|
359 |
msgstr "non esiste"
|
360 |
|
361 |
-
#: ../includes/class-ure-lib.php:
|
362 |
msgid "Role is updated successfully"
|
363 |
msgstr "Ruolo aggiornato correttamente"
|
364 |
|
365 |
-
#: ../includes/class-ure-lib.php:
|
366 |
msgid "Roles are updated for all network"
|
367 |
msgstr "I Ruoli sono aggiornati per tutto il network"
|
368 |
|
369 |
-
#: ../includes/class-ure-lib.php:
|
370 |
msgid "Error occured during role(s) update"
|
371 |
msgstr "Errore durante l'aggiornamento Ruolo(i)"
|
372 |
|
373 |
-
#: ../includes/class-ure-lib.php:
|
374 |
msgid "User capabilities are updated successfully"
|
375 |
msgstr "Funzionalità utenti aggiornate con successo"
|
376 |
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
msgid "Error occured during user update"
|
379 |
msgstr "Errore di aggiornamento utente"
|
380 |
|
381 |
-
#: ../includes/class-ure-lib.php:
|
382 |
msgid "User Roles are restored to WordPress default values. "
|
383 |
msgstr "i Ruolo Utente sono rirpstinati ai valori di default Wordpress."
|
384 |
|
385 |
-
#: ../includes/class-ure-lib.php:
|
386 |
msgid "Help"
|
387 |
msgstr "Aiuto"
|
388 |
|
389 |
-
#: ../includes/class-ure-lib.php:
|
390 |
msgid "Error is occur. Please check the log file."
|
391 |
msgstr "Errore. Controlla file log."
|
392 |
|
393 |
-
#: ../includes/class-ure-lib.php:
|
394 |
msgid ""
|
395 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
396 |
"only!"
|
@@ -398,7 +406,7 @@ msgstr ""
|
|
398 |
"Errore: ID Ruolo deve contenere solo caratteri latini, numeri, trattini o "
|
399 |
"uderscore!"
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
402 |
msgid ""
|
403 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
404 |
"characters to it."
|
@@ -406,398 +414,398 @@ msgstr ""
|
|
406 |
"Errore: WordPress non supporta il nome Ruolo (ID) nel formato numerico. "
|
407 |
"Aggiungi caratteri latini."
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
#, php-format
|
411 |
msgid "Role %s exists already"
|
412 |
msgstr "Il Ruolo %s esiste"
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
415 |
msgid "Error is encountered during new role create operation"
|
416 |
msgstr "Errore durante la creazione del nuovo ruolo"
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
#, php-format
|
420 |
msgid "Role %s is created successfully"
|
421 |
msgstr "Ruolo %s creato con successo"
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Error: Role ID is empty!"
|
425 |
msgstr "Errore: ID Ruolo è vuoto!"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
msgid "Error: Empty role display name is not allowed."
|
429 |
msgstr "Errore: non è ammesso che il nome visualizzato del Ruolo sia vuoto."
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
#, php-format
|
433 |
msgid "Role %s does not exists"
|
434 |
msgstr "Ruolo %s non esiste"
|
435 |
|
436 |
-
#: ../includes/class-ure-lib.php:
|
437 |
#, php-format
|
438 |
msgid "Role %s is renamed to %s successfully"
|
439 |
msgstr "Ruolo %s rinominato in %s con successo"
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
msgid "Error encountered during role delete operation"
|
443 |
msgstr "Errore durante la cancellazione del ruolo"
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
msgid "Unused roles are deleted successfully"
|
447 |
msgstr "I Ruoli inutilizzati sono stati cancellati"
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
#, php-format
|
451 |
msgid "Role %s is deleted successfully"
|
452 |
msgstr "Ruolo %s cancellato con successo"
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
msgid "Error encountered during default role change operation"
|
456 |
msgstr "Errore durante la variazione del ruolo di default"
|
457 |
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
#, php-format
|
460 |
msgid "Default role for new users is set to %s successfully"
|
461 |
msgstr "Ruolo di default per i nuovi utenti è stato cambiato a %s con successo"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Editor"
|
465 |
msgstr "Editor"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
msgid "Author"
|
469 |
msgstr "Author"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Contributor"
|
473 |
msgstr "Contributor"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Subscriber"
|
477 |
msgstr "Subscriber"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Switch themes"
|
481 |
msgstr "Cambia temi"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Edit themes"
|
485 |
msgstr "Modifica temi"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Activate plugins"
|
489 |
msgstr "Attiva plugins"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Edit plugins"
|
493 |
msgstr "Edita plugins"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Edit users"
|
497 |
msgstr "Edita utenti"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Edit files"
|
501 |
msgstr "Edita files"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Manage options"
|
505 |
msgstr "Gestisci opzioni"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Moderate comments"
|
509 |
msgstr "Modera commenti"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Manage categories"
|
513 |
msgstr "Gestisci categorie"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Manage links"
|
517 |
msgstr "Gestisci links"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Upload files"
|
521 |
msgstr "Upload files"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Import"
|
525 |
msgstr "Importa"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Unfiltered html"
|
529 |
msgstr "Html non filtrato"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Edit posts"
|
533 |
msgstr "Edit posts"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Edit others posts"
|
537 |
msgstr "Edit altri posts"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Edit published posts"
|
541 |
msgstr "Edit posts pubblicati"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Publish posts"
|
545 |
msgstr "Pubblica posts"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Edit pages"
|
549 |
msgstr "Edit pagine"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Read"
|
553 |
msgstr "Read"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Level 10"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Level 9"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Level 8"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Level 7"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Level 6"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Level 5"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Level 4"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Level 3"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Level 2"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Level 1"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Level 0"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Edit others pages"
|
601 |
msgstr "Edit altre pagine"
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
msgid "Edit published pages"
|
605 |
msgstr "Edit pagine pubblicate"
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Publish pages"
|
609 |
msgstr "Pubblica pagine"
|
610 |
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Delete pages"
|
613 |
msgstr "Cancella pagine"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Delete others pages"
|
617 |
msgstr "Cancella altre pagine"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Delete published pages"
|
621 |
msgstr "Cancella pagine pubblicate"
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Delete posts"
|
625 |
msgstr "Cancella posts"
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Delete others posts"
|
629 |
msgstr "Cancella altri posts"
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Delete published posts"
|
633 |
msgstr "Cancella i posts pubblicati"
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Delete private posts"
|
637 |
msgstr "Cancella posts privati"
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Edit private posts"
|
641 |
msgstr "Edit posts privati"
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "Read private posts"
|
645 |
msgstr "Leggi posts privati"
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Delete private pages"
|
649 |
msgstr "Cancella pagine private"
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Edit private pages"
|
653 |
msgstr "Edit pagine private"
|
654 |
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Read private pages"
|
657 |
msgstr "Legge pagine private"
|
658 |
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
msgid "Delete users"
|
661 |
msgstr "Cancella utenti"
|
662 |
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Create users"
|
665 |
msgstr "Crea utenti"
|
666 |
|
667 |
-
#: ../includes/class-ure-lib.php:
|
668 |
msgid "Unfiltered upload"
|
669 |
msgstr "Uploads non filtrati"
|
670 |
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Edit dashboard"
|
673 |
msgstr "Edit dashboard"
|
674 |
|
675 |
-
#: ../includes/class-ure-lib.php:
|
676 |
msgid "Update plugins"
|
677 |
msgstr "Aggiorna plugins"
|
678 |
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Delete plugins"
|
681 |
msgstr "Cancella plugins"
|
682 |
|
683 |
-
#: ../includes/class-ure-lib.php:
|
684 |
msgid "Install plugins"
|
685 |
msgstr "Installa plugins"
|
686 |
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Update themes"
|
689 |
msgstr "Aggiorna temi"
|
690 |
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Install themes"
|
693 |
msgstr "Installa temi"
|
694 |
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "Update core"
|
697 |
msgstr "Aggiorna nucleo"
|
698 |
|
699 |
-
#: ../includes/class-ure-lib.php:
|
700 |
msgid "List users"
|
701 |
msgstr "Lista utenti"
|
702 |
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Remove users"
|
705 |
msgstr "Rimuovi utenti"
|
706 |
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
msgid "Add users"
|
709 |
msgstr "Aggiungi utenti"
|
710 |
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Promote users"
|
713 |
msgstr "Promuovi utenti"
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
msgid "Edit theme options"
|
717 |
msgstr "Edit opzioni tema"
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Delete themes"
|
721 |
msgstr "Cancella temi"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
msgid "Export"
|
725 |
msgstr "Esporta"
|
726 |
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
729 |
msgstr ""
|
730 |
"Errore: nome funzionalità deve contenere solo caratteri latini o numeri!"
|
731 |
|
732 |
-
#: ../includes/class-ure-lib.php:
|
733 |
#, php-format
|
734 |
msgid "Capability %s is added successfully"
|
735 |
msgstr "Funzionalità %s aggiunta!"
|
736 |
|
737 |
-
#: ../includes/class-ure-lib.php:
|
738 |
#, php-format
|
739 |
msgid "Capability %s exists already"
|
740 |
msgstr "Funzionalità %s già esiste"
|
741 |
|
742 |
-
#: ../includes/class-ure-lib.php:
|
743 |
#, php-format
|
744 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
745 |
msgstr "Errore! Non hai permessi per cancellare questa funzionalità: %s!"
|
746 |
|
747 |
-
#: ../includes/class-ure-lib.php:
|
748 |
#, php-format
|
749 |
msgid "Capability %s is removed successfully"
|
750 |
msgstr "Funzionalità %s rimossa con successo"
|
751 |
|
752 |
-
#: ../includes/class-ure-lib.php:
|
753 |
msgid "Version:"
|
754 |
msgstr "Versione:"
|
755 |
|
756 |
-
#: ../includes/class-ure-lib.php:
|
757 |
msgid "Author's website"
|
758 |
msgstr "Sito web dell'autore"
|
759 |
|
760 |
-
#: ../includes/class-ure-lib.php:
|
761 |
msgid "Plugin webpage"
|
762 |
msgstr "Webpabe plugin"
|
763 |
|
764 |
-
#: ../includes/class-ure-lib.php:
|
765 |
msgid "Plugin download"
|
766 |
msgstr "Download plugin"
|
767 |
|
768 |
-
#: ../includes/class-ure-lib.php:
|
769 |
msgid "FAQ"
|
770 |
msgstr "FAQ"
|
771 |
|
772 |
-
#: ../includes/class-ure-lib.php:
|
773 |
msgid "None"
|
774 |
msgstr "Nessuno"
|
775 |
|
776 |
-
#: ../includes/class-ure-lib.php:
|
777 |
msgid "Delete All Unused Roles"
|
778 |
msgstr "Cancella tutti i Ruoli inutilizzati"
|
779 |
|
780 |
-
#: ../includes/class-ure-lib.php:
|
781 |
msgid "— No role for this site —"
|
782 |
msgstr "— Nessun ruolo per questo sito —"
|
783 |
|
784 |
-
#: ../includes/ure-user-edit.php:
|
785 |
msgid "Network Super Admin"
|
786 |
msgstr "Super Admin Network"
|
787 |
|
788 |
-
#: ../includes/ure-user-edit.php:
|
789 |
msgid "Change capabilities for user"
|
790 |
msgstr "Cambia funzionalità per l'utente"
|
791 |
|
792 |
-
#: ../includes/ure-user-edit.php:
|
793 |
msgid "Primary Role:"
|
794 |
msgstr "Ruolo primario:"
|
795 |
|
796 |
-
#: ../includes/ure-user-edit.php:
|
797 |
msgid "bbPress Role:"
|
798 |
msgstr "Ruolo bbPress:"
|
799 |
|
800 |
-
#: ../includes/ure-user-edit.php:
|
801 |
msgid "Other Roles:"
|
802 |
msgstr "Altri Ruoli:"
|
803 |
|
@@ -833,7 +841,14 @@ msgstr ""
|
|
833 |
"vecchi temi e codici plugins. Selezionando questa opzione saranno "
|
834 |
"visualizzate queste funzionalità sorpassate."
|
835 |
|
836 |
-
#: ../includes/class-ure-screen-help.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
837 |
msgid ""
|
838 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
839 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
@@ -843,11 +858,11 @@ msgstr ""
|
|
843 |
"di assegnare a tutti costoro un ruolo vuoto \"Nessun diritto\", per bloccare "
|
844 |
"la lista utenti sul ruolo \"Nessun diritto\" in una tabella separata."
|
845 |
|
846 |
-
#: ../includes/class-ure-screen-help.php:
|
847 |
msgid "Other default roles for new registered user"
|
848 |
msgstr "Altri ruoli di default per i nuovi utenti registrati"
|
849 |
|
850 |
-
#: ../includes/class-ure-screen-help.php:
|
851 |
msgid ""
|
852 |
"select roles below to assign them to the new user automatically as an "
|
853 |
"addition to the primary role. Note for multisite environment: take into "
|
@@ -859,13 +874,13 @@ msgstr ""
|
|
859 |
"il fatto che gli altri ruoli predefiniti dovrebbero esistere sul sito, in "
|
860 |
"modo da assegnarli ai nuovi utenti registrati."
|
861 |
|
862 |
-
#: ../includes/class-ure-screen-help.php:
|
863 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
864 |
msgstr ""
|
865 |
"Permetti ad un non super-amministratore di creare, modificare e cancellare "
|
866 |
"utenti"
|
867 |
|
868 |
-
#: ../includes/class-ure-screen-help.php:
|
869 |
msgid ""
|
870 |
"Super administrator only may create, edit and delete users under WordPress "
|
871 |
"multi-site by default. Turn this option on in order to remove this "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-06 11:48+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: Goldenhawk <giuseppe.velardo@gmail.com>\n"
|
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 di default"
|
38 |
|
39 |
#: ../includes/settings-template.php:34
|
40 |
+
#: ../includes/class-user-role-editor.php:609
|
41 |
msgid "Multisite"
|
42 |
msgstr "Multisito"
|
43 |
|
56 |
msgstr "Mostra le funzionalità in forma umana leggibile"
|
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 funzionalità disapprovate"
|
62 |
|
63 |
+
#: ../includes/settings-template.php:77
|
64 |
+
#: ../includes/class-ure-screen-help.php:25
|
65 |
+
msgid "Edit user capabilities"
|
66 |
+
msgstr "Modifica funzionalità personalizzate"
|
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 di default:"
|
81 |
|
82 |
+
#: ../includes/settings-template.php:145
|
83 |
msgid "Other default roles for new registered user: "
|
84 |
msgstr "Altri ruoli di default per gli utenti appena 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 "
|
93 |
"dovrebbero esistere nel sito, per essere assegnati ai nuovi utenti "
|
94 |
"registrati."
|
95 |
|
96 |
+
#: ../includes/settings-template.php:177
|
97 |
msgid "Allow non super administrators to create, edit, and delete users"
|
98 |
msgstr ""
|
99 |
"Permetti ad un non super amministratore di creare, modificare e cancellare "
|
100 |
"utenti"
|
101 |
|
102 |
+
#: ../includes/class-user-role-editor.php:233
|
103 |
msgid "Change role for users without role"
|
104 |
msgstr "Cambia ruolo agli utenti senza alcun ruolo"
|
105 |
|
106 |
+
#: ../includes/class-user-role-editor.php:234
|
107 |
msgid "No rights"
|
108 |
msgstr "Nessun diritto"
|
109 |
|
110 |
+
#: ../includes/class-user-role-editor.php:235
|
111 |
msgid "Provide new role"
|
112 |
msgstr "Fornisci nuovo ruolo"
|
113 |
|
114 |
+
#: ../includes/class-user-role-editor.php:319
|
115 |
+
#: ../includes/class-user-role-editor.php:321
|
116 |
msgid "You do not have permission to edit this user."
|
117 |
msgstr "Non hai i permessi per modificare questo utente."
|
118 |
|
119 |
+
#: ../includes/class-user-role-editor.php:460
|
120 |
msgid "Capabilities"
|
121 |
msgstr "Funzionalità"
|
122 |
|
123 |
+
#: ../includes/class-user-role-editor.php:558
|
124 |
msgid "Settings"
|
125 |
msgstr "Parametri"
|
126 |
|
127 |
+
#: ../includes/class-user-role-editor.php:569
|
128 |
+
#: ../includes/class-ure-lib.php:2529
|
129 |
msgid "Changelog"
|
130 |
msgstr "Changelog"
|
131 |
|
132 |
+
#: ../includes/class-user-role-editor.php:619
|
133 |
+
#: ../includes/class-user-role-editor.php:648
|
134 |
+
#: ../includes/class-user-role-editor.php:1029
|
135 |
+
#: ../includes/class-ure-lib.php:337
|
136 |
msgid "User Role Editor"
|
137 |
msgstr "Editor Ruolo Utente"
|
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 "Le opzioni dell'Editor Ruolo Utente sono aggiornate"
|
144 |
|
145 |
+
#: ../includes/class-user-role-editor.php:754
|
146 |
msgid "Default Roles are updated"
|
147 |
msgstr "Ruoli di default aggiornati"
|
148 |
|
149 |
+
#: ../includes/class-user-role-editor.php:778
|
150 |
msgid ""
|
151 |
"You do not have sufficient permissions to manage options for User Role "
|
152 |
"Editor."
|
154 |
"Non hai permessi sufficienti per gesstire le opzioni per l'Editor Ruolo "
|
155 |
"Utente."
|
156 |
|
157 |
+
#: ../includes/class-user-role-editor.php:850
|
158 |
+
#: ../includes/class-ure-lib.php:1697 ../includes/class-ure-lib.php:1950
|
159 |
+
#: ../includes/class-ure-lib.php:2066 ../includes/class-ure-lib.php:2114
|
160 |
+
#: ../includes/class-ure-lib.php:2350 ../includes/class-ure-lib.php:2395
|
161 |
msgid "Insufficient permissions to work with User Role Editor"
|
162 |
msgstr "Permessi insufficienti per lavorare con l'Editor Ruolo Utente"
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:976
|
165 |
msgid "Select All"
|
166 |
msgstr "Seleziona tutti"
|
167 |
|
168 |
+
#: ../includes/class-user-role-editor.php:977
|
169 |
msgid "Unselect All"
|
170 |
msgstr "Deseleziona tutti"
|
171 |
|
172 |
+
#: ../includes/class-user-role-editor.php:978
|
173 |
msgid "Reverse"
|
174 |
msgstr "Revoca"
|
175 |
|
176 |
+
#: ../includes/class-user-role-editor.php:979
|
177 |
msgid "Update"
|
178 |
msgstr "Aggiorna"
|
179 |
|
180 |
+
#: ../includes/class-user-role-editor.php:980
|
181 |
msgid "Please confirm permissions update"
|
182 |
msgstr "Conferma l'aggiornamento dei permessi"
|
183 |
|
184 |
+
#: ../includes/class-user-role-editor.php:981
|
185 |
msgid "Add New Role"
|
186 |
msgstr "Aggiungi nuovo ruolo"
|
187 |
|
188 |
+
#: ../includes/class-user-role-editor.php:982
|
189 |
+
#: ../includes/class-user-role-editor.php:987
|
190 |
msgid "Rename Role"
|
191 |
msgstr "Rinomina ruolo"
|
192 |
|
193 |
+
#: ../includes/class-user-role-editor.php:983
|
194 |
msgid " Role name (ID) can not be empty!"
|
195 |
msgstr "Nome Ruolo (ID) non può essere vuoto!"
|
196 |
|
197 |
+
#: ../includes/class-user-role-editor.php:984
|
198 |
msgid ""
|
199 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
200 |
"only!"
|
202 |
"Il nome Ruolo (ID) deve contenere solo caratteri latini, numeri, trattini o "
|
203 |
"underscore!"
|
204 |
|
205 |
+
#: ../includes/class-user-role-editor.php:985
|
206 |
msgid ""
|
207 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
208 |
"it."
|
210 |
"Wordpress non supporta il nome Ruolo (ID) nel formaro numerico. Inserisci "
|
211 |
"caratteri latini."
|
212 |
|
213 |
+
#: ../includes/class-user-role-editor.php:986
|
214 |
msgid "Add Role"
|
215 |
msgstr "Aggiungi Ruolo"
|
216 |
|
217 |
+
#: ../includes/class-user-role-editor.php:988
|
218 |
msgid "Delete Role"
|
219 |
msgstr "Cancella Ruolo"
|
220 |
|
221 |
+
#: ../includes/class-user-role-editor.php:989
|
222 |
msgid "Cancel"
|
223 |
msgstr "Cancella"
|
224 |
|
225 |
+
#: ../includes/class-user-role-editor.php:990
|
226 |
msgid "Add Capability"
|
227 |
msgstr "Aggiungi funzionalità"
|
228 |
|
229 |
+
#: ../includes/class-user-role-editor.php:991
|
230 |
+
#: ../includes/class-user-role-editor.php:1000
|
231 |
msgid "Delete Capability"
|
232 |
msgstr "Cancella funzionalità"
|
233 |
|
234 |
+
#: ../includes/class-user-role-editor.php:992
|
235 |
msgid "Reset"
|
236 |
msgstr "Resetta"
|
237 |
|
238 |
+
#: ../includes/class-user-role-editor.php:993
|
239 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
240 |
msgstr ""
|
241 |
"PERICOLO! Il Reset ripristinerà i parametri di default dal nucleo Wordpress."
|
242 |
|
243 |
+
#: ../includes/class-user-role-editor.php:994
|
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!"
|
249 |
"l'installazione (tipo S2Members, WooCommerce, ed altri), queste funzionalità "
|
250 |
"saranno cancellate!"
|
251 |
|
252 |
+
#: ../includes/class-user-role-editor.php:995
|
253 |
msgid ""
|
254 |
"For more information on how to undo changes and restore plugin capabilities "
|
255 |
"go to"
|
257 |
"Per altre informazioni su come tornare indietro con le modifiche e "
|
258 |
"ripristinare le funzionalità del plugin vai a"
|
259 |
|
260 |
+
#: ../includes/class-user-role-editor.php:997
|
261 |
msgid "Continue?"
|
262 |
msgstr "Continui?"
|
263 |
|
264 |
+
#: ../includes/class-user-role-editor.php:998
|
265 |
msgid "Default Role"
|
266 |
msgstr "Ruolo di default"
|
267 |
|
268 |
+
#: ../includes/class-user-role-editor.php:999
|
269 |
msgid "Set New Default Role"
|
270 |
msgstr "Setta Nuovo Ruolo di Default"
|
271 |
|
272 |
+
#: ../includes/class-user-role-editor.php:1001
|
273 |
msgid ""
|
274 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
275 |
"or other custom code"
|
277 |
"Attenzione! rimuovendo le funzionalità critiche può far 'crashare' il plugin "
|
278 |
"o codice personalizzato al crash "
|
279 |
|
280 |
+
#: ../includes/class-user-role-editor.php:1002
|
281 |
msgid " Capability name (ID) can not be empty!"
|
282 |
msgstr "Nome funzionalità (ID) non può essere vuoto!"
|
283 |
|
284 |
+
#: ../includes/class-user-role-editor.php:1003
|
285 |
msgid ""
|
286 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
287 |
"underscore only!"
|
289 |
"Nome funzionalità (ID) deve contenere solo caratteri latini, numeri, "
|
290 |
"trattini o underscore!"
|
291 |
|
292 |
+
#: ../includes/class-user-role-editor.php:1032
|
293 |
+
#: ../includes/class-user-role-editor.php:1065
|
294 |
msgid "Other Roles"
|
295 |
msgstr "Altri Ruoli"
|
296 |
|
297 |
+
#: ../includes/class-user-role-editor.php:1046
|
298 |
msgid "Edit"
|
299 |
msgstr "Modifica"
|
300 |
|
302 |
msgid "Select Role and change its capabilities:"
|
303 |
msgstr "Seleziona il Ruolo e varia le sue funzionalità:"
|
304 |
|
305 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
306 |
msgid "Show capabilities in human readable form"
|
307 |
msgstr "Mostra le funzionalità in una forma umana leggibile"
|
308 |
|
314 |
msgid "Apply to All Sites"
|
315 |
msgstr "Applica a tutti i siti"
|
316 |
|
317 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
318 |
msgid "Core capabilities:"
|
319 |
msgstr "Funzionalità nucleo:"
|
320 |
|
321 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
322 |
msgid "Quick filter:"
|
323 |
msgstr "Filtro veloce:"
|
324 |
|
325 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
326 |
msgid "Custom capabilities:"
|
327 |
msgstr "Funzionalità personalizzate:"
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:245
|
330 |
msgid "Error: wrong request"
|
331 |
msgstr "Errore: richiesta errata"
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:278 ../includes/class-ure-lib.php:289
|
334 |
msgid "Role name (ID): "
|
335 |
msgstr "Nome Ruolo (ID):"
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
338 |
msgid "Display Role Name: "
|
339 |
msgstr "Mostra Nome Ruolo:"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:282
|
342 |
msgid "Make copy of: "
|
343 |
msgstr "Fai una copia di:"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:298
|
346 |
msgid "Select Role:"
|
347 |
msgstr "Seleziona Ruolo:"
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:313
|
350 |
msgid "Delete:"
|
351 |
msgstr "Cancella:"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:320
|
354 |
msgid "Capability name (ID): "
|
355 |
msgstr "Nome funzionalità (ID):"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:434
|
358 |
msgid "Error: "
|
359 |
msgstr "Errore:"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:434
|
362 |
msgid "Role"
|
363 |
msgstr "Ruolo"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:435
|
366 |
msgid "does not exist"
|
367 |
msgstr "non esiste"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:478
|
370 |
msgid "Role is updated successfully"
|
371 |
msgstr "Ruolo aggiornato correttamente"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:480
|
374 |
msgid "Roles are updated for all network"
|
375 |
msgstr "I Ruoli sono aggiornati per tutto il network"
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:486
|
378 |
msgid "Error occured during role(s) update"
|
379 |
msgstr "Errore durante l'aggiornamento Ruolo(i)"
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:493
|
382 |
msgid "User capabilities are updated successfully"
|
383 |
msgstr "Funzionalità utenti aggiornate con successo"
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:498
|
386 |
msgid "Error occured during user update"
|
387 |
msgstr "Errore di aggiornamento utente"
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:556
|
390 |
msgid "User Roles are restored to WordPress default values. "
|
391 |
msgstr "i Ruolo Utente sono rirpstinati ai valori di default Wordpress."
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1445
|
394 |
msgid "Help"
|
395 |
msgstr "Aiuto"
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:1913
|
398 |
msgid "Error is occur. Please check the log file."
|
399 |
msgstr "Errore. Controlla file log."
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
402 |
msgid ""
|
403 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
404 |
"only!"
|
406 |
"Errore: ID Ruolo deve contenere solo caratteri latini, numeri, trattini o "
|
407 |
"uderscore!"
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1963 ../includes/class-ure-lib.php:2030
|
410 |
msgid ""
|
411 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
412 |
"characters to it."
|
414 |
"Errore: WordPress non supporta il nome Ruolo (ID) nel formato numerico. "
|
415 |
"Aggiungi caratteri latini."
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1978
|
418 |
#, php-format
|
419 |
msgid "Role %s exists already"
|
420 |
msgstr "Il Ruolo %s esiste"
|
421 |
|
422 |
+
#: ../includes/class-ure-lib.php:1993
|
423 |
msgid "Error is encountered during new role create operation"
|
424 |
msgstr "Errore durante la creazione del nuovo ruolo"
|
425 |
|
426 |
+
#: ../includes/class-ure-lib.php:1995
|
427 |
#, php-format
|
428 |
msgid "Role %s is created successfully"
|
429 |
msgstr "Ruolo %s creato con successo"
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:2019
|
432 |
msgid "Error: Role ID is empty!"
|
433 |
msgstr "Errore: ID Ruolo è vuoto!"
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:2037
|
436 |
msgid "Error: Empty role display name is not allowed."
|
437 |
msgstr "Errore: non è ammesso che il nome visualizzato del Ruolo sia vuoto."
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:2044
|
440 |
#, php-format
|
441 |
msgid "Role %s does not exists"
|
442 |
msgstr "Ruolo %s non esiste"
|
443 |
|
444 |
+
#: ../includes/class-ure-lib.php:2052
|
445 |
#, php-format
|
446 |
msgid "Role %s is renamed to %s successfully"
|
447 |
msgstr "Ruolo %s rinominato in %s con successo"
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:2125
|
450 |
msgid "Error encountered during role delete operation"
|
451 |
msgstr "Errore durante la cancellazione del ruolo"
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:2127
|
454 |
msgid "Unused roles are deleted successfully"
|
455 |
msgstr "I Ruoli inutilizzati sono stati cancellati"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:2129
|
458 |
#, php-format
|
459 |
msgid "Role %s is deleted successfully"
|
460 |
msgstr "Ruolo %s cancellato con successo"
|
461 |
|
462 |
+
#: ../includes/class-ure-lib.php:2154
|
463 |
msgid "Error encountered during default role change operation"
|
464 |
msgstr "Errore durante la variazione del ruolo di default"
|
465 |
|
466 |
+
#: ../includes/class-ure-lib.php:2160
|
467 |
#, php-format
|
468 |
msgid "Default role for new users is set to %s successfully"
|
469 |
msgstr "Ruolo di default per i nuovi utenti è stato cambiato a %s con successo"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:2179
|
472 |
msgid "Editor"
|
473 |
msgstr "Editor"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:2180
|
476 |
msgid "Author"
|
477 |
msgstr "Author"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:2181
|
480 |
msgid "Contributor"
|
481 |
msgstr "Contributor"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:2182
|
484 |
msgid "Subscriber"
|
485 |
msgstr "Subscriber"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:2184
|
488 |
msgid "Switch themes"
|
489 |
msgstr "Cambia temi"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:2185
|
492 |
msgid "Edit themes"
|
493 |
msgstr "Modifica temi"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:2186
|
496 |
msgid "Activate plugins"
|
497 |
msgstr "Attiva plugins"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:2187
|
500 |
msgid "Edit plugins"
|
501 |
msgstr "Edita plugins"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:2188
|
504 |
msgid "Edit users"
|
505 |
msgstr "Edita utenti"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:2189
|
508 |
msgid "Edit files"
|
509 |
msgstr "Edita files"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:2190
|
512 |
msgid "Manage options"
|
513 |
msgstr "Gestisci opzioni"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:2191
|
516 |
msgid "Moderate comments"
|
517 |
msgstr "Modera commenti"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:2192
|
520 |
msgid "Manage categories"
|
521 |
msgstr "Gestisci categorie"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:2193
|
524 |
msgid "Manage links"
|
525 |
msgstr "Gestisci links"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:2194
|
528 |
msgid "Upload files"
|
529 |
msgstr "Upload files"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:2195
|
532 |
msgid "Import"
|
533 |
msgstr "Importa"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:2196
|
536 |
msgid "Unfiltered html"
|
537 |
msgstr "Html non filtrato"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:2197
|
540 |
msgid "Edit posts"
|
541 |
msgstr "Edit posts"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:2198
|
544 |
msgid "Edit others posts"
|
545 |
msgstr "Edit altri posts"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:2199
|
548 |
msgid "Edit published posts"
|
549 |
msgstr "Edit posts pubblicati"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:2200
|
552 |
msgid "Publish posts"
|
553 |
msgstr "Pubblica posts"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:2201
|
556 |
msgid "Edit pages"
|
557 |
msgstr "Edit pagine"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:2202
|
560 |
msgid "Read"
|
561 |
msgstr "Read"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:2203
|
564 |
msgid "Level 10"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:2204
|
568 |
msgid "Level 9"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:2205
|
572 |
msgid "Level 8"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:2206
|
576 |
msgid "Level 7"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:2207
|
580 |
msgid "Level 6"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:2208
|
584 |
msgid "Level 5"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:2209
|
588 |
msgid "Level 4"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:2210
|
592 |
msgid "Level 3"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:2211
|
596 |
msgid "Level 2"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: ../includes/class-ure-lib.php:2212
|
600 |
msgid "Level 1"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:2213
|
604 |
msgid "Level 0"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:2214
|
608 |
msgid "Edit others pages"
|
609 |
msgstr "Edit altre pagine"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:2215
|
612 |
msgid "Edit published pages"
|
613 |
msgstr "Edit pagine pubblicate"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:2216
|
616 |
msgid "Publish pages"
|
617 |
msgstr "Pubblica pagine"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:2217
|
620 |
msgid "Delete pages"
|
621 |
msgstr "Cancella pagine"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:2218
|
624 |
msgid "Delete others pages"
|
625 |
msgstr "Cancella altre pagine"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:2219
|
628 |
msgid "Delete published pages"
|
629 |
msgstr "Cancella pagine pubblicate"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:2220
|
632 |
msgid "Delete posts"
|
633 |
msgstr "Cancella posts"
|
634 |
|
635 |
+
#: ../includes/class-ure-lib.php:2221
|
636 |
msgid "Delete others posts"
|
637 |
msgstr "Cancella altri posts"
|
638 |
|
639 |
+
#: ../includes/class-ure-lib.php:2222
|
640 |
msgid "Delete published posts"
|
641 |
msgstr "Cancella i posts pubblicati"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:2223
|
644 |
msgid "Delete private posts"
|
645 |
msgstr "Cancella posts privati"
|
646 |
|
647 |
+
#: ../includes/class-ure-lib.php:2224
|
648 |
msgid "Edit private posts"
|
649 |
msgstr "Edit posts privati"
|
650 |
|
651 |
+
#: ../includes/class-ure-lib.php:2225
|
652 |
msgid "Read private posts"
|
653 |
msgstr "Leggi posts privati"
|
654 |
|
655 |
+
#: ../includes/class-ure-lib.php:2226
|
656 |
msgid "Delete private pages"
|
657 |
msgstr "Cancella pagine private"
|
658 |
|
659 |
+
#: ../includes/class-ure-lib.php:2227
|
660 |
msgid "Edit private pages"
|
661 |
msgstr "Edit pagine private"
|
662 |
|
663 |
+
#: ../includes/class-ure-lib.php:2228
|
664 |
msgid "Read private pages"
|
665 |
msgstr "Legge pagine private"
|
666 |
|
667 |
+
#: ../includes/class-ure-lib.php:2229
|
668 |
msgid "Delete users"
|
669 |
msgstr "Cancella utenti"
|
670 |
|
671 |
+
#: ../includes/class-ure-lib.php:2230
|
672 |
msgid "Create users"
|
673 |
msgstr "Crea utenti"
|
674 |
|
675 |
+
#: ../includes/class-ure-lib.php:2231
|
676 |
msgid "Unfiltered upload"
|
677 |
msgstr "Uploads non filtrati"
|
678 |
|
679 |
+
#: ../includes/class-ure-lib.php:2232
|
680 |
msgid "Edit dashboard"
|
681 |
msgstr "Edit dashboard"
|
682 |
|
683 |
+
#: ../includes/class-ure-lib.php:2233
|
684 |
msgid "Update plugins"
|
685 |
msgstr "Aggiorna plugins"
|
686 |
|
687 |
+
#: ../includes/class-ure-lib.php:2234
|
688 |
msgid "Delete plugins"
|
689 |
msgstr "Cancella plugins"
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:2235
|
692 |
msgid "Install plugins"
|
693 |
msgstr "Installa plugins"
|
694 |
|
695 |
+
#: ../includes/class-ure-lib.php:2236
|
696 |
msgid "Update themes"
|
697 |
msgstr "Aggiorna temi"
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2237
|
700 |
msgid "Install themes"
|
701 |
msgstr "Installa temi"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2238
|
704 |
msgid "Update core"
|
705 |
msgstr "Aggiorna nucleo"
|
706 |
|
707 |
+
#: ../includes/class-ure-lib.php:2239
|
708 |
msgid "List users"
|
709 |
msgstr "Lista utenti"
|
710 |
|
711 |
+
#: ../includes/class-ure-lib.php:2240
|
712 |
msgid "Remove users"
|
713 |
msgstr "Rimuovi utenti"
|
714 |
|
715 |
+
#: ../includes/class-ure-lib.php:2241
|
716 |
msgid "Add users"
|
717 |
msgstr "Aggiungi utenti"
|
718 |
|
719 |
+
#: ../includes/class-ure-lib.php:2242
|
720 |
msgid "Promote users"
|
721 |
msgstr "Promuovi utenti"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2243
|
724 |
msgid "Edit theme options"
|
725 |
msgstr "Edit opzioni tema"
|
726 |
|
727 |
+
#: ../includes/class-ure-lib.php:2244
|
728 |
msgid "Delete themes"
|
729 |
msgstr "Cancella temi"
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2245
|
732 |
msgid "Export"
|
733 |
msgstr "Esporta"
|
734 |
|
735 |
+
#: ../includes/class-ure-lib.php:2358
|
736 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
737 |
msgstr ""
|
738 |
"Errore: nome funzionalità deve contenere solo caratteri latini o numeri!"
|
739 |
|
740 |
+
#: ../includes/class-ure-lib.php:2371
|
741 |
#, php-format
|
742 |
msgid "Capability %s is added successfully"
|
743 |
msgstr "Funzionalità %s aggiunta!"
|
744 |
|
745 |
+
#: ../includes/class-ure-lib.php:2373
|
746 |
#, php-format
|
747 |
msgid "Capability %s exists already"
|
748 |
msgstr "Funzionalità %s già esiste"
|
749 |
|
750 |
+
#: ../includes/class-ure-lib.php:2402
|
751 |
#, php-format
|
752 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
753 |
msgstr "Errore! Non hai permessi per cancellare questa funzionalità: %s!"
|
754 |
|
755 |
+
#: ../includes/class-ure-lib.php:2421
|
756 |
#, php-format
|
757 |
msgid "Capability %s is removed successfully"
|
758 |
msgstr "Funzionalità %s rimossa con successo"
|
759 |
|
760 |
+
#: ../includes/class-ure-lib.php:2525
|
761 |
msgid "Version:"
|
762 |
msgstr "Versione:"
|
763 |
|
764 |
+
#: ../includes/class-ure-lib.php:2526
|
765 |
msgid "Author's website"
|
766 |
msgstr "Sito web dell'autore"
|
767 |
|
768 |
+
#: ../includes/class-ure-lib.php:2527
|
769 |
msgid "Plugin webpage"
|
770 |
msgstr "Webpabe plugin"
|
771 |
|
772 |
+
#: ../includes/class-ure-lib.php:2528
|
773 |
msgid "Plugin download"
|
774 |
msgstr "Download plugin"
|
775 |
|
776 |
+
#: ../includes/class-ure-lib.php:2530
|
777 |
msgid "FAQ"
|
778 |
msgstr "FAQ"
|
779 |
|
780 |
+
#: ../includes/class-ure-lib.php:2578
|
781 |
msgid "None"
|
782 |
msgstr "Nessuno"
|
783 |
|
784 |
+
#: ../includes/class-ure-lib.php:2605
|
785 |
msgid "Delete All Unused Roles"
|
786 |
msgstr "Cancella tutti i Ruoli inutilizzati"
|
787 |
|
788 |
+
#: ../includes/class-ure-lib.php:2629
|
789 |
msgid "— No role for this site —"
|
790 |
msgstr "— Nessun ruolo per questo sito —"
|
791 |
|
792 |
+
#: ../includes/ure-user-edit.php:32
|
793 |
msgid "Network Super Admin"
|
794 |
msgstr "Super Admin Network"
|
795 |
|
796 |
+
#: ../includes/ure-user-edit.php:35
|
797 |
msgid "Change capabilities for user"
|
798 |
msgstr "Cambia funzionalità per l'utente"
|
799 |
|
800 |
+
#: ../includes/ure-user-edit.php:72
|
801 |
msgid "Primary Role:"
|
802 |
msgstr "Ruolo primario:"
|
803 |
|
804 |
+
#: ../includes/ure-user-edit.php:82
|
805 |
msgid "bbPress Role:"
|
806 |
msgstr "Ruolo bbPress:"
|
807 |
|
808 |
+
#: ../includes/ure-user-edit.php:92
|
809 |
msgid "Other Roles:"
|
810 |
msgstr "Altri Ruoli:"
|
811 |
|
841 |
"vecchi temi e codici plugins. Selezionando questa opzione saranno "
|
842 |
"visualizzate queste funzionalità sorpassate."
|
843 |
|
844 |
+
#: ../includes/class-ure-screen-help.php:26
|
845 |
+
msgid ""
|
846 |
+
"If turned off - capabilities section of selected user is shown in readonly "
|
847 |
+
"mode. Administrator can not assign capabilities to the user directly. He "
|
848 |
+
"should make it using roles only."
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: ../includes/class-ure-screen-help.php:46
|
852 |
msgid ""
|
853 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
854 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
858 |
"di assegnare a tutti costoro un ruolo vuoto \"Nessun diritto\", per bloccare "
|
859 |
"la lista utenti sul ruolo \"Nessun diritto\" in una tabella separata."
|
860 |
|
861 |
+
#: ../includes/class-ure-screen-help.php:63
|
862 |
msgid "Other default roles for new registered user"
|
863 |
msgstr "Altri ruoli di default per i nuovi utenti registrati"
|
864 |
|
865 |
+
#: ../includes/class-ure-screen-help.php:64
|
866 |
msgid ""
|
867 |
"select roles below to assign them to the new user automatically as an "
|
868 |
"addition to the primary role. Note for multisite environment: take into "
|
874 |
"il fatto che gli altri ruoli predefiniti dovrebbero esistere sul sito, in "
|
875 |
"modo da assegnarli ai nuovi utenti registrati."
|
876 |
|
877 |
+
#: ../includes/class-ure-screen-help.php:82
|
878 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
879 |
msgstr ""
|
880 |
"Permetti ad un non super-amministratore di creare, modificare e cancellare "
|
881 |
"utenti"
|
882 |
|
883 |
+
#: ../includes/class-ure-screen-help.php:83
|
884 |
msgid ""
|
885 |
"Super administrator only may create, edit and delete users under WordPress "
|
886 |
"multi-site by default. Turn this option on in order to remove this "
|
lang/ure-nl.mo
CHANGED
Binary file
|
lang/ure-nl.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -22,22 +22,22 @@ msgid "User Role Editor - Options"
|
|
22 |
msgstr "User Rol Editor - Opties"
|
23 |
|
24 |
#: ../includes/settings-template.php:21
|
25 |
-
#: ../includes/class-user-role-editor.php:
|
26 |
msgid "General"
|
27 |
msgstr "Algemeen"
|
28 |
|
29 |
#: ../includes/settings-template.php:26
|
30 |
-
#: ../includes/class-user-role-editor.php:
|
31 |
msgid "Additional Modules"
|
32 |
msgstr "Aanvullende modules"
|
33 |
|
34 |
#: ../includes/settings-template.php:30
|
35 |
-
#: ../includes/class-user-role-editor.php:
|
36 |
msgid "Default Roles"
|
37 |
msgstr "Standaard Rollen"
|
38 |
|
39 |
#: ../includes/settings-template.php:34
|
40 |
-
#: ../includes/class-user-role-editor.php:
|
41 |
msgid "Multisite"
|
42 |
msgstr "Multisite"
|
43 |
|
@@ -56,29 +56,34 @@ msgid "Show capabilities in the human readable form"
|
|
56 |
msgstr "Toon de rechten in een leesbare vorm"
|
57 |
|
58 |
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
59 |
-
#: ../includes/ure-user-edit.php:
|
60 |
msgid "Show deprecated capabilities"
|
61 |
msgstr "Toon afgekeurde rechten"
|
62 |
|
63 |
-
#: ../includes/settings-template.php:
|
64 |
-
#: ../includes/
|
|
|
|
|
|
|
|
|
|
|
65 |
msgid "Save"
|
66 |
msgstr "Opslaan"
|
67 |
|
68 |
-
#: ../includes/settings-template.php:
|
69 |
-
#: ../includes/class-ure-screen-help.php:
|
70 |
msgid "Count users without role"
|
71 |
msgstr "Het aantal Gebruikers zonder rol"
|
72 |
|
73 |
-
#: ../includes/settings-template.php:
|
74 |
msgid "Primary default role: "
|
75 |
msgstr "Standaard rol:"
|
76 |
|
77 |
-
#: ../includes/settings-template.php:
|
78 |
msgid "Other default roles for new registered user: "
|
79 |
msgstr "Andere standaard rollen voor nieuw geregistreerde gebruiker:"
|
80 |
|
81 |
-
#: ../includes/settings-template.php:
|
82 |
msgid ""
|
83 |
"Note for multisite environment: take into account that other default roles "
|
84 |
"should exist at the site, in order to be assigned to the new registered "
|
@@ -88,103 +93,106 @@ msgstr ""
|
|
88 |
"functies op de site moeten bestaan, om toegewezen te kunnen worden aan nieuw "
|
89 |
"geregistreerde gebruikers."
|
90 |
|
91 |
-
#: ../includes/settings-template.php:
|
92 |
msgid "Allow non super administrators to create, edit, and delete users"
|
93 |
msgstr ""
|
94 |
"Sta niet super beheerders toe om gebruikers aan te maken, te bewerken en te "
|
95 |
"verwijderen"
|
96 |
|
97 |
-
#: ../includes/class-user-role-editor.php:
|
98 |
msgid "Change role for users without role"
|
99 |
msgstr "Wijzig de rol van gebruikers zonder rol"
|
100 |
|
101 |
-
#: ../includes/class-user-role-editor.php:
|
102 |
msgid "No rights"
|
103 |
msgstr "Geen rechten"
|
104 |
|
105 |
-
#: ../includes/class-user-role-editor.php:
|
106 |
msgid "Provide new role"
|
107 |
msgstr "Creëer een nieuwe rol"
|
108 |
|
109 |
-
#: ../includes/class-user-role-editor.php:
|
110 |
-
#: ../includes/class-user-role-editor.php:
|
111 |
msgid "You do not have permission to edit this user."
|
112 |
msgstr "Je hebt toestemming om gegevens van deze gebruiker te wijzigen"
|
113 |
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
msgid "Capabilities"
|
116 |
msgstr "Rechten"
|
117 |
|
118 |
-
#: ../includes/class-user-role-editor.php:
|
119 |
msgid "Settings"
|
120 |
msgstr "Instellingen"
|
121 |
|
122 |
-
#: ../includes/class-user-role-editor.php:
|
123 |
-
#: ../includes/class-ure-lib.php:
|
124 |
msgid "Changelog"
|
125 |
msgstr "Changelog"
|
126 |
|
127 |
-
#: ../includes/class-user-role-editor.php:
|
128 |
-
#: ../includes/class-user-role-editor.php:
|
129 |
-
#: ../includes/class-user-role-editor.php:
|
130 |
-
#: ../includes/class-ure-lib.php:
|
131 |
msgid "User Role Editor"
|
132 |
msgstr "User Rol Editor"
|
133 |
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
-
#: ../includes/class-user-role-editor.php:
|
136 |
-
#: ../includes/class-user-role-editor.php:
|
137 |
msgid "User Role Editor options are updated"
|
138 |
msgstr "User Role Editor opties zijn ge-update"
|
139 |
|
140 |
-
#: ../includes/class-user-role-editor.php:
|
141 |
msgid "Default Roles are updated"
|
142 |
msgstr "Standaard Rollen zijn ge-update"
|
143 |
|
144 |
-
#: ../includes/class-user-role-editor.php:
|
145 |
msgid ""
|
146 |
"You do not have sufficient permissions to manage options for User Role "
|
147 |
"Editor."
|
148 |
msgstr "Je hebt onvoldoende rechten om de User Role Editor te beheren."
|
149 |
|
150 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
151 |
msgid "Insufficient permissions to work with User Role Editor"
|
152 |
msgstr "Onvoldoende rechten om te werken met User Role Editor"
|
153 |
|
154 |
-
#: ../includes/class-user-role-editor.php:
|
155 |
msgid "Select All"
|
156 |
msgstr "Alles selecteren"
|
157 |
|
158 |
-
#: ../includes/class-user-role-editor.php:
|
159 |
msgid "Unselect All"
|
160 |
msgstr "Alles deselecteren"
|
161 |
|
162 |
-
#: ../includes/class-user-role-editor.php:
|
163 |
msgid "Reverse"
|
164 |
msgstr "Omzetten"
|
165 |
|
166 |
-
#: ../includes/class-user-role-editor.php:
|
167 |
msgid "Update"
|
168 |
msgstr "Update"
|
169 |
|
170 |
-
#: ../includes/class-user-role-editor.php:
|
171 |
msgid "Please confirm permissions update"
|
172 |
msgstr "Bevestig toestemming om te mogen updaten"
|
173 |
|
174 |
-
#: ../includes/class-user-role-editor.php:
|
175 |
msgid "Add New Role"
|
176 |
msgstr "Nieuwe Rol Toevoegen"
|
177 |
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
-
#: ../includes/class-user-role-editor.php:
|
180 |
msgid "Rename Role"
|
181 |
msgstr "Hernoem Rol"
|
182 |
|
183 |
-
#: ../includes/class-user-role-editor.php:
|
184 |
msgid " Role name (ID) can not be empty!"
|
185 |
msgstr "Rol naam (ID) kan niet leeg zijn!"
|
186 |
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
msgid ""
|
189 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
190 |
"only!"
|
@@ -192,7 +200,7 @@ msgstr ""
|
|
192 |
"Rol naam (ID) moet latijnse letters, cijfers, koppeltekens of een underscore "
|
193 |
"bevatten!"
|
194 |
|
195 |
-
#: ../includes/class-user-role-editor.php:
|
196 |
msgid ""
|
197 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
198 |
"it."
|
@@ -200,38 +208,38 @@ msgstr ""
|
|
200 |
"WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse tekens "
|
201 |
"aan toe."
|
202 |
|
203 |
-
#: ../includes/class-user-role-editor.php:
|
204 |
msgid "Add Role"
|
205 |
msgstr "Rol toevoegen"
|
206 |
|
207 |
-
#: ../includes/class-user-role-editor.php:
|
208 |
msgid "Delete Role"
|
209 |
msgstr "Rol verwijderen"
|
210 |
|
211 |
-
#: ../includes/class-user-role-editor.php:
|
212 |
msgid "Cancel"
|
213 |
msgstr "Annuleren"
|
214 |
|
215 |
-
#: ../includes/class-user-role-editor.php:
|
216 |
msgid "Add Capability"
|
217 |
msgstr "Recht toevoegen"
|
218 |
|
219 |
-
#: ../includes/class-user-role-editor.php:
|
220 |
-
#: ../includes/class-user-role-editor.php:
|
221 |
msgid "Delete Capability"
|
222 |
msgstr "Recht verwijderen"
|
223 |
|
224 |
-
#: ../includes/class-user-role-editor.php:
|
225 |
msgid "Reset"
|
226 |
msgstr "Terugkeren naar de basisinstellingen"
|
227 |
|
228 |
-
#: ../includes/class-user-role-editor.php:
|
229 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
230 |
msgstr ""
|
231 |
"OPGELET! Opnieuw instellen zal de basisinstellingen herstellen van WordPress "
|
232 |
"Core"
|
233 |
|
234 |
-
#: ../includes/class-user-role-editor.php:
|
235 |
msgid ""
|
236 |
"If any plugins have changed capabilities in any way upon installation (such "
|
237 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -240,7 +248,7 @@ msgstr ""
|
|
240 |
"installatie (zoals S2Member, WooCommerce, en nog veel meer), zullen deze "
|
241 |
"instellingen worden VERWIJDERD!"
|
242 |
|
243 |
-
#: ../includes/class-user-role-editor.php:
|
244 |
msgid ""
|
245 |
"For more information on how to undo changes and restore plugin capabilities "
|
246 |
"go to"
|
@@ -248,19 +256,19 @@ msgstr ""
|
|
248 |
"Voor meer informatie over hoe u wijzigingen ongedaan kunt maken en rechten "
|
249 |
"van de plugin kunt herstellen ga naar"
|
250 |
|
251 |
-
#: ../includes/class-user-role-editor.php:
|
252 |
msgid "Continue?"
|
253 |
msgstr "Doorgaan?"
|
254 |
|
255 |
-
#: ../includes/class-user-role-editor.php:
|
256 |
msgid "Default Role"
|
257 |
msgstr "Standaard Rol"
|
258 |
|
259 |
-
#: ../includes/class-user-role-editor.php:
|
260 |
msgid "Set New Default Role"
|
261 |
msgstr "Maak een nieuwe standaard rol aan"
|
262 |
|
263 |
-
#: ../includes/class-user-role-editor.php:
|
264 |
msgid ""
|
265 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
266 |
"or other custom code"
|
@@ -268,11 +276,11 @@ msgstr ""
|
|
268 |
"Waarschuwing! Wees voorzichtig - het verwijderen van een recht laat sommige "
|
269 |
"plugins of aangepaste code crashen"
|
270 |
|
271 |
-
#: ../includes/class-user-role-editor.php:
|
272 |
msgid " Capability name (ID) can not be empty!"
|
273 |
msgstr "Een recht naam (ID) kan niet leeg zijn!"
|
274 |
|
275 |
-
#: ../includes/class-user-role-editor.php:
|
276 |
msgid ""
|
277 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
278 |
"underscore only!"
|
@@ -280,12 +288,12 @@ msgstr ""
|
|
280 |
"Naam van het recht (ID) moet Latijnse letters, cijfers, koppeltekens of "
|
281 |
"underscores bevatten!!"
|
282 |
|
283 |
-
#: ../includes/class-user-role-editor.php:
|
284 |
-
#: ../includes/class-user-role-editor.php:
|
285 |
msgid "Other Roles"
|
286 |
msgstr "Andere Rollen"
|
287 |
|
288 |
-
#: ../includes/class-user-role-editor.php:
|
289 |
msgid "Edit"
|
290 |
msgstr "Wijzigen"
|
291 |
|
@@ -293,7 +301,7 @@ msgstr "Wijzigen"
|
|
293 |
msgid "Select Role and change its capabilities:"
|
294 |
msgstr "Selecteer de Rol en wijzig de rechten"
|
295 |
|
296 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:
|
297 |
msgid "Show capabilities in human readable form"
|
298 |
msgstr "Toon rechten in leesbare vorm"
|
299 |
|
@@ -307,91 +315,91 @@ msgstr ""
|
|
307 |
msgid "Apply to All Sites"
|
308 |
msgstr "Pas toe op alle Sites"
|
309 |
|
310 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:
|
311 |
msgid "Core capabilities:"
|
312 |
msgstr "Core rechten:"
|
313 |
|
314 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:
|
315 |
msgid "Quick filter:"
|
316 |
msgstr "Snel filter:"
|
317 |
|
318 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:
|
319 |
msgid "Custom capabilities:"
|
320 |
msgstr "Gebruikelijke rechten:"
|
321 |
|
322 |
-
#: ../includes/class-ure-lib.php:
|
323 |
msgid "Error: wrong request"
|
324 |
msgstr "Fout: verkeerde aanvraag"
|
325 |
|
326 |
-
#: ../includes/class-ure-lib.php:
|
327 |
msgid "Role name (ID): "
|
328 |
msgstr "Naam Rol (ID):"
|
329 |
|
330 |
-
#: ../includes/class-ure-lib.php:
|
331 |
msgid "Display Role Name: "
|
332 |
msgstr "Maak de Naam van de Rol zichtbaar:"
|
333 |
|
334 |
-
#: ../includes/class-ure-lib.php:
|
335 |
msgid "Make copy of: "
|
336 |
msgstr "Maak een kopie van:"
|
337 |
|
338 |
-
#: ../includes/class-ure-lib.php:
|
339 |
msgid "Select Role:"
|
340 |
msgstr "Selecteer een Rol:"
|
341 |
|
342 |
-
#: ../includes/class-ure-lib.php:
|
343 |
msgid "Delete:"
|
344 |
msgstr "Verwijder:"
|
345 |
|
346 |
-
#: ../includes/class-ure-lib.php:
|
347 |
msgid "Capability name (ID): "
|
348 |
msgstr "Naam recht (ID):"
|
349 |
|
350 |
-
#: ../includes/class-ure-lib.php:
|
351 |
msgid "Error: "
|
352 |
msgstr "Fout:"
|
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 "Bestaat niet"
|
361 |
|
362 |
-
#: ../includes/class-ure-lib.php:
|
363 |
msgid "Role is updated successfully"
|
364 |
msgstr "Rol is succesvol ge-update"
|
365 |
|
366 |
-
#: ../includes/class-ure-lib.php:
|
367 |
msgid "Roles are updated for all network"
|
368 |
msgstr "Rollen van het gehele netwerk zijn ge-update"
|
369 |
|
370 |
-
#: ../includes/class-ure-lib.php:
|
371 |
msgid "Error occured during role(s) update"
|
372 |
msgstr "Er is een fout opgetreden tijdens het updaten van de rol(len)"
|
373 |
|
374 |
-
#: ../includes/class-ure-lib.php:
|
375 |
msgid "User capabilities are updated successfully"
|
376 |
msgstr "Rechten van de gebruiker zijn succesvol geupdate"
|
377 |
|
378 |
-
#: ../includes/class-ure-lib.php:
|
379 |
msgid "Error occured during user update"
|
380 |
msgstr "Er is een fout opgetreden tijdens het updaten van de gebruiker"
|
381 |
|
382 |
-
#: ../includes/class-ure-lib.php:
|
383 |
msgid "User Roles are restored to WordPress default values. "
|
384 |
msgstr "Gebruikers rollen worden hersteld naar WordPress standaardwaarden."
|
385 |
|
386 |
-
#: ../includes/class-ure-lib.php:
|
387 |
msgid "Help"
|
388 |
msgstr "Help"
|
389 |
|
390 |
-
#: ../includes/class-ure-lib.php:
|
391 |
msgid "Error is occur. Please check the log file."
|
392 |
msgstr "Er heeft zich een fout voorgedaan. Controleer het log bestand."
|
393 |
|
394 |
-
#: ../includes/class-ure-lib.php:
|
395 |
msgid ""
|
396 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
397 |
"only!"
|
@@ -399,7 +407,7 @@ msgstr ""
|
|
399 |
"Fout: Een Rol (ID) moet Latijnse letters, cijfers, koppeltekens of "
|
400 |
"underscores bevatten!"
|
401 |
|
402 |
-
#: ../includes/class-ure-lib.php:
|
403 |
msgid ""
|
404 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
405 |
"characters to it."
|
@@ -407,398 +415,398 @@ msgstr ""
|
|
407 |
"Fout: WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse "
|
408 |
"tekens aan toe."
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
#, php-format
|
412 |
msgid "Role %s exists already"
|
413 |
msgstr "Deze Rol %s bestaat al"
|
414 |
|
415 |
-
#: ../includes/class-ure-lib.php:
|
416 |
msgid "Error is encountered during new role create operation"
|
417 |
msgstr "Er is een fout opgetreden tijdens het creëren van een nieuwe rol"
|
418 |
|
419 |
-
#: ../includes/class-ure-lib.php:
|
420 |
#, php-format
|
421 |
msgid "Role %s is created successfully"
|
422 |
msgstr "De Rol %s werd succesvol gecreërd"
|
423 |
|
424 |
-
#: ../includes/class-ure-lib.php:
|
425 |
msgid "Error: Role ID is empty!"
|
426 |
msgstr "Fout: Rol ID is niet gevuld!"
|
427 |
|
428 |
-
#: ../includes/class-ure-lib.php:
|
429 |
msgid "Error: Empty role display name is not allowed."
|
430 |
msgstr "Fout: De weergave van een lege naam van een rol is niet toegestaan."
|
431 |
|
432 |
-
#: ../includes/class-ure-lib.php:
|
433 |
#, php-format
|
434 |
msgid "Role %s does not exists"
|
435 |
msgstr "Rol %s bestaat niet"
|
436 |
|
437 |
-
#: ../includes/class-ure-lib.php:
|
438 |
#, php-format
|
439 |
msgid "Role %s is renamed to %s successfully"
|
440 |
msgstr "Rol %s is succesvol vernoemd naar %s"
|
441 |
|
442 |
-
#: ../includes/class-ure-lib.php:
|
443 |
msgid "Error encountered during role delete operation"
|
444 |
msgstr "Er is een fout opgetreden bij het vewijderen van de rol"
|
445 |
|
446 |
-
#: ../includes/class-ure-lib.php:
|
447 |
msgid "Unused roles are deleted successfully"
|
448 |
msgstr "Ongebruikte rollen zijn succesvol verwijderd"
|
449 |
|
450 |
-
#: ../includes/class-ure-lib.php:
|
451 |
#, php-format
|
452 |
msgid "Role %s is deleted successfully"
|
453 |
msgstr "Rol %s succesvol verwijderd"
|
454 |
|
455 |
-
#: ../includes/class-ure-lib.php:
|
456 |
msgid "Error encountered during default role change operation"
|
457 |
msgstr "Er is een fout opgetreden tijdens het wijzigen van de standaard rol"
|
458 |
|
459 |
-
#: ../includes/class-ure-lib.php:
|
460 |
#, php-format
|
461 |
msgid "Default role for new users is set to %s successfully"
|
462 |
msgstr "De standaard rol voor nieuwe gebruikers is met succes ingesteld op %s"
|
463 |
|
464 |
-
#: ../includes/class-ure-lib.php:
|
465 |
msgid "Editor"
|
466 |
msgstr "Redacteur"
|
467 |
|
468 |
-
#: ../includes/class-ure-lib.php:
|
469 |
msgid "Author"
|
470 |
msgstr "Editor"
|
471 |
|
472 |
-
#: ../includes/class-ure-lib.php:
|
473 |
msgid "Contributor"
|
474 |
msgstr "Inzender"
|
475 |
|
476 |
-
#: ../includes/class-ure-lib.php:
|
477 |
msgid "Subscriber"
|
478 |
msgstr "Abonnee"
|
479 |
|
480 |
-
#: ../includes/class-ure-lib.php:
|
481 |
msgid "Switch themes"
|
482 |
msgstr "Van thema wisselen"
|
483 |
|
484 |
-
#: ../includes/class-ure-lib.php:
|
485 |
msgid "Edit themes"
|
486 |
msgstr "Thema's bewerken"
|
487 |
|
488 |
-
#: ../includes/class-ure-lib.php:
|
489 |
msgid "Activate plugins"
|
490 |
msgstr "Plugins activeren"
|
491 |
|
492 |
-
#: ../includes/class-ure-lib.php:
|
493 |
msgid "Edit plugins"
|
494 |
msgstr "Plugins bewerken"
|
495 |
|
496 |
-
#: ../includes/class-ure-lib.php:
|
497 |
msgid "Edit users"
|
498 |
msgstr "Gebruikers bewerken"
|
499 |
|
500 |
-
#: ../includes/class-ure-lib.php:
|
501 |
msgid "Edit files"
|
502 |
msgstr "Bestanden bewerken"
|
503 |
|
504 |
-
#: ../includes/class-ure-lib.php:
|
505 |
msgid "Manage options"
|
506 |
msgstr "Opties beheren"
|
507 |
|
508 |
-
#: ../includes/class-ure-lib.php:
|
509 |
msgid "Moderate comments"
|
510 |
msgstr "Reacties beheren"
|
511 |
|
512 |
-
#: ../includes/class-ure-lib.php:
|
513 |
msgid "Manage categories"
|
514 |
msgstr "Categorieën beheren"
|
515 |
|
516 |
-
#: ../includes/class-ure-lib.php:
|
517 |
msgid "Manage links"
|
518 |
msgstr "Links beheren"
|
519 |
|
520 |
-
#: ../includes/class-ure-lib.php:
|
521 |
msgid "Upload files"
|
522 |
msgstr "Bestanden uploaden"
|
523 |
|
524 |
-
#: ../includes/class-ure-lib.php:
|
525 |
msgid "Import"
|
526 |
msgstr "Importeren"
|
527 |
|
528 |
-
#: ../includes/class-ure-lib.php:
|
529 |
msgid "Unfiltered html"
|
530 |
msgstr "Ongefilterd html"
|
531 |
|
532 |
-
#: ../includes/class-ure-lib.php:
|
533 |
msgid "Edit posts"
|
534 |
msgstr "Berichten bewerken"
|
535 |
|
536 |
-
#: ../includes/class-ure-lib.php:
|
537 |
msgid "Edit others posts"
|
538 |
msgstr "Berichten van anderen bewerken"
|
539 |
|
540 |
-
#: ../includes/class-ure-lib.php:
|
541 |
msgid "Edit published posts"
|
542 |
msgstr "Gepubliceerde berichten bewerken"
|
543 |
|
544 |
-
#: ../includes/class-ure-lib.php:
|
545 |
msgid "Publish posts"
|
546 |
msgstr "Berichten publiceren"
|
547 |
|
548 |
-
#: ../includes/class-ure-lib.php:
|
549 |
msgid "Edit pages"
|
550 |
msgstr "Pagina's bewerken"
|
551 |
|
552 |
-
#: ../includes/class-ure-lib.php:
|
553 |
msgid "Read"
|
554 |
msgstr "Lezen"
|
555 |
|
556 |
-
#: ../includes/class-ure-lib.php:
|
557 |
msgid "Level 10"
|
558 |
msgstr "Level 10"
|
559 |
|
560 |
-
#: ../includes/class-ure-lib.php:
|
561 |
msgid "Level 9"
|
562 |
msgstr "Level 9"
|
563 |
|
564 |
-
#: ../includes/class-ure-lib.php:
|
565 |
msgid "Level 8"
|
566 |
msgstr "Level 8"
|
567 |
|
568 |
-
#: ../includes/class-ure-lib.php:
|
569 |
msgid "Level 7"
|
570 |
msgstr "Level 7"
|
571 |
|
572 |
-
#: ../includes/class-ure-lib.php:
|
573 |
msgid "Level 6"
|
574 |
msgstr "Level 6"
|
575 |
|
576 |
-
#: ../includes/class-ure-lib.php:
|
577 |
msgid "Level 5"
|
578 |
msgstr "Level 5"
|
579 |
|
580 |
-
#: ../includes/class-ure-lib.php:
|
581 |
msgid "Level 4"
|
582 |
msgstr "Level 4"
|
583 |
|
584 |
-
#: ../includes/class-ure-lib.php:
|
585 |
msgid "Level 3"
|
586 |
msgstr "Level 3"
|
587 |
|
588 |
-
#: ../includes/class-ure-lib.php:
|
589 |
msgid "Level 2"
|
590 |
msgstr "Level 2"
|
591 |
|
592 |
-
#: ../includes/class-ure-lib.php:
|
593 |
msgid "Level 1"
|
594 |
msgstr "Level 1"
|
595 |
|
596 |
-
#: ../includes/class-ure-lib.php:
|
597 |
msgid "Level 0"
|
598 |
msgstr "Level 0"
|
599 |
|
600 |
-
#: ../includes/class-ure-lib.php:
|
601 |
msgid "Edit others pages"
|
602 |
msgstr "Pagina's van anderen bewerken"
|
603 |
|
604 |
-
#: ../includes/class-ure-lib.php:
|
605 |
msgid "Edit published pages"
|
606 |
msgstr "Gepubliceerde pagina's bewerken"
|
607 |
|
608 |
-
#: ../includes/class-ure-lib.php:
|
609 |
msgid "Publish pages"
|
610 |
msgstr "Pagina's publiceren"
|
611 |
|
612 |
-
#: ../includes/class-ure-lib.php:
|
613 |
msgid "Delete pages"
|
614 |
msgstr "Pagina's verwijderen"
|
615 |
|
616 |
-
#: ../includes/class-ure-lib.php:
|
617 |
msgid "Delete others pages"
|
618 |
msgstr "Pagina's verwijderen van anderen"
|
619 |
|
620 |
-
#: ../includes/class-ure-lib.php:
|
621 |
msgid "Delete published pages"
|
622 |
msgstr "Gepubliceerde pagina's verwijderen"
|
623 |
|
624 |
-
#: ../includes/class-ure-lib.php:
|
625 |
msgid "Delete posts"
|
626 |
msgstr "Berichten verwijderen"
|
627 |
|
628 |
-
#: ../includes/class-ure-lib.php:
|
629 |
msgid "Delete others posts"
|
630 |
msgstr "Verwijder berichten van anderen"
|
631 |
|
632 |
-
#: ../includes/class-ure-lib.php:
|
633 |
msgid "Delete published posts"
|
634 |
msgstr "Gepubliceerde berichten verwijderen"
|
635 |
|
636 |
-
#: ../includes/class-ure-lib.php:
|
637 |
msgid "Delete private posts"
|
638 |
msgstr "Privé berichten verwijderen"
|
639 |
|
640 |
-
#: ../includes/class-ure-lib.php:
|
641 |
msgid "Edit private posts"
|
642 |
msgstr "Privé berichten bewerken"
|
643 |
|
644 |
-
#: ../includes/class-ure-lib.php:
|
645 |
msgid "Read private posts"
|
646 |
msgstr "Privé berichten lezen"
|
647 |
|
648 |
-
#: ../includes/class-ure-lib.php:
|
649 |
msgid "Delete private pages"
|
650 |
msgstr "Privé berichten verwijderen"
|
651 |
|
652 |
-
#: ../includes/class-ure-lib.php:
|
653 |
msgid "Edit private pages"
|
654 |
msgstr "Privé pagina's bewerken"
|
655 |
|
656 |
-
#: ../includes/class-ure-lib.php:
|
657 |
msgid "Read private pages"
|
658 |
msgstr "Privé pagina's lezen"
|
659 |
|
660 |
-
#: ../includes/class-ure-lib.php:
|
661 |
msgid "Delete users"
|
662 |
msgstr "Gebruikers verwijderen"
|
663 |
|
664 |
-
#: ../includes/class-ure-lib.php:
|
665 |
msgid "Create users"
|
666 |
msgstr "Maak gebruikers aan"
|
667 |
|
668 |
-
#: ../includes/class-ure-lib.php:
|
669 |
msgid "Unfiltered upload"
|
670 |
msgstr "Ongefilterd uploaden"
|
671 |
|
672 |
-
#: ../includes/class-ure-lib.php:
|
673 |
msgid "Edit dashboard"
|
674 |
msgstr "Bewerk het dashboard"
|
675 |
|
676 |
-
#: ../includes/class-ure-lib.php:
|
677 |
msgid "Update plugins"
|
678 |
msgstr "Plugins updaten"
|
679 |
|
680 |
-
#: ../includes/class-ure-lib.php:
|
681 |
msgid "Delete plugins"
|
682 |
msgstr "Plugins verwijderen"
|
683 |
|
684 |
-
#: ../includes/class-ure-lib.php:
|
685 |
msgid "Install plugins"
|
686 |
msgstr "Plugins installeren"
|
687 |
|
688 |
-
#: ../includes/class-ure-lib.php:
|
689 |
msgid "Update themes"
|
690 |
msgstr "Thema's updaten"
|
691 |
|
692 |
-
#: ../includes/class-ure-lib.php:
|
693 |
msgid "Install themes"
|
694 |
msgstr "Thema's installeren"
|
695 |
|
696 |
-
#: ../includes/class-ure-lib.php:
|
697 |
msgid "Update core"
|
698 |
msgstr "Core updaten"
|
699 |
|
700 |
-
#: ../includes/class-ure-lib.php:
|
701 |
msgid "List users"
|
702 |
msgstr "Lijst van gebruikers aanmaken"
|
703 |
|
704 |
-
#: ../includes/class-ure-lib.php:
|
705 |
msgid "Remove users"
|
706 |
msgstr "Gebruikers verwijderen"
|
707 |
|
708 |
-
#: ../includes/class-ure-lib.php:
|
709 |
msgid "Add users"
|
710 |
msgstr "Gebruikers toevoegen"
|
711 |
|
712 |
-
#: ../includes/class-ure-lib.php:
|
713 |
msgid "Promote users"
|
714 |
msgstr "Gebruikers bevorderen"
|
715 |
|
716 |
-
#: ../includes/class-ure-lib.php:
|
717 |
msgid "Edit theme options"
|
718 |
msgstr "Thema opties bewerken"
|
719 |
|
720 |
-
#: ../includes/class-ure-lib.php:
|
721 |
msgid "Delete themes"
|
722 |
msgstr "Thema's verwijderen"
|
723 |
|
724 |
-
#: ../includes/class-ure-lib.php:
|
725 |
msgid "Export"
|
726 |
msgstr "Exporteren"
|
727 |
|
728 |
-
#: ../includes/class-ure-lib.php:
|
729 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
730 |
msgstr ""
|
731 |
"Fout: De naam van een recht mag alleen latijnse letters en cijfers bevatten!"
|
732 |
|
733 |
-
#: ../includes/class-ure-lib.php:
|
734 |
#, php-format
|
735 |
msgid "Capability %s is added successfully"
|
736 |
msgstr "Recht %s is succesvol toegevoegd"
|
737 |
|
738 |
-
#: ../includes/class-ure-lib.php:
|
739 |
#, php-format
|
740 |
msgid "Capability %s exists already"
|
741 |
msgstr "Recht %s bestaat al"
|
742 |
|
743 |
-
#: ../includes/class-ure-lib.php:
|
744 |
#, php-format
|
745 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
746 |
msgstr "Fout! U heeft geen toestemming om dit recht te verwijderen: % s!"
|
747 |
|
748 |
-
#: ../includes/class-ure-lib.php:
|
749 |
#, php-format
|
750 |
msgid "Capability %s is removed successfully"
|
751 |
msgstr "Recht %s is succesvol verwijderd"
|
752 |
|
753 |
-
#: ../includes/class-ure-lib.php:
|
754 |
msgid "Version:"
|
755 |
msgstr "Versie:"
|
756 |
|
757 |
-
#: ../includes/class-ure-lib.php:
|
758 |
msgid "Author's website"
|
759 |
msgstr "Website van de auteur"
|
760 |
|
761 |
-
#: ../includes/class-ure-lib.php:
|
762 |
msgid "Plugin webpage"
|
763 |
msgstr "Plugin webpagina "
|
764 |
|
765 |
-
#: ../includes/class-ure-lib.php:
|
766 |
msgid "Plugin download"
|
767 |
msgstr "Plugin download "
|
768 |
|
769 |
-
#: ../includes/class-ure-lib.php:
|
770 |
msgid "FAQ"
|
771 |
msgstr "FAQ"
|
772 |
|
773 |
-
#: ../includes/class-ure-lib.php:
|
774 |
msgid "None"
|
775 |
msgstr "Geen"
|
776 |
|
777 |
-
#: ../includes/class-ure-lib.php:
|
778 |
msgid "Delete All Unused Roles"
|
779 |
msgstr "Verwijder alle niet gebruikte Rollen"
|
780 |
|
781 |
-
#: ../includes/class-ure-lib.php:
|
782 |
msgid "— No role for this site —"
|
783 |
msgstr "— Geen rol voor deze website —"
|
784 |
|
785 |
-
#: ../includes/ure-user-edit.php:
|
786 |
msgid "Network Super Admin"
|
787 |
msgstr "Network Super Beheerder"
|
788 |
|
789 |
-
#: ../includes/ure-user-edit.php:
|
790 |
msgid "Change capabilities for user"
|
791 |
msgstr "Wijzig de rechten van deze gebruiker"
|
792 |
|
793 |
-
#: ../includes/ure-user-edit.php:
|
794 |
msgid "Primary Role:"
|
795 |
msgstr "Primaire Rol:"
|
796 |
|
797 |
-
#: ../includes/ure-user-edit.php:
|
798 |
msgid "bbPress Role:"
|
799 |
msgstr "bbPress Rol:"
|
800 |
|
801 |
-
#: ../includes/ure-user-edit.php:
|
802 |
msgid "Other Roles:"
|
803 |
msgstr "Andere Rollen:"
|
804 |
|
@@ -834,19 +842,26 @@ msgstr ""
|
|
834 |
"gebruiker met als reden compatibiliteits doeleinden met oude thema's en "
|
835 |
"plugins code. Het inschakelen van deze optie zal de afgekeurde rechten tonen."
|
836 |
|
837 |
-
#: ../includes/class-ure-screen-help.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
838 |
msgid ""
|
839 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
840 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
841 |
"users list with role \"No rights\" at the separate tab then."
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: ../includes/class-ure-screen-help.php:
|
845 |
#, fuzzy
|
846 |
msgid "Other default roles for new registered user"
|
847 |
msgstr "Andere standaard rollen voor nieuw geregistreerde gebruiker:"
|
848 |
|
849 |
-
#: ../includes/class-ure-screen-help.php:
|
850 |
#, fuzzy
|
851 |
msgid ""
|
852 |
"select roles below to assign them to the new user automatically as an "
|
@@ -858,14 +873,14 @@ msgstr ""
|
|
858 |
"functies op de site moeten bestaan, om toegewezen te kunnen worden aan nieuw "
|
859 |
"geregistreerde gebruikers."
|
860 |
|
861 |
-
#: ../includes/class-ure-screen-help.php:
|
862 |
#, fuzzy
|
863 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
864 |
msgstr ""
|
865 |
"Sta niet super beheerders toe om gebruikers aan te maken, te bewerken en te "
|
866 |
"verwijderen"
|
867 |
|
868 |
-
#: ../includes/class-ure-screen-help.php:
|
869 |
#, fuzzy
|
870 |
msgid ""
|
871 |
"Super administrator only may create, edit and delete users under WordPress "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-06 11:48+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
22 |
msgstr "User Rol Editor - Opties"
|
23 |
|
24 |
#: ../includes/settings-template.php:21
|
25 |
+
#: ../includes/class-user-role-editor.php:591
|
26 |
msgid "General"
|
27 |
msgstr "Algemeen"
|
28 |
|
29 |
#: ../includes/settings-template.php:26
|
30 |
+
#: ../includes/class-user-role-editor.php:597
|
31 |
msgid "Additional Modules"
|
32 |
msgstr "Aanvullende modules"
|
33 |
|
34 |
#: ../includes/settings-template.php:30
|
35 |
+
#: ../includes/class-user-role-editor.php:603
|
36 |
msgid "Default Roles"
|
37 |
msgstr "Standaard Rollen"
|
38 |
|
39 |
#: ../includes/settings-template.php:34
|
40 |
+
#: ../includes/class-user-role-editor.php:609
|
41 |
msgid "Multisite"
|
42 |
msgstr "Multisite"
|
43 |
|
56 |
msgstr "Toon de rechten in een leesbare vorm"
|
57 |
|
58 |
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
59 |
+
#: ../includes/ure-user-edit.php:64 ../includes/class-ure-screen-help.php:21
|
60 |
msgid "Show deprecated capabilities"
|
61 |
msgstr "Toon afgekeurde rechten"
|
62 |
|
63 |
+
#: ../includes/settings-template.php:77
|
64 |
+
#: ../includes/class-ure-screen-help.php:25
|
65 |
+
msgid "Edit user capabilities"
|
66 |
+
msgstr "Wijzigen gebruikelijke rechten"
|
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 "Opslaan"
|
72 |
|
73 |
+
#: ../includes/settings-template.php:111
|
74 |
+
#: ../includes/class-ure-screen-help.php:45
|
75 |
msgid "Count users without role"
|
76 |
msgstr "Het aantal Gebruikers zonder rol"
|
77 |
|
78 |
+
#: ../includes/settings-template.php:138
|
79 |
msgid "Primary default role: "
|
80 |
msgstr "Standaard rol:"
|
81 |
|
82 |
+
#: ../includes/settings-template.php:145
|
83 |
msgid "Other default roles for new registered user: "
|
84 |
msgstr "Andere standaard rollen voor nieuw geregistreerde gebruiker:"
|
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 "
|
93 |
"functies op de site moeten bestaan, om toegewezen te kunnen worden aan nieuw "
|
94 |
"geregistreerde gebruikers."
|
95 |
|
96 |
+
#: ../includes/settings-template.php:177
|
97 |
msgid "Allow non super administrators to create, edit, and delete users"
|
98 |
msgstr ""
|
99 |
"Sta niet super beheerders toe om gebruikers aan te maken, te bewerken en te "
|
100 |
"verwijderen"
|
101 |
|
102 |
+
#: ../includes/class-user-role-editor.php:233
|
103 |
msgid "Change role for users without role"
|
104 |
msgstr "Wijzig de rol van gebruikers zonder rol"
|
105 |
|
106 |
+
#: ../includes/class-user-role-editor.php:234
|
107 |
msgid "No rights"
|
108 |
msgstr "Geen rechten"
|
109 |
|
110 |
+
#: ../includes/class-user-role-editor.php:235
|
111 |
msgid "Provide new role"
|
112 |
msgstr "Creëer een nieuwe rol"
|
113 |
|
114 |
+
#: ../includes/class-user-role-editor.php:319
|
115 |
+
#: ../includes/class-user-role-editor.php:321
|
116 |
msgid "You do not have permission to edit this user."
|
117 |
msgstr "Je hebt toestemming om gegevens van deze gebruiker te wijzigen"
|
118 |
|
119 |
+
#: ../includes/class-user-role-editor.php:460
|
120 |
msgid "Capabilities"
|
121 |
msgstr "Rechten"
|
122 |
|
123 |
+
#: ../includes/class-user-role-editor.php:558
|
124 |
msgid "Settings"
|
125 |
msgstr "Instellingen"
|
126 |
|
127 |
+
#: ../includes/class-user-role-editor.php:569
|
128 |
+
#: ../includes/class-ure-lib.php:2529
|
129 |
msgid "Changelog"
|
130 |
msgstr "Changelog"
|
131 |
|
132 |
+
#: ../includes/class-user-role-editor.php:619
|
133 |
+
#: ../includes/class-user-role-editor.php:648
|
134 |
+
#: ../includes/class-user-role-editor.php:1029
|
135 |
+
#: ../includes/class-ure-lib.php:337
|
136 |
msgid "User Role Editor"
|
137 |
msgstr "User Rol Editor"
|
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 "User Role Editor opties zijn ge-update"
|
144 |
|
145 |
+
#: ../includes/class-user-role-editor.php:754
|
146 |
msgid "Default Roles are updated"
|
147 |
msgstr "Standaard Rollen zijn ge-update"
|
148 |
|
149 |
+
#: ../includes/class-user-role-editor.php:778
|
150 |
msgid ""
|
151 |
"You do not have sufficient permissions to manage options for User Role "
|
152 |
"Editor."
|
153 |
msgstr "Je hebt onvoldoende rechten om de User Role Editor te beheren."
|
154 |
|
155 |
+
#: ../includes/class-user-role-editor.php:850
|
156 |
+
#: ../includes/class-ure-lib.php:1697 ../includes/class-ure-lib.php:1950
|
157 |
+
#: ../includes/class-ure-lib.php:2066 ../includes/class-ure-lib.php:2114
|
158 |
+
#: ../includes/class-ure-lib.php:2350 ../includes/class-ure-lib.php:2395
|
159 |
msgid "Insufficient permissions to work with User Role Editor"
|
160 |
msgstr "Onvoldoende rechten om te werken met User Role Editor"
|
161 |
|
162 |
+
#: ../includes/class-user-role-editor.php:976
|
163 |
msgid "Select All"
|
164 |
msgstr "Alles selecteren"
|
165 |
|
166 |
+
#: ../includes/class-user-role-editor.php:977
|
167 |
msgid "Unselect All"
|
168 |
msgstr "Alles deselecteren"
|
169 |
|
170 |
+
#: ../includes/class-user-role-editor.php:978
|
171 |
msgid "Reverse"
|
172 |
msgstr "Omzetten"
|
173 |
|
174 |
+
#: ../includes/class-user-role-editor.php:979
|
175 |
msgid "Update"
|
176 |
msgstr "Update"
|
177 |
|
178 |
+
#: ../includes/class-user-role-editor.php:980
|
179 |
msgid "Please confirm permissions update"
|
180 |
msgstr "Bevestig toestemming om te mogen updaten"
|
181 |
|
182 |
+
#: ../includes/class-user-role-editor.php:981
|
183 |
msgid "Add New Role"
|
184 |
msgstr "Nieuwe Rol Toevoegen"
|
185 |
|
186 |
+
#: ../includes/class-user-role-editor.php:982
|
187 |
+
#: ../includes/class-user-role-editor.php:987
|
188 |
msgid "Rename Role"
|
189 |
msgstr "Hernoem Rol"
|
190 |
|
191 |
+
#: ../includes/class-user-role-editor.php:983
|
192 |
msgid " Role name (ID) can not be empty!"
|
193 |
msgstr "Rol naam (ID) kan niet leeg zijn!"
|
194 |
|
195 |
+
#: ../includes/class-user-role-editor.php:984
|
196 |
msgid ""
|
197 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
198 |
"only!"
|
200 |
"Rol naam (ID) moet latijnse letters, cijfers, koppeltekens of een underscore "
|
201 |
"bevatten!"
|
202 |
|
203 |
+
#: ../includes/class-user-role-editor.php:985
|
204 |
msgid ""
|
205 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
206 |
"it."
|
208 |
"WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse tekens "
|
209 |
"aan toe."
|
210 |
|
211 |
+
#: ../includes/class-user-role-editor.php:986
|
212 |
msgid "Add Role"
|
213 |
msgstr "Rol toevoegen"
|
214 |
|
215 |
+
#: ../includes/class-user-role-editor.php:988
|
216 |
msgid "Delete Role"
|
217 |
msgstr "Rol verwijderen"
|
218 |
|
219 |
+
#: ../includes/class-user-role-editor.php:989
|
220 |
msgid "Cancel"
|
221 |
msgstr "Annuleren"
|
222 |
|
223 |
+
#: ../includes/class-user-role-editor.php:990
|
224 |
msgid "Add Capability"
|
225 |
msgstr "Recht toevoegen"
|
226 |
|
227 |
+
#: ../includes/class-user-role-editor.php:991
|
228 |
+
#: ../includes/class-user-role-editor.php:1000
|
229 |
msgid "Delete Capability"
|
230 |
msgstr "Recht verwijderen"
|
231 |
|
232 |
+
#: ../includes/class-user-role-editor.php:992
|
233 |
msgid "Reset"
|
234 |
msgstr "Terugkeren naar de basisinstellingen"
|
235 |
|
236 |
+
#: ../includes/class-user-role-editor.php:993
|
237 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
238 |
msgstr ""
|
239 |
"OPGELET! Opnieuw instellen zal de basisinstellingen herstellen van WordPress "
|
240 |
"Core"
|
241 |
|
242 |
+
#: ../includes/class-user-role-editor.php:994
|
243 |
msgid ""
|
244 |
"If any plugins have changed capabilities in any way upon installation (such "
|
245 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
248 |
"installatie (zoals S2Member, WooCommerce, en nog veel meer), zullen deze "
|
249 |
"instellingen worden VERWIJDERD!"
|
250 |
|
251 |
+
#: ../includes/class-user-role-editor.php:995
|
252 |
msgid ""
|
253 |
"For more information on how to undo changes and restore plugin capabilities "
|
254 |
"go to"
|
256 |
"Voor meer informatie over hoe u wijzigingen ongedaan kunt maken en rechten "
|
257 |
"van de plugin kunt herstellen ga naar"
|
258 |
|
259 |
+
#: ../includes/class-user-role-editor.php:997
|
260 |
msgid "Continue?"
|
261 |
msgstr "Doorgaan?"
|
262 |
|
263 |
+
#: ../includes/class-user-role-editor.php:998
|
264 |
msgid "Default Role"
|
265 |
msgstr "Standaard Rol"
|
266 |
|
267 |
+
#: ../includes/class-user-role-editor.php:999
|
268 |
msgid "Set New Default Role"
|
269 |
msgstr "Maak een nieuwe standaard rol aan"
|
270 |
|
271 |
+
#: ../includes/class-user-role-editor.php:1001
|
272 |
msgid ""
|
273 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
274 |
"or other custom code"
|
276 |
"Waarschuwing! Wees voorzichtig - het verwijderen van een recht laat sommige "
|
277 |
"plugins of aangepaste code crashen"
|
278 |
|
279 |
+
#: ../includes/class-user-role-editor.php:1002
|
280 |
msgid " Capability name (ID) can not be empty!"
|
281 |
msgstr "Een recht naam (ID) kan niet leeg zijn!"
|
282 |
|
283 |
+
#: ../includes/class-user-role-editor.php:1003
|
284 |
msgid ""
|
285 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
286 |
"underscore only!"
|
288 |
"Naam van het recht (ID) moet Latijnse letters, cijfers, koppeltekens of "
|
289 |
"underscores bevatten!!"
|
290 |
|
291 |
+
#: ../includes/class-user-role-editor.php:1032
|
292 |
+
#: ../includes/class-user-role-editor.php:1065
|
293 |
msgid "Other Roles"
|
294 |
msgstr "Andere Rollen"
|
295 |
|
296 |
+
#: ../includes/class-user-role-editor.php:1046
|
297 |
msgid "Edit"
|
298 |
msgstr "Wijzigen"
|
299 |
|
301 |
msgid "Select Role and change its capabilities:"
|
302 |
msgstr "Selecteer de Rol en wijzig de rechten"
|
303 |
|
304 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
305 |
msgid "Show capabilities in human readable form"
|
306 |
msgstr "Toon rechten in leesbare vorm"
|
307 |
|
315 |
msgid "Apply to All Sites"
|
316 |
msgstr "Pas toe op alle Sites"
|
317 |
|
318 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
319 |
msgid "Core capabilities:"
|
320 |
msgstr "Core rechten:"
|
321 |
|
322 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
323 |
msgid "Quick filter:"
|
324 |
msgstr "Snel filter:"
|
325 |
|
326 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
327 |
msgid "Custom capabilities:"
|
328 |
msgstr "Gebruikelijke rechten:"
|
329 |
|
330 |
+
#: ../includes/class-ure-lib.php:245
|
331 |
msgid "Error: wrong request"
|
332 |
msgstr "Fout: verkeerde aanvraag"
|
333 |
|
334 |
+
#: ../includes/class-ure-lib.php:278 ../includes/class-ure-lib.php:289
|
335 |
msgid "Role name (ID): "
|
336 |
msgstr "Naam Rol (ID):"
|
337 |
|
338 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
339 |
msgid "Display Role Name: "
|
340 |
msgstr "Maak de Naam van de Rol zichtbaar:"
|
341 |
|
342 |
+
#: ../includes/class-ure-lib.php:282
|
343 |
msgid "Make copy of: "
|
344 |
msgstr "Maak een kopie van:"
|
345 |
|
346 |
+
#: ../includes/class-ure-lib.php:298
|
347 |
msgid "Select Role:"
|
348 |
msgstr "Selecteer een Rol:"
|
349 |
|
350 |
+
#: ../includes/class-ure-lib.php:313
|
351 |
msgid "Delete:"
|
352 |
msgstr "Verwijder:"
|
353 |
|
354 |
+
#: ../includes/class-ure-lib.php:320
|
355 |
msgid "Capability name (ID): "
|
356 |
msgstr "Naam recht (ID):"
|
357 |
|
358 |
+
#: ../includes/class-ure-lib.php:434
|
359 |
msgid "Error: "
|
360 |
msgstr "Fout:"
|
361 |
|
362 |
+
#: ../includes/class-ure-lib.php:434
|
363 |
msgid "Role"
|
364 |
msgstr "Rol"
|
365 |
|
366 |
+
#: ../includes/class-ure-lib.php:435
|
367 |
msgid "does not exist"
|
368 |
msgstr "Bestaat niet"
|
369 |
|
370 |
+
#: ../includes/class-ure-lib.php:478
|
371 |
msgid "Role is updated successfully"
|
372 |
msgstr "Rol is succesvol ge-update"
|
373 |
|
374 |
+
#: ../includes/class-ure-lib.php:480
|
375 |
msgid "Roles are updated for all network"
|
376 |
msgstr "Rollen van het gehele netwerk zijn ge-update"
|
377 |
|
378 |
+
#: ../includes/class-ure-lib.php:486
|
379 |
msgid "Error occured during role(s) update"
|
380 |
msgstr "Er is een fout opgetreden tijdens het updaten van de rol(len)"
|
381 |
|
382 |
+
#: ../includes/class-ure-lib.php:493
|
383 |
msgid "User capabilities are updated successfully"
|
384 |
msgstr "Rechten van de gebruiker zijn succesvol geupdate"
|
385 |
|
386 |
+
#: ../includes/class-ure-lib.php:498
|
387 |
msgid "Error occured during user update"
|
388 |
msgstr "Er is een fout opgetreden tijdens het updaten van de gebruiker"
|
389 |
|
390 |
+
#: ../includes/class-ure-lib.php:556
|
391 |
msgid "User Roles are restored to WordPress default values. "
|
392 |
msgstr "Gebruikers rollen worden hersteld naar WordPress standaardwaarden."
|
393 |
|
394 |
+
#: ../includes/class-ure-lib.php:1445
|
395 |
msgid "Help"
|
396 |
msgstr "Help"
|
397 |
|
398 |
+
#: ../includes/class-ure-lib.php:1913
|
399 |
msgid "Error is occur. Please check the log file."
|
400 |
msgstr "Er heeft zich een fout voorgedaan. Controleer het log bestand."
|
401 |
|
402 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
403 |
msgid ""
|
404 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
405 |
"only!"
|
407 |
"Fout: Een Rol (ID) moet Latijnse letters, cijfers, koppeltekens of "
|
408 |
"underscores bevatten!"
|
409 |
|
410 |
+
#: ../includes/class-ure-lib.php:1963 ../includes/class-ure-lib.php:2030
|
411 |
msgid ""
|
412 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
413 |
"characters to it."
|
415 |
"Fout: WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse "
|
416 |
"tekens aan toe."
|
417 |
|
418 |
+
#: ../includes/class-ure-lib.php:1978
|
419 |
#, php-format
|
420 |
msgid "Role %s exists already"
|
421 |
msgstr "Deze Rol %s bestaat al"
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:1993
|
424 |
msgid "Error is encountered during new role create operation"
|
425 |
msgstr "Er is een fout opgetreden tijdens het creëren van een nieuwe rol"
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:1995
|
428 |
#, php-format
|
429 |
msgid "Role %s is created successfully"
|
430 |
msgstr "De Rol %s werd succesvol gecreërd"
|
431 |
|
432 |
+
#: ../includes/class-ure-lib.php:2019
|
433 |
msgid "Error: Role ID is empty!"
|
434 |
msgstr "Fout: Rol ID is niet gevuld!"
|
435 |
|
436 |
+
#: ../includes/class-ure-lib.php:2037
|
437 |
msgid "Error: Empty role display name is not allowed."
|
438 |
msgstr "Fout: De weergave van een lege naam van een rol is niet toegestaan."
|
439 |
|
440 |
+
#: ../includes/class-ure-lib.php:2044
|
441 |
#, php-format
|
442 |
msgid "Role %s does not exists"
|
443 |
msgstr "Rol %s bestaat niet"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:2052
|
446 |
#, php-format
|
447 |
msgid "Role %s is renamed to %s successfully"
|
448 |
msgstr "Rol %s is succesvol vernoemd naar %s"
|
449 |
|
450 |
+
#: ../includes/class-ure-lib.php:2125
|
451 |
msgid "Error encountered during role delete operation"
|
452 |
msgstr "Er is een fout opgetreden bij het vewijderen van de rol"
|
453 |
|
454 |
+
#: ../includes/class-ure-lib.php:2127
|
455 |
msgid "Unused roles are deleted successfully"
|
456 |
msgstr "Ongebruikte rollen zijn succesvol verwijderd"
|
457 |
|
458 |
+
#: ../includes/class-ure-lib.php:2129
|
459 |
#, php-format
|
460 |
msgid "Role %s is deleted successfully"
|
461 |
msgstr "Rol %s succesvol verwijderd"
|
462 |
|
463 |
+
#: ../includes/class-ure-lib.php:2154
|
464 |
msgid "Error encountered during default role change operation"
|
465 |
msgstr "Er is een fout opgetreden tijdens het wijzigen van de standaard rol"
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:2160
|
468 |
#, php-format
|
469 |
msgid "Default role for new users is set to %s successfully"
|
470 |
msgstr "De standaard rol voor nieuwe gebruikers is met succes ingesteld op %s"
|
471 |
|
472 |
+
#: ../includes/class-ure-lib.php:2179
|
473 |
msgid "Editor"
|
474 |
msgstr "Redacteur"
|
475 |
|
476 |
+
#: ../includes/class-ure-lib.php:2180
|
477 |
msgid "Author"
|
478 |
msgstr "Editor"
|
479 |
|
480 |
+
#: ../includes/class-ure-lib.php:2181
|
481 |
msgid "Contributor"
|
482 |
msgstr "Inzender"
|
483 |
|
484 |
+
#: ../includes/class-ure-lib.php:2182
|
485 |
msgid "Subscriber"
|
486 |
msgstr "Abonnee"
|
487 |
|
488 |
+
#: ../includes/class-ure-lib.php:2184
|
489 |
msgid "Switch themes"
|
490 |
msgstr "Van thema wisselen"
|
491 |
|
492 |
+
#: ../includes/class-ure-lib.php:2185
|
493 |
msgid "Edit themes"
|
494 |
msgstr "Thema's bewerken"
|
495 |
|
496 |
+
#: ../includes/class-ure-lib.php:2186
|
497 |
msgid "Activate plugins"
|
498 |
msgstr "Plugins activeren"
|
499 |
|
500 |
+
#: ../includes/class-ure-lib.php:2187
|
501 |
msgid "Edit plugins"
|
502 |
msgstr "Plugins bewerken"
|
503 |
|
504 |
+
#: ../includes/class-ure-lib.php:2188
|
505 |
msgid "Edit users"
|
506 |
msgstr "Gebruikers bewerken"
|
507 |
|
508 |
+
#: ../includes/class-ure-lib.php:2189
|
509 |
msgid "Edit files"
|
510 |
msgstr "Bestanden bewerken"
|
511 |
|
512 |
+
#: ../includes/class-ure-lib.php:2190
|
513 |
msgid "Manage options"
|
514 |
msgstr "Opties beheren"
|
515 |
|
516 |
+
#: ../includes/class-ure-lib.php:2191
|
517 |
msgid "Moderate comments"
|
518 |
msgstr "Reacties beheren"
|
519 |
|
520 |
+
#: ../includes/class-ure-lib.php:2192
|
521 |
msgid "Manage categories"
|
522 |
msgstr "Categorieën beheren"
|
523 |
|
524 |
+
#: ../includes/class-ure-lib.php:2193
|
525 |
msgid "Manage links"
|
526 |
msgstr "Links beheren"
|
527 |
|
528 |
+
#: ../includes/class-ure-lib.php:2194
|
529 |
msgid "Upload files"
|
530 |
msgstr "Bestanden uploaden"
|
531 |
|
532 |
+
#: ../includes/class-ure-lib.php:2195
|
533 |
msgid "Import"
|
534 |
msgstr "Importeren"
|
535 |
|
536 |
+
#: ../includes/class-ure-lib.php:2196
|
537 |
msgid "Unfiltered html"
|
538 |
msgstr "Ongefilterd html"
|
539 |
|
540 |
+
#: ../includes/class-ure-lib.php:2197
|
541 |
msgid "Edit posts"
|
542 |
msgstr "Berichten bewerken"
|
543 |
|
544 |
+
#: ../includes/class-ure-lib.php:2198
|
545 |
msgid "Edit others posts"
|
546 |
msgstr "Berichten van anderen bewerken"
|
547 |
|
548 |
+
#: ../includes/class-ure-lib.php:2199
|
549 |
msgid "Edit published posts"
|
550 |
msgstr "Gepubliceerde berichten bewerken"
|
551 |
|
552 |
+
#: ../includes/class-ure-lib.php:2200
|
553 |
msgid "Publish posts"
|
554 |
msgstr "Berichten publiceren"
|
555 |
|
556 |
+
#: ../includes/class-ure-lib.php:2201
|
557 |
msgid "Edit pages"
|
558 |
msgstr "Pagina's bewerken"
|
559 |
|
560 |
+
#: ../includes/class-ure-lib.php:2202
|
561 |
msgid "Read"
|
562 |
msgstr "Lezen"
|
563 |
|
564 |
+
#: ../includes/class-ure-lib.php:2203
|
565 |
msgid "Level 10"
|
566 |
msgstr "Level 10"
|
567 |
|
568 |
+
#: ../includes/class-ure-lib.php:2204
|
569 |
msgid "Level 9"
|
570 |
msgstr "Level 9"
|
571 |
|
572 |
+
#: ../includes/class-ure-lib.php:2205
|
573 |
msgid "Level 8"
|
574 |
msgstr "Level 8"
|
575 |
|
576 |
+
#: ../includes/class-ure-lib.php:2206
|
577 |
msgid "Level 7"
|
578 |
msgstr "Level 7"
|
579 |
|
580 |
+
#: ../includes/class-ure-lib.php:2207
|
581 |
msgid "Level 6"
|
582 |
msgstr "Level 6"
|
583 |
|
584 |
+
#: ../includes/class-ure-lib.php:2208
|
585 |
msgid "Level 5"
|
586 |
msgstr "Level 5"
|
587 |
|
588 |
+
#: ../includes/class-ure-lib.php:2209
|
589 |
msgid "Level 4"
|
590 |
msgstr "Level 4"
|
591 |
|
592 |
+
#: ../includes/class-ure-lib.php:2210
|
593 |
msgid "Level 3"
|
594 |
msgstr "Level 3"
|
595 |
|
596 |
+
#: ../includes/class-ure-lib.php:2211
|
597 |
msgid "Level 2"
|
598 |
msgstr "Level 2"
|
599 |
|
600 |
+
#: ../includes/class-ure-lib.php:2212
|
601 |
msgid "Level 1"
|
602 |
msgstr "Level 1"
|
603 |
|
604 |
+
#: ../includes/class-ure-lib.php:2213
|
605 |
msgid "Level 0"
|
606 |
msgstr "Level 0"
|
607 |
|
608 |
+
#: ../includes/class-ure-lib.php:2214
|
609 |
msgid "Edit others pages"
|
610 |
msgstr "Pagina's van anderen bewerken"
|
611 |
|
612 |
+
#: ../includes/class-ure-lib.php:2215
|
613 |
msgid "Edit published pages"
|
614 |
msgstr "Gepubliceerde pagina's bewerken"
|
615 |
|
616 |
+
#: ../includes/class-ure-lib.php:2216
|
617 |
msgid "Publish pages"
|
618 |
msgstr "Pagina's publiceren"
|
619 |
|
620 |
+
#: ../includes/class-ure-lib.php:2217
|
621 |
msgid "Delete pages"
|
622 |
msgstr "Pagina's verwijderen"
|
623 |
|
624 |
+
#: ../includes/class-ure-lib.php:2218
|
625 |
msgid "Delete others pages"
|
626 |
msgstr "Pagina's verwijderen van anderen"
|
627 |
|
628 |
+
#: ../includes/class-ure-lib.php:2219
|
629 |
msgid "Delete published pages"
|
630 |
msgstr "Gepubliceerde pagina's verwijderen"
|
631 |
|
632 |
+
#: ../includes/class-ure-lib.php:2220
|
633 |
msgid "Delete posts"
|
634 |
msgstr "Berichten verwijderen"
|
635 |
|
636 |
+
#: ../includes/class-ure-lib.php:2221
|
637 |
msgid "Delete others posts"
|
638 |
msgstr "Verwijder berichten van anderen"
|
639 |
|
640 |
+
#: ../includes/class-ure-lib.php:2222
|
641 |
msgid "Delete published posts"
|
642 |
msgstr "Gepubliceerde berichten verwijderen"
|
643 |
|
644 |
+
#: ../includes/class-ure-lib.php:2223
|
645 |
msgid "Delete private posts"
|
646 |
msgstr "Privé berichten verwijderen"
|
647 |
|
648 |
+
#: ../includes/class-ure-lib.php:2224
|
649 |
msgid "Edit private posts"
|
650 |
msgstr "Privé berichten bewerken"
|
651 |
|
652 |
+
#: ../includes/class-ure-lib.php:2225
|
653 |
msgid "Read private posts"
|
654 |
msgstr "Privé berichten lezen"
|
655 |
|
656 |
+
#: ../includes/class-ure-lib.php:2226
|
657 |
msgid "Delete private pages"
|
658 |
msgstr "Privé berichten verwijderen"
|
659 |
|
660 |
+
#: ../includes/class-ure-lib.php:2227
|
661 |
msgid "Edit private pages"
|
662 |
msgstr "Privé pagina's bewerken"
|
663 |
|
664 |
+
#: ../includes/class-ure-lib.php:2228
|
665 |
msgid "Read private pages"
|
666 |
msgstr "Privé pagina's lezen"
|
667 |
|
668 |
+
#: ../includes/class-ure-lib.php:2229
|
669 |
msgid "Delete users"
|
670 |
msgstr "Gebruikers verwijderen"
|
671 |
|
672 |
+
#: ../includes/class-ure-lib.php:2230
|
673 |
msgid "Create users"
|
674 |
msgstr "Maak gebruikers aan"
|
675 |
|
676 |
+
#: ../includes/class-ure-lib.php:2231
|
677 |
msgid "Unfiltered upload"
|
678 |
msgstr "Ongefilterd uploaden"
|
679 |
|
680 |
+
#: ../includes/class-ure-lib.php:2232
|
681 |
msgid "Edit dashboard"
|
682 |
msgstr "Bewerk het dashboard"
|
683 |
|
684 |
+
#: ../includes/class-ure-lib.php:2233
|
685 |
msgid "Update plugins"
|
686 |
msgstr "Plugins updaten"
|
687 |
|
688 |
+
#: ../includes/class-ure-lib.php:2234
|
689 |
msgid "Delete plugins"
|
690 |
msgstr "Plugins verwijderen"
|
691 |
|
692 |
+
#: ../includes/class-ure-lib.php:2235
|
693 |
msgid "Install plugins"
|
694 |
msgstr "Plugins installeren"
|
695 |
|
696 |
+
#: ../includes/class-ure-lib.php:2236
|
697 |
msgid "Update themes"
|
698 |
msgstr "Thema's updaten"
|
699 |
|
700 |
+
#: ../includes/class-ure-lib.php:2237
|
701 |
msgid "Install themes"
|
702 |
msgstr "Thema's installeren"
|
703 |
|
704 |
+
#: ../includes/class-ure-lib.php:2238
|
705 |
msgid "Update core"
|
706 |
msgstr "Core updaten"
|
707 |
|
708 |
+
#: ../includes/class-ure-lib.php:2239
|
709 |
msgid "List users"
|
710 |
msgstr "Lijst van gebruikers aanmaken"
|
711 |
|
712 |
+
#: ../includes/class-ure-lib.php:2240
|
713 |
msgid "Remove users"
|
714 |
msgstr "Gebruikers verwijderen"
|
715 |
|
716 |
+
#: ../includes/class-ure-lib.php:2241
|
717 |
msgid "Add users"
|
718 |
msgstr "Gebruikers toevoegen"
|
719 |
|
720 |
+
#: ../includes/class-ure-lib.php:2242
|
721 |
msgid "Promote users"
|
722 |
msgstr "Gebruikers bevorderen"
|
723 |
|
724 |
+
#: ../includes/class-ure-lib.php:2243
|
725 |
msgid "Edit theme options"
|
726 |
msgstr "Thema opties bewerken"
|
727 |
|
728 |
+
#: ../includes/class-ure-lib.php:2244
|
729 |
msgid "Delete themes"
|
730 |
msgstr "Thema's verwijderen"
|
731 |
|
732 |
+
#: ../includes/class-ure-lib.php:2245
|
733 |
msgid "Export"
|
734 |
msgstr "Exporteren"
|
735 |
|
736 |
+
#: ../includes/class-ure-lib.php:2358
|
737 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
738 |
msgstr ""
|
739 |
"Fout: De naam van een recht mag alleen latijnse letters en cijfers bevatten!"
|
740 |
|
741 |
+
#: ../includes/class-ure-lib.php:2371
|
742 |
#, php-format
|
743 |
msgid "Capability %s is added successfully"
|
744 |
msgstr "Recht %s is succesvol toegevoegd"
|
745 |
|
746 |
+
#: ../includes/class-ure-lib.php:2373
|
747 |
#, php-format
|
748 |
msgid "Capability %s exists already"
|
749 |
msgstr "Recht %s bestaat al"
|
750 |
|
751 |
+
#: ../includes/class-ure-lib.php:2402
|
752 |
#, php-format
|
753 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
754 |
msgstr "Fout! U heeft geen toestemming om dit recht te verwijderen: % s!"
|
755 |
|
756 |
+
#: ../includes/class-ure-lib.php:2421
|
757 |
#, php-format
|
758 |
msgid "Capability %s is removed successfully"
|
759 |
msgstr "Recht %s is succesvol verwijderd"
|
760 |
|
761 |
+
#: ../includes/class-ure-lib.php:2525
|
762 |
msgid "Version:"
|
763 |
msgstr "Versie:"
|
764 |
|
765 |
+
#: ../includes/class-ure-lib.php:2526
|
766 |
msgid "Author's website"
|
767 |
msgstr "Website van de auteur"
|
768 |
|
769 |
+
#: ../includes/class-ure-lib.php:2527
|
770 |
msgid "Plugin webpage"
|
771 |
msgstr "Plugin webpagina "
|
772 |
|
773 |
+
#: ../includes/class-ure-lib.php:2528
|
774 |
msgid "Plugin download"
|
775 |
msgstr "Plugin download "
|
776 |
|
777 |
+
#: ../includes/class-ure-lib.php:2530
|
778 |
msgid "FAQ"
|
779 |
msgstr "FAQ"
|
780 |
|
781 |
+
#: ../includes/class-ure-lib.php:2578
|
782 |
msgid "None"
|
783 |
msgstr "Geen"
|
784 |
|
785 |
+
#: ../includes/class-ure-lib.php:2605
|
786 |
msgid "Delete All Unused Roles"
|
787 |
msgstr "Verwijder alle niet gebruikte Rollen"
|
788 |
|
789 |
+
#: ../includes/class-ure-lib.php:2629
|
790 |
msgid "— No role for this site —"
|
791 |
msgstr "— Geen rol voor deze website —"
|
792 |
|
793 |
+
#: ../includes/ure-user-edit.php:32
|
794 |
msgid "Network Super Admin"
|
795 |
msgstr "Network Super Beheerder"
|
796 |
|
797 |
+
#: ../includes/ure-user-edit.php:35
|
798 |
msgid "Change capabilities for user"
|
799 |
msgstr "Wijzig de rechten van deze gebruiker"
|
800 |
|
801 |
+
#: ../includes/ure-user-edit.php:72
|
802 |
msgid "Primary Role:"
|
803 |
msgstr "Primaire Rol:"
|
804 |
|
805 |
+
#: ../includes/ure-user-edit.php:82
|
806 |
msgid "bbPress Role:"
|
807 |
msgstr "bbPress Rol:"
|
808 |
|
809 |
+
#: ../includes/ure-user-edit.php:92
|
810 |
msgid "Other Roles:"
|
811 |
msgstr "Andere Rollen:"
|
812 |
|
842 |
"gebruiker met als reden compatibiliteits doeleinden met oude thema's en "
|
843 |
"plugins code. Het inschakelen van deze optie zal de afgekeurde rechten tonen."
|
844 |
|
845 |
+
#: ../includes/class-ure-screen-help.php:26
|
846 |
+
msgid ""
|
847 |
+
"If turned off - capabilities section of selected user is shown in readonly "
|
848 |
+
"mode. Administrator can not assign capabilities to the user directly. He "
|
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 "
|
855 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
856 |
"users list with role \"No rights\" at the separate tab then."
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: ../includes/class-ure-screen-help.php:63
|
860 |
#, fuzzy
|
861 |
msgid "Other default roles for new registered user"
|
862 |
msgstr "Andere standaard rollen voor nieuw geregistreerde gebruiker:"
|
863 |
|
864 |
+
#: ../includes/class-ure-screen-help.php:64
|
865 |
#, fuzzy
|
866 |
msgid ""
|
867 |
"select roles below to assign them to the new user automatically as an "
|
873 |
"functies op de site moeten bestaan, om toegewezen te kunnen worden aan nieuw "
|
874 |
"geregistreerde gebruikers."
|
875 |
|
876 |
+
#: ../includes/class-ure-screen-help.php:82
|
877 |
#, fuzzy
|
878 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
879 |
msgstr ""
|
880 |
"Sta niet super beheerders toe om gebruikers aan te maken, te bewerken en te "
|
881 |
"verwijderen"
|
882 |
|
883 |
+
#: ../includes/class-ure-screen-help.php:83
|
884 |
#, fuzzy
|
885 |
msgid ""
|
886 |
"Super administrator only may create, edit and delete users under WordPress "
|
lang/ure-ru_RU.mo
CHANGED
Binary file
|
lang/ure-ru_RU.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -21,22 +21,22 @@ msgid "User Role Editor - Options"
|
|
21 |
msgstr "Редактор ролей пользователей - Опции"
|
22 |
|
23 |
#: ../includes/settings-template.php:21
|
24 |
-
#: ../includes/class-user-role-editor.php:
|
25 |
msgid "General"
|
26 |
msgstr "Общие"
|
27 |
|
28 |
#: ../includes/settings-template.php:26
|
29 |
-
#: ../includes/class-user-role-editor.php:
|
30 |
msgid "Additional Modules"
|
31 |
msgstr "Дополнительные модули"
|
32 |
|
33 |
#: ../includes/settings-template.php:30
|
34 |
-
#: ../includes/class-user-role-editor.php:
|
35 |
msgid "Default Roles"
|
36 |
msgstr "Роли по-умолчанию"
|
37 |
|
38 |
#: ../includes/settings-template.php:34
|
39 |
-
#: ../includes/class-user-role-editor.php:
|
40 |
msgid "Multisite"
|
41 |
msgstr "Многосайтовые"
|
42 |
|
@@ -55,29 +55,34 @@ 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:
|
59 |
msgid "Show deprecated capabilities"
|
60 |
msgstr "Показать устаревшие разрешения"
|
61 |
|
62 |
-
#: ../includes/settings-template.php:
|
63 |
-
#: ../includes/
|
|
|
|
|
|
|
|
|
|
|
64 |
msgid "Save"
|
65 |
msgstr "Сохранить"
|
66 |
|
67 |
-
#: ../includes/settings-template.php:
|
68 |
-
#: ../includes/class-ure-screen-help.php:
|
69 |
msgid "Count users without role"
|
70 |
msgstr "Подсчёт пользователей без роли"
|
71 |
|
72 |
-
#: ../includes/settings-template.php:
|
73 |
msgid "Primary default role: "
|
74 |
msgstr "Основная роль по-умолчанию:"
|
75 |
|
76 |
-
#: ../includes/settings-template.php:
|
77 |
msgid "Other default roles for new registered user: "
|
78 |
msgstr "Другие роли по-умолчанию для вновь зарегистрированного пользователя:"
|
79 |
|
80 |
-
#: ../includes/settings-template.php:
|
81 |
msgid ""
|
82 |
"Note for multisite environment: take into account that other default roles "
|
83 |
"should exist at the site, in order to be assigned to the new registered "
|
@@ -87,102 +92,105 @@ msgstr ""
|
|
87 |
"вновь зарегистрированному пользователю дополнительных ролей по-умолчанию эти "
|
88 |
"роли должны существовать на этом сайте."
|
89 |
|
90 |
-
#: ../includes/settings-template.php:
|
91 |
msgid "Allow non super administrators to create, edit, and delete users"
|
92 |
msgstr ""
|
93 |
"Разрешить простым администраторам создавать, изменять, удалять пользователей"
|
94 |
|
95 |
-
#: ../includes/class-user-role-editor.php:
|
96 |
msgid "Change role for users without role"
|
97 |
msgstr "Изменить роль для пользователей без роли"
|
98 |
|
99 |
-
#: ../includes/class-user-role-editor.php:
|
100 |
msgid "No rights"
|
101 |
msgstr "Нет прав"
|
102 |
|
103 |
-
#: ../includes/class-user-role-editor.php:
|
104 |
msgid "Provide new role"
|
105 |
msgstr "Выберите новую роль"
|
106 |
|
107 |
-
#: ../includes/class-user-role-editor.php:
|
108 |
-
#: ../includes/class-user-role-editor.php:
|
109 |
msgid "You do not have permission to edit this user."
|
110 |
msgstr "Нет прав на редактирование этого пользователя"
|
111 |
|
112 |
-
#: ../includes/class-user-role-editor.php:
|
113 |
msgid "Capabilities"
|
114 |
msgstr "Возможности"
|
115 |
|
116 |
-
#: ../includes/class-user-role-editor.php:
|
117 |
msgid "Settings"
|
118 |
msgstr "Установки"
|
119 |
|
120 |
-
#: ../includes/class-user-role-editor.php:
|
121 |
-
#: ../includes/class-ure-lib.php:
|
122 |
msgid "Changelog"
|
123 |
msgstr "Журнал изменений"
|
124 |
|
125 |
-
#: ../includes/class-user-role-editor.php:
|
126 |
-
#: ../includes/class-user-role-editor.php:
|
127 |
-
#: ../includes/class-user-role-editor.php:
|
128 |
-
#: ../includes/class-ure-lib.php:
|
129 |
msgid "User Role Editor"
|
130 |
msgstr "Редактор ролей пользователей"
|
131 |
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
-
#: ../includes/class-user-role-editor.php:
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
msgid "User Role Editor options are updated"
|
136 |
msgstr "Изменения в настройках Редактора ролей пользователей сохранены"
|
137 |
|
138 |
-
#: ../includes/class-user-role-editor.php:
|
139 |
msgid "Default Roles are updated"
|
140 |
msgstr "Изменения в роли по-умолчанию сохранены"
|
141 |
|
142 |
-
#: ../includes/class-user-role-editor.php:
|
143 |
msgid ""
|
144 |
"You do not have sufficient permissions to manage options for User Role "
|
145 |
"Editor."
|
146 |
msgstr "У вас нет прав на изменение настроек плагина"
|
147 |
|
148 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
149 |
msgid "Insufficient permissions to work with User Role Editor"
|
150 |
msgstr "Не достаточно прав для работы с User Role Editor"
|
151 |
|
152 |
-
#: ../includes/class-user-role-editor.php:
|
153 |
msgid "Select All"
|
154 |
msgstr "Выбрать все"
|
155 |
|
156 |
-
#: ../includes/class-user-role-editor.php:
|
157 |
msgid "Unselect All"
|
158 |
msgstr "Исключить все"
|
159 |
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid "Reverse"
|
162 |
msgstr "Обратить"
|
163 |
|
164 |
-
#: ../includes/class-user-role-editor.php:
|
165 |
msgid "Update"
|
166 |
msgstr "Сохранить"
|
167 |
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
msgid "Please confirm permissions update"
|
170 |
msgstr "Пожалуйста, подтвердите продолжение "
|
171 |
|
172 |
-
#: ../includes/class-user-role-editor.php:
|
173 |
msgid "Add New Role"
|
174 |
msgstr "Добавить новую роль"
|
175 |
|
176 |
-
#: ../includes/class-user-role-editor.php:
|
177 |
-
#: ../includes/class-user-role-editor.php:
|
178 |
msgid "Rename Role"
|
179 |
msgstr "Переименовать роль"
|
180 |
|
181 |
-
#: ../includes/class-user-role-editor.php:
|
182 |
msgid " Role name (ID) can not be empty!"
|
183 |
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
184 |
|
185 |
-
#: ../includes/class-user-role-editor.php:
|
186 |
msgid ""
|
187 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
188 |
"only!"
|
@@ -190,7 +198,7 @@ msgstr ""
|
|
190 |
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
191 |
"тире и знак подчеркивания"
|
192 |
|
193 |
-
#: ../includes/class-user-role-editor.php:
|
194 |
msgid ""
|
195 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
196 |
"it."
|
@@ -198,38 +206,38 @@ msgstr ""
|
|
198 |
"WordPress не поддерживает цифровые идентификаторы ролей. Начните имя роли с "
|
199 |
"латинских символов."
|
200 |
|
201 |
-
#: ../includes/class-user-role-editor.php:
|
202 |
msgid "Add Role"
|
203 |
msgstr "Добавить роль"
|
204 |
|
205 |
-
#: ../includes/class-user-role-editor.php:
|
206 |
msgid "Delete Role"
|
207 |
msgstr "Удалить роль"
|
208 |
|
209 |
-
#: ../includes/class-user-role-editor.php:
|
210 |
msgid "Cancel"
|
211 |
msgstr "Отмена"
|
212 |
|
213 |
-
#: ../includes/class-user-role-editor.php:
|
214 |
msgid "Add Capability"
|
215 |
msgstr "Новая возм."
|
216 |
|
217 |
-
#: ../includes/class-user-role-editor.php:
|
218 |
-
#: ../includes/class-user-role-editor.php:
|
219 |
msgid "Delete Capability"
|
220 |
msgstr "Удалить возм."
|
221 |
|
222 |
-
#: ../includes/class-user-role-editor.php:
|
223 |
msgid "Reset"
|
224 |
msgstr "Сброс"
|
225 |
|
226 |
-
#: ../includes/class-user-role-editor.php:
|
227 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
228 |
msgstr ""
|
229 |
"ВНИМАНИЕ! Очистка восстановит роли по состоянию на момент установки "
|
230 |
"WordPress."
|
231 |
|
232 |
-
#: ../includes/class-user-role-editor.php:
|
233 |
msgid ""
|
234 |
"If any plugins have changed capabilities in any way upon installation (such "
|
235 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -237,7 +245,7 @@ msgstr ""
|
|
237 |
"Если плагины изменяли пользовательские права после установки WordPress "
|
238 |
"(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
|
239 |
|
240 |
-
#: ../includes/class-user-role-editor.php:
|
241 |
msgid ""
|
242 |
"For more information on how to undo changes and restore plugin capabilities "
|
243 |
"go to"
|
@@ -245,19 +253,19 @@ msgstr ""
|
|
245 |
"Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
|
246 |
"для плагинов, можно узнать здесь"
|
247 |
|
248 |
-
#: ../includes/class-user-role-editor.php:
|
249 |
msgid "Continue?"
|
250 |
msgstr "Продолжить?"
|
251 |
|
252 |
-
#: ../includes/class-user-role-editor.php:
|
253 |
msgid "Default Role"
|
254 |
msgstr "Роль по-умолчанию"
|
255 |
|
256 |
-
#: ../includes/class-user-role-editor.php:
|
257 |
msgid "Set New Default Role"
|
258 |
msgstr "Установить"
|
259 |
|
260 |
-
#: ../includes/class-user-role-editor.php:
|
261 |
msgid ""
|
262 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
263 |
"or other custom code"
|
@@ -265,11 +273,11 @@ msgstr ""
|
|
265 |
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
266 |
"прекращеню работы одного из плагинов или другого кода."
|
267 |
|
268 |
-
#: ../includes/class-user-role-editor.php:
|
269 |
msgid " Capability name (ID) can not be empty!"
|
270 |
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
271 |
|
272 |
-
#: ../includes/class-user-role-editor.php:
|
273 |
msgid ""
|
274 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
275 |
"underscore only!"
|
@@ -277,12 +285,12 @@ msgstr ""
|
|
277 |
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
278 |
"цифры, знаки подчеркивания"
|
279 |
|
280 |
-
#: ../includes/class-user-role-editor.php:
|
281 |
-
#: ../includes/class-user-role-editor.php:
|
282 |
msgid "Other Roles"
|
283 |
msgstr "Другие роли"
|
284 |
|
285 |
-
#: ../includes/class-user-role-editor.php:
|
286 |
msgid "Edit"
|
287 |
msgstr "Изменить"
|
288 |
|
@@ -290,7 +298,7 @@ msgstr "Изменить"
|
|
290 |
msgid "Select Role and change its capabilities:"
|
291 |
msgstr "Выбери роль и измени права доступа"
|
292 |
|
293 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:
|
294 |
msgid "Show capabilities in human readable form"
|
295 |
msgstr "Показ возможностей в читабельной форме"
|
296 |
|
@@ -302,91 +310,91 @@ msgstr "Если включено, применить ко всем сайтам
|
|
302 |
msgid "Apply to All Sites"
|
303 |
msgstr "Применить ко всем сайтам"
|
304 |
|
305 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:
|
306 |
msgid "Core capabilities:"
|
307 |
msgstr "Возможности ядра:"
|
308 |
|
309 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:
|
310 |
msgid "Quick filter:"
|
311 |
msgstr "Фильтр:"
|
312 |
|
313 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:
|
314 |
msgid "Custom capabilities:"
|
315 |
msgstr "Дополнительные возможности :"
|
316 |
|
317 |
-
#: ../includes/class-ure-lib.php:
|
318 |
msgid "Error: wrong request"
|
319 |
msgstr "Ошибка: неверный запрос"
|
320 |
|
321 |
-
#: ../includes/class-ure-lib.php:
|
322 |
msgid "Role name (ID): "
|
323 |
msgstr "Идентификатор роли (ID):"
|
324 |
|
325 |
-
#: ../includes/class-ure-lib.php:
|
326 |
msgid "Display Role Name: "
|
327 |
msgstr "Наименование роли:"
|
328 |
|
329 |
-
#: ../includes/class-ure-lib.php:
|
330 |
msgid "Make copy of: "
|
331 |
msgstr "Создать копию из:"
|
332 |
|
333 |
-
#: ../includes/class-ure-lib.php:
|
334 |
msgid "Select Role:"
|
335 |
msgstr "Выбери Роль:"
|
336 |
|
337 |
-
#: ../includes/class-ure-lib.php:
|
338 |
msgid "Delete:"
|
339 |
msgstr "Удалить"
|
340 |
|
341 |
-
#: ../includes/class-ure-lib.php:
|
342 |
msgid "Capability name (ID): "
|
343 |
msgstr "Идентификатор (ID):"
|
344 |
|
345 |
-
#: ../includes/class-ure-lib.php:
|
346 |
msgid "Error: "
|
347 |
msgstr "Ошибка:"
|
348 |
|
349 |
-
#: ../includes/class-ure-lib.php:
|
350 |
msgid "Role"
|
351 |
msgstr "Роль"
|
352 |
|
353 |
-
#: ../includes/class-ure-lib.php:
|
354 |
msgid "does not exist"
|
355 |
msgstr "не существует"
|
356 |
|
357 |
-
#: ../includes/class-ure-lib.php:
|
358 |
msgid "Role is updated successfully"
|
359 |
msgstr "Роль изменена успешно"
|
360 |
|
361 |
-
#: ../includes/class-ure-lib.php:
|
362 |
msgid "Roles are updated for all network"
|
363 |
msgstr "Роли изменены для всей сети"
|
364 |
|
365 |
-
#: ../includes/class-ure-lib.php:
|
366 |
msgid "Error occured during role(s) update"
|
367 |
msgstr "При изменении роли произошла ошибка"
|
368 |
|
369 |
-
#: ../includes/class-ure-lib.php:
|
370 |
msgid "User capabilities are updated successfully"
|
371 |
msgstr "Права пользователя изменены успешно"
|
372 |
|
373 |
-
#: ../includes/class-ure-lib.php:
|
374 |
msgid "Error occured during user update"
|
375 |
msgstr "При изменении прав пользователя произошла ошибка "
|
376 |
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
msgid "User Roles are restored to WordPress default values. "
|
379 |
msgstr "Роли возвращены к начальному состоянию"
|
380 |
|
381 |
-
#: ../includes/class-ure-lib.php:
|
382 |
msgid "Help"
|
383 |
msgstr "Помощь"
|
384 |
|
385 |
-
#: ../includes/class-ure-lib.php:
|
386 |
msgid "Error is occur. Please check the log file."
|
387 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
388 |
|
389 |
-
#: ../includes/class-ure-lib.php:
|
390 |
msgid ""
|
391 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
392 |
"only!"
|
@@ -394,7 +402,7 @@ msgstr ""
|
|
394 |
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
395 |
"цифры, знак подчеркивания и дефис."
|
396 |
|
397 |
-
#: ../includes/class-ure-lib.php:
|
398 |
msgid ""
|
399 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
400 |
"characters to it."
|
@@ -402,397 +410,397 @@ msgstr ""
|
|
402 |
"Ошибка: WordPress не поддерживает цифровые идентификаторы ролей. Начните имя "
|
403 |
"роли с латинских символов."
|
404 |
|
405 |
-
#: ../includes/class-ure-lib.php:
|
406 |
#, php-format
|
407 |
msgid "Role %s exists already"
|
408 |
msgstr "Роль %s уже существует"
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
msgid "Error is encountered during new role create operation"
|
412 |
msgstr "Произошла ошибка при создании новой роли"
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
415 |
#, php-format
|
416 |
msgid "Role %s is created successfully"
|
417 |
msgstr "Роль %s создана успешно"
|
418 |
|
419 |
-
#: ../includes/class-ure-lib.php:
|
420 |
msgid "Error: Role ID is empty!"
|
421 |
msgstr "Ошибка: пустой идентификатор (ID) роли!"
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Error: Empty role display name is not allowed."
|
425 |
msgstr "Ошибка: пустое наименование роли не допускается"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
#, php-format
|
429 |
msgid "Role %s does not exists"
|
430 |
msgstr "Роль %s не существует"
|
431 |
|
432 |
-
#: ../includes/class-ure-lib.php:
|
433 |
#, php-format
|
434 |
msgid "Role %s is renamed to %s successfully"
|
435 |
msgstr "Роль %s успешно переименована в %s"
|
436 |
|
437 |
-
#: ../includes/class-ure-lib.php:
|
438 |
msgid "Error encountered during role delete operation"
|
439 |
msgstr "Произошла ошибка при удалении роли"
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
msgid "Unused roles are deleted successfully"
|
443 |
msgstr "Неиспользуемые роли удалены успешно"
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
#, php-format
|
447 |
msgid "Role %s is deleted successfully"
|
448 |
msgstr "Роль %s удалена успешно"
|
449 |
|
450 |
-
#: ../includes/class-ure-lib.php:
|
451 |
msgid "Error encountered during default role change operation"
|
452 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
#, php-format
|
456 |
msgid "Default role for new users is set to %s successfully"
|
457 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
458 |
|
459 |
-
#: ../includes/class-ure-lib.php:
|
460 |
msgid "Editor"
|
461 |
msgstr "Редактор"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Author"
|
465 |
msgstr "Автор"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
msgid "Contributor"
|
469 |
msgstr "Участник"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Subscriber"
|
473 |
msgstr "Подписчик"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Switch themes"
|
477 |
msgstr "Менять темы"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Edit themes"
|
481 |
msgstr "Изменять темы"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Activate plugins"
|
485 |
msgstr "Активировать плагины"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Edit plugins"
|
489 |
msgstr "Редактировать плагины"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Edit users"
|
493 |
msgstr "Изменять пользователей"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Edit files"
|
497 |
msgstr "Изменять файлы"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Manage options"
|
501 |
msgstr "Управлять установками"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Moderate comments"
|
505 |
msgstr "Модерировать комментарии"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Manage categories"
|
509 |
msgstr "Управлять категориями"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Manage links"
|
513 |
msgstr "Управлять ссылками"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Upload files"
|
517 |
msgstr "Загружать файлы"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Import"
|
521 |
msgstr "Импорт"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Unfiltered html"
|
525 |
msgstr "html без фильтра"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Edit posts"
|
529 |
msgstr "Изменять статьи"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Edit others posts"
|
533 |
msgstr "Изменять чужие статьи"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Edit published posts"
|
537 |
msgstr "Редактировать опубликованные статьи"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Publish posts"
|
541 |
msgstr "Публиковать статьи"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Edit pages"
|
545 |
msgstr "Изменять страницы"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Read"
|
549 |
msgstr "Чтение"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Level 10"
|
553 |
msgstr "Уровень 10"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Level 9"
|
557 |
msgstr "Уровень 9"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Level 8"
|
561 |
msgstr "Уровень 9"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Level 7"
|
565 |
msgstr "Уровень 7"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Level 6"
|
569 |
msgstr "Уровень 6"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Level 5"
|
573 |
msgstr "Уровень 5"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Level 4"
|
577 |
msgstr "Уровень 4"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Level 3"
|
581 |
msgstr "Уровень 3"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Level 2"
|
585 |
msgstr "Уровень 2"
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Level 1"
|
589 |
msgstr "Уровень 1"
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Level 0"
|
593 |
msgstr "Уровень 0"
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Edit others pages"
|
597 |
msgstr "Редактировать чужие страницы"
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Edit published pages"
|
601 |
msgstr "Редактировать опубликованные страницы"
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
msgid "Publish pages"
|
605 |
msgstr "Публиковать страницы"
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Delete pages"
|
609 |
msgstr "Удалять страницы"
|
610 |
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Delete others pages"
|
613 |
msgstr "Удалить чужие страницы"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Delete published pages"
|
617 |
msgstr "Удалять опубликованные страницы"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Delete posts"
|
621 |
msgstr "Удалять статьи"
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Delete others posts"
|
625 |
msgstr "Удалять чужие статьи"
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Delete published posts"
|
629 |
msgstr "Удалять опубликованные статьи"
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Delete private posts"
|
633 |
msgstr "Удалять частные статьи"
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Edit private posts"
|
637 |
msgstr "Редактировать частные статьи"
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Read private posts"
|
641 |
msgstr "Читать частные статьи"
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "Delete private pages"
|
645 |
msgstr "Удалять частные страницы"
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Edit private pages"
|
649 |
msgstr "Редактировать частные страницы"
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Read private pages"
|
653 |
msgstr "Читать частные страницы"
|
654 |
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Delete users"
|
657 |
msgstr "Удалять пользователей"
|
658 |
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
msgid "Create users"
|
661 |
msgstr "Создавать пользователей"
|
662 |
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Unfiltered upload"
|
665 |
msgstr "Загрузка без фильтра"
|
666 |
|
667 |
-
#: ../includes/class-ure-lib.php:
|
668 |
msgid "Edit dashboard"
|
669 |
msgstr "Изменять панель администратора"
|
670 |
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Update plugins"
|
673 |
msgstr "Обновлять плагины"
|
674 |
|
675 |
-
#: ../includes/class-ure-lib.php:
|
676 |
msgid "Delete plugins"
|
677 |
msgstr "Удалять плагины"
|
678 |
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Install plugins"
|
681 |
msgstr "Устанавливать плагины"
|
682 |
|
683 |
-
#: ../includes/class-ure-lib.php:
|
684 |
msgid "Update themes"
|
685 |
msgstr "Обновлять темы"
|
686 |
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Install themes"
|
689 |
msgstr "Устанавливать темы"
|
690 |
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Update core"
|
693 |
msgstr "Обновлять ядро"
|
694 |
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "List users"
|
697 |
msgstr "Список пользователей"
|
698 |
|
699 |
-
#: ../includes/class-ure-lib.php:
|
700 |
msgid "Remove users"
|
701 |
msgstr "Удалять пользователей"
|
702 |
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Add users"
|
705 |
msgstr "Добавлять пользователей"
|
706 |
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
msgid "Promote users"
|
709 |
msgstr "Продвигать пользователей"
|
710 |
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Edit theme options"
|
713 |
msgstr "Изменять настройки темы"
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
msgid "Delete themes"
|
717 |
msgstr "Удалять темы"
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Export"
|
721 |
msgstr "Экспорт"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
725 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
726 |
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
#, php-format
|
729 |
msgid "Capability %s is added successfully"
|
730 |
msgstr "Возможность %s добавлена успешно"
|
731 |
|
732 |
-
#: ../includes/class-ure-lib.php:
|
733 |
#, php-format
|
734 |
msgid "Capability %s exists already"
|
735 |
msgstr "Возможность %s уже существует"
|
736 |
|
737 |
-
#: ../includes/class-ure-lib.php:
|
738 |
#, php-format
|
739 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
740 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
741 |
|
742 |
-
#: ../includes/class-ure-lib.php:
|
743 |
#, php-format
|
744 |
msgid "Capability %s is removed successfully"
|
745 |
msgstr "Возможность %s удалена успешно"
|
746 |
|
747 |
-
#: ../includes/class-ure-lib.php:
|
748 |
msgid "Version:"
|
749 |
msgstr "Версия:"
|
750 |
|
751 |
-
#: ../includes/class-ure-lib.php:
|
752 |
msgid "Author's website"
|
753 |
msgstr "Вебсайт автора"
|
754 |
|
755 |
-
#: ../includes/class-ure-lib.php:
|
756 |
msgid "Plugin webpage"
|
757 |
msgstr "Страница плагина"
|
758 |
|
759 |
-
#: ../includes/class-ure-lib.php:
|
760 |
msgid "Plugin download"
|
761 |
msgstr "Загрузить плагин"
|
762 |
|
763 |
-
#: ../includes/class-ure-lib.php:
|
764 |
msgid "FAQ"
|
765 |
msgstr "Часто задаваемые вопросы"
|
766 |
|
767 |
-
#: ../includes/class-ure-lib.php:
|
768 |
msgid "None"
|
769 |
msgstr "Нет"
|
770 |
|
771 |
-
#: ../includes/class-ure-lib.php:
|
772 |
msgid "Delete All Unused Roles"
|
773 |
msgstr "Удалить все неиспользуемые роли"
|
774 |
|
775 |
-
#: ../includes/class-ure-lib.php:
|
776 |
msgid "— No role for this site —"
|
777 |
msgstr "— Нет роли для этого сайта —"
|
778 |
|
779 |
-
#: ../includes/ure-user-edit.php:
|
780 |
msgid "Network Super Admin"
|
781 |
msgstr "Суперадминистратор сети"
|
782 |
|
783 |
-
#: ../includes/ure-user-edit.php:
|
784 |
msgid "Change capabilities for user"
|
785 |
msgstr "Изменить возможности для пользователя"
|
786 |
|
787 |
-
#: ../includes/ure-user-edit.php:
|
788 |
msgid "Primary Role:"
|
789 |
msgstr "Первичаная роль:"
|
790 |
|
791 |
-
#: ../includes/ure-user-edit.php:
|
792 |
msgid "bbPress Role:"
|
793 |
msgstr "Роль bbPress:"
|
794 |
|
795 |
-
#: ../includes/ure-user-edit.php:
|
796 |
msgid "Other Roles:"
|
797 |
msgstr "Другие Роли:"
|
798 |
|
@@ -828,7 +836,17 @@ msgstr ""
|
|
828 |
"обеспечения совместимости со старыми темами и плагинами. Включение данной "
|
829 |
"опции покажет все устаревшие права пользователей."
|
830 |
|
831 |
-
#: ../includes/class-ure-screen-help.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
832 |
msgid ""
|
833 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
834 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
@@ -838,11 +856,11 @@ msgstr ""
|
|
838 |
"позволяет присвоить всем им пустую роль \"No rights\", чтобы затем WordPress "
|
839 |
"отобразил пользователей с этой ролью на отдельной вкладке."
|
840 |
|
841 |
-
#: ../includes/class-ure-screen-help.php:
|
842 |
msgid "Other default roles for new registered user"
|
843 |
msgstr "Другие роли по-умолчанию для вновь зарегистрированного пользователя:"
|
844 |
|
845 |
-
#: ../includes/class-ure-screen-help.php:
|
846 |
msgid ""
|
847 |
"select roles below to assign them to the new user automatically as an "
|
848 |
"addition to the primary role. Note for multisite environment: take into "
|
@@ -855,13 +873,13 @@ msgstr ""
|
|
855 |
"зарегистрированному пользователю дополнительных ролей по-умолчанию эти роли "
|
856 |
"должны существовать на этом сайте."
|
857 |
|
858 |
-
#: ../includes/class-ure-screen-help.php:
|
859 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
860 |
msgstr ""
|
861 |
"Разрешить локальным администраторам сайтов (не суперадмин) создавать, "
|
862 |
"изменять, удалять пользователей на своих сайтах"
|
863 |
|
864 |
-
#: ../includes/class-ure-screen-help.php:
|
865 |
msgid ""
|
866 |
"Super administrator only may create, edit and delete users under WordPress "
|
867 |
"multi-site by default. Turn this option on in order to remove this "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-06 11:48+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
21 |
msgstr "Редактор ролей пользователей - Опции"
|
22 |
|
23 |
#: ../includes/settings-template.php:21
|
24 |
+
#: ../includes/class-user-role-editor.php: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 |
|
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 "
|
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:233
|
101 |
msgid "Change role for users without role"
|
102 |
msgstr "Изменить роль для пользователей без роли"
|
103 |
|
104 |
+
#: ../includes/class-user-role-editor.php:234
|
105 |
msgid "No rights"
|
106 |
msgstr "Нет прав"
|
107 |
|
108 |
+
#: ../includes/class-user-role-editor.php:235
|
109 |
msgid "Provide new role"
|
110 |
msgstr "Выберите новую роль"
|
111 |
|
112 |
+
#: ../includes/class-user-role-editor.php:319
|
113 |
+
#: ../includes/class-user-role-editor.php:321
|
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:2529
|
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:1029
|
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:778
|
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:850
|
154 |
+
#: ../includes/class-ure-lib.php:1697 ../includes/class-ure-lib.php:1950
|
155 |
+
#: ../includes/class-ure-lib.php:2066 ../includes/class-ure-lib.php:2114
|
156 |
+
#: ../includes/class-ure-lib.php:2350 ../includes/class-ure-lib.php:2395
|
157 |
msgid "Insufficient permissions to work with User Role Editor"
|
158 |
msgstr "Не достаточно прав для работы с User Role Editor"
|
159 |
|
160 |
+
#: ../includes/class-user-role-editor.php:976
|
161 |
msgid "Select All"
|
162 |
msgstr "Выбрать все"
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:977
|
165 |
msgid "Unselect All"
|
166 |
msgstr "Исключить все"
|
167 |
|
168 |
+
#: ../includes/class-user-role-editor.php:978
|
169 |
msgid "Reverse"
|
170 |
msgstr "Обратить"
|
171 |
|
172 |
+
#: ../includes/class-user-role-editor.php:979
|
173 |
msgid "Update"
|
174 |
msgstr "Сохранить"
|
175 |
|
176 |
+
#: ../includes/class-user-role-editor.php:980
|
177 |
msgid "Please confirm permissions update"
|
178 |
msgstr "Пожалуйста, подтвердите продолжение "
|
179 |
|
180 |
+
#: ../includes/class-user-role-editor.php:981
|
181 |
msgid "Add New Role"
|
182 |
msgstr "Добавить новую роль"
|
183 |
|
184 |
+
#: ../includes/class-user-role-editor.php:982
|
185 |
+
#: ../includes/class-user-role-editor.php:987
|
186 |
msgid "Rename Role"
|
187 |
msgstr "Переименовать роль"
|
188 |
|
189 |
+
#: ../includes/class-user-role-editor.php:983
|
190 |
msgid " Role name (ID) can not be empty!"
|
191 |
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
192 |
|
193 |
+
#: ../includes/class-user-role-editor.php:984
|
194 |
msgid ""
|
195 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
196 |
"only!"
|
198 |
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
199 |
"тире и знак подчеркивания"
|
200 |
|
201 |
+
#: ../includes/class-user-role-editor.php:985
|
202 |
msgid ""
|
203 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
204 |
"it."
|
206 |
"WordPress не поддерживает цифровые идентификаторы ролей. Начните имя роли с "
|
207 |
"латинских символов."
|
208 |
|
209 |
+
#: ../includes/class-user-role-editor.php:986
|
210 |
msgid "Add Role"
|
211 |
msgstr "Добавить роль"
|
212 |
|
213 |
+
#: ../includes/class-user-role-editor.php:988
|
214 |
msgid "Delete Role"
|
215 |
msgstr "Удалить роль"
|
216 |
|
217 |
+
#: ../includes/class-user-role-editor.php:989
|
218 |
msgid "Cancel"
|
219 |
msgstr "Отмена"
|
220 |
|
221 |
+
#: ../includes/class-user-role-editor.php:990
|
222 |
msgid "Add Capability"
|
223 |
msgstr "Новая возм."
|
224 |
|
225 |
+
#: ../includes/class-user-role-editor.php:991
|
226 |
+
#: ../includes/class-user-role-editor.php:1000
|
227 |
msgid "Delete Capability"
|
228 |
msgstr "Удалить возм."
|
229 |
|
230 |
+
#: ../includes/class-user-role-editor.php:992
|
231 |
msgid "Reset"
|
232 |
msgstr "Сброс"
|
233 |
|
234 |
+
#: ../includes/class-user-role-editor.php:993
|
235 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
236 |
msgstr ""
|
237 |
"ВНИМАНИЕ! Очистка восстановит роли по состоянию на момент установки "
|
238 |
"WordPress."
|
239 |
|
240 |
+
#: ../includes/class-user-role-editor.php:994
|
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!"
|
245 |
"Если плагины изменяли пользовательские права после установки WordPress "
|
246 |
"(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
|
247 |
|
248 |
+
#: ../includes/class-user-role-editor.php:995
|
249 |
msgid ""
|
250 |
"For more information on how to undo changes and restore plugin capabilities "
|
251 |
"go to"
|
253 |
"Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
|
254 |
"для плагинов, можно узнать здесь"
|
255 |
|
256 |
+
#: ../includes/class-user-role-editor.php:997
|
257 |
msgid "Continue?"
|
258 |
msgstr "Продолжить?"
|
259 |
|
260 |
+
#: ../includes/class-user-role-editor.php:998
|
261 |
msgid "Default Role"
|
262 |
msgstr "Роль по-умолчанию"
|
263 |
|
264 |
+
#: ../includes/class-user-role-editor.php:999
|
265 |
msgid "Set New Default Role"
|
266 |
msgstr "Установить"
|
267 |
|
268 |
+
#: ../includes/class-user-role-editor.php:1001
|
269 |
msgid ""
|
270 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
271 |
"or other custom code"
|
273 |
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
274 |
"прекращеню работы одного из плагинов или другого кода."
|
275 |
|
276 |
+
#: ../includes/class-user-role-editor.php:1002
|
277 |
msgid " Capability name (ID) can not be empty!"
|
278 |
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
279 |
|
280 |
+
#: ../includes/class-user-role-editor.php:1003
|
281 |
msgid ""
|
282 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
283 |
"underscore only!"
|
285 |
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
286 |
"цифры, знаки подчеркивания"
|
287 |
|
288 |
+
#: ../includes/class-user-role-editor.php:1032
|
289 |
+
#: ../includes/class-user-role-editor.php:1065
|
290 |
msgid "Other Roles"
|
291 |
msgstr "Другие роли"
|
292 |
|
293 |
+
#: ../includes/class-user-role-editor.php:1046
|
294 |
msgid "Edit"
|
295 |
msgstr "Изменить"
|
296 |
|
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 |
|
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:278 ../includes/class-ure-lib.php:289
|
330 |
msgid "Role name (ID): "
|
331 |
msgstr "Идентификатор роли (ID):"
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
334 |
msgid "Display Role Name: "
|
335 |
msgstr "Наименование роли:"
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:282
|
338 |
msgid "Make copy of: "
|
339 |
msgstr "Создать копию из:"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:298
|
342 |
msgid "Select Role:"
|
343 |
msgstr "Выбери Роль:"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:313
|
346 |
msgid "Delete:"
|
347 |
msgstr "Удалить"
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:320
|
350 |
msgid "Capability name (ID): "
|
351 |
msgstr "Идентификатор (ID):"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:434
|
354 |
msgid "Error: "
|
355 |
msgstr "Ошибка:"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:434
|
358 |
msgid "Role"
|
359 |
msgstr "Роль"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:435
|
362 |
msgid "does not exist"
|
363 |
msgstr "не существует"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:478
|
366 |
msgid "Role is updated successfully"
|
367 |
msgstr "Роль изменена успешно"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:480
|
370 |
msgid "Roles are updated for all network"
|
371 |
msgstr "Роли изменены для всей сети"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:486
|
374 |
msgid "Error occured during role(s) update"
|
375 |
msgstr "При изменении роли произошла ошибка"
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:493
|
378 |
msgid "User capabilities are updated successfully"
|
379 |
msgstr "Права пользователя изменены успешно"
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:498
|
382 |
msgid "Error occured during user update"
|
383 |
msgstr "При изменении прав пользователя произошла ошибка "
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:556
|
386 |
msgid "User Roles are restored to WordPress default values. "
|
387 |
msgstr "Роли возвращены к начальному состоянию"
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:1445
|
390 |
msgid "Help"
|
391 |
msgstr "Помощь"
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1913
|
394 |
msgid "Error is occur. Please check the log file."
|
395 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
398 |
msgid ""
|
399 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
400 |
"only!"
|
402 |
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
403 |
"цифры, знак подчеркивания и дефис."
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:1963 ../includes/class-ure-lib.php:2030
|
406 |
msgid ""
|
407 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
408 |
"characters to it."
|
410 |
"Ошибка: WordPress не поддерживает цифровые идентификаторы ролей. Начните имя "
|
411 |
"роли с латинских символов."
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:1978
|
414 |
#, php-format
|
415 |
msgid "Role %s exists already"
|
416 |
msgstr "Роль %s уже существует"
|
417 |
|
418 |
+
#: ../includes/class-ure-lib.php:1993
|
419 |
msgid "Error is encountered during new role create operation"
|
420 |
msgstr "Произошла ошибка при создании новой роли"
|
421 |
|
422 |
+
#: ../includes/class-ure-lib.php:1995
|
423 |
#, php-format
|
424 |
msgid "Role %s is created successfully"
|
425 |
msgstr "Роль %s создана успешно"
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:2019
|
428 |
msgid "Error: Role ID is empty!"
|
429 |
msgstr "Ошибка: пустой идентификатор (ID) роли!"
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:2037
|
432 |
msgid "Error: Empty role display name is not allowed."
|
433 |
msgstr "Ошибка: пустое наименование роли не допускается"
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:2044
|
436 |
#, php-format
|
437 |
msgid "Role %s does not exists"
|
438 |
msgstr "Роль %s не существует"
|
439 |
|
440 |
+
#: ../includes/class-ure-lib.php:2052
|
441 |
#, php-format
|
442 |
msgid "Role %s is renamed to %s successfully"
|
443 |
msgstr "Роль %s успешно переименована в %s"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:2125
|
446 |
msgid "Error encountered during role delete operation"
|
447 |
msgstr "Произошла ошибка при удалении роли"
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:2127
|
450 |
msgid "Unused roles are deleted successfully"
|
451 |
msgstr "Неиспользуемые роли удалены успешно"
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:2129
|
454 |
#, php-format
|
455 |
msgid "Role %s is deleted successfully"
|
456 |
msgstr "Роль %s удалена успешно"
|
457 |
|
458 |
+
#: ../includes/class-ure-lib.php:2154
|
459 |
msgid "Error encountered during default role change operation"
|
460 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
461 |
|
462 |
+
#: ../includes/class-ure-lib.php:2160
|
463 |
#, php-format
|
464 |
msgid "Default role for new users is set to %s successfully"
|
465 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:2179
|
468 |
msgid "Editor"
|
469 |
msgstr "Редактор"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:2180
|
472 |
msgid "Author"
|
473 |
msgstr "Автор"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:2181
|
476 |
msgid "Contributor"
|
477 |
msgstr "Участник"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:2182
|
480 |
msgid "Subscriber"
|
481 |
msgstr "Подписчик"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:2184
|
484 |
msgid "Switch themes"
|
485 |
msgstr "Менять темы"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:2185
|
488 |
msgid "Edit themes"
|
489 |
msgstr "Изменять темы"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:2186
|
492 |
msgid "Activate plugins"
|
493 |
msgstr "Активировать плагины"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:2187
|
496 |
msgid "Edit plugins"
|
497 |
msgstr "Редактировать плагины"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:2188
|
500 |
msgid "Edit users"
|
501 |
msgstr "Изменять пользователей"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:2189
|
504 |
msgid "Edit files"
|
505 |
msgstr "Изменять файлы"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:2190
|
508 |
msgid "Manage options"
|
509 |
msgstr "Управлять установками"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:2191
|
512 |
msgid "Moderate comments"
|
513 |
msgstr "Модерировать комментарии"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:2192
|
516 |
msgid "Manage categories"
|
517 |
msgstr "Управлять категориями"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:2193
|
520 |
msgid "Manage links"
|
521 |
msgstr "Управлять ссылками"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:2194
|
524 |
msgid "Upload files"
|
525 |
msgstr "Загружать файлы"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:2195
|
528 |
msgid "Import"
|
529 |
msgstr "Импорт"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:2196
|
532 |
msgid "Unfiltered html"
|
533 |
msgstr "html без фильтра"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:2197
|
536 |
msgid "Edit posts"
|
537 |
msgstr "Изменять статьи"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:2198
|
540 |
msgid "Edit others posts"
|
541 |
msgstr "Изменять чужие статьи"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:2199
|
544 |
msgid "Edit published posts"
|
545 |
msgstr "Редактировать опубликованные статьи"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:2200
|
548 |
msgid "Publish posts"
|
549 |
msgstr "Публиковать статьи"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:2201
|
552 |
msgid "Edit pages"
|
553 |
msgstr "Изменять страницы"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:2202
|
556 |
msgid "Read"
|
557 |
msgstr "Чтение"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:2203
|
560 |
msgid "Level 10"
|
561 |
msgstr "Уровень 10"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:2204
|
564 |
msgid "Level 9"
|
565 |
msgstr "Уровень 9"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:2205
|
568 |
msgid "Level 8"
|
569 |
msgstr "Уровень 9"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:2206
|
572 |
msgid "Level 7"
|
573 |
msgstr "Уровень 7"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:2207
|
576 |
msgid "Level 6"
|
577 |
msgstr "Уровень 6"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:2208
|
580 |
msgid "Level 5"
|
581 |
msgstr "Уровень 5"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:2209
|
584 |
msgid "Level 4"
|
585 |
msgstr "Уровень 4"
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:2210
|
588 |
msgid "Level 3"
|
589 |
msgstr "Уровень 3"
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:2211
|
592 |
msgid "Level 2"
|
593 |
msgstr "Уровень 2"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:2212
|
596 |
msgid "Level 1"
|
597 |
msgstr "Уровень 1"
|
598 |
|
599 |
+
#: ../includes/class-ure-lib.php:2213
|
600 |
msgid "Level 0"
|
601 |
msgstr "Уровень 0"
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:2214
|
604 |
msgid "Edit others pages"
|
605 |
msgstr "Редактировать чужие страницы"
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:2215
|
608 |
msgid "Edit published pages"
|
609 |
msgstr "Редактировать опубликованные страницы"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:2216
|
612 |
msgid "Publish pages"
|
613 |
msgstr "Публиковать страницы"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:2217
|
616 |
msgid "Delete pages"
|
617 |
msgstr "Удалять страницы"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:2218
|
620 |
msgid "Delete others pages"
|
621 |
msgstr "Удалить чужие страницы"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:2219
|
624 |
msgid "Delete published pages"
|
625 |
msgstr "Удалять опубликованные страницы"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:2220
|
628 |
msgid "Delete posts"
|
629 |
msgstr "Удалять статьи"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:2221
|
632 |
msgid "Delete others posts"
|
633 |
msgstr "Удалять чужие статьи"
|
634 |
|
635 |
+
#: ../includes/class-ure-lib.php:2222
|
636 |
msgid "Delete published posts"
|
637 |
msgstr "Удалять опубликованные статьи"
|
638 |
|
639 |
+
#: ../includes/class-ure-lib.php:2223
|
640 |
msgid "Delete private posts"
|
641 |
msgstr "Удалять частные статьи"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:2224
|
644 |
msgid "Edit private posts"
|
645 |
msgstr "Редактировать частные статьи"
|
646 |
|
647 |
+
#: ../includes/class-ure-lib.php:2225
|
648 |
msgid "Read private posts"
|
649 |
msgstr "Читать частные статьи"
|
650 |
|
651 |
+
#: ../includes/class-ure-lib.php:2226
|
652 |
msgid "Delete private pages"
|
653 |
msgstr "Удалять частные страницы"
|
654 |
|
655 |
+
#: ../includes/class-ure-lib.php:2227
|
656 |
msgid "Edit private pages"
|
657 |
msgstr "Редактировать частные страницы"
|
658 |
|
659 |
+
#: ../includes/class-ure-lib.php:2228
|
660 |
msgid "Read private pages"
|
661 |
msgstr "Читать частные страницы"
|
662 |
|
663 |
+
#: ../includes/class-ure-lib.php:2229
|
664 |
msgid "Delete users"
|
665 |
msgstr "Удалять пользователей"
|
666 |
|
667 |
+
#: ../includes/class-ure-lib.php:2230
|
668 |
msgid "Create users"
|
669 |
msgstr "Создавать пользователей"
|
670 |
|
671 |
+
#: ../includes/class-ure-lib.php:2231
|
672 |
msgid "Unfiltered upload"
|
673 |
msgstr "Загрузка без фильтра"
|
674 |
|
675 |
+
#: ../includes/class-ure-lib.php:2232
|
676 |
msgid "Edit dashboard"
|
677 |
msgstr "Изменять панель администратора"
|
678 |
|
679 |
+
#: ../includes/class-ure-lib.php:2233
|
680 |
msgid "Update plugins"
|
681 |
msgstr "Обновлять плагины"
|
682 |
|
683 |
+
#: ../includes/class-ure-lib.php:2234
|
684 |
msgid "Delete plugins"
|
685 |
msgstr "Удалять плагины"
|
686 |
|
687 |
+
#: ../includes/class-ure-lib.php:2235
|
688 |
msgid "Install plugins"
|
689 |
msgstr "Устанавливать плагины"
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:2236
|
692 |
msgid "Update themes"
|
693 |
msgstr "Обновлять темы"
|
694 |
|
695 |
+
#: ../includes/class-ure-lib.php:2237
|
696 |
msgid "Install themes"
|
697 |
msgstr "Устанавливать темы"
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2238
|
700 |
msgid "Update core"
|
701 |
msgstr "Обновлять ядро"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2239
|
704 |
msgid "List users"
|
705 |
msgstr "Список пользователей"
|
706 |
|
707 |
+
#: ../includes/class-ure-lib.php:2240
|
708 |
msgid "Remove users"
|
709 |
msgstr "Удалять пользователей"
|
710 |
|
711 |
+
#: ../includes/class-ure-lib.php:2241
|
712 |
msgid "Add users"
|
713 |
msgstr "Добавлять пользователей"
|
714 |
|
715 |
+
#: ../includes/class-ure-lib.php:2242
|
716 |
msgid "Promote users"
|
717 |
msgstr "Продвигать пользователей"
|
718 |
|
719 |
+
#: ../includes/class-ure-lib.php:2243
|
720 |
msgid "Edit theme options"
|
721 |
msgstr "Изменять настройки темы"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2244
|
724 |
msgid "Delete themes"
|
725 |
msgstr "Удалять темы"
|
726 |
|
727 |
+
#: ../includes/class-ure-lib.php:2245
|
728 |
msgid "Export"
|
729 |
msgstr "Экспорт"
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2358
|
732 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
733 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
734 |
|
735 |
+
#: ../includes/class-ure-lib.php:2371
|
736 |
#, php-format
|
737 |
msgid "Capability %s is added successfully"
|
738 |
msgstr "Возможность %s добавлена успешно"
|
739 |
|
740 |
+
#: ../includes/class-ure-lib.php:2373
|
741 |
#, php-format
|
742 |
msgid "Capability %s exists already"
|
743 |
msgstr "Возможность %s уже существует"
|
744 |
|
745 |
+
#: ../includes/class-ure-lib.php:2402
|
746 |
#, php-format
|
747 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
748 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
749 |
|
750 |
+
#: ../includes/class-ure-lib.php:2421
|
751 |
#, php-format
|
752 |
msgid "Capability %s is removed successfully"
|
753 |
msgstr "Возможность %s удалена успешно"
|
754 |
|
755 |
+
#: ../includes/class-ure-lib.php:2525
|
756 |
msgid "Version:"
|
757 |
msgstr "Версия:"
|
758 |
|
759 |
+
#: ../includes/class-ure-lib.php:2526
|
760 |
msgid "Author's website"
|
761 |
msgstr "Вебсайт автора"
|
762 |
|
763 |
+
#: ../includes/class-ure-lib.php:2527
|
764 |
msgid "Plugin webpage"
|
765 |
msgstr "Страница плагина"
|
766 |
|
767 |
+
#: ../includes/class-ure-lib.php:2528
|
768 |
msgid "Plugin download"
|
769 |
msgstr "Загрузить плагин"
|
770 |
|
771 |
+
#: ../includes/class-ure-lib.php:2530
|
772 |
msgid "FAQ"
|
773 |
msgstr "Часто задаваемые вопросы"
|
774 |
|
775 |
+
#: ../includes/class-ure-lib.php:2578
|
776 |
msgid "None"
|
777 |
msgstr "Нет"
|
778 |
|
779 |
+
#: ../includes/class-ure-lib.php:2605
|
780 |
msgid "Delete All Unused Roles"
|
781 |
msgstr "Удалить все неиспользуемые роли"
|
782 |
|
783 |
+
#: ../includes/class-ure-lib.php:2629
|
784 |
msgid "— No role for this site —"
|
785 |
msgstr "— Нет роли для этого сайта —"
|
786 |
|
787 |
+
#: ../includes/ure-user-edit.php:32
|
788 |
msgid "Network Super Admin"
|
789 |
msgstr "Суперадминистратор сети"
|
790 |
|
791 |
+
#: ../includes/ure-user-edit.php:35
|
792 |
msgid "Change capabilities for user"
|
793 |
msgstr "Изменить возможности для пользователя"
|
794 |
|
795 |
+
#: ../includes/ure-user-edit.php:72
|
796 |
msgid "Primary Role:"
|
797 |
msgstr "Первичаная роль:"
|
798 |
|
799 |
+
#: ../includes/ure-user-edit.php:82
|
800 |
msgid "bbPress Role:"
|
801 |
msgstr "Роль bbPress:"
|
802 |
|
803 |
+
#: ../includes/ure-user-edit.php:92
|
804 |
msgid "Other Roles:"
|
805 |
msgstr "Другие Роли:"
|
806 |
|
836 |
"обеспечения совместимости со старыми темами и плагинами. Включение данной "
|
837 |
"опции покажет все устаревшие права пользователей."
|
838 |
|
839 |
+
#: ../includes/class-ure-screen-help.php:26
|
840 |
+
msgid ""
|
841 |
+
"If turned off - capabilities section of selected user is shown in readonly "
|
842 |
+
"mode. Administrator can not assign capabilities to the user directly. He "
|
843 |
+
"should make it using roles only."
|
844 |
+
msgstr ""
|
845 |
+
"Если выключено - секция прав выбранного пользователя отображается в режиме "
|
846 |
+
"\"только чтение\". Администратор не может присваивать права пользователю "
|
847 |
+
"напрямую, только через роли."
|
848 |
+
|
849 |
+
#: ../includes/class-ure-screen-help.php:46
|
850 |
msgid ""
|
851 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
852 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
856 |
"позволяет присвоить всем им пустую роль \"No rights\", чтобы затем WordPress "
|
857 |
"отобразил пользователей с этой ролью на отдельной вкладке."
|
858 |
|
859 |
+
#: ../includes/class-ure-screen-help.php:63
|
860 |
msgid "Other default roles for new registered user"
|
861 |
msgstr "Другие роли по-умолчанию для вновь зарегистрированного пользователя:"
|
862 |
|
863 |
+
#: ../includes/class-ure-screen-help.php:64
|
864 |
msgid ""
|
865 |
"select roles below to assign them to the new user automatically as an "
|
866 |
"addition to the primary role. Note for multisite environment: take into "
|
873 |
"зарегистрированному пользователю дополнительных ролей по-умолчанию эти роли "
|
874 |
"должны существовать на этом сайте."
|
875 |
|
876 |
+
#: ../includes/class-ure-screen-help.php:82
|
877 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
878 |
msgstr ""
|
879 |
"Разрешить локальным администраторам сайтов (не суперадмин) создавать, "
|
880 |
"изменять, удалять пользователей на своих сайтах"
|
881 |
|
882 |
+
#: ../includes/class-ure-screen-help.php:83
|
883 |
msgid ""
|
884 |
"Super administrator only may create, edit and delete users under WordPress "
|
885 |
"multi-site by default. Turn this option on in order to remove this "
|
lang/ure-tr_TR.mo
CHANGED
Binary file
|
lang/ure-tr_TR.po
CHANGED
@@ -5,15 +5,15 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: User Role Editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
-
"POT-Creation-Date:
|
9 |
-
"PO-Revision-Date:
|
10 |
-
"Last-Translator:
|
11 |
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/user-"
|
12 |
"role-editor/language/tr_TR/)\n"
|
|
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
-
"Language: tr_TR\n"
|
17 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
"X-Generator: Poedit 1.5.4\n"
|
19 |
"X-Poedit-Basepath: .\n"
|
@@ -26,22 +26,22 @@ 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:
|
30 |
msgid "General"
|
31 |
msgstr "Genel"
|
32 |
|
33 |
#: ../includes/settings-template.php:26
|
34 |
-
#: ../includes/class-user-role-editor.php:
|
35 |
msgid "Additional Modules"
|
36 |
msgstr "İlave Modüller"
|
37 |
|
38 |
#: ../includes/settings-template.php:30
|
39 |
-
#: ../includes/class-user-role-editor.php:
|
40 |
msgid "Default Roles"
|
41 |
msgstr "Varsayılan Roller"
|
42 |
|
43 |
#: ../includes/settings-template.php:34
|
44 |
-
#: ../includes/class-user-role-editor.php:
|
45 |
msgid "Multisite"
|
46 |
msgstr "Çoklu site"
|
47 |
|
@@ -60,29 +60,34 @@ 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 |
msgid "Show deprecated capabilities"
|
65 |
msgstr "Önerilmeyen kabiliyetleri göster"
|
66 |
|
67 |
-
#: ../includes/settings-template.php:
|
68 |
-
#: ../includes/
|
|
|
|
|
|
|
|
|
|
|
69 |
msgid "Save"
|
70 |
msgstr "Sakla"
|
71 |
|
72 |
-
#: ../includes/settings-template.php:
|
73 |
-
#: ../includes/class-ure-screen-help.php:
|
74 |
msgid "Count users without role"
|
75 |
msgstr "Rolsüz kullanıcıları say"
|
76 |
|
77 |
-
#: ../includes/settings-template.php:
|
78 |
msgid "Primary default role: "
|
79 |
msgstr "Birincil varsayılan rol:"
|
80 |
|
81 |
-
#: ../includes/settings-template.php:
|
82 |
msgid "Other default roles for new registered user: "
|
83 |
msgstr "Yeni kaydolan kullanıcılar için diğer varsayılan roller:"
|
84 |
|
85 |
-
#: ../includes/settings-template.php:
|
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 "
|
@@ -92,103 +97,106 @@ msgstr ""
|
|
92 |
"kullanıcılara atanması için sitede bulunması gerektiğini olduğunu hesaba "
|
93 |
"katın."
|
94 |
|
95 |
-
#: ../includes/settings-template.php:
|
96 |
msgid "Allow non super administrators to create, edit, and delete users"
|
97 |
msgstr ""
|
98 |
"Süper yönetici olmayanların kullanıcı oluşturma, düzenleme ve silmelerine "
|
99 |
"izin ver"
|
100 |
|
101 |
-
#: ../includes/class-user-role-editor.php:
|
102 |
msgid "Change role for users without role"
|
103 |
msgstr "Rolsüz kullanıcıların rolünü değiştir"
|
104 |
|
105 |
-
#: ../includes/class-user-role-editor.php:
|
106 |
msgid "No rights"
|
107 |
msgstr "İzin yok"
|
108 |
|
109 |
-
#: ../includes/class-user-role-editor.php:
|
110 |
msgid "Provide new role"
|
111 |
msgstr "Yeni rol sağla"
|
112 |
|
113 |
-
#: ../includes/class-user-role-editor.php:
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
msgid "You do not have permission to edit this user."
|
116 |
msgstr "Bu kullanıcıyı düzenlemek için izniniz yok."
|
117 |
|
118 |
-
#: ../includes/class-user-role-editor.php:
|
119 |
msgid "Capabilities"
|
120 |
msgstr "Kabiliyetler"
|
121 |
|
122 |
-
#: ../includes/class-user-role-editor.php:
|
123 |
msgid "Settings"
|
124 |
msgstr "Ayarlar"
|
125 |
|
126 |
-
#: ../includes/class-user-role-editor.php:
|
127 |
-
#: ../includes/class-ure-lib.php:
|
128 |
msgid "Changelog"
|
129 |
msgstr "Değişiklik Günlüğü"
|
130 |
|
131 |
-
#: ../includes/class-user-role-editor.php:
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
-
#: ../includes/class-user-role-editor.php:
|
134 |
-
#: ../includes/class-ure-lib.php:
|
135 |
msgid "User Role Editor"
|
136 |
msgstr "Kullanıcı Rol Editörü"
|
137 |
|
138 |
-
#: ../includes/class-user-role-editor.php:
|
139 |
-
#: ../includes/class-user-role-editor.php:
|
140 |
-
#: ../includes/class-user-role-editor.php:
|
141 |
msgid "User Role Editor options are updated"
|
142 |
msgstr "Kullanıcı Rol Editörü seçenekleri güncellendi"
|
143 |
|
144 |
-
#: ../includes/class-user-role-editor.php:
|
145 |
msgid "Default Roles are updated"
|
146 |
msgstr "Varsayılan Roller güncellendi"
|
147 |
|
148 |
-
#: ../includes/class-user-role-editor.php:
|
149 |
msgid ""
|
150 |
"You do not have sufficient permissions to manage options for User Role "
|
151 |
"Editor."
|
152 |
msgstr "Kullanıcı Rol Editörü seçeneklerini yönetmek için yeterli izniniz yok."
|
153 |
|
154 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
155 |
msgid "Insufficient permissions to work with User Role Editor"
|
156 |
msgstr "Kullanıcı Rol Editörü ile çalışmak için yetersiz izin"
|
157 |
|
158 |
-
#: ../includes/class-user-role-editor.php:
|
159 |
msgid "Select All"
|
160 |
msgstr "Hepsini Seç"
|
161 |
|
162 |
-
#: ../includes/class-user-role-editor.php:
|
163 |
msgid "Unselect All"
|
164 |
msgstr "Hiçbirini Seçme"
|
165 |
|
166 |
-
#: ../includes/class-user-role-editor.php:
|
167 |
msgid "Reverse"
|
168 |
msgstr "Evir"
|
169 |
|
170 |
-
#: ../includes/class-user-role-editor.php:
|
171 |
msgid "Update"
|
172 |
msgstr "Güncelle"
|
173 |
|
174 |
-
#: ../includes/class-user-role-editor.php:
|
175 |
msgid "Please confirm permissions update"
|
176 |
msgstr "Lütfen izin güncellemesini onaylayın"
|
177 |
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
msgid "Add New Role"
|
180 |
msgstr "Yeni Rol Ekle"
|
181 |
|
182 |
-
#: ../includes/class-user-role-editor.php:
|
183 |
-
#: ../includes/class-user-role-editor.php:
|
184 |
msgid "Rename Role"
|
185 |
msgstr "Rol İsmi Değiştir"
|
186 |
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
msgid " Role name (ID) can not be empty!"
|
189 |
msgstr "Rol ismi (ID) boş olamaz!"
|
190 |
|
191 |
-
#: ../includes/class-user-role-editor.php:
|
192 |
msgid ""
|
193 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
194 |
"only!"
|
@@ -196,44 +204,44 @@ msgstr ""
|
|
196 |
"Rol ismi (ID) yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
197 |
"çizgiler içermeli!"
|
198 |
|
199 |
-
#: ../includes/class-user-role-editor.php:
|
200 |
msgid ""
|
201 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
202 |
"it."
|
203 |
msgstr ""
|
204 |
"WordPress sayısal rol ismi (ID) desteklemiyor. Latin karakterler ekleyin."
|
205 |
|
206 |
-
#: ../includes/class-user-role-editor.php:
|
207 |
msgid "Add Role"
|
208 |
msgstr "Rol Ekle"
|
209 |
|
210 |
-
#: ../includes/class-user-role-editor.php:
|
211 |
msgid "Delete Role"
|
212 |
msgstr "Rol Sil"
|
213 |
|
214 |
-
#: ../includes/class-user-role-editor.php:
|
215 |
msgid "Cancel"
|
216 |
msgstr "İptal"
|
217 |
|
218 |
-
#: ../includes/class-user-role-editor.php:
|
219 |
msgid "Add Capability"
|
220 |
msgstr "Kabiliyet Ekle"
|
221 |
|
222 |
-
#: ../includes/class-user-role-editor.php:
|
223 |
-
#: ../includes/class-user-role-editor.php:
|
224 |
msgid "Delete Capability"
|
225 |
msgstr "Kabiliyet Sil"
|
226 |
|
227 |
-
#: ../includes/class-user-role-editor.php:
|
228 |
msgid "Reset"
|
229 |
msgstr "Sıfırla"
|
230 |
|
231 |
-
#: ../includes/class-user-role-editor.php:
|
232 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
233 |
msgstr ""
|
234 |
"TEHLİKE! Sıfırlama WordPress Çekirdeğinin varsayılan ayarlarını geri yükler."
|
235 |
|
236 |
-
#: ../includes/class-user-role-editor.php:
|
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!"
|
@@ -241,7 +249,7 @@ msgstr ""
|
|
241 |
"Herhangi eklenti (S2Member, WooCommerce gibi) kurulumdan sonra herhangi "
|
242 |
"yoldan kabiliyetleri değiştirdiyse, o kabiliyetler SİLİNİR!"
|
243 |
|
244 |
-
#: ../includes/class-user-role-editor.php:
|
245 |
msgid ""
|
246 |
"For more information on how to undo changes and restore plugin capabilities "
|
247 |
"go to"
|
@@ -249,19 +257,19 @@ msgstr ""
|
|
249 |
"Değişiklikleri geri alma ve eklenti kabiliyetlerini geri yükleme hakkında "
|
250 |
"daha fazla bilgi için gideceğiniz adres:"
|
251 |
|
252 |
-
#: ../includes/class-user-role-editor.php:
|
253 |
msgid "Continue?"
|
254 |
msgstr "Devam mı?"
|
255 |
|
256 |
-
#: ../includes/class-user-role-editor.php:
|
257 |
msgid "Default Role"
|
258 |
msgstr "Varsayılan Rol"
|
259 |
|
260 |
-
#: ../includes/class-user-role-editor.php:
|
261 |
msgid "Set New Default Role"
|
262 |
msgstr "Yeni Varsayılan Rol Belirle"
|
263 |
|
264 |
-
#: ../includes/class-user-role-editor.php:
|
265 |
msgid ""
|
266 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
267 |
"or other custom code"
|
@@ -269,11 +277,11 @@ msgstr ""
|
|
269 |
"Uyarı! Dikkatli olun - kritik kabiliyetleri kaldırmak bazı eklentileri veya "
|
270 |
"diğer özel kodları bozabilir"
|
271 |
|
272 |
-
#: ../includes/class-user-role-editor.php:
|
273 |
msgid " Capability name (ID) can not be empty!"
|
274 |
msgstr "Kabiliyet ismi (ID) boş olamaz!"
|
275 |
|
276 |
-
#: ../includes/class-user-role-editor.php:
|
277 |
msgid ""
|
278 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
279 |
"underscore only!"
|
@@ -281,12 +289,12 @@ msgstr ""
|
|
281 |
"Kabiliyet ismi (ID) yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
282 |
"çizgiler içermeli!"
|
283 |
|
284 |
-
#: ../includes/class-user-role-editor.php:
|
285 |
-
#: ../includes/class-user-role-editor.php:
|
286 |
msgid "Other Roles"
|
287 |
msgstr "Diğer Roller"
|
288 |
|
289 |
-
#: ../includes/class-user-role-editor.php:
|
290 |
msgid "Edit"
|
291 |
msgstr "Düzenle"
|
292 |
|
@@ -294,7 +302,7 @@ msgstr "Düzenle"
|
|
294 |
msgid "Select Role and change its capabilities:"
|
295 |
msgstr "Rol seçin ve rolün kabiliyetlerini değiştirin:"
|
296 |
|
297 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:
|
298 |
msgid "Show capabilities in human readable form"
|
299 |
msgstr "Kabiliyetleri insancıl biçimde göster"
|
300 |
|
@@ -306,91 +314,91 @@ msgstr "İşaretliyse işlem bu Ağdaki TÜM sitelere uygulanır"
|
|
306 |
msgid "Apply to All Sites"
|
307 |
msgstr "Tüm Sitelere Uygula"
|
308 |
|
309 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:
|
310 |
msgid "Core capabilities:"
|
311 |
msgstr "Çekirdek kabiliyetler:"
|
312 |
|
313 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:
|
314 |
msgid "Quick filter:"
|
315 |
msgstr "Hızlı süzgeç:"
|
316 |
|
317 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:
|
318 |
msgid "Custom capabilities:"
|
319 |
msgstr "Özel kabiliyetler:"
|
320 |
|
321 |
-
#: ../includes/class-ure-lib.php:
|
322 |
msgid "Error: wrong request"
|
323 |
msgstr "Hata: yanlış talep"
|
324 |
|
325 |
-
#: ../includes/class-ure-lib.php:
|
326 |
msgid "Role name (ID): "
|
327 |
msgstr "Rol ismi (ID):"
|
328 |
|
329 |
-
#: ../includes/class-ure-lib.php:
|
330 |
msgid "Display Role Name: "
|
331 |
msgstr "Rol İsmini Görüntüle:"
|
332 |
|
333 |
-
#: ../includes/class-ure-lib.php:
|
334 |
msgid "Make copy of: "
|
335 |
msgstr "Şundan kopyala:"
|
336 |
|
337 |
-
#: ../includes/class-ure-lib.php:
|
338 |
msgid "Select Role:"
|
339 |
msgstr "Rol Seç:"
|
340 |
|
341 |
-
#: ../includes/class-ure-lib.php:
|
342 |
msgid "Delete:"
|
343 |
msgstr "Sil:"
|
344 |
|
345 |
-
#: ../includes/class-ure-lib.php:
|
346 |
msgid "Capability name (ID): "
|
347 |
msgstr "Kabiliyet ismi (ID):"
|
348 |
|
349 |
-
#: ../includes/class-ure-lib.php:
|
350 |
msgid "Error: "
|
351 |
msgstr "Hata:"
|
352 |
|
353 |
-
#: ../includes/class-ure-lib.php:
|
354 |
msgid "Role"
|
355 |
msgstr "Rol"
|
356 |
|
357 |
-
#: ../includes/class-ure-lib.php:
|
358 |
msgid "does not exist"
|
359 |
msgstr "mevcut değil"
|
360 |
|
361 |
-
#: ../includes/class-ure-lib.php:
|
362 |
msgid "Role is updated successfully"
|
363 |
msgstr "Rol başarıyla güncellendi"
|
364 |
|
365 |
-
#: ../includes/class-ure-lib.php:
|
366 |
msgid "Roles are updated for all network"
|
367 |
msgstr "Roller tüm ağ için güncellendi"
|
368 |
|
369 |
-
#: ../includes/class-ure-lib.php:
|
370 |
msgid "Error occured during role(s) update"
|
371 |
msgstr "Rol güncellemesi esnasında hata meydana geldi"
|
372 |
|
373 |
-
#: ../includes/class-ure-lib.php:
|
374 |
msgid "User capabilities are updated successfully"
|
375 |
msgstr "Kullanıcı kabiliyetleri başarıyla güncellendi"
|
376 |
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
msgid "Error occured during user update"
|
379 |
msgstr "Kullanıcı güncellemesi esnasında hata meydana geldi"
|
380 |
|
381 |
-
#: ../includes/class-ure-lib.php:
|
382 |
msgid "User Roles are restored to WordPress default values. "
|
383 |
msgstr "Kullanıcı Rolleri WordPress varsayılanlarına geri döndürüldü."
|
384 |
|
385 |
-
#: ../includes/class-ure-lib.php:
|
386 |
msgid "Help"
|
387 |
msgstr "Yardım"
|
388 |
|
389 |
-
#: ../includes/class-ure-lib.php:
|
390 |
msgid "Error is occur. Please check the log file."
|
391 |
msgstr "Hata oluştu. Lütfen günlük dosyasını denetleyiniz."
|
392 |
|
393 |
-
#: ../includes/class-ure-lib.php:
|
394 |
msgid ""
|
395 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
396 |
"only!"
|
@@ -398,7 +406,7 @@ msgstr ""
|
|
398 |
"Hata: Rol ID yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
399 |
"çizgiler içermeli!"
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
402 |
msgid ""
|
403 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
404 |
"characters to it."
|
@@ -406,397 +414,397 @@ msgstr ""
|
|
406 |
"Hata: WordPress sayısal rol isimlerini (ID) desteklemiyor. Latin "
|
407 |
"karakterleri ekleyin."
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
#, php-format
|
411 |
msgid "Role %s exists already"
|
412 |
msgstr "%s rolü zaten mevcut"
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
415 |
msgid "Error is encountered during new role create operation"
|
416 |
msgstr "Yeni rol oluşturma işlemi sırasında hata oluştu"
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
#, php-format
|
420 |
msgid "Role %s is created successfully"
|
421 |
msgstr "%s rolü başarıyla oluşturuldu"
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Error: Role ID is empty!"
|
425 |
msgstr "Hata: Rol ID'si boş!"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
msgid "Error: Empty role display name is not allowed."
|
429 |
msgstr "Hata: Boş görünen rol adına izin yok."
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
#, php-format
|
433 |
msgid "Role %s does not exists"
|
434 |
msgstr "%s rolü mevcut değil"
|
435 |
|
436 |
-
#: ../includes/class-ure-lib.php:
|
437 |
#, php-format
|
438 |
msgid "Role %s is renamed to %s successfully"
|
439 |
msgstr "%s rolünün ismi %s olarak başarıyla değiştirildi"
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
msgid "Error encountered during role delete operation"
|
443 |
msgstr "Rol silme işlemi sırasında hata oluştu"
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
msgid "Unused roles are deleted successfully"
|
447 |
msgstr "Kullanılmayan roller başarıyla silindi"
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
#, php-format
|
451 |
msgid "Role %s is deleted successfully"
|
452 |
msgstr "%s rolü başarıyla silindi"
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
msgid "Error encountered during default role change operation"
|
456 |
msgstr "Varsayılan rol değişimi işlemi sırasında hata oluştu"
|
457 |
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
#, php-format
|
460 |
msgid "Default role for new users is set to %s successfully"
|
461 |
msgstr "Yeni kullanıcılar için varsayılan rol %s rolüne başarıyla ayarlandı"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Editor"
|
465 |
msgstr "Editör"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
msgid "Author"
|
469 |
msgstr "Yazar"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Contributor"
|
473 |
msgstr "İçerik Sağlayıcı"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Subscriber"
|
477 |
msgstr "Abone"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Switch themes"
|
481 |
msgstr "Tema değiştirme"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Edit themes"
|
485 |
msgstr "Tema düzenleme"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Activate plugins"
|
489 |
msgstr "Eklenti etkinleştirme"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Edit plugins"
|
493 |
msgstr "Eklenti düzenleme"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Edit users"
|
497 |
msgstr "Kullanıcı düzenleme"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Edit files"
|
501 |
msgstr "Dosya düzenleme"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Manage options"
|
505 |
msgstr "Seçenek yönetme"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Moderate comments"
|
509 |
msgstr "Yorum ılıtma"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Manage categories"
|
513 |
msgstr "Kategori yönetme"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Manage links"
|
517 |
msgstr "Bağlantı yönetme"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Upload files"
|
521 |
msgstr "Dosya yükleme"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Import"
|
525 |
msgstr "İçe Aktarma"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Unfiltered html"
|
529 |
msgstr "Süzülmemiş html"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Edit posts"
|
533 |
msgstr "Yazı düzenleme"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Edit others posts"
|
537 |
msgstr "Başkalarının yazılarını düzenleme"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Edit published posts"
|
541 |
msgstr "Yayımdaki yazıları düzenleme"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Publish posts"
|
545 |
msgstr "Yazı yayımlama"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Edit pages"
|
549 |
msgstr "Sayfa düzenleme"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Read"
|
553 |
msgstr "Okuma"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Level 10"
|
557 |
msgstr "Seviye 10"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Level 9"
|
561 |
msgstr "Seviye 9"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Level 8"
|
565 |
msgstr "Seviye 8"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Level 7"
|
569 |
msgstr "Seviye 7"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Level 6"
|
573 |
msgstr "Seviye 6"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Level 5"
|
577 |
msgstr "Seviye 5"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Level 4"
|
581 |
msgstr "Seviye 4"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Level 3"
|
585 |
msgstr "Seviye 3"
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Level 2"
|
589 |
msgstr "Seviye 2"
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Level 1"
|
593 |
msgstr "Seviye 1"
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Level 0"
|
597 |
msgstr "Seviye 0"
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Edit others pages"
|
601 |
msgstr "Başkalarının sayfalarını düzenleme"
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
msgid "Edit published pages"
|
605 |
msgstr "Yayımdaki sayfaları düzenleme"
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Publish pages"
|
609 |
msgstr "Sayfa yayımlama"
|
610 |
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Delete pages"
|
613 |
msgstr "Sayfa silme"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Delete others pages"
|
617 |
msgstr "Başkalarının sayfalarını silme"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Delete published pages"
|
621 |
msgstr "Yayımdaki sayfaları silme"
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Delete posts"
|
625 |
msgstr "Yazı silme"
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Delete others posts"
|
629 |
msgstr "Başkalarının yazılarını silme"
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Delete published posts"
|
633 |
msgstr "Yayımdaki yazıları silme"
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Delete private posts"
|
637 |
msgstr "Kişisel yazıları silme"
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Edit private posts"
|
641 |
msgstr "Kişisel yazıları düzenleme"
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "Read private posts"
|
645 |
msgstr "Kişisel yazıları okuma"
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Delete private pages"
|
649 |
msgstr "Kişisel sayfaları silme"
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Edit private pages"
|
653 |
msgstr "Kişisel sayfaları düzenleme"
|
654 |
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Read private pages"
|
657 |
msgstr "Kişisel sayfaları okuma"
|
658 |
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
msgid "Delete users"
|
661 |
msgstr "Kullanıcı silme"
|
662 |
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Create users"
|
665 |
msgstr "Kullanıcı oluşturma"
|
666 |
|
667 |
-
#: ../includes/class-ure-lib.php:
|
668 |
msgid "Unfiltered upload"
|
669 |
msgstr "Süzülmemiş yükleme"
|
670 |
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Edit dashboard"
|
673 |
msgstr "Panel düzenleme"
|
674 |
|
675 |
-
#: ../includes/class-ure-lib.php:
|
676 |
msgid "Update plugins"
|
677 |
msgstr "Eklenti güncelleme"
|
678 |
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Delete plugins"
|
681 |
msgstr "Eklenti silme"
|
682 |
|
683 |
-
#: ../includes/class-ure-lib.php:
|
684 |
msgid "Install plugins"
|
685 |
msgstr "Eklenti kurma"
|
686 |
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Update themes"
|
689 |
msgstr "Tema güncelleme"
|
690 |
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Install themes"
|
693 |
msgstr "Tema kurma"
|
694 |
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "Update core"
|
697 |
msgstr "Çekirdek güncelleme"
|
698 |
|
699 |
-
#: ../includes/class-ure-lib.php:
|
700 |
msgid "List users"
|
701 |
msgstr "Kullanıcı listeleme"
|
702 |
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Remove users"
|
705 |
msgstr "Kullanıcı kaldırma"
|
706 |
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
msgid "Add users"
|
709 |
msgstr "Kullanıcı ekleme"
|
710 |
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Promote users"
|
713 |
msgstr "Kullanıcı teşvik etme"
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
msgid "Edit theme options"
|
717 |
msgstr "Tema seçenekleri düzenleme"
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Delete themes"
|
721 |
msgstr "Tema silme"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
msgid "Export"
|
725 |
msgstr "Dışa Aktarma"
|
726 |
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
729 |
msgstr "Hata: Kabiliyet ismi yalnızca latin karakterleri ve rakamlar içermeli!"
|
730 |
|
731 |
-
#: ../includes/class-ure-lib.php:
|
732 |
#, php-format
|
733 |
msgid "Capability %s is added successfully"
|
734 |
msgstr "%s kabiliyeti başarıyla eklendi"
|
735 |
|
736 |
-
#: ../includes/class-ure-lib.php:
|
737 |
#, php-format
|
738 |
msgid "Capability %s exists already"
|
739 |
msgstr "%s kabiliyeti zaten mevcut"
|
740 |
|
741 |
-
#: ../includes/class-ure-lib.php:
|
742 |
#, php-format
|
743 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
744 |
msgstr "Hata! Bu kabiliyeti silmeye izniniz yok: %s!"
|
745 |
|
746 |
-
#: ../includes/class-ure-lib.php:
|
747 |
#, php-format
|
748 |
msgid "Capability %s is removed successfully"
|
749 |
msgstr "%s kabiliyeti başarıyla kaldırıldı"
|
750 |
|
751 |
-
#: ../includes/class-ure-lib.php:
|
752 |
msgid "Version:"
|
753 |
msgstr "Sürüm:"
|
754 |
|
755 |
-
#: ../includes/class-ure-lib.php:
|
756 |
msgid "Author's website"
|
757 |
msgstr "Yazarın web sitesi"
|
758 |
|
759 |
-
#: ../includes/class-ure-lib.php:
|
760 |
msgid "Plugin webpage"
|
761 |
msgstr "Eklenti web sayfası"
|
762 |
|
763 |
-
#: ../includes/class-ure-lib.php:
|
764 |
msgid "Plugin download"
|
765 |
msgstr "Eklenti indirme"
|
766 |
|
767 |
-
#: ../includes/class-ure-lib.php:
|
768 |
msgid "FAQ"
|
769 |
msgstr "S.S.S."
|
770 |
|
771 |
-
#: ../includes/class-ure-lib.php:
|
772 |
msgid "None"
|
773 |
msgstr "Hiçbiri"
|
774 |
|
775 |
-
#: ../includes/class-ure-lib.php:
|
776 |
msgid "Delete All Unused Roles"
|
777 |
msgstr "Tüm Kullanılmayan Rolleri Sil"
|
778 |
|
779 |
-
#: ../includes/class-ure-lib.php:
|
780 |
msgid "— No role for this site —"
|
781 |
msgstr "— Bu site için hiç rol yok —"
|
782 |
|
783 |
-
#: ../includes/ure-user-edit.php:
|
784 |
msgid "Network Super Admin"
|
785 |
msgstr "Ağ Süper Yöneticisi"
|
786 |
|
787 |
-
#: ../includes/ure-user-edit.php:
|
788 |
msgid "Change capabilities for user"
|
789 |
msgstr "Kullanıcının kabiliyetlerini değiştir"
|
790 |
|
791 |
-
#: ../includes/ure-user-edit.php:
|
792 |
msgid "Primary Role:"
|
793 |
msgstr "Birincil Rol:"
|
794 |
|
795 |
-
#: ../includes/ure-user-edit.php:
|
796 |
msgid "bbPress Role:"
|
797 |
msgstr "bbPress Rolü:"
|
798 |
|
799 |
-
#: ../includes/ure-user-edit.php:
|
800 |
msgid "Other Roles:"
|
801 |
msgstr "Diğer Roller:"
|
802 |
|
@@ -832,7 +840,14 @@ msgstr ""
|
|
832 |
"uyumluluğun korunması amacıyla kullanıcı rolleri arasında yer verilmiştir. "
|
833 |
"Bu seçeneği açık yapmak bu önerilmeyen kabiliyetleri görünür yapacaktır."
|
834 |
|
835 |
-
#: ../includes/class-ure-screen-help.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
836 |
msgid ""
|
837 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
838 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
@@ -842,11 +857,11 @@ msgstr ""
|
|
842 |
"onların hepsini \"Haksız\" isimli boş bir role atanmasına, daha sonra ayrı "
|
843 |
"bir sekmede herhangi hakkı olmayan kullanıcıları görebilmek için izin verir."
|
844 |
|
845 |
-
#: ../includes/class-ure-screen-help.php:
|
846 |
msgid "Other default roles for new registered user"
|
847 |
msgstr "Yeni kayıtlı kullanıcılar için diğer varsayılan roller"
|
848 |
|
849 |
-
#: ../includes/class-ure-screen-help.php:
|
850 |
msgid ""
|
851 |
"select roles below to assign them to the new user automatically as an "
|
852 |
"addition to the primary role. Note for multisite environment: take into "
|
@@ -858,13 +873,13 @@ msgstr ""
|
|
858 |
"take into account that other default roles should exist at the site, in "
|
859 |
"order to be assigned to the new registered users."
|
860 |
|
861 |
-
#: ../includes/class-ure-screen-help.php:
|
862 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
863 |
msgstr ""
|
864 |
"Süper yönetici olmayanların kullanıcı oluşturma, düzenleme ve silmelerine "
|
865 |
"izin ver"
|
866 |
|
867 |
-
#: ../includes/class-ure-screen-help.php:
|
868 |
msgid ""
|
869 |
"Super administrator only may create, edit and delete users under WordPress "
|
870 |
"multi-site by default. Turn this option on in order to remove this "
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: User Role Editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2015-02-06 11:48+0700\n"
|
9 |
+
"PO-Revision-Date: 2015-02-06 12:04+0700\n"
|
10 |
+
"Last-Translator: Vladimir Garagulya <support@role-editor.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"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
17 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
"X-Generator: Poedit 1.5.4\n"
|
19 |
"X-Poedit-Basepath: .\n"
|
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 |
|
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 "
|
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:233
|
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:234
|
111 |
msgid "No rights"
|
112 |
msgstr "İzin yok"
|
113 |
|
114 |
+
#: ../includes/class-user-role-editor.php:235
|
115 |
msgid "Provide new role"
|
116 |
msgstr "Yeni rol sağla"
|
117 |
|
118 |
+
#: ../includes/class-user-role-editor.php:319
|
119 |
+
#: ../includes/class-user-role-editor.php:321
|
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:2529
|
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:1029
|
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:778
|
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:850
|
160 |
+
#: ../includes/class-ure-lib.php:1697 ../includes/class-ure-lib.php:1950
|
161 |
+
#: ../includes/class-ure-lib.php:2066 ../includes/class-ure-lib.php:2114
|
162 |
+
#: ../includes/class-ure-lib.php:2350 ../includes/class-ure-lib.php:2395
|
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:976
|
167 |
msgid "Select All"
|
168 |
msgstr "Hepsini Seç"
|
169 |
|
170 |
+
#: ../includes/class-user-role-editor.php:977
|
171 |
msgid "Unselect All"
|
172 |
msgstr "Hiçbirini Seçme"
|
173 |
|
174 |
+
#: ../includes/class-user-role-editor.php:978
|
175 |
msgid "Reverse"
|
176 |
msgstr "Evir"
|
177 |
|
178 |
+
#: ../includes/class-user-role-editor.php:979
|
179 |
msgid "Update"
|
180 |
msgstr "Güncelle"
|
181 |
|
182 |
+
#: ../includes/class-user-role-editor.php:980
|
183 |
msgid "Please confirm permissions update"
|
184 |
msgstr "Lütfen izin güncellemesini onaylayın"
|
185 |
|
186 |
+
#: ../includes/class-user-role-editor.php:981
|
187 |
msgid "Add New Role"
|
188 |
msgstr "Yeni Rol Ekle"
|
189 |
|
190 |
+
#: ../includes/class-user-role-editor.php:982
|
191 |
+
#: ../includes/class-user-role-editor.php:987
|
192 |
msgid "Rename Role"
|
193 |
msgstr "Rol İsmi Değiştir"
|
194 |
|
195 |
+
#: ../includes/class-user-role-editor.php:983
|
196 |
msgid " Role name (ID) can not be empty!"
|
197 |
msgstr "Rol ismi (ID) boş olamaz!"
|
198 |
|
199 |
+
#: ../includes/class-user-role-editor.php:984
|
200 |
msgid ""
|
201 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
202 |
"only!"
|
204 |
"Rol ismi (ID) yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
205 |
"çizgiler içermeli!"
|
206 |
|
207 |
+
#: ../includes/class-user-role-editor.php:985
|
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:986
|
215 |
msgid "Add Role"
|
216 |
msgstr "Rol Ekle"
|
217 |
|
218 |
+
#: ../includes/class-user-role-editor.php:988
|
219 |
msgid "Delete Role"
|
220 |
msgstr "Rol Sil"
|
221 |
|
222 |
+
#: ../includes/class-user-role-editor.php:989
|
223 |
msgid "Cancel"
|
224 |
msgstr "İptal"
|
225 |
|
226 |
+
#: ../includes/class-user-role-editor.php:990
|
227 |
msgid "Add Capability"
|
228 |
msgstr "Kabiliyet Ekle"
|
229 |
|
230 |
+
#: ../includes/class-user-role-editor.php:991
|
231 |
+
#: ../includes/class-user-role-editor.php:1000
|
232 |
msgid "Delete Capability"
|
233 |
msgstr "Kabiliyet Sil"
|
234 |
|
235 |
+
#: ../includes/class-user-role-editor.php:992
|
236 |
msgid "Reset"
|
237 |
msgstr "Sıfırla"
|
238 |
|
239 |
+
#: ../includes/class-user-role-editor.php:993
|
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:994
|
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!"
|
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:995
|
253 |
msgid ""
|
254 |
"For more information on how to undo changes and restore plugin capabilities "
|
255 |
"go to"
|
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:997
|
261 |
msgid "Continue?"
|
262 |
msgstr "Devam mı?"
|
263 |
|
264 |
+
#: ../includes/class-user-role-editor.php:998
|
265 |
msgid "Default Role"
|
266 |
msgstr "Varsayılan Rol"
|
267 |
|
268 |
+
#: ../includes/class-user-role-editor.php:999
|
269 |
msgid "Set New Default Role"
|
270 |
msgstr "Yeni Varsayılan Rol Belirle"
|
271 |
|
272 |
+
#: ../includes/class-user-role-editor.php:1001
|
273 |
msgid ""
|
274 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
275 |
"or other custom code"
|
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:1002
|
281 |
msgid " Capability name (ID) can not be empty!"
|
282 |
msgstr "Kabiliyet ismi (ID) boş olamaz!"
|
283 |
|
284 |
+
#: ../includes/class-user-role-editor.php:1003
|
285 |
msgid ""
|
286 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
287 |
"underscore only!"
|
289 |
"Kabiliyet ismi (ID) yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
290 |
"çizgiler içermeli!"
|
291 |
|
292 |
+
#: ../includes/class-user-role-editor.php:1032
|
293 |
+
#: ../includes/class-user-role-editor.php:1065
|
294 |
msgid "Other Roles"
|
295 |
msgstr "Diğer Roller"
|
296 |
|
297 |
+
#: ../includes/class-user-role-editor.php:1046
|
298 |
msgid "Edit"
|
299 |
msgstr "Düzenle"
|
300 |
|
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 |
|
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:278 ../includes/class-ure-lib.php:289
|
334 |
msgid "Role name (ID): "
|
335 |
msgstr "Rol ismi (ID):"
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
338 |
msgid "Display Role Name: "
|
339 |
msgstr "Rol İsmini Görüntüle:"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:282
|
342 |
msgid "Make copy of: "
|
343 |
msgstr "Şundan kopyala:"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:298
|
346 |
msgid "Select Role:"
|
347 |
msgstr "Rol Seç:"
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:313
|
350 |
msgid "Delete:"
|
351 |
msgstr "Sil:"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:320
|
354 |
msgid "Capability name (ID): "
|
355 |
msgstr "Kabiliyet ismi (ID):"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:434
|
358 |
msgid "Error: "
|
359 |
msgstr "Hata:"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:434
|
362 |
msgid "Role"
|
363 |
msgstr "Rol"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:435
|
366 |
msgid "does not exist"
|
367 |
msgstr "mevcut değil"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:478
|
370 |
msgid "Role is updated successfully"
|
371 |
msgstr "Rol başarıyla güncellendi"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:480
|
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:486
|
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:493
|
382 |
msgid "User capabilities are updated successfully"
|
383 |
msgstr "Kullanıcı kabiliyetleri başarıyla güncellendi"
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:498
|
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:556
|
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:1445
|
394 |
msgid "Help"
|
395 |
msgstr "Yardım"
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:1913
|
398 |
msgid "Error is occur. Please check the log file."
|
399 |
msgstr "Hata oluştu. Lütfen günlük dosyasını denetleyiniz."
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
402 |
msgid ""
|
403 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
404 |
"only!"
|
406 |
"Hata: Rol ID yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
407 |
"çizgiler içermeli!"
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1963 ../includes/class-ure-lib.php:2030
|
410 |
msgid ""
|
411 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
412 |
"characters to it."
|
414 |
"Hata: WordPress sayısal rol isimlerini (ID) desteklemiyor. Latin "
|
415 |
"karakterleri ekleyin."
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1978
|
418 |
#, php-format
|
419 |
msgid "Role %s exists already"
|
420 |
msgstr "%s rolü zaten mevcut"
|
421 |
|
422 |
+
#: ../includes/class-ure-lib.php:1993
|
423 |
msgid "Error is encountered during new role create operation"
|
424 |
msgstr "Yeni rol oluşturma işlemi sırasında hata oluştu"
|
425 |
|
426 |
+
#: ../includes/class-ure-lib.php:1995
|
427 |
#, php-format
|
428 |
msgid "Role %s is created successfully"
|
429 |
msgstr "%s rolü başarıyla oluşturuldu"
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:2019
|
432 |
msgid "Error: Role ID is empty!"
|
433 |
msgstr "Hata: Rol ID'si boş!"
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:2037
|
436 |
msgid "Error: Empty role display name is not allowed."
|
437 |
msgstr "Hata: Boş görünen rol adına izin yok."
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:2044
|
440 |
#, php-format
|
441 |
msgid "Role %s does not exists"
|
442 |
msgstr "%s rolü mevcut değil"
|
443 |
|
444 |
+
#: ../includes/class-ure-lib.php:2052
|
445 |
#, php-format
|
446 |
msgid "Role %s is renamed to %s successfully"
|
447 |
msgstr "%s rolünün ismi %s olarak başarıyla değiştirildi"
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:2125
|
450 |
msgid "Error encountered during role delete operation"
|
451 |
msgstr "Rol silme işlemi sırasında hata oluştu"
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:2127
|
454 |
msgid "Unused roles are deleted successfully"
|
455 |
msgstr "Kullanılmayan roller başarıyla silindi"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:2129
|
458 |
#, php-format
|
459 |
msgid "Role %s is deleted successfully"
|
460 |
msgstr "%s rolü başarıyla silindi"
|
461 |
|
462 |
+
#: ../includes/class-ure-lib.php:2154
|
463 |
msgid "Error encountered during default role change operation"
|
464 |
msgstr "Varsayılan rol değişimi işlemi sırasında hata oluştu"
|
465 |
|
466 |
+
#: ../includes/class-ure-lib.php:2160
|
467 |
#, php-format
|
468 |
msgid "Default role for new users is set to %s successfully"
|
469 |
msgstr "Yeni kullanıcılar için varsayılan rol %s rolüne başarıyla ayarlandı"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:2179
|
472 |
msgid "Editor"
|
473 |
msgstr "Editör"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:2180
|
476 |
msgid "Author"
|
477 |
msgstr "Yazar"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:2181
|
480 |
msgid "Contributor"
|
481 |
msgstr "İçerik Sağlayıcı"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:2182
|
484 |
msgid "Subscriber"
|
485 |
msgstr "Abone"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:2184
|
488 |
msgid "Switch themes"
|
489 |
msgstr "Tema değiştirme"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:2185
|
492 |
msgid "Edit themes"
|
493 |
msgstr "Tema düzenleme"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:2186
|
496 |
msgid "Activate plugins"
|
497 |
msgstr "Eklenti etkinleştirme"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:2187
|
500 |
msgid "Edit plugins"
|
501 |
msgstr "Eklenti düzenleme"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:2188
|
504 |
msgid "Edit users"
|
505 |
msgstr "Kullanıcı düzenleme"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:2189
|
508 |
msgid "Edit files"
|
509 |
msgstr "Dosya düzenleme"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:2190
|
512 |
msgid "Manage options"
|
513 |
msgstr "Seçenek yönetme"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:2191
|
516 |
msgid "Moderate comments"
|
517 |
msgstr "Yorum ılıtma"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:2192
|
520 |
msgid "Manage categories"
|
521 |
msgstr "Kategori yönetme"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:2193
|
524 |
msgid "Manage links"
|
525 |
msgstr "Bağlantı yönetme"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:2194
|
528 |
msgid "Upload files"
|
529 |
msgstr "Dosya yükleme"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:2195
|
532 |
msgid "Import"
|
533 |
msgstr "İçe Aktarma"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:2196
|
536 |
msgid "Unfiltered html"
|
537 |
msgstr "Süzülmemiş html"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:2197
|
540 |
msgid "Edit posts"
|
541 |
msgstr "Yazı düzenleme"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:2198
|
544 |
msgid "Edit others posts"
|
545 |
msgstr "Başkalarının yazılarını düzenleme"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:2199
|
548 |
msgid "Edit published posts"
|
549 |
msgstr "Yayımdaki yazıları düzenleme"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:2200
|
552 |
msgid "Publish posts"
|
553 |
msgstr "Yazı yayımlama"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:2201
|
556 |
msgid "Edit pages"
|
557 |
msgstr "Sayfa düzenleme"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:2202
|
560 |
msgid "Read"
|
561 |
msgstr "Okuma"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:2203
|
564 |
msgid "Level 10"
|
565 |
msgstr "Seviye 10"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:2204
|
568 |
msgid "Level 9"
|
569 |
msgstr "Seviye 9"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:2205
|
572 |
msgid "Level 8"
|
573 |
msgstr "Seviye 8"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:2206
|
576 |
msgid "Level 7"
|
577 |
msgstr "Seviye 7"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:2207
|
580 |
msgid "Level 6"
|
581 |
msgstr "Seviye 6"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:2208
|
584 |
msgid "Level 5"
|
585 |
msgstr "Seviye 5"
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:2209
|
588 |
msgid "Level 4"
|
589 |
msgstr "Seviye 4"
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:2210
|
592 |
msgid "Level 3"
|
593 |
msgstr "Seviye 3"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:2211
|
596 |
msgid "Level 2"
|
597 |
msgstr "Seviye 2"
|
598 |
|
599 |
+
#: ../includes/class-ure-lib.php:2212
|
600 |
msgid "Level 1"
|
601 |
msgstr "Seviye 1"
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:2213
|
604 |
msgid "Level 0"
|
605 |
msgstr "Seviye 0"
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:2214
|
608 |
msgid "Edit others pages"
|
609 |
msgstr "Başkalarının sayfalarını düzenleme"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:2215
|
612 |
msgid "Edit published pages"
|
613 |
msgstr "Yayımdaki sayfaları düzenleme"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:2216
|
616 |
msgid "Publish pages"
|
617 |
msgstr "Sayfa yayımlama"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:2217
|
620 |
msgid "Delete pages"
|
621 |
msgstr "Sayfa silme"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:2218
|
624 |
msgid "Delete others pages"
|
625 |
msgstr "Başkalarının sayfalarını silme"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:2219
|
628 |
msgid "Delete published pages"
|
629 |
msgstr "Yayımdaki sayfaları silme"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:2220
|
632 |
msgid "Delete posts"
|
633 |
msgstr "Yazı silme"
|
634 |
|
635 |
+
#: ../includes/class-ure-lib.php:2221
|
636 |
msgid "Delete others posts"
|
637 |
msgstr "Başkalarının yazılarını silme"
|
638 |
|
639 |
+
#: ../includes/class-ure-lib.php:2222
|
640 |
msgid "Delete published posts"
|
641 |
msgstr "Yayımdaki yazıları silme"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:2223
|
644 |
msgid "Delete private posts"
|
645 |
msgstr "Kişisel yazıları silme"
|
646 |
|
647 |
+
#: ../includes/class-ure-lib.php:2224
|
648 |
msgid "Edit private posts"
|
649 |
msgstr "Kişisel yazıları düzenleme"
|
650 |
|
651 |
+
#: ../includes/class-ure-lib.php:2225
|
652 |
msgid "Read private posts"
|
653 |
msgstr "Kişisel yazıları okuma"
|
654 |
|
655 |
+
#: ../includes/class-ure-lib.php:2226
|
656 |
msgid "Delete private pages"
|
657 |
msgstr "Kişisel sayfaları silme"
|
658 |
|
659 |
+
#: ../includes/class-ure-lib.php:2227
|
660 |
msgid "Edit private pages"
|
661 |
msgstr "Kişisel sayfaları düzenleme"
|
662 |
|
663 |
+
#: ../includes/class-ure-lib.php:2228
|
664 |
msgid "Read private pages"
|
665 |
msgstr "Kişisel sayfaları okuma"
|
666 |
|
667 |
+
#: ../includes/class-ure-lib.php:2229
|
668 |
msgid "Delete users"
|
669 |
msgstr "Kullanıcı silme"
|
670 |
|
671 |
+
#: ../includes/class-ure-lib.php:2230
|
672 |
msgid "Create users"
|
673 |
msgstr "Kullanıcı oluşturma"
|
674 |
|
675 |
+
#: ../includes/class-ure-lib.php:2231
|
676 |
msgid "Unfiltered upload"
|
677 |
msgstr "Süzülmemiş yükleme"
|
678 |
|
679 |
+
#: ../includes/class-ure-lib.php:2232
|
680 |
msgid "Edit dashboard"
|
681 |
msgstr "Panel düzenleme"
|
682 |
|
683 |
+
#: ../includes/class-ure-lib.php:2233
|
684 |
msgid "Update plugins"
|
685 |
msgstr "Eklenti güncelleme"
|
686 |
|
687 |
+
#: ../includes/class-ure-lib.php:2234
|
688 |
msgid "Delete plugins"
|
689 |
msgstr "Eklenti silme"
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:2235
|
692 |
msgid "Install plugins"
|
693 |
msgstr "Eklenti kurma"
|
694 |
|
695 |
+
#: ../includes/class-ure-lib.php:2236
|
696 |
msgid "Update themes"
|
697 |
msgstr "Tema güncelleme"
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2237
|
700 |
msgid "Install themes"
|
701 |
msgstr "Tema kurma"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2238
|
704 |
msgid "Update core"
|
705 |
msgstr "Çekirdek güncelleme"
|
706 |
|
707 |
+
#: ../includes/class-ure-lib.php:2239
|
708 |
msgid "List users"
|
709 |
msgstr "Kullanıcı listeleme"
|
710 |
|
711 |
+
#: ../includes/class-ure-lib.php:2240
|
712 |
msgid "Remove users"
|
713 |
msgstr "Kullanıcı kaldırma"
|
714 |
|
715 |
+
#: ../includes/class-ure-lib.php:2241
|
716 |
msgid "Add users"
|
717 |
msgstr "Kullanıcı ekleme"
|
718 |
|
719 |
+
#: ../includes/class-ure-lib.php:2242
|
720 |
msgid "Promote users"
|
721 |
msgstr "Kullanıcı teşvik etme"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2243
|
724 |
msgid "Edit theme options"
|
725 |
msgstr "Tema seçenekleri düzenleme"
|
726 |
|
727 |
+
#: ../includes/class-ure-lib.php:2244
|
728 |
msgid "Delete themes"
|
729 |
msgstr "Tema silme"
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2245
|
732 |
msgid "Export"
|
733 |
msgstr "Dışa Aktarma"
|
734 |
|
735 |
+
#: ../includes/class-ure-lib.php:2358
|
736 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
737 |
msgstr "Hata: Kabiliyet ismi yalnızca latin karakterleri ve rakamlar içermeli!"
|
738 |
|
739 |
+
#: ../includes/class-ure-lib.php:2371
|
740 |
#, php-format
|
741 |
msgid "Capability %s is added successfully"
|
742 |
msgstr "%s kabiliyeti başarıyla eklendi"
|
743 |
|
744 |
+
#: ../includes/class-ure-lib.php:2373
|
745 |
#, php-format
|
746 |
msgid "Capability %s exists already"
|
747 |
msgstr "%s kabiliyeti zaten mevcut"
|
748 |
|
749 |
+
#: ../includes/class-ure-lib.php:2402
|
750 |
#, php-format
|
751 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
752 |
msgstr "Hata! Bu kabiliyeti silmeye izniniz yok: %s!"
|
753 |
|
754 |
+
#: ../includes/class-ure-lib.php:2421
|
755 |
#, php-format
|
756 |
msgid "Capability %s is removed successfully"
|
757 |
msgstr "%s kabiliyeti başarıyla kaldırıldı"
|
758 |
|
759 |
+
#: ../includes/class-ure-lib.php:2525
|
760 |
msgid "Version:"
|
761 |
msgstr "Sürüm:"
|
762 |
|
763 |
+
#: ../includes/class-ure-lib.php:2526
|
764 |
msgid "Author's website"
|
765 |
msgstr "Yazarın web sitesi"
|
766 |
|
767 |
+
#: ../includes/class-ure-lib.php:2527
|
768 |
msgid "Plugin webpage"
|
769 |
msgstr "Eklenti web sayfası"
|
770 |
|
771 |
+
#: ../includes/class-ure-lib.php:2528
|
772 |
msgid "Plugin download"
|
773 |
msgstr "Eklenti indirme"
|
774 |
|
775 |
+
#: ../includes/class-ure-lib.php:2530
|
776 |
msgid "FAQ"
|
777 |
msgstr "S.S.S."
|
778 |
|
779 |
+
#: ../includes/class-ure-lib.php:2578
|
780 |
msgid "None"
|
781 |
msgstr "Hiçbiri"
|
782 |
|
783 |
+
#: ../includes/class-ure-lib.php:2605
|
784 |
msgid "Delete All Unused Roles"
|
785 |
msgstr "Tüm Kullanılmayan Rolleri Sil"
|
786 |
|
787 |
+
#: ../includes/class-ure-lib.php:2629
|
788 |
msgid "— No role for this site —"
|
789 |
msgstr "— Bu site için hiç rol yok —"
|
790 |
|
791 |
+
#: ../includes/ure-user-edit.php:32
|
792 |
msgid "Network Super Admin"
|
793 |
msgstr "Ağ Süper Yöneticisi"
|
794 |
|
795 |
+
#: ../includes/ure-user-edit.php:35
|
796 |
msgid "Change capabilities for user"
|
797 |
msgstr "Kullanıcının kabiliyetlerini değiştir"
|
798 |
|
799 |
+
#: ../includes/ure-user-edit.php:72
|
800 |
msgid "Primary Role:"
|
801 |
msgstr "Birincil Rol:"
|
802 |
|
803 |
+
#: ../includes/ure-user-edit.php:82
|
804 |
msgid "bbPress Role:"
|
805 |
msgstr "bbPress Rolü:"
|
806 |
|
807 |
+
#: ../includes/ure-user-edit.php:92
|
808 |
msgid "Other Roles:"
|
809 |
msgstr "Diğer Roller:"
|
810 |
|
840 |
"uyumluluğun korunması amacıyla kullanıcı rolleri arasında yer verilmiştir. "
|
841 |
"Bu seçeneği açık yapmak bu önerilmeyen kabiliyetleri görünür yapacaktır."
|
842 |
|
843 |
+
#: ../includes/class-ure-screen-help.php:26
|
844 |
+
msgid ""
|
845 |
+
"If turned off - capabilities section of selected user is shown in readonly "
|
846 |
+
"mode. Administrator can not assign capabilities to the user directly. He "
|
847 |
+
"should make it using roles only."
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: ../includes/class-ure-screen-help.php:46
|
851 |
msgid ""
|
852 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
853 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
857 |
"onların hepsini \"Haksız\" isimli boş bir role atanmasına, daha sonra ayrı "
|
858 |
"bir sekmede herhangi hakkı olmayan kullanıcıları görebilmek için izin verir."
|
859 |
|
860 |
+
#: ../includes/class-ure-screen-help.php:63
|
861 |
msgid "Other default roles for new registered user"
|
862 |
msgstr "Yeni kayıtlı kullanıcılar için diğer varsayılan roller"
|
863 |
|
864 |
+
#: ../includes/class-ure-screen-help.php:64
|
865 |
msgid ""
|
866 |
"select roles below to assign them to the new user automatically as an "
|
867 |
"addition to the primary role. Note for multisite environment: take into "
|
873 |
"take into account that other default roles should exist at the site, in "
|
874 |
"order to be assigned to the new registered users."
|
875 |
|
876 |
+
#: ../includes/class-ure-screen-help.php:82
|
877 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
878 |
msgstr ""
|
879 |
"Süper yönetici olmayanların kullanıcı oluşturma, düzenleme ve silmelerine "
|
880 |
"izin ver"
|
881 |
|
882 |
+
#: ../includes/class-ure-screen-help.php:83
|
883 |
msgid ""
|
884 |
"Super administrator only may create, edit and delete users under WordPress "
|
885 |
"multi-site by default. Turn this option on in order to remove this "
|
lang/ure.mo
CHANGED
Binary file
|
lang/ure.pot
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -21,22 +21,22 @@ msgid "User Role Editor - Options"
|
|
21 |
msgstr ""
|
22 |
|
23 |
#: ../includes/settings-template.php:21
|
24 |
-
#: ../includes/class-user-role-editor.php:
|
25 |
msgid "General"
|
26 |
msgstr ""
|
27 |
|
28 |
#: ../includes/settings-template.php:26
|
29 |
-
#: ../includes/class-user-role-editor.php:
|
30 |
msgid "Additional Modules"
|
31 |
msgstr ""
|
32 |
|
33 |
#: ../includes/settings-template.php:30
|
34 |
-
#: ../includes/class-user-role-editor.php:
|
35 |
msgid "Default Roles"
|
36 |
msgstr ""
|
37 |
|
38 |
#: ../includes/settings-template.php:34
|
39 |
-
#: ../includes/class-user-role-editor.php:
|
40 |
msgid "Multisite"
|
41 |
msgstr ""
|
42 |
|
@@ -55,216 +55,224 @@ 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:
|
59 |
msgid "Show deprecated capabilities"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: ../includes/settings-template.php:
|
63 |
-
#: ../includes/
|
|
|
|
|
|
|
|
|
|
|
64 |
msgid "Save"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: ../includes/settings-template.php:
|
68 |
-
#: ../includes/class-ure-screen-help.php:
|
69 |
msgid "Count users without role"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: ../includes/settings-template.php:
|
73 |
msgid "Primary default role: "
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: ../includes/settings-template.php:
|
77 |
msgid "Other default roles for new registered user: "
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: ../includes/settings-template.php:
|
81 |
msgid ""
|
82 |
"Note for multisite environment: take into account that other default roles "
|
83 |
"should exist at the site, in order to be assigned to the new registered "
|
84 |
"users."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: ../includes/settings-template.php:
|
88 |
msgid "Allow non super administrators to create, edit, and delete users"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: ../includes/class-user-role-editor.php:
|
92 |
msgid "Change role for users without role"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../includes/class-user-role-editor.php:
|
96 |
msgid "No rights"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../includes/class-user-role-editor.php:
|
100 |
msgid "Provide new role"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: ../includes/class-user-role-editor.php:
|
104 |
-
#: ../includes/class-user-role-editor.php:
|
105 |
msgid "You do not have permission to edit this user."
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: ../includes/class-user-role-editor.php:
|
109 |
msgid "Capabilities"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: ../includes/class-user-role-editor.php:
|
113 |
msgid "Settings"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: ../includes/class-user-role-editor.php:
|
117 |
-
#: ../includes/class-ure-lib.php:
|
118 |
msgid "Changelog"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: ../includes/class-user-role-editor.php:
|
122 |
-
#: ../includes/class-user-role-editor.php:
|
123 |
-
#: ../includes/class-user-role-editor.php:
|
124 |
-
#: ../includes/class-ure-lib.php:
|
125 |
msgid "User Role Editor"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: ../includes/class-user-role-editor.php:
|
129 |
-
#: ../includes/class-user-role-editor.php:
|
130 |
-
#: ../includes/class-user-role-editor.php:
|
131 |
msgid "User Role Editor options are updated"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
msgid "Default Roles are updated"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: ../includes/class-user-role-editor.php:
|
139 |
msgid ""
|
140 |
"You do not have sufficient permissions to manage options for User Role "
|
141 |
"Editor."
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
|
|
|
|
145 |
msgid "Insufficient permissions to work with User Role Editor"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: ../includes/class-user-role-editor.php:
|
149 |
msgid "Select All"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: ../includes/class-user-role-editor.php:
|
153 |
msgid "Unselect All"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: ../includes/class-user-role-editor.php:
|
157 |
msgid "Reverse"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid "Update"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../includes/class-user-role-editor.php:
|
165 |
msgid "Please confirm permissions update"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
msgid "Add New Role"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: ../includes/class-user-role-editor.php:
|
173 |
-
#: ../includes/class-user-role-editor.php:
|
174 |
msgid "Rename Role"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../includes/class-user-role-editor.php:
|
178 |
msgid " Role name (ID) can not be empty!"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../includes/class-user-role-editor.php:
|
182 |
msgid ""
|
183 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
184 |
"only!"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
msgid ""
|
189 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
190 |
"it."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: ../includes/class-user-role-editor.php:
|
194 |
msgid "Add Role"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ../includes/class-user-role-editor.php:
|
198 |
msgid "Delete Role"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ../includes/class-user-role-editor.php:
|
202 |
msgid "Cancel"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../includes/class-user-role-editor.php:
|
206 |
msgid "Add Capability"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: ../includes/class-user-role-editor.php:
|
210 |
-
#: ../includes/class-user-role-editor.php:
|
211 |
msgid "Delete Capability"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: ../includes/class-user-role-editor.php:
|
215 |
msgid "Reset"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: ../includes/class-user-role-editor.php:
|
219 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: ../includes/class-user-role-editor.php:
|
223 |
msgid ""
|
224 |
"If any plugins have changed capabilities in any way upon installation (such "
|
225 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: ../includes/class-user-role-editor.php:
|
229 |
msgid ""
|
230 |
"For more information on how to undo changes and restore plugin capabilities "
|
231 |
"go to"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ../includes/class-user-role-editor.php:
|
235 |
msgid "Continue?"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: ../includes/class-user-role-editor.php:
|
239 |
msgid "Default Role"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ../includes/class-user-role-editor.php:
|
243 |
msgid "Set New Default Role"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: ../includes/class-user-role-editor.php:
|
247 |
msgid ""
|
248 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
249 |
"or other custom code"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: ../includes/class-user-role-editor.php:
|
253 |
msgid " Capability name (ID) can not be empty!"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: ../includes/class-user-role-editor.php:
|
257 |
msgid ""
|
258 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
259 |
"underscore only!"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: ../includes/class-user-role-editor.php:
|
263 |
-
#: ../includes/class-user-role-editor.php:
|
264 |
msgid "Other Roles"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../includes/class-user-role-editor.php:
|
268 |
msgid "Edit"
|
269 |
msgstr ""
|
270 |
|
@@ -272,7 +280,7 @@ msgstr ""
|
|
272 |
msgid "Select Role and change its capabilities:"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:
|
276 |
msgid "Show capabilities in human readable form"
|
277 |
msgstr ""
|
278 |
|
@@ -284,493 +292,493 @@ msgstr ""
|
|
284 |
msgid "Apply to All Sites"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:
|
288 |
msgid "Core capabilities:"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:
|
292 |
msgid "Quick filter:"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:
|
296 |
msgid "Custom capabilities:"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: ../includes/class-ure-lib.php:
|
300 |
msgid "Error: wrong request"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: ../includes/class-ure-lib.php:
|
304 |
msgid "Role name (ID): "
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: ../includes/class-ure-lib.php:
|
308 |
msgid "Display Role Name: "
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../includes/class-ure-lib.php:
|
312 |
msgid "Make copy of: "
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../includes/class-ure-lib.php:
|
316 |
msgid "Select Role:"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../includes/class-ure-lib.php:
|
320 |
msgid "Delete:"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../includes/class-ure-lib.php:
|
324 |
msgid "Capability name (ID): "
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: ../includes/class-ure-lib.php:
|
328 |
msgid "Error: "
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: ../includes/class-ure-lib.php:
|
332 |
msgid "Role"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: ../includes/class-ure-lib.php:
|
336 |
msgid "does not exist"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: ../includes/class-ure-lib.php:
|
340 |
msgid "Role is updated successfully"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: ../includes/class-ure-lib.php:
|
344 |
msgid "Roles are updated for all network"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: ../includes/class-ure-lib.php:
|
348 |
msgid "Error occured during role(s) update"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: ../includes/class-ure-lib.php:
|
352 |
msgid "User capabilities are updated successfully"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: ../includes/class-ure-lib.php:
|
356 |
msgid "Error occured during user update"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: ../includes/class-ure-lib.php:
|
360 |
msgid "User Roles are restored to WordPress default values. "
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: ../includes/class-ure-lib.php:
|
364 |
msgid "Help"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: ../includes/class-ure-lib.php:
|
368 |
msgid "Error is occur. Please check the log file."
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: ../includes/class-ure-lib.php:
|
372 |
msgid ""
|
373 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
374 |
"only!"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
msgid ""
|
379 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
380 |
"characters to it."
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: ../includes/class-ure-lib.php:
|
384 |
#, php-format
|
385 |
msgid "Role %s exists already"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: ../includes/class-ure-lib.php:
|
389 |
msgid "Error is encountered during new role create operation"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: ../includes/class-ure-lib.php:
|
393 |
#, php-format
|
394 |
msgid "Role %s is created successfully"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: ../includes/class-ure-lib.php:
|
398 |
msgid "Error: Role ID is empty!"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
402 |
msgid "Error: Empty role display name is not allowed."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: ../includes/class-ure-lib.php:
|
406 |
#, php-format
|
407 |
msgid "Role %s does not exists"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
#, php-format
|
412 |
msgid "Role %s is renamed to %s successfully"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../includes/class-ure-lib.php:
|
416 |
msgid "Error encountered during role delete operation"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../includes/class-ure-lib.php:
|
420 |
msgid "Unused roles are deleted successfully"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
#, php-format
|
425 |
msgid "Role %s is deleted successfully"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ../includes/class-ure-lib.php:
|
429 |
msgid "Error encountered during default role change operation"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: ../includes/class-ure-lib.php:
|
433 |
#, php-format
|
434 |
msgid "Default role for new users is set to %s successfully"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: ../includes/class-ure-lib.php:
|
438 |
msgid "Editor"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
msgid "Author"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
msgid "Contributor"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
msgid "Subscriber"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
msgid "Switch themes"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
msgid "Edit themes"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: ../includes/class-ure-lib.php:
|
462 |
msgid "Activate plugins"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: ../includes/class-ure-lib.php:
|
466 |
msgid "Edit plugins"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: ../includes/class-ure-lib.php:
|
470 |
msgid "Edit users"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: ../includes/class-ure-lib.php:
|
474 |
msgid "Edit files"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: ../includes/class-ure-lib.php:
|
478 |
msgid "Manage options"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: ../includes/class-ure-lib.php:
|
482 |
msgid "Moderate comments"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../includes/class-ure-lib.php:
|
486 |
msgid "Manage categories"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: ../includes/class-ure-lib.php:
|
490 |
msgid "Manage links"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: ../includes/class-ure-lib.php:
|
494 |
msgid "Upload files"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: ../includes/class-ure-lib.php:
|
498 |
msgid "Import"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: ../includes/class-ure-lib.php:
|
502 |
msgid "Unfiltered html"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: ../includes/class-ure-lib.php:
|
506 |
msgid "Edit posts"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: ../includes/class-ure-lib.php:
|
510 |
msgid "Edit others posts"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: ../includes/class-ure-lib.php:
|
514 |
msgid "Edit published posts"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: ../includes/class-ure-lib.php:
|
518 |
msgid "Publish posts"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: ../includes/class-ure-lib.php:
|
522 |
msgid "Edit pages"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: ../includes/class-ure-lib.php:
|
526 |
msgid "Read"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: ../includes/class-ure-lib.php:
|
530 |
msgid "Level 10"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ../includes/class-ure-lib.php:
|
534 |
msgid "Level 9"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../includes/class-ure-lib.php:
|
538 |
msgid "Level 8"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../includes/class-ure-lib.php:
|
542 |
msgid "Level 7"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: ../includes/class-ure-lib.php:
|
546 |
msgid "Level 6"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: ../includes/class-ure-lib.php:
|
550 |
msgid "Level 5"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: ../includes/class-ure-lib.php:
|
554 |
msgid "Level 4"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: ../includes/class-ure-lib.php:
|
558 |
msgid "Level 3"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: ../includes/class-ure-lib.php:
|
562 |
msgid "Level 2"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: ../includes/class-ure-lib.php:
|
566 |
msgid "Level 1"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: ../includes/class-ure-lib.php:
|
570 |
msgid "Level 0"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: ../includes/class-ure-lib.php:
|
574 |
msgid "Edit others pages"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: ../includes/class-ure-lib.php:
|
578 |
msgid "Edit published pages"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: ../includes/class-ure-lib.php:
|
582 |
msgid "Publish pages"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: ../includes/class-ure-lib.php:
|
586 |
msgid "Delete pages"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: ../includes/class-ure-lib.php:
|
590 |
msgid "Delete others pages"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: ../includes/class-ure-lib.php:
|
594 |
msgid "Delete published pages"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: ../includes/class-ure-lib.php:
|
598 |
msgid "Delete posts"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: ../includes/class-ure-lib.php:
|
602 |
msgid "Delete others posts"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: ../includes/class-ure-lib.php:
|
606 |
msgid "Delete published posts"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: ../includes/class-ure-lib.php:
|
610 |
msgid "Delete private posts"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: ../includes/class-ure-lib.php:
|
614 |
msgid "Edit private posts"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: ../includes/class-ure-lib.php:
|
618 |
msgid "Read private posts"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: ../includes/class-ure-lib.php:
|
622 |
msgid "Delete private pages"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: ../includes/class-ure-lib.php:
|
626 |
msgid "Edit private pages"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: ../includes/class-ure-lib.php:
|
630 |
msgid "Read private pages"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: ../includes/class-ure-lib.php:
|
634 |
msgid "Delete users"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: ../includes/class-ure-lib.php:
|
638 |
msgid "Create users"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: ../includes/class-ure-lib.php:
|
642 |
msgid "Unfiltered upload"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: ../includes/class-ure-lib.php:
|
646 |
msgid "Edit dashboard"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: ../includes/class-ure-lib.php:
|
650 |
msgid "Update plugins"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: ../includes/class-ure-lib.php:
|
654 |
msgid "Delete plugins"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: ../includes/class-ure-lib.php:
|
658 |
msgid "Install plugins"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: ../includes/class-ure-lib.php:
|
662 |
msgid "Update themes"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: ../includes/class-ure-lib.php:
|
666 |
msgid "Install themes"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: ../includes/class-ure-lib.php:
|
670 |
msgid "Update core"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: ../includes/class-ure-lib.php:
|
674 |
msgid "List users"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: ../includes/class-ure-lib.php:
|
678 |
msgid "Remove users"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: ../includes/class-ure-lib.php:
|
682 |
msgid "Add users"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: ../includes/class-ure-lib.php:
|
686 |
msgid "Promote users"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: ../includes/class-ure-lib.php:
|
690 |
msgid "Edit theme options"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: ../includes/class-ure-lib.php:
|
694 |
msgid "Delete themes"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: ../includes/class-ure-lib.php:
|
698 |
msgid "Export"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: ../includes/class-ure-lib.php:
|
702 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: ../includes/class-ure-lib.php:
|
706 |
#, php-format
|
707 |
msgid "Capability %s is added successfully"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: ../includes/class-ure-lib.php:
|
711 |
#, php-format
|
712 |
msgid "Capability %s exists already"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
#, php-format
|
717 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: ../includes/class-ure-lib.php:
|
721 |
#, php-format
|
722 |
msgid "Capability %s is removed successfully"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: ../includes/class-ure-lib.php:
|
726 |
msgid "Version:"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: ../includes/class-ure-lib.php:
|
730 |
msgid "Author's website"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: ../includes/class-ure-lib.php:
|
734 |
msgid "Plugin webpage"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: ../includes/class-ure-lib.php:
|
738 |
msgid "Plugin download"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: ../includes/class-ure-lib.php:
|
742 |
msgid "FAQ"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: ../includes/class-ure-lib.php:
|
746 |
msgid "None"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: ../includes/class-ure-lib.php:
|
750 |
msgid "Delete All Unused Roles"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: ../includes/class-ure-lib.php:
|
754 |
msgid "— No role for this site —"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: ../includes/ure-user-edit.php:
|
758 |
msgid "Network Super Admin"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: ../includes/ure-user-edit.php:
|
762 |
msgid "Change capabilities for user"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: ../includes/ure-user-edit.php:
|
766 |
msgid "Primary Role:"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: ../includes/ure-user-edit.php:
|
770 |
msgid "bbPress Role:"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: ../includes/ure-user-edit.php:
|
774 |
msgid "Other Roles:"
|
775 |
msgstr ""
|
776 |
|
@@ -796,18 +804,25 @@ msgid ""
|
|
796 |
"deprecated capabilities."
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../includes/class-ure-screen-help.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
800 |
msgid ""
|
801 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
802 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
803 |
"users list with role \"No rights\" at the separate tab then."
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: ../includes/class-ure-screen-help.php:
|
807 |
msgid "Other default roles for new registered user"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: ../includes/class-ure-screen-help.php:
|
811 |
msgid ""
|
812 |
"select roles below to assign them to the new user automatically as an "
|
813 |
"addition to the primary role. Note for multisite environment: take into "
|
@@ -815,11 +830,11 @@ msgid ""
|
|
815 |
"assigned to the new registered users."
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: ../includes/class-ure-screen-help.php:
|
819 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: ../includes/class-ure-screen-help.php:
|
823 |
msgid ""
|
824 |
"Super administrator only may create, edit and delete users under WordPress "
|
825 |
"multi-site by default. Turn this option on in order to remove this "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-06 11:48+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
21 |
msgstr ""
|
22 |
|
23 |
#: ../includes/settings-template.php:21
|
24 |
+
#: ../includes/class-user-role-editor.php: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 |
|
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 |
|
92 |
+
#: ../includes/settings-template.php:177
|
93 |
msgid "Allow non super administrators to create, edit, and delete users"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: ../includes/class-user-role-editor.php:233
|
97 |
msgid "Change role for users without role"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: ../includes/class-user-role-editor.php:234
|
101 |
msgid "No rights"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: ../includes/class-user-role-editor.php:235
|
105 |
msgid "Provide new role"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: ../includes/class-user-role-editor.php:319
|
109 |
+
#: ../includes/class-user-role-editor.php:321
|
110 |
msgid "You do not have permission to edit this user."
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: ../includes/class-user-role-editor.php:460
|
114 |
msgid "Capabilities"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: ../includes/class-user-role-editor.php:558
|
118 |
msgid "Settings"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ../includes/class-user-role-editor.php:569
|
122 |
+
#: ../includes/class-ure-lib.php:2529
|
123 |
msgid "Changelog"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: ../includes/class-user-role-editor.php:619
|
127 |
+
#: ../includes/class-user-role-editor.php:648
|
128 |
+
#: ../includes/class-user-role-editor.php:1029
|
129 |
+
#: ../includes/class-ure-lib.php:337
|
130 |
msgid "User Role Editor"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ../includes/class-user-role-editor.php:708
|
134 |
+
#: ../includes/class-user-role-editor.php:726
|
135 |
+
#: ../includes/class-user-role-editor.php:770
|
136 |
msgid "User Role Editor options are updated"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: ../includes/class-user-role-editor.php:754
|
140 |
msgid "Default Roles are updated"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: ../includes/class-user-role-editor.php:778
|
144 |
msgid ""
|
145 |
"You do not have sufficient permissions to manage options for User Role "
|
146 |
"Editor."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: ../includes/class-user-role-editor.php:850
|
150 |
+
#: ../includes/class-ure-lib.php:1697 ../includes/class-ure-lib.php:1950
|
151 |
+
#: ../includes/class-ure-lib.php:2066 ../includes/class-ure-lib.php:2114
|
152 |
+
#: ../includes/class-ure-lib.php:2350 ../includes/class-ure-lib.php:2395
|
153 |
msgid "Insufficient permissions to work with User Role Editor"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: ../includes/class-user-role-editor.php:976
|
157 |
msgid "Select All"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: ../includes/class-user-role-editor.php:977
|
161 |
msgid "Unselect All"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:978
|
165 |
msgid "Reverse"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: ../includes/class-user-role-editor.php:979
|
169 |
msgid "Update"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: ../includes/class-user-role-editor.php:980
|
173 |
msgid "Please confirm permissions update"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: ../includes/class-user-role-editor.php:981
|
177 |
msgid "Add New Role"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: ../includes/class-user-role-editor.php:982
|
181 |
+
#: ../includes/class-user-role-editor.php:987
|
182 |
msgid "Rename Role"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: ../includes/class-user-role-editor.php:983
|
186 |
msgid " Role name (ID) can not be empty!"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: ../includes/class-user-role-editor.php:984
|
190 |
msgid ""
|
191 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
192 |
"only!"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: ../includes/class-user-role-editor.php:985
|
196 |
msgid ""
|
197 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
198 |
"it."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: ../includes/class-user-role-editor.php:986
|
202 |
msgid "Add Role"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: ../includes/class-user-role-editor.php:988
|
206 |
msgid "Delete Role"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: ../includes/class-user-role-editor.php:989
|
210 |
msgid "Cancel"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: ../includes/class-user-role-editor.php:990
|
214 |
msgid "Add Capability"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: ../includes/class-user-role-editor.php:991
|
218 |
+
#: ../includes/class-user-role-editor.php:1000
|
219 |
msgid "Delete Capability"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class-user-role-editor.php:992
|
223 |
msgid "Reset"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: ../includes/class-user-role-editor.php:993
|
227 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../includes/class-user-role-editor.php:994
|
231 |
msgid ""
|
232 |
"If any plugins have changed capabilities in any way upon installation (such "
|
233 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: ../includes/class-user-role-editor.php:995
|
237 |
msgid ""
|
238 |
"For more information on how to undo changes and restore plugin capabilities "
|
239 |
"go to"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../includes/class-user-role-editor.php:997
|
243 |
msgid "Continue?"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../includes/class-user-role-editor.php:998
|
247 |
msgid "Default Role"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: ../includes/class-user-role-editor.php:999
|
251 |
msgid "Set New Default Role"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: ../includes/class-user-role-editor.php:1001
|
255 |
msgid ""
|
256 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
257 |
"or other custom code"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: ../includes/class-user-role-editor.php:1002
|
261 |
msgid " Capability name (ID) can not be empty!"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: ../includes/class-user-role-editor.php:1003
|
265 |
msgid ""
|
266 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
267 |
"underscore only!"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: ../includes/class-user-role-editor.php:1032
|
271 |
+
#: ../includes/class-user-role-editor.php:1065
|
272 |
msgid "Other Roles"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: ../includes/class-user-role-editor.php:1046
|
276 |
msgid "Edit"
|
277 |
msgstr ""
|
278 |
|
280 |
msgid "Select Role and change its capabilities:"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
284 |
msgid "Show capabilities in human readable form"
|
285 |
msgstr ""
|
286 |
|
292 |
msgid "Apply to All Sites"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
296 |
msgid "Core capabilities:"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
300 |
msgid "Quick filter:"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
304 |
msgid "Custom capabilities:"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../includes/class-ure-lib.php:245
|
308 |
msgid "Error: wrong request"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../includes/class-ure-lib.php:278 ../includes/class-ure-lib.php:289
|
312 |
msgid "Role name (ID): "
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
316 |
msgid "Display Role Name: "
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ../includes/class-ure-lib.php:282
|
320 |
msgid "Make copy of: "
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ../includes/class-ure-lib.php:298
|
324 |
msgid "Select Role:"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ../includes/class-ure-lib.php:313
|
328 |
msgid "Delete:"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: ../includes/class-ure-lib.php:320
|
332 |
msgid "Capability name (ID): "
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: ../includes/class-ure-lib.php:434
|
336 |
msgid "Error: "
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: ../includes/class-ure-lib.php:434
|
340 |
msgid "Role"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: ../includes/class-ure-lib.php:435
|
344 |
msgid "does not exist"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: ../includes/class-ure-lib.php:478
|
348 |
msgid "Role is updated successfully"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: ../includes/class-ure-lib.php:480
|
352 |
msgid "Roles are updated for all network"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: ../includes/class-ure-lib.php:486
|
356 |
msgid "Error occured during role(s) update"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: ../includes/class-ure-lib.php:493
|
360 |
msgid "User capabilities are updated successfully"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../includes/class-ure-lib.php:498
|
364 |
msgid "Error occured during user update"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ../includes/class-ure-lib.php:556
|
368 |
msgid "User Roles are restored to WordPress default values. "
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ../includes/class-ure-lib.php:1445
|
372 |
msgid "Help"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ../includes/class-ure-lib.php:1913
|
376 |
msgid "Error is occur. Please check the log file."
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: ../includes/class-ure-lib.php:1959 ../includes/class-ure-lib.php:2026
|
380 |
msgid ""
|
381 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
382 |
"only!"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:1963 ../includes/class-ure-lib.php:2030
|
386 |
msgid ""
|
387 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
388 |
"characters to it."
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: ../includes/class-ure-lib.php:1978
|
392 |
#, php-format
|
393 |
msgid "Role %s exists already"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: ../includes/class-ure-lib.php:1993
|
397 |
msgid "Error is encountered during new role create operation"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: ../includes/class-ure-lib.php:1995
|
401 |
#, php-format
|
402 |
msgid "Role %s is created successfully"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:2019
|
406 |
msgid "Error: Role ID is empty!"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:2037
|
410 |
msgid "Error: Empty role display name is not allowed."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:2044
|
414 |
#, php-format
|
415 |
msgid "Role %s does not exists"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: ../includes/class-ure-lib.php:2052
|
419 |
#, php-format
|
420 |
msgid "Role %s is renamed to %s successfully"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:2125
|
424 |
msgid "Error encountered during role delete operation"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:2127
|
428 |
msgid "Unused roles are deleted successfully"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:2129
|
432 |
#, php-format
|
433 |
msgid "Role %s is deleted successfully"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../includes/class-ure-lib.php:2154
|
437 |
msgid "Error encountered during default role change operation"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../includes/class-ure-lib.php:2160
|
441 |
#, php-format
|
442 |
msgid "Default role for new users is set to %s successfully"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:2179
|
446 |
msgid "Editor"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:2180
|
450 |
msgid "Author"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:2181
|
454 |
msgid "Contributor"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:2182
|
458 |
msgid "Subscriber"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:2184
|
462 |
msgid "Switch themes"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:2185
|
466 |
msgid "Edit themes"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:2186
|
470 |
msgid "Activate plugins"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: ../includes/class-ure-lib.php:2187
|
474 |
msgid "Edit plugins"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:2188
|
478 |
msgid "Edit users"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:2189
|
482 |
msgid "Edit files"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:2190
|
486 |
msgid "Manage options"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:2191
|
490 |
msgid "Moderate comments"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:2192
|
494 |
msgid "Manage categories"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:2193
|
498 |
msgid "Manage links"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:2194
|
502 |
msgid "Upload files"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:2195
|
506 |
msgid "Import"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:2196
|
510 |
msgid "Unfiltered html"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:2197
|
514 |
msgid "Edit posts"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: ../includes/class-ure-lib.php:2198
|
518 |
msgid "Edit others posts"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: ../includes/class-ure-lib.php:2199
|
522 |
msgid "Edit published posts"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: ../includes/class-ure-lib.php:2200
|
526 |
msgid "Publish posts"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:2201
|
530 |
msgid "Edit pages"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../includes/class-ure-lib.php:2202
|
534 |
msgid "Read"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ../includes/class-ure-lib.php:2203
|
538 |
msgid "Level 10"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ../includes/class-ure-lib.php:2204
|
542 |
msgid "Level 9"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: ../includes/class-ure-lib.php:2205
|
546 |
msgid "Level 8"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: ../includes/class-ure-lib.php:2206
|
550 |
msgid "Level 7"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: ../includes/class-ure-lib.php:2207
|
554 |
msgid "Level 6"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: ../includes/class-ure-lib.php:2208
|
558 |
msgid "Level 5"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: ../includes/class-ure-lib.php:2209
|
562 |
msgid "Level 4"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:2210
|
566 |
msgid "Level 3"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: ../includes/class-ure-lib.php:2211
|
570 |
msgid "Level 2"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: ../includes/class-ure-lib.php:2212
|
574 |
msgid "Level 1"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: ../includes/class-ure-lib.php:2213
|
578 |
msgid "Level 0"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: ../includes/class-ure-lib.php:2214
|
582 |
msgid "Edit others pages"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: ../includes/class-ure-lib.php:2215
|
586 |
msgid "Edit published pages"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: ../includes/class-ure-lib.php:2216
|
590 |
msgid "Publish pages"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: ../includes/class-ure-lib.php:2217
|
594 |
msgid "Delete pages"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: ../includes/class-ure-lib.php:2218
|
598 |
msgid "Delete others pages"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: ../includes/class-ure-lib.php:2219
|
602 |
msgid "Delete published pages"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:2220
|
606 |
msgid "Delete posts"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: ../includes/class-ure-lib.php:2221
|
610 |
msgid "Delete others posts"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: ../includes/class-ure-lib.php:2222
|
614 |
msgid "Delete published posts"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: ../includes/class-ure-lib.php:2223
|
618 |
msgid "Delete private posts"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: ../includes/class-ure-lib.php:2224
|
622 |
msgid "Edit private posts"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: ../includes/class-ure-lib.php:2225
|
626 |
msgid "Read private posts"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: ../includes/class-ure-lib.php:2226
|
630 |
msgid "Delete private pages"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: ../includes/class-ure-lib.php:2227
|
634 |
msgid "Edit private pages"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: ../includes/class-ure-lib.php:2228
|
638 |
msgid "Read private pages"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: ../includes/class-ure-lib.php:2229
|
642 |
msgid "Delete users"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: ../includes/class-ure-lib.php:2230
|
646 |
msgid "Create users"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: ../includes/class-ure-lib.php:2231
|
650 |
msgid "Unfiltered upload"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: ../includes/class-ure-lib.php:2232
|
654 |
msgid "Edit dashboard"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: ../includes/class-ure-lib.php:2233
|
658 |
msgid "Update plugins"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: ../includes/class-ure-lib.php:2234
|
662 |
msgid "Delete plugins"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: ../includes/class-ure-lib.php:2235
|
666 |
msgid "Install plugins"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: ../includes/class-ure-lib.php:2236
|
670 |
msgid "Update themes"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: ../includes/class-ure-lib.php:2237
|
674 |
msgid "Install themes"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: ../includes/class-ure-lib.php:2238
|
678 |
msgid "Update core"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: ../includes/class-ure-lib.php:2239
|
682 |
msgid "List users"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: ../includes/class-ure-lib.php:2240
|
686 |
msgid "Remove users"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: ../includes/class-ure-lib.php:2241
|
690 |
msgid "Add users"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: ../includes/class-ure-lib.php:2242
|
694 |
msgid "Promote users"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: ../includes/class-ure-lib.php:2243
|
698 |
msgid "Edit theme options"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: ../includes/class-ure-lib.php:2244
|
702 |
msgid "Delete themes"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: ../includes/class-ure-lib.php:2245
|
706 |
msgid "Export"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: ../includes/class-ure-lib.php:2358
|
710 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: ../includes/class-ure-lib.php:2371
|
714 |
#, php-format
|
715 |
msgid "Capability %s is added successfully"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: ../includes/class-ure-lib.php:2373
|
719 |
#, php-format
|
720 |
msgid "Capability %s exists already"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2402
|
724 |
#, php-format
|
725 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: ../includes/class-ure-lib.php:2421
|
729 |
#, php-format
|
730 |
msgid "Capability %s is removed successfully"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: ../includes/class-ure-lib.php:2525
|
734 |
msgid "Version:"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: ../includes/class-ure-lib.php:2526
|
738 |
msgid "Author's website"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../includes/class-ure-lib.php:2527
|
742 |
msgid "Plugin webpage"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../includes/class-ure-lib.php:2528
|
746 |
msgid "Plugin download"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: ../includes/class-ure-lib.php:2530
|
750 |
msgid "FAQ"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: ../includes/class-ure-lib.php:2578
|
754 |
msgid "None"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: ../includes/class-ure-lib.php:2605
|
758 |
msgid "Delete All Unused Roles"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: ../includes/class-ure-lib.php:2629
|
762 |
msgid "— No role for this site —"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: ../includes/ure-user-edit.php:32
|
766 |
msgid "Network Super Admin"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: ../includes/ure-user-edit.php:35
|
770 |
msgid "Change capabilities for user"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: ../includes/ure-user-edit.php:72
|
774 |
msgid "Primary Role:"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: ../includes/ure-user-edit.php:82
|
778 |
msgid "bbPress Role:"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../includes/ure-user-edit.php:92
|
782 |
msgid "Other Roles:"
|
783 |
msgstr ""
|
784 |
|
804 |
"deprecated capabilities."
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: ../includes/class-ure-screen-help.php:26
|
808 |
+
msgid ""
|
809 |
+
"If turned off - capabilities section of selected user is shown in readonly "
|
810 |
+
"mode. Administrator can not assign capabilities to the user directly. He "
|
811 |
+
"should make it using roles only."
|
812 |
+
msgstr ""
|
813 |
+
|
814 |
+
#: ../includes/class-ure-screen-help.php:46
|
815 |
msgid ""
|
816 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
817 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
818 |
"users list with role \"No rights\" at the separate tab then."
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: ../includes/class-ure-screen-help.php:63
|
822 |
msgid "Other default roles for new registered user"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: ../includes/class-ure-screen-help.php:64
|
826 |
msgid ""
|
827 |
"select roles below to assign them to the new user automatically as an "
|
828 |
"addition to the primary role. Note for multisite environment: take into "
|
830 |
"assigned to the new registered users."
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: ../includes/class-ure-screen-help.php:82
|
834 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: ../includes/class-ure-screen-help.php:83
|
838 |
msgid ""
|
839 |
"Super administrator only may create, edit and delete users under WordPress "
|
840 |
"multi-site by default. Turn this option on in order to remove this "
|
readme.txt
CHANGED
@@ -68,7 +68,6 @@ 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 |
-
* Catalan: [Efraim Bayarri](http://replicantsfactory.com/) - needs update;
|
72 |
* Dutch: Arjan Bosch - needs update;
|
73 |
* French: [Transifex](https://www.transifex.com);
|
74 |
* Hebrew: [atar4u](http://atar4u.com) - needs update;
|
@@ -87,6 +86,16 @@ Some translations may be outdated. If you have better translation for some phras
|
|
87 |
|
88 |
== Changelog ==
|
89 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
= 4.18.1 =
|
91 |
* 14.12.2014
|
92 |
* As activation hook does not fire during bulk plugins update, automatic plugin version check and upgrade execution were added.
|
@@ -94,6 +103,7 @@ Some translations may be outdated. If you have better translation for some phras
|
|
94 |
= 4.18 =
|
95 |
* 14.12.2014
|
96 |
* Own custom user capabilities, e.g. 'ure_edit_roles' are used to restrict access to User Role Editor functionality ([read more](https://www.role-editor.com/user-role-editor-4-18-new-permissions/)).
|
|
|
97 |
* Multisite: You may allow to the users without superadmin privileges to add/create site users without sending them email confirmation request.
|
98 |
* Bug fix: when non-admin user updated other user profile, that user lost secondary roles.
|
99 |
* Italian translation was added. Thanks to [Giuseppe Velardo](http://www.comprensivoleopardi.gov.it/).
|
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: Arjan Bosch - needs update;
|
72 |
* French: [Transifex](https://www.transifex.com);
|
73 |
* Hebrew: [atar4u](http://atar4u.com) - needs update;
|
86 |
|
87 |
== Changelog ==
|
88 |
|
89 |
+
= 4.18.2 =
|
90 |
+
* 06.02.2015
|
91 |
+
* New option "Edit user capabilities" was added. If it is unchecked - capabilities section of selected user will be shown in the readonly mode. Administrator (except superadmin for multisite) can not assign capabilities to the user directly. He should make it using roles only.
|
92 |
+
* More universal checking applied to the custom post type capabilities creation to exclude not existing property notices.
|
93 |
+
* Multisite: URE's options page is prohibited by 'manage_network_users' capability instead of 'ure_manage_options' in case single site administrators does not have permission to use URE.
|
94 |
+
* URE protects administrator user from editing by other users by default. If you wish to turn off such protection, you may add filter 'ure_supress_administrators_protection' and return 'true' from it.
|
95 |
+
* Plugin installation to the WordPress multisite with large (thousands) subsites had a problem with script execution time. Fixed. URE does not try to update all subsites at once now. It does it for every subsite separately, only when you visit that subsite.
|
96 |
+
* Fixed JavaScript bug with 'Reset Roles' for FireFox v.34.
|
97 |
+
|
98 |
+
|
99 |
= 4.18.1 =
|
100 |
* 14.12.2014
|
101 |
* As activation hook does not fire during bulk plugins update, automatic plugin version check and upgrade execution were added.
|
103 |
= 4.18 =
|
104 |
* 14.12.2014
|
105 |
* Own custom user capabilities, e.g. 'ure_edit_roles' are used to restrict access to User Role Editor functionality ([read more](https://www.role-editor.com/user-role-editor-4-18-new-permissions/)).
|
106 |
+
* If custom post type uses own custom user capabilities URE add them to the 'Custom Capabilities' section automatically.
|
107 |
* Multisite: You may allow to the users without superadmin privileges to add/create site users without sending them email confirmation request.
|
108 |
* Bug fix: when non-admin user updated other user profile, that user lost secondary roles.
|
109 |
* Italian translation was added. Thanks to [Giuseppe Velardo](http://www.comprensivoleopardi.gov.it/).
|
user-role-editor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: User Role Editor
|
4 |
Plugin URI: http://role-editor.com
|
5 |
Description: Change/add/delete WordPress user roles and capabilities.
|
6 |
-
Version: 4.18.
|
7 |
Author: Vladimir Garagulya
|
8 |
Author URI: http://www.shinephp.com
|
9 |
Text Domain: ure
|
@@ -23,7 +23,7 @@ if (defined('URE_PLUGIN_URL')) {
|
|
23 |
wp_die('It seems that other version of User Role Editor is active. Please deactivate it before use this version');
|
24 |
}
|
25 |
|
26 |
-
define('URE_VERSION', '4.18.
|
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: http://role-editor.com
|
5 |
Description: Change/add/delete WordPress user roles and capabilities.
|
6 |
+
Version: 4.18.2
|
7 |
Author: Vladimir Garagulya
|
8 |
Author URI: http://www.shinephp.com
|
9 |
Text Domain: ure
|
23 |
wp_die('It seems that other version of User Role Editor is active. Please deactivate it before use this version');
|
24 |
}
|
25 |
|
26 |
+
define('URE_VERSION', '4.18.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__));
|